diff options
Diffstat (limited to 'src/objects')
-rw-r--r-- | src/objects/_action-button.scss | 12 | ||||
-rw-r--r-- | src/objects/_action-button.vars.scss | 42 | ||||
-rw-r--r-- | src/objects/_badge.vars.scss | 4 | ||||
-rw-r--r-- | src/objects/_button.vars.scss | 18 | ||||
-rw-r--r-- | src/objects/_divider.scss | 25 | ||||
-rw-r--r-- | src/objects/_popover.scss | 2 |
6 files changed, 58 insertions, 45 deletions
diff --git a/src/objects/_action-button.scss b/src/objects/_action-button.scss index ca047bc..dcabb57 100644 --- a/src/objects/_action-button.scss +++ b/src/objects/_action-button.scss | |||
@@ -137,6 +137,10 @@ | |||
137 | } | 137 | } |
138 | } | 138 | } |
139 | 139 | ||
140 | @include bem.elem('label') { | ||
141 | margin-inline: props.get(vars.$pad-i-label); | ||
142 | } | ||
143 | |||
140 | @include -apply-theme(vars.$default-theme); | 144 | @include -apply-theme(vars.$default-theme); |
141 | 145 | ||
142 | @each $theme in map.keys(props.get(vars.$themes)) { | 146 | @each $theme in map.keys(props.get(vars.$themes)) { |
@@ -154,12 +158,16 @@ | |||
154 | } | 158 | } |
155 | } | 159 | } |
156 | 160 | ||
157 | @each $mod, $pad-i, $pad-i-pill, $pad-b, $font-size in vars.$fixed-sizes { | 161 | @each $mod, $pad-i, $pad-i-label, $pad-i-pill, $pad-b, $font-size in vars.$fixed-sizes { |
158 | @include bem.modifier($mod) { | 162 | @include bem.modifier($mod) { |
159 | padding-block: props.get($pad-b); | 163 | padding-block: props.get($pad-b); |
160 | padding-inline: props.get($pad-i); | 164 | padding-inline: props.get($pad-i); |
161 | font-size: props.get($font-size); | 165 | font-size: props.get($font-size); |
162 | 166 | ||
167 | @include bem.elem('label') { | ||
168 | margin-inline: props.get($pad-i-label); | ||
169 | } | ||
170 | |||
163 | @include bem.modifier('pill') { | 171 | @include bem.modifier('pill') { |
164 | padding-inline: props.get($pad-i-pill); | 172 | padding-inline: props.get($pad-i-pill); |
165 | } | 173 | } |
@@ -170,7 +178,7 @@ | |||
170 | inline-size: calc(1em * props.get(vars.$line-height) + 2 * props.get(vars.$pad-b)); | 178 | inline-size: calc(1em * props.get(vars.$line-height) + 2 * props.get(vars.$pad-b)); |
171 | padding-inline: 0; | 179 | padding-inline: 0; |
172 | 180 | ||
173 | @each $mod, $pad-i, $pad-i-pill, $pad-b, $font-size in vars.$fixed-sizes { | 181 | @each $mod, $pad-i, $pad-i-label, $pad-i-pill, $pad-b, $font-size in vars.$fixed-sizes { |
174 | @include bem.modifier($mod) { | 182 | @include bem.modifier($mod) { |
175 | inline-size: calc(1em * props.get(vars.$line-height) + 2 * props.get($pad-b)); | 183 | inline-size: calc(1em * props.get(vars.$line-height) + 2 * props.get($pad-b)); |
176 | padding-inline: 0; | 184 | padding-inline: 0; |
diff --git a/src/objects/_action-button.vars.scss b/src/objects/_action-button.vars.scss index 9afd5d7..9de985a 100644 --- a/src/objects/_action-button.vars.scss +++ b/src/objects/_action-button.vars.scss | |||
@@ -5,35 +5,39 @@ | |||
5 | 5 | ||
6 | $line-height: props.def(--o-action-button--line-height, 1.4) !default; | 6 | $line-height: props.def(--o-action-button--line-height, 1.4) !default; |
7 | $pad-i: props.def(--o-action-button--pad-i, props.get(core.$size--150)) !default; | 7 | $pad-i: props.def(--o-action-button--pad-i, props.get(core.$size--150)) !default; |
8 | $pad-i-label: props.def(--o-button--pad-i-label, props.get(core.$size--50)) !default; | ||
8 | $pad-i-pill: props.def(--o-action-button--pad-i-pill, props.get(core.$size--200)) !default; | 9 | $pad-i-pill: props.def(--o-action-button--pad-i-pill, props.get(core.$size--200)) !default; |
9 | $pad-b: props.def(--o-action-button--pad-b, props.get(core.$size--85)) !default; | 10 | $pad-b: props.def(--o-action-button--pad-b, props.get(core.$size--85)) !default; |
10 | $border-width: props.def(--o-action-button--border-width, props.get(core.$border-width--thin)) !default; | 11 | $border-width: props.def(--o-action-button--border-width, props.get(core.$border-width--thin)) !default; |
11 | $rounding: props.def(--o-action-button--rounding, props.get(core.$rounding)) !default; | 12 | $rounding: props.def(--o-action-button--rounding, props.get(core.$rounding)) !default; |
12 | $font-size: props.def(--o-action-button--font-size, props.get(core.$font-size--100)) !default; | 13 | $font-size: props.def(--o-action-button--font-size, props.get(core.$font-size--100)) !default; |
13 | 14 | ||
14 | $pad-i--sm: props.def(--o-action-button--sm--pad-i, props.get(core.$size--100)) !default; | 15 | $pad-i--sm: props.def(--o-action-button--sm--pad-i, props.get(core.$size--100)) !default; |
15 | $pad-i-pill--sm: props.def(--o-action-button--sm--pad-i-pill, props.get(core.$size--150)) !default; | 16 | $pad-i-label--sm: props.def(--o-button--sm--pad-i-label, props.get(core.$size--25)) !default; |
16 | $pad-b--sm: props.def(--o-action-button--sm--pad-b, props.get(core.$size--40)) !default; | 17 | $pad-i-pill--sm: props.def(--o-action-button--sm--pad-i-pill, props.get(core.$size--150)) !default; |
17 | $font-size--sm: props.def(--o-action-button--sm--font-size, props.get(core.$font-size--75)) !default; | 18 | $pad-b--sm: props.def(--o-action-button--sm--pad-b, props.get(core.$size--40)) !default; |
19 | $font-size--sm: props.def(--o-action-button--sm--font-size, props.get(core.$font-size--75)) !default; | ||
18 | 20 | ||
19 | $pad-i--lg: props.def(--o-action-button--lg--pad-i, props.get(core.$size--175)) !default; | 21 | $pad-i--lg: props.def(--o-action-button--lg--pad-i, props.get(core.$size--175)) !default; |
20 | $pad-i-pill--lg: props.def(--o-action-button--lg--pad-i-pill, props.get(core.$size--225)) !default; | 22 | $pad-i-label--lg: props.def(--o-button--lg--pad-i-label, props.get(core.$size--100)) !default; |
21 | $pad-b--lg: props.def(--o-action-button--lg--pad-b, props.get(core.$size--115)) !default; | 23 | $pad-i-pill--lg: props.def(--o-action-button--lg--pad-i-pill, props.get(core.$size--250)) !default; |
22 | $font-size--lg: props.def(--o-action-button--lg--font-size, props.get(core.$font-size--150)) !default; | 24 | $pad-b--lg: props.def(--o-action-button--lg--pad-b, props.get(core.$size--115)) !default; |
25 | $font-size--lg: props.def(--o-action-button--lg--font-size, props.get(core.$font-size--150)) !default; | ||
23 | 26 | ||
24 | $pad-i--xl: props.def(--o-action-button--xl--pad-i, props.get(core.$size--225)) !default; | 27 | $pad-i--xl: props.def(--o-action-button--xl--pad-i, props.get(core.$size--225)) !default; |
25 | $pad-i-pill--xl: props.def(--o-action-button--xl--pad-i-pill, props.get(core.$size--300)) !default; | 28 | $pad-i-label--xl: props.def(--o-button--xl--pad-i-label, props.get(core.$size--150)) !default; |
26 | $pad-b--xl: props.def(--o-action-button--xl--pad-b, props.get(core.$size--150)) !default; | 29 | $pad-i-pill--xl: props.def(--o-action-button--xl--pad-i-pill, props.get(core.$size--300)) !default; |
27 | $font-size--xl: props.def(--o-action-button--xl--font-size, props.get(core.$font-size--200)) !default; | 30 | $pad-b--xl: props.def(--o-action-button--xl--pad-b, props.get(core.$size--150)) !default; |
31 | $font-size--xl: props.def(--o-action-button--xl--font-size, props.get(core.$font-size--200)) !default; | ||
28 | 32 | ||
29 | $key-focus--border-width: props.def(--o-action-button--key-focus--border-width, props.get(core.$key-focus--border-width)) !default; | 33 | $key-focus--border-width: props.def(--o-action-button--key-focus--border-width, props.get(core.$key-focus--border-width)) !default; |
30 | $key-focus--border-offset: props.def(--o-action-button--key-focus--border-offset, props.get(core.$key-focus--border-offset)) !default; | 34 | $key-focus--border-offset: props.def(--o-action-button--key-focus--border-offset, props.get(core.$key-focus--border-offset)) !default; |
31 | $key-focus--outline-width: props.def(--o-action-button--key-focus--outline-width, props.get(core.$key-focus--outline-width)) !default; | 35 | $key-focus--outline-width: props.def(--o-action-button--key-focus--outline-width, props.get(core.$key-focus--outline-width)) !default; |
32 | 36 | ||
33 | $fixed-sizes: ( | 37 | $fixed-sizes: ( |
34 | 'sm' $pad-i--sm $pad-i-pill--sm $pad-b--sm $font-size--sm, | 38 | 'sm' $pad-i--sm $pad-i-label--sm $pad-i-pill--sm $pad-b--sm $font-size--sm, |
35 | 'lg' $pad-i--lg $pad-i-pill--lg $pad-b--lg $font-size--lg, | 39 | 'lg' $pad-i--lg $pad-i-label--lg $pad-i-pill--lg $pad-b--lg $font-size--lg, |
36 | 'xl' $pad-i--xl $pad-i-pill--xl $pad-b--xl $font-size--xl, | 40 | 'xl' $pad-i--xl $pad-i-label--xl $pad-i-pill--xl $pad-b--xl $font-size--xl, |
37 | ) !default; | 41 | ) !default; |
38 | 42 | ||
39 | $themes: props.def(--o-action-button, (), 'color'); | 43 | $themes: props.def(--o-action-button, (), 'color'); |
@@ -68,9 +72,9 @@ $default-theme: map.deep-merge(( | |||
68 | ), | 72 | ), |
69 | 73 | ||
70 | --selected: ( | 74 | --selected: ( |
71 | --bg-color: props.get(core.$theme, --text-mute), | 75 | --bg-color: props.get(core.$theme, --heading), |
72 | --label-color: props.get(core.$theme, --base, --50), | 76 | --label-color: props.get(core.$theme, --base, --50), |
73 | --border-color: props.get(core.$theme, --text-mute), | 77 | --border-color: props.get(core.$theme, --heading), |
74 | 78 | ||
75 | --hover: ( | 79 | --hover: ( |
76 | --bg-color: props.get(core.$theme, --text), | 80 | --bg-color: props.get(core.$theme, --text), |
@@ -79,9 +83,9 @@ $default-theme: map.deep-merge(( | |||
79 | ), | 83 | ), |
80 | 84 | ||
81 | --active: ( | 85 | --active: ( |
82 | --bg-color: props.get(core.$theme, --heading), | 86 | --bg-color: props.get(core.$theme, --text-mute), |
83 | --label-color: props.get(core.$theme, --base, --50), | 87 | --label-color: props.get(core.$theme, --base, --50), |
84 | --border-color: props.get(core.$theme, --heading), | 88 | --border-color: props.get(core.$theme, --text-mute), |
85 | ), | 89 | ), |
86 | 90 | ||
87 | --disabled: ( | 91 | --disabled: ( |
diff --git a/src/objects/_badge.vars.scss b/src/objects/_badge.vars.scss index d96d6c4..6327e7b 100644 --- a/src/objects/_badge.vars.scss +++ b/src/objects/_badge.vars.scss | |||
@@ -40,7 +40,7 @@ $sizes: ( | |||
40 | 40 | ||
41 | $default-theme-override: () !default; | 41 | $default-theme-override: () !default; |
42 | $default-theme: props.def(--o-badge, ( | 42 | $default-theme: props.def(--o-badge, ( |
43 | --bg: props.get(core.$theme, --text-mute), | 43 | --bg: props.get(core.$theme, --heading), |
44 | --label: props.get(core.$theme, --bg-l2), | 44 | --label: props.get(core.$theme, --bg-l2), |
45 | 45 | ||
46 | --hover: ( | 46 | --hover: ( |
@@ -49,7 +49,7 @@ $default-theme: props.def(--o-badge, ( | |||
49 | ), | 49 | ), |
50 | 50 | ||
51 | --active: ( | 51 | --active: ( |
52 | --bg: props.get(core.$theme, --heading), | 52 | --bg: props.get(core.$theme, --text-mute), |
53 | --label: props.get(core.$theme, --bg-l2), | 53 | --label: props.get(core.$theme, --bg-l2), |
54 | ), | 54 | ), |
55 | 55 | ||
diff --git a/src/objects/_button.vars.scss b/src/objects/_button.vars.scss index bd3de91..f70bde7 100644 --- a/src/objects/_button.vars.scss +++ b/src/objects/_button.vars.scss | |||
@@ -5,14 +5,14 @@ | |||
5 | 5 | ||
6 | $line-height: props.def(--o-button--line-height, 1.4) !default; | 6 | $line-height: props.def(--o-button--line-height, 1.4) !default; |
7 | $pad-i: props.def(--o-button--pad-i, props.get(core.$size--200)) !default; | 7 | $pad-i: props.def(--o-button--pad-i, props.get(core.$size--200)) !default; |
8 | $pad-i-label: props.def(--o-button--pad-i-label, props.get(core.$size--75)) !default; | 8 | $pad-i-label: props.def(--o-button--pad-i-label, props.get(core.$size--50)) !default; |
9 | $pad-b: props.def(--o-button--pad-b, props.get(core.$size--65)) !default; | 9 | $pad-b: props.def(--o-button--pad-b, props.get(core.$size--65)) !default; |
10 | $border-width: props.def(--o-button--border-width, props.get(core.$border-width--medium)) !default; | 10 | $border-width: props.def(--o-button--border-width, props.get(core.$border-width--medium)) !default; |
11 | $rounding: props.def(--o-button--rounding, 10em) !default; | 11 | $rounding: props.def(--o-button--rounding, 10em) !default; |
12 | $font-size: props.def(--o-button--font-size, props.get(core.$font-size--100)) !default; | 12 | $font-size: props.def(--o-button--font-size, props.get(core.$font-size--100)) !default; |
13 | 13 | ||
14 | $pad-i--sm: props.def(--o-button--sm--pad-i, props.get(core.$size--150)) !default; | 14 | $pad-i--sm: props.def(--o-button--sm--pad-i, props.get(core.$size--150)) !default; |
15 | $pad-i-label--sm: props.def(--o-button--sm--pad-i-label, props.get(core.$size--50)) !default; | 15 | $pad-i-label--sm: props.def(--o-button--sm--pad-i-label, props.get(core.$size--25)) !default; |
16 | $pad-b--sm: props.def(--o-button--sm--pad-b, props.get(core.$size--25)) !default; | 16 | $pad-b--sm: props.def(--o-button--sm--pad-b, props.get(core.$size--25)) !default; |
17 | $font-size--sm: props.def(--o-button--sm--font-size, props.get(core.$font-size--75)) !default; | 17 | $font-size--sm: props.def(--o-button--sm--font-size, props.get(core.$font-size--75)) !default; |
18 | 18 | ||
@@ -66,19 +66,19 @@ $default-theme: props.def(--o-button, ( | |||
66 | ), | 66 | ), |
67 | 67 | ||
68 | --primary: ( | 68 | --primary: ( |
69 | --bg: props.get(core.$theme, --base, --800), | 69 | --bg: props.get(core.$theme, --base, --900), |
70 | --label: props.get(core.$theme, --base, --800-text), | 70 | --label: props.get(core.$theme, --base, --900-text), |
71 | --outline-border: props.get(core.$theme, --base, --800), | 71 | --outline-border: props.get(core.$theme, --base, --900), |
72 | --outline-label: props.get(core.$theme, --text), | 72 | --outline-label: props.get(core.$theme, --text), |
73 | 73 | ||
74 | --hover: ( | 74 | --hover: ( |
75 | --bg: props.get(core.$theme, --base, --900), | 75 | --bg: props.get(core.$theme, --base, --800), |
76 | --label: props.get(core.$theme, --base, --900-text), | 76 | --label: props.get(core.$theme, --base, --800-text), |
77 | ), | 77 | ), |
78 | 78 | ||
79 | --active: ( | 79 | --active: ( |
80 | --bg: props.get(core.$theme, --base, --900), | 80 | --bg: props.get(core.$theme, --base, --700), |
81 | --label: props.get(core.$theme, --base, --900-text), | 81 | --label: props.get(core.$theme, --base, --700-text), |
82 | ), | 82 | ), |
83 | ), | 83 | ), |
84 | ), 'color'); | 84 | ), 'color'); |
diff --git a/src/objects/_divider.scss b/src/objects/_divider.scss index b746551..65f1718 100644 --- a/src/objects/_divider.scss +++ b/src/objects/_divider.scss | |||
@@ -13,18 +13,19 @@ | |||
13 | @include materialize-at-root(meta.module-variables('vars')); | 13 | @include materialize-at-root(meta.module-variables('vars')); |
14 | 14 | ||
15 | @include bem.object('divider') { | 15 | @include bem.object('divider') { |
16 | display: flex; | 16 | display: flex; |
17 | flex: 0 0 auto; | 17 | flex: 0 0 auto; |
18 | flex-direction: row; | 18 | flex-direction: row; |
19 | align-items: center; | 19 | align-items: center; |
20 | block-size: 1em; | 20 | block-size: 1em; |
21 | margin-block: props.get(vars.$margin-b); | 21 | margin-block: props.get(vars.$margin-b); |
22 | font-size: props.get(vars.$strong--label-font-size); | 22 | font-size: props.get(vars.$strong--label-font-size); |
23 | font-weight: 700; | 23 | font-weight: 700; |
24 | line-height: 1; | 24 | line-height: 1; |
25 | color: props.get(vars.$strong--label-color); | 25 | color: props.get(vars.$strong--label-color); |
26 | text-transform: uppercase; | 26 | text-transform: uppercase; |
27 | letter-spacing: .5px; | 27 | letter-spacing: .5px; |
28 | background-color: transparent; | ||
28 | 29 | ||
29 | &::before, | 30 | &::before, |
30 | &::after { | 31 | &::after { |
diff --git a/src/objects/_popover.scss b/src/objects/_popover.scss index fa65ddb..afdcf32 100644 --- a/src/objects/_popover.scss +++ b/src/objects/_popover.scss | |||
@@ -10,7 +10,7 @@ | |||
10 | @include materialize-at-root(meta.module-variables('vars')); | 10 | @include materialize-at-root(meta.module-variables('vars')); |
11 | 11 | ||
12 | @include bem.object('popover') { | 12 | @include bem.object('popover') { |
13 | position: absolute; | 13 | position: fixed; |
14 | inset-block-start: 0; | 14 | inset-block-start: 0; |
15 | inset-inline-start: 0; | 15 | inset-inline-start: 0; |
16 | z-index: props.get(vars.$z-index); | 16 | z-index: props.get(vars.$z-index); |