diff options
| author | Volpeon <git@volpeon.ink> | 2024-06-21 23:07:50 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2024-06-21 23:07:50 +0200 |
| commit | 48cb00040763459fc46d4aa108bf72c12f48f422 (patch) | |
| tree | 9609470d56bb31d55697ef0c42f1c908804dd3f1 /src/objects/_message.scss | |
| parent | Update (diff) | |
| download | iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.gz iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.bz2 iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.zip | |
WIP: Refactoring
Diffstat (limited to 'src/objects/_message.scss')
| -rw-r--r-- | src/objects/_message.scss | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/objects/_message.scss b/src/objects/_message.scss deleted file mode 100644 index 283ce26..0000000 --- a/src/objects/_message.scss +++ /dev/null | |||
| @@ -1,51 +0,0 @@ | |||
| 1 | @use 'iro-sass/src/index' as iro; | ||
| 2 | @use '../functions' as fn; | ||
| 3 | |||
| 4 | @include iro.props-namespace('message') { | ||
| 5 | @include iro.props-store(( | ||
| 6 | --dims: ( | ||
| 7 | --bubble: ( | ||
| 8 | --pad-x: fn.global-dim(--size --200), | ||
| 9 | --pad-y: fn.global-dim(--size --150), | ||
| 10 | --rounding: 0, | ||
| 11 | |||
| 12 | --75: ( | ||
| 13 | --pad-x: fn.global-dim(--size --150), | ||
| 14 | --pad-y: fn.global-dim(--size --85), | ||
| 15 | ), | ||
| 16 | ), | ||
| 17 | ) | ||
| 18 | ), 'dims'); | ||
| 19 | |||
| 20 | @include iro.props-store(( | ||
| 21 | --colors: ( | ||
| 22 | --highlight: fn.global-color(--fg-lo), | ||
| 23 | ), | ||
| 24 | ), 'colors'); | ||
| 25 | |||
| 26 | @include iro.bem-object(iro.props-namespace()) { | ||
| 27 | @include iro.bem-elem('suffix') { | ||
| 28 | margin-left: 1em; | ||
| 29 | float: right; | ||
| 30 | } | ||
| 31 | |||
| 32 | @include iro.bem-modifier('bubble') { | ||
| 33 | padding: fn.dim(--bubble --pad-y) fn.dim(--bubble --pad-x); | ||
| 34 | border-radius: fn.dim(--bubble --rounding); | ||
| 35 | background-color: fn.global-color(--bg); | ||
| 36 | color: fn.global-color(--fg); | ||
| 37 | |||
| 38 | @include iro.bem-elem('suffix') { | ||
| 39 | transform: translate(.2em, .2em); | ||
| 40 | } | ||
| 41 | |||
| 42 | @include iro.bem-modifier('highlight') { | ||
| 43 | box-shadow: -3px 0 0 0 fn.color(--highlight); | ||
| 44 | } | ||
| 45 | |||
| 46 | @include iro.bem-modifier('75') { | ||
| 47 | padding: fn.dim(--bubble --75 --pad-y) fn.dim(--bubble --75 --pad-x); | ||
| 48 | } | ||
| 49 | } | ||
| 50 | } | ||
| 51 | } | ||
