-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.css
121 lines (106 loc) · 3.83 KB
/
menu.css
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
110
111
112
113
114
115
116
117
118
119
120
121
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* menu.css
*
* Cascading stylesheet for menu
*
* PHP versions 4 and 5
*
* LICENSE: This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (file license.txt);
* if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @category Cascading stylesheet
* @author Christophe Laratte <[email protected]>
* @copyright 2003-2005 The OpenFlyers Group <[email protected]>
* @license http://www.gnu.org/licenses/gpl.html GNU-GPL License
* @version CVS: $Id: menu.css,v 1.4.2.3 2006/05/21 09:41:19 claratte Exp $
* @link http://openflyers.org
* @since Fri Dec 13 2002
*/
/***** menu CSS *****/
@media print {
/*A l'impression on cache le menu, marche au moins pour IE, Moz et Opéra.*/
.menu, .ssmenu {
visibility:hidden;
}
}
.menu, .ssmenu {
background-color:#A0B0C0;
font-size:0.9em;
font-weight:bold;
padding:0px;
/* width et margin sont au cas où le javascript est désactivé. */
width:10em;
}
.ssmenu {border:2px solid #A0B0C0;}
/* .menu = les cases toujours visibles (comme Fichier, Edition... dans un logiciel) */
.menu {text-align:center;}
/* .ssmenu = Les parties "déroulantes" qui s'affiche au survol d'un .menu */
.ssmenu {white-space : nowrap; text-align:left;}
.menu span, .ssmenu span {
/* Ne pas toucher
C'est pour cacher les ; en fin de <li>, ce qui permet aux synthèse vocales de prendre une
pause dans l'élocution */
display:none;
}
.ssmenu ul, .ssmenu li {
/* Ne pas trop toucher.
Les items (les <li>) des sous-menus, notamment pour enlever les puces des liste */
padding:0;
margin:0;
list-style-type:none;
}
.menu a, .menu a:visited {
/* Les liens qui ne sont pas sous le curseur. */
color:white;
padding:1px;
text-decoration:none;
/* Ne pas modifier le block */
display:block;
/* Un width:100% fait planter Mozilla, sans le width:100% c'est IE et Opera... La combinaison
aucun width et height:100% marche sur tous, donc ne pas toucher ces 2 lignes */
/* height:100%;
margin:0px;*/
margin:0px;
width:100%;
}
.ssmenu a, .ssmenu a:visited {
/* Les liens qui ne sont pas sous le curseur. */
color:white;
padding:1px;
text-decoration:none;
/* Ne pas modifier le block */
/* Un width:100% fait planter Mozilla, sans le width:100% c'est IE et Opera... La combinaison
aucun width et height:100% marche sur tous, donc ne pas toucher ces 2 lignes */
/* height:100%;
margin:0px;*/
margin:0px;
width:100%;
}
.ssmenu a, .ssmenu a:visited {padding-left:1em;}
html>body .menu a, html>body .menu a:visited, html>body .menu a:hover, html>body .menu a:active,
html>body .ssmenu a, html>body .ssmenu a:visited, html>body .ssmenu a:hover, html>body .ssmenu a:active {
width:auto;
}
/* Les liens sous le curseur.*/
.ssmenu ul:hover, .ssmenu a:hover, .ssmenu a:focus, .menu a:hover, .menu a:focus {color:#607080;text-decoration:none; }
.menu a.active,a:visited.active {color:#607080;}
.ssmenu a.active,a:visited.active {color:#607080;}
/*
Bref... pour résumer, ce qu'il y a à modifier à la base, c'est :
- couleurs, police, bordure.
- l'effet spécial IE pour les ssmenu si on aime ça...
- police et couleurs des liens "non survolés" et "survolés".
*/