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.
 
 
 
 
 

58 lines
1.4 KiB

  1. /**
  2. * This file provides styles for the tabinclude
  3. */
  4. /* + + + + + plugin tabinclude + + + + + */
  5. div#dwpl-ti-container {
  6. li.dwpl-ti-tab {
  7. box-shadow: none;
  8. background-color: @ini_background_page_header;
  9. border-color: @ini_border;
  10. border-radius: @fix_border-radius @fix_border-radius 0 0;
  11. color: @ini_background_page_footer;
  12. padding: 0;
  13. &:hover {
  14. background-color: @ini_background_page_header;
  15. text-decoration: none;
  16. div {
  17. text-decoration: underline;
  18. &.selected {
  19. color: @ini_text;
  20. }
  21. }
  22. }
  23. div {
  24. border-radius: inherit;
  25. color: inherit;
  26. padding: .1em .35em;
  27. &.selected {
  28. position: relative;
  29. background-color: @ini_background;
  30. color: @ini_text;
  31. }
  32. }
  33. }
  34. /* + + + content box + + + */
  35. div.dwpl-ti-content-box {
  36. position: relative;
  37. overflow: auto;
  38. box-shadow: @box-shadow;
  39. background-color: @ini_background;
  40. border: solid 1px @ini_border;
  41. border-radius: 0;
  42. margin-top: -1px;
  43. }
  44. }
  45. /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
  46. /* media queries */
  47. @media @screen_max-md {
  48. div#dwpl-ti-container { }
  49. }