blob: 2f40167a92c172f707f6b012e339614c0a20b3a8 (
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
|
/*
* Fonts
*/
@baseFontSize: 13px;
@baseFontColor: #444;
@smallFontSize: 11px;
@headerFontSize: 16px;
/*
* Colors
*/
@black: #000000;
@white: #ffffff;
@grey: #efefef;
@darkGrey: #cdcdcd;
@blue: #4b9fd5;
@red: #d4333f;
@green: #85bb43;
@yellow: #fede06;
@orange: #f90;
@highlighted: @blue;
/*
* Icons
*/
@iconFontSize: 14px;
@iconLineHeight: 12px;
@severityBlockerColor: @red;
@severityCriticalColor: @red;
@severityMajorColor: @red;
@severityMinorColor: @green;
@severityInfoColor: @green;
@statusOpenColor: @blue;
@statusConfirmedColor: @blue;
@statusReopenedColor: @blue;
@statusResolvedColor: @baseFontColor;
@statusClosedColor: @baseFontColor;
@resolutionFixedColor: @baseFontColor;
@resolutionFalsePositiveColor: @baseFontColor;
@resolutionRemovedColor: @baseFontColor;
/*
* Transitions
*/
@defaultTransitionOptions: .3s ease;
|