aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/default-colors.css
blob: cc094cf0ea0c6722f613030dbcfdcbe8b8de9432 (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
/* others */

#imageToolBar * {
	background: inherit;
}

/* So that non-links are slightly greyed out */
.content .navigationBar, SPAN.calItemEmpty, TD.calDayCellEmpty {
	color: #b0b0b0;
}

/* Tables & forms */

/* IE <= 6 is so bad with this that you can't merge with the following rule */
INPUT[type="text"], INPUT[type="password"], INPUT[type="button"],
INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] {
	color:black;
	background-color: #d3d3d3;	/* lightgrey */
}

INPUT.text, INPUT.password, INPUT.button,
INPUT.submit, INPUT.reset, INPUT.file,
SELECT, TEXTAREA {
	color:black;
	background-color: #d3d3d3;	/* lightgrey */
}

INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
	background-color: #f5f5f5;	/* whitesmoke */
}

/* some theme set a border on INPUT  which is not pretty for radio/checkbox */
INPUT[type="radio"], INPUT[type="checkbox"] {
	border: none;	/* <= Opera needs this */
}

INPUT.radio, INPUT.checkbox {
	border: none;	/* <= IE6 needs this */
}

/* rate buttons displayed like links */
INPUT.rateButton, INPUT.rateButtonSelected, INPUT.rateButtonStarFull, INPUT.rateButtonStarEmpty {
	color:inherit;
	background-color:transparent !important;	/* Konqueror doesn't accept transparent here */
}

.errors { /* Errors display */
	color: red;
	background-color: #ffe1e1;
	font-weight: bold;
	margin: 5px;
	border: 1px solid red;
	background-image: url(icon/admin/errors.png);
	background-repeat: no-repeat;
	background-position: top right;
	padding: 10px 50px 10px 10px;
}

/**
 * Informations box in administration
 */
.infos {
	color: #002000;
	background-color: #98fb98; /* palegreen */
	background-image: url(icon/admin/infos.png);
	background-repeat: no-repeat;
	background-position: top right;
	margin: 5px;
	padding: 10px 50px 10px 10px;
}

/**
 * Header message like upgrade or adviser mode
 */
.header_msgs {
	text-align:center;
	font-weight: bold;
	color:#696969;	/* dimgray */
	background-color: #d3d3d3;
	margin: 1px;
	padding: 1px;
}

/**
 * Header notes box in public/administration
 */
.header_notes {
	border: 1px solid #aaaaaa; /* border color and style */
	text-align: center;
	background-image: url(icon/note.png);
	background-repeat: no-repeat;
	background-position: top left;
	font-weight: bold;
	margin: 14px;
	padding: 5px 00px 0px 0px;
}

LEGEND {
	font-style: italic;
}

/*calendar*/
SPAN.calItem, SPAN.calItemEmpty, 
TD.calDayCellEmpty, TD.calDayCellFull {
	border: 1px solid gray;
}