Show More
@@ -1,809 +1,812 b'' | |||||
1 | /*** Initial Settings ***/ |
|
1 | /*** Initial Settings ***/ | |
2 | #mainhtml{ |
|
2 | #mainhtml{ | |
3 | margin: 15px 50px; |
|
3 | margin: 15px 50px; | |
4 | background: #DBD4C6; |
|
4 | background: #DBD4C6; | |
5 | font-family: sans-serif; |
|
5 | font-family: sans-serif; | |
6 | } |
|
6 | } | |
7 |
|
7 | |||
8 | a { |
|
8 | a { | |
9 | color: #556CB5; |
|
9 | color: #556CB5; | |
10 | text-decoration: none; |
|
10 | text-decoration: none; | |
11 | } |
|
11 | } | |
12 | a:HOVER{ |
|
12 | a:HOVER{ | |
13 | text-decoration: underline; |
|
13 | text-decoration: underline; | |
14 | } |
|
14 | } | |
15 |
|
15 | |||
16 | /*** end of Initial Settings ***/ |
|
16 | /*** end of Initial Settings ***/ | |
17 |
|
17 | |||
18 | /*** ***/ |
|
18 | /*** ***/ | |
19 | .table_disp { |
|
19 | .table_disp { | |
20 | border-left: 0px solid #666666; |
|
20 | border-left: 0px solid #666666; | |
21 | border-bottom: 1px solid #666666; |
|
21 | border-bottom: 1px solid #666666; | |
22 | border-right: 1px solid #666666; |
|
22 | border-right: 1px solid #666666; | |
23 | padding: 0px; |
|
23 | padding: 0px; | |
24 | margin: 0px; |
|
24 | margin: 0px; | |
25 | border-spacing: 0px; |
|
25 | border-spacing: 0px; | |
26 | } |
|
26 | } | |
27 |
|
27 | |||
28 | .table_disp .header { |
|
28 | .table_disp .header { | |
29 | border-top: 1px solid #666666; |
|
29 | border-top: 1px solid #666666; | |
30 | background-color: #556CB5; |
|
30 | background-color: #556CB5; | |
31 | font-weight: bold; |
|
31 | font-weight: bold; | |
32 | color: white; |
|
32 | color: white; | |
33 | vertical-align: middle; |
|
33 | vertical-align: middle; | |
34 | padding: 3px 5px; |
|
34 | padding: 3px 5px; | |
35 | text-align: left; |
|
35 | text-align: left; | |
36 | font-size: 0.9em; |
|
36 | font-size: 0.9em; | |
37 | } |
|
37 | } | |
38 |
|
38 | |||
39 | .table_disp .header td { |
|
39 | .table_disp .header td { | |
40 | padding: 4px; |
|
40 | padding: 4px; | |
41 | vertical-align: middle; |
|
41 | vertical-align: middle; | |
42 | border-top: 1px solid #AAAAAA; |
|
42 | border-top: 1px solid #AAAAAA; | |
43 | border-bottom: 2px solid #666666; |
|
43 | border-bottom: 2px solid #666666; | |
44 | } |
|
44 | } | |
45 | .table_disp td { |
|
45 | .table_disp td { | |
46 | border-left: 1px solid #AAAAAA; |
|
46 | border-left: 1px solid #AAAAAA; | |
47 | padding-left: 4px; |
|
47 | padding-left: 4px; | |
48 | padding-right: 4px; |
|
48 | padding-right: 4px; | |
49 | } |
|
49 | } | |
50 |
|
50 | |||
51 | table tr.parity0:hover,table tr.parity1:hover { |
|
51 | table tr.parity0:hover,table tr.parity1:hover { | |
52 | background: #D5E1E6; |
|
52 | background: #D5E1E6; | |
53 | } |
|
53 | } | |
54 |
|
54 | |||
55 | table tr.parity0 { |
|
55 | table tr.parity0 { | |
56 | background: #EAEAE9; |
|
56 | background: #EAEAE9; | |
57 | } |
|
57 | } | |
58 |
|
58 | |||
59 | table tr.parity1 { |
|
59 | table tr.parity1 { | |
60 | background: #FFFFFF; |
|
60 | background: #FFFFFF; | |
61 | } |
|
61 | } | |
62 |
|
62 | |||
63 |
|
63 | |||
64 | /*** ***/ |
|
64 | /*** ***/ | |
65 |
|
65 | |||
66 | /** common settings **/ |
|
66 | /** common settings **/ | |
67 | .add_icon{ |
|
67 | .add_icon{ | |
68 | background: url("/images/icons/add.png") no-repeat scroll 3px; |
|
68 | background: url("/images/icons/add.png") no-repeat scroll 3px; | |
69 | height: 16px; |
|
69 | height: 16px; | |
70 | padding-left: 20px; |
|
70 | padding-left: 20px; | |
71 | padding-top: 0px; |
|
71 | padding-top: 0px; | |
72 | text-align: left; |
|
72 | text-align: left; | |
73 |
|
73 | |||
74 | } |
|
74 | } | |
75 | .edit_icon{ |
|
75 | .edit_icon{ | |
76 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; |
|
76 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; | |
77 | height: 16px; |
|
77 | height: 16px; | |
78 | padding-left: 20px; |
|
78 | padding-left: 20px; | |
79 | padding-top: 0px; |
|
79 | padding-top: 0px; | |
80 | text-align: left; |
|
80 | text-align: left; | |
81 | } |
|
81 | } | |
82 |
|
82 | |||
83 | .delete_icon{ |
|
83 | .delete_icon{ | |
84 | background: url("/images/icons/delete.png") no-repeat scroll 3px; |
|
84 | background: url("/images/icons/delete.png") no-repeat scroll 3px; | |
85 | height: 16px; |
|
85 | height: 16px; | |
86 | padding-left: 20px; |
|
86 | padding-left: 20px; | |
87 | padding-top: 0px; |
|
87 | padding-top: 0px; | |
88 | text-align: left; |
|
88 | text-align: left; | |
89 |
|
89 | |||
90 | } |
|
90 | } | |
91 |
|
91 | |||
92 | .action_button{ |
|
92 | .action_button{ | |
93 | border:0px; |
|
93 | border:0px; | |
94 | display: block; |
|
94 | display: block; | |
95 | } |
|
95 | } | |
96 | .action_button:hover{ |
|
96 | .action_button:hover{ | |
97 | border:0px; |
|
97 | border:0px; | |
98 | font-style:italic; |
|
98 | font-style:italic; | |
99 | cursor: pointer; |
|
99 | cursor: pointer; | |
100 | } |
|
100 | } | |
101 |
|
101 | |||
102 | .flash_msg ul{ |
|
102 | .flash_msg ul{ | |
103 | margin:0; |
|
103 | margin:0; | |
104 | padding:25px 0px 0px 0px; |
|
104 | padding:25px 0px 0px 0px; | |
105 |
|
105 | |||
106 | } |
|
106 | } | |
107 | .error_msg { |
|
107 | .error_msg { | |
108 | background-color:#FFCFCF; |
|
108 | background-color:#FFCFCF; | |
109 | background-image: url("/images/icons/error_msg.png"); |
|
109 | background-image: url("/images/icons/error_msg.png"); | |
110 | border:1px solid #FF9595; |
|
110 | border:1px solid #FF9595; | |
111 | color:#CC3300; |
|
111 | color:#CC3300; | |
112 | } |
|
112 | } | |
113 | .warning_msg { |
|
113 | .warning_msg { | |
114 | background-color:#FFFBCC; |
|
114 | background-color:#FFFBCC; | |
115 | background-image: url("/images/icons/warning_msg.png"); |
|
115 | background-image: url("/images/icons/warning_msg.png"); | |
116 | border:1px solid #FFF35E; |
|
116 | border:1px solid #FFF35E; | |
117 | color:#C69E00; |
|
117 | color:#C69E00; | |
118 | } |
|
118 | } | |
119 | .success_msg { |
|
119 | .success_msg { | |
120 | background-color:#D5FFCF; |
|
120 | background-color:#D5FFCF; | |
121 | background-image: url("/images/icons/success_msg.png"); |
|
121 | background-image: url("/images/icons/success_msg.png"); | |
122 | border:1px solid #97FF88; |
|
122 | border:1px solid #97FF88; | |
123 | color:#009900; |
|
123 | color:#009900; | |
124 | } |
|
124 | } | |
125 | .notice_msg { |
|
125 | .notice_msg { | |
126 | background-color:#DCE3FF; |
|
126 | background-color:#DCE3FF; | |
127 | background-image: url("/images/icons/notice_msg.png"); |
|
127 | background-image: url("/images/icons/notice_msg.png"); | |
128 | border:1px solid #93A8FF; |
|
128 | border:1px solid #93A8FF; | |
129 | color:#556CB5; |
|
129 | color:#556CB5; | |
130 | } |
|
130 | } | |
131 |
|
131 | |||
132 | .success_msg, .error_msg, .notice_msg, .warning_msg{ |
|
132 | .success_msg, .error_msg, .notice_msg, .warning_msg{ | |
133 | background-position:10px center; |
|
133 | background-position:10px center; | |
134 | background-repeat:no-repeat; |
|
134 | background-repeat:no-repeat; | |
135 | font-size:12px; |
|
135 | font-size:12px; | |
136 | font-weight:bold; |
|
136 | font-weight:bold; | |
137 | min-height:14px; |
|
137 | min-height:14px; | |
138 | line-height:14px; |
|
138 | line-height:14px; | |
139 | margin-bottom:0px; |
|
139 | margin-bottom:0px; | |
140 | margin-top:0px; |
|
140 | margin-top:0px; | |
141 | padding:3px 10px 3px 40px; |
|
141 | padding:3px 10px 3px 40px; | |
142 | display:block; |
|
142 | display:block; | |
143 | overflow: auto; |
|
143 | overflow: auto; | |
144 | } |
|
144 | } | |
145 |
|
145 | |||
146 | #msg_close { |
|
146 | #msg_close { | |
147 | background:transparent url("icons/cross_grey_small.png") no-repeat scroll 0 0; |
|
147 | background:transparent url("icons/cross_grey_small.png") no-repeat scroll 0 0; | |
148 | cursor:pointer; |
|
148 | cursor:pointer; | |
149 | height:16px; |
|
149 | height:16px; | |
150 | position:absolute; |
|
150 | position:absolute; | |
151 | right:5px; |
|
151 | right:5px; | |
152 | top:5px; |
|
152 | top:5px; | |
153 | width:16px; |
|
153 | width:16px; | |
154 | } |
|
154 | } | |
155 |
|
155 | |||
|
156 | .error-message{ | |||
|
157 | color:#CC3300; | |||
|
158 | } | |||
156 |
|
159 | |||
157 | div#main { |
|
160 | div#main { | |
158 | padding: 5px; |
|
161 | padding: 5px; | |
159 | } |
|
162 | } | |
160 |
|
163 | |||
161 | div#container { |
|
164 | div#container { | |
162 | background: #FFFFFF; |
|
165 | background: #FFFFFF; | |
163 | position: relative; |
|
166 | position: relative; | |
164 | color: #666; |
|
167 | color: #666; | |
165 | } |
|
168 | } | |
166 |
|
169 | |||
167 | div.page-header { |
|
170 | div.page-header { | |
168 | padding: 50px 20px 0; |
|
171 | padding: 50px 20px 0; | |
169 | background: #556cb5 top left repeat-x; |
|
172 | background: #556cb5 top left repeat-x; | |
170 | position: relative; |
|
173 | position: relative; | |
171 | } |
|
174 | } | |
172 |
|
175 | |||
173 | div.page-header h1 { |
|
176 | div.page-header h1 { | |
174 | margin: 10px 0 30px; |
|
177 | margin: 10px 0 30px; | |
175 | font-size: 1.8em; |
|
178 | font-size: 1.8em; | |
176 | font-weight: bold; |
|
179 | font-weight: bold; | |
177 | font-family: sans-serif; |
|
180 | font-family: sans-serif; | |
178 | letter-spacing: 1px; |
|
181 | letter-spacing: 1px; | |
179 | color: #FFFFFF; |
|
182 | color: #FFFFFF; | |
180 | } |
|
183 | } | |
181 |
|
184 | |||
182 | div.page-header h1 a { |
|
185 | div.page-header h1 a { | |
183 | font-weight: bold; |
|
186 | font-weight: bold; | |
184 | color: #FFFFFF; |
|
187 | color: #FFFFFF; | |
185 | } |
|
188 | } | |
186 |
|
189 | |||
187 | div.page-header a { |
|
190 | div.page-header a { | |
188 | text-decoration: none; |
|
191 | text-decoration: none; | |
189 | } |
|
192 | } | |
190 |
|
193 | |||
191 | div.page-header form { |
|
194 | div.page-header form { | |
192 | position: absolute; |
|
195 | position: absolute; | |
193 | margin-bottom: 2px; |
|
196 | margin-bottom: 2px; | |
194 | bottom: 0; |
|
197 | bottom: 0; | |
195 | right: 20px; |
|
198 | right: 20px; | |
196 | } |
|
199 | } | |
197 |
|
200 | |||
198 | div.page-header form label { |
|
201 | div.page-header form label { | |
199 | color: #DDD; |
|
202 | color: #DDD; | |
200 | } |
|
203 | } | |
201 |
|
204 | |||
202 | div.page-header form input { |
|
205 | div.page-header form input { | |
203 | padding: 2px; |
|
206 | padding: 2px; | |
204 | border: solid 1px #DDD; |
|
207 | border: solid 1px #DDD; | |
205 | } |
|
208 | } | |
206 |
|
209 | |||
207 | div.page-header form dl { |
|
210 | div.page-header form dl { | |
208 | overflow: hidden; |
|
211 | overflow: hidden; | |
209 | } |
|
212 | } | |
210 |
|
213 | |||
211 | div.page-header form dl dt { |
|
214 | div.page-header form dl dt { | |
212 | font-size: 1.2em; |
|
215 | font-size: 1.2em; | |
213 | } |
|
216 | } | |
214 |
|
217 | |||
215 | div.page-header form dl dt,div.page-header form dl dd { |
|
218 | div.page-header form dl dt,div.page-header form dl dd { | |
216 | margin: 0 0 0 5px; |
|
219 | margin: 0 0 0 5px; | |
217 | float: left; |
|
220 | float: left; | |
218 | height: 24px; |
|
221 | height: 24px; | |
219 | line-height: 20px; |
|
222 | line-height: 20px; | |
220 | } |
|
223 | } | |
221 |
|
224 | |||
222 | ul.page-nav { |
|
225 | ul.page-nav { | |
223 | margin: 10px 0 0 0; |
|
226 | margin: 10px 0 0 0; | |
224 | list-style-type: none; |
|
227 | list-style-type: none; | |
225 | overflow: hidden; |
|
228 | overflow: hidden; | |
226 | width: 800px; |
|
229 | width: 800px; | |
227 | padding: 0; |
|
230 | padding: 0; | |
228 | } |
|
231 | } | |
229 |
|
232 | |||
230 | ul.page-nav li { |
|
233 | ul.page-nav li { | |
231 | margin: 0 4px 0 0; |
|
234 | margin: 0 4px 0 0; | |
232 | float: left; |
|
235 | float: left; | |
233 | height: 24px; |
|
236 | height: 24px; | |
234 | font-size: 1.1em; |
|
237 | font-size: 1.1em; | |
235 | line-height: 24px; |
|
238 | line-height: 24px; | |
236 | text-align: center; |
|
239 | text-align: center; | |
237 | background: #556CB5; |
|
240 | background: #556CB5; | |
238 | } |
|
241 | } | |
239 |
|
242 | |||
240 | ul.page-nav li.current { |
|
243 | ul.page-nav li.current { | |
241 | background: #FFF; |
|
244 | background: #FFF; | |
242 | padding-right: 5px; |
|
245 | padding-right: 5px; | |
243 | padding-left: 5px; |
|
246 | padding-left: 5px; | |
244 | } |
|
247 | } | |
245 | ul.page-nav li.current a { |
|
248 | ul.page-nav li.current a { | |
246 | color: #556CB5; |
|
249 | color: #556CB5; | |
247 | } |
|
250 | } | |
248 | ul.page-nav li a { |
|
251 | ul.page-nav li a { | |
249 | height: 24px; |
|
252 | height: 24px; | |
250 | color: #FFF; |
|
253 | color: #FFF; | |
251 | padding-right: 5px; |
|
254 | padding-right: 5px; | |
252 | padding-left: 5px; |
|
255 | padding-left: 5px; | |
253 | display: block; |
|
256 | display: block; | |
254 | text-decoration: none; |
|
257 | text-decoration: none; | |
255 | font-weight: bold; |
|
258 | font-weight: bold; | |
256 | } |
|
259 | } | |
257 | ul.page-nav li.logout a { |
|
260 | ul.page-nav li.logout a { | |
258 | color: #FDAC9D; |
|
261 | color: #FDAC9D; | |
259 | } |
|
262 | } | |
260 | ul.page-nav li a:hover { |
|
263 | ul.page-nav li a:hover { | |
261 | background: #FFF; |
|
264 | background: #FFF; | |
262 | color: #556CB5; |
|
265 | color: #556CB5; | |
263 | } |
|
266 | } | |
264 |
|
267 | |||
265 | ul.submenu { |
|
268 | ul.submenu { | |
266 | margin: 5px 0px -20px 0px; |
|
269 | margin: 5px 0px -20px 0px; | |
267 | list-style-type: none; |
|
270 | list-style-type: none; | |
268 | } |
|
271 | } | |
269 |
|
272 | |||
270 | ul.submenu li { |
|
273 | ul.submenu li { | |
271 | margin: 0 10px 0 0; |
|
274 | margin: 0 10px 0 0; | |
272 | font-size: 0.9em; |
|
275 | font-size: 0.9em; | |
273 | font-weight:bold; |
|
276 | font-weight:bold; | |
274 | display: inline; |
|
277 | display: inline; | |
275 | } |
|
278 | } | |
276 | ul.submenu .repos { |
|
279 | ul.submenu .repos { | |
277 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; |
|
280 | background: url("/images/icons/folder_edit.png") no-repeat scroll 3px; | |
278 | height: 16px; |
|
281 | height: 16px; | |
279 | padding-left: 20px; |
|
282 | padding-left: 20px; | |
280 | padding-top: 0px; |
|
283 | padding-top: 0px; | |
281 | text-align: left; |
|
284 | text-align: left; | |
282 |
|
285 | |||
283 | } |
|
286 | } | |
284 | ul.submenu .users { |
|
287 | ul.submenu .users { | |
285 | background: url("/images/icons/user_edit.png") no-repeat scroll 3px; |
|
288 | background: url("/images/icons/user_edit.png") no-repeat scroll 3px; | |
286 | height: 16px; |
|
289 | height: 16px; | |
287 | padding-left: 20px; |
|
290 | padding-left: 20px; | |
288 | padding-top: 0px; |
|
291 | padding-top: 0px; | |
289 | text-align: left; |
|
292 | text-align: left; | |
290 | } |
|
293 | } | |
291 | ul.submenu .permissions { |
|
294 | ul.submenu .permissions { | |
292 | background: url("/images/icons/folder_key.png") no-repeat scroll 3px; |
|
295 | background: url("/images/icons/folder_key.png") no-repeat scroll 3px; | |
293 | height: 16px; |
|
296 | height: 16px; | |
294 | padding-left: 20px; |
|
297 | padding-left: 20px; | |
295 | padding-top: 0px; |
|
298 | padding-top: 0px; | |
296 | text-align: left; |
|
299 | text-align: left; | |
297 | } |
|
300 | } | |
298 |
|
301 | |||
299 | ul.submenu .current_submenu { |
|
302 | ul.submenu .current_submenu { | |
300 | border-bottom: 2px solid #556CB5; |
|
303 | border-bottom: 2px solid #556CB5; | |
301 | } |
|
304 | } | |
302 |
|
305 | |||
303 | h2 { |
|
306 | h2 { | |
304 | margin: 20px 0 10px; |
|
307 | margin: 20px 0 10px; | |
305 | height: 30px; |
|
308 | height: 30px; | |
306 | line-height: 30px; |
|
309 | line-height: 30px; | |
307 | text-indent: 20px; |
|
310 | text-indent: 20px; | |
308 | background: #FFF; |
|
311 | background: #FFF; | |
309 | font-size: 1.2em; |
|
312 | font-size: 1.2em; | |
310 | border-top: dotted 1px #D5E1E6; |
|
313 | border-top: dotted 1px #D5E1E6; | |
311 | font-weight: bold; |
|
314 | font-weight: bold; | |
312 | color:#556CB5; |
|
315 | color:#556CB5; | |
313 | } |
|
316 | } | |
314 |
|
317 | |||
315 | h2.no-link { |
|
318 | h2.no-link { | |
316 | color: #006699; |
|
319 | color: #006699; | |
317 | } |
|
320 | } | |
318 |
|
321 | |||
319 | h2.no-border { |
|
322 | h2.no-border { | |
320 | color: #FFF; |
|
323 | color: #FFF; | |
321 | background: #556CB5; |
|
324 | background: #556CB5; | |
322 | border: 0; |
|
325 | border: 0; | |
323 | } |
|
326 | } | |
324 |
|
327 | |||
325 | h2 a { |
|
328 | h2 a { | |
326 | font-weight: bold; |
|
329 | font-weight: bold; | |
327 | color: #006699; |
|
330 | color: #006699; | |
328 | } |
|
331 | } | |
329 |
|
332 | |||
330 | div.page-path { |
|
333 | div.page-path { | |
331 | text-align: right; |
|
334 | text-align: right; | |
332 | padding: 20px 30px 10px 0; |
|
335 | padding: 20px 30px 10px 0; | |
333 | border: solid #d9d8d1; |
|
336 | border: solid #d9d8d1; | |
334 | border-width: 0px 0px 1px; |
|
337 | border-width: 0px 0px 1px; | |
335 | font-size: 1.2em; |
|
338 | font-size: 1.2em; | |
336 | } |
|
339 | } | |
337 |
|
340 | |||
338 | div.page-footer { |
|
341 | div.page-footer { | |
339 | margin: 50px 0 0; |
|
342 | margin: 50px 0 0; | |
340 | position: relative; |
|
343 | position: relative; | |
341 | text-align: center; |
|
344 | text-align: center; | |
342 | font-weight: bold; |
|
345 | font-weight: bold; | |
343 | font-size: 90%; |
|
346 | font-size: 90%; | |
344 | } |
|
347 | } | |
345 |
|
348 | |||
346 | div.page-footer p { |
|
349 | div.page-footer p { | |
347 | position: relative; |
|
350 | position: relative; | |
348 | left: 20px; |
|
351 | left: 20px; | |
349 | bottom: 5px; |
|
352 | bottom: 5px; | |
350 | font-size: 1.2em; |
|
353 | font-size: 1.2em; | |
351 | } |
|
354 | } | |
352 |
|
355 | |||
353 | ul.rss-logo { |
|
356 | ul.rss-logo { | |
354 | position: absolute; |
|
357 | position: absolute; | |
355 | top: -10px; |
|
358 | top: -10px; | |
356 | right: 20px; |
|
359 | right: 20px; | |
357 | height: 20px; |
|
360 | height: 20px; | |
358 | list-style-type: none; |
|
361 | list-style-type: none; | |
359 | } |
|
362 | } | |
360 |
|
363 | |||
361 | ul.rss-logo li { |
|
364 | ul.rss-logo li { | |
362 | display: inline; |
|
365 | display: inline; | |
363 | } |
|
366 | } | |
364 |
|
367 | |||
365 | ul.rss-logo li a { |
|
368 | ul.rss-logo li a { | |
366 | padding: 3px 6px; |
|
369 | padding: 3px 6px; | |
367 | line-height: 10px; |
|
370 | line-height: 10px; | |
368 | border: 1px solid; |
|
371 | border: 1px solid; | |
369 | border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e; |
|
372 | border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e; | |
370 | color: #ffffff; |
|
373 | color: #ffffff; | |
371 | background-color: #ff6600; |
|
374 | background-color: #ff6600; | |
372 | font-weight: bold; |
|
375 | font-weight: bold; | |
373 | font-family: sans-serif; |
|
376 | font-family: sans-serif; | |
374 | font-size: 10px; |
|
377 | font-size: 10px; | |
375 | text-align: center; |
|
378 | text-align: center; | |
376 | text-decoration: none; |
|
379 | text-decoration: none; | |
377 | } |
|
380 | } | |
378 |
|
381 | |||
379 | div.rss-logo li a:hover { |
|
382 | div.rss-logo li a:hover { | |
380 | background-color: #ee5500; |
|
383 | background-color: #ee5500; | |
381 | } |
|
384 | } | |
382 |
|
385 | |||
383 | p.normal { |
|
386 | p.normal { | |
384 | margin: 20px 0 20px 30px; |
|
387 | margin: 20px 0 20px 30px; | |
385 | font-size: 1.2em; |
|
388 | font-size: 1.2em; | |
386 | } |
|
389 | } | |
387 |
|
390 | |||
388 | span.logtags span { |
|
391 | span.logtags span { | |
389 | background-repeat: no-repeat; |
|
392 | background-repeat: no-repeat; | |
390 | height: 16px; |
|
393 | height: 16px; | |
391 | padding-left: 20px; |
|
394 | padding-left: 20px; | |
392 | padding-top: 0px; |
|
395 | padding-top: 0px; | |
393 | text-align: left; |
|
396 | text-align: left; | |
394 | font-weight: bold; |
|
397 | font-weight: bold; | |
395 | } |
|
398 | } | |
396 |
|
399 | |||
397 | span.logtags span.tagtag { |
|
400 | span.logtags span.tagtag { | |
398 | background-image: url("/images/icons/tag_green.png"); |
|
401 | background-image: url("/images/icons/tag_green.png"); | |
399 | } |
|
402 | } | |
400 |
|
403 | |||
401 | span.logtags span.branchtag { |
|
404 | span.logtags span.branchtag { | |
402 | background-image: url("/images/icons/arrow_branch.png"); |
|
405 | background-image: url("/images/icons/arrow_branch.png"); | |
403 | color: #628F53; |
|
406 | color: #628F53; | |
404 | } |
|
407 | } | |
405 |
|
408 | |||
406 | span.logtags span.inbranchtag { |
|
409 | span.logtags span.inbranchtag { | |
407 | background-image: url("/images/icons/arrow_branch.png"); |
|
410 | background-image: url("/images/icons/arrow_branch.png"); | |
408 | } |
|
411 | } | |
409 |
|
412 | |||
410 | div.diff pre { |
|
413 | div.diff pre { | |
411 | margin: 10px 0 0 0; |
|
414 | margin: 10px 0 0 0; | |
412 | } |
|
415 | } | |
413 |
|
416 | |||
414 | div.diff pre span { |
|
417 | div.diff pre span { | |
415 | font-family: monospace; |
|
418 | font-family: monospace; | |
416 | white-space: pre; |
|
419 | white-space: pre; | |
417 | font-size: 1.2em; |
|
420 | font-size: 1.2em; | |
418 | padding: 3px 0; |
|
421 | padding: 3px 0; | |
419 | } |
|
422 | } | |
420 |
|
423 | |||
421 | td.source { |
|
424 | td.source { | |
422 | white-space: pre; |
|
425 | white-space: pre; | |
423 | font-family: monospace; |
|
426 | font-family: monospace; | |
424 | margin: 10px 30px 0; |
|
427 | margin: 10px 30px 0; | |
425 | font-size: 1.2em; |
|
428 | font-size: 1.2em; | |
426 | font-family: monospace; |
|
429 | font-family: monospace; | |
427 | } |
|
430 | } | |
428 |
|
431 | |||
429 | div.source div.parity0,div.source div.parity1 { |
|
432 | div.source div.parity0,div.source div.parity1 { | |
430 | padding: 1px; |
|
433 | padding: 1px; | |
431 | font-size: 1.2em; |
|
434 | font-size: 1.2em; | |
432 | } |
|
435 | } | |
433 |
|
436 | |||
434 | div.source div.parity0 { |
|
437 | div.source div.parity0 { | |
435 | background: #F1F6F7; |
|
438 | background: #F1F6F7; | |
436 | } |
|
439 | } | |
437 |
|
440 | |||
438 | div.source div.parity1 { |
|
441 | div.source div.parity1 { | |
439 | background: #FFFFFF; |
|
442 | background: #FFFFFF; | |
440 | } |
|
443 | } | |
441 |
|
444 | |||
442 | div.parity0:hover,div.parity1:hover { |
|
445 | div.parity0:hover,div.parity1:hover { | |
443 | background: #D5E1E6; |
|
446 | background: #D5E1E6; | |
444 | } |
|
447 | } | |
445 |
|
448 | |||
446 | .linenr { |
|
449 | .linenr { | |
447 | color: #999; |
|
450 | color: #999; | |
448 | text-align: right; |
|
451 | text-align: right; | |
449 | } |
|
452 | } | |
450 |
|
453 | |||
451 | .lineno { |
|
454 | .lineno { | |
452 | text-align: right; |
|
455 | text-align: right; | |
453 | } |
|
456 | } | |
454 |
|
457 | |||
455 | .lineno a { |
|
458 | .lineno a { | |
456 | color: #999; |
|
459 | color: #999; | |
457 | } |
|
460 | } | |
458 |
|
461 | |||
459 | td.linenr { |
|
462 | td.linenr { | |
460 | width: 60px; |
|
463 | width: 60px; | |
461 | } |
|
464 | } | |
462 |
|
465 | |||
463 | div#powered-by { |
|
466 | div#powered-by { | |
464 | position: absolute; |
|
467 | position: absolute; | |
465 | width: 75px; |
|
468 | width: 75px; | |
466 | top: 15px; |
|
469 | top: 15px; | |
467 | right: 20px; |
|
470 | right: 20px; | |
468 | font-size: 1.2em; |
|
471 | font-size: 1.2em; | |
469 | } |
|
472 | } | |
470 |
|
473 | |||
471 | div#powered-by a { |
|
474 | div#powered-by a { | |
472 | color: #EEE; |
|
475 | color: #EEE; | |
473 | text-decoration: none; |
|
476 | text-decoration: none; | |
474 | } |
|
477 | } | |
475 |
|
478 | |||
476 | div#powered-by a:hover { |
|
479 | div#powered-by a:hover { | |
477 | text-decoration: underline; |
|
480 | text-decoration: underline; | |
478 | } |
|
481 | } | |
479 |
|
482 | |||
480 | dl.overview { |
|
483 | dl.overview { | |
481 | margin: 0 0 0 30px; |
|
484 | margin: 0 0 0 30px; | |
482 | font-size: 1.1em; |
|
485 | font-size: 1.1em; | |
483 | overflow: hidden; |
|
486 | overflow: hidden; | |
484 | } |
|
487 | } | |
485 |
|
488 | |||
486 | dl.overview dt,dl.overview dd { |
|
489 | dl.overview dt,dl.overview dd { | |
487 | margin: 5px 0; |
|
490 | margin: 5px 0; | |
488 | float: left; |
|
491 | float: left; | |
489 | } |
|
492 | } | |
490 |
|
493 | |||
491 | dl.overview dt { |
|
494 | dl.overview dt { | |
492 | clear: left; |
|
495 | clear: left; | |
493 | font-weight: bold; |
|
496 | font-weight: bold; | |
494 | width: 150px; |
|
497 | width: 150px; | |
495 | } |
|
498 | } | |
496 |
|
499 | |||
497 | #clone_url{ |
|
500 | #clone_url{ | |
498 | border: 0px; |
|
501 | border: 0px; | |
499 | } |
|
502 | } | |
500 | /** end of summary **/ |
|
503 | /** end of summary **/ | |
501 |
|
504 | |||
502 | /** chagelog **/ |
|
505 | /** chagelog **/ | |
503 | h3.changelog { |
|
506 | h3.changelog { | |
504 | margin: 20px 0 5px 30px; |
|
507 | margin: 20px 0 5px 30px; | |
505 | padding: 0 0 2px; |
|
508 | padding: 0 0 2px; | |
506 | font-size: 1.4em; |
|
509 | font-size: 1.4em; | |
507 | border-bottom: dotted 1px #D5E1E6; |
|
510 | border-bottom: dotted 1px #D5E1E6; | |
508 | } |
|
511 | } | |
509 |
|
512 | |||
510 | ul.changelog-entry { |
|
513 | ul.changelog-entry { | |
511 | margin: 0 0 10px 30px; |
|
514 | margin: 0 0 10px 30px; | |
512 | list-style-type: none; |
|
515 | list-style-type: none; | |
513 | position: relative; |
|
516 | position: relative; | |
514 | } |
|
517 | } | |
515 |
|
518 | |||
516 | ul.changelog-entry li span.revdate { |
|
519 | ul.changelog-entry li span.revdate { | |
517 | font-size: 1.1em; |
|
520 | font-size: 1.1em; | |
518 | } |
|
521 | } | |
519 |
|
522 | |||
520 | ul.changelog-entry li.age { |
|
523 | ul.changelog-entry li.age { | |
521 | position: absolute; |
|
524 | position: absolute; | |
522 | top: -25px; |
|
525 | top: -25px; | |
523 | right: 10px; |
|
526 | right: 10px; | |
524 | font-size: 1.4em; |
|
527 | font-size: 1.4em; | |
525 | color: #CCC; |
|
528 | color: #CCC; | |
526 | font-weight: bold; |
|
529 | font-weight: bold; | |
527 | font-style: italic; |
|
530 | font-style: italic; | |
528 | } |
|
531 | } | |
529 |
|
532 | |||
530 | ul.changelog-entry li span.name { |
|
533 | ul.changelog-entry li span.name { | |
531 | font-size: 1.2em; |
|
534 | font-size: 1.2em; | |
532 | font-weight: bold; |
|
535 | font-weight: bold; | |
533 | } |
|
536 | } | |
534 |
|
537 | |||
535 | ul.changelog-entry li.description { |
|
538 | ul.changelog-entry li.description { | |
536 | margin: 10px 0 0; |
|
539 | margin: 10px 0 0; | |
537 | font-size: 1.1em; |
|
540 | font-size: 1.1em; | |
538 | } |
|
541 | } | |
539 |
|
542 | |||
540 | /** end of changelog **/ |
|
543 | /** end of changelog **/ | |
541 |
|
544 | |||
542 | /** file **/ |
|
545 | /** file **/ | |
543 | p.files { |
|
546 | p.files { | |
544 | margin: 0 0 0 20px; |
|
547 | margin: 0 0 0 20px; | |
545 | font-size: 2.0em; |
|
548 | font-size: 2.0em; | |
546 | font-weight: bold; |
|
549 | font-weight: bold; | |
547 | } |
|
550 | } | |
548 |
|
551 | |||
549 | /** end of file **/ |
|
552 | /** end of file **/ | |
550 |
|
553 | |||
551 | /** changeset **/ |
|
554 | /** changeset **/ | |
552 | #changeset_content{ |
|
555 | #changeset_content{ | |
553 | width:60%; |
|
556 | width:60%; | |
554 | float:left; |
|
557 | float:left; | |
555 | } |
|
558 | } | |
556 |
|
559 | |||
557 | #changeset_content .container .wrapper{ |
|
560 | #changeset_content .container .wrapper{ | |
558 | width: 600px; |
|
561 | width: 600px; | |
559 | } |
|
562 | } | |
560 | #changeset_content .container{ |
|
563 | #changeset_content .container{ | |
561 | border:1px solid #CCCCCC; |
|
564 | border:1px solid #CCCCCC; | |
562 | height:120px; |
|
565 | height:120px; | |
563 | } |
|
566 | } | |
564 |
|
567 | |||
565 | #changeset_content .container .left{ |
|
568 | #changeset_content .container .left{ | |
566 | float:left; |
|
569 | float:left; | |
567 | width: 70%; |
|
570 | width: 70%; | |
568 | padding-left: 5px; |
|
571 | padding-left: 5px; | |
569 | } |
|
572 | } | |
570 |
|
573 | |||
571 | #changeset_content .container .right{ |
|
574 | #changeset_content .container .right{ | |
572 | float:right; |
|
575 | float:right; | |
573 | width: 25%; |
|
576 | width: 25%; | |
574 | text-align: right; |
|
577 | text-align: right; | |
575 | } |
|
578 | } | |
576 |
|
579 | |||
577 | #changeset_content .container .left .date{ |
|
580 | #changeset_content .container .left .date{ | |
578 | font-weight:bold; |
|
581 | font-weight:bold; | |
579 | } |
|
582 | } | |
580 | #changeset_content .container .left .author{ |
|
583 | #changeset_content .container .left .author{ | |
581 |
|
584 | |||
582 | } |
|
585 | } | |
583 | #changeset_content .container .left .message{ |
|
586 | #changeset_content .container .left .message{ | |
584 | font-style: italic; |
|
587 | font-style: italic; | |
585 | color: #556CB5; |
|
588 | color: #556CB5; | |
586 | } |
|
589 | } | |
587 |
|
590 | |||
588 | .cs_files{ |
|
591 | .cs_files{ | |
589 | width: 60%; |
|
592 | width: 60%; | |
590 | } |
|
593 | } | |
591 |
|
594 | |||
592 | .cs_files .cs_added{ |
|
595 | .cs_files .cs_added{ | |
593 | background: url("/images/icons/page_white_add.png") no-repeat scroll 3px; |
|
596 | background: url("/images/icons/page_white_add.png") no-repeat scroll 3px; | |
594 | /*background-color:#BBFFBB;*/ |
|
597 | /*background-color:#BBFFBB;*/ | |
595 | height: 16px; |
|
598 | height: 16px; | |
596 | padding-left: 20px; |
|
599 | padding-left: 20px; | |
597 | margin-top: 7px; |
|
600 | margin-top: 7px; | |
598 | text-align: left; |
|
601 | text-align: left; | |
599 | } |
|
602 | } | |
600 | .cs_files .cs_changed{ |
|
603 | .cs_files .cs_changed{ | |
601 | background: url("/images/icons/page_white_edit.png") no-repeat scroll 3px; |
|
604 | background: url("/images/icons/page_white_edit.png") no-repeat scroll 3px; | |
602 | /*background-color: #FFDD88;*/ |
|
605 | /*background-color: #FFDD88;*/ | |
603 | height: 16px; |
|
606 | height: 16px; | |
604 | padding-left: 20px; |
|
607 | padding-left: 20px; | |
605 | margin-top: 7px; |
|
608 | margin-top: 7px; | |
606 | text-align: left; |
|
609 | text-align: left; | |
607 | } |
|
610 | } | |
608 | .cs_files .cs_removed{ |
|
611 | .cs_files .cs_removed{ | |
609 | background: url("/images/icons/page_white_delete.png") no-repeat scroll 3px; |
|
612 | background: url("/images/icons/page_white_delete.png") no-repeat scroll 3px; | |
610 | /*background-color: #FF8888;*/ |
|
613 | /*background-color: #FF8888;*/ | |
611 | height: 16px; |
|
614 | height: 16px; | |
612 | padding-left: 20px; |
|
615 | padding-left: 20px; | |
613 | margin-top: 7px; |
|
616 | margin-top: 7px; | |
614 | text-align: left; |
|
617 | text-align: left; | |
615 | } |
|
618 | } | |
616 |
|
619 | |||
617 | /** end of changeset **/ |
|
620 | /** end of changeset **/ | |
618 |
|
621 | |||
619 | /** canvas **/ |
|
622 | /** canvas **/ | |
620 | canvas { |
|
623 | canvas { | |
621 | position: absolute; |
|
624 | position: absolute; | |
622 | z-index: 5; |
|
625 | z-index: 5; | |
623 | top: -0.7em; |
|
626 | top: -0.7em; | |
624 | } |
|
627 | } | |
625 | #graph{ |
|
628 | #graph{ | |
626 | overflow: hidden; |
|
629 | overflow: hidden; | |
627 |
|
630 | |||
628 | } |
|
631 | } | |
629 | #graph_nodes{ |
|
632 | #graph_nodes{ | |
630 | width:160px; |
|
633 | width:160px; | |
631 | float:left; |
|
634 | float:left; | |
632 | } |
|
635 | } | |
633 |
|
636 | |||
634 | #graph_content{ |
|
637 | #graph_content{ | |
635 | width:800px; |
|
638 | width:800px; | |
636 | float:left; |
|
639 | float:left; | |
637 | } |
|
640 | } | |
638 | #graph_content .container_header{ |
|
641 | #graph_content .container_header{ | |
639 | border:1px solid #CCCCCC; |
|
642 | border:1px solid #CCCCCC; | |
640 | height:30px; |
|
643 | height:30px; | |
641 | background: #EEEEEE; |
|
644 | background: #EEEEEE; | |
642 | } |
|
645 | } | |
643 |
|
646 | |||
644 |
|
647 | |||
645 | #graph_content .container .wrapper{ |
|
648 | #graph_content .container .wrapper{ | |
646 | width: 600px; |
|
649 | width: 600px; | |
647 | } |
|
650 | } | |
648 | #graph_content .container{ |
|
651 | #graph_content .container{ | |
649 | border-bottom: 1px solid #CCCCCC; |
|
652 | border-bottom: 1px solid #CCCCCC; | |
650 | border-left: 1px solid #CCCCCC; |
|
653 | border-left: 1px solid #CCCCCC; | |
651 | border-right: 1px solid #CCCCCC; |
|
654 | border-right: 1px solid #CCCCCC; | |
652 | height:120px; |
|
655 | height:120px; | |
653 | } |
|
656 | } | |
654 |
|
657 | |||
655 | #graph_content .container .left{ |
|
658 | #graph_content .container .left{ | |
656 | float:left; |
|
659 | float:left; | |
657 | width: 70%; |
|
660 | width: 70%; | |
658 | padding-left: 5px; |
|
661 | padding-left: 5px; | |
659 | } |
|
662 | } | |
660 |
|
663 | |||
661 | #graph_content .container .right{ |
|
664 | #graph_content .container .right{ | |
662 | float:right; |
|
665 | float:right; | |
663 | width: 25%; |
|
666 | width: 25%; | |
664 | text-align: right; |
|
667 | text-align: right; | |
665 | } |
|
668 | } | |
666 | #graph_content .container .left .date{ |
|
669 | #graph_content .container .left .date{ | |
667 | font-weight:bold; |
|
670 | font-weight:bold; | |
668 | } |
|
671 | } | |
669 | #graph_content .container .left .author{ |
|
672 | #graph_content .container .left .author{ | |
670 |
|
673 | |||
671 | } |
|
674 | } | |
672 | #graph_content .container .left .message{ |
|
675 | #graph_content .container .left .message{ | |
673 | font-size: 80%; |
|
676 | font-size: 80%; | |
674 | } |
|
677 | } | |
675 |
|
678 | |||
676 | .right div{ |
|
679 | .right div{ | |
677 | clear: both; |
|
680 | clear: both; | |
678 | } |
|
681 | } | |
679 | .right .changes .added,.changed,.removed{ |
|
682 | .right .changes .added,.changed,.removed{ | |
680 | border:1px solid #DDDDDD; |
|
683 | border:1px solid #DDDDDD; | |
681 | display:block; |
|
684 | display:block; | |
682 | float:right; |
|
685 | float:right; | |
683 | font-size:0.75em; |
|
686 | font-size:0.75em; | |
684 | text-align:center; |
|
687 | text-align:center; | |
685 | min-width:15px; |
|
688 | min-width:15px; | |
686 | } |
|
689 | } | |
687 | .right .changes .added{ |
|
690 | .right .changes .added{ | |
688 | background:#BBFFBB; |
|
691 | background:#BBFFBB; | |
689 | } |
|
692 | } | |
690 | .right .changes .changed{ |
|
693 | .right .changes .changed{ | |
691 | background: #FFDD88; |
|
694 | background: #FFDD88; | |
692 | } |
|
695 | } | |
693 | .right .changes .removed{ |
|
696 | .right .changes .removed{ | |
694 | background: #FF8888; |
|
697 | background: #FF8888; | |
695 | } |
|
698 | } | |
696 |
|
699 | |||
697 | .right .merge{ |
|
700 | .right .merge{ | |
698 | vertical-align: top; |
|
701 | vertical-align: top; | |
699 | font-size: 60%; |
|
702 | font-size: 60%; | |
700 | font-weight: bold; |
|
703 | font-weight: bold; | |
701 | } |
|
704 | } | |
702 | .right .merge img{ |
|
705 | .right .merge img{ | |
703 | vertical-align: bottom; |
|
706 | vertical-align: bottom; | |
704 | } |
|
707 | } | |
705 |
|
708 | |||
706 | .right .parent{ |
|
709 | .right .parent{ | |
707 | font-size: 90%; |
|
710 | font-size: 90%; | |
708 | font-family: monospace; |
|
711 | font-family: monospace; | |
709 | } |
|
712 | } | |
710 | /** end of canvas **/ |
|
713 | /** end of canvas **/ | |
711 |
|
714 | |||
712 | /* FILE BROWSER */ |
|
715 | /* FILE BROWSER */ | |
713 | div.browserblock { |
|
716 | div.browserblock { | |
714 | overflow: hidden; |
|
717 | overflow: hidden; | |
715 | padding: 0px; |
|
718 | padding: 0px; | |
716 | border: 1px solid #ccc; |
|
719 | border: 1px solid #ccc; | |
717 | background: #f8f8f8; |
|
720 | background: #f8f8f8; | |
718 | font-size: 100%; |
|
721 | font-size: 100%; | |
719 | line-height: 100%; |
|
722 | line-height: 100%; | |
720 | /* new */ |
|
723 | /* new */ | |
721 | line-height: 125%; |
|
724 | line-height: 125%; | |
722 | } |
|
725 | } | |
723 | div.browserblock .browser-header{ |
|
726 | div.browserblock .browser-header{ | |
724 | border-bottom: 1px solid #CCCCCC; |
|
727 | border-bottom: 1px solid #CCCCCC; | |
725 | background: #EEEEEE; |
|
728 | background: #EEEEEE; | |
726 | color:blue; |
|
729 | color:blue; | |
727 | padding:10px 0 10px 0; |
|
730 | padding:10px 0 10px 0; | |
728 | } |
|
731 | } | |
729 | div.browserblock .browser-header span{ |
|
732 | div.browserblock .browser-header span{ | |
730 | margin-left:25px; |
|
733 | margin-left:25px; | |
731 | font-weight: bold; |
|
734 | font-weight: bold; | |
732 | } |
|
735 | } | |
733 | div.browserblock .browser-body{ |
|
736 | div.browserblock .browser-body{ | |
734 | background: #EEEEEE; |
|
737 | background: #EEEEEE; | |
735 | } |
|
738 | } | |
736 |
|
739 | |||
737 | table.code-browser { |
|
740 | table.code-browser { | |
738 | border-collapse:collapse; |
|
741 | border-collapse:collapse; | |
739 | width: 100%; |
|
742 | width: 100%; | |
740 | } |
|
743 | } | |
741 | table.code-browser tr{ |
|
744 | table.code-browser tr{ | |
742 | margin:3px; |
|
745 | margin:3px; | |
743 | } |
|
746 | } | |
744 |
|
747 | |||
745 | table.code-browser thead th { |
|
748 | table.code-browser thead th { | |
746 | background-color: #EEEEEE; |
|
749 | background-color: #EEEEEE; | |
747 | height: 20px; |
|
750 | height: 20px; | |
748 | font-size: 1.1em; |
|
751 | font-size: 1.1em; | |
749 | font-weight: bold; |
|
752 | font-weight: bold; | |
750 | text-align: center; |
|
753 | text-align: center; | |
751 | text-align: left; |
|
754 | text-align: left; | |
752 | padding-left: 10px; |
|
755 | padding-left: 10px; | |
753 | } |
|
756 | } | |
754 | table.code-browser tbody tr { |
|
757 | table.code-browser tbody tr { | |
755 |
|
758 | |||
756 | } |
|
759 | } | |
757 |
|
760 | |||
758 | table.code-browser tbody td { |
|
761 | table.code-browser tbody td { | |
759 |
|
762 | |||
760 | padding-left:10px; |
|
763 | padding-left:10px; | |
761 | height: 20px; |
|
764 | height: 20px; | |
762 | } |
|
765 | } | |
763 |
|
766 | |||
764 | .info-table { |
|
767 | .info-table { | |
765 | background: none repeat scroll 0 0 #FAFAFA; |
|
768 | background: none repeat scroll 0 0 #FAFAFA; | |
766 | border-bottom: 1px solid #DDDDDD; |
|
769 | border-bottom: 1px solid #DDDDDD; | |
767 | width: 100%; |
|
770 | width: 100%; | |
768 | } |
|
771 | } | |
769 |
|
772 | |||
770 | .rss_logo { |
|
773 | .rss_logo { | |
771 | background: url("/images/icons/rss_16.png") no-repeat scroll 3px; |
|
774 | background: url("/images/icons/rss_16.png") no-repeat scroll 3px; | |
772 | height: 16px; |
|
775 | height: 16px; | |
773 | padding-left: 20px; |
|
776 | padding-left: 20px; | |
774 | padding-top: 0px; |
|
777 | padding-top: 0px; | |
775 | text-align: left; |
|
778 | text-align: left; | |
776 | } |
|
779 | } | |
777 |
|
780 | |||
778 | .atom_logo { |
|
781 | .atom_logo { | |
779 | background: url("/images/icons/atom.png") no-repeat scroll 3px; |
|
782 | background: url("/images/icons/atom.png") no-repeat scroll 3px; | |
780 | height: 16px; |
|
783 | height: 16px; | |
781 | padding-left: 20px; |
|
784 | padding-left: 20px; | |
782 | padding-top: 0px; |
|
785 | padding-top: 0px; | |
783 | text-align: left; |
|
786 | text-align: left; | |
784 | } |
|
787 | } | |
785 | .archive_logo{ |
|
788 | .archive_logo{ | |
786 | background: url("/images/icons/compress.png") no-repeat scroll 3px; |
|
789 | background: url("/images/icons/compress.png") no-repeat scroll 3px; | |
787 | height: 16px; |
|
790 | height: 16px; | |
788 | padding-left: 20px; |
|
791 | padding-left: 20px; | |
789 | text-align: left; |
|
792 | text-align: left; | |
790 | } |
|
793 | } | |
791 |
|
794 | |||
792 | .browser-file { |
|
795 | .browser-file { | |
793 | background: url("/images/icons/document_16.png") no-repeat scroll 3px; |
|
796 | background: url("/images/icons/document_16.png") no-repeat scroll 3px; | |
794 | height: 16px; |
|
797 | height: 16px; | |
795 | padding-left: 20px; |
|
798 | padding-left: 20px; | |
796 | text-align: left; |
|
799 | text-align: left; | |
797 | } |
|
800 | } | |
798 |
|
801 | |||
799 | .browser-dir { |
|
802 | .browser-dir { | |
800 | background: url("/images/icons/folder_16.png") no-repeat scroll 3px; |
|
803 | background: url("/images/icons/folder_16.png") no-repeat scroll 3px; | |
801 | height: 16px; |
|
804 | height: 16px; | |
802 | padding-left: 20px; |
|
805 | padding-left: 20px; | |
803 | text-align: left; |
|
806 | text-align: left; | |
804 | } |
|
807 | } | |
805 |
|
808 | |||
806 | #repos_list { |
|
809 | #repos_list { | |
807 | border: 1px solid #556CB5; |
|
810 | border: 1px solid #556CB5; | |
808 | background: #FFFFFF; |
|
811 | background: #FFFFFF; | |
809 | } No newline at end of file |
|
812 | } |
General Comments 0
You need to be logged in to leave comments.
Login now