forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (114 loc) · 2.64 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
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: #fef764; }
.sig-apps { --color: #4562c2; }
.sig-architecture { --color: #1057a8; }
.sig-auth { --color: #98c0fc; }
.sig-autoscaling { --color: #806284; }
.sig-cli { --color: #9000ad; }
.sig-cloud-provider { --color: #d70597; }
.sig-cluster-lifecycle { --color: #a16a81; }
.sig-contributor-experience { --color: #63632a; }
.sig-docs { --color: #975a0d; }
.sig-instrumentation { --color: #ca0f15; }
.sig-multicluster { --color: #d31847; }
.sig-network { --color: #c7740e; }
.sig-node { --color: #e8af9b; }
.sig-release { --color: #f62962; }
.sig-scalability { --color: #05e81e; }
.sig-scheduling { --color: #d5fcf2; }
.sig-service-catalog { --color: #6edd82; }
.sig-storage { --color: #71a87d; }
.sig-testing { --color: #8bb023; }
.sig-ui { --color: #3546e3; }
.sig-windows { --color: #a45dbc; }
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;
}