Subversion Repositories Sites.tela-botanica.org

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 david 1
/* Les boutons d'admin survolent la page (sauf #FORMULAIRE_ADMIN) */
2
.spip-admin-float {
3
	top: 0px;
4
	right: 20px;
5
	position: absolute;
6
	background-color: transparent;
7
	z-index: 100;
8
}
9
 
10
 
11
/* Couleurs et design des boutons d'admin */
12
 
13
a.spip-admin-boutons {
14
	border-top: 1px solid #cecece;
15
	border-bottom: 2px solid #4a4a4a;
16
	border-left: 1px solid #cecece;
17
	border-right: 1px solid #cecece;
18
	text-decoration: none;
19
	text-align: center;
20
	margin: 0;
21
	padding: 1px .5em;
22
	font-family: helvetica,arial,sans-serif;
23
	font-size: 10px;
24
	font-weight: bold;
25
	background-color: #fff;
26
	color: #0c479d;
27
}
28
 
29
a:hover.spip-admin-boutons {
30
	background-color: #fc3;
31
	border-bottom: 2px solid #36f;
32
}
33
 
34
a:active.spip-admin-boutons {
35
	background-color: #ccc;
36
	border-bottom: 2px solid #f00;
37
}
38
 
39
 
40
/* Style pour le mode debug */
41
#spip-debug {
42
	background-color: #f0f0f0;
43
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
44
}
45
 
46
#spip-debug ul table {
47
	font-size: 80%;
48
}
49
 
50
#spip-debug fieldset {
51
	background-color: #FFF;
52
	font-family: Courier, "Courier New", monospace;
53
	font-size: 12px;
54
	margin-bottom: 1em;
55
}
56
 
57
#spip-debug fieldset fieldset {
58
	background-color: #CCF;
59
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
60
	font-size: 80%;
61
}
62
 
63
#spip-debug legend {
64
	background-color: #FFF;
65
	border: solid 1px #F00;
66
	padding: 1px 1em;
67
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
68
	font-weight: bold;
69
}
70
 
71
#spip-debug fieldset fieldset legend {
72
	border: solid 1px #00F;
73
	font-weight: normal;
74
}
75
 
76
#spip-debug a {
77
	text-decoration: none;
78
}
79
 
80
#spip-debug a:hover {
81
	text-decoration: underline;
82
}
83
 
84
#debug_boucle fieldset {
85
	background-color: #CCF;
86
}
87
#debug_boucle fieldset fieldset {
88
	background-color: #FFF;
89
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
90
	padding: 0.5em 1.5em;
91
}
92
 
93
#spip-boucles {
94
	min-height: 200px;
95
	max-height:50%;
96
	margin: 0 0 1em 0;
97
	padding: .5em 0;
98
	overflow: -moz-scrollbars-vertical;
99
	overflow-y: auto;
100
	border-top: 1px solid #3399FF;
101
	border-bottom: 2px solid #666666;
102
}
103
 
104
.spip-env fieldset {
105
	background-color: #FFF;
106
	border: solid 1px #008;
107
	margin: 2px 2em;
108
}
109
 
110
.spip-env legend {
111
	background-color: #FFF;
112
	border: solid 1px #F00;
113
	padding: 1px 1em;
114
	font-weight: bold;
115
}
116
 
117
.spip-env fieldset div {
118
	max-height: 10em;
119
	overflow: auto;
120
}
121