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
632 B

4 years ago
4 years ago
4 years ago
  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: 0px;
  8. padding: 0.5em;
  9. border-width: 0px;
  10. border-color: transparent;
  11. }
  12. combobox {
  13. border-color: #00ff00;
  14. color: #ff0000;
  15. box-shadow: #0000ff;
  16. }
  17. button.flat {
  18. background: none;
  19. border-color: transparent;
  20. }
  21. button:hover,
  22. button:focus
  23. switch:hover slider,
  24. switch:focus slider {
  25. color: @bg_color;
  26. background-color: @acc1_color;
  27. }
  28. button:backdrop,
  29. button:disabled,
  30. switch:backdrop slider,
  31. switch:disabled slider {
  32. background: @bg_color;
  33. }