summaryrefslogtreecommitdiffstats
path: root/src/.old/objects/_message.scss
blob: 283ce26721cc70106403f80c58c139f75524b65f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@include iro.props-namespace('message') {
    @include iro.props-store((
        --dims: (
            --bubble: (
                --pad-x:    fn.global-dim(--size --200),
                --pad-y:    fn.global-dim(--size --150),
                --rounding: 0,

                --75: (
                    --pad-x: fn.global-dim(--size --150),
                    --pad-y: fn.global-dim(--size --85),
                ),
            ),
        )
    ), 'dims');

    @include iro.props-store((
        --colors: (
            --highlight: fn.global-color(--fg-lo),
        ),
    ), 'colors');

    @include iro.bem-object(iro.props-namespace()) {
        @include iro.bem-elem('suffix') {
            margin-left: 1em;
            float:       right;
        }
        
        @include iro.bem-modifier('bubble') {
            padding:          fn.dim(--bubble --pad-y) fn.dim(--bubble --pad-x);
            border-radius:    fn.dim(--bubble --rounding);
            background-color: fn.global-color(--bg);
            color:            fn.global-color(--fg);
        
            @include iro.bem-elem('suffix') {
                transform: translate(.2em, .2em);
            }

            @include iro.bem-modifier('highlight') {
                box-shadow: -3px 0 0 0 fn.color(--highlight);
            }
        
            @include iro.bem-modifier('75') {
                padding: fn.dim(--bubble --75 --pad-y) fn.dim(--bubble --75 --pad-x);
            }
        }
    }
}