blob: 03e8a2c9dbce42f479020685d5d15286546ffd09 (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
@charset "ISO-8859-1";
/*
* simpleTheme for Miranda's HTTPServer Plugin by FREAK_THEMIGHTY
*/
/*
IDs:
table#listing
tr#header : headline (first <TR>)
tr#stats : footer (last <TR>)
a#uplink: Link in right bottom cell
CLASSes
tr.even : at even position
tr.odd : at odd position
td.folder : folder (take care of colspan="4" attribute here!!!)
for ALL <td> and <th>
.file : file name
a.{ext} : extension of a file, lowercase (only XSLT template)
.size : file size
.modified : file modified-date
.created : file created-date
*/
/*reset to default*/
* {
margin: 0px;
padding: 0px,
}
body {
direction: ltr;
color: #86867B;
background-color: #FFFFFF;
}
/* the table itsself */
table#listing {
width: 90%;
margin: auto;
text-align: inherit;
empty-cells: hide;
table-layout: auto;
border-collapse: separate;
border-spacing: 3px;
border-right: #86867B 1px dotted;
border-top: #86867B 0px solid;
border-left: #86867B 1px dotted;
border-bottom: #86867B 4px solid;
/*text-wrap: normal;
word-wrap: break-word;*/
font-family: 'Times New Roman'
}
/* caption of the file listing */
caption#tablecaption {
caption-side: top;
color: #000000;
background-color: #E6E7D7;
font: 1.5em Times;
padding-top: 0px;
padding-bottom: 3px;
border-right: #86867B 1px outset;
border-top: #86867B 2px outset;
border-left: #86867B 1px outset;
border-bottom: #86867B 2px outset;
margin-top: 9px;
margin-bottom: 5px;
margin-left: 0px;
vertical-align: middle;
overflow: auto;
}
tr#header>td {
font: 0.8em Times;
}
table#listing td {
font: menu;
border: #86867B 1px solid;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 8px;
padding-left: 6px;
vertical-align: middle;
overflow: hidden;
}
/* even elements */
#listing .even {
color: inherit;
background-color: #F5F5EA;
}
/* odd elements */
#listing .odd {
color: inherit;
background-color: #CDCCCC;
}
/* hover effect */
#listing td:hover {
color: #000000;
/*background-color: #F08080;*/
border-color: #000000;
}
#listing a:link {
text-decoration: none;
color: #CC0000;
font-weight: 800;
background-color: transparent;
}
#listing a:visited {
text-decoration: none;
color: #555555;
background-color: transparent;
}
#listing a:focus {
text-decoration: none;
color: inherit;
background-color: transparent;
}
#listing a:hover {
text-decoration: none;
color: #000000;
background-color: transparent;
}
#listing a:active {
text-decoration: none;
color: #555555;
background-color: transparent;
}
#listing a#uplink {
text-decoration: underline;
color: inherit;
background-color: transparent;
}
#listing img {
margin-top: 5px;
margin-right: 2px;
margin-left: 2px;
border: none;
width: 16px;
height: 16px;
}
#stats {
font: 0.8em Times;
}
#stats>th {
height: auto;
text-align: center;
vertical-align: middle;
}
td.file {
min-width: 70%;
}
td.size {
text-align: right;
}
td.modified {
font-weight: bold;
}
|