-
Notifications
You must be signed in to change notification settings - Fork 6
/
vmu.css
73 lines (58 loc) · 1.63 KB
/
vmu.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
h2 {
color: black;
background-color: #D1D1D1;
}
/* Table formatting */
th {
background-color: #EFEFEF;
border: 1px solid #CCCCCC;
color: #555555;
padding:0.1em;
text-align: center;
font-size:small;
}
.divider {padding: .1em;}
.yheader {text-align: left}
div.data {position:relative;}
td.result a {
text-decoration:none;
font-family:monospace;
color:black;
}
/* Test result colors */
.ignore {color: black; background-color: #B7EBBA;}
.ignored {color: black; background-color: #B7EBBA;}
.timeout {color: black; background-color: #6A94D4;}
.install {color: black; background-color: #FFA240;}
.update {color: black; background-color: #FFA240;}
.cleanup {color: black; background-color: #FFDE40;}
.success {color: black; background-color: #67E46F;}
.pass {color: black; background-color: #67E46F;}
.fail {color: black; background-color: #FF7673;}
.die {color: black; background-color: #EAF;}
.died {color: black; background-color: #EAF;}
.none {color: black; background-color: #EFEFEF;}
/* Organization link hover */
th#sort span#hide_text {display:block;}
th#sort:hover span#hide_text {display:none;}
th#sort a#sort_link {display:none;}
th#sort:hover a#sort_link{display:block;}
th#sort:hover {color: black; background-color: #0099CC;}
td.result:hover {color: black; background-color: #0099CC;}
/* Mouseover CSS */
div.mouseover{
position:absolute;
left:4em;
visibility:hidden;
white-space:nowrap;
background:#F8F8F8;
color:black;
border: 2px solid #8F8F8F;
text-align:left;
line-height:1.5em;
padding:.5em 1em;
z-index:101;
}
td:hover div.mouseover{
visibility:visible;
}