_gnome.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /************
  2. * Nautilus *
  3. ************/
  4. .nautilus-window {
  5. .frame{
  6. *:selected, *:selected:backdrop{
  7. background: transparent;
  8. color: $selected_bg_color;
  9. }
  10. *:selected:backdrop{
  11. label {
  12. color: $backdrop_selected_bg_color;
  13. }
  14. }
  15. }
  16. paned {
  17. > separator { background-image: none; }
  18. }
  19. .sidebar {
  20. background-color: transparent;
  21. background-image: none;
  22. &:backdrop {
  23. background-color: transparent;
  24. background-image: none;
  25. }
  26. .list-row {
  27. button {
  28. border: none;
  29. background-color: transparentize(darken($base_color,3%),0.05);
  30. &:active {
  31. background-color: transparentize($selected_bg_color,0.25);
  32. }
  33. }
  34. &:selected {
  35. background-color: transparentize($selected_bg_color,0.25);
  36. &:hover {
  37. background-color: transparentize($selected_bg_color,0.1);
  38. }
  39. }
  40. &:hover {
  41. background-color: transparentize($base_color,0.5);
  42. &:active {
  43. background-color: transparentize($selected_bg_color,0.1);
  44. }
  45. }
  46. }
  47. }
  48. &.background {
  49. background-color: transparentize(darken($base_color,3%),0.05);
  50. &:backdrop {
  51. background-color: transparentize(darken($base_color,3%),0.05);
  52. }
  53. }
  54. notebook {
  55. > stack:only-child { // the :not(:only-child) is for "hidden" notebooks
  56. background-color: $base_color;
  57. &:backdrop { background-color: $backdrop_base_color; }
  58. }
  59. }
  60. searchbar {
  61. border-top: 1px solid rgba(0, 0, 0, 0.12);
  62. }
  63. .searchbar-container {
  64. margin-top: -1px;
  65. }
  66. .titlebar {
  67. .search{
  68. border: 1px solid $borders_color;
  69. border-radius: 3px;
  70. }
  71. }
  72. .path-bar-box {
  73. .dim-label {
  74. color: transparent;
  75. }
  76. widget > .text-button:last-child{
  77. @include button(active-header, transparent, $purple);
  78. &:backdrop label{
  79. color: $backdrop_selected_bg_color;
  80. }
  81. }
  82. button {
  83. transition: all 100ms ease-in;
  84. margin-left: -5px;
  85. &:backdrop {
  86. &:hover,
  87. &:active,
  88. &:checked {
  89. @include button(active-header);
  90. label {
  91. color: $backdrop_selected_bg_color;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. .path-buttons-box, #NautilusPathBar {
  98. background: transparent;
  99. .dim-label {
  100. color: transparent;
  101. margin-right: -7px;
  102. }
  103. //Buttons before current path
  104. button {
  105. margin-top: 0;
  106. margin-bottom: 0;
  107. .horizontal .dim-label { color: $headerbar_fg_color; }
  108. &:hover, &:focus {
  109. .dim-label { color: $purple; }
  110. }
  111. &:active { background-color: transparent; }
  112. }
  113. button > .horizontal > image.dim-label {
  114. margin-right: 10px;
  115. }
  116. .current-dir label {
  117. padding: 3px 12px;
  118. @include button(active-header, transparent, $purple);
  119. &:backdrop { color: $backdrop_selected_bg_color; }
  120. }
  121. }
  122. }
  123. .nautilus-circular-button {
  124. border-radius: 20px;
  125. }
  126. .disk-space-display {
  127. border: 2px solid;
  128. .unknown {
  129. background-color: #888a85;
  130. border-color: darken(#888a85, 20%);
  131. }
  132. .used {
  133. background-color: #9FB0B9;
  134. border-color: darken(#9FB0B9, 20%);
  135. }
  136. .free {
  137. background-color: #D8D8D8;
  138. border-color: darken(#D8D8D8, 20%);
  139. }
  140. }
  141. .nautilus-desktop {
  142. color: $fg_color;
  143. .nautilus-canvas-item {
  144. border-radius: 5px;
  145. color: $selected_fg_color;
  146. text-shadow: 1px 1px transparentize(black, 0.4);
  147. &:active {
  148. color: $fg_color;
  149. text-shadow: none;
  150. }
  151. &:hover {
  152. color: $fg_color;
  153. text-shadow: none;
  154. }
  155. &:selected {
  156. color: $selected_fg_color;
  157. text-shadow: none;
  158. }
  159. .dim-label {
  160. &:selected {
  161. color: $selected_fg_color;
  162. }
  163. }
  164. }
  165. .nautilus-list {
  166. .dim-label {
  167. &:selected {
  168. color: $selected_fg_color;
  169. }
  170. }
  171. }
  172. }
  173. /*********
  174. * Gedit *
  175. *********/
  176. .gedit-search-slider {
  177. padding: 4px;
  178. border-radius: 0 0 3px 3px;
  179. border: 0;
  180. background-color: $bg_color;
  181. }
  182. /*********
  183. * Gnucash *
  184. *********/
  185. #gnc-id-main-window {
  186. entry.gnc-class-register-foreground {
  187. background: transparent;
  188. border: none;
  189. box-shadow: none;
  190. }
  191. .arrow.button.toggle {
  192. transition: none;
  193. box-shadow: none;
  194. &:hover { border-color: $selected_bg_color; }
  195. }
  196. }