From dbb6887ce219342e6a110e0cef536a0c29c19f7d Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sun, 6 Feb 2022 15:06:00 +0100 Subject: Added action button --- src/index.scss | 1 + src/objects/_action-button.scss | 243 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 244 insertions(+) create mode 100644 src/objects/_action-button.scss (limited to 'src') diff --git a/src/index.scss b/src/index.scss index 9f7f85e..1124840 100644 --- a/src/index.scss +++ b/src/index.scss @@ -15,6 +15,7 @@ @import 'objects/radio'; @import 'objects/checkbox'; @import 'objects/switch'; +@import 'objects/action-button'; @import 'layouts/form'; diff --git a/src/objects/_action-button.scss b/src/objects/_action-button.scss new file mode 100644 index 0000000..153780d --- /dev/null +++ b/src/objects/_action-button.scss @@ -0,0 +1,243 @@ +@use 'iro-sass/src/index' as iro; + +@include iro.props-namespace('action-button') { + @include iro.props-store(( + --dims: ( + --padding-x: .6rem, + --padding-y: .6rem, + --rounding: 3px, + ), + --colors: ( + --bg: iro.props-get(--colors --bg-hi, $global: true), + --label: iro.props-get(--colors --fg, $global: true), + --border: iro.props-get(--colors --obj-lo, $global: true), + --shadow: 0 0 0 0 transparent, + + --hover: ( + --bg: iro.props-get(--colors --bg-hi2, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + --border: iro.props-get(--colors --fg-hi2, $global: true), + --shadow: 0 0 0 0 transparent, + ), + --active: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + --border: iro.props-get(--colors --fg-hi2, $global: true), + --shadow: 0 0 0 0 transparent, + ), + --selected: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + --border: iro.props-get(--colors --fg-hi3, $global: true), + --shadow: 0 0 0 0 transparent, + + --hover: ( + --border: iro.props-get(--colors --fg-hi2, $global: true), + --shadow: 0 0 0 0 transparent, + ), + --key-focus: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + ), + ), + --disabled: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + --label: iro.props-get(--colors --fg-hi3, $global: true), + --border: iro.props-get(--colors --obj-hi, $global: true), + --shadow: 0 0 0 0 transparent, + ), + --key-focus: ( + --bg: iro.props-get(--colors --bg-hi2, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + --border: iro.props-get(--colors --focus --fill, $global: true), + --shadow: iro.props-get(--colors --focus --shadow, $global: true), + ), + --quiet: ( + --label: iro.props-get(--colors --fg, $global: true), + + --hover: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + ), + --active: ( + --bg: iro.props-get(--colors --obj, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + ), + --selected: ( + --bg: iro.props-get(--colors --obj-hi, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + + --key-focus: ( + --bg: iro.props-get(--colors --obj, $global: true), + ), + ), + --disabled: ( + --label: iro.props-get(--colors --fg-hi3, $global: true), + ), + --key-focus: ( + --bg: iro.props-get(--colors --bg-hi2, $global: true), + --label: iro.props-get(--colors --fg-lo, $global: true), + --border: iro.props-get(--colors --focus --fill, $global: true), + --shadow: iro.props-get(--colors --focus --shadow, $global: true), + ), + ), + ), + )); + + @include iro.bem-object(iro.props-namespace()) { + display: inline-block; + padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x); + border: 1px solid iro.props-get(--colors --border); + border-radius: iro.props-get(--dims --rounding); + background-color: iro.props-get(--colors --bg); + box-shadow: iro.props-get(--colors --shadow); + color: iro.props-get(--colors --label); + line-height: 1; + text-align: center; + text-decoration: none; + text-overflow: ellipsis; + white-space: nowrap; + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover { + border-color: iro.props-get(--colors --hover --border); + background-color: iro.props-get(--colors --hover --bg); + box-shadow: iro.props-get(--colors --hover --shadow); + color: iro.props-get(--colors --hover --label); + } + + &:active { + border-color: iro.props-get(--colors --active --border); + background-color: iro.props-get(--colors --active --bg); + box-shadow: iro.props-get(--colors --active --shadow); + color: iro.props-get(--colors --active --label); + } + } + + @include iro.bem-at-theme('keyboard') { + &:focus { + border-color: iro.props-get(--colors --key-focus --border); + background-color: iro.props-get(--colors --key-focus --bg); + box-shadow: inset 0 0 0 1px iro.props-get(--colors --key-focus --border), iro.props-get(--colors --key-focus --shadow); + color: iro.props-get(--colors --key-focus --label); + } + } + + @include iro.bem-is('selected') { + border-color: iro.props-get(--colors --selected --border); + background-color: iro.props-get(--colors --selected --bg); + box-shadow: iro.props-get(--colors --selected --shadow); + color: iro.props-get(--colors --selected --label); + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover, + &:active { + border-color: iro.props-get(--colors --selected --hover --border); + background-color: iro.props-get(--colors --selected --bg); + box-shadow: iro.props-get(--colors --selected --hover --shadow); + color: iro.props-get(--colors --selected --label); + } + } + + @include iro.bem-at-theme('keyboard') { + &:focus { + border-color: iro.props-get(--colors --key-focus --border); + background-color: iro.props-get(--colors --selected --key-focus --bg); + box-shadow: inset 0 0 0 1px iro.props-get(--colors --key-focus --border), iro.props-get(--colors --key-focus --shadow); + color: iro.props-get(--colors --key-focus --label); + } + } + } + + @include iro.bem-modifier('quiet') { + border-color: transparent; + background-color: transparent; + box-shadow: none; + color: iro.props-get(--colors --quiet --label); + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover { + border-color: transparent; + background-color: iro.props-get(--colors --quiet --hover --bg); + box-shadow: none; + color: iro.props-get(--colors --quiet --hover --label); + } + + &:active { + border-color: transparent; + background-color: iro.props-get(--colors --quiet --active --bg); + box-shadow: none; + color: iro.props-get(--colors --quiet --active --label); + } + } + + @include iro.bem-at-theme('keyboard') { + &:focus { + border-color: iro.props-get(--colors --quiet --key-focus --border); + background-color: iro.props-get(--colors --quiet --key-focus --bg); + box-shadow: inset 0 0 0 1px iro.props-get(--colors --quiet --key-focus --border), iro.props-get(--colors --quiet --key-focus --shadow); + color: iro.props-get(--colors --quiet --key-focus --label); + } + } + + @include iro.bem-is('selected') { + border-color: transparent; + background-color: iro.props-get(--colors --quiet --selected --bg); + box-shadow: none; + color: iro.props-get(--colors --quiet --selected --label); + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover, + &:active { + border-color: transparent; + background-color: iro.props-get(--colors --quiet --selected --bg); + box-shadow: none; + color: iro.props-get(--colors --quiet --selected --label); + } + } + + @include iro.bem-at-theme('keyboard') { + &:focus { + border-color: iro.props-get(--colors --quiet --key-focus --border); + background-color: iro.props-get(--colors --quiet --selected --key-focus --bg); + box-shadow: inset 0 0 0 1px iro.props-get(--colors --quiet --key-focus --border), iro.props-get(--colors --quiet --key-focus --shadow); + color: iro.props-get(--colors --quiet --key-focus --label); + } + } + } + } + + @include iro.bem-is('disabled') { + border-color: iro.props-get(--colors --disabled --border); + background-color: iro.props-get(--colors --disabled --bg); + box-shadow: iro.props-get(--colors --disabled --shadow); + color: iro.props-get(--colors --disabled --label); + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover, + &:active { + border-color: iro.props-get(--colors --disabled --border); + background-color: iro.props-get(--colors --disabled --bg); + box-shadow: iro.props-get(--colors --disabled --shadow); + color: iro.props-get(--colors --disabled --label); + } + } + + @include iro.bem-modifier('quiet') { + border-color: transparent; + background-color: transparent; + box-shadow: none; + color: iro.props-get(--colors --quiet --disabled --label); + + @include iro.bem-multi('&:link, &:visited', 'modifier:' 'native') { + &:hover, + &:active { + border-color: transparent; + background-color: transparent; + box-shadow: none; + color: iro.props-get(--colors --quiet --disabled --label); + } + } + } + } + } +} -- cgit v1.2.3-54-g00ecf