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.

94 lines
1.6 KiB

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