You are here

bigmenu.css in Big Menu 6

Same filename and directory in other branches
  1. 7 bigmenu.css
/* 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.css
View source
  1. /* text that indicates if an item can be expanded */
  2. .bigmenu-childindictor {
  3. display:block;
  4. font-size: .8em;
  5. }
  6. .bigmenu-childindictor .bigmenu-toggle{
  7. display: inline-block;
  8. padding-top: 1em;
  9. padding-left: 1em;
  10. width: 0em;
  11. height: 0em;
  12. overflow:hidden;
  13. }
  14. .bigmenu-collapsed .bigmenu-toggle{
  15. background: url(menu-collapsed.gif) no-repeat 0 center;
  16. }
  17. .bigmenu-expanded .bigmenu-toggle{
  18. background: url(menu-expanded.gif) no-repeat 0 center;
  19. }
  20. /* this is slightly more specific, as it overrides the other two if it's on */
  21. .bigmenu-processing .bigmenu-childindictor .bigmenu-toggle{
  22. background: url(menu-processing.gif) no-repeat 0 center;
  23. }