stylesheet.css 21 KB

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