diff options
Diffstat (limited to 'src/objects/_thumbnail.vars.scss')
| -rw-r--r-- | src/objects/_thumbnail.vars.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/objects/_thumbnail.vars.scss b/src/objects/_thumbnail.vars.scss new file mode 100644 index 0000000..ba8cebe --- /dev/null +++ b/src/objects/_thumbnail.vars.scss | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | @use 'sass:map'; | ||
| 2 | @use 'sass:string'; | ||
| 3 | @use 'iro-sass/src/props'; | ||
| 4 | @use '../core.vars' as core; | ||
| 5 | |||
| 6 | $size: props.def(--o-thumbnail--size, props.get(core.$size--700)) !default; | ||
| 7 | $rounding: props.def(--o-thumbnail--rounding, props.get(core.$rounding)) !default; | ||
| 8 | $spacing: props.def(--o-thumbnail--spacing, props.get(core.$size--100)) !default; | ||
| 9 | $border-width: props.def(--o-thumbnail--border-width, props.get(core.$border-width--thin)) !default; | ||
| 10 | |||
| 11 | $selected--border-width: props.def(--o-thumbnail--selected--border-width, props.get(core.$border-width--medium)) !default; | ||
| 12 | |||
| 13 | $key-focus--border-width: props.def(--o-thumbnail--key-focus--border-width, props.get(core.$key-focus--border-width)) !default; | ||
| 14 | $key-focus--border-offset: props.def(--o-thumbnail--key-focus--border-offset, props.get(core.$key-focus--border-offset)) !default; | ||
| 15 | $key-focus--outline-width: props.def(--o-thumbnail--key-focus--outline-width, props.get(core.$key-focus--outline-width)) !default; | ||
| 16 | |||
| 17 | $border-color: props.def(--o-thumbnail--border-color, props.get(core.$theme, --border-strong), 'color') !default; | ||
| 18 | |||
| 19 | $hover--border-color: props.def(--o-thumbnail--hover--border-color, props.get(core.$theme, --text-mute-more), 'color') !default; | ||
| 20 | |||
| 21 | $selected--border-color: props.def(--o-thumbnail--selected--border-color, props.get(core.$theme, --heading), 'color') !default; | ||
| 22 | |||
| 23 | $key-focus--border-color: props.def(--o-thumbnail--key-focus--border-color, props.get(core.$theme, --focus, --border), 'color') !default; | ||
| 24 | $key-focus--outline-color: props.def(--o-thumbnail--key-focus--outline-color, props.get(core.$theme, --focus, --outline), 'color') !default; | ||
| 25 | |||
| 26 | $size--md: props.def(--o-thumbnail--size, props.get(core.$size--600), 'md') !default; | ||
| 27 | |||
| 28 | $static-themes: props.def(--o-thumbnail, (), 'color'); | ||
| 29 | |||
| 30 | @each $theme in map.keys(props.get(core.$transparent-colors)) { | ||
| 31 | $thumbnail-theme: --static-#{string.slice($theme, 3)}; | ||
| 32 | |||
| 33 | $static-themes: props.merge($static-themes, ( | ||
| 34 | $thumbnail-theme: ( | ||
| 35 | --border: props.get(core.$transparent-colors, $theme, --400), | ||
| 36 | |||
| 37 | --hover: ( | ||
| 38 | --border: props.get(core.$transparent-colors, $theme, --500), | ||
| 39 | ), | ||
| 40 | |||
| 41 | --selected: ( | ||
| 42 | --border: props.get(core.$transparent-colors, $theme, --900), | ||
| 43 | ), | ||
| 44 | |||
| 45 | --key-focus: ( | ||
| 46 | --border: props.get(core.$transparent-colors, $theme, --900), | ||
| 47 | --outline: props.get(core.$transparent-colors, $theme, --300), | ||
| 48 | ), | ||
| 49 | ) | ||
| 50 | )); | ||
| 51 | } | ||
