You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
764 B

  1. /**
  2. * This file provides the design styles for tab list in sidebar
  3. */
  4. /* default view */
  5. #dokuwiki__aside ul.sidebar-tabs {
  6. margin-top: 0;
  7. margin-bottom: @nav-margin;
  8. border-bottom: 1px solid @ini_nav_menu_color;
  9. white-space: nowrap;
  10. li {
  11. display: inline-block;
  12. border: 1px solid @ini_nav_menu_color;
  13. padding: 0.25em 0.5em;
  14. margin-bottom: -1px;
  15. margin-left: 0.5em;
  16. border-top-right-radius: @fix_border-radius;
  17. border-top-left-radius: @fix_border-radius;
  18. &.active {
  19. border-bottom: 1px solid @ini_background_site;
  20. font-weight: bold;
  21. }
  22. }
  23. }
  24. /* wide content view */
  25. .wide-content #dokuwiki__aside ul.sidebar-tabs {
  26. visibility: hidden;
  27. }