summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_mentions.scss
blob: 37820cbd9db13a89013b44c287835c03d028e75f (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@charset 'UTF-8';

.mention {
    @include border-radius(3px);
    background: $primary-color;
    color: $white;
    padding-bottom: 2px;
    position: relative;
    z-index: 10;
}

.badge {
    background-color: #777;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    min-width: 10px;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.mentions__name {
    @include clearfix;
    cursor: pointer;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
    padding: 6px 10px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 101;

    .icon {
        @include opacity(.5);
        display: inline-block;
        margin: 0 7px 0 0;
        position: relative;
        text-align: center;
        top: 2px;
        vertical-align: top;
        width: 16px;

        &.icon__globe {
            svg {
                height: 14px;
                width: 14px;
            }
        }
    }

    .status {
        font-size: 15px;
        text-align: center;
        vertical-align: bottom;
        width: 20px;
    }

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

    .mention--align {
        @include clearfix;
        text-overflow: ellipsis;
        width: calc(100% - 50px);
    }
}

.mention__image {
    @include border-radius(20px);
    display: block;
    font-size: 15px;
    height: 16px;
    line-height: 16px;
    margin-right: 7px;
    margin-top: 3px;
    text-align: center;
    width: 16px;

    .mention--align {
        display: inline-block;
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.mention__fullname {
    @include opacity(.5);
}

.mention--highlight {
    background-color: $yellow;
}

.mention__purpose {
    @include opacity(.5);
    line-height: normal;
    margin-left: 5px;
}

.mention__channelname {
    @include opacity(.5);
}