summaryrefslogtreecommitdiffstats
path: root/src/objects/_bubble.scss
blob: 1259b4ac719558c250f0ea5cc3a6ad2131858865 (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
52
53
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@include iro.props-namespace('bubble') {
    @include iro.props-store((
        --colors: (
            --image-bg: fn.global-color(--obj),
        ),
    ), 'colors');

    @include iro.props-store((
        --dims: (
            --pad-x:      fn.global-dim(--size --200),
            --pad-y:      fn.global-dim(--size --150),
            --rounding:   3px,
            --arrow-size: fn.global-dim(--size --100),

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

    @include iro.bem-object(iro.props-namespace()) {
        position:         relative;
        padding:          fn.dim(--pad-y) fn.dim(--pad-x);
        border-radius:    fn.dim(--rounding);
        background-color: fn.global-color(--bg);
        color:            fn.global-color(--fg);

        &::before {
            content:             '';
            display:             none;
            position:            absolute;
            top:                 0;
            left:                calc(-1 * fn.dim(--arrow-size));
            border:              fn.dim(--arrow-size) solid fn.global-color(--bg);
            border-bottom-color: transparent;
            border-left-color:   transparent;
        }
        
        @include iro.bem-elem('time') {
            margin-left: 1em;
            float:       right;
            transform:   translate(.2em, .2em);
        }
        
        @include iro.bem-modifier('compact') {
            padding: fn.dim(--compact --pad-y) fn.dim(--compact --pad-x);
        }
    }
}