blob: d9ac7cbd9c5b2a41804b4be64b586adea344589b (
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
113
114
115
116
117
118
119
120
121
122
|
.projects-sidebar {
width: 260px;
}
.projects-list .page-actions {
margin-bottom: 0;
}
.projects-empty-list {
padding: 60px 0;
border: 1px solid #e6e6e6;
border-radius: 2px;
text-align: center;
color: #777;
}
.project-card {
height: 115px;
box-sizing: border-box;
}
.project-card-name {
font-weight: 600;
}
.project-card-measures {
margin: 0 -15px;
}
.project-card-measures .project-card-measure {
width: 120px;
box-sizing: border-box;
padding: 0 15px;
}
.project-card-measures .project-card-measure:nth-child(-n+2) {
width: 90px;
}
.project-card-measure {
position: relative;
display: inline-block;
vertical-align: top;
text-align: center;
}
.project-card-measure + .project-card-measure:before {
position: absolute;
top: 50%;
left: 0;
width: 0;
height: 24px;
margin-top: -12px;
border-left: 1px solid #e6e6e6;
content: "";
}
.project-card-measure.pull-right:before {
display: none;
}
.project-card-measure .level {
margin-top: 0;
margin-bottom: 0;
}
.project-card-measure-inner {
display: inline-block;
vertical-align: top;
text-align: center;
}
.project-card-measure-number {
line-height: 24px;
font-size: 18px;
}
.project-card-measure-label {
margin-top: 4px;
font-size: 12px;
}
.project-card-quality-gate {
line-height: 24px;
}
.projects-facet-header {
padding-top: 10px;
padding-bottom: 10px;
transition: none;
}
.projects-facets-header {
margin-bottom: 10px;
padding: 10px 0;
border-bottom: 1px solid #e6e6e6;
}
.projects-facets-reset {
float: right;
}
.projects-facets-reset .button {
}
.projects-facet-bar {
display: inline-block;
width: 60px;
margin-left: 8px;
}
.projects-facet-bar-inner {
min-width: 1px;
height: 10px;
background-color: #b4b4b4;
transition: width 0.3s ease;
}
.search-navigator-facet.active .projects-facet-bar-inner {
background-color: #4b9fd5;
}
|