forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (107 loc) · 2.23 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
li > * {
cursor: default;
}
li, li > span {
cursor: pointer;
}
pre {
padding: 10px;
white-space: pre-wrap;
overflow: auto;
background-color: #eee;
max-height: 800px;
}
pre span.mm {
color: grey;
}
.clearoptions {
cursor: pointer;
}
div.failure {
border: 1px solid;
border-radius: 5px;
padding: 5px;
margin-bottom: 5px;
}
div.failure > h2 {
margin: 0;
padding: 0;
}
input[type=text] {
width: 500px;
}
h2 > a {
font-size: 14px;
padding: 10px 0 0 10px;
}
span.owner {
cursor: pointer;
margin: 10px;
padding: 0 10px 0 10px;
border: 1px solid black;
border-radius: 5px;
background: var(--color, #eee);
}
button.toggle {
cursor: pointer;
font-size: 16px;
padding: 5px 10px 5px 10px;
border-radius: 5px;
border-color: var(--color, #eee);
border-width: 3px;
background-color: rgba(0, 0, 0, 0);
}
button.toggle.active {
background-color: var(--color, #eee);
}
/* colors from http://colorbrewer2.org/#type=qualitative&scheme=Set3&n=12 */
.sig-api-machinery { --color: #bc80bd; }
.sig-apps { --color: #ffffb3; }
.sig-autoscaling { --color: #bebada; }
.sig-big-data { --color: #fb8072; }
.sig-cli { --color: #80b1d3; }
.sig-cluster-lifecycle { --color: #fdb462; }
.sig-multicluster { --color: #b3de69; }
.sig-instrumentation { --color: #fccde5; }
.sig-network { --color: #d9d9d9; }
.sig-node { --color: #8dd3c7; }
.sig-scalability { --color: #ccebc5; }
.sig-scheduling { --color: #ffed6f; }
.sig-storage { --color: #aaf; }
.sig-ui { --color: #afa; }
.sig-testing { --color: #faa; }
div.graph {
width: 1200px;
height: 200px; /* keep synchronized with script.js:graphHeight */
}
/* http://stackoverflow.com/a/17579580/3694 */
span[data-tooltip]:hover {
position: relative;
}
span[data-tooltip]:hover:after {
content: attr(data-tooltip);
position: absolute;
left: 0;
top: 100%;
z-index: 1;
background: white;
white-space: nowrap;
padding: 4px 4px;
border: 1px solid black;
border-radius: 5px;
}
td {
padding: 0 1.5em 0 0;
}
table {
margin: 5px;
}
ul {
padding-left: 20px;
}
button.rest {
width: 20em;
}
button.rest ~ * {
display: none;
}