summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_status-icon.scss
blob: 5bd68f3624576108c1f079ea15ede7caed459600 (plain)
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
54
55
56
57
58
59
60
61
62
63
@charset 'UTF-8';

.status-wrapper {
    display: inline-block;
    height: 32px;
    position: relative;

    .status {
        border-radius: 100px;
        bottom: -4px;
        height: 15px;
        line-height: 0;
        margin: 0;
        position: absolute;
        right: -3px;
        top: auto;
        width: 15px;

        .modal & {
            bottom: -6px;
        }


        svg {
            max-height: 11px;
            position: relative;
            top: 2px;
        }
    }
}

.status {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px;
    width: 12px;

    svg {
        max-height: 14px;
    }

    i,
    path,
    ellipse {
        @include opacity(.5);

        &.online--icon,
        &.away--icon {
            @include opacity(1);
        }
    }

    .fa-lock {
        margin-left: 1px;
    }

    .fa-globe {
        position: relative;
        top: -1px;
    }
}