Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/status/web/classic.css
blob: 5a5b0eaff58c64fe660add5c89b2ecf6a3ff0d64 (plain)
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
a:visited {
	color: #800080;
}

td.Event, td.BuildStep, td.Activity, td.Change, td.Time, td.Builder {
    border-top: 1px solid;
    border-right: 1px solid;
}

td.box {
       border: 1px solid;
}

/* Activity states */
.offline { 
        background-color: gray;
}
.idle {
	background-color: white;
}
.waiting { 
        background-color: yellow;
}
.building { 
        background-color: yellow;
}

/* LastBuild, BuildStep states */
.success {
	background-color: #72ff75;
}
.failure {
	background-color: red;
}
.warnings {
	background-color: #ff8000;
}
.exception {
	background-color: #c000c0;
}
.start,.running {
	background-color: yellow;
}

/* grid styles */

table.Grid {
    border-collapse: collapse;
}

table.Grid tr td {
    padding: 0.2em;
    margin: 0px;
    text-align: center;
}

table.Grid tr td.title {
    font-size: 90%;
    border-right: 1px gray solid;
    border-bottom: 1px gray solid;
}

table.Grid tr td.sourcestamp {
    font-size: 90%;
}

table.Grid tr td.builder {
    text-align: right;
    font-size: 90%;
}

table.Grid tr td.build {
    border: 1px gray solid;
}

div.footer {
    font-size: 80%;
}