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.

89 lines
1.3 KiB

4 years ago
4 years ago
4 years ago
4 years ago
  1. /*
  2. * see here for theming tutorial
  3. * https://ubuntu-mate.community/t/enabling-the-gtk-inspector-to-find-css-values-for-theme-styles/20150
  4. */
  5. /*************
  6. * base states
  7. *************/
  8. .background {
  9. color: @fg_color;
  10. background: @bg_color;
  11. }
  12. /* inherit colors from parent */
  13. * {
  14. background-color: inherit;
  15. color: inherit;
  16. }
  17. selection,
  18. *:selected:selected,
  19. *:selected:focus {
  20. background-color: @acc1_color;
  21. color: @bg_color;
  22. }
  23. /*
  24. * {
  25. border-color: @bg_color;
  26. border-style: solid;
  27. -GtkTreeView-expander-size: 11;
  28. }
  29. */
  30. selection,
  31. *:selected:selected,
  32. *:selected:focus {
  33. background-color: @acc1_color;
  34. color: @bg_color;
  35. }
  36. box {
  37. background: @bg_color;
  38. color: @fg_color;
  39. }
  40. label {
  41. color: @fg_color;
  42. }
  43. *:backdrop:backdrop,
  44. *:disabled:disabled {
  45. color: mix(@fg_color, @bg_color, 0.4);
  46. -gtk-icon-effect: dim;
  47. }
  48. .view,
  49. .cell {
  50. background: @bg_color;
  51. color: @fg_color;
  52. }
  53. entry {
  54. padding: 3px;
  55. border-width: 1px;
  56. background-color: @bg_color;
  57. color: @fg_color;
  58. }
  59. entry:backdrop,
  60. entry:disabled {
  61. background: shade(@bg_color, 0.94);
  62. }
  63. slider:focus,
  64. switch:focus slider,
  65. spinbutton:focus,
  66. notebook:focus tab:checked,
  67. radio:focus,
  68. check:focus,
  69. entry:focus,
  70. button:focus {
  71. border-color: @acc2_color;
  72. }