blob: 5e76de8aae3e0cfc8d4f2a823f61934dc7c913d7 (
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
|
/* $Id$ */
/* others */
.pleaseNote {
background: #9c9c9c;
color: #ffff99;
padding: 1ex;
font-weight: bold;
}
#imageToolBar * {
background: inherit;
}
/* So that non-links are slightly greyed out */
#content .navigationBar {
color: #696969;
}
#content .pageNumberSelected {
color: #000000;
}
/* Tables & forms */
input, select, textarea {
color:black;
background-color: #d3d3d3; /* lightgrey */
}
#errors { /* Errors display */
color: red;
background-color: #ffe1e1;
font-weight: bold;
text-align: left;
margin: 5px;
border: 1px solid red;
background-image: url(../../template-common/icons/admin/errors.png);
background-repeat: no-repeat;
background-position: top right;
padding: 10px 50px 10px 10px;
}
#errors ul li
{
font-weight: normal;
}
/**
* Informations box in administration
*/
#infos {
text-align: left;
background-color: palegreen;
background-image: url(../../template-common/icons/admin/infos.png);
background-repeat: no-repeat;
background-position: top right;
color: darkgreen;
font-weight: bold;
margin: 5px;
padding: 10px 50px 10px 10px;
}
LEGEND {
font-style: italic;
}
|