-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
72 lines (63 loc) · 1.09 KB
/
stylesheet.css
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
* {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: white;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
-webkit-app-region: drag;
display: flex;
}
#app {
border-radius: 8px;
background-color: #0747a6;
padding: 6px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
max-width: 600px;
}
#jira-logo {
flex: 0 0 auto;
height: 55px;
}
#labels {
flex: 1 1 auto;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: flex-end;
}
.label {
-webkit-app-region: no-drag;
cursor: pointer;
margin: 4px 0 4px 16px;
display: flex;
flex-direction: row;
align-items: baseline;
white-space: nowrap;
}
.label-name {
border-radius: 2px;
font-weight: 500;
padding: 2px 0 3px 28px;
font-size: 13px;
}
.label-name.highlight-label {
background-color: #fcc900;
color: black;
padding: 2px 14px 3px 14px;
}
.count {
width: 30px;
text-align: center;
font-size: 13px;
font-weight: 500;
margin: 0 6px;
}
#config-error {
margin: 0 16px;
}