summaryrefslogtreecommitdiffstats
path: root/src/objects/_status-indicator.scss
blob: 6bcb547d41bd05ee2edef1caefb21a496d81e838 (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
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;

@include iro.props-namespace('status-indicator') {
    @include iro.props-store((
        --dims: (
            --100: fn.global-dim(--size --100),
            --125: fn.global-dim(--size --125),
        ),
    ), 'dims');

    @include iro.props-store((
        --colors: (
            --default: fn.global-color(--obj-lo),
            --green:   fn.global-color(--green --bg-hi),
            --yellow:  fn.global-color(--yellow --bg-hi),
            --red:     fn.global-color(--red --bg-hi),
        ),
    ), 'colors');

    @include iro.bem-object(iro.props-namespace()) {
        display:          inline-block;
        width:            fn.dim(--100);
        height:           fn.dim(--100);
        border-radius:    fn.dim(--100);
        background-color: fn.color(--default);

        @include iro.bem-modifier('125') {
            width:         fn.dim(--125);
            height:        fn.dim(--125);
            border-radius: fn.dim(--125);
        }

        @each $color in 'green' 'yellow' 'red' {
            @include iro.bem-is($color) {
                background-color: fn.color(--#{$color});
            }
        }
    }
}