blob: 64276df26b60178e73e07d6fe1d40294940511f8 (
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
|
/* $Id: */
BODY#theAdminPage #theHeader P {
display: none;
}
/* History tables */
TABLE.table2 {
border: 1px solid black;
margin: 1em auto;
padding: 0;
}
TABLE.table2 TD, TABLE.table2 TH {
padding: 0 1em;
}
TABLE.table2 TR {
text-align: left;
}
TABLE.table2 TR.throw {
text-align: center;
}
.hour {
white-space: pre;
}
.number {
text-align: right;
}
TABLE#dailyStats {
width: 60%;
}
TABLE#detailedStats {
width: 80%;
}
/* categoryOrdering */
SELECT.categoryList {
width: 100%;
}
FORM#categoryOrdering {
padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
}
FORM#categoryOrdering p {
text-align: left;
margin-top: 1em;
margin-bottom: 1em;
}
UL.categoryUl {
list-style: none;
padding: 0;
margin: 0;
}
LI.categoryLi {
border: 1px solid gray;
padding: 0px 5px;
margin-bottom: 5px;
}
FORM#categoryOrdering UL.categoryActions {
float: right;
margin-top: 5px;
}
/* */
FORM#cat_modify TABLE { width: auto; }
FIELDSET.elementEdit A {
display: block;
float: right;
}
TABLE.doubleSelect {
text-align: center;
margin: 0 auto;
width: 100%;
}
TABLE.doubleSelect TD {
padding: 0 5px;
width: 50%;
}
TABLE.doubleSelect SELECT.categoryList {
width: 100%;
}
FORM#categoryPermissions LI {
display:inline;
white-space: nowrap;
}
FIELDSET#generalConf SPAN.property {
width: 25%;
}
FIELDSET#generalConf TEXTAREA.description {
width: 70%;
}
|