_gnome.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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 {
  98. .dim-label { color: transparent; }
  99. //Buttons before current path
  100. button {
  101. .horizontal .dim-label { color: $headerbar_fg_color; }
  102. &:hover, &:focus {
  103. .dim-label { color: $purple; }
  104. }
  105. }
  106. .current-dir label {
  107. padding: 0px 12px;
  108. @include button(active-header, transparent, $purple);
  109. &:backdrop { color: $backdrop_selected_bg_color; }
  110. }
  111. }
  112. }
  113. .nautilus-circular-button {
  114. border-radius: 20px;
  115. -gtk-outline-radius: 20px;
  116. }
  117. .disk-space-display {
  118. border: 2px solid;
  119. .unknown {
  120. background-color: #888a85;
  121. border-color: darken(#888a85, 20%);
  122. }
  123. .used {
  124. background-color: #9FB0B9;
  125. border-color: darken(#9FB0B9, 20%);
  126. }
  127. .free {
  128. background-color: #D8D8D8;
  129. border-color: darken(#D8D8D8, 20%);
  130. }
  131. }
  132. .nautilus-desktop {
  133. color: $fg_color;
  134. .nautilus-canvas-item {
  135. border-radius: 5px;
  136. color: $selected_fg_color;
  137. text-shadow: 1px 1px transparentize(black, 0.4);
  138. &:active {
  139. color: $fg_color;
  140. text-shadow: none;
  141. }
  142. &:hover {
  143. color: $fg_color;
  144. text-shadow: none;
  145. }
  146. &:selected {
  147. color: $selected_fg_color;
  148. text-shadow: none;
  149. }
  150. .dim-label {
  151. &:selected {
  152. color: $selected_fg_color;
  153. }
  154. }
  155. }
  156. .nautilus-list {
  157. .dim-label {
  158. &:selected {
  159. color: $selected_fg_color;
  160. }
  161. }
  162. }
  163. }
  164. /*********
  165. * Gedit *
  166. *********/
  167. .gedit-search-slider {
  168. padding: 4px;
  169. border-radius: 0 0 3px 3px;
  170. border: 0;
  171. background-color: $bg_color;
  172. }
  173. /*********
  174. * Gnucash *
  175. *********/
  176. #gnc-id-main-window {
  177. entry.gnc-class-register-foreground {
  178. background: transparent;
  179. border: none;
  180. box-shadow: none;
  181. }
  182. .arrow.button.toggle {
  183. transition: none;
  184. box-shadow: none;
  185. &:hover { border-color: $selected_bg_color; }
  186. }
  187. }