-
-
Notifications
You must be signed in to change notification settings - Fork 377
/
Copy pathstyle.css
169 lines (137 loc) · 3.18 KB
/
style.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
body {
font-family: sans-serif;
font-size: 1em;
font-kerning: normal;
font-variant-ligatures: common-ligatures;
text-rendering: optimizeLegibility;
padding-top: 10px;
}
.popover {
max-width: none;
}
.octicon {
margin-right:.25em;
vertical-align: baseline;
width: 0.75em;
}
.table-bordered>thead>tr>td {
border-bottom-width: 1px;
}
.table tbody>tr>td, .table thead>tr>td {
padding-top: 3px;
padding-bottom: 3px;
}
.table-condensed tbody>tr>td {
padding-top: 0;
padding-bottom: 0;
}
.table .progress {
margin-bottom: inherit;
}
.table-borderless th, .table-borderless td {
border: 0 !important;
}
.table tbody tr.covered-by-large-tests td, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
background-color: {{success-low}};
}
.table tbody tr.covered-by-medium-tests td, li.covered-by-medium-tests {
background-color: {{success-medium}};
}
.table tbody tr.covered-by-small-tests td, li.covered-by-small-tests {
background-color: {{success-high}};
}
.table tbody tr.warning td, .table tbody td.warning, li.warning, span.warning {
background-color: {{warning}};
}
.table tbody tr.danger td, .table tbody td.danger, li.danger, span.danger {
background-color: {{danger}};
}
.table tbody td.info {
/* background-color: #d9edf7; */
background-color: rgb(from var(--bs-info) r g b / 0.25);
}
td.big {
vertical-align: middle;
width: 117px;
}
td.small {
}
td.codeLine {
/* font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
font-family: "Source Code Pro", var(--bs-font-monospace);
white-space: pre-wrap;
}
td span.comment {
/* color: #888a85; */
color: var(--bs-secondary-color);
}
td span.default {
/* color: #2e3436; */
color: var(--bs-body-color);
}
td span.html {
/* color: #888a85; */
color: var(--bs-secondary-color);
}
td span.keyword {
/* color: #2e3436; */
color: var(--bs-body-color);
font-weight: bold;
}
pre span.string {
/* color: #2e3436; */
color: var(--bs-body-color);
}
span.success, span.warning, span.danger {
margin-right: 2px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
#toplink {
position: fixed;
left: 5px;
bottom: 5px;
outline: 0;
}
svg text {
/* font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif; */
font-family: var(--bs-font-sans-serif);
font-size: 11px;
/* color: #666; */
color: var(--bs-gray);
/* fill: #666; */
fill: var(--bs-gray);
}
.scrollbox {
height:245px;
overflow-x:scroll;
overflow-y:scroll;
}
table + .structure-heading {
/* border-top: 1px solid lightgrey; */
border-top: 1px solid var(--bs-gray-200);
padding-top: 0.5em;
}
.legend {
font-weight: bold;
margin-right: 2px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
.covered-by-small-tests, tr.covered-by-small-tests td {
background-color: {{success-high}};
}
.covered-by-medium-tests, tr.covered-by-medium-tests td {
background-color: {{success-medium}};
}
.covered-by-large-tests, tr.covered-by-large-tests td {
background-color: {{success-low}};
}
.not-covered, tr.not-covered td {
background-color: {{danger}};
}
.not-coverable, tr.not-coverable td {
background-color: {{warning}};
}