-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.css
120 lines (93 loc) · 2.37 KB
/
custom.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
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
body {
color: rgb(209, 205, 199);
background-color: rgb(24, 26, 27);
}
a {
color: rgb(51, 162, 255);
}
hr {
border-right-color: initial;
border-bottom-color: initial;
border-left-color: initial;
border-top-color: rgba(140, 130, 115, 0.1);
}
.breadcrumb {
background-color: rgb(35, 38, 39);
}
.breadcrumb-item.active {
color: rgb(158, 150, 137);
}
.table {
color: rgb(209, 205, 199);
}
.table-bordered {
border-color: rgb(56, 61, 63);
}
.table-bordered td, .table-bordered th {
border-color: rgb(56, 61, 63);
}
.table thead th {
border-bottom-color: rgb(56, 61, 63);
}
.table td, .table th {
border-top-color: rgb(56, 61, 63);
}
.table tbody tr.covered-by-large-tests, li.covered-by-large-tests,
tr.success, td.success, li.success, span.success {
background-color: rgb(41, 60, 23);
}
.table tbody tr.warning, .table tbody td.warning, li.warning, span.warning {
background-color: rgb(47, 40, 5);
}
.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
background-color: rgb(56, 22, 22);
}
.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
background-color: rgb(41, 64, 32);
}
.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
background-color: rgb(62, 82, 54);
}
.progress {
background-color: rgb(35, 38, 39);
}
.bg-success {
background-color: rgb(32, 134, 55) !important;
}
.bg-warning {
background-color: rgb(150, 112, 0) !important;
}
.bg-danger {
background-color: rgb(165, 29, 42) !important;
}
td span.default {
color: rgb(200, 196, 189);
}
td span.comment {
color: rgb(157, 148, 135);
}
td span.keyword {
color: rgb(200, 196, 189);
}
.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
background-color: rgb(41, 60, 23);
}
.bs-popover-auto[x-placement^="top"] > .arrow::before, .bs-popover-top > .arrow::before {
border-top-color: rgba(140, 130, 115, 0.25);
}
.bs-popover-auto[x-placement^="top"] > .arrow::after, .bs-popover-top > .arrow::after {
border-top-color: rgb(48, 52, 54);
}
.popover {
text-decoration-color: initial;
text-shadow: none;
background-color: rgb(24, 26, 27);
border-color: rgba(140, 130, 115, 0.2);
}
.popover-header {
background-color: rgb(29, 31, 32);
border-bottom-color: rgb(54, 58, 60);
}
.popover-body {
color: rgb(209, 205, 199);
}