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.

32 lines
516 B

  1. /* buttons, also headings from table views like thunar
  2. */
  3. button,
  4. switch slider {
  5. background: @bg_color;
  6. color: @fg_color;
  7. border-radius: 1px;
  8. padding: 0.5em;
  9. border-width: 1px;
  10. }
  11. button.flat {
  12. background: none;
  13. border-color: transparent;
  14. }
  15. button:hover,
  16. button:focus
  17. switch:hover slider,
  18. switch:focus slider {
  19. color: @bg_color;
  20. background-color: @acc1_color;
  21. }
  22. button:backdrop,
  23. button:disabled,
  24. switch:backdrop slider,
  25. switch:disabled slider {
  26. background: @bg_color;
  27. }