Advertisement
Guest User

thunar

a guest
Nov 20th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. /**********
  2. * Thunar *
  3. **********/
  4.  
  5. /*Contributor notes:
  6. Please use two space indentions.
  7. Stack all related and child selectors and selector states into a logical hierarchy to a readable degree.
  8. Make sure that all changes made here are part of the Thunar application.
  9. */
  10. .thunar .sidebar {
  11. color: green;
  12. background-color: blue;
  13. border-left: 10px solid red;
  14.  
  15. }
  16. .thunar #location-toolbar toolbutton button:not(:hover):not(:checked):not(:active),
  17. .thunar #location-toolbar #back button:not(:hover):not(:checked):not(:active),
  18. .thunar #location-toolbar #forward button:not(:hover):not(:checked):not(:active) {
  19. border-top: 4px solid #a920f1;
  20. border-bottom: 0;
  21. border-right: 0;
  22. border-left: 4px solid #a920f1;
  23. height: 16px;
  24. width: 16px;
  25. padding-bottom:4px;
  26. box-shadow: 4px 0 0 #5c23f0, 0 -4px 0 #5c23f0 inset;
  27. margin: 4px;
  28. }
  29.  
  30.  
  31. .thunar #location-toolbar toolbutton button:disabled {
  32. background-color: @border_bright;
  33. background-image: linear-gradient(45deg, @bg_color 25%, transparent 25%, transparent 75%, @bg_color 75%, @bg_color), linear-gradient(45deg, @bg_color 25%, transparent 25%, transparent 75%, @bg_color 75%, @border_dark);
  34. background-size: 2px 2px;
  35. background-position: 0 0, 1px 1px; }
  36.  
  37. .thunar #location-toolbar .path-bar button {
  38. min-height: 16px;
  39. min-width: 16px;
  40. padding: 0px;
  41. padding-left: 1px;
  42. padding-right: 1px; }
  43. .thunar #location-toolbar .path-bar button image {
  44. margin-top: -2px;
  45. margin-bottom: -2px; }
  46.  
  47. .thunar toolbar toolitem entry image.left {
  48. padding: 1px;
  49. margin-right: 4px; }
  50.  
  51. /*.thunar #main-menu {
  52. border-top: 1px solid @bg_shade;
  53. box-shadow: inset 0px 1px @bg_bright, inset -1px -1px @bg_shade;
  54. border-bottom: 1px solid @bg_bright;
  55. border-right: 1px solid @bg_bright; }*/
  56. /* .thunar #main-menu spinner {
  57. min-width: 8px;
  58. min-height: 8px;
  59. -gtk-icon-source: none;
  60. background: #000000; } */
  61. .thunar #main-menu {
  62. min-height: 24px; }
  63.  
  64. /* You can enable the spin button theme by uncommenting the following! */
  65. /* .thunar #main-menu > menuitem:not(#edit-menu):not(#file-menu):not(#view-menu):not(#go-menu):not(#help-menu) {
  66. background-color: black;
  67. border-left: 1px solid @bg_shade;
  68. box-shadow: inset 1px 0px @bg_bright;
  69. min-width: 24px;
  70. min-height: 24px;
  71. background-image: url("../assets/status_badge_c95.png");
  72. background-repeat: no-repeat;
  73. background-position: center;
  74. background-size: 21px 17px;
  75. padding-left: 1.5em;
  76. padding-right: 1.5em; }*/
  77.  
  78. .thunar notebook .standard-view {
  79. padding: 0px;
  80. border-top: 2px solid @border_dark;
  81. border-bottom: 2px solid @border_dark;
  82. border-left: 2px solid @border_dark;
  83. border-right: 2px solid @border_dark;
  84. border-image: url("../assets/frame_inset.png");
  85. border-image-slice: 2 2 2 2;
  86. box-shadow: none;
  87. }
  88. .thunar notebook header tabs tab {
  89. padding: 0px; }
  90. .thunar notebook header tabs tab box {
  91. padding: 0px;
  92. margin-top: -2px;
  93. margin-bottom: -2px; }
  94. .thunar notebook header tabs tab button {
  95. background: none;
  96. border: none;
  97. box-shadow: none; }
  98. .thunar notebook header tabs tab button image {
  99. padding: 0px;
  100. margin-top: -1px;
  101. margin-bottom: -2px; }
  102.  
  103. .thunar statusbar {
  104. margin-right: -9px;
  105. margin-left: -9px;
  106. padding: 0px; }
  107. .thunar statusbar frame box {
  108. margin-bottom: -3px;
  109. margin-top: -3px; }
  110. .thunar statusbar frame box label {
  111. margin-top: 1px;
  112. margin-bottom: -1px; }
  113.  
  114. .thunar widget.view:selected {
  115. background-color: shade(@selected_bg_color, 3.0); }
  116. .thunar widget.view:selected:focus {
  117. background-color: @selected_bg_color; }
  118.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement