blob: cac6833ee870e056f7752ddb67792eea65283541 (
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
102
103
104
105
106
107
108
109
110
111
|
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;
}
.hidden {
display: none;
}
/** Flash notices **/
.error {
background-color: #ffe;
border: solid 2px #ffc;
background-image: url('/images/error.png');
}
.notice {
background-color: #eef;
border: solid 2px #ccf;
background-image: url('/images/information.png');
}
tr.error, tr.notice {
margin: 5px 5px 0px;
padding: 0px;
padding-left: 25px;
color: black;
font-size: large;
background-position: 5px;
background-repeat: no-repeat;
min-height: 25px;
}
div.error, div.notice {
margin: 5px 5px 0px;
padding: 0px;
padding-left: 25px;
color: black;
font-size: large;
background-position: 5px;
background-repeat: no-repeat;
min-height: 25px;
}
div.flash p {
background-color: transparent;
}
table#events_table td {
width: 14%;
border-left: solid;
}
table#events_table td p.event_date {
font-weight: bold;
font-size: smaller;
}
p {
background-color: inherit;
}
.even {
background-color: #ddd;
}
|