summaryrefslogtreecommitdiffstats
path: root/webapp/plugins/jira/components/style.scss
blob: 4773283167e86ee3c561326a00e6c4a99a9930c2 (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
@charset 'UTF-8';

@import 'compass/utilities';
@import 'compass/css3';

.jirabots__dropdown {
    position: relative;
}

.jirabots__dropdown::before {
    position: absolute;
    top: 13px;
    right: 8px;
    content: " ";
    pointer-events: none;

    width: 0; 
    height: 0; 

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e2e2e2;
}

.jirabots__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;
}

.jirabot__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;

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

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