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.
 
 
 
 
 

38 lines
782 B

  1. /**
  2. * This file provides styles for tab boxes
  3. */
  4. /* + + + + + tabs + + + + + */
  5. #dokuwiki__content {
  6. ul.tabs {
  7. li:not([class~="active"]) {
  8. strong,
  9. a {
  10. color: @ini_text_neu;
  11. transition: @transition background-color, @transition color;
  12. }
  13. a:hover,
  14. a:focus,
  15. a:active {
  16. color: @ini_text;
  17. }
  18. }
  19. }
  20. .tabs > ul {
  21. li:not([class~="active"]) {
  22. a {
  23. color: @ini_text_neu;
  24. transition: @transition background-color, @transition color;
  25. }
  26. a:hover,
  27. a:focus,
  28. a:active {
  29. color: @ini_text;
  30. }
  31. }
  32. }
  33. }