Reformatted with spaces as expected in Drupal

This commit is contained in:
Alexis Wilke 2010-05-15 10:41:35 +00:00
parent 8008cecb85
commit b8566401fd

View File

@ -1,44 +1,49 @@
/* $Id$ */ /* $Id$ */
.simplemenu-block {
height: 21px;
}
#simplemenu { #simplemenu {
background:#ddd; background: #ddd;
color:#333; color: #333;
border-bottom:1px solid #999; border-bottom: 1px solid #999;
font:11px Verdana, Helvetica, sans-serif; font: 11px Verdana, Helvetica, sans-serif;
width:100%; width: 100%;
z-index:9999; text-align: left;
text-align:left;
} }
#simplemenu a { #simplemenu a {
color:#333; color: #333;
text-decoration:none; text-decoration: none;
background:#ddd; background: #ddd;
border-right:1px solid #999; border-right: 1px solid #999;
border-left:1px solid #eee; border-left: 1px solid #eee;
padding:2px 6px 3px 6px; padding: 2px 6px 3px 6px;
width:auto; width: auto;
} }
#simplemenu li { #simplemenu li {
background:#ddd; background: #ddd;
text-align: left; text-align: left;
} }
#simplemenu li.expanded > a { #simplemenu li.expanded > a {
background:url(right-green.gif) no-repeat 97%; background: url(right-green.gif) no-repeat 97%;
padding-right:2em; padding-right: 2em;
} }
#simplemenu li.root > a { #simplemenu li.root > a {
font-weight:700; font-weight: 700;
background:url(down-green.gif) no-repeat 97%; background: url(down-green.gif) no-repeat 97%;
} }
#simplemenu li:hover, #simplemenu li.sfHover, #simplemenu li:hover, #simplemenu li.sfHover,
#simplemenu a:focus, #simplemenu a:hover, #simplemenu a:active { #simplemenu a:focus, #simplemenu a:hover, #simplemenu a:active {
background:#3875d7; background: #3875d7;
color:#fff; color: #fff;
} }
#simplemenu li:hover ul, #simplemenu li:hover ul,
ul#simplemenu li.sfHover ul { ul#simplemenu li.sfHover ul {
border-bottom:1px solid #999; border-bottom: 1px solid #999;
} }
#simplemenu li ul a { #simplemenu li ul a {
height:auto; height: auto;
} }
/* vim: ts=2 sw=2 et syntax=css
*/