From 4f472e44dbd2ffa1e4e10c63b7ab74105d8e894b Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 19 Oct 2024 19:37:18 +0200 Subject: Remove old code --- src_old/objects/_field-label.scss | 86 --------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 src_old/objects/_field-label.scss (limited to 'src_old/objects/_field-label.scss') diff --git a/src_old/objects/_field-label.scss b/src_old/objects/_field-label.scss deleted file mode 100644 index 1518ea6..0000000 --- a/src_old/objects/_field-label.scss +++ /dev/null @@ -1,86 +0,0 @@ -@use 'iro-sass/src/index' as iro; -@use '../functions' as fn; - -@include iro.props-namespace('field-label') { - @include iro.props-store(( - --dims: ( - --spacing-i: fn.global-dim(--size --150), - --spacing-b: fn.global-dim(--size --85), - --label-font-size: fn.global-dim(--font-size --75), - --hint-font-size: fn.global-dim(--font-size --75), - ), - --colors: ( - --label: fn.global-color(--text-mute), - --hint: fn.global-color(--text-mute), - --error-hint: fn.global-color(--negative --900), - --disabled: fn.global-color(--text-disabled), - ), - )); - - @include iro.bem-object(iro.props-namespace()) { - display: block; - - @include iro.bem-elem('label') { - display: block; - flex: 0 0 auto; - padding-inline-end: fn.dim(--spacing-i); - color: fn.color(--label); - font-size: fn.dim(--label-font-size); - font-weight: 400; - line-height: 1.3; - - @include iro.bem-next-elem('content') { - margin-block-start: fn.dim(--spacing-b); - } - } - - @include iro.bem-elem('content') { - display: block; - flex: 1 1 auto; - } - - @include iro.bem-elem('hint') { - display: block; - margin-block-start: fn.dim(--spacing-b); - color: fn.color(--hint); - font-size: fn.dim(--hint-font-size); - } - - @include iro.bem-is('invalid') { - @include iro.bem-elem('hint') { - color: fn.color(--error-hint); - } - } - - @include iro.bem-is('disabled') { - @include iro.bem-elem('label', 'hint') { - color: fn.color(--disabled); - } - } - - @include iro.bem-modifier('align-start', 'align-end') { - display: flex; - align-items: baseline; - - @include iro.bem-elem('label') { - display: inline-block; - - @include iro.bem-next-elem('content') { - margin-block-start: 0; - } - } - } - - @include iro.bem-modifier('align-start') { - @include iro.bem-elem('label') { - text-align: start; - } - } - - @include iro.bem-modifier('align-end') { - @include iro.bem-elem('label') { - text-align: end; - } - } - } -} -- cgit v1.3.1