cinnamon.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. /* ###################################################################
  2. * Section common with Gnome Shell
  3. * ... contains a few cinnamon specific styles (rare occurrences)
  4. * ###################################################################*/
  5. .cinnamon-link {
  6. color: #3281ea;
  7. }
  8. .cinnamon-link:hover {
  9. color: #3281ea;
  10. }
  11. .label-shadow {
  12. color: transparent;
  13. }
  14. StScrollBar {
  15. padding: 0;
  16. }
  17. StScrollView.vfade {
  18. -st-vfade-offset: 32px;
  19. }
  20. StScrollView.hfade {
  21. -st-hfade-offset: 32px;
  22. }
  23. StScrollView StScrollBar {
  24. min-width: 16px;
  25. min-height: 6px;
  26. }
  27. StScrollBar StBin#trough {
  28. margin: 6px;
  29. border-radius: 100px;
  30. background-color: rgba(255, 255, 255, 0.06);
  31. }
  32. StScrollBar StButton#vhandle {
  33. border-radius: 100px;
  34. background-color: rgba(255, 255, 255, 0.5);
  35. margin: 6px;
  36. }
  37. StScrollBar StButton#hhandle {
  38. border-radius: 100px;
  39. background-color: rgba(255, 255, 255, 0.5);
  40. margin: 6px;
  41. }
  42. StScrollBar StButton#hhandle:hover,
  43. StScrollBar StButton#vhandle:hover {
  44. background-color: rgba(255, 255, 255, 0.7);
  45. }
  46. StScrollBar StButton#hhandle:active,
  47. StScrollBar StButton#vhandle:active {
  48. background-color: rgba(255, 255, 255, 0.9);
  49. }
  50. .separator {
  51. background: rgba(255, 255, 255, 0.12);
  52. height: 1em;
  53. }
  54. .slider {
  55. height: 20px;
  56. color: white;
  57. -slider-height: 2px;
  58. -slider-background-color: rgba(255, 255, 255, 0.1);
  59. -slider-border-color: transparent;
  60. -slider-active-background-color: #408aeb;
  61. -slider-active-border-color: transparent;
  62. -slider-border-width: 0;
  63. -slider-handle-radius: 7px;
  64. -slider-handle-border-width: 0;
  65. -slider-handle-border-color: rgba(255, 255, 255, 0.12);
  66. -barlevel-height: 2px;
  67. -barlevel-background-color: rgba(255, 255, 255, 0.1);
  68. -barlevel-border-color: transparent;
  69. -barlevel-active-background-color: #408aeb;
  70. -barlevel-active-border-color: transparent;
  71. -barlevel-overdrive-color: #FF5252;
  72. -barlevel-overdrive-border-color: transparent;
  73. -barlevel-overdrive-separator-width: 2px;
  74. -barlevel-border-width: 0;
  75. }
  76. #Tooltip {
  77. margin: 2px;
  78. padding: 4px 12px;
  79. background-color: rgba(0, 0, 0, 0.85);
  80. color: rgba(255, 255, 255, 0.85);
  81. font-weight: normal;
  82. text-align: center;
  83. border-radius: 12px;
  84. }
  85. /* ===================================================================
  86. * Shared button properties
  87. * ===================================================================*/
  88. .notification-button,
  89. .notification-icon-button,
  90. .modal-dialog-button,
  91. .sound-player-overlay StButton {
  92. color: rgba(255, 255, 255, 0.7);
  93. background-color: transparent;
  94. }
  95. .notification-button:hover,
  96. .notification-icon-button:hover,
  97. .modal-dialog-button:hover,
  98. .sound-player-overlay StButton:hover {
  99. background-color: #3281ea;
  100. color: rgba(255, 255, 255, 0.9);
  101. }
  102. .notification-button:focus,
  103. .notification-icon-button:focus,
  104. .modal-dialog-button:focus,
  105. .sound-player-overlay StButton:focus {
  106. background-color: transparent;
  107. color: rgba(255, 255, 255, 0.7);
  108. }
  109. .notification-button:active,
  110. .notification-icon-button:active,
  111. .modal-dialog-button:active,
  112. .modal-dialog-button:pressed,
  113. .sound-player-overlay StButton:active {
  114. background-color: rgba(255, 255, 255, 0.1);
  115. color: rgba(255, 255, 255, 0.9);
  116. }
  117. /* ===================================================================
  118. * PopupMenu (popupMenu.js)
  119. * ===================================================================*/
  120. /* .popup-menu-boxpointer and .popup-menu are kept for compatibility
  121. with cinnamon version under 3.2. Use .menu in version 3.2 and above */
  122. .popup-menu-boxpointer {
  123. -arrow-border-radius: 12px;
  124. -arrow-background-color: rgba(32, 32, 32, 0.95);
  125. -arrow-border-width: 2px;
  126. -arrow-border-color: #a5a5a5;
  127. -arrow-base: 24px;
  128. -arrow-rise: 11px;
  129. }
  130. .popup-menu {
  131. min-width: 15em;
  132. color: rgba(255, 255, 255, 0.9);
  133. background: none;
  134. }
  135. .menu {
  136. min-width: 15em;
  137. color: rgba(255, 255, 255, 0.9);
  138. background-color: rgba(32, 32, 32, 0.95);
  139. border-radius: 12px;
  140. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345);
  141. margin: 6px;
  142. padding: 4px 0;
  143. }
  144. .popup-menu-arrow {
  145. icon-size: 16px;
  146. }
  147. .popup-submenu-menu-item:open {
  148. background-color: #eaeaea;
  149. color: rgba(0, 0, 0, 0.75);
  150. margin: 0 4px;
  151. border-radius: 12px 12px 0 0;
  152. }
  153. .popup-submenu-menu-item:open:hover {
  154. color: rgba(0, 0, 0, 0.85);
  155. background-color: #eaeaea;
  156. /* background-color: rgba(255, 255, 255, 0.95); */
  157. }
  158. .popup-sub-menu {
  159. margin: 0 4px;
  160. color: rgba(0, 0, 0, 0.75);
  161. background-color: rgba(255, 255, 255, 0.95);
  162. border-radius: 0 0 12px 12px;
  163. border: none;
  164. box-shadow: none;
  165. background-image: none;
  166. }
  167. .popup-sub-menu .popup-menu-item {
  168. margin: 0;
  169. border-radius: 12px;
  170. color: rgba(0, 0, 0, 0.75);
  171. background-image: none;
  172. }
  173. .popup-sub-menu .popup-menu-item:hover {
  174. color: rgba(0, 0, 0, 0.85);
  175. /* background-color: #3281ea; */
  176. background-color: rgba(255, 255, 255, 0.95);
  177. }
  178. .popup-sub-menu .popup-menu-item:active {
  179. color: rgba(0, 0, 0, 0.85);
  180. background-color: rgba(0, 0, 0, 0.2);
  181. }
  182. .popup-sub-menu .popup-menu-item.selected:active {
  183. color: rgba(0, 0, 0, 0.75);
  184. }
  185. .popup-sub-menu .popup-menu-item:not(:first-child):last-child {
  186. border-radius: 0 0 12px 12px;
  187. }
  188. .popup-sub-menu .popup-menu-item:ltr {
  189. padding-right: 1.75em;
  190. }
  191. .popup-sub-menu .popup-menu-item:rtl {
  192. padding-left: 1.75em;
  193. }
  194. .popup-sub-menu StScrollBar {
  195. padding: 4px;
  196. }
  197. .popup-sub-menu StScrollBar StBin#trough {
  198. border-width: 0px;
  199. }
  200. .popup-sub-menu StScrollBar StBin#vhandle {
  201. background-color: #3281ea;
  202. border-width: 0px;
  203. }
  204. .popup-combo-menu {
  205. background-color: rgba(0, 0, 0, 0.9);
  206. padding: 1em 0em;
  207. color: rgba(255, 255, 255, 0.9);
  208. border-radius: 12px;
  209. }
  210. /* The remaining popup-menu sizing is all done in ems, so that if you
  211. * override .popup-menu.font-size, everything else will scale with it.
  212. */
  213. .popup-menu-content {
  214. padding: 4px 0;
  215. }
  216. .popup-menu-item {
  217. spacing: 12px;
  218. margin: 0 4px;
  219. padding: 6px;
  220. color: rgba(255, 255, 255);
  221. transition-duration: 100ms;
  222. /* border-radius: 100px; */
  223. border-radius: 5px;
  224. background-image: none;
  225. }
  226. .popup-menu-item:active {
  227. /* background-color: rgba(255, 255, 255, 0.1); */
  228. background-color: #3281ea;
  229. color: rgba(255, 255, 255);
  230. transition-duration: 150ms;
  231. }
  232. .popup-menu-item:insensitive {
  233. color: rgba(255, 255, 255, 0.5);
  234. }
  235. .popup-combobox-item {
  236. spacing: 1em;
  237. }
  238. .popup-separator-menu-item {
  239. background: none;
  240. border: none;
  241. padding: 0 0;
  242. margin: 0 0;
  243. height: 0;
  244. }
  245. .popup-alternating-menu-item:alternate {
  246. font-weight: bold;
  247. }
  248. .popup-slider-menu-item {
  249. height: 20px;
  250. color: white;
  251. -slider-height: 2px;
  252. -slider-background-color: rgba(255, 255, 255, 0.1);
  253. -slider-border-color: transparent;
  254. -slider-active-background-color: #408aeb;
  255. -slider-active-border-color: transparent;
  256. -slider-border-width: 0;
  257. -slider-handle-radius: 7px;
  258. -slider-handle-border-width: 0;
  259. -slider-handle-border-color: rgba(255, 255, 255, 0.12);
  260. -barlevel-height: 2px;
  261. -barlevel-background-color: rgba(255, 255, 255, 0.1);
  262. -barlevel-border-color: transparent;
  263. -barlevel-active-background-color: #408aeb;
  264. -barlevel-active-border-color: transparent;
  265. -barlevel-overdrive-color: #FF5252;
  266. -barlevel-overdrive-border-color: transparent;
  267. -barlevel-overdrive-separator-width: 2px;
  268. -barlevel-border-width: 0;
  269. }
  270. .popup-device-menu-item {
  271. spacing: 0.5em;
  272. }
  273. .popup-inactive-menu-item {
  274. color: rgba(255, 255, 255, 0.9);
  275. }
  276. .popup-inactive-menu-item:insensitive {
  277. color: rgba(255, 255, 255, 0.5);
  278. }
  279. .popup-subtitle-menu-item {
  280. font-weight: bold;
  281. }
  282. .popup-menu-icon {
  283. icon-size: 1.2307692308em;
  284. }
  285. /* Switches (to be used in menus) */
  286. .toggle-switch {
  287. width: 40px;
  288. height: 20px;
  289. background-size: contain;
  290. background-image: url("assets/toggle-off.svg");
  291. }
  292. .toggle-switch-us {
  293. background-image: url("assets/toggle-off.svg");
  294. }
  295. .toggle-switch-us:checked {
  296. background-image: url("assets/toggle-on.svg");
  297. }
  298. .toggle-switch-intl {
  299. background-image: url("assets/toggle-off.svg");
  300. }
  301. .toggle-switch-intl:checked {
  302. background-image: url("assets/toggle-on.svg");
  303. }
  304. .nm-menu-item-icons {
  305. spacing: 0.5em;
  306. }
  307. /* ===================================================================
  308. * Panel (panel.js)
  309. * ===================================================================*/
  310. /* 主面板 这里不能有背景色 才能实现 Dock 效果 */
  311. #panel {
  312. /* background-color: rgba(0, 0, 0, 0.6); */
  313. transition-duration: 250ms;
  314. font-weight: bold;
  315. /* height: 34px; */
  316. color: #dedede;
  317. /* width: 32px; */
  318. box-shadow: 0 0 transparent;
  319. }
  320. /* #panel:highlight {
  321. background-color: rgba(0, 0, 0, 0.6);
  322. } */
  323. /* .panel-dummy:entered {
  324. background-color: rgba(0, 0, 0, 0.6);
  325. }
  326. .panel-dummy:entered {
  327. background-color: rgba(0, 0, 0, 0.6);
  328. } */
  329. .panelLeft {
  330. spacing: 2px;
  331. }
  332. .panelCenter {
  333. spacing: 2px;
  334. }
  335. .panel-top {
  336. background-color: rgba(0, 0, 0, 0.9);
  337. /* background-gradient-direction: vertical;
  338. background-gradient-start: rgba(0, 0, 0, 0.7);
  339. background-gradient-end: rgba(0, 0, 0, 0.5);
  340. border-bottom: 1px solid #000; */
  341. }
  342. .panel-left .panelCenter,
  343. .panel-right .panelCenter,
  344. .panel-bottom .panelCenter {
  345. background-color: rgba(0, 0, 0, 0.8);
  346. }
  347. .panel-bottom .panelCenter {
  348. border-radius: 5px 5px 5px 5px;
  349. }
  350. /* 左边面板 */
  351. .panel-left .panelCenter {
  352. border-radius: 0 5px 5px 0;
  353. padding: 5px 0 0 0;
  354. }
  355. /* 右边面板 */
  356. .panel-right .panelCenter {
  357. border-radius: 5px 0px 0px 5px;
  358. padding: 5px 0 0 0;
  359. }
  360. .panelLeft:dnd {
  361. background-color: rgba(0, 0, 0, 0.6);
  362. }
  363. .panelCenter:dnd {
  364. background-color: rgba(0, 0, 0, 0.6);
  365. }
  366. .panelRight:dnd {
  367. background-color: rgba(0, 0, 0, 0.6);
  368. }
  369. .panelLeft:ltr {
  370. padding-right: 4px;
  371. }
  372. .panelLeft:rtl {
  373. padding-left: 4px;
  374. }
  375. .panelLeft.vertical:ltr {
  376. padding-right: 0px;
  377. }
  378. .panelLeft.vertical:rtl {
  379. padding-left: 0px;
  380. }
  381. .panelRight:ltr {
  382. padding-left: 0px;
  383. spacing: 0px;
  384. }
  385. .panelRight:rtl {
  386. padding-right: 0px;
  387. spacing: 0px;
  388. }
  389. .panelLeft.vertical {
  390. padding: 0px;
  391. }
  392. .panelRight.vertical {
  393. padding: 0px;
  394. }
  395. .panelCenter.vertical {
  396. padding-left: 0px;
  397. padding-right: 0px;
  398. }
  399. .panelLeft.vertical:dnd {}
  400. .panelCenter.vertical:dnd {}
  401. .panelRight.vertical:dnd {}
  402. .panel-top {
  403. height: 2.5em;
  404. background-color: rgba(0, 0, 0, 0.6);
  405. }
  406. .panel-bottom {
  407. height: 2.5em;
  408. }
  409. .panel-left {
  410. width: 2.5em;
  411. }
  412. .panel-right {
  413. width: 2.5em;
  414. }
  415. .panel-status-button {
  416. border-width: 0;
  417. -natural-hpadding: 3px;
  418. -minimum-hpadding: 3px;
  419. font-weight: bold;
  420. color: rgba(200, 200, 200, 1);
  421. height: 22px;
  422. }
  423. .panel-status-button:hover {
  424. color: #D9D9D9;
  425. }
  426. .system-status-icon {
  427. spacing: 0px;
  428. margin: 0px;
  429. icon-size: 1.45em;
  430. padding: 0 3px;
  431. }
  432. .system-status-icon.warning {
  433. color: #e5e887;
  434. }
  435. .system-status-icon.error {
  436. color: #fb5858;
  437. }
  438. .systray {
  439. padding-left: 2px;
  440. padding-right: 2px;
  441. }
  442. .systray>.applet-box {}
  443. .systray:hover {
  444. padding-top: 0px;
  445. padding-left: 1px;
  446. padding-right: 1px;
  447. padding-bottom: 0px;
  448. border-style: solid;
  449. border: 1px;
  450. border-color: rgba(60, 60, 60, 6);
  451. border-radius: 7px 7px 7px 7px;
  452. background-color: #3281ea;
  453. box-shadow: inset 1px 0px 0px 0px rgba(217, 217, 217, 0.9);
  454. color: #fff;
  455. text-shadow: 2px 2px 2px #000000;
  456. transition-duration: 30;
  457. }
  458. .panel-left .systray,
  459. .panel-right .systray {
  460. padding-top: 1px;
  461. padding-left: 0px;
  462. padding-right: 0px;
  463. padding-bottom: 1px;
  464. }
  465. .panel-left .systray:hover,
  466. .panel-right .systray:hover {
  467. padding-top: 0px;
  468. padding-left: 1px;
  469. padding-right: 1px;
  470. padding-bottom: 0px;
  471. border-style: solid;
  472. border: 1px;
  473. border-color: rgba(60, 60, 60, 6);
  474. border-radius: 7px 7px 7px 7px;
  475. background-color: #3281ea;
  476. color: #00ff00;
  477. text-shadow: 2px 2px 2px #000000;
  478. transition-duration: 0;
  479. }
  480. .panel-corner {
  481. -panel-corner-radius: 0;
  482. -panel-corner-background-color: rgba(0, 0, 0, 0.6);
  483. -panel-corner-border-width: 0;
  484. -panel-corner-border-color: transparent;
  485. }
  486. .panel-corner:active,
  487. .panel-corner:overview,
  488. .panel-corner:focus {
  489. -panel-corner-inner-border-color: rgba(255, 255, 255, 0.85);
  490. }
  491. .panel-button #appMenuIcon {
  492. app-icon-bottom-clip: 1px;
  493. }
  494. .panel-button:active #appMenuIcon,
  495. .panel-button:checked #appMenuIcon,
  496. .panel-button:focus #appMenuIcon {
  497. app-icon-bottom-clip: 2px;
  498. }
  499. .panel-button {
  500. -natural-hpadding: 6px;
  501. -minimum-hpadding: 2px;
  502. font-weight: bold;
  503. color: rgba(200, 200, 200, 1);
  504. transition-duration: 0;
  505. }
  506. .panel-button:hover {
  507. color: #D9D9D9;
  508. }
  509. .panel-button:active,
  510. .panel-button:overview,
  511. .panel-button:focus {
  512. background-color: rgba(255, 255, 255, 0.25);
  513. color: rgba(255, 255, 255, 0.85);
  514. text-shadow: none;
  515. box-shadow: none;
  516. }
  517. .panel-button:active>.system-status-icon,
  518. .panel-button:checked>.system-status-icon,
  519. .panel-button:focus>.system-status-icon {
  520. icon-shadow: none;
  521. }
  522. .popup-menu-item-dot {}
  523. .panel-menu {
  524. -boxpointer-gap: 4px;
  525. margin-bottom: 1.75em;
  526. }
  527. /* ===================================================================
  528. * Overview
  529. * ===================================================================*/
  530. #overview {
  531. spacing: 24px;
  532. }
  533. .workspace-controls {
  534. visible-height: 32px;
  535. /* Amount visible before hovering */
  536. }
  537. .workspace-thumbnails-background {
  538. border-radius: 12px;
  539. }
  540. .workspace-thumbnails-background:rtl {
  541. border-radius: 12px;
  542. }
  543. .workspace-thumbnails {
  544. visible-width: 32px;
  545. spacing: 12px;
  546. padding: 16px;
  547. border-radius: 12px;
  548. margin: 6px;
  549. }
  550. .workspace-add-button {
  551. background-image: url("assets/more-results-dark.svg");
  552. height: 42px;
  553. width: 42px;
  554. padding: 0;
  555. transition-duration: 300;
  556. }
  557. .workspace-add-button:hover {
  558. background-image: url("assets/more-results-dark.svg");
  559. transition-duration: 300;
  560. }
  561. .workspace-close-button {
  562. background-image: url("assets/window-close.svg");
  563. height: 34px;
  564. width: 34px;
  565. -cinnamon-close-overlap: 20px;
  566. }
  567. .workspace-close-button:hover {
  568. background-image: url("assets/window-close-hover.svg");
  569. }
  570. .workspace-close-button:active {
  571. background-image: url("assets/window-close-active.svg");
  572. }
  573. .workspace-thumbnail-indicator {
  574. border: 2px solid #3281ea;
  575. padding: 6px;
  576. border-radius: 3px;
  577. }
  578. .window-caption {
  579. spacing: 25px;
  580. color: rgba(255, 255, 255, 0.85);
  581. background-color: rgba(0, 0, 0, 0.6);
  582. border-radius: 12px;
  583. padding: 4px 8px;
  584. border: none;
  585. font-size: 1em;
  586. font-weight: normal;
  587. -cinnamon-caption-spacing: 8px;
  588. max-width: 20em;
  589. }
  590. .window-caption:focus {
  591. color: rgba(255, 255, 255, 0.85);
  592. }
  593. .window-border {
  594. border: 4px solid rgba(255, 255, 255, 0.3);
  595. border-radius: 5px;
  596. box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  597. }
  598. .window-close {
  599. transition-duration: 0ms;
  600. height: 42px;
  601. width: 42px;
  602. -cinnamon-close-overlap: 20px;
  603. border: none;
  604. border-image: none;
  605. box-shadow: none;
  606. padding: 0;
  607. margin: 0;
  608. color: transparent;
  609. background-color: transparent;
  610. background-image: url("assets/window-close.svg");
  611. }
  612. .window-close:hover {
  613. height: 42px;
  614. width: 42px;
  615. border: none;
  616. border-image: none;
  617. box-shadow: none;
  618. padding: 0;
  619. margin: 0;
  620. color: transparent;
  621. background-color: transparent;
  622. background-image: url("assets/window-close-hover.svg");
  623. }
  624. .window-close:active {
  625. height: 42px;
  626. width: 42px;
  627. border: none;
  628. border-image: none;
  629. box-shadow: none;
  630. padding: 0;
  631. margin: 0;
  632. color: transparent;
  633. background-color: transparent;
  634. background-image: url("assets/window-close-active.svg");
  635. }
  636. .window-close-area {
  637. background-size: 100px;
  638. background-color: transparent;
  639. border-radius: 12px;
  640. height: 120px;
  641. width: 400px;
  642. }
  643. .overview-icon {
  644. padding: 10px 8px 5px 8px;
  645. spacing: 6px;
  646. }
  647. .overview-icon>StBoxLayout {
  648. spacing: 6px;
  649. }
  650. .overview-empty-placeholder {
  651. color: rgba(255, 255, 255, 0.85);
  652. font-size: 2em;
  653. }
  654. .expo-background {
  655. color: rgba(255, 255, 255, 0.85);
  656. background-color: rgba(255, 255, 255, 0.13);
  657. border: none;
  658. }
  659. .workspace-overview-background-shade {
  660. background-color: rgba(0, 0, 0, 0.3);
  661. }
  662. .expo-workspace-thumbnail-frame {
  663. border: 4px solid rgba(255, 255, 255, 0.3);
  664. border-radius: 5px;
  665. }
  666. .expo-workspace-thumbnail-frame#active {
  667. border: 4px solid #3281ea;
  668. border-radius: 5px;
  669. }
  670. #overview StScrollBar StBin#trough {
  671. background-color: rgba(255, 255, 255, 0.15);
  672. }
  673. #overview StScrollBar StButton#vhandle,
  674. #overview StScrollBar StButton#hhandle {
  675. background-color: rgba(255, 255, 255, 0.5);
  676. }
  677. #overview StScrollBar StButton#vhandle:hover,
  678. #overview StScrollBar StButton#hhandle:hover {
  679. background-color: #3281ea;
  680. }
  681. #overview StScrollBar StButton#vhandle:active,
  682. #overview StScrollBar StButton#hhandle:active {
  683. background-color: rgba(255, 255, 255, 0.85);
  684. }
  685. .workspace-thumbnails-background,
  686. .workspace-thumbnails-background:rtl,
  687. .workspace-thumbnails {
  688. color: rgba(255, 255, 255, 0.85);
  689. background-color: rgba(255, 255, 255, 0.13);
  690. border: none;
  691. }
  692. /* ===================================================================
  693. * Looking Glass
  694. * ===================================================================*/
  695. #LookingGlassDialog {
  696. background-color: rgba(0, 0, 0, 0.6);
  697. spacing: 4px;
  698. padding: 4px;
  699. border-radius: 5px;
  700. color: rgba(255, 255, 255, 0.9);
  701. }
  702. /* ===================================================================
  703. * Date applet
  704. * ===================================================================*/
  705. /*calendar-background allows the date applet calendar to be themed separately from other applet menus*/
  706. .calendar {
  707. padding: 0;
  708. margin: 0 8px;
  709. border: none;
  710. box-shadow: none;
  711. background: none;
  712. text-shadow: none;
  713. color: rgba(255, 255, 255, 0.7);
  714. spacing-rows: 0px;
  715. spacing-columns: 0px;
  716. }
  717. .calendar-month-label {
  718. height: 20px;
  719. margin: 2px;
  720. padding: 6px 6px;
  721. border-radius: 12px;
  722. color: rgba(255, 255, 255, 0.7);
  723. font-weight: bold;
  724. text-align: center;
  725. text-shadow: none;
  726. }
  727. .calendar-month-label:focus {
  728. color: rgba(255, 255, 255, 0.9);
  729. background-color: rgba(255, 255, 255, 0.06);
  730. }
  731. .calendar-change-month-back {
  732. width: 12px;
  733. height: 12px;
  734. padding: 0 2px;
  735. background-image: url("assets/calendar-arrow-left.svg");
  736. border-radius: 5px;
  737. }
  738. .calendar-change-month-back:rtl {
  739. background-image: url("assets/calendar-arrow-right.svg");
  740. }
  741. .calendar-change-month-back:hover {
  742. color: rgba(255, 255, 255, 0.9);
  743. background-color: #3281ea;
  744. }
  745. .calendar-change-month-back:active {
  746. color: rgba(255, 255, 255, 0.9);
  747. background-color: rgba(255, 255, 255, 0.06);
  748. }
  749. .calendar-change-month-forward {
  750. width: 12px;
  751. height: 12px;
  752. padding: 0 2px;
  753. background-image: url("assets/calendar-arrow-right.svg");
  754. border-radius: 5px;
  755. }
  756. .calendar-change-month-forward:rtl {
  757. background-image: url("assets/calendar-arrow-left.svg");
  758. }
  759. .calendar-change-month-forward:hover {
  760. color: rgba(255, 255, 255, 0.9);
  761. background-color: #3281ea;
  762. }
  763. .calendar-change-month-forward:active {
  764. color: rgba(255, 255, 255, 0.9);
  765. background-color: rgba(255, 255, 255, 0.06);
  766. }
  767. .datemenu-date-label {
  768. text-align: center;
  769. padding: 12px;
  770. font-size: 1.1em;
  771. color: #cccccc;
  772. font-weight: bold;
  773. }
  774. .calendar-day-base {
  775. font-size: 9pt;
  776. font-weight: 400;
  777. text-align: center;
  778. width: 28px;
  779. height: 28px;
  780. padding: 0 0;
  781. margin: 2px;
  782. border-radius: 1000px;
  783. color: rgba(255, 255, 255, 0.7);
  784. border: none;
  785. font-feature-settings: "tnum";
  786. text-shadow: none;
  787. }
  788. .calendar-day-base:hover {
  789. background-color: #3281ea;
  790. }
  791. .calendar-day-heading {
  792. width: 28px;
  793. height: 21px;
  794. margin-top: 2px;
  795. padding: 7px 0 0;
  796. border-radius: 100px;
  797. background-color: transparent;
  798. color: rgba(255, 255, 255, 0.5);
  799. font-size: 9pt;
  800. font-weight: 400;
  801. font-weight: bold;
  802. text-align: center;
  803. }
  804. .calendar-week-number {
  805. height: 1.8em;
  806. width: 2em;
  807. margin: 4px 0;
  808. border-radius: 100px;
  809. background-color: rgba(255, 255, 255, 0.03);
  810. color: rgba(255, 255, 255, 0.5);
  811. font-size: inherit;
  812. font-weight: bold;
  813. text-align: center;
  814. text-shadow: none;
  815. }
  816. /* Hack used in lieu of border-collapse - see calendar.js */
  817. .calendar-day:ltr {
  818. border-width: 0;
  819. }
  820. .calendar-day-top:ltr {
  821. border-top-width: 0;
  822. }
  823. .calendar-day-left:ltr {
  824. border-top-width: 0;
  825. }
  826. .calendar-day:rtl {
  827. border-width: 0;
  828. }
  829. .calendar-day-top:rtl {
  830. border-top-width: 0;
  831. }
  832. .calendar-day-left:rtl {
  833. border-top-width: 0;
  834. }
  835. .calendar-nonwork-day {
  836. color: rgba(255, 255, 255, 0.9);
  837. }
  838. .calendar-today {
  839. font-weight: bold !important;
  840. color: white;
  841. background-color: #3281ea;
  842. border: none;
  843. }
  844. .calendar-other-month-day {
  845. color: rgba(255, 255, 255, 0.3);
  846. opacity: 0.5;
  847. }
  848. .calendar-day-with-events {
  849. color: rgba(255, 255, 255, 0.5);
  850. background-image: url("assets/calendar-today.svg");
  851. }
  852. .calendar-day-with-events.calendar-work-day {
  853. color: rgba(255, 255, 255, 0.5);
  854. font-weight: bold;
  855. }
  856. /* ===================================================================
  857. * Notifications
  858. * ===================================================================*/
  859. #notification {
  860. font-size: 1em;
  861. width: 34em;
  862. min-height: 56px;
  863. margin: 5px;
  864. border-radius: 12px;
  865. color: rgba(255, 255, 255, 0.9);
  866. background-color: #2d2d2d;
  867. border: none;
  868. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  869. padding: 12px;
  870. spacing-rows: 10px;
  871. spacing-columns: 10px;
  872. margin-from-right-edge-of-screen: 20px;
  873. }
  874. #notification.multi-line-notification {
  875. padding-bottom: 8px;
  876. color: rgba(255, 255, 255, 0.9);
  877. }
  878. /* We use row-span = 2 for the image cell, which prevents its height preferences to be
  879. taken into account during allocation, so its height ends up being limited by the height
  880. of the content in the other rows. To avoid showing a stretched image, we set the minimum
  881. height of the table to be ICON_SIZE + IMAGE_SIZE + spacing-rows = 24 + 125 + 10 = 159 */
  882. .notification-with-image {
  883. min-height: 159px;
  884. color: rgba(255, 255, 255, 0.9);
  885. }
  886. #notification-scrollview {
  887. max-height: 10em;
  888. }
  889. #notification-scrollview>.top-shadow,
  890. #notification-scrollview>.bottom-shadow {
  891. height: 1em;
  892. }
  893. #notification-scrollview:ltr>StScrollBar {
  894. padding-left: 6px;
  895. }
  896. #notification-scrollview:rtl>StScrollBar {
  897. padding-right: 6px;
  898. }
  899. #notification-body {
  900. spacing: 5px;
  901. }
  902. #notification-actions {
  903. spacing: 10px;
  904. }
  905. .notification-button {
  906. border-radius: 12px;
  907. padding: 4px 8px 5px;
  908. }
  909. .notification-button:focus {
  910. padding: 3px 8px 4px;
  911. }
  912. .notification-icon-button {
  913. border-radius: 12px;
  914. padding: 5px;
  915. }
  916. .notification-icon-button:focus {
  917. padding: 4px;
  918. }
  919. .notification-icon-button>StIcon {
  920. icon-size: 48px;
  921. }
  922. #notification StEntry {
  923. padding: 4px;
  924. border-radius: 12px;
  925. color: rgba(255, 255, 255, 0.9);
  926. background-color: rgba(0, 0, 0, 0.6);
  927. selected-color: rgba(0, 0, 0, 0.6);
  928. transition-duration: 300;
  929. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  930. caret-color: rgba(255, 255, 255, 0.9);
  931. caret-size: 1px;
  932. }
  933. #notification StEntry:focus {
  934. color: rgba(255, 255, 255, 0.9);
  935. caret-color: rgba(255, 255, 255, 0.9);
  936. background-color: rgba(0, 0, 0, 0.6);
  937. selection-background-color: rgba(0, 0, 0, 0.6);
  938. }
  939. /* ===================================================================
  940. * Alt Tab (appSwitcher/classicSwitcher.js) 窗口切换
  941. * ===================================================================*/
  942. #altTabPopup {
  943. /* padding: 0 4px; */
  944. spacing: 16px;
  945. font-size: 0;
  946. }
  947. .switcher-list {
  948. border: 1px solid #202020;
  949. border-radius: 10px;
  950. background-color: rgba(47, 47, 47, 1);
  951. color: #ffffff;
  952. /* padding: 0 10px; */
  953. padding: 0 8px;
  954. }
  955. /* .switcher-list {
  956. background: #202020;
  957. border-radius: 12px;
  958. padding: 10px;
  959. color: rgba(255, 255, 255, 0.9);
  960. box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44);
  961. } */
  962. .switcher-list-item-container {
  963. spacing: 8px;
  964. }
  965. .thumbnail-scroll-gradient-left {
  966. border-radius: 24px;
  967. border-radius-topright: 0px;
  968. border-radius-bottomright: 0px;
  969. width: 60px;
  970. }
  971. .thumbnail-scroll-gradient-right {
  972. border-radius: 24px;
  973. border-radius-topleft: 0px;
  974. border-radius-bottomleft: 0px;
  975. width: 60px;
  976. }
  977. .switcher-list .item-box {
  978. padding: 8px;
  979. border-radius: 12px;
  980. }
  981. .switcher-list .item-box:outlined {
  982. padding: 6px;
  983. border: 4px solid rgba(255, 255, 255, 0.3);
  984. }
  985. .switcher-list .item-box:selected {
  986. /* background: rgba(255, 255, 255, 0.8); */
  987. background-color: #3281ea;
  988. }
  989. .switcher-list .thumbnail-box {
  990. padding: 2px;
  991. spacing: 4px;
  992. }
  993. .switcher-list .thumbnail {
  994. width: 256px;
  995. }
  996. .switcher-list .separator {
  997. width: 1px;
  998. }
  999. .ripple-box {
  1000. width: 104px;
  1001. height: 104px;
  1002. }
  1003. .switcher-arrow {
  1004. color: rgba(255, 255, 255, 0.9);
  1005. }
  1006. .switcher-arrow:highlighted {
  1007. color: rgba(255, 255, 255, 0.9);
  1008. }
  1009. .switcher-preview-backdrop {
  1010. background-color: rgba(0, 0, 0, 0.6);
  1011. }
  1012. /* ===================================================================
  1013. * Modal dialogs
  1014. * ===================================================================*/
  1015. .modal-dialog {
  1016. border-radius: 24px;
  1017. color: rgba(255, 255, 255, 0.9);
  1018. background-color: #202020;
  1019. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345);
  1020. padding: 24px;
  1021. }
  1022. .modal-dialog-button-box {
  1023. spacing: 3px;
  1024. }
  1025. .modal-dialog-button {
  1026. color: rgba(255, 255, 255, 0.7);
  1027. background-color: transparent;
  1028. border-color: transparent;
  1029. box-shadow: 0 0 transparent;
  1030. text-shadow: none;
  1031. icon-shadow: none;
  1032. border-radius: 12px;
  1033. padding: 12px 48px;
  1034. margin-top: 24px;
  1035. }
  1036. .modal-dialog-button:disabled {
  1037. color: rgba(255, 255, 255, 0.3);
  1038. background-color: transparent;
  1039. border-color: transparent;
  1040. box-shadow: 0 0 transparent;
  1041. text-shadow: none;
  1042. icon-shadow: none;
  1043. }
  1044. .modal-dialog-button:focus {
  1045. color: rgba(255, 255, 255, 0.85);
  1046. background-color: rgba(255, 255, 255, 0.15);
  1047. border-color: transparent;
  1048. box-shadow: 0 0 transparent;
  1049. text-shadow: none;
  1050. icon-shadow: none;
  1051. }
  1052. /* Info OSD popup */
  1053. .info-osd {
  1054. font-size: 1.2em;
  1055. border-radius: 12px;
  1056. background-color: #202020;
  1057. color: rgba(255, 255, 255, 0.9);
  1058. padding: 24px;
  1059. text-align: center;
  1060. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1061. }
  1062. .workspace-osd {
  1063. color: rgba(255, 255, 255, 0.9);
  1064. font-weight: bold;
  1065. font-size: 2.6em;
  1066. }
  1067. /* ===================================================================
  1068. * Run dialog
  1069. * ===================================================================*/
  1070. .run-dialog-label {
  1071. color: rgba(255, 255, 255, 0.9);
  1072. padding-bottom: 16px;
  1073. }
  1074. .run-dialog-error-label {
  1075. color: rgba(255, 255, 255, 0.9);
  1076. }
  1077. .run-dialog-error-box {
  1078. padding-top: 16px;
  1079. spacing: 6px;
  1080. }
  1081. .run-dialog-completion-box {
  1082. padding-left: 16px;
  1083. }
  1084. .run-dialog-entry {
  1085. font-weight: bold;
  1086. width: 23em;
  1087. color: rgba(255, 255, 255, 0.9);
  1088. selection-background-color: rgba(255, 255, 255, 0.9);
  1089. selected-color: #202020;
  1090. }
  1091. .run-dialog {
  1092. border-radius: 12px;
  1093. padding: 16px;
  1094. }
  1095. .lightbox {
  1096. background-color: rgba(0, 0, 0, 0.6);
  1097. }
  1098. /* ===================================================================
  1099. * Magnifier
  1100. * ===================================================================*/
  1101. .magnifier-zoom-region {
  1102. border-radius: 12px;
  1103. border: 4px solid rgba(255, 255, 255, 0.3);
  1104. }
  1105. .magnifier-zoom-region.full-screen {
  1106. border-width: 0px;
  1107. }
  1108. /* ===================================================================
  1109. * On screen keyboard
  1110. * ===================================================================*/
  1111. #keyboard {
  1112. background-color: rgba(0, 0, 0, 0.65);
  1113. border: none;
  1114. border-top-width: 0;
  1115. box-shadow: none;
  1116. }
  1117. .keyboard-layout {
  1118. padding: 12px;
  1119. spacing: 12px;
  1120. }
  1121. .keyboard-row {
  1122. spacing: 15px;
  1123. }
  1124. .keyboard-key {
  1125. min-height: 2em;
  1126. min-width: 2em;
  1127. font-size: 14pt;
  1128. font-weight: bold;
  1129. border-radius: 12px;
  1130. border: none;
  1131. color: rgba(255, 255, 255, 0.9);
  1132. background-color: #414141;
  1133. box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  1134. }
  1135. .keyboard-key:grayed {
  1136. background-color: rgba(0, 0, 0, 0.3);
  1137. color: rgba(255, 255, 255, 0.85);
  1138. border-color: rgba(0, 0, 0, 0.3);
  1139. }
  1140. .keyboard-key:hover {
  1141. color: rgba(255, 255, 255, 0.9);
  1142. background-color: #3281ea;
  1143. }
  1144. .keyboard-key:checked,
  1145. .keyboard-key:active {
  1146. color: rgba(255, 255, 255, 0.9);
  1147. background-color: #747474;
  1148. }
  1149. .keyboard-subkeys {
  1150. color: inherit;
  1151. -arrow-border-radius: 12px;
  1152. -arrow-background-color: rgba(0, 0, 0, 0.45);
  1153. -arrow-border-width: 0;
  1154. -arrow-border-color: transparent;
  1155. -arrow-base: 20px;
  1156. -arrow-rise: 10px;
  1157. -boxpointer-gap: 5px;
  1158. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1159. }
  1160. /* ###################################################################
  1161. * Cinnamon Specific Section
  1162. * ###################################################################*/
  1163. /* ===================================================================
  1164. * Menu (menu.js)
  1165. * ===================================================================*/
  1166. /* Main menu title */
  1167. /* menu-background allows the menu applet to be themed separately from other applet menus */
  1168. .menu-background {
  1169. padding: 12px;
  1170. }
  1171. .menu-favorites-box {
  1172. padding: 6px;
  1173. border-radius: 12px;
  1174. background-color: rgba(255, 255, 255, 0.15);
  1175. color: rgba(255, 255, 255, 0.7);
  1176. transition-duration: 300;
  1177. }
  1178. .menu-favorites-button {
  1179. padding: 6px;
  1180. }
  1181. .menu-favorites-button:hover {
  1182. color: rgba(255, 255, 255, 0.85);
  1183. background-color: #3281ea;
  1184. border-radius: 12px;
  1185. }
  1186. .menu-categories-box {
  1187. padding: 12px 32px;
  1188. }
  1189. .menu-applications-inner-box {
  1190. padding-top: 10px;
  1191. padding-left: 10px;
  1192. padding-right: 10px;
  1193. padding-bottom: 0px;
  1194. }
  1195. .menu-applications-outer-box {
  1196. padding-top: 10px;
  1197. padding-left: 10px;
  1198. padding-right: 10px;
  1199. padding-bottom: 0px;
  1200. }
  1201. .menu-application-button {
  1202. padding: 6px;
  1203. }
  1204. .menu-application-button:highlighted {
  1205. /* This style is used in menu application buttons for applications which were newly installed */
  1206. font-weight: bold;
  1207. }
  1208. .menu-application-button-selected {
  1209. padding: 6px;
  1210. background-color: rgba(255, 255, 255, 0.1);
  1211. color: rgba(255, 255, 255, 0.9);
  1212. transition-duration: 150ms;
  1213. border-radius: 100px;
  1214. }
  1215. .menu-application-button-selected:highlighted {
  1216. /* This style is used in menu application buttons for applications which were newly installed */
  1217. font-weight: bold;
  1218. }
  1219. .menu-application-button-label:ltr {
  1220. padding-left: 6px;
  1221. }
  1222. .menu-application-button-label:rtl {
  1223. padding-right: 6px;
  1224. }
  1225. .menu-category-button {
  1226. padding: 6px 12px;
  1227. }
  1228. .menu-category-button-greyed {
  1229. padding: 6px 12px;
  1230. color: rgba(255, 255, 255, 0.5);
  1231. }
  1232. .menu-category-button-greyed StIcon {
  1233. opacity: 0.5;
  1234. }
  1235. .menu-category-button-selected {
  1236. padding: 6px 12px;
  1237. background-color: rgba(255, 255, 255, 0.1);
  1238. color: rgba(255, 255, 255, 0.9);
  1239. transition-duration: 150ms;
  1240. border-radius: 100px;
  1241. }
  1242. .menu-category-button-label:ltr {
  1243. padding-left: 6px;
  1244. }
  1245. .menu-category-button-label:rtl {
  1246. padding-right: 6px;
  1247. }
  1248. /* Name and description of the currently hovered item in the menu
  1249. * This appears on the bottom right hand corner of the menu*/
  1250. .menu-selected-app-box {
  1251. padding-right: 32px;
  1252. padding-left: 28px;
  1253. text-align: right;
  1254. height: 2.2em;
  1255. }
  1256. .menu-selected-app-box:rtl {
  1257. padding-top: 12px;
  1258. height: 2.2em;
  1259. }
  1260. .menu-selected-app-title {
  1261. font-weight: bold;
  1262. }
  1263. .menu-selected-app-description {
  1264. max-width: 150px;
  1265. }
  1266. .menu-top-box {
  1267. spacing: 10px;
  1268. }
  1269. .menu-search-box:ltr {
  1270. padding-left: 32px;
  1271. }
  1272. .menu-search-box:rtl {
  1273. padding-right: 32px;
  1274. }
  1275. #menu-search-entry {
  1276. background-color: #3281ea;
  1277. padding: 4px 8px;
  1278. margin-bottom: 12px;
  1279. border-radius: 9999px;
  1280. color: rgba(0, 0, 0, 0.87);
  1281. selected-color: black;
  1282. caret-color: rgba(255, 255, 255, 0.9);
  1283. caret-size: 1px;
  1284. width: 304px;
  1285. height: 24px;
  1286. transition-duration: 300;
  1287. caret-color: rgba(0, 0, 0, 0.75);
  1288. color: rgba(0, 0, 0, 0.75);
  1289. background-color: rgba(255, 255, 255, 0.75);
  1290. border-radius: 100px;
  1291. border-color: transparent;
  1292. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  1293. }
  1294. #menu-search-entry:focus,
  1295. #menu-search-entry:hover {
  1296. background-color: #FFFFFF;
  1297. color: rgba(0, 0, 0, 0.85);
  1298. border-color: transparent;
  1299. background-color: rgba(255, 255, 255, 0.95);
  1300. border: none;
  1301. box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.55);
  1302. }
  1303. #menu-search-entry:hover {
  1304. transition-duration: 300;
  1305. }
  1306. #menu-search-entry:focus {
  1307. color: rgba(0, 0, 0, 0.87);
  1308. font-weight: bold;
  1309. transition-duration: 0;
  1310. }
  1311. .menu-search-entry-icon {
  1312. icon-size: 16px;
  1313. color: rgba(0, 0, 0, 0.75);
  1314. margin: 0 6px;
  1315. }
  1316. /* Context menu (at the moment only for favorites) */
  1317. /* ===================================================================
  1318. * Window list (windowList.js) 任务栏
  1319. * ===================================================================*/
  1320. .window-list-box {
  1321. spacing: 4px;
  1322. padding: 6px 0PX;
  1323. }
  1324. .window-list-box.vertical {
  1325. spacing: 4px;
  1326. padding: 10px 0;
  1327. }
  1328. .window-list-box.vertical #appMenuIcon {
  1329. padding-top: 4px;
  1330. }
  1331. .window-list-item-box {
  1332. color: #dedede;
  1333. background: transparent;
  1334. border-radius: 9999px;
  1335. transition-duration: 100;
  1336. spacing: 8px;
  1337. }
  1338. .window-list-item-box.top {
  1339. border-radius: 9999px;
  1340. }
  1341. .window-list-item-box.left {
  1342. border-radius: 12px;
  1343. margin: 0 4px;
  1344. }
  1345. .window-list-item-box.right {
  1346. border-radius: 12px;
  1347. margin: 0 4px;
  1348. }
  1349. .window-list-item-box.top,
  1350. .window-list-item-box.bottom {
  1351. padding: 0 8px;
  1352. border: 4px solid transparent;
  1353. }
  1354. .window-list-item-box:active,
  1355. .window-list-item-box:checked,
  1356. .window-list-item-box:focus,
  1357. .window-list-item-box:running {
  1358. background: rgba(255, 255, 255, 0.25);
  1359. color: rgba(255, 255, 255, 0.85);
  1360. }
  1361. .window-list-item-box:hover {
  1362. background-color: #3281ea;
  1363. color: rgba(255, 255, 255, 0.85);
  1364. }
  1365. .window-list-item-demands-attention {
  1366. background: #DD2C00;
  1367. }
  1368. .window-list-item-box .progress {
  1369. background: rgba(230, 230, 230, 0.25);
  1370. border-radius: 9999px;
  1371. }
  1372. .panel-top .window-list-item-box .progress {
  1373. border-radius: 9999px;
  1374. }
  1375. .panel-left .window-list-item-box .progress {
  1376. border-radius: 12px;
  1377. }
  1378. .panel-right .window-list-item-box .progress {
  1379. border-radius: 12px;
  1380. }
  1381. .window-list-preview {
  1382. background: rgba(32, 32, 32, 0.95);
  1383. color: rgba(255, 255, 255, 0.9);
  1384. border-radius: 12px;
  1385. padding: 16px;
  1386. spacing: 6px;
  1387. }
  1388. /* ===================================================================
  1389. * Grouped window list (grouped-window-list@cinnamon.org) 任务栏图标
  1390. * ===================================================================*/
  1391. .grouped-window-list-thumbnail-label {
  1392. /* padding-left: 4px; */
  1393. }
  1394. .grouped-window-list-number-label {
  1395. z-index: 99;
  1396. color: rgba(255, 255, 255, 0.9);
  1397. padding: 0;
  1398. }
  1399. .grouped-window-list-badge {
  1400. border-radius: 9999px;
  1401. background: rgba(255, 255, 255, 0.25);
  1402. }
  1403. .grouped-window-list-button-label {
  1404. /* padding-left: 4px; */
  1405. }
  1406. .grouped-window-list-thumbnail-alert {
  1407. background: #DD2C00;
  1408. }
  1409. .grouped-window-list-item-box {
  1410. color: #dedede;
  1411. background: transparent;
  1412. border-radius: 9999px;
  1413. transition-duration: 100;
  1414. spacing: 0;
  1415. }
  1416. .grouped-window-list-item-box.top {
  1417. border-radius: 9999px;
  1418. }
  1419. .grouped-window-list-item-box.left,
  1420. .grouped-window-list-item-box.right {
  1421. border-radius: 10px;
  1422. }
  1423. /* dock焦点程序图标 左右 */
  1424. .grouped-window-list-item-box.left,
  1425. .grouped-window-list-item-box.right {
  1426. border: 0;
  1427. padding: 2px 0;
  1428. }
  1429. /* dock焦点程序图标 上下 */
  1430. .grouped-window-list-item-box.top,
  1431. .grouped-window-list-item-box.bottom {
  1432. border: 0;
  1433. padding: 0 8px;
  1434. }
  1435. /* 程序指向状态 */
  1436. .grouped-window-list-item-box:checked,
  1437. .grouped-window-list-item-box:active:hover {
  1438. background: rgba(230, 230, 230, 0.1);
  1439. /* background-color: #3281ea; */
  1440. border-radius: 5px;
  1441. /* filter: contrast(1.2); */
  1442. opacity: 0.5;
  1443. /* 让元素半透明 */
  1444. color: #dedede;
  1445. }
  1446. /* 焦点程序选中状态 */
  1447. .grouped-window-list-item-box:focus {
  1448. /* background: #3281ea; */
  1449. background: rgba(230, 230, 230, 0.1);
  1450. border-radius: 5px;
  1451. color: #dedede;
  1452. }
  1453. .grouped-window-list-item-box:active:focus:hover,
  1454. .grouped-window-list-item-box:focus:hover {
  1455. background: rgba(230, 230, 230, 0.1);
  1456. /* background: #3281ea; */
  1457. color: #dedede;
  1458. }
  1459. .grouped-window-list-item-demands-attention {
  1460. background: #DD2C00;
  1461. }
  1462. .grouped-window-list-item-box .progress {
  1463. background: rgba(230, 230, 230, 0.25);
  1464. border-radius: 12px;
  1465. }
  1466. .panel-top .grouped-window-list-item-box .progress {
  1467. border-radius: 12px;
  1468. }
  1469. .panel-left .grouped-window-list-item-box .progress {
  1470. border-radius: 12px;
  1471. }
  1472. .panel-right .grouped-window-list-item-box .progress {
  1473. border-radius: 12px;
  1474. }
  1475. /* 任务栏缩略图 */
  1476. .grouped-window-list-thumbnail-menu {
  1477. background: rgba(0, 0, 0, 0.8);
  1478. /* background-color: #3281ea; */
  1479. color: #dedede;
  1480. padding: 0;
  1481. border-radius: 12px;
  1482. spacing: 4px;
  1483. margin: 6px;
  1484. }
  1485. .grouped-window-list-thumbnail-menu .item-box {
  1486. /* background: rgba(0, 0, 0, 0.6); */
  1487. background-color: #000000;
  1488. color: #dedede;
  1489. padding: 0;
  1490. border-radius: 12px;
  1491. spacing: 4px;
  1492. margin: 6px;
  1493. }
  1494. /* 指向窗口缩略图 */
  1495. .grouped-window-list-thumbnail-menu .item-box:hover {
  1496. background-color: #3281ea;
  1497. }
  1498. .grouped-window-list-thumbnail-menu .item-box:outlined {
  1499. padding: 6px;
  1500. }
  1501. .grouped-window-list-thumbnail-menu .thumbnail {
  1502. width: 256px;
  1503. }
  1504. .grouped-window-list-thumbnail-menu .separator {
  1505. width: 1px;
  1506. background: transparent;
  1507. }
  1508. /* ===================================================================
  1509. * Sound Applet (sound@cinnamon.org)
  1510. * ===================================================================*/
  1511. .sound-player StButton {
  1512. width: 18px;
  1513. height: 18px;
  1514. padding: 5px;
  1515. color: rgba(255, 255, 255, 0.9);
  1516. border-radius: 9999px;
  1517. }
  1518. .sound-player StButton:small {
  1519. width: 16px;
  1520. height: 16px;
  1521. }
  1522. .sound-player StButton:small StIcon {
  1523. icon-size: 1.2em;
  1524. }
  1525. .sound-player StButton StIcon {
  1526. icon-size: 1.5em;
  1527. }
  1528. .sound-player StButton:hover,
  1529. .sound-player StButton:active {
  1530. color: rgba(255, 255, 255, 0.9);
  1531. border-radius: 9999px;
  1532. }
  1533. .sound-player .slider {
  1534. height: 6px;
  1535. -slider-height: 6px;
  1536. -slider-background-color: rgba(0, 0, 0, 0.3);
  1537. -slider-active-background-color: #3281ea;
  1538. -slider-border-width: 0px;
  1539. -slider-handle-radius: 0px;
  1540. }
  1541. .sound-player StBoxLayout {
  1542. spacing: 0.5em;
  1543. }
  1544. .sound-player>StBoxLayout {
  1545. padding: 0 16px 8px;
  1546. }
  1547. .sound-player-overlay {
  1548. width: 300px;
  1549. padding: 12px 16px;
  1550. spacing: 0.5em;
  1551. background-color: rgba(0, 0, 0, 0.6);
  1552. color: rgba(255, 255, 255, 0.9);
  1553. }
  1554. .sound-player-overlay StButton {
  1555. border-radius: 12px;
  1556. padding: 8px;
  1557. }
  1558. .sound-player-overlay StButton>StIcon {
  1559. icon-size: 16px;
  1560. }
  1561. .sound-player-overlay StBoxLayout {
  1562. padding-top: 2px;
  1563. }
  1564. .sound-player-generic-coverart {
  1565. background: rgba(0, 0, 0, 0.2);
  1566. }
  1567. /* ===================================================================
  1568. * Spacer applet
  1569. * ===================================================================*/
  1570. .spacer-box {
  1571. border-radius: 1px;
  1572. border: 1px solid transparent;
  1573. }
  1574. .spacer-box:highlight {
  1575. background-color: rgba(255, 255, 255, 0.1);
  1576. }
  1577. .spacer-box.edit-mode {
  1578. border-radius: 1px;
  1579. border: 1px symbolic;
  1580. }
  1581. /* ===================================================================
  1582. * Workspace Switcher applet (workspaceSwitcher.js)
  1583. * ===================================================================*/
  1584. /* Controls the styling when using the "Simple buttons" option */
  1585. .panel-top .workspace-switcher,
  1586. .panel-bottom .workspace-switcher {
  1587. padding: 0 3px;
  1588. }
  1589. .panel-left .workspace-switcher,
  1590. .panel-right .workspace-switcher {
  1591. padding: 3px;
  1592. }
  1593. .workspace-button {
  1594. border-radius: 9999px;
  1595. color: #dedede;
  1596. padding: 0 8px;
  1597. transition-duration: 300;
  1598. margin: 2px;
  1599. }
  1600. .vertical .workspace-button {
  1601. padding: 4px 0;
  1602. }
  1603. .workspace-button:outlined {
  1604. background: rgba(255, 255, 255, 0.25);
  1605. color: #3281ea;
  1606. }
  1607. .workspace-button:shaded {
  1608. color: #dedede;
  1609. }
  1610. /* Controls the style when using the "Visual representation" option */
  1611. .workspace-graph {
  1612. padding: 3px;
  1613. spacing: 3px;
  1614. margin: 2px;
  1615. }
  1616. .workspace-graph .workspace {
  1617. border-radius: 4px;
  1618. background: rgba(255, 255, 255, 0.25);
  1619. }
  1620. .workspace-graph .workspace:active {
  1621. background: rgba(255, 255, 255, 0.25);
  1622. border: 1px solid #3281ea;
  1623. }
  1624. .workspace-graph .workspace .windows {
  1625. -active-window-background: rgba(128, 128, 128, 0.25);
  1626. -active-window-border: rgba(204, 204, 204, 0.25);
  1627. -inactive-window-background: rgba(230, 230, 230, 0.25);
  1628. -inactive-window-border: rgba(204, 204, 204, 0.25);
  1629. }
  1630. .workspace-graph .workspace:active .windows {
  1631. -active-window-background: rgba(128, 128, 128, 0.25);
  1632. -active-window-border: rgba(204, 204, 204, 0.25);
  1633. -inactive-window-background: rgba(230, 230, 230, 0.25);
  1634. -inactive-window-border: rgba(204, 204, 204, 0.25);
  1635. }
  1636. /* ===================================================================
  1637. * Panel Launchers Applet (panelLaunchers.js)
  1638. * ===================================================================*/
  1639. .panel-launchers {
  1640. padding-left: 7px;
  1641. spacing: 2px;
  1642. }
  1643. .panel-launchers.vertical {
  1644. padding-top: 2px;
  1645. padding-bottom: 2px;
  1646. padding-left: 0px;
  1647. padding-right: 0px;
  1648. spacing: 3px;
  1649. }
  1650. .launcher {
  1651. padding-left: 1px;
  1652. padding-right: 1px;
  1653. border-bottom-width: 1px;
  1654. transition-duration: 300;
  1655. }
  1656. .launcher .icon-box {
  1657. padding-top: 2px;
  1658. }
  1659. .panel-launchers.vertical .launcher .icon-box {
  1660. padding-top: 0;
  1661. }
  1662. .panel-launchers .launcher:hover {
  1663. border-radius: 9999px;
  1664. background: rgba(255, 255, 255, 0.25);
  1665. }
  1666. /* ===================================================================
  1667. * Overview corner
  1668. * ===================================================================*/
  1669. #overview-corner {
  1670. background-image: url("assets/overview.png");
  1671. }
  1672. #overview-corner:hover {
  1673. background-image: url("assets/overview-hover.png");
  1674. }
  1675. /* ===================================================================
  1676. * Applets (applet.js)
  1677. * ===================================================================*/
  1678. .applet-separator {
  1679. padding: 6px 4px;
  1680. }
  1681. .applet-separator-line {
  1682. width: 2px;
  1683. background: rgba(255, 255, 255, 0.25);
  1684. }
  1685. .applet-separator-line-vertical {
  1686. border: 0px solid rgba(255, 255, 255, 0.25);
  1687. border-bottom-width: 2px;
  1688. }
  1689. .applet-box {
  1690. padding-left: 4px;
  1691. padding-right: 4px;
  1692. color: #dedede;
  1693. transition-duration: 300;
  1694. }
  1695. .panel-top .applet-box,
  1696. .panel-bottom .applet-box {
  1697. spacing: 3px;
  1698. }
  1699. .applet-box:checked,
  1700. .applet-box:hover {
  1701. color: #fff;
  1702. }
  1703. .applet-box.vertical {
  1704. padding-left: 0px;
  1705. padding-right: 0px;
  1706. padding-top: 4px;
  1707. padding-bottom: 4px;
  1708. }
  1709. .applet-box:highlight {
  1710. background-color: #3281ea;
  1711. }
  1712. .applet-label {
  1713. font-weight: bold;
  1714. color: #dedede;
  1715. }
  1716. .applet-box:checked>.applet-label,
  1717. .applet-box:hover>.applet-label {
  1718. color: #fff;
  1719. }
  1720. .applet-icon {
  1721. /* symbolic icons will use system-status-icon instead */
  1722. color: #dedede;
  1723. icon-size: 16px;
  1724. }
  1725. .applet-box:checked .applet-icon,
  1726. .applet-box:hover .applet-icon {
  1727. color: #fff;
  1728. icon-shadow: #fff 0px 0px 0px;
  1729. }
  1730. /* ===================================================================
  1731. * Desklets (desklet.js)
  1732. * ===================================================================*/
  1733. .desklet {
  1734. color: #fff;
  1735. }
  1736. .desklet:highlight,
  1737. .desklet:highlight-with-borders,
  1738. .desklet:highlight-with-borders-and-header {
  1739. background-color: #3281ea;
  1740. }
  1741. .desklet-with-borders {
  1742. background-color: rgba(0, 0, 0, 0.6);
  1743. color: #dedede;
  1744. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1745. border-radius-bottomleft: 12px;
  1746. border-radius-bottomright: 12px;
  1747. border-radius-topleft: 12px;
  1748. border-radius-topright: 12px;
  1749. padding: 12px;
  1750. }
  1751. .desklet-with-borders-and-header {
  1752. background-color: rgba(0, 0, 0, 0.6);
  1753. color: #dedede;
  1754. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1755. border-radius-bottomleft: 12px;
  1756. border-radius-bottomright: 12px;
  1757. }
  1758. .desklet-header {
  1759. border-radius-topleft: 12px;
  1760. border-radius-topright: 12px;
  1761. border-bottom: 0px;
  1762. background-color: rgba(0, 0, 0, 0.6);
  1763. color: #dedede;
  1764. padding: 6px;
  1765. }
  1766. .desklet-drag-placeholder {
  1767. border-radius: 12px;
  1768. background-color: rgba(255, 255, 255, 0.25);
  1769. }
  1770. /* ===================================================================
  1771. * Clock Desklet (desklet.js)
  1772. * ===================================================================*/
  1773. .expo-workspaces-name-entry {
  1774. padding: 4px;
  1775. border-radius: 9999px;
  1776. color: rgba(255, 255, 255, 0.85);
  1777. background: rgba(0, 0, 0, 0.6);
  1778. selected-color: #fff;
  1779. caret-color: rgba(255, 255, 255, 0.85);
  1780. caret-size: 1px;
  1781. width: 250px;
  1782. height: 24px;
  1783. text-align: center;
  1784. }
  1785. .expo-workspaces-name-entry#selected {
  1786. background: rgba(0, 0, 0, 0.3);
  1787. font-weight: bold;
  1788. color: rgba(255, 255, 255, 0.85);
  1789. }
  1790. .expo-workspaces-name-entry:focus {
  1791. color: rgba(255, 255, 255, 0.85);
  1792. font-weight: bold;
  1793. transition-duration: 300;
  1794. }
  1795. /* ===================================================================
  1796. * Notification Applet
  1797. * ===================================================================*/
  1798. .notification-applet-padding {
  1799. padding: 0.5em 1em;
  1800. }
  1801. .notification-applet-container {
  1802. max-height: 100px;
  1803. }
  1804. /* Check Boxes */
  1805. .check-box CinnamonGenericContainer {
  1806. spacing: 0.2em;
  1807. }
  1808. .check-box StBin,
  1809. .check-box:focus StBin {
  1810. width: 16px;
  1811. height: 16px;
  1812. background-image: url("assets/checkbox-off.svg");
  1813. }
  1814. .check-box:checked StBin,
  1815. .check-box:focus:checked StBin {
  1816. background-image: url("assets/checkbox.svg");
  1817. }
  1818. .check-box StLabel {
  1819. font-weight: normal;
  1820. }
  1821. .radiobutton CinnamonGenericContainer {
  1822. spacing: 0.2em;
  1823. height: 18px;
  1824. padding-top: 2px;
  1825. }
  1826. .radiobutton StBin,
  1827. .radiobutton:focus StBin {
  1828. width: 16px;
  1829. height: 16px;
  1830. background-image: url("assets/menu-radio-unchecked.png");
  1831. border-radius: 15px;
  1832. }
  1833. .radiobutton:checked StBin,
  1834. .radiobutton:focus:checked StBin {
  1835. background-image: url("assets/menu-radio-checked.png");
  1836. }
  1837. .radiobutton StLabel {
  1838. padding-top: 4px;
  1839. box-shadow: none;
  1840. }
  1841. .flashspot {
  1842. background-color: white;
  1843. }
  1844. /* Media keys OSD popup */
  1845. .osd-window {
  1846. text-align: center;
  1847. font-weight: bold;
  1848. spacing: 1em;
  1849. margin: 32px;
  1850. min-width: 64px;
  1851. min-height: 64px;
  1852. }
  1853. .osd-window .level {
  1854. height: 4px;
  1855. border-radius: 2px;
  1856. background-color: rgba(50, 129, 234, 0.3);
  1857. color: rgba(255, 255, 255, 0.9);
  1858. }
  1859. .osd-window .level-bar {
  1860. background-color: #3281ea;
  1861. border-radius: 2px;
  1862. }
  1863. .tile-preview,
  1864. .tile-hud {
  1865. background-color: rgba(36, 120, 233, 0.3);
  1866. border: 1px solid #2478e9;
  1867. }
  1868. .tile-preview.snap,
  1869. .tile-hud.snap {
  1870. background-color: rgba(36, 120, 233, 0.3);
  1871. border: 1px solid #2478e9;
  1872. }
  1873. .tile-hud:top {
  1874. border-top-width: 0px;
  1875. border-radius: 0px 0px 0 0;
  1876. }
  1877. .tile-hud:bottom {
  1878. border-bottom-width: 0px;
  1879. border-radius: 0 0 0px 0px;
  1880. }
  1881. .tile-hud:left {
  1882. border-left-width: 0px;
  1883. border-radius: 0px 0 0 0px;
  1884. }
  1885. .tile-hud:right {
  1886. border-right-width: 0px;
  1887. border-radius: 0 0px 0px 0;
  1888. }
  1889. .tile-hud:top-left {
  1890. border-top-width: 0px;
  1891. border-left-width: 0px;
  1892. border-radius: 0px 0px 0 0px;
  1893. }
  1894. .tile-hud:top-right {
  1895. border-top-width: 0px;
  1896. border-right-width: 0px;
  1897. border-radius: 0px 0px 0px 0;
  1898. }
  1899. .tile-hud:bottom-left {
  1900. border-bottom-width: 0px;
  1901. border-left-width: 0px;
  1902. border-radius: 0px 0 0px 0px;
  1903. }
  1904. .tile-hud:bottom-right {
  1905. border-bottom-width: 0px;
  1906. border-right-width: 0px;
  1907. border-radius: 0 0px 0px 0px;
  1908. }
  1909. .osd-window {
  1910. color: rgba(255, 255, 255, 0.9);
  1911. background-color: #202020;
  1912. border: none;
  1913. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1914. border-radius: 12px;
  1915. padding: 12px;
  1916. }
  1917. /* ===================================================================
  1918. * Systray Applet
  1919. *
  1920. * .systray is for theming to be applied to the systray as a whole
  1921. * .applet-box is used for indicators (not tray icons) within the systray
  1922. * tray icons are not themed
  1923. * ===================================================================*/
  1924. .systray {
  1925. spacing: 6px;
  1926. }