Reformatted with spaces instead of tabs as expected in Drupal.

Removed the z-index which was moved to the CSS template instead.
This commit is contained in:
Alexis Wilke 2010-05-15 10:42:33 +00:00
parent b8566401fd
commit de47d2f980

View File

@ -1,45 +1,50 @@
/* $Id$ */
.simplemenu-block {
height: 21px;
}
#simplemenu {
background:#000;
color:#fff;
font:11px Verdana, Helvetica, sans-serif;
width:100%;
z-index:9999;
text-align:left;
background: #000;
color: #fff;
font:11px Verdana, Helvetica, sans-serif;
width: 100%;
text-align: left;
}
#simplemenu a {
color:#fff;
text-decoration:none;
padding:3px 12px 5px 12px;
width:auto;
color: #fff;
text-decoration: none;
padding: 3px 12px 5px 12px;
width: auto;
}
#simplemenu li {
background:transparent;
background: transparent;
}
#simplemenu li.expanded > a {
background:url(arrow_right.gif) no-repeat 94%;
padding-right:18px;
background: url(arrow_right.gif) no-repeat 94%;
padding-right: 18px;
}
#simplemenu li.root > a {
background:url(arrow_down.gif) no-repeat 94%;
padding-right:18px;
background: url(arrow_down.gif) no-repeat 94%;
padding-right: 18px;
}
#simplemenu li:hover, #simplemenu li.sfHover,
#simplemenu a:focus, #simplemenu a:hover, #simplemenu a:active {
background: #4c77b3;
color:#fff;
color: #fff;
}
#simplemenu li ul {
border:1px solid #ccc;
background:#fafcff;
border: 1px solid #ccc;
background: #fafcff;
}
#simplemenu li ul a {
color:#4e4e4e;
height:auto;
color: #4e4e4e;
height: auto;
}
#simplemenu li ul li:hover, #simplemenu li ul li.sfHover,
#simplemenu li ul a:focus, #simplemenu li ul a:hover, #simplemenu li ul a:active {
background-color:#cde;
color:#4e4e4e;
}
background-color: #cde;
color: #4e4e4e;
}
/* vim: ts=2 sw=2 et syntax=css
*/