stylesheet.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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-TO-DOCK ***/
  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. border: 1px solid rgba(100, 100, 100, 0.35);
  90. }
  91. .overview-components-transparent .search-entry {
  92. color: white;
  93. background-color: rgba(0, 0, 0, 0);
  94. border-color: transparent;
  95. box-shadow: none;
  96. }
  97. .overview-components-transparent .search-entry .search-entry-icon {
  98. color: rgba(255, 255, 255, 0.65);
  99. }
  100. .overview-components-transparent .overview-tile,
  101. .overview-components-transparent .overview-icon,
  102. .overview-components-transparent .list-search-result,
  103. .overview-components-transparent .search-provider-icon,
  104. /* prevents the extension from interfering with Just Perfection */
  105. .overview-components-transparent.just-perfection .search-section-content,
  106. /* remove the rectangular background from the dash */
  107. .overview-components-transparent #dash .overview-tile {
  108. background-color: transparent;
  109. }
  110. .overview-components-transparent .workspace-thumbnail,
  111. .overview-components-transparent .search-section-content,
  112. .overview-components-transparent .overview-tile.app-folder,
  113. .overview-components-transparent .page-navigation-arrow,
  114. .overview-components-transparent .app-folder-dialog .icon-button,
  115. /* this shouldn't apply to Dash to Dock */
  116. .overview-components-transparent StBoxLayout>StWidget>#dash>.dash-background {
  117. background-color: rgba(0, 0, 0, 0);
  118. }
  119. .overview-components-transparent .overview-tile:hover,
  120. .overview-components-transparent .overview-tile:focus,
  121. .overview-components-transparent .overview-tile:selected,
  122. .overview-components-transparent .overview-tile:highlighted,
  123. .overview-components-transparent .list-search-result:hover,
  124. .overview-components-transparent .list-search-result:focus,
  125. .overview-components-transparent .list-search-result:selected,
  126. .overview-components-transparent .list-search-result:highlighted,
  127. .overview-components-transparent .search-provider-icon:hover,
  128. .overview-components-transparent .search-provider-icon:focus,
  129. .overview-components-transparent .page-navigation-arrow:hover,
  130. .overview-components-transparent .page-navigation-arrow:focus,
  131. .overview-components-transparent .app-folder-dialog .icon-button:hover,
  132. .overview-components-transparent .app-folder-dialog .icon-button:focus,
  133. .overview-components-transparent #dash .overview-tile:hover .overview-icon,
  134. .overview-components-transparent #dash .overview-tile:focus .overview-icon,
  135. .overview-components-transparent #dash .show-apps:hover .overview-icon,
  136. .overview-components-transparent #dash .show-apps:focus .overview-icon {
  137. background-color: rgba(230, 230, 230, 0.08);
  138. }
  139. .overview-components-transparent .overview-tile:active,
  140. .overview-components-transparent .overview-tile:focus:hover,
  141. .overview-components-transparent .overview-tile:drop,
  142. .overview-components-transparent .overview-tile:selected:hover,
  143. .overview-components-transparent .overview-tile:highlighted:hover,
  144. .overview-components-transparent .list-search-result:active,
  145. .overview-components-transparent .list-search-result:focus:hover,
  146. .overview-components-transparent .list-search-result:selected:hover,
  147. .overview-components-transparent .list-search-result:highlighted:hover,
  148. .overview-components-transparent .search-provider-icon:active,
  149. .overview-components-transparent .search-provider-icon:focus:hover,
  150. .overview-components-transparent .page-navigation-arrow:active,
  151. .overview-components-transparent .page-navigation-arrow:focus:hover,
  152. .overview-components-transparent .app-folder-dialog .icon-button:active,
  153. .overview-components-transparent .app-folder-dialog .icon-button:focus:hover,
  154. .overview-components-transparent #dash .overview-tile:active .overview-icon,
  155. .overview-components-transparent #dash .overview-tile:focus:hover .overview-icon,
  156. .overview-components-transparent #dash .overview-tile:drop .overview-icon,
  157. .overview-components-transparent #dash .show-apps:checked .overview-icon {
  158. background-color: rgba(230, 230, 230, 0.12);
  159. }
  160. .overview-components-transparent .overview-tile:focus:active,
  161. .overview-components-transparent .overview-tile:selected:active,
  162. .overview-components-transparent .overview-tile:highlighted:active,
  163. .overview-components-transparent .list-search-result:focus:active,
  164. .overview-components-transparent .list-search-result:selected:active,
  165. .overview-components-transparent .list-search-result:highlighted:active,
  166. .overview-components-transparent .search-provider-icon:focus:active,
  167. .overview-components-transparent .page-navigation-arrow:focus:active,
  168. .overview-components-transparent .app-folder-dialog .icon-button:focus:active,
  169. .overview-components-transparent #dash .show-apps:checked .overview-icon:hover {
  170. background-color: rgba(230, 230, 230, 0.15);
  171. }
  172. /*
  173. * `.overview-components-light`
  174. */
  175. .overview-components-light .search-entry {
  176. color: white;
  177. background-color: rgba(200, 200, 200, 0.2);
  178. border-color: transparent;
  179. box-shadow: none;
  180. }
  181. .overview-components-light .search-entry .search-entry-icon {
  182. color: rgba(255, 255, 255, 0.65);
  183. }
  184. .overview-components-light .overview-tile,
  185. .overview-components-light .overview-icon,
  186. .overview-components-light .list-search-result,
  187. .overview-components-light .search-provider-icon,
  188. /* prevents the extension from interfering with Just Perfection */
  189. .overview-components-light.just-perfection .search-section-content,
  190. /* remove the rectangular background from the dash */
  191. .overview-components-light #dash .overview-tile {
  192. background-color: transparent;
  193. }
  194. .overview-components-light .workspace-thumbnail,
  195. .overview-components-light .search-section-content,
  196. .overview-components-light .overview-tile.app-folder,
  197. .overview-components-light .page-navigation-arrow,
  198. .overview-components-light .app-folder-dialog .icon-button,
  199. /* this shouldn't apply to Dash to Dock */
  200. .overview-components-light StBoxLayout>StWidget>#dash>.dash-background {
  201. background-color: rgba(200, 200, 200, 0.2);
  202. }
  203. .overview-components-light .overview-tile:hover,
  204. .overview-components-light .overview-tile:focus,
  205. .overview-components-light .overview-tile:selected,
  206. .overview-components-light .overview-tile:highlighted,
  207. .overview-components-light .list-search-result:hover,
  208. .overview-components-light .list-search-result:focus,
  209. .overview-components-light .list-search-result:selected,
  210. .overview-components-light .list-search-result:highlighted,
  211. .overview-components-light .search-provider-icon:hover,
  212. .overview-components-light .search-provider-icon:focus,
  213. .overview-components-light .page-navigation-arrow:hover,
  214. .overview-components-light .page-navigation-arrow:focus,
  215. .overview-components-light .app-folder-dialog .icon-button:hover,
  216. .overview-components-light .app-folder-dialog .icon-button:focus,
  217. .overview-components-light #dash .overview-tile:hover .overview-icon,
  218. .overview-components-light #dash .overview-tile:focus .overview-icon,
  219. .overview-components-light #dash .show-apps:hover .overview-icon,
  220. .overview-components-light #dash .show-apps:focus .overview-icon {
  221. background-color: rgba(230, 230, 230, 0.2);
  222. }
  223. .overview-components-light .overview-tile:active,
  224. .overview-components-light .overview-tile:focus:hover,
  225. .overview-components-light .overview-tile:drop,
  226. .overview-components-light .overview-tile:selected:hover,
  227. .overview-components-light .overview-tile:highlighted:hover,
  228. .overview-components-light .list-search-result:active,
  229. .overview-components-light .list-search-result:focus:hover,
  230. .overview-components-light .list-search-result:selected:hover,
  231. .overview-components-light .list-search-result:highlighted:hover,
  232. .overview-components-light .search-provider-icon:active,
  233. .overview-components-light .search-provider-icon:focus:hover,
  234. .overview-components-light .page-navigation-arrow:active,
  235. .overview-components-light .page-navigation-arrow:focus:hover,
  236. .overview-components-light .app-folder-dialog .icon-button:active,
  237. .overview-components-light .app-folder-dialog .icon-button:focus:hover,
  238. .overview-components-light #dash .overview-tile:active .overview-icon,
  239. .overview-components-light #dash .overview-tile:focus:hover .overview-icon,
  240. .overview-components-light #dash .overview-tile:drop .overview-icon,
  241. .overview-components-light #dash .show-apps:checked .overview-icon {
  242. background-color: rgba(230, 230, 230, 0.25);
  243. }
  244. .overview-components-light .overview-tile:focus:active,
  245. .overview-components-light .overview-tile:selected:active,
  246. .overview-components-light .overview-tile:highlighted:active,
  247. .overview-components-light .list-search-result:focus:active,
  248. .overview-components-light .list-search-result:selected:active,
  249. .overview-components-light .list-search-result:highlighted:active,
  250. .overview-components-light .search-provider-icon:focus:active,
  251. .overview-components-light .page-navigation-arrow:focus:active,
  252. .overview-components-light .app-folder-dialog .icon-button:focus:active,
  253. .overview-components-light #dash .show-apps:checked .overview-icon:hover {
  254. background-color: rgba(230, 230, 230, 0.3);
  255. }
  256. /*
  257. * `.overview-components-dark`
  258. */
  259. .overview-components-dark .search-entry {
  260. color: white;
  261. background-color: rgba(100, 100, 100, 0.35);
  262. border-color: transparent;
  263. box-shadow: none;
  264. }
  265. .overview-components-dark .search-entry .search-entry-icon {
  266. color: rgba(255, 255, 255, 0.65);
  267. }
  268. .overview-components-dark .overview-tile,
  269. .overview-components-dark .overview-icon,
  270. .overview-components-dark .list-search-result,
  271. .overview-components-dark .search-provider-icon,
  272. /* prevents the extension from interfering with Just Perfection */
  273. .overview-components-dark.just-perfection .search-section-content,
  274. /* remove the rectangular background from the dash */
  275. .overview-components-dark #dash .overview-tile {
  276. background-color: transparent;
  277. }
  278. .overview-components-dark .workspace-thumbnail,
  279. .overview-components-dark .search-section-content,
  280. .overview-components-dark .overview-tile.app-folder,
  281. .overview-components-dark .page-navigation-arrow,
  282. .overview-components-dark .app-folder-dialog .icon-button,
  283. /* this shouldn't apply to Dash to Dock */
  284. .overview-components-dark StBoxLayout>StWidget>#dash>.dash-background {
  285. background-color: rgba(100, 100, 100, 0.35);
  286. }
  287. .overview-components-dark .overview-tile:hover,
  288. .overview-components-dark .overview-tile:focus,
  289. .overview-components-dark .overview-tile:selected,
  290. .overview-components-dark .overview-tile:highlighted,
  291. .overview-components-dark .list-search-result:hover,
  292. .overview-components-dark .list-search-result:focus,
  293. .overview-components-dark .list-search-result:selected,
  294. .overview-components-dark .list-search-result:highlighted,
  295. .overview-components-dark .search-provider-icon:hover,
  296. .overview-components-dark .search-provider-icon:focus,
  297. .overview-components-dark .page-navigation-arrow:hover,
  298. .overview-components-dark .page-navigation-arrow:focus,
  299. .overview-components-dark .app-folder-dialog .icon-button:hover,
  300. .overview-components-dark .app-folder-dialog .icon-button:focus,
  301. .overview-components-dark #dash .overview-tile:hover .overview-icon,
  302. .overview-components-dark #dash .overview-tile:focus .overview-icon,
  303. .overview-components-dark #dash .show-apps:hover .overview-icon,
  304. .overview-components-dark #dash .show-apps:focus .overview-icon {
  305. background-color: rgba(120, 120, 120, 0.35);
  306. }
  307. .overview-components-dark .overview-tile:active,
  308. .overview-components-dark .overview-tile:focus:hover,
  309. .overview-components-dark .overview-tile:drop,
  310. .overview-components-dark .overview-tile:selected:hover,
  311. .overview-components-dark .overview-tile:highlighted:hover,
  312. .overview-components-dark .list-search-result:active,
  313. .overview-components-dark .list-search-result:focus:hover,
  314. .overview-components-dark .list-search-result:selected:hover,
  315. .overview-components-dark .list-search-result:highlighted:hover,
  316. .overview-components-dark .search-provider-icon:active,
  317. .overview-components-dark .search-provider-icon:focus:hover,
  318. .overview-components-dark .page-navigation-arrow:active,
  319. .overview-components-dark .page-navigation-arrow:focus:hover,
  320. .overview-components-dark .app-folder-dialog .icon-button:active,
  321. .overview-components-dark .app-folder-dialog .icon-button:focus:hover,
  322. .overview-components-dark #dash .overview-tile:active .overview-icon,
  323. .overview-components-dark #dash .overview-tile:focus:hover .overview-icon,
  324. .overview-components-dark #dash .overview-tile:drop .overview-icon,
  325. .overview-components-dark #dash .show-apps:checked .overview-icon {
  326. background-color: rgba(120, 120, 120, 0.4);
  327. }
  328. .overview-components-dark .overview-tile:focus:active,
  329. .overview-components-dark .overview-tile:selected:active,
  330. .overview-components-dark .overview-tile:highlighted:active,
  331. .overview-components-dark .list-search-result:focus:active,
  332. .overview-components-dark .list-search-result:selected:active,
  333. .overview-components-dark .list-search-result:highlighted:active,
  334. .overview-components-dark .search-provider-icon:focus:active,
  335. .overview-components-dark .page-navigation-arrow:focus:active,
  336. .overview-components-dark .app-folder-dialog .icon-button:focus:active,
  337. .overview-components-dark #dash .show-apps:checked .overview-icon:hover {
  338. background-color: rgba(120, 120, 120, 0.45);
  339. }
  340. /*** APPFOLDER DIALOG ***/
  341. /*
  342. * `.appfolder-dialogs-transparent`
  343. */
  344. .appfolder-dialogs-transparent {
  345. background-color: rgba(0, 0, 0, 0);
  346. border: none;
  347. box-shadow: none;
  348. }
  349. .appfolder-dialogs-transparent .folder-name-entry {
  350. color: white;
  351. background-color: rgba(0, 0, 0, 0);
  352. border: 0;
  353. box-shadow: none;
  354. }
  355. /*
  356. * `.appfolder-dialogs-light`
  357. */
  358. .appfolder-dialogs-light {
  359. background-color: rgba(200, 200, 200, 0.2);
  360. border: none;
  361. box-shadow: none;
  362. }
  363. .appfolder-dialogs-light .folder-name-entry {
  364. color: white;
  365. background-color: rgba(200, 200, 200, 0.2);
  366. border: 0;
  367. box-shadow: none;
  368. }
  369. /*
  370. * `.appfolder-dialogs-dark`
  371. */
  372. .appfolder-dialogs-dark {
  373. background-color: rgba(100, 100, 100, 0.35);
  374. border: none;
  375. box-shadow: none;
  376. }
  377. .appfolder-dialogs-dark .folder-name-entry {
  378. color: white;
  379. background-color: rgba(100, 100, 100, 0.35);
  380. border: 0;
  381. box-shadow: none;
  382. }
  383. /*** PANEL LIGHT TEXT ***/
  384. /*
  385. * `.panel-light-text`, adapted from gnome-shell-light.css
  386. */
  387. #panel.panel-light-text .panel-button,
  388. #panel.panel-light-text .panel-button.clock-display,
  389. #panel.panel-light-text .netSpeedLabel {
  390. color: #f6f5f4;
  391. box-shadow: none;
  392. }
  393. #panel.panel-light-text .panel-button:active,
  394. #panel.panel-light-text .panel-button:focus,
  395. #panel.panel-light-text .panel-button:checked,
  396. #panel.panel-light-text .panel-button.clock-display:active .clock,
  397. #panel.panel-light-text .panel-button.clock-display:focus .clock,
  398. #panel.panel-light-text .panel-button.clock-display:checked .clock {
  399. box-shadow: inset 0 0 0 100px rgba(246, 245, 244, 0.25);
  400. }
  401. #panel.panel-light-text .panel-button:active:hover,
  402. #panel.panel-light-text .panel-button:focus:hover,
  403. #panel.panel-light-text .panel-button:checked:hover,
  404. #panel.panel-light-text .panel-button.clock-display:active:hover,
  405. #panel.panel-light-text .panel-button.clock-display:focus:hover,
  406. #panel.panel-light-text .panel-button.clock-display:checked:hover,
  407. #panel.panel-light-text .panel-button.clock-display:active .clock:hover,
  408. #panel.panel-light-text .panel-button.clock-display:focus .clock:hover,
  409. #panel.panel-light-text .panel-button.clock-display:checked .clock:hover {
  410. box-shadow: inset 0 0 0 100px rgba(246, 245, 244, 0.35);
  411. }
  412. #panel.panel-light-text .panel-button:hover,
  413. #panel.panel-light-text .panel-button.clock-display:hover,
  414. #panel.panel-light-text .panel-button.clock-display:hover .clock {
  415. box-shadow: inset 0 0 0 100px rgba(246, 245, 244, 0.2);
  416. }
  417. #panel.panel-light-text .panel-button#panelActivities .workspace-dot {
  418. background-color: #f6f5f4;
  419. }
  420. #panel.panel-light-text .panel-button.clock-display:active,
  421. #panel.panel-light-text .panel-button.clock-display:focus,
  422. #panel.panel-light-text .panel-button.clock-display:checked,
  423. #panel.panel-light-text .panel-button.clock-display:hover {
  424. box-shadow: none !important;
  425. }
  426. #panel.panel-light-text .panel-button.screen-recording-indicator {
  427. color: #f6f5f4;
  428. box-shadow: inset 0 0 0 100px rgba(192, 28, 40, 0.8);
  429. }
  430. #panel.panel-light-text .panel-button.screen-recording-indicator:active,
  431. #panel.panel-light-text .panel-button.screen-recording-indicator:focus,
  432. #panel.panel-light-text .panel-button.screen-recording-indicator:checked {
  433. box-shadow: inset 0 0 0 100px #c01c28;
  434. }
  435. #panel.panel-light-text .panel-button.screen-recording-indicator:active:hover,
  436. #panel.panel-light-text .panel-button.screen-recording-indicator:focus:hover,
  437. #panel.panel-light-text .panel-button.screen-recording-indicator:checked:hover {
  438. box-shadow: inset 0 0 0 100px rgba(192, 28, 40, 0.95);
  439. }
  440. #panel.panel-light-text .panel-button.screen-recording-indicator:hover {
  441. box-shadow: inset 0 0 0 100px rgba(192, 28, 40, 0.9);
  442. }
  443. #panel.panel-light-text .panel-button.screen-sharing-indicator {
  444. color: #282828;
  445. box-shadow: inset 0 0 0 100px rgba(255, 120, 0, 0.8);
  446. }
  447. #panel.panel-light-text .panel-button.screen-sharing-indicator:active,
  448. #panel.panel-light-text .panel-button.screen-sharing-indicator:focus,
  449. #panel.panel-light-text .panel-button.screen-sharing-indicator:checked {
  450. box-shadow: inset 0 0 0 100px #ff7800;
  451. }
  452. #panel.panel-light-text .panel-button.screen-sharing-indicator:active:hover,
  453. #panel.panel-light-text .panel-button.screen-sharing-indicator:focus:hover,
  454. #panel.panel-light-text .panel-button.screen-sharing-indicator:checked:hover {
  455. box-shadow: inset 0 0 0 100px rgba(255, 120, 0, 0.95);
  456. }
  457. #panel.panel-light-text .panel-button.screen-sharing-indicator:hover {
  458. box-shadow: inset 0 0 0 100px rgba(255, 120, 0, 0.9);
  459. }