summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-03-16 19:00:21 +0100
committerVolpeon <git@volpeon.ink>2022-03-16 19:00:21 +0100
commit210349f2a28fb37b8cafac980e3f5fac894cc7f9 (patch)
treec726496e100381814aa38fcaf69aa02078fe8d62
parentReverted grays (diff)
downloadiro-design-210349f2a28fb37b8cafac980e3f5fac894cc7f9.tar.gz
iro-design-210349f2a28fb37b8cafac980e3f5fac894cc7f9.tar.bz2
iro-design-210349f2a28fb37b8cafac980e3f5fac894cc7f9.zip
Added alert
-rw-r--r--src/_declare-vars.scss6
-rw-r--r--src/_objects.scss1
-rw-r--r--src/objects/_alert.scss48
-rw-r--r--tpl/index.pug17
-rw-r--r--tpl/objects/alert.pug11
5 files changed, 81 insertions, 2 deletions
diff --git a/src/_declare-vars.scss b/src/_declare-vars.scss
index 2d7d723..998608a 100644
--- a/src/_declare-vars.scss
+++ b/src/_declare-vars.scss
@@ -120,12 +120,13 @@
120 --purple: fn.color-palette(blend.lch(48% 50 308)), 120 --purple: fn.color-palette(blend.lch(48% 50 308)),
121 --red: fn.color-palette(blend.lch(48% 50 23)), 121 --red: fn.color-palette(blend.lch(48% 50 23)),
122 --green: fn.color-palette(blend.lch(63% 50 147)), 122 --green: fn.color-palette(blend.lch(63% 50 147)),
123 --yellow: fn.color-palette(blend.lch(73% 50 80)), 123 --yellow: fn.color-palette(blend.lch(68% 50 70)),
124 124
125 --accent: ( 125 --accent: (
126 --primary: iro.props-ref('colors', --colors --blue), 126 --primary: iro.props-ref('colors', --colors --blue),
127 --error: iro.props-ref('colors', --colors --red), 127 --error: iro.props-ref('colors', --colors --red),
128 --success: iro.props-ref('colors', --colors --green), 128 --success: iro.props-ref('colors', --colors --green),
129 --warning: iro.props-ref('colors', --colors --yellow),
129 --link-idle: iro.props-ref('colors', --colors --blue), 130 --link-idle: iro.props-ref('colors', --colors --blue),
130 --link-visited: iro.props-ref('colors', --colors --purple), 131 --link-visited: iro.props-ref('colors', --colors --purple),
131 ), 132 ),
@@ -165,12 +166,13 @@
165 --purple: fn.color-palette(blend.lch(63% 50 308), -1), 166 --purple: fn.color-palette(blend.lch(63% 50 308), -1),
166 --red: fn.color-palette(blend.lch(63% 50 23), -1), 167 --red: fn.color-palette(blend.lch(63% 50 23), -1),
167 --green: fn.color-palette(blend.lch(78% 50 147), -1), 168 --green: fn.color-palette(blend.lch(78% 50 147), -1),
168 --yellow: fn.color-palette(blend.lch(88% 50 80), -1), 169 --yellow: fn.color-palette(blend.lch(88% 50 70), -1),
169 170
170 --accent: ( 171 --accent: (
171 --primary: iro.props-ref('colors-dark', --colors --blue), 172 --primary: iro.props-ref('colors-dark', --colors --blue),
172 --error: iro.props-ref('colors-dark', --colors --red), 173 --error: iro.props-ref('colors-dark', --colors --red),
173 --success: iro.props-ref('colors-dark', --colors --green), 174 --success: iro.props-ref('colors-dark', --colors --green),
175 --warning: iro.props-ref('colors-dark', --colors --yellow),
174 --link-idle: iro.props-ref('colors-dark', --colors --blue), 176 --link-idle: iro.props-ref('colors-dark', --colors --blue),
175 --link-visited: iro.props-ref('colors-dark', --colors --purple), 177 --link-visited: iro.props-ref('colors-dark', --colors --purple),
176 ), 178 ),
diff --git a/src/_objects.scss b/src/_objects.scss
index 7f77968..070e281 100644
--- a/src/_objects.scss
+++ b/src/_objects.scss
@@ -18,3 +18,4 @@
18@use 'objects/lightbox'; 18@use 'objects/lightbox';
19@use 'objects/list-group'; 19@use 'objects/list-group';
20@use 'objects/table'; 20@use 'objects/table';
21@use 'objects/alert';
diff --git a/src/objects/_alert.scss b/src/objects/_alert.scss
new file mode 100644
index 0000000..0bb8485
--- /dev/null
+++ b/src/objects/_alert.scss
@@ -0,0 +1,48 @@
1@use 'iro-sass/src/index' as iro;
2@use '../functions' as fn;
3
4@include iro.props-namespace('alert') {
5 @include iro.props-store((
6 --dims: (
7 --border-width: 2px,
8 --pad-x: fn.global-dim(--size --250),
9 --pad-y: fn.global-dim(--size --250),
10 --rounding: 4px,
11 ),
12 ), 'dims');
13
14 @include iro.props-store((
15 --colors: (
16 --bg: fn.global-color(--bg-hi2),
17 --border: fn.global-color(--fg-hi2),
18 --border-primary: fn.global-color(--accent --primary --bg-hi),
19 --border-error: fn.global-color(--accent --error --bg-hi),
20 --border-success: fn.global-color(--accent --success --bg-hi),
21 --border-warning: fn.global-color(--accent --warning --bg-hi),
22 ),
23 ), 'colors');
24
25 @include iro.bem-object(iro.props-namespace()) {
26 padding: fn.dim(--pad-y) fn.dim(--pad-x);
27 border: fn.dim(--border-width) solid fn.color(--border);
28 border-radius: fn.dim(--rounding);
29 background-color: fn.color(--bg);
30 color: fn.global-color(--fg);
31
32 @include iro.bem-modifier('primary') {
33 border-color: fn.color(--border-primary);
34 }
35
36 @include iro.bem-modifier('error') {
37 border-color: fn.color(--border-error);
38 }
39
40 @include iro.bem-modifier('success') {
41 border-color: fn.color(--border-success);
42 }
43
44 @include iro.bem-modifier('warning') {
45 border-color: fn.color(--border-warning);
46 }
47 }
48}
diff --git a/tpl/index.pug b/tpl/index.pug
index be9f407..7c0c3ff 100644
--- a/tpl/index.pug
+++ b/tpl/index.pug
@@ -23,6 +23,7 @@ include objects/dialog.pug
23include objects/lightbox.pug 23include objects/lightbox.pug
24include objects/list-group.pug 24include objects/list-group.pug
25include objects/table.pug 25include objects/table.pug
26include objects/alert.pug
26 27
27mixin box 28mixin box
28 +container(padX=true padY=true inPage=true) 29 +container(padX=true padY=true inPage=true)
@@ -702,4 +703,20 @@ html
702 +table-cell= 'Row 4,2' 703 +table-cell= 'Row 4,2'
703 +table-cell= 'Row 4,3' 704 +table-cell= 'Row 4,3'
704 705
706 //-----------------------------------------
707
708 +h1-heading('xl')= 'Alert'
709 +rule('medium')
710
711 +box
712 +alert= loremIpsum
713 br
714 +alert('primary')= loremIpsum
715 br
716 +alert('error')= loremIpsum
717 br
718 +alert('success')= loremIpsum
719 br
720 +alert('warning')= loremIpsum
721
705 722
diff --git a/tpl/objects/alert.pug b/tpl/objects/alert.pug
new file mode 100644
index 0000000..4d973eb
--- /dev/null
+++ b/tpl/objects/alert.pug
@@ -0,0 +1,11 @@
1mixin alert(variant)
2 -
3 let classes = {
4 'o-alert': true,
5 }
6 if (variant) {
7 classes['o-alert--' + variant] = true
8 }
9
10 div(class=classes)
11 block