blob: d9a7387f575c0b9ad947f735113fb176d2a716c3 (
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
|
@import (reference) "../mixins";
@import (reference) "../variables";
@import (reference) "../components/ui";
@import (reference) "../components/navigator/base";
@import (reference) "../init/type";
@pendingColor: #fdfce2;
@workingColor: #ecf9fc;
@doneColor: #ecfced;
@cancelledColor: #fcecec;
@failedColor: #fcecec;
.analysis-reports-actions {
margin-bottom: 10px;
}
.analysis-reports-total {
float: right;
margin-top: -20px;
}
.analysis-reports-results .navigator-results-list > li {
cursor: default;
}
.analysis-reports-no-results {
border: none !important;
}
.analysis-reports-report-pending {
background-color: @pendingColor !important;
}
.analysis-reports-report-working {
background-color: @workingColor !important;
}
.analysis-reports-report-done {
background-color: @doneColor !important;
}
.analysis-reports-report-cancelled {
background-color: @cancelledColor !important;
}
.analysis-reports-report-failed {
background-color: @failedColor !important;
.analysis-reports-report-id { color: darken(@failedColor, 60%); }
}
.analysis-reports-project {
display: inline-block;
vertical-align: middle;
width: 30%;
.text-ellipsis;
}
.analysis-reports-timestamp {
display: inline-block;
vertical-align: middle;
width: 220px;
margin-left: 15px;
}
.analysis-reports-report-id {
position: absolute;
top: 6px;
right: 6px;
opacity: 0.3;
font-size: @bigFontSize;
&:before { content: '#'; }
}
.analysis-reports-spinner {
.size(200px, 200px);
margin-top: 20px;
}
.analysis-reports-spinner,
.analysis-reports-spinner:before
.analysis-reports-spinner:after {
-webkit-animation-duration: 6s;
animation-duration: 6s;
}
.analysis-reports-timestamp-spinner {
margin-left: 10px;
}
.analysis-reports-timestamp-spinner,
.analysis-reports-timestamp-spinner:before,
.analysis-reports-timestamp-spinner:after {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
|