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.

98 lines
1.7 KiB

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. border-color: @bg_color;
  7. border-style: solid;
  8. -GtkTreeView-expander-size: 11;
  9. }
  10. selection,
  11. *:selected:selected,
  12. *:selected:focus {
  13. background-color: @acc1_color;
  14. color: @bg_color;
  15. }
  16. label {
  17. color: @fg_color;
  18. }
  19. *:backdrop:backdrop,
  20. *:disabled:disabled {
  21. color: mix(@fg_color, @bg_color, 0.4);
  22. -gtk-icon-effect: dim;
  23. }
  24. .background {
  25. background: @bg_color;
  26. }
  27. .view,
  28. .cell {
  29. background: @bg_color;
  30. color: @fg_color;
  31. }
  32. entry {
  33. padding: 3px;
  34. border-width: 1px;
  35. background-color: @bg_color;
  36. color: @fg_color;
  37. }
  38. entry:backdrop,
  39. entry:disabled {
  40. background: shade(@bg_color, 0.94);
  41. }
  42. slider:focus,
  43. switch:focus slider,
  44. spinbutton:focus,
  45. notebook:focus tab:checked,
  46. radio:focus,
  47. check:focus,
  48. entry:focus,
  49. button:focus {
  50. border-color: @acc2_color;
  51. }
  52. /*
  53. .thunar toolbar {
  54. color: @fg_color;
  55. background-color: @bg_color;
  56. }
  57. .thunar .sidebar .view,
  58. .thunar .sidebar .iconview {
  59. color: @fg_color;
  60. background-color: @bg_color;
  61. }
  62. .thunar .sidebar .view:selected,
  63. .thunar .sidebar .iconview:selected,
  64. .thunar .sidebar .view:active,
  65. .thunar .sidebar .iconview:active {
  66. color: @bg_color;
  67. background-color: @acc1_color;
  68. }
  69. .thunar .standard-view .view {
  70. color: @fg_color;
  71. background-color: @bg_color;
  72. }
  73. .thunar .standard-view .view:selected,
  74. .thunar .standard-view .iconview:selected,
  75. .thunar .standard-view .view:active,
  76. .thunar .standard-view .iconview:active {
  77. color: @bg_color;
  78. background-color: @acc1_color;
  79. }
  80. @import url("widgets/menu.css");
  81. */