File: recipe-status.css

package info (click to toggle)
lptools 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 328 kB
  • sloc: python: 1,552; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (5)
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
body {
    background: url(background.png) repeat;
    color: #222222;
    font-family: "UbuntuBeta", Ubuntu, "Bitstream Vera Sans", "DejaVu Sans", Tahoma, sans-serif;
    font-size: 12px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: blue;
}

.failed-to-upload, .failed-to-build {
	background: red;
}

.chroot-problem, .dependency-wait {
	background: orange;
}

.not-available {
	background: gray;
}

.successfully-built {
	background: chartreuse;
}

.partial-success {
	background: yellow;
}