| author | ymh <ymh.work@gmail.com> |
| Sun, 25 May 2014 13:45:24 +0900 | |
| changeset 298 | 2f35c2ae7de8 |
| parent 239 | 67c2b0fb9b19 |
| child 305 | 4dc484119b4c |
| permissions | -rw-r--r-- |
| 298 | 1 |
::-moz-selection { |
2 |
background: #a8d1ff; |
|
3 |
color: inherit; |
|
4 |
text-shadow: inherit; |
|
5 |
} |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
6 |
|
| 298 | 7 |
::selection { |
8 |
background: #a8d1ff; |
|
9 |
color: inherit; |
|
10 |
text-shadow: inherit; |
|
11 |
} |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
12 |
|
| 298 | 13 |
body, html { |
14 |
height: 100%; |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
15 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
16 |
|
| 81 | 17 |
body, h1, h2, table, tbody, thead, tr, td, th { |
| 298 | 18 |
border: none; |
19 |
margin: 0; |
|
20 |
padding: 0; |
|
21 |
text-align: left; |
|
22 |
font-size: 100%; |
|
| 81 | 23 |
} |
| 298 | 24 |
|
25 |
body { |
|
26 |
margin: 0; |
|
27 |
padding: 0; |
|
28 |
font-family: Arial, Helvetica, sans-serif; |
|
29 |
background: #F6F6F6; |
|
30 |
color: #333333; |
|
31 |
} |
|
32 |
||
| 81 | 33 |
h1 { |
| 298 | 34 |
margin-bottom: 5px; |
35 |
padding: 15px; |
|
36 |
background: #333333; |
|
37 |
color: #ffffff; |
|
38 |
font-weight: bold; |
|
39 |
font-size: 30px; |
|
| 81 | 40 |
} |
| 298 | 41 |
|
| 81 | 42 |
h2 { |
| 298 | 43 |
margin: 12px 15px 2px; |
| 81 | 44 |
} |
| 298 | 45 |
|
| 81 | 46 |
h3 { |
| 298 | 47 |
color: #999999; |
48 |
font-size: 15px; |
|
49 |
font-weight: bold; |
|
50 |
font-style: italic; |
|
51 |
margin: 5px 30px; |
|
| 81 | 52 |
} |
| 298 | 53 |
|
| 81 | 54 |
a { |
| 298 | 55 |
text-decoration: none; |
56 |
color: #3030a0; |
|
| 81 | 57 |
} |
| 298 | 58 |
|
| 81 | 59 |
a:hover { |
| 298 | 60 |
text-decoration: underline; |
| 81 | 61 |
} |
| 298 | 62 |
|
| 81 | 63 |
table { |
| 298 | 64 |
border-collapse: collapse; |
65 |
margin: 5px 15px; |
|
66 |
border: 1px solid #CCCCCC; |
|
| 81 | 67 |
} |
| 298 | 68 |
|
69 |
th, td { |
|
70 |
padding: 4px 12px 4px 4px; |
|
71 |
border: 1px solid #cccccc; |
|
| 81 | 72 |
} |
| 298 | 73 |
|
74 |
thead { |
|
75 |
font-size: 16px; |
|
76 |
} |
|
77 |
||
| 81 | 78 |
tbody { |
| 298 | 79 |
font-size: 14px; |
| 81 | 80 |
} |
| 298 | 81 |
|
| 81 | 82 |
tbody tr:nth-child(even) { |
| 298 | 83 |
background: #fafafa; |
| 81 | 84 |
} |
| 298 | 85 |
|
| 81 | 86 |
tbody tr:nth-child(odd) { |
| 298 | 87 |
background: #f0f0f0; |
| 81 | 88 |
} |
| 298 | 89 |
|
| 81 | 90 |
thead tr { |
| 298 | 91 |
background: #666666; |
92 |
color: #f0e0e0; |
|
| 81 | 93 |
} |
| 298 | 94 |
|
| 81 | 95 |
tbody tr:hover { |
| 298 | 96 |
background: #ffffff; |
| 81 | 97 |
} |
98 |
||
| 87 | 99 |
.pagination-container { |
| 298 | 100 |
margin: 12px 15px 2px; |
101 |
font-size: 14px; |
|
| 87 | 102 |
} |
103 |
||
104 |
.pagination-container a, .pagination-container span { |
|
| 298 | 105 |
margin: 0 1px 0 1px; |
| 87 | 106 |
} |
107 |
||
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
108 |
div#container { |
| 298 | 109 |
position: relative; /* needed for footer positioning*/ |
110 |
margin: 0 auto; /* center, not in IE5 */ |
|
111 |
height: auto !important; /* real browsers */ |
|
112 |
height: 100%; /* IE6: treaded as min-height*/ |
|
113 |
min-height: 100%; /* real browsers */ |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
114 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
115 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
116 |
div#wrapper { |
| 298 | 117 |
padding-bottom: 1em; /* bottom padding for footer */ |
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
118 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
119 |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
120 |
header#header { |
| 298 | 121 |
border-bottom: 2px solid #ffffff; |
122 |
background: #333333; |
|
123 |
color: #ffffff; |
|
124 |
font-weight: bold; |
|
125 |
font-size: 30px; |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
126 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
127 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
128 |
header h1 { |
| 298 | 129 |
float: left; |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
130 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
131 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
132 |
header #header-clear { |
| 298 | 133 |
clear: both; |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
134 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
135 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
136 |
header .header-nav { |
| 298 | 137 |
background: #333333; |
138 |
color: #ffffff; |
|
139 |
float: right; |
|
140 |
font-weight: normal; |
|
141 |
font-size: 15px; |
|
142 |
margin-bottom: 5px; |
|
143 |
padding: 15px; |
|
144 |
text-align: right; |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
145 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
146 |
|
| 298 | 147 |
header .header-nav a, header .header-nav a:ACTIVE, header .header-nav a:LINK, |
148 |
header .header-nav a:VISITED { |
|
149 |
color: #ffffff; |
|
150 |
text-decoration: none; |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
151 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
152 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
153 |
header .header-nav a:HOVER { |
| 298 | 154 |
color: #ffffff; |
155 |
text-decoration: underline; |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
156 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
157 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
158 |
#header-nav-user-avatar { |
| 298 | 159 |
margin: 0 5px 2px 0; |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
160 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
161 |
|
| 127 | 162 |
footer#footer { |
| 298 | 163 |
position: absolute; |
164 |
bottom: 0; |
|
165 |
width: 100%; |
|
166 |
font-size: 12px; |
|
167 |
} |
|
168 |
||
169 |
footer#footer div { |
|
170 |
float: right; |
|
171 |
margin: 15px 10px 0 0; |
|
172 |
} |
|
173 |
||
174 |
#home-link, #home-link:link, #home-link:hover, #home-link:active, |
|
175 |
#home-link:visited { |
|
176 |
text-decoration: none; |
|
177 |
color: #ffffff; |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
178 |
} |
| 298 | 179 |
|
180 |
#inner { |
|
181 |
width: 350px; |
|
182 |
height: 170px; |
|
183 |
margin: 10px auto; |
|
184 |
} |
|
185 |
||
186 |
#button { |
|
187 |
margin: 0 auto; |
|
188 |
border-radius: 3px; |
|
189 |
text-align: center; |
|
190 |
font: 36px verdana, arial, sans-serif; |
|
191 |
color: white; |
|
192 |
text-shadow: 0 -1px 0 rgba(0, 0, 0, .8); |
|
193 |
height: 70px; |
|
194 |
line-height: 70px; |
|
195 |
background: #555; |
|
196 |
background: -webkit-linear-gradient(#5F5F5F, #565656 50%, #4C4C4C 51%, #373737); |
|
197 |
background: -moz-linear-gradient(#5F5F5F, #565656 50%, #4C4C4C 51%, #373737); |
|
198 |
background: -ms-linear-gradient(#5F5F5F, #565656 50%, #4C4C4C 51%, #373737); |
|
199 |
background: -o-linear-gradient(#5F5F5F, #565656 50%, #4C4C4C 51%, #373737); |
|
200 |
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.9); |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
201 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
202 |
|
| 298 | 203 |
#button:hover { |
204 |
cursor: pointer; |
|
205 |
background: #666; |
|
206 |
background: -webkit-linear-gradient(#707070, #666666 50%, #5B5B5B 51%, #474747); |
|
207 |
background: -moz-linear-gradient(#707070, #666666 50%, #5B5B5B 51%, #474747); |
|
208 |
background: -ms-linear-gradient(#707070, #666666 50%, #5B5B5B 51%, #474747); |
|
209 |
background: -o-linear-gradient(#707070, #666666 50%, #5B5B5B 51%, #474747); |
|
210 |
} |
|
211 |
||
212 |
#button:active { |
|
213 |
box-shadow: inset 0 1px 12px rgba(0, 0, 0, 0.9); |
|
214 |
background: #444; |
|
215 |
} |
|
216 |
||
217 |
#label { |
|
218 |
font: 30px verdana, arial, sans-serif bold; |
|
219 |
text-align: center; |
|
220 |
text-shadow: 0 1px 1px #fff; |
|
221 |
height: 70px; |
|
222 |
line-height: 70px; |
|
223 |
margin: 16px auto 0; |
|
224 |
} |
|
225 |
||
226 |
form { |
|
227 |
height: 38px; |
|
228 |
position: relative; |
|
229 |
} |
|
230 |
||
231 |
button, input, label { |
|
232 |
font-weight: bold; |
|
233 |
font-size: 15px; |
|
234 |
} |
|
235 |
||
236 |
#inner label { |
|
237 |
padding: 5px 10px 5px 0px; |
|
238 |
} |
|
239 |
||
240 |
#form-fields { |
|
241 |
float: left; |
|
242 |
} |
|
243 |
||
244 |
#form-fields input { |
|
245 |
width: 290px; |
|
|
97
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
246 |
} |
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
247 |
|
|
f7d611f50e58
add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents:
87
diff
changeset
|
248 |
|
| 298 | 249 |
#inner div { |
250 |
/* position: absolute;*/ |
|
251 |
|
|
252 |
} |
|
253 |
||
254 |
#inner input { |
|
255 |
padding: 5px 10px; |
|
256 |
*padding: 0; /* IE7 hack */ |
|
257 |
height: 100%; |
|
258 |
outline: none; |
|
| 137 | 259 |
} |
260 |
||
| 298 | 261 |
#inner input[type="text"] { |
262 |
background: #fff; |
|
263 |
border: 1px solid #bbb; |
|
264 |
border-radius: 3px; |
|
265 |
box-sizing: border-box; |
|
266 |
-moz-box-sizing: border-box; |
|
| 137 | 267 |
} |
268 |
||
269 |
#inner button[type="submit"] { |
|
| 298 | 270 |
position: absolute; |
271 |
right: -45px; |
|
272 |
width: 45px; |
|
273 |
height: 38px; |
|
| 127 | 274 |
} |
275 |
||
276 |
#objects-content { |
|
| 298 | 277 |
float: left; |
| 127 | 278 |
} |
279 |
||
280 |
#objects-content table { |
|
| 298 | 281 |
width: 100%; |
| 127 | 282 |
} |
283 |
||
284 |
.object-tools { |
|
| 298 | 285 |
font-size: 11px; |
286 |
font-weight: bold; |
|
287 |
font-family: Arial, Helvetica, sans-serif; |
|
288 |
padding-left: 0; |
|
289 |
float: right; |
|
290 |
position: relative; |
|
291 |
margin: -2.4em -15px -2em 0; |
|
| 127 | 292 |
} |
293 |
||
294 |
.object-tools li { |
|
| 298 | 295 |
list-style: none; |
| 127 | 296 |
} |
297 |
||
298 |
.object-tools a:link, .object-tools a:visited { |
|
| 298 | 299 |
display: block; |
300 |
float: left; |
|
301 |
color: white; |
|
302 |
padding: .1em 8px .1em 8px; |
|
303 |
height: 14px; |
|
304 |
background: #666666; |
|
305 |
text-decoration: none; |
|
| 127 | 306 |
} |
307 |
||
| 215 | 308 |
.object-table-title { |
| 298 | 309 |
width: 250px; |
| 127 | 310 |
} |
| 298 | 311 |
|
| 215 | 312 |
.object-table-created { |
| 298 | 313 |
width: 120px; |
| 127 | 314 |
} |
315 |
||
| 215 | 316 |
.object-table-actions { |
| 298 | 317 |
width: 40px; |
| 127 | 318 |
} |
319 |
||
| 298 | 320 |
.object-table-actions-disabled, .object-table-actions-disabled:link, |
321 |
.object-table-actions-disabled:visited, .object-table-actions-disabled:hover, |
|
322 |
.object-table-actions-disabled:active, .object-table-actions-disabled:focus |
|
323 |
{ |
|
324 |
color: gray; |
|
325 |
text-decoration: none; |
|
326 |
cursor: default; |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
327 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
328 |
|
| 215 | 329 |
td.object-table-created { |
| 298 | 330 |
text-align: center; |
| 127 | 331 |
} |
332 |
||
| 298 | 333 |
.form-fields label, .form-fields input, .form-fields textarea, |
334 |
.form-fields #binConfigContainer { |
|
335 |
display: inline-block; |
|
| 127 | 336 |
} |
337 |
||
338 |
.form-fields label { |
|
| 298 | 339 |
width: 150px; |
| 127 | 340 |
float: left; |
341 |
} |
|
342 |
||
|
239
67c2b0fb9b19
add user and group list in group and user edit pages
ymh <ymh.work@gmail.com>
parents:
222
diff
changeset
|
343 |
.form-fields input, .form-fields textarea, .form-fields select { |
| 298 | 344 |
width: 200px; |
| 127 | 345 |
} |
346 |
||
347 |
.form-fields div { |
|
| 298 | 348 |
margin-bottom: 12px; |
| 127 | 349 |
} |
350 |
||
351 |
.form-error { |
|
| 298 | 352 |
color: red; |
| 127 | 353 |
} |
354 |
||
| 298 | 355 |
#binConfigDiv { |
356 |
position: relative; |
|
357 |
width: 650px; |
|
358 |
height: 150px; |
|
| 127 | 359 |
} |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
360 |
|
| 141 | 361 |
.binConfigButton { |
| 298 | 362 |
font-weight: normal; |
| 141 | 363 |
} |
| 298 | 364 |
|
| 141 | 365 |
.binConfigButton[disabled] { |
| 298 | 366 |
color: graytext; |
| 141 | 367 |
} |
368 |
||
| 127 | 369 |
#binConfigDiv div { |
| 298 | 370 |
margin-bottom: 0; |
| 127 | 371 |
} |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
372 |
|
| 222 | 373 |
#object-delete-container { |
| 298 | 374 |
margin-left: 12px; |
375 |
margin-top: 1em; |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
376 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
377 |
|
| 222 | 378 |
#object-delete-confirm-buttons { |
| 298 | 379 |
margin-top: 1em; |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
380 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
381 |
|
| 222 | 382 |
#object-delete-confirm-buttons form { |
| 298 | 383 |
margin: 0; |
384 |
padding: 0; |
|
385 |
display: inline; |
|
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
386 |
} |
|
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
387 |
|
| 222 | 388 |
#object-delete-confirm-buttons input[type=submit] { |
| 298 | 389 |
margin-right: 12px; |
|
129
01c862ada33c
Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents:
127
diff
changeset
|
390 |
} |
| 136 | 391 |
|
| 137 | 392 |
#project-filter-container { |
| 298 | 393 |
margin: 12px 0 0 15px; |
| 137 | 394 |
} |
395 |
||
396 |
#project-filter-container input[type="text"] { |
|
| 298 | 397 |
background: #fff; |
398 |
border: 1px solid #bbb; |
|
399 |
border-radius: 3px; |
|
400 |
padding: 2px 10px 3px; |
|
401 |
box-sizing: border-box; |
|
402 |
-moz-box-sizing: border-box; |
|
403 |
outline: none; |
|
404 |
font-weight: normal; |
|
405 |
font-size: 15px; |
|
| 137 | 406 |
} |
| 298 | 407 |
|
| 137 | 408 |
#project-filter-container button[type="submit"] { |
| 298 | 409 |
|
| 137 | 410 |
} |
411 |
||
| 136 | 412 |
.proj-sort-form { |
| 298 | 413 |
float: right; |
414 |
height: auto; |
|
| 136 | 415 |
} |
416 |
||
417 |
.proj-sort-form input[type=submit] { |
|
| 298 | 418 |
width: 16px; |
419 |
height: 16px; |
|
420 |
border: 0; |
|
| 136 | 421 |
} |
422 |
||
423 |
.proj-sort-form input[type=submit]:HOVER { |
|
| 298 | 424 |
opacity: .5; |
| 136 | 425 |
} |
426 |
||
427 |
.proj-sortable-col { |
|
| 298 | 428 |
background: url("../img/sort_arrows.png") 0 0; |
| 136 | 429 |
} |
430 |
||
431 |
.proj-sort-desc-col { |
|
| 298 | 432 |
background: url("../img/sort_arrows.png") 0 -17px; |
| 136 | 433 |
} |
434 |
||
435 |
.proj-sort-asc-col { |
|
| 298 | 436 |
background: url("../img/sort_arrows.png") 0 -33px; |
| 136 | 437 |
} |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
438 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
439 |
#inner-container { |
| 298 | 440 |
margin: 12px 0px 0px 15px; |
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
441 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
442 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
443 |
#login-errors { |
| 298 | 444 |
color: #ff0000; |
445 |
border: 1px solid #ff0000; |
|
446 |
padding: 8px; |
|
447 |
margin: 16px 16px 32px; |
|
448 |
width: inherit; |
|
449 |
float: left; |
|
|
150
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
450 |
} |
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
451 |
|
|
5b62100b8562
- replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents:
144
diff
changeset
|
452 |
#login-form { |
| 298 | 453 |
clear: both; |
454 |
} |