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.

47 lines
766 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. /* buttons, also headings from table views like thunar
  2. */
  3. switch:checked {
  4. background: @acc1_color;
  5. color: @bg_color;
  6. }
  7. switch {
  8. background: @acc1_color;
  9. color: @bg_color;
  10. }
  11. button,
  12. switch slider {
  13. background: @bg_color;
  14. color: @fg_color;
  15. border-radius: 0px;
  16. padding: 0.5em;
  17. border-width: 0px;
  18. border-color: transparent;
  19. }
  20. combobox {
  21. border-color: #00ff00;
  22. color: #ff0000;
  23. box-shadow: #0000ff;
  24. }
  25. button.flat {
  26. background: none;
  27. border-color: transparent;
  28. }
  29. button:hover,
  30. button:focus,
  31. switch:hover slider,
  32. switch:focus slider {
  33. color: @bg_color;
  34. background-color: @acc1_color;
  35. }
  36. button:backdrop,
  37. button:disabled,
  38. switch:backdrop slider,
  39. switch:disabled slider {
  40. background: @bg_color;
  41. }