From 3b7e35551b499a7b8887adb068d3a80e4088b0c2 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 5 Feb 2022 19:23:14 +0100 Subject: Added field-label --- src/index.scss | 1 + src/layouts/_card.scss | 25 +++++++------ src/objects/_field-label.scss | 85 +++++++++++++++++++++++++++++++++++++++++++ src/objects/_text-field.scss | 5 +-- 4 files changed, 102 insertions(+), 14 deletions(-) create mode 100644 src/objects/_field-label.scss (limited to 'src') diff --git a/src/index.scss b/src/index.scss index 5a6a94c..ad3b1af 100644 --- a/src/index.scss +++ b/src/index.scss @@ -11,6 +11,7 @@ @import 'objects/rule'; @import 'objects/button'; @import 'objects/text-field'; +@import 'objects/field-label'; :root { @include iro.props-assign; diff --git a/src/layouts/_card.scss b/src/layouts/_card.scss index f6b6b03..037b29f 100644 --- a/src/layouts/_card.scss +++ b/src/layouts/_card.scss @@ -1,35 +1,38 @@ -@include namespace('card') { - @include store(( +@use 'iro-sass/src/index' as iro; +@use 'include-media/dist/include-media' as media; + +@include iro.props-namespace('card') { + @include iro.props-store(( --dims: ( - --pad-x: iro-px-to-rem(11px), - --pad-y: iro-px-to-rem(8px), + --pad-x: iro.fn-px-to-rem(11px), + --pad-y: iro.fn-px-to-rem(8px), --lg: ( - --pad-x: iro-px-to-rem(14px), - --pad-y: iro-px-to-rem(11px), + --pad-x: iro.fn-px-to-rem(14px), + --pad-y: iro.fn-px-to-rem(11px), ) ) )); - @include layout(namespace()) { + @include iro.bem-layout(iro.props-namespace()) { display: flex; align-items: center; padding: prop(--dims --pad-y) prop(--dims --pad-x); gap: prop(--dims --pad-x); line-height: 1.4; - @include modifier('lg') { + @include iro.bem-modifier('lg') { padding: prop(--dims --lg --pad-y) prop(--dims --lg --pad-x); gap: prop(--dims --lg --pad-x); } - @include modifier('flush') { + @include iro.bem-modifier('flush') { padding: 0; } - @include element('block') { + @include iro.bem-elem('block') { flex: 0 0 auto; - @include modifier('main') { + @include iro.bem-modifier('main') { flex-shrink: 1; width: 100%; } diff --git a/src/objects/_field-label.scss b/src/objects/_field-label.scss new file mode 100644 index 0000000..341bf49 --- /dev/null +++ b/src/objects/_field-label.scss @@ -0,0 +1,85 @@ +@use 'iro-sass/src/index' as iro; +@use '../vars'; +@use '../mixins/typography'; + +@include iro.props-namespace('field-label') { + @include iro.props-store(( + --dims: ( + --spacing-x: iro.props-get(--dims --spacing --x --sm, $global: true), + --spacing-y: iro.props-get(--dims --spacing --y --xs, $global: true), + --label-font-size: iro.props-get(--dims --font-size --sm, $global: true), + --hint-font-size: iro.props-get(--dims --font-size --sm, $global: true), + ), + --colors: ( + --label: iro.props-get(--colors --fg-hi, $global: true), + --hint: iro.props-get(--colors --fg, $global: true), + --error-hint: iro.props-get(--colors --accent --error, $global: true), + --disabled: iro.props-get(--colors --fg-hi3, $global: true), + ), + )); + + @include iro.bem-object(iro.props-namespace()) { + display: inline-block; + + @include iro.bem-elem('label') { + display: block; + padding-right: iro.props-get(--dims --spacing-x); + color: iro.props-get(--colors --label); + font-size: iro.props-get(--dims --label-font-size); + font-weight: 400; + line-height: 1.3; + + @include iro.bem-next-elem('content') { + margin-top: iro.props-get(--dims --spacing-y); + } + } + + @include iro.bem-elem('content') { + display: inline-block; + } + + @include iro.bem-elem('hint') { + display: block; + margin-top: iro.props-get(--dims --spacing-y); + color: iro.props-get(--colors --hint); + font-size: iro.props-get(--dims --hint-font-size); + } + + @include iro.bem-is('invalid') { + @include iro.bem-elem('hint') { + color: iro.props-get(--colors --error-hint); + } + } + + @include iro.bem-is('disabled') { + @include iro.bem-elem('label', 'hint') { + color: iro.props-get(--colors --disabled); + } + } + + @include iro.bem-modifier('left', 'right') { + display: inline-flex; + align-items: baseline; + + @include iro.bem-elem('label') { + display: inline-block; + + @include iro.bem-next-elem('content') { + margin-top: 0; + } + } + } + + @include iro.bem-modifier('left') { + @include iro.bem-elem('label') { + text-align: left; + } + } + + @include iro.bem-modifier('right') { + @include iro.bem-elem('label') { + text-align: right; + } + } + } +} diff --git a/src/objects/_text-field.scss b/src/objects/_text-field.scss index f2c3678..ac48216 100644 --- a/src/objects/_text-field.scss +++ b/src/objects/_text-field.scss @@ -78,9 +78,8 @@ @include iro.bem-elem('input') { @include typography.set-font(vars.$font--main, (size: 1em, line-height: vars.$line-height)); - display: block; - color: iro.props-get(--colors --text); - resize: none; + color: iro.props-get(--colors --text); + resize: none; &::placeholder { opacity: 1; -- cgit v1.2.3-70-g09d2