stylesheet.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /*** PANEL ***/
  2. /*
  3. * `.transparent-panel`
  4. */
  5. #panel.transparent-panel {
  6. background: transparent;
  7. transition-duration: 500ms;
  8. }
  9. /*
  10. * `.dark-panel`
  11. */
  12. #panel.dark-panel {
  13. background-color: rgba(100, 100, 100, 0.35);
  14. box-shadow: none;
  15. transition-duration: 500ms;
  16. }
  17. /*
  18. * `.light-panel`
  19. */
  20. #panel.light-panel {
  21. background-color: rgba(200, 200, 200, 0.2);
  22. box-shadow: none;
  23. transition-duration: 500ms;
  24. }
  25. /*
  26. * `.contrasted-panel`
  27. */
  28. #panel.contrasted-panel {
  29. background-color: transparent;
  30. box-shadow: none;
  31. transition-duration: 500ms;
  32. }
  33. .contrasted-panel .panel-button,
  34. .contrasted-panel .clock,
  35. .contrasted-panel .clock-display StIcon {
  36. color: #ffffff;
  37. border-radius: 14px;
  38. border: 3px solid transparent;
  39. background-color: rgba(0, 0, 0, 0.8);
  40. box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  41. }
  42. .contrasted-panel .clock-display StIcon {
  43. padding: 8px;
  44. margin: 0;
  45. }
  46. .contrasted-panel .panel-button:hover,
  47. .contrasted-panel .panel-button:hover .clock {
  48. color: #ffffff;
  49. background-color: rgba(0, 0, 0, 0.8);
  50. }
  51. .contrasted-panel .clock-display {
  52. background-color: transparent !important;
  53. box-shadow: none !important;
  54. border: none !important;
  55. }
  56. .contrasted-panel .clock {
  57. margin: 0 !important;
  58. }
  59. /*** DASH ***/
  60. /*
  61. * `.transparent-dash`
  62. */
  63. .transparent-dash .dash-background {
  64. background-color: transparent !important;
  65. }
  66. /*
  67. * `.light-dash`
  68. */
  69. .light-dash .dash-background {
  70. background-color: rgba(200, 200, 200, 0.2) !important;
  71. }
  72. /*
  73. * `.dark-dash`
  74. */
  75. .dark-dash .dash-background {
  76. background-color: rgba(100, 100, 100, 0.35) !important;
  77. }
  78. /*** OVERVIEW ***/
  79. /*
  80. * Add transparency to the workspace animation (between workspaces)
  81. */
  82. .blurred-overview .workspace-animation {
  83. background-color: transparent !important;
  84. }
  85. /*
  86. * `.overview-components-transparent`
  87. */
  88. .overview-components-transparent .workspace-thumbnail {
  89. background-color: rgba(0, 0, 0, 0);
  90. border: 1px solid rgba(100, 100, 100, 0.35);
  91. }
  92. .overview-components-transparent .search-entry {
  93. color: white;
  94. background-color: rgba(0, 0, 0, 0);
  95. border-color: transparent;
  96. box-shadow: none;
  97. }
  98. .overview-components-transparent .search-entry .search-entry-icon {
  99. color: rgba(255, 255, 255, 0.65);
  100. }
  101. .overview-components-transparent .search-section-content {
  102. border: none;
  103. box-shadow: none;
  104. }
  105. .overview-components-transparent .search-section-content,
  106. .overview-components-transparent .app-folder .overview-icon {
  107. background-color: rgba(0, 0, 0, 0);
  108. }
  109. /* prevents the extension from interfering with Just Perfection */
  110. .overview-components-transparent.just-perfection .search-section-content {
  111. background-color: transparent;
  112. }
  113. .overview-components-transparent .app-folder .overview-icon {
  114. border-color: transparent;
  115. }
  116. .overview-components-transparent .app-folder:hover .overview-icon,
  117. .overview-components-transparent .app-folder:focus .overview-icon {
  118. background-color: rgba(230, 230, 230, 0.08);
  119. }
  120. .overview-components-transparent .app-folder:active .overview-icon,
  121. .overview-components-transparent .app-folder:focus:hover .overview-icon,
  122. .overview-components-transparent .app-folder:drop .overview-icon {
  123. background-color: rgba(230, 230, 230, 0.12);
  124. }
  125. .overview-components-transparent .app-folder:focus:active .overview-icon {
  126. background-color: rgba(230, 230, 230, 0.15);
  127. }
  128. /* this shouldn't apply to Dash to Dock */
  129. .overview-components-transparent StBoxLayout>StWidget>#dash>.dash-background {
  130. background-color: rgba(0, 0, 0, 0);
  131. }
  132. /*
  133. * `.overview-components-light`
  134. */
  135. .overview-components-light .workspace-thumbnail {
  136. background-color: rgba(200, 200, 200, 0.2);
  137. }
  138. .overview-components-light .search-entry {
  139. color: white;
  140. background-color: rgba(200, 200, 200, 0.2);
  141. border-color: transparent;
  142. box-shadow: none;
  143. }
  144. .overview-components-light .search-entry .search-entry-icon {
  145. color: rgba(255, 255, 255, 0.65);
  146. }
  147. .overview-components-light .search-section-content {
  148. border: none;
  149. box-shadow: none;
  150. }
  151. .overview-components-light .search-section-content,
  152. .overview-components-light .app-folder .overview-icon {
  153. background-color: rgba(200, 200, 200, 0.2);
  154. }
  155. /* prevents the extension from interfering with Just Perfection */
  156. .overview-components-light.just-perfection .search-section-content {
  157. background-color: transparent;
  158. }
  159. .overview-components-light .app-folder .overview-icon {
  160. border-color: transparent;
  161. }
  162. .overview-components-light .app-folder:hover .overview-icon,
  163. .overview-components-light .app-folder:focus .overview-icon {
  164. background-color: rgba(230, 230, 230, 0.2);
  165. }
  166. .overview-components-light .app-folder:active .overview-icon,
  167. .overview-components-light .app-folder:focus:hover .overview-icon,
  168. .overview-components-light .app-folder:drop .overview-icon {
  169. background-color: rgba(230, 230, 230, 0.25);
  170. }
  171. .overview-components-light .app-folder:focus:active .overview-icon {
  172. background-color: rgba(230, 230, 230, 0.3);
  173. }
  174. /* this shouldn't apply to Dash to Dock */
  175. .overview-components-light StBoxLayout>StWidget>#dash>.dash-background {
  176. background-color: rgba(200, 200, 200, 0.2);
  177. }
  178. /*
  179. * `.overview-components-dark`
  180. */
  181. .overview-components-dark .workspace-thumbnail {
  182. background-color: rgba(100, 100, 100, 0.35);
  183. }
  184. .overview-components-dark .search-entry {
  185. color: white;
  186. background-color: rgba(100, 100, 100, 0.35);
  187. border-color: transparent;
  188. box-shadow: none;
  189. }
  190. .overview-components-dark .search-entry .search-entry-icon {
  191. color: rgba(255, 255, 255, 0.65);
  192. }
  193. .overview-components-dark .search-section-content {
  194. border: none;
  195. box-shadow: none;
  196. }
  197. .overview-components-dark .search-section-content,
  198. .overview-components-dark .app-folder .overview-icon {
  199. background-color: rgba(100, 100, 100, 0.35);
  200. }
  201. /* prevents the extension from interfering with Just Perfection */
  202. .overview-components-dark.just-perfection .search-section-content {
  203. background-color: transparent;
  204. }
  205. .overview-components-dark .app-folder .overview-icon {
  206. border-color: transparent;
  207. }
  208. .overview-components-dark .app-folder:hover .overview-icon,
  209. .overview-components-dark .app-folder:focus .overview-icon {
  210. background-color: rgba(120, 120, 120, 0.35);
  211. }
  212. .overview-components-dark .app-folder:active .overview-icon,
  213. .overview-components-dark .app-folder:focus:hover .overview-icon,
  214. .overview-components-dark .app-folder:drop .overview-icon {
  215. background-color: rgba(120, 120, 120, 0.4);
  216. }
  217. .overview-components-dark .app-folder:focus:active .overview-icon {
  218. background-color: rgba(120, 120, 120, 0.45);
  219. }
  220. /* this shouldn't apply to Dash to Dock */
  221. .overview-components-dark StBoxLayout>StWidget>#dash>.dash-background {
  222. background-color: rgba(100, 100, 100, 0.35);
  223. }
  224. /*** APPFOLDER DIALOG ***/
  225. /*
  226. * `.appfolder-dialogs-transparent`
  227. */
  228. .appfolder-dialogs-transparent {
  229. background-color: rgba(0, 0, 0, 0);
  230. border: none;
  231. box-shadow: none;
  232. }
  233. .appfolder-dialogs-transparent .folder-name-entry {
  234. color: white;
  235. background-color: rgba(0, 0, 0, 0);
  236. border: 0;
  237. box-shadow: none;
  238. }
  239. /*
  240. * `.appfolder-dialogs-light`
  241. */
  242. .appfolder-dialogs-light {
  243. background-color: rgba(200, 200, 200, 0.2);
  244. border: none;
  245. box-shadow: none;
  246. }
  247. .appfolder-dialogs-light .folder-name-entry {
  248. color: white;
  249. background-color: rgba(200, 200, 200, 0.2);
  250. border: 0;
  251. box-shadow: none;
  252. }
  253. /*
  254. * `.appfolder-dialogs-dark`
  255. */
  256. .appfolder-dialogs-dark {
  257. background-color: rgba(100, 100, 100, 0.35);
  258. border: none;
  259. box-shadow: none;
  260. }
  261. .appfolder-dialogs-dark .folder-name-entry {
  262. color: white;
  263. background-color: rgba(100, 100, 100, 0.35);
  264. border: 0;
  265. box-shadow: none;
  266. }