blob: fb1b332cbd80943d9cede94088544eb2938c5402 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
body {
padding-left: 0px;
padding-right: 0px;
}
h1 {
margin: 0px;
}
div#navbar {
margin-bottom: 0px;
padding-bottom: 0px;
}
div.container {
background-color: white;
padding: 5px 5px;
}
table {
border-collapse: collapse;
border: black thin solid;
}
tr {
border: black thin solid;
border-bottom: none;
}
tr.urgent {
background-color: #f88;
}
tr.normal {
/* Mauve, as defined by wikipedia. */
background-color: #ff8;
}
tr.low {
background-color: #8f8;
}
tr {
background-color: #fff;
}
tr.detail {
background-color: white !important;
border-top-style: dashed;
border-top-width: thin;
}
div.error {
border: #c66dff medium solid;
background-color: #e0b0ff;
}
div.notice {
border: #c66dff medium solid;
background-color: #e0b0ff;
}
div.error p, div.notice p {
background-color: transparent;
}
.hidden {
display: none;
}
/** Flash notices **/
div.error {
background-color: #ffe;
border: solid 2px #ffc;
background-image: url('/images/error.png');
}
div.notice {
background-color: #eef;
border: solid 2px #ccf;
background-image: url('/images/information.png');
}
div.notice, div.error {
margin: 5px 5px 0px;
padding: 0px;
padding-left: 20px;
color: black;
font-size: 12px;
background-position: 5px;
background-repeat: no-repeat;
min-height: 20px;
}
div.error p, div.notice p {
background-color: transparent;
}
|