bigmenu.css in Big Menu 6
Same filename and directory in other branches
/* text that indicates if an item can be expanded */
.bigmenu-childindictor {
display:block;
font-size: .8em;
}
.bigmenu-childindictor .bigmenu-toggle{
display: inline-block;
padding-top: 1em;
padding-left: 1em;
width: 0em;
height: 0em;
overflow:hidden;
}
.bigmenu-collapsed .bigmenu-toggle{
background: url(menu-collapsed.gif) no-repeat 0 center;
}
.bigmenu-expanded .bigmenu-toggle{
background: url(menu-expanded.gif) no-repeat 0 center;
}
/* this is slightly more specific, as it overrides the other two if it's on */
.bigmenu-processing .bigmenu-childindictor .bigmenu-toggle{
background: url(menu-processing.gif) no-repeat 0 center;
}File
bigmenu.cssView source
- /* text that indicates if an item can be expanded */
- .bigmenu-childindictor {
- display:block;
- font-size: .8em;
- }
- .bigmenu-childindictor .bigmenu-toggle{
- display: inline-block;
- padding-top: 1em;
- padding-left: 1em;
- width: 0em;
- height: 0em;
- overflow:hidden;
- }
- .bigmenu-collapsed .bigmenu-toggle{
- background: url(menu-collapsed.gif) no-repeat 0 center;
- }
- .bigmenu-expanded .bigmenu-toggle{
- background: url(menu-expanded.gif) no-repeat 0 center;
- }
- /* this is slightly more specific, as it overrides the other two if it's on */
- .bigmenu-processing .bigmenu-childindictor .bigmenu-toggle{
- background: url(menu-processing.gif) no-repeat 0 center;
- }