From 3524f1bac11c8a9d1640bfeac5ceb063ff96d623 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sun, 6 Feb 2022 17:17:33 +0100 Subject: Improved variable structure --- src/objects/_checkbox.scss | 112 +++++++++++++++++++++++---------------------- 1 file changed, 58 insertions(+), 54 deletions(-) (limited to 'src/objects/_checkbox.scss') diff --git a/src/objects/_checkbox.scss b/src/objects/_checkbox.scss index 587321b..360fa1d 100644 --- a/src/objects/_checkbox.scss +++ b/src/objects/_checkbox.scss @@ -1,60 +1,64 @@ @use 'iro-sass/src/index' as iro; +@use '../functions' as fn; @include iro.props-namespace('checkbox') { @include iro.props-store(( --dims: ( --size: iro.fn-px-to-rem(14px), --label-gap: .6rem, - --border-width: iro.props-get(--dims --border-width --medium, $global: true), + --border-width: fn.dim(--border-width --medium, $global: true), --padding-x: .3rem, --padding-y: .3rem, - --margin-right: iro.props-get(--dims --spacing --x --md, $global: true), + --margin-right: fn.dim(--spacing --x --md, $global: true), ), + ), 'dims'); + + @include iro.props-store(( --colors: ( - --box-border: iro.props-get(--colors --fg-hi, $global: true), - --box-bg: iro.props-get(--colors --bg-hi, $global: true), + --box-border: fn.color(--fg-hi, $global: true), + --box-bg: fn.color(--bg-hi, $global: true), --hover: ( - --label: iro.props-get(--colors --fg-lo, $global: true), - --box-border: iro.props-get(--colors --fg, $global: true), + --label: fn.color(--fg-lo, $global: true), + --box-border: fn.color(--fg, $global: true), ), --accent: ( - --box-border: iro.props-get(--colors --accent --primary, $global: true), + --box-border: fn.color(--accent --primary, $global: true), --hover: ( - --box-border: iro.props-get(--colors --accent --primary-lo, $global: true), + --box-border: fn.color(--accent --primary-lo, $global: true), ), ), --key-focus: ( - --label: iro.props-get(--colors --focus --text, $global: true), - --box-border: iro.props-get(--colors --focus --fill, $global: true), - --shadow: iro.props-get(--colors --focus --shadow, $global: true), + --label: fn.color(--focus --text, $global: true), + --box-border: fn.color(--focus --fill, $global: true), + --shadow: fn.color(--focus --shadow, $global: true), ), --disabled: ( - --label: iro.props-get(--colors --fg-hi3, $global: true), - --box-border: iro.props-get(--colors --obj-lo, $global: true), - --box-bg: iro.props-get(--colors --bg-hi, $global: true), + --label: fn.color(--fg-hi3, $global: true), + --box-border: fn.color(--obj-lo, $global: true), + --box-bg: fn.color(--bg-hi, $global: true), ) ), - )); + ), 'colors'); @include iro.bem-object(iro.props-namespace()) { display: inline-flex; position: relative; align-items: flex-start; - margin-right: calc(-1 * #{iro.props-get(--dims --padding-x)} + #{iro.props-get(--dims --margin-right)}); - margin-left: calc(-1 * #{iro.props-get(--dims --padding-x)}); - padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x); // sass-lint:disable-line shorthand-values + margin-right: calc(-1 * #{fn.dim(--padding-x)} + #{fn.dim(--margin-right)}); + margin-left: calc(-1 * #{fn.dim(--padding-x)}); + padding: fn.dim(--padding-y) fn.dim(--padding-x); // sass-lint:disable-line shorthand-values @include iro.bem-elem('box') { display: block; position: relative; flex: 0 0 auto; - width: iro.props-get(--dims --size); - height: iro.props-get(--dims --size); - margin-top: calc(.5 * (#{$line-height * 1em} - #{iro.props-get(--dims --size)})); - border-radius: iro.props-get(--dims --border-width); - background-color: iro.props-get(--colors --box-border); + width: fn.dim(--size); + height: fn.dim(--size); + margin-top: calc(.5 * (#{$line-height * 1em} - #{fn.dim(--size)})); + border-radius: fn.dim(--border-width); + background-color: fn.color(--box-border); &::before, &::after { @@ -65,27 +69,27 @@ &::before { z-index: 2; - top: iro.props-get(--dims --border-width); - left: iro.props-get(--dims --border-width); - width: calc(iro.props-get(--dims --size) - 2 * iro.props-get(--dims --border-width)); - height: calc(iro.props-get(--dims --size) - 2 * iro.props-get(--dims --border-width)); + top: fn.dim(--border-width); + left: fn.dim(--border-width); + width: calc(fn.dim(--size) - 2 * fn.dim(--border-width)); + height: calc(fn.dim(--size) - 2 * fn.dim(--border-width)); transition: transform .2s ease; - background-color: iro.props-get(--colors --box-bg); + background-color: fn.color(--box-bg); } &::after { z-index: 3; - top: calc(.5 * #{iro.props-get(--dims --size)} - 1px); - left: calc(1.5 * #{iro.props-get(--dims --border-width)}); + top: calc(.5 * #{fn.dim(--size)} - 1px); + left: calc(1.5 * #{fn.dim(--border-width)}); box-sizing: border-box; - width: calc(iro.props-get(--dims --size) - 3 * iro.props-get(--dims --border-width)); + width: calc(fn.dim(--size) - 3 * fn.dim(--border-width)); height: 0; transform: scale(0); transition: transform .2s ease; border-width: 0 2px 2px 0; border-style: solid; border-radius: 2px; - border-color: iro.props-get(--colors --box-bg); + border-color: fn.color(--box-bg); } } @@ -93,20 +97,20 @@ display: block; position: absolute; z-index: 2; - top: calc(1 * iro.props-get(--dims --border-width)); - left: calc(1 * iro.props-get(--dims --border-width)); - width: calc(100% - 2 * iro.props-get(--dims --border-width)); - height: calc(100% - 2 * iro.props-get(--dims --border-width)); + top: calc(1 * fn.dim(--border-width)); + left: calc(1 * fn.dim(--border-width)); + width: calc(100% - 2 * fn.dim(--border-width)); + height: calc(100% - 2 * fn.dim(--border-width)); transform: scale(0); transform-origin: 40% 90%; transition: transform .2s ease; stroke-width: iro.fn-px-to-rem(3px); - color: iro.props-get(--colors --box-bg); + color: fn.color(--box-bg); } @include iro.bem-elem('label') { align-self: baseline; - margin-left: iro.props-get(--dims --label-gap); + margin-left: fn.dim(--label-gap); } @include iro.bem-elem('native') { @@ -122,11 +126,11 @@ &:hover { @include iro.bem-sibling-elem('label') { - color: iro.props-get(--colors --hover --label); + color: fn.color(--hover --label); } @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --hover --box-border); + background-color: fn.color(--hover --box-border); } } @@ -160,14 +164,14 @@ &:disabled { @include iro.bem-sibling-elem('label') { - color: iro.props-get(--colors --disabled --label); + color: fn.color(--disabled --label); } @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --disabled --box-border); + background-color: fn.color(--disabled --box-border); &::before { - background-color: iro.props-get(--colors --disabled --box-bg); + background-color: fn.color(--disabled --box-bg); } } } @@ -175,12 +179,12 @@ @include iro.bem-at-theme('keyboard') { &:focus { @include iro.bem-sibling-elem('label') { - color: iro.props-get(--colors --key-focus --label); + color: fn.color(--key-focus --label); } @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --key-focus --box-border); - box-shadow: iro.props-get(--colors --key-focus --shadow); + background-color: fn.color(--key-focus --box-border); + box-shadow: fn.color(--key-focus --shadow); } } } @@ -190,46 +194,46 @@ @include iro.bem-elem('native') { &:checked { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --accent --box-border); + background-color: fn.color(--accent --box-border); } &:hover { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --accent --hover --box-border); + background-color: fn.color(--accent --hover --box-border); } } } &:indeterminate { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --accent --box-border); + background-color: fn.color(--accent --box-border); } &:hover { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --accent --hover --box-border); + background-color: fn.color(--accent --hover --box-border); } } } &:disabled { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --disabled --box-border); + background-color: fn.color(--disabled --box-border); &::before { - background-color: iro.props-get(--colors --disabled --box-bg); + background-color: fn.color(--disabled --box-bg); } } &:checked { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --disabled --box-border); + background-color: fn.color(--disabled --box-border); } } &:indeterminate { @include iro.bem-sibling-elem('box') { - background-color: iro.props-get(--colors --disabled --box-border); + background-color: fn.color(--disabled --box-border); } } } -- cgit v1.2.3-70-g09d2