gnome-shell.css 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264
  1. /* This stylesheet is generated, DO NOT EDIT */
  2. /* Copyright 2009, 2015 Red Hat, Inc.
  3. *
  4. * Portions adapted from Mx's data/style/default.css
  5. * Copyright 2009 Intel Corporation
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms and conditions of the GNU Lesser General Public License,
  9. * version 2.1, as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope it will be useful, but WITHOUT ANY
  12. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
  14. * more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  19. */
  20. /* GLOBALS */
  21. * {
  22. transition-duration: 150ms;
  23. }
  24. stage {
  25. font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif;
  26. font-size: 10.5pt;
  27. font-weight: 400;
  28. color: #ca4c7a;
  29. }
  30. /* WIDGETS */
  31. /* Buttons */
  32. .button {
  33. min-height: 36px;
  34. padding: 0 16px;
  35. border-width: 0;
  36. border-radius: 2px;
  37. font-size: 10.5pt;
  38. font-weight: 500;
  39. color: rgba(202, 76, 122, 0.7);
  40. background-color: transparent;
  41. border-color: transparent;
  42. box-shadow: 0 0 transparent;
  43. text-shadow: none;
  44. icon-shadow: none;
  45. }
  46. .button:hover {
  47. color: #ca4c7a;
  48. background-color: rgba(202, 76, 122, 0.12);
  49. border-color: transparent;
  50. box-shadow: 0 0 transparent;
  51. text-shadow: none;
  52. icon-shadow: none;
  53. }
  54. .button:active {
  55. color: #ca4c7a;
  56. background-color: rgba(202, 76, 122, 0.3);
  57. border-color: transparent;
  58. box-shadow: 0 0 transparent;
  59. text-shadow: none;
  60. icon-shadow: none;
  61. }
  62. .button:insensitive {
  63. color: rgba(202, 76, 122, 0.3);
  64. background-color: transparent;
  65. border-color: transparent;
  66. box-shadow: 0 0 transparent;
  67. text-shadow: none;
  68. icon-shadow: none;
  69. }
  70. .button:focus {
  71. color: #ca4c7a;
  72. text-shadow: none;
  73. icon-shadow: none;
  74. box-shadow: 0 0 transparent;
  75. }
  76. .modal-dialog-linked-button {
  77. min-height: 36px;
  78. margin: 6px;
  79. padding: 0 8px;
  80. margin-right: 0;
  81. border-right-width: 0;
  82. border-radius: 2px;
  83. font-size: 10.5pt;
  84. font-weight: 500;
  85. color: rgba(202, 76, 122, 0.7);
  86. background-color: transparent;
  87. border-color: transparent;
  88. box-shadow: 0 0 transparent;
  89. text-shadow: none;
  90. icon-shadow: none;
  91. }
  92. .modal-dialog-linked-button:hover {
  93. color: #ca4c7a;
  94. background-color: rgba(202, 76, 122, 0.12);
  95. border-color: transparent;
  96. box-shadow: 0 0 transparent;
  97. text-shadow: none;
  98. icon-shadow: none;
  99. }
  100. .modal-dialog-linked-button:active {
  101. color: #ca4c7a;
  102. background-color: rgba(202, 76, 122, 0.3);
  103. border-color: transparent;
  104. box-shadow: 0 0 transparent;
  105. text-shadow: none;
  106. icon-shadow: none;
  107. }
  108. .modal-dialog-linked-button:insensitive {
  109. color: rgba(202, 76, 122, 0.3);
  110. background-color: transparent;
  111. border-color: transparent;
  112. box-shadow: 0 0 transparent;
  113. text-shadow: none;
  114. icon-shadow: none;
  115. }
  116. .modal-dialog-linked-button:focus {
  117. color: #ca4c7a;
  118. text-shadow: none;
  119. icon-shadow: none;
  120. box-shadow: 0 0 transparent;
  121. }
  122. .modal-dialog-linked-button:first-child {
  123. border-radius: 2px;
  124. }
  125. .modal-dialog-linked-button:last-child {
  126. margin-right: 6px;
  127. border-right-width: 0px;
  128. border-radius: 2px;
  129. }
  130. .modal-dialog-linked-button:first-child:last-child {
  131. margin-right: 6px;
  132. border-right-width: 0px;
  133. border-radius: 2px;
  134. }
  135. /* Entries */
  136. StEntry {
  137. min-height: 36px;
  138. padding: 0 8px;
  139. border-radius: 0;
  140. border-width: 0;
  141. color: #ca4c7a;
  142. selection-background-color: #ca4c7a;
  143. selected-color: #ffffff;
  144. font-size: 12pt;
  145. font-weight: 400;
  146. background-color: rgba(239, 239, 239, 0.01);
  147. border-color: transparent;
  148. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  149. }
  150. StEntry:focus {
  151. border-color: transparent;
  152. box-shadow: inset 0 -2px #ca4c7a;
  153. }
  154. StEntry:insensitive {
  155. color: rgba(202, 76, 122, 0.5);
  156. border-color: transparent;
  157. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.12);
  158. }
  159. StEntry StIcon.capslock-warning {
  160. icon-size: 16px;
  161. warning-color: #caa452;
  162. padding: 0 0;
  163. }
  164. /* Scrollbars */
  165. StScrollView.vfade {
  166. -st-vfade-offset: 32px;
  167. }
  168. StScrollView.hfade {
  169. -st-hfade-offset: 32px;
  170. }
  171. StScrollBar {
  172. padding: 0;
  173. }
  174. StScrollView StScrollBar {
  175. min-width: 16px;
  176. min-height: 16px;
  177. }
  178. StScrollBar StBin#trough {
  179. margin: 4px;
  180. border-radius: 100px;
  181. background-color: rgba(202, 76, 122, 0.12);
  182. }
  183. StScrollBar StButton#vhandle, StScrollBar StButton#hhandle {
  184. border-radius: 100px;
  185. background-color: rgba(202, 76, 122, 0.5);
  186. margin: 4px;
  187. }
  188. StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover {
  189. background-color: rgba(202, 76, 122, 0.7);
  190. }
  191. StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active {
  192. background-color: #ca4c7a;
  193. }
  194. #overview StScrollBar StBin#trough, #screenShieldNotifications StScrollBar StBin#trough {
  195. background-color: rgba(255, 255, 255, 0.12);
  196. }
  197. #overview StScrollBar StButton#vhandle, #screenShieldNotifications StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle, #screenShieldNotifications StScrollBar StButton#hhandle {
  198. background-color: rgba(255, 255, 255, 0.5);
  199. }
  200. #overview StScrollBar StButton#vhandle:hover, #screenShieldNotifications StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover, #screenShieldNotifications StScrollBar StButton#hhandle:hover {
  201. background-color: rgba(255, 255, 255, 0.7);
  202. }
  203. #overview StScrollBar StButton#vhandle:active, #screenShieldNotifications StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active, #screenShieldNotifications StScrollBar StButton#hhandle:active {
  204. background-color: #ffffff;
  205. }
  206. /* Slider */
  207. .slider {
  208. height: 20px;
  209. color: #ca4c7a;
  210. -slider-height: 2px;
  211. -slider-background-color: rgba(202, 76, 122, 0.3);
  212. -slider-border-color: transparent;
  213. -slider-active-background-color: #ca4c7a;
  214. -slider-active-border-color: transparent;
  215. -slider-border-width: 0;
  216. -slider-handle-radius: 6px;
  217. }
  218. /* Check Boxes */
  219. .check-box * {
  220. min-height: 20px;
  221. padding: 8px 0;
  222. }
  223. .check-box StBoxLayout {
  224. spacing: 8px;
  225. }
  226. .check-box StBin {
  227. width: 24px;
  228. height: 24px;
  229. padding: 6px;
  230. border-radius: 100px;
  231. background-image: url("assets/checkbox-off.svg");
  232. }
  233. .check-box:focus StBin {
  234. background-image: url("assets/checkbox-off.svg");
  235. }
  236. .check-box:hover StBin {
  237. background-color: rgba(202, 76, 122, 0.12);
  238. }
  239. .check-box:active StBin {
  240. background-color: rgba(202, 76, 122, 0.3);
  241. }
  242. .check-box:checked StBin {
  243. background-image: url("assets/checkbox.svg");
  244. }
  245. .check-box:focus:checked StBin {
  246. background-image: url("assets/checkbox.svg");
  247. }
  248. .check-box:hover:checked StBin {
  249. background-color: rgba(202, 76, 122, 0.12);
  250. }
  251. .check-box:active:checked StBin {
  252. background-color: rgba(202, 76, 122, 0.24);
  253. }
  254. /* Switches */
  255. .toggle-switch {
  256. width: 40px;
  257. height: 20px;
  258. background-size: contain;
  259. }
  260. .toggle-switch-us {
  261. background-image: url("assets/toggle-off.svg");
  262. }
  263. .toggle-switch-us:checked {
  264. background-image: url("assets/toggle-on.svg");
  265. }
  266. .toggle-switch-intl {
  267. background-image: url("assets/toggle-off.svg");
  268. }
  269. .toggle-switch-intl:checked {
  270. background-image: url("assets/toggle-on.svg");
  271. }
  272. /* links */
  273. .shell-link {
  274. border-radius: 2px;
  275. color: #5d03bf;
  276. }
  277. .shell-link:hover {
  278. color: #5d03bf;
  279. background-color: rgba(93, 3, 191, 0.12);
  280. }
  281. .shell-link:active {
  282. color: #5d03bf;
  283. background-color: rgba(93, 3, 191, 0.24);
  284. }
  285. /* Modal Dialogs */
  286. .headline {
  287. font-size: 15pt;
  288. font-weight: 500;
  289. }
  290. .lightbox {
  291. background-color: black;
  292. }
  293. .flashspot {
  294. background-color: white;
  295. }
  296. .modal-dialog {
  297. border-radius: 2px;
  298. color: #ca4c7a;
  299. background-color: #efefef;
  300. border: none;
  301. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44);
  302. }
  303. .modal-dialog .modal-dialog-content-box {
  304. padding: 24px;
  305. }
  306. .modal-dialog .run-dialog-entry {
  307. width: 20em;
  308. margin-bottom: 0;
  309. }
  310. .modal-dialog .run-dialog-error-box {
  311. padding-top: 16px;
  312. spacing: 6px;
  313. }
  314. .modal-dialog .run-dialog-button-box {
  315. padding-top: 1em;
  316. }
  317. .modal-dialog .run-dialog-label {
  318. font-size: 1em;
  319. font-weight: normal;
  320. color: rgba(202, 76, 122, 0.5);
  321. padding-bottom: .4em;
  322. }
  323. .mount-dialog-subject,
  324. .end-session-dialog-subject {
  325. font-size: 15pt;
  326. font-weight: 500;
  327. }
  328. /* Message Dialog */
  329. .message-dialog-main-layout {
  330. padding: 12px 20px 0;
  331. spacing: 12px;
  332. }
  333. .message-dialog-content {
  334. max-width: 28em;
  335. spacing: 20px;
  336. }
  337. .message-dialog-icon {
  338. min-width: 48px;
  339. icon-size: 48px;
  340. }
  341. .message-dialog-title {
  342. font-weight: bold;
  343. }
  344. .message-dialog-subtitle {
  345. color: rgba(202, 76, 122, 0.7);
  346. font-weight: bold;
  347. }
  348. /* End Session Dialog */
  349. .end-session-dialog {
  350. spacing: 42px;
  351. border: none;
  352. }
  353. .end-session-dialog-list {
  354. padding-top: 20px;
  355. }
  356. .end-session-dialog-layout {
  357. padding-left: 17px;
  358. }
  359. .end-session-dialog-layout:rtl {
  360. padding-right: 17px;
  361. }
  362. .end-session-dialog-description {
  363. width: 28em;
  364. padding-bottom: 10px;
  365. }
  366. .end-session-dialog-description:rtl {
  367. text-align: right;
  368. }
  369. .end-session-dialog-warning {
  370. width: 28em;
  371. color: #caa452;
  372. padding-top: 6px;
  373. }
  374. .end-session-dialog-warning:rtl {
  375. text-align: right;
  376. }
  377. .end-session-dialog-logout-icon {
  378. border-radius: 5px;
  379. width: 48px;
  380. height: 48px;
  381. background-size: contain;
  382. }
  383. .end-session-dialog-shutdown-icon {
  384. color: rgba(202, 76, 122, 0.5);
  385. width: 48px;
  386. height: 48px;
  387. }
  388. .end-session-dialog-inhibitor-layout {
  389. spacing: 16px;
  390. max-height: 200px;
  391. padding-right: 65px;
  392. padding-left: 65px;
  393. }
  394. .end-session-dialog-session-list,
  395. .end-session-dialog-app-list {
  396. spacing: 1em;
  397. }
  398. .end-session-dialog-list-header {
  399. font-weight: bold;
  400. }
  401. .end-session-dialog-list-header:rtl {
  402. text-align: right;
  403. }
  404. .end-session-dialog-app-list-item,
  405. .end-session-dialog-session-list-item {
  406. spacing: 1em;
  407. }
  408. .end-session-dialog-app-list-item-name,
  409. .end-session-dialog-session-list-item-name {
  410. font-weight: bold;
  411. }
  412. .end-session-dialog-app-list-item-description {
  413. color: rgba(202, 76, 122, 0.5);
  414. font-size: 1em;
  415. }
  416. /* ShellMountOperation Dialogs */
  417. .shell-mount-operation-icon {
  418. icon-size: 48px;
  419. }
  420. .mount-dialog {
  421. spacing: 24px;
  422. }
  423. .mount-dialog .message-dialog-title {
  424. padding-top: 10px;
  425. padding-left: 17px;
  426. padding-bottom: 6px;
  427. max-width: 34em;
  428. }
  429. .mount-dialog .message-dialog-title:rtl {
  430. padding-left: 0px;
  431. padding-right: 17px;
  432. }
  433. .mount-dialog .message-dialog-body {
  434. padding-left: 17px;
  435. width: 28em;
  436. }
  437. .mount-dialog .message-dialog-body:rtl {
  438. padding-left: 0px;
  439. padding-right: 17px;
  440. }
  441. .mount-dialog-app-list {
  442. max-height: 200px;
  443. padding-top: 24px;
  444. padding-left: 49px;
  445. padding-right: 32px;
  446. }
  447. .mount-dialog-app-list:rtl {
  448. padding-right: 49px;
  449. padding-left: 32px;
  450. }
  451. .mount-dialog-app-list-item {
  452. color: #ca4c7a;
  453. }
  454. .mount-dialog-app-list-item:hover {
  455. color: #ca4c7a;
  456. }
  457. .mount-dialog-app-list-item:ltr {
  458. padding-right: 1em;
  459. }
  460. .mount-dialog-app-list-item:rtl {
  461. padding-left: 1em;
  462. }
  463. .mount-dialog-app-list-item-icon:ltr {
  464. padding-right: 17px;
  465. }
  466. .mount-dialog-app-list-item-icon:rtl {
  467. padding-left: 17px;
  468. }
  469. .mount-dialog-app-list-item-name {
  470. font-size: 1em;
  471. }
  472. /* Password or Authentication Dialog */
  473. .prompt-dialog {
  474. width: 34em;
  475. border: none;
  476. }
  477. .prompt-dialog .message-dialog-main-layout {
  478. spacing: 24px;
  479. padding: 10px;
  480. }
  481. .prompt-dialog .message-dialog-content {
  482. spacing: 16px;
  483. }
  484. .prompt-dialog .message-dialog-title {
  485. font-size: 15pt;
  486. font-weight: 500;
  487. color: #ca4c7a;
  488. }
  489. .prompt-dialog-description:rtl {
  490. text-align: right;
  491. }
  492. .prompt-dialog-password-box {
  493. spacing: 1em;
  494. padding-bottom: 1em;
  495. }
  496. .prompt-dialog-error-label {
  497. font-size: 1em;
  498. color: #ca4c7a;
  499. padding-bottom: 8px;
  500. }
  501. .prompt-dialog-info-label {
  502. font-size: 1em;
  503. padding-bottom: 8px;
  504. }
  505. .hidden {
  506. color: transparent;
  507. }
  508. .prompt-dialog-null-label {
  509. font-size: 1em;
  510. padding-bottom: 8px;
  511. }
  512. /* Polkit Dialog */
  513. .polkit-dialog-user-layout {
  514. padding-left: 10px;
  515. spacing: 10px;
  516. }
  517. .polkit-dialog-user-layout:rtl {
  518. padding-left: 0px;
  519. padding-right: 10px;
  520. }
  521. .polkit-dialog-user-root-label {
  522. color: #caa452;
  523. }
  524. .polkit-dialog-user-icon {
  525. border-radius: 5px;
  526. background-size: contain;
  527. width: 48px;
  528. height: 48px;
  529. }
  530. /* Audio selection dialog */
  531. .audio-device-selection-dialog {
  532. spacing: 30px;
  533. }
  534. .audio-selection-content {
  535. spacing: 20px;
  536. padding: 24px;
  537. }
  538. .audio-selection-title {
  539. font-weight: bold;
  540. text-align: center;
  541. }
  542. .audio-selection-box {
  543. spacing: 20px;
  544. }
  545. .audio-selection-device {
  546. border: 1px solid rgba(0, 0, 0, 0.12);
  547. border-radius: 2px;
  548. }
  549. .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus {
  550. background-color: #ca4c7a;
  551. }
  552. .audio-selection-device-box {
  553. padding: 20px;
  554. spacing: 20px;
  555. }
  556. .audio-selection-device-icon {
  557. icon-size: 64px;
  558. }
  559. /* Access Dialog */
  560. .access-dialog {
  561. spacing: 30px;
  562. }
  563. /* Geolocation Dialog */
  564. .geolocation-dialog {
  565. spacing: 30px;
  566. }
  567. /* Extension Dialog */
  568. .extension-dialog .message-dialog-main-layout {
  569. spacing: 24px;
  570. padding: 10px;
  571. }
  572. .extension-dialog .message-dialog-title {
  573. color: rgba(202, 76, 122, 0.7);
  574. }
  575. /* Inhibit-Shortcuts Dialog */
  576. .inhibit-shortcuts-dialog {
  577. spacing: 30px;
  578. }
  579. /* Network Agent Dialog */
  580. .network-dialog-secret-table {
  581. spacing-rows: 15px;
  582. spacing-columns: 1em;
  583. }
  584. .keyring-dialog-control-table {
  585. spacing-rows: 15px;
  586. spacing-columns: 1em;
  587. }
  588. /* Popovers/Menus */
  589. .popup-menu {
  590. min-width: 200px;
  591. }
  592. .popup-menu .popup-sub-menu {
  593. background-color: #efefef;
  594. box-shadow: 0 0 transparent;
  595. }
  596. .popup-menu .popup-menu-content {
  597. padding: 8px 0;
  598. }
  599. .popup-menu .popup-menu-item {
  600. spacing: 8px;
  601. transition-duration: 100ms;
  602. }
  603. .popup-menu .popup-menu-item:ltr {
  604. padding: 0.4em 24px 0.4em 0;
  605. }
  606. .popup-menu .popup-menu-item:rtl {
  607. padding: 0.4em 0 0.4em 24px;
  608. }
  609. .popup-menu .popup-menu-item:checked {
  610. background-color: #ca4c7a;
  611. color: #ffffff;
  612. box-shadow: 0 0 transparent;
  613. font-weight: normal;
  614. }
  615. .popup-menu .popup-menu-item:checked.selected {
  616. background-color: #d0618a;
  617. color: #ffffff;
  618. }
  619. .popup-menu .popup-menu-item:checked:active {
  620. background-color: #d7779a;
  621. color: #ffffff !important;
  622. }
  623. .popup-menu .popup-menu-item:checked:insensitive {
  624. color: rgba(255, 255, 255, 0.5);
  625. }
  626. .popup-menu .popup-menu-item.selected {
  627. background-color: rgba(202, 76, 122, 0.12);
  628. color: #ca4c7a;
  629. transition-duration: 0ms;
  630. }
  631. .popup-menu .popup-menu-item:active {
  632. background-color: rgba(202, 76, 122, 0.3);
  633. color: #ca4c7a;
  634. transition-duration: 150ms;
  635. }
  636. .popup-menu .popup-menu-item.selected:active {
  637. color: #ca4c7a;
  638. }
  639. .popup-menu .popup-menu-item:insensitive {
  640. color: rgba(202, 76, 122, 0.5);
  641. }
  642. .popup-menu .popup-inactive-menu-item {
  643. color: #ca4c7a;
  644. }
  645. .popup-menu .popup-inactive-menu-item:insensitive {
  646. color: rgba(202, 76, 122, 0.5);
  647. }
  648. .popup-menu.panel-menu {
  649. -boxpointer-gap: 4px;
  650. margin-bottom: 1.75em;
  651. }
  652. .popup-menu-ornament {
  653. text-align: right;
  654. width: 16px;
  655. height: 16px;
  656. }
  657. .popup-menu-boxpointer,
  658. .candidate-popup-boxpointer {
  659. -arrow-border-radius: 0;
  660. -arrow-background-color: transparent;
  661. -arrow-border-width: 0;
  662. -arrow-border-color: transparent;
  663. -arrow-base: 0;
  664. -arrow-rise: 0;
  665. -arrow-box-shadow: none;
  666. margin: 5px 8px 8px;
  667. background-color: #efefef;
  668. border-radius: 2px;
  669. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  670. }
  671. .popup-separator-menu-item {
  672. height: 1px;
  673. margin: 8px 40px;
  674. background-color: transparent;
  675. border-color: rgba(0, 0, 0, 0.12);
  676. border-bottom-width: 1px;
  677. border-bottom-style: solid;
  678. }
  679. .background-menu {
  680. -boxpointer-gap: 4px;
  681. -arrow-rise: 0;
  682. }
  683. /* fallback menu
  684. - odd thing for styling App menu when apparently not running under shell. Light Adwaita styled
  685. app menu inside the main app window itself rather than the top bar
  686. */
  687. /* OSD */
  688. .osd-window {
  689. text-align: center;
  690. font-weight: bold;
  691. spacing: 1em;
  692. margin: 32px;
  693. min-width: 64px;
  694. min-height: 64px;
  695. }
  696. .osd-window .osd-monitor-label {
  697. font-size: 45px;
  698. font-weight: 400;
  699. }
  700. .osd-window .level {
  701. height: 8px;
  702. border-radius: 0;
  703. background-color: rgba(202, 76, 122, 0.12);
  704. color: #ca4c7a;
  705. }
  706. .osd-window .level-bar {
  707. background-color: #ca4c7a;
  708. border-radius: 0;
  709. }
  710. /* Pad OSD */
  711. .pad-osd-window {
  712. padding: 32px;
  713. background-color: rgba(0, 0, 0, 0.6);
  714. }
  715. .pad-osd-window .pad-osd-title-box {
  716. spacing: 12px;
  717. }
  718. .pad-osd-window .pad-osd-title-menu-box {
  719. spacing: 6px;
  720. }
  721. .combo-box-label {
  722. width: 15em;
  723. }
  724. /* App Switcher */
  725. .switcher-popup {
  726. padding: 8px;
  727. spacing: 16px;
  728. }
  729. .switcher-list-item-container {
  730. spacing: 8px;
  731. }
  732. .switcher-list .item-box {
  733. padding: 8px;
  734. border-radius: 2px;
  735. }
  736. .switcher-list .item-box:outlined {
  737. padding: 8px;
  738. border: none;
  739. background-color: rgba(202, 76, 122, 0.12);
  740. color: #ca4c7a;
  741. }
  742. .switcher-list .item-box:selected {
  743. background-color: #ca4c7a;
  744. color: #ffffff;
  745. }
  746. .switcher-list .thumbnail-box {
  747. padding: 2px;
  748. spacing: 4px;
  749. }
  750. .switcher-list .thumbnail {
  751. width: 256px;
  752. }
  753. .switcher-list .separator {
  754. width: 1px;
  755. background: rgba(0, 0, 0, 0.12);
  756. }
  757. .switcher-arrow {
  758. border-color: transparent;
  759. color: rgba(202, 76, 122, 0.5);
  760. }
  761. .switcher-arrow:highlighted {
  762. color: #ca4c7a;
  763. }
  764. .input-source-switcher-symbol {
  765. font-size: 45px;
  766. font-weight: 400;
  767. width: 96px;
  768. height: 96px;
  769. }
  770. /* Window Cycler */
  771. .cycler-highlight {
  772. border: 4px solid #ca4c7a;
  773. }
  774. /* Workspace Switcher */
  775. .workspace-switcher-group {
  776. padding: 8px;
  777. }
  778. .workspace-switcher {
  779. background: transparent;
  780. border: 0px;
  781. border-radius: 0px;
  782. padding: 0px;
  783. spacing: 8px;
  784. }
  785. .ws-switcher-active-up, .ws-switcher-active-down {
  786. height: 48px;
  787. background-color: #ca4c7a;
  788. color: #ffffff;
  789. background-size: 32px;
  790. border-radius: 2px;
  791. }
  792. .ws-switcher-box {
  793. height: 48px;
  794. border: none;
  795. background: rgba(202, 76, 122, 0.12);
  796. border-radius: 2px;
  797. }
  798. .osd-window,
  799. .resize-popup,
  800. .switcher-list, .workspace-switcher-container {
  801. color: #ca4c7a;
  802. background-color: #efefef;
  803. border: none;
  804. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44);
  805. border-radius: 2px;
  806. padding: 12px;
  807. }
  808. /* Tiled window previews */
  809. .tile-preview {
  810. background-color: rgba(234, 108, 154, 0.3);
  811. border: 1px solid #ea6c9a;
  812. }
  813. .tile-preview-left.on-primary {
  814. border-radius: 0 0 0 0;
  815. }
  816. .tile-preview-right.on-primary {
  817. border-radius: 0 0 0 0;
  818. }
  819. .tile-preview-left.tile-preview-right.on-primary {
  820. border-radius: 0 0 0 0;
  821. }
  822. /* TOP BAR */
  823. #panel {
  824. background-color: rgba(0, 0, 0, 0.6);
  825. /* transition from solid to transparent */
  826. transition-duration: 250ms;
  827. font-weight: bold;
  828. height: 32px;
  829. }
  830. #panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen {
  831. background-color: transparent;
  832. }
  833. #panel #panelLeft, #panel #panelCenter {
  834. spacing: 0;
  835. }
  836. #panel .panel-corner {
  837. -panel-corner-radius: 0;
  838. -panel-corner-background-color: rgba(0, 0, 0, 0.6);
  839. -panel-corner-border-width: 2px;
  840. -panel-corner-border-color: transparent;
  841. }
  842. #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus {
  843. -panel-corner-border-color: #ffffff;
  844. }
  845. #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen {
  846. -panel-corner-radius: 0;
  847. -panel-corner-background-color: transparent;
  848. -panel-corner-border-color: transparent;
  849. }
  850. #panel .panel-button {
  851. -natural-hpadding: 12px;
  852. -minimum-hpadding: 6px;
  853. font-weight: bold;
  854. color: rgba(255, 255, 255, 0.7);
  855. text-shadow: none;
  856. transition-duration: 150ms;
  857. }
  858. #panel .panel-button .app-menu-icon {
  859. -st-icon-style: symbolic;
  860. margin-left: 4px;
  861. margin-right: 4px;
  862. }
  863. #panel .panel-button .system-status-icon,
  864. #panel .panel-button .app-menu-icon > StIcon,
  865. #panel .panel-button .popup-menu-arrow {
  866. icon-shadow: none;
  867. }
  868. #panel .panel-button:hover {
  869. color: #ffffff;
  870. text-shadow: none;
  871. }
  872. #panel .panel-button:hover .system-status-icon,
  873. #panel .panel-button:hover .app-menu-icon > StIcon,
  874. #panel .panel-button:hover .popup-menu-arrow {
  875. icon-shadow: none;
  876. }
  877. #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked {
  878. background-color: rgba(0, 0, 0, 0.01);
  879. box-shadow: inset 0 -2px 0px #ffffff;
  880. color: #ffffff;
  881. }
  882. #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon {
  883. icon-shadow: none;
  884. }
  885. #panel .panel-button .system-status-icon {
  886. icon-size: 1.14286em;
  887. padding: 0 4px;
  888. }
  889. .unlock-screen #panel .panel-button,
  890. .login-screen #panel .panel-button,
  891. .lock-screen #panel .panel-button {
  892. color: rgba(255, 255, 255, 0.7);
  893. }
  894. .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active,
  895. .login-screen #panel .panel-button:focus,
  896. .login-screen #panel .panel-button:hover,
  897. .login-screen #panel .panel-button:active,
  898. .lock-screen #panel .panel-button:focus,
  899. .lock-screen #panel .panel-button:hover,
  900. .lock-screen #panel .panel-button:active {
  901. color: #ffffff;
  902. }
  903. #panel .panel-status-indicators-box,
  904. #panel .panel-status-menu-box {
  905. spacing: 2px;
  906. }
  907. #panel .power-status.panel-status-indicators-box {
  908. spacing: 0;
  909. }
  910. #panel .screencast-indicator {
  911. color: #caa452;
  912. }
  913. #panel.solid {
  914. background-color: rgba(0, 0, 0, 0.6);
  915. /* transition from transparent to solid */
  916. transition-duration: 250ms;
  917. background-gradient-direction: none;
  918. text-shadow: none;
  919. }
  920. #panel.solid:overview {
  921. background-color: transparent;
  922. }
  923. #panel.solid .panel-corner {
  924. -panel-corner-background-color: rgba(0, 0, 0, 0.6);
  925. }
  926. #panel.solid .panel-button {
  927. color: rgba(255, 255, 255, 0.7);
  928. text-shadow: none;
  929. }
  930. #panel.solid .panel-button:hover, #panel.solid .panel-button:active, #panel.solid .panel-button:overview, #panel.solid .panel-button:focus, #panel.solid .panel-button:checked {
  931. color: #ffffff;
  932. }
  933. #panel.solid .system-status-icon,
  934. #panel.solid .app-menu-icon > StIcon,
  935. #panel.solid .popup-menu-arrow {
  936. icon-shadow: none;
  937. }
  938. #calendarArea {
  939. padding: 8px 16px;
  940. }
  941. .calendar {
  942. margin-bottom: 0;
  943. }
  944. .calendar,
  945. .datemenu-today-button,
  946. .datemenu-displays-box,
  947. .message-list-sections {
  948. margin: 0 8px;
  949. }
  950. .datemenu-calendar-column {
  951. spacing: 8px;
  952. }
  953. .datemenu-displays-section {
  954. padding-bottom: 0;
  955. }
  956. .datemenu-displays-box {
  957. spacing: 8px;
  958. }
  959. .datemenu-calendar-column {
  960. border: 0 solid rgba(0, 0, 0, 0.12);
  961. }
  962. .datemenu-calendar-column:ltr {
  963. border-left-width: 0;
  964. }
  965. .datemenu-calendar-column:rtl {
  966. border-right-width: 0;
  967. }
  968. .datemenu-today-button,
  969. .world-clocks-button,
  970. .weather-button,
  971. .events-section-title {
  972. min-height: 24px;
  973. padding: 4px 8px;
  974. border-radius: 2px;
  975. }
  976. .datemenu-today-button {
  977. min-height: 56px;
  978. }
  979. .message-list-section-list:ltr {
  980. padding-left: 0;
  981. }
  982. .message-list-section-list:rtl {
  983. padding-right: 0;
  984. }
  985. .datemenu-today-button:hover, .datemenu-today-button:focus,
  986. .world-clocks-button:hover,
  987. .world-clocks-button:focus,
  988. .weather-button:hover,
  989. .weather-button:focus,
  990. .events-section-title:hover,
  991. .events-section-title:focus {
  992. color: #ca4c7a;
  993. background-color: rgba(202, 76, 122, 0.12);
  994. }
  995. .datemenu-today-button:active,
  996. .world-clocks-button:active,
  997. .weather-button:active,
  998. .events-section-title:active {
  999. color: #ca4c7a;
  1000. background-color: rgba(202, 76, 122, 0.3);
  1001. }
  1002. .datemenu-today-button .date-label {
  1003. font-size: 18pt;
  1004. font-weight: 400;
  1005. }
  1006. .world-clocks-header,
  1007. .weather-header,
  1008. .events-section-title {
  1009. color: rgba(202, 76, 122, 0.7);
  1010. font-weight: bold;
  1011. }
  1012. .world-clocks-grid {
  1013. spacing-rows: 0.4em;
  1014. }
  1015. .weather-box {
  1016. spacing: 0.4em;
  1017. }
  1018. .calendar-month-label {
  1019. height: 20px;
  1020. margin: 2px;
  1021. padding: 6px 16px;
  1022. border-radius: 2px;
  1023. color: #ca4c7a;
  1024. font-weight: bold;
  1025. text-align: center;
  1026. }
  1027. .calendar-month-label:focus {
  1028. background-color: rgba(202, 76, 122, 0.12);
  1029. }
  1030. .pager-button {
  1031. width: 32px;
  1032. height: 32px;
  1033. margin: 2px;
  1034. border-radius: 100px;
  1035. background-color: transparent;
  1036. color: #ca4c7a;
  1037. }
  1038. .pager-button:hover, .pager-button:focus {
  1039. background-color: rgba(202, 76, 122, 0.12);
  1040. }
  1041. .pager-button:active {
  1042. background-color: rgba(202, 76, 122, 0.3);
  1043. }
  1044. .calendar-change-month-back {
  1045. background-image: url("assets/calendar-arrow-left.svg");
  1046. }
  1047. .calendar-change-month-back:rtl {
  1048. background-image: url("assets/calendar-arrow-right.svg");
  1049. }
  1050. .calendar-change-month-forward {
  1051. background-image: url("assets/calendar-arrow-right.svg");
  1052. }
  1053. .calendar-change-month-forward:rtl {
  1054. background-image: url("assets/calendar-arrow-left.svg");
  1055. }
  1056. .calendar-day-base {
  1057. font-size: 9pt;
  1058. font-weight: 400;
  1059. text-align: center;
  1060. width: 32px;
  1061. height: 32px;
  1062. padding: 0;
  1063. margin: 2px;
  1064. border-radius: 100px;
  1065. }
  1066. .calendar-day-base:hover, .calendar-day-base:focus {
  1067. background-color: rgba(202, 76, 122, 0.12);
  1068. }
  1069. .calendar-day-base:active {
  1070. color: inherit;
  1071. background-color: rgba(202, 76, 122, 0.3);
  1072. border-color: transparent;
  1073. }
  1074. .calendar-day-base:selected {
  1075. color: #ffffff;
  1076. background-color: #ca4c7a;
  1077. border-color: transparent;
  1078. }
  1079. .calendar-day-base.calendar-day-heading {
  1080. width: 32px;
  1081. height: 25px;
  1082. margin-top: 2px;
  1083. padding: 7px 0 0;
  1084. border-radius: 100px;
  1085. background-color: transparent;
  1086. color: rgba(202, 76, 122, 0.5);
  1087. font-size: 9pt;
  1088. font-weight: 400;
  1089. font-weight: bold;
  1090. text-align: center;
  1091. }
  1092. .calendar-day {
  1093. border-width: 0;
  1094. }
  1095. .calendar-day-top {
  1096. border-top-width: 0;
  1097. }
  1098. .calendar-day-left {
  1099. border-left-width: 0;
  1100. }
  1101. .calendar-nonwork-day {
  1102. color: #ca4c7a;
  1103. }
  1104. .calendar-today {
  1105. font-weight: bold !important;
  1106. border: none;
  1107. }
  1108. .calendar-day-with-events {
  1109. color: #5d03bf;
  1110. font-weight: normal;
  1111. text-decoration: underline;
  1112. background-image: none;
  1113. }
  1114. .calendar-other-month-day {
  1115. color: rgba(202, 76, 122, 0.3);
  1116. opacity: 0.5;
  1117. }
  1118. .calendar-week-number {
  1119. width: 32px;
  1120. height: 25px;
  1121. margin: 2px;
  1122. padding: 7px 0 0;
  1123. border-radius: 100px;
  1124. background-color: transparent;
  1125. color: rgba(202, 76, 122, 0.5);
  1126. font-size: inherit;
  1127. font-weight: bold;
  1128. text-align: center;
  1129. }
  1130. /* Message list */
  1131. .message-list {
  1132. width: 420px;
  1133. }
  1134. .message-list-clear-button.button {
  1135. background-color: transparent;
  1136. margin: 8px 8px 0;
  1137. }
  1138. .message-list-clear-button.button:hover, .message-list-clear-button.button:focus {
  1139. background-color: rgba(202, 76, 122, 0.12);
  1140. }
  1141. .message-list-clear-button.button:active {
  1142. background-color: rgba(202, 76, 122, 0.3);
  1143. }
  1144. .message-list-sections {
  1145. spacing: 8px;
  1146. }
  1147. .message-list-section,
  1148. .message-list-section-list {
  1149. spacing: 8px;
  1150. }
  1151. .message {
  1152. min-height: 64px;
  1153. background-color: transparent;
  1154. border-radius: 2px;
  1155. }
  1156. .message:hover, .message:focus {
  1157. background-color: rgba(202, 76, 122, 0.12);
  1158. }
  1159. .message:active {
  1160. background-color: rgba(202, 76, 122, 0.3);
  1161. }
  1162. .message-icon-bin {
  1163. padding: 8px 0px 8px 8px;
  1164. }
  1165. .message-icon-bin:rtl {
  1166. padding: 8px 8px 8px 0px;
  1167. }
  1168. .message-icon-bin > StIcon {
  1169. color: #ca4c7a;
  1170. icon-size: 1.14286em;
  1171. -st-icon-style: requested;
  1172. margin: 4px 0px 4px 4px;
  1173. }
  1174. .message-icon-bin > StIcon:rtl {
  1175. margin: 4px 4px 4px 0px;
  1176. }
  1177. .message-secondary-bin {
  1178. padding: 0 8px;
  1179. }
  1180. .message-secondary-bin > .event-time {
  1181. min-height: 22px;
  1182. padding-top: 2px;
  1183. color: rgba(202, 76, 122, 0.7);
  1184. font-size: 1em;
  1185. /* HACK: the label should be baseline-aligned with a 1em label,
  1186. fake this with some bottom padding */
  1187. padding-bottom: 0;
  1188. }
  1189. .message-secondary-bin > StIcon {
  1190. icon-size: 1.14286em;
  1191. }
  1192. .message-title {
  1193. min-height: 22px;
  1194. padding-top: 2px;
  1195. color: #ca4c7a;
  1196. font-weight: bold;
  1197. font-size: 1em;
  1198. }
  1199. .message-content {
  1200. min-height: 48px;
  1201. padding: 8px;
  1202. color: rgba(202, 76, 122, 0.7);
  1203. font-size: 1em;
  1204. }
  1205. .message-content * > StIcon {
  1206. icon-size: 16px;
  1207. border-radius: 16px;
  1208. padding: 4px;
  1209. color: rgba(202, 76, 122, 0.7);
  1210. }
  1211. /* FIXME: how do you do this in sass? */
  1212. .message-content *:hover > StIcon,
  1213. .message-content *:focus > StIcon {
  1214. color: #ca4c7a;
  1215. background-color: rgba(202, 76, 122, 0.12);
  1216. }
  1217. .message-content *:active > StIcon {
  1218. color: #ca4c7a;
  1219. background-color: rgba(202, 76, 122, 0.3);
  1220. }
  1221. .message-media-control {
  1222. margin: 16px 0;
  1223. padding: 8px;
  1224. border-radius: 100px;
  1225. color: rgba(202, 76, 122, 0.7);
  1226. }
  1227. .message-media-control:hover, .message-media-control:focus {
  1228. color: #ca4c7a;
  1229. background-color: rgba(202, 76, 122, 0.12);
  1230. }
  1231. .message-media-control:active {
  1232. color: #ca4c7a;
  1233. background-color: rgba(202, 76, 122, 0.3);
  1234. }
  1235. .message-media-control:insensitive {
  1236. color: rgba(202, 76, 122, 0.3);
  1237. }
  1238. .message-media-control:last-child:ltr {
  1239. margin-right: 16px;
  1240. padding-right: 8px;
  1241. }
  1242. .message-media-control:last-child:rtl {
  1243. margin-left: 16px;
  1244. padding-left: 8px;
  1245. }
  1246. .media-message-cover-icon {
  1247. icon-size: 32px !important;
  1248. margin: 8px 0px 8px 4px !important;
  1249. }
  1250. .media-message-cover-icon:rtl {
  1251. margin: 8px 4px 8px 0px !important;
  1252. }
  1253. .media-message-cover-icon.fallback {
  1254. icon-size: 16px !important;
  1255. padding: 8px;
  1256. border: none;
  1257. border-radius: 2px;
  1258. background-color: rgba(202, 76, 122, 0.12);
  1259. color: rgba(202, 76, 122, 0.5);
  1260. }
  1261. .system-switch-user-submenu-icon.user-icon {
  1262. icon-size: 20px;
  1263. padding: 0 2px;
  1264. }
  1265. .system-switch-user-submenu-icon.default-icon {
  1266. icon-size: 16px;
  1267. padding: 0 4px;
  1268. }
  1269. #appMenu {
  1270. spinner-image: url("process-working.svg");
  1271. spacing: 4px;
  1272. }
  1273. #appMenu .label-shadow {
  1274. color: transparent;
  1275. }
  1276. .aggregate-menu {
  1277. min-width: 280px;
  1278. }
  1279. .aggregate-menu .popup-menu-icon {
  1280. padding: 0 4px;
  1281. }
  1282. .aggregate-menu .popup-sub-menu .popup-menu-item :first-child:ltr {
  1283. /* 8px spacing + 2*4px padding */
  1284. padding-left: 16px;
  1285. margin-left: 1.14286em;
  1286. }
  1287. .aggregate-menu .popup-sub-menu .popup-menu-item :first-child:rtl {
  1288. /* 8px spacing + 2*4px padding */
  1289. padding-right: 16px;
  1290. margin-right: 1.14286em;
  1291. }
  1292. .system-menu-action {
  1293. color: rgba(202, 76, 122, 0.7);
  1294. border-radius: 100px;
  1295. /* wish we could do 50% */
  1296. padding: 16px;
  1297. border: none;
  1298. }
  1299. .system-menu-action:hover, .system-menu-action:focus {
  1300. background-color: rgba(202, 76, 122, 0.12);
  1301. color: #ca4c7a;
  1302. border: none;
  1303. padding: 16px;
  1304. }
  1305. .system-menu-action:active {
  1306. background-color: rgba(202, 76, 122, 0.3);
  1307. color: #ca4c7a;
  1308. }
  1309. .system-menu-action > StIcon {
  1310. icon-size: 16px;
  1311. }
  1312. .ripple-box {
  1313. width: 48px;
  1314. height: 48px;
  1315. border-radius: 0 0 48px 0;
  1316. background-color: rgba(255, 255, 255, 0.3);
  1317. background-image: none;
  1318. background-size: auto;
  1319. }
  1320. .ripple-box:rtl {
  1321. border-radius: 0 0 0 48px;
  1322. background-image: none;
  1323. }
  1324. .popup-menu-arrow {
  1325. width: 16px;
  1326. height: 16px;
  1327. }
  1328. .popup-menu-icon {
  1329. icon-size: 1.14286em;
  1330. }
  1331. .window-close {
  1332. transition-duration: 0ms;
  1333. height: 36px;
  1334. width: 36px;
  1335. -shell-close-overlap: 18px;
  1336. -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  1337. background-image: url("assets/window-close.svg");
  1338. background-size: 36px;
  1339. }
  1340. .window-close:hover {
  1341. -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1342. background-image: url("assets/window-close.svg");
  1343. }
  1344. .window-close:active {
  1345. background-image: url("assets/window-close-active.svg");
  1346. }
  1347. .window-close:rtl {
  1348. -st-background-image-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  1349. }
  1350. .window-close:rtl:hover {
  1351. -st-background-image-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1352. }
  1353. /* NETWORK DIALOGS */
  1354. .nm-dialog {
  1355. max-height: 34em;
  1356. min-height: 31em;
  1357. min-width: 32em;
  1358. }
  1359. .nm-dialog-content {
  1360. spacing: 20px;
  1361. padding: 24px;
  1362. }
  1363. .nm-dialog-header-hbox {
  1364. spacing: 10px;
  1365. }
  1366. .nm-dialog-airplane-box {
  1367. spacing: 12px;
  1368. }
  1369. .nm-dialog-airplane-headline {
  1370. font-weight: bold;
  1371. text-align: center;
  1372. }
  1373. .nm-dialog-airplane-text {
  1374. color: #ca4c7a;
  1375. }
  1376. .nm-dialog-header-icon {
  1377. icon-size: 32px;
  1378. }
  1379. .nm-dialog-scroll-view {
  1380. border: none;
  1381. }
  1382. .nm-dialog-header {
  1383. font-size: 15pt;
  1384. font-weight: 500;
  1385. }
  1386. .nm-dialog-item {
  1387. font-size: 1em;
  1388. border-bottom: none;
  1389. border-radius: 2px;
  1390. padding: 12px;
  1391. spacing: 20px;
  1392. }
  1393. .nm-dialog-item:hover, .nm-dialog-item:focus {
  1394. background-color: rgba(202, 76, 122, 0.12);
  1395. }
  1396. .nm-dialog-item:active {
  1397. background-color: rgba(202, 76, 122, 0.3);
  1398. }
  1399. .nm-dialog-item:selected {
  1400. background-color: #ca4c7a;
  1401. color: #ffffff;
  1402. }
  1403. .nm-dialog-icons {
  1404. spacing: .5em;
  1405. }
  1406. .nm-dialog-icon {
  1407. icon-size: 16px;
  1408. }
  1409. .no-networks-label {
  1410. color: rgba(202, 76, 122, 0.5);
  1411. }
  1412. .no-networks-box {
  1413. spacing: 12px;
  1414. }
  1415. /* OVERVIEW */
  1416. #overview {
  1417. spacing: 24px;
  1418. }
  1419. .overview-controls {
  1420. padding-bottom: 32px;
  1421. }
  1422. .window-picker {
  1423. -horizontal-spacing: 16px;
  1424. -vertical-spacing: 16px;
  1425. padding: 0 16px 32px;
  1426. }
  1427. .window-picker.external-monitor {
  1428. padding: 16px;
  1429. }
  1430. .window-clone-border {
  1431. border: 4px solid rgba(255, 255, 255, 0.3);
  1432. border-radius: 2px;
  1433. box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  1434. }
  1435. .window-caption {
  1436. spacing: 25px;
  1437. color: #ffffff;
  1438. background-color: rgba(0, 0, 0, 0.6);
  1439. border-radius: 2px;
  1440. padding: 4px 8px;
  1441. }
  1442. .search-entry {
  1443. width: 304px;
  1444. padding: 0 8px;
  1445. border-radius: 0;
  1446. color: rgba(255, 255, 255, 0.5);
  1447. selection-background-color: rgba(255, 255, 255, 0.3);
  1448. selected-color: #ffffff;
  1449. background-color: rgba(0, 0, 0, 0.01);
  1450. border-color: transparent;
  1451. box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3);
  1452. }
  1453. .search-entry:focus {
  1454. border-color: transparent;
  1455. box-shadow: inset 0 -2px #ffffff;
  1456. padding: 0 8px;
  1457. border-width: 0;
  1458. color: #ffffff;
  1459. }
  1460. .search-entry .search-entry-icon {
  1461. icon-size: 16px;
  1462. padding: 0 0;
  1463. color: rgba(255, 255, 255, 0.5);
  1464. }
  1465. .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon {
  1466. color: #ffffff;
  1467. }
  1468. #searchResultsBin {
  1469. max-width: 1000px;
  1470. }
  1471. #searchResultsContent {
  1472. padding-left: 20px;
  1473. padding-right: 20px;
  1474. spacing: 16px;
  1475. }
  1476. .search-section {
  1477. spacing: 16px;
  1478. }
  1479. .search-section-content {
  1480. spacing: 32px;
  1481. }
  1482. .list-search-results {
  1483. spacing: 3px;
  1484. }
  1485. .search-section-separator {
  1486. height: 1px;
  1487. background-color: rgba(255, 255, 255, 0.12);
  1488. }
  1489. .list-search-result-content {
  1490. spacing: 30px;
  1491. }
  1492. .list-search-result-title {
  1493. font-size: 12pt;
  1494. font-weight: 400;
  1495. color: #ffffff;
  1496. spacing: 12px;
  1497. }
  1498. .list-search-result-description {
  1499. color: rgba(255, 255, 255, 0.7);
  1500. }
  1501. .list-search-provider-details {
  1502. width: 150px;
  1503. color: rgba(255, 255, 255, 0.7);
  1504. margin-top: 0.24em;
  1505. }
  1506. .list-search-provider-content {
  1507. spacing: 20px;
  1508. }
  1509. .search-provider-icon {
  1510. padding: 15px;
  1511. }
  1512. /* DASHBOARD */
  1513. #dash {
  1514. font-size: 1em;
  1515. color: #ffffff;
  1516. background-color: rgba(255, 255, 255, 0.1);
  1517. padding: 3px 0;
  1518. border: none;
  1519. border-left: 0px;
  1520. border-radius: 0px 2px 2px 0px;
  1521. }
  1522. #dash:rtl {
  1523. border-radius: 2px 0 0 2px;
  1524. }
  1525. #dash .placeholder {
  1526. background-image: url("assets/dash-placeholder.svg");
  1527. background-size: contain;
  1528. height: 24px;
  1529. }
  1530. #dash .empty-dash-drop-target {
  1531. width: 24px;
  1532. height: 24px;
  1533. }
  1534. .dash-item-container > StWidget {
  1535. padding: 3px 6px;
  1536. }
  1537. .dash-label {
  1538. border-radius: 2px;
  1539. padding: 7px 8px;
  1540. color: #ca4c7a;
  1541. background-color: #efefef;
  1542. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1543. text-align: center;
  1544. -x-offset: 8px;
  1545. }
  1546. /* App Vault/Grid */
  1547. .icon-grid {
  1548. spacing: 30px;
  1549. -shell-grid-horizontal-item-size: 136px;
  1550. -shell-grid-vertical-item-size: 136px;
  1551. }
  1552. .icon-grid .overview-icon {
  1553. icon-size: 96px;
  1554. }
  1555. .system-action-icon {
  1556. box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  1557. background-color: #212121;
  1558. color: #FFFFFF;
  1559. border-radius: 99px;
  1560. icon-size: 48px;
  1561. }
  1562. .app-view-controls {
  1563. width: 320px;
  1564. padding-bottom: 32px;
  1565. }
  1566. .app-view-control {
  1567. padding: 0 16px;
  1568. font-weight: bold;
  1569. color: rgba(255, 255, 255, 0.7);
  1570. }
  1571. .app-view-control:hover {
  1572. color: #ffffff;
  1573. background-color: rgba(255, 255, 255, 0.12) !important;
  1574. }
  1575. .app-view-control:active {
  1576. color: #ffffff;
  1577. background-color: rgba(255, 255, 255, 0.3) !important;
  1578. }
  1579. .app-view-control:checked {
  1580. color: #ffffff;
  1581. background-color: rgba(0, 0, 0, 0.01) !important;
  1582. box-shadow: inset 0 2px 0 #ffffff;
  1583. }
  1584. .app-view-control:first-child {
  1585. border-right-width: 0;
  1586. border-radius: 2px;
  1587. }
  1588. .app-view-control:first-child:checked {
  1589. border-radius: 0;
  1590. }
  1591. .app-view-control:last-child {
  1592. border-radius: 2px;
  1593. }
  1594. .app-view-control:last-child:checked {
  1595. border-radius: 0;
  1596. }
  1597. .search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover,
  1598. .list-search-result:focus,
  1599. .list-search-result:selected,
  1600. .list-search-result:hover {
  1601. background-color: rgba(255, 255, 255, 0.12);
  1602. transition-duration: 0ms;
  1603. }
  1604. .search-provider-icon:active, .search-provider-icon:checked,
  1605. .list-search-result:active,
  1606. .list-search-result:checked {
  1607. background-color: rgba(255, 255, 255, 0.3);
  1608. transition-duration: 150ms;
  1609. }
  1610. .app-well-app:hover .overview-icon,
  1611. .app-well-app:focus .overview-icon,
  1612. .app-well-app:selected .overview-icon,
  1613. .app-well-app.app-folder:hover .overview-icon,
  1614. .app-well-app.app-folder:focus .overview-icon,
  1615. .app-well-app.app-folder:selected .overview-icon,
  1616. .show-apps:hover .overview-icon,
  1617. .show-apps:focus .overview-icon,
  1618. .show-apps:selected .overview-icon,
  1619. .grid-search-result:hover .overview-icon,
  1620. .grid-search-result:focus .overview-icon,
  1621. .grid-search-result:selected .overview-icon {
  1622. background-color: rgba(255, 255, 255, 0.12);
  1623. transition-duration: 0ms;
  1624. border-image: none;
  1625. background-image: none;
  1626. }
  1627. .app-well-app:active .overview-icon,
  1628. .app-well-app:checked .overview-icon,
  1629. .app-well-app.app-folder:active .overview-icon,
  1630. .app-well-app.app-folder:checked .overview-icon,
  1631. .show-apps:active .overview-icon,
  1632. .show-apps:checked .overview-icon,
  1633. .grid-search-result:active .overview-icon,
  1634. .grid-search-result:checked .overview-icon {
  1635. background-color: rgba(255, 255, 255, 0.3);
  1636. box-shadow: 0 0 transparent;
  1637. transition-duration: 150ms;
  1638. }
  1639. .app-well-app-running-dot {
  1640. width: 32px;
  1641. height: 2px;
  1642. background-color: #ffffff;
  1643. margin-bottom: 0;
  1644. }
  1645. .search-provider-icon,
  1646. .list-search-result, .app-well-app .overview-icon,
  1647. .app-well-app.app-folder .overview-icon,
  1648. .show-apps .overview-icon,
  1649. .grid-search-result .overview-icon {
  1650. color: #ffffff;
  1651. border-radius: 2px;
  1652. padding: 6px;
  1653. border: none;
  1654. transition-duration: 150ms;
  1655. text-align: center;
  1656. }
  1657. .app-well-app.app-folder > .overview-icon {
  1658. background-color: rgba(255, 255, 255, 0.1);
  1659. }
  1660. .show-apps .show-apps-icon {
  1661. color: rgba(255, 255, 255, 0.7);
  1662. }
  1663. .show-apps:hover .show-apps-icon,
  1664. .show-apps:active .show-apps-icon,
  1665. .show-apps:checked .show-apps-icon,
  1666. .show-apps:focus .show-apps-icon {
  1667. color: #ffffff;
  1668. transition-duration: 150ms;
  1669. }
  1670. .app-folder-popup {
  1671. -arrow-border-radius: 2px;
  1672. -arrow-background-color: rgba(255, 255, 255, 0.1);
  1673. -arrow-base: 24px;
  1674. -arrow-rise: 12px;
  1675. }
  1676. .app-folder-popup-bin {
  1677. padding: 5px;
  1678. }
  1679. .app-folder-icon {
  1680. padding: 5px;
  1681. spacing-rows: 5px;
  1682. spacing-columns: 5px;
  1683. }
  1684. .page-indicator {
  1685. padding: 15px 20px;
  1686. }
  1687. .page-indicator .page-indicator-icon {
  1688. width: 12px;
  1689. height: 12px;
  1690. border-radius: 12px;
  1691. background-image: none;
  1692. background-color: rgba(255, 255, 255, 0.3);
  1693. }
  1694. .page-indicator:hover .page-indicator-icon {
  1695. background-image: none;
  1696. background-color: rgba(255, 255, 255, 0.5);
  1697. }
  1698. .page-indicator:active .page-indicator-icon {
  1699. background-image: none;
  1700. background-color: rgba(255, 255, 255, 0.7);
  1701. }
  1702. .page-indicator:checked .page-indicator-icon {
  1703. background-image: none;
  1704. background-color: #ffffff;
  1705. transition-duration: 0ms;
  1706. }
  1707. .page-indicator:checked:active {
  1708. background-image: none;
  1709. }
  1710. .app-well-app > .overview-icon.overview-icon-with-label,
  1711. .grid-search-result .overview-icon.overview-icon-with-label {
  1712. padding: 10px 8px 5px 8px;
  1713. spacing: 4px;
  1714. }
  1715. .workspace-thumbnails {
  1716. visible-width: 32px;
  1717. spacing: 12px;
  1718. padding: 12px;
  1719. border-radius: 2px 0 0 2px;
  1720. }
  1721. .workspace-thumbnails:rtl {
  1722. border-radius: 0 2px 2px 0;
  1723. }
  1724. .workspace-thumbnails .placeholder {
  1725. background-image: url("assets/dash-placeholder.svg");
  1726. background-size: contain;
  1727. height: 24px;
  1728. }
  1729. .workspace-thumbnail-indicator {
  1730. border: 0 solid #ffffff;
  1731. border-left-width: 2px;
  1732. padding: 6px;
  1733. border-radius: 0;
  1734. }
  1735. .search-display > StBoxLayout,
  1736. .all-apps,
  1737. .frequent-apps > StBoxLayout {
  1738. padding: 0px 88px 10px 88px;
  1739. }
  1740. .workspace-thumbnails {
  1741. color: #ffffff;
  1742. background-color: rgba(255, 255, 255, 0.1);
  1743. border: none;
  1744. }
  1745. .search-statustext, .no-frequent-applications-label {
  1746. font-size: 45px;
  1747. font-weight: 400;
  1748. color: rgba(255, 255, 255, 0.5);
  1749. }
  1750. /* NOTIFICATIONS & MESSAGE TRAY */
  1751. .url-highlighter {
  1752. link-color: #5d03bf;
  1753. }
  1754. .notification-banner {
  1755. font-size: 1em;
  1756. width: 34em;
  1757. min-height: 64px;
  1758. margin: 5px;
  1759. border-radius: 2px;
  1760. color: #ca4c7a;
  1761. background-color: #efefef;
  1762. border: none;
  1763. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1764. }
  1765. .notification-banner:hover {
  1766. background-color: #efefef;
  1767. }
  1768. .notification-banner:focus {
  1769. background-color: #efefef;
  1770. }
  1771. .notification-banner .notification-icon {
  1772. padding: 5px;
  1773. }
  1774. .notification-banner .notification-content {
  1775. padding: 5px;
  1776. spacing: 5px;
  1777. }
  1778. .notification-banner .secondary-icon {
  1779. icon-size: 1.14286em;
  1780. }
  1781. .notification-banner .notification-actions {
  1782. background-color: transparent;
  1783. padding-top: 0;
  1784. padding: 6px;
  1785. spacing: 6px;
  1786. }
  1787. .notification-banner .notification-button {
  1788. min-height: 36px;
  1789. padding: 0 8px;
  1790. border-radius: 2px;
  1791. background-color: transparent;
  1792. color: rgba(202, 76, 122, 0.7);
  1793. font-weight: 500;
  1794. }
  1795. .notification-banner .notification-button:first-child {
  1796. border-radius: 2px;
  1797. }
  1798. .notification-banner .notification-button:last-child {
  1799. border-radius: 2px;
  1800. }
  1801. .notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus {
  1802. background-color: rgba(202, 76, 122, 0.12);
  1803. color: #ca4c7a;
  1804. }
  1805. .notification-banner .notification-button:active {
  1806. background-color: rgba(202, 76, 122, 0.3);
  1807. color: #ca4c7a;
  1808. }
  1809. .summary-source-counter {
  1810. font-size: 1em;
  1811. font-weight: bold;
  1812. height: 1.6em;
  1813. width: 1.6em;
  1814. -shell-counter-overlap-x: 3px;
  1815. -shell-counter-overlap-y: 3px;
  1816. background-color: #ca4c7a;
  1817. color: #ffffff;
  1818. border: 2px solid #ffffff;
  1819. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  1820. border-radius: 0.9em;
  1821. }
  1822. .secondary-icon {
  1823. icon-size: 1.14286em;
  1824. }
  1825. .chat-body {
  1826. spacing: 5px;
  1827. }
  1828. .chat-response {
  1829. margin: 5px;
  1830. }
  1831. .chat-log-message {
  1832. color: #ca4c7a;
  1833. }
  1834. .chat-new-group {
  1835. padding-top: 1em;
  1836. }
  1837. .chat-received {
  1838. padding-left: 4px;
  1839. }
  1840. .chat-received:rtl {
  1841. padding-left: 0px;
  1842. padding-right: 4px;
  1843. }
  1844. .chat-sent {
  1845. padding-left: 18pt;
  1846. color: rgba(202, 76, 122, 0.7);
  1847. }
  1848. .chat-sent:rtl {
  1849. padding-left: 0;
  1850. padding-right: 18pt;
  1851. }
  1852. .chat-meta-message {
  1853. padding-left: 4px;
  1854. font-size: 9pt;
  1855. font-weight: 400;
  1856. color: rgba(202, 76, 122, 0.5);
  1857. }
  1858. .chat-meta-message:rtl {
  1859. padding-left: 0;
  1860. padding-right: 4px;
  1861. }
  1862. .hotplug-transient-box {
  1863. spacing: 6px;
  1864. padding: 2px 72px 2px 12px;
  1865. }
  1866. .hotplug-notification-item {
  1867. padding: 2px 10px;
  1868. }
  1869. .hotplug-notification-item:focus {
  1870. padding: 1px 71px 1px 11px;
  1871. }
  1872. .hotplug-notification-item-icon {
  1873. icon-size: 24px;
  1874. padding: 2px 5px;
  1875. }
  1876. .hotplug-resident-box {
  1877. spacing: 8px;
  1878. }
  1879. .hotplug-resident-mount {
  1880. spacing: 8px;
  1881. border-radius: 2px;
  1882. }
  1883. .hotplug-resident-mount:hover {
  1884. background-color: rgba(202, 76, 122, 0.12);
  1885. }
  1886. .hotplug-resident-mount:active {
  1887. background-color: rgba(202, 76, 122, 0.3);
  1888. }
  1889. .hotplug-resident-mount-label {
  1890. color: inherit;
  1891. padding-left: 6px;
  1892. }
  1893. .hotplug-resident-mount-icon {
  1894. icon-size: 24px;
  1895. padding-left: 6px;
  1896. }
  1897. .hotplug-resident-eject-icon {
  1898. icon-size: 16px;
  1899. }
  1900. .hotplug-resident-eject-button {
  1901. padding: 7px;
  1902. border-radius: 2px;
  1903. color: #ca4c7a;
  1904. }
  1905. /* Eeeky things */
  1906. .magnifier-zoom-region {
  1907. border: 2px solid #ca4c7a;
  1908. }
  1909. .magnifier-zoom-region.full-screen {
  1910. border-width: 0;
  1911. }
  1912. /* On-screen Keyboard */
  1913. .word-suggestions {
  1914. font-size: 12pt;
  1915. font-weight: 400;
  1916. spacing: 12px;
  1917. min-height: 40px;
  1918. }
  1919. #keyboard {
  1920. background-color: rgba(0, 0, 0, 0.3);
  1921. }
  1922. .key-container {
  1923. padding: 4px;
  1924. spacing: 4px;
  1925. }
  1926. .keyboard-key {
  1927. min-height: 72px;
  1928. min-width: 72px;
  1929. font-size: 2em;
  1930. font-weight: 500;
  1931. border-radius: 2px;
  1932. border: none;
  1933. color: inherit;
  1934. color: #ffffff;
  1935. background-color: #ca4c7a;
  1936. border-color: transparent;
  1937. box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  1938. text-shadow: none;
  1939. icon-shadow: none;
  1940. }
  1941. .keyboard-key:focus {
  1942. color: #ca4c7a;
  1943. text-shadow: none;
  1944. icon-shadow: none;
  1945. box-shadow: 0 0 transparent;
  1946. }
  1947. .keyboard-key:hover, .keyboard-key:checked {
  1948. color: #ca4c7a;
  1949. background-color: #ca4c7a;
  1950. border-color: transparent;
  1951. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1952. text-shadow: none;
  1953. icon-shadow: none;
  1954. }
  1955. .keyboard-key:active {
  1956. color: #ca4c7a;
  1957. background-color: #ca4c7a;
  1958. border-color: transparent;
  1959. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  1960. text-shadow: none;
  1961. icon-shadow: none;
  1962. }
  1963. .keyboard-key:grayed {
  1964. background-color: rgba(0, 0, 0, 0.3);
  1965. color: #ffffff;
  1966. border-color: rgba(0, 0, 0, 0.3);
  1967. }
  1968. .keyboard-key.default-key {
  1969. border-color: transparent;
  1970. background-color: #ca4c7a;
  1971. background-size: 24px;
  1972. }
  1973. .keyboard-key.default-key:active {
  1974. background-color: #ca4c7a;
  1975. }
  1976. .keyboard-key.enter-key {
  1977. border-color: transparent;
  1978. background-color: #ca4c7a;
  1979. background-image: url("assets/key-enter.svg");
  1980. }
  1981. .keyboard-key.enter-key:active {
  1982. background-color: #d7779a;
  1983. }
  1984. .keyboard-key.shift-key-lowercase {
  1985. background-image: url("assets/key-shift.svg");
  1986. }
  1987. .keyboard-key.shift-key-uppercase {
  1988. background-image: url("assets/key-shift-uppercase.svg");
  1989. }
  1990. .keyboard-key.shift-key-uppercase:latched {
  1991. background-image: url("assets/key-shift-latched-uppercase.svg");
  1992. }
  1993. .keyboard-key.hide-key {
  1994. background-image: url("assets/key-hide.svg");
  1995. }
  1996. .keyboard-key.layout-key {
  1997. background-image: url("assets/key-layout.svg");
  1998. }
  1999. .keyboard-subkeys {
  2000. color: inherit;
  2001. padding: 5px;
  2002. -arrow-border-radius: 0;
  2003. -arrow-background-color: transparent;
  2004. -arrow-border-width: 0;
  2005. -arrow-border-color: transparent;
  2006. -arrow-base: 0;
  2007. -arrow-rise: 0;
  2008. -boxpointer-gap: 5px;
  2009. background-color: #efefef;
  2010. border-radius: 2px;
  2011. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  2012. }
  2013. .candidate-popup-content {
  2014. padding: 8px;
  2015. spacing: 0;
  2016. }
  2017. .candidate-index {
  2018. padding: 0 4px 0 0;
  2019. color: rgba(202, 76, 122, 0.5);
  2020. }
  2021. .candidate-box:selected .candidate-index {
  2022. color: rgba(255, 255, 255, 0.5);
  2023. }
  2024. .candidate-box {
  2025. transition-duration: 0ms;
  2026. min-height: 32px;
  2027. padding: 0 8px;
  2028. border-radius: 2px;
  2029. }
  2030. .candidate-box:hover {
  2031. background-color: rgba(202, 76, 122, 0.12);
  2032. color: #ca4c7a;
  2033. }
  2034. .candidate-box:active {
  2035. background-color: rgba(202, 76, 122, 0.3);
  2036. color: #ca4c7a;
  2037. }
  2038. .candidate-box:selected {
  2039. background-color: #ca4c7a;
  2040. color: #ffffff;
  2041. }
  2042. .candidate-page-button-box {
  2043. height: 32px;
  2044. }
  2045. .vertical .candidate-page-button-box {
  2046. padding-top: 0;
  2047. }
  2048. .horizontal .candidate-page-button-box {
  2049. padding-left: 0;
  2050. }
  2051. .candidate-page-button {
  2052. min-width: 32px;
  2053. min-height: 32px;
  2054. padding: 0;
  2055. }
  2056. .candidate-page-button-previous {
  2057. border-radius: 2px;
  2058. border-right-width: 0;
  2059. }
  2060. .candidate-page-button-next {
  2061. border-radius: 2px;
  2062. }
  2063. .candidate-page-button-icon {
  2064. icon-size: 1.14286em;
  2065. }
  2066. /* Auth Dialogs & Screen Shield */
  2067. .framed-user-icon {
  2068. background-size: contain;
  2069. border: none;
  2070. color: #ffffff;
  2071. border-radius: 2px;
  2072. }
  2073. .framed-user-icon:hover {
  2074. border-color: #ffffff;
  2075. color: #ffffff;
  2076. }
  2077. .login-dialog-banner-view {
  2078. padding-top: 24px;
  2079. max-width: 23em;
  2080. }
  2081. .login-dialog {
  2082. border: none;
  2083. background-color: transparent;
  2084. }
  2085. .login-dialog StEntry {
  2086. color: #ffffff;
  2087. selection-background-color: rgba(255, 255, 255, 0.3);
  2088. selected-color: #ffffff;
  2089. background-color: rgba(0, 0, 0, 0.01);
  2090. border-color: transparent;
  2091. box-shadow: inset 0 -1px rgba(255, 255, 255, 0.3);
  2092. }
  2093. .login-dialog StEntry:focus {
  2094. border-color: transparent;
  2095. box-shadow: inset 0 -2px #ffffff;
  2096. }
  2097. .login-dialog StEntry:insensitive {
  2098. color: rgba(202, 76, 122, 0.5);
  2099. border-color: transparent;
  2100. box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12);
  2101. color: rgba(255, 255, 255, 0.5);
  2102. }
  2103. .login-dialog .modal-dialog-button-box {
  2104. spacing: 3px;
  2105. }
  2106. .login-dialog .modal-dialog-button {
  2107. padding: 0 16px;
  2108. color: rgba(255, 255, 255, 0.7);
  2109. background-color: transparent;
  2110. border-color: transparent;
  2111. box-shadow: 0 0 transparent;
  2112. text-shadow: none;
  2113. icon-shadow: none;
  2114. }
  2115. .login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus {
  2116. color: #ffffff;
  2117. background-color: rgba(255, 255, 255, 0.12);
  2118. border-color: transparent;
  2119. box-shadow: 0 0 transparent;
  2120. text-shadow: none;
  2121. icon-shadow: none;
  2122. }
  2123. .login-dialog .modal-dialog-button:active {
  2124. color: #ffffff;
  2125. background-color: rgba(255, 255, 255, 0.3);
  2126. border-color: transparent;
  2127. box-shadow: 0 0 transparent;
  2128. text-shadow: none;
  2129. icon-shadow: none;
  2130. }
  2131. .login-dialog .modal-dialog-button:insensitive {
  2132. color: rgba(255, 255, 255, 0.3);
  2133. background-color: transparent;
  2134. border-color: transparent;
  2135. box-shadow: 0 0 transparent;
  2136. text-shadow: none;
  2137. icon-shadow: none;
  2138. }
  2139. .login-dialog .modal-dialog-button:default {
  2140. color: #ffffff;
  2141. background-color: #ca4c7a;
  2142. border-color: transparent;
  2143. box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  2144. text-shadow: none;
  2145. icon-shadow: none;
  2146. }
  2147. .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus {
  2148. color: #ffffff;
  2149. background-color: #ca4c7a;
  2150. border-color: transparent;
  2151. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  2152. text-shadow: none;
  2153. icon-shadow: none;
  2154. }
  2155. .login-dialog .modal-dialog-button:default:active {
  2156. color: #ffffff;
  2157. background-color: #d7779a;
  2158. border-color: transparent;
  2159. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345);
  2160. text-shadow: none;
  2161. icon-shadow: none;
  2162. }
  2163. .login-dialog .modal-dialog-button:default:insensitive {
  2164. color: rgba(255, 255, 255, 0.5);
  2165. background-color: rgba(255, 255, 255, 0.12);
  2166. border-color: transparent;
  2167. box-shadow: 0 0 transparent;
  2168. text-shadow: none;
  2169. icon-shadow: none;
  2170. }
  2171. .login-dialog-logo-bin {
  2172. padding: 24px 0px;
  2173. }
  2174. .login-dialog-banner {
  2175. color: rgba(255, 255, 255, 0.7);
  2176. }
  2177. .login-dialog-button-box {
  2178. spacing: 5px;
  2179. }
  2180. .login-dialog-message-warning {
  2181. color: #caa452;
  2182. }
  2183. .login-dialog-message-hint {
  2184. padding-top: 0;
  2185. padding-bottom: 20px;
  2186. }
  2187. .login-dialog-user-selection-box {
  2188. padding: 100px 0px;
  2189. }
  2190. .login-dialog-not-listed-label {
  2191. padding-left: 2px;
  2192. }
  2193. .login-dialog-not-listed-button:focus .login-dialog-not-listed-label,
  2194. .login-dialog-not-listed-button:hover .login-dialog-not-listed-label {
  2195. color: #ffffff;
  2196. }
  2197. .login-dialog-not-listed-label {
  2198. font-size: 1em;
  2199. font-weight: bold;
  2200. color: rgba(255, 255, 255, 0.7);
  2201. padding-top: 1em;
  2202. }
  2203. .login-dialog-not-listed-label:hover {
  2204. color: #ffffff;
  2205. }
  2206. .login-dialog-not-listed-label:focus {
  2207. background-color: rgba(255, 255, 255, 0.12);
  2208. }
  2209. .login-dialog-user-list-view {
  2210. -st-vfade-offset: 1em;
  2211. }
  2212. .login-dialog-user-list {
  2213. spacing: 12px;
  2214. padding: .2em;
  2215. width: 23em;
  2216. }
  2217. .login-dialog-user-list:expanded .login-dialog-user-list-item:selected {
  2218. background-color: rgba(255, 255, 255, 0.12);
  2219. color: #ffffff;
  2220. }
  2221. .login-dialog-user-list:expanded .login-dialog-user-list-item:hover {
  2222. background-color: rgba(255, 255, 255, 0.12);
  2223. color: #ffffff;
  2224. }
  2225. .login-dialog-user-list:expanded .login-dialog-user-list-item:active {
  2226. background-color: rgba(255, 255, 255, 0.3);
  2227. color: #ffffff;
  2228. }
  2229. .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in {
  2230. border-right: 2px solid #ffffff;
  2231. }
  2232. .login-dialog-user-list-item {
  2233. border-radius: 2px;
  2234. padding: 4px 4px 0;
  2235. color: rgba(255, 255, 255, 0.7);
  2236. }
  2237. .login-dialog-user-list-item:ltr {
  2238. padding-right: 1em;
  2239. }
  2240. .login-dialog-user-list-item:rtl {
  2241. padding-left: 1em;
  2242. }
  2243. .login-dialog-user-list-item:hover {
  2244. background-color: rgba(255, 255, 255, 0.12);
  2245. color: #ffffff;
  2246. }
  2247. .login-dialog-user-list-item:active {
  2248. background-color: rgba(255, 255, 255, 0.3);
  2249. color: #ffffff;
  2250. }
  2251. .login-dialog-user-list-item .login-dialog-timed-login-indicator {
  2252. height: 2px;
  2253. margin: 2px 0 0 0;
  2254. background-color: #ffffff;
  2255. }
  2256. .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator {
  2257. background-color: #ffffff;
  2258. }
  2259. .login-dialog-username,
  2260. .user-widget-label {
  2261. color: #ffffff;
  2262. font-size: 15pt;
  2263. font-weight: 500;
  2264. text-align: left;
  2265. padding-left: 15px;
  2266. }
  2267. .user-widget-label:ltr {
  2268. padding-left: 18px;
  2269. }
  2270. .user-widget-label:rtl {
  2271. padding-right: 18px;
  2272. }
  2273. .login-dialog-prompt-layout {
  2274. padding-top: 24px;
  2275. padding-bottom: 12px;
  2276. spacing: 8px;
  2277. width: 23em;
  2278. }
  2279. .login-dialog-prompt-label {
  2280. color: rgba(255, 255, 255, 0.5);
  2281. font-size: 1em;
  2282. padding-top: 1em;
  2283. }
  2284. .login-dialog-session-list-button StIcon {
  2285. icon-size: 1.25em;
  2286. }
  2287. .login-dialog-session-list-button {
  2288. color: rgba(255, 255, 255, 0.7);
  2289. }
  2290. .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus {
  2291. color: #ffffff;
  2292. }
  2293. .login-dialog-session-list-button:active {
  2294. color: #ffffff;
  2295. }
  2296. .screen-shield-arrows {
  2297. padding-bottom: 3em;
  2298. }
  2299. .screen-shield-arrows Gjs_Arrow {
  2300. color: white;
  2301. width: 80px;
  2302. height: 48px;
  2303. -arrow-thickness: 12px;
  2304. -arrow-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  2305. }
  2306. .screen-shield-clock {
  2307. color: white;
  2308. text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  2309. font-weight: normal;
  2310. text-align: center;
  2311. padding-bottom: 1.5em;
  2312. }
  2313. .screen-shield-clock-time {
  2314. font-size: 112px;
  2315. font-weight: 300;
  2316. text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
  2317. }
  2318. .screen-shield-clock-date {
  2319. font-size: 45px;
  2320. font-weight: 400;
  2321. }
  2322. .screen-shield-notifications-container {
  2323. spacing: 6px;
  2324. width: 30em;
  2325. background-color: transparent;
  2326. max-height: 500px;
  2327. }
  2328. .screen-shield-notifications-container .summary-notification-stack-scrollview {
  2329. padding-top: 0;
  2330. padding-bottom: 0;
  2331. }
  2332. .screen-shield-notifications-container .notification,
  2333. .screen-shield-notifications-container .screen-shield-notification-source {
  2334. padding: 8px;
  2335. border: none;
  2336. background-color: rgba(0, 0, 0, 0.3);
  2337. color: #ffffff;
  2338. border-radius: 2px;
  2339. }
  2340. .screen-shield-notifications-container .notification {
  2341. margin-right: 16px;
  2342. }
  2343. .screen-shield-notification-label {
  2344. min-height: 22px;
  2345. padding: 2px 0px 0px 16px;
  2346. font-weight: bold;
  2347. }
  2348. .screen-shield-notification-count-text {
  2349. min-height: 22px;
  2350. padding: 2px 0px 0px 16px;
  2351. color: rgba(255, 255, 255, 0.7);
  2352. }
  2353. #panel.lock-screen {
  2354. background-color: rgba(0, 0, 0, 0.3);
  2355. }
  2356. .screen-shield-background {
  2357. background: black;
  2358. box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44);
  2359. }
  2360. #lockDialogGroup {
  2361. background: #dfdfdf;
  2362. background-size: cover;
  2363. }
  2364. #LookingGlassDialog {
  2365. background-color: #efefef;
  2366. spacing: 4px;
  2367. padding: 0;
  2368. border: none;
  2369. border-radius: 2px;
  2370. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44);
  2371. }
  2372. #LookingGlassDialog > #Toolbar {
  2373. padding: 0 8px;
  2374. border: none;
  2375. border-radius: 0;
  2376. background-color: rgba(239, 239, 239, 0.01);
  2377. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  2378. }
  2379. #LookingGlassDialog .labels {
  2380. spacing: 0;
  2381. }
  2382. #LookingGlassDialog .notebook-tab {
  2383. -natural-hpadding: 12px;
  2384. -minimum-hpadding: 6px;
  2385. font-weight: bold;
  2386. color: rgba(202, 76, 122, 0.5);
  2387. transition-duration: 150ms;
  2388. padding-left: 16px;
  2389. padding-right: 16px;
  2390. min-height: 36px;
  2391. padding: 0 32px;
  2392. }
  2393. #LookingGlassDialog .notebook-tab:hover {
  2394. box-shadow: inset 0 -2px 0px rgba(202, 76, 122, 0.3);
  2395. color: #ca4c7a;
  2396. text-shadow: none;
  2397. }
  2398. #LookingGlassDialog .notebook-tab:selected {
  2399. border-bottom-width: 0;
  2400. border-color: transparent;
  2401. background-color: rgba(239, 239, 239, 0.01);
  2402. box-shadow: inset 0 -2px 0px #ca4c7a;
  2403. color: #ca4c7a;
  2404. text-shadow: none;
  2405. }
  2406. #LookingGlassDialog StBoxLayout#EvalBox {
  2407. padding: 4px;
  2408. spacing: 4px;
  2409. }
  2410. #LookingGlassDialog StBoxLayout#ResultsArea {
  2411. spacing: 4px;
  2412. }
  2413. .lg-dialog StEntry {
  2414. selection-background-color: #ca4c7a;
  2415. selected-color: #ffffff;
  2416. }
  2417. .lg-dialog .shell-link {
  2418. color: #5d03bf;
  2419. }
  2420. .lg-dialog .shell-link:hover {
  2421. color: #5d03bf;
  2422. }
  2423. .lg-completions-text {
  2424. font-size: 1em;
  2425. font-style: italic;
  2426. }
  2427. .lg-obj-inspector-title {
  2428. spacing: 4px;
  2429. }
  2430. .lg-obj-inspector-button {
  2431. min-height: 36px;
  2432. padding: 0 16px;
  2433. border: none;
  2434. border-radius: 2px;
  2435. font-size: 10.5pt;
  2436. font-weight: 500;
  2437. color: rgba(202, 76, 122, 0.7);
  2438. background-color: transparent;
  2439. border-color: transparent;
  2440. box-shadow: 0 0 transparent;
  2441. text-shadow: none;
  2442. icon-shadow: none;
  2443. }
  2444. .lg-obj-inspector-button:hover {
  2445. color: #ca4c7a;
  2446. background-color: rgba(202, 76, 122, 0.12);
  2447. border-color: transparent;
  2448. box-shadow: 0 0 transparent;
  2449. text-shadow: none;
  2450. icon-shadow: none;
  2451. }
  2452. .lg-obj-inspector-button:active {
  2453. color: #ca4c7a;
  2454. background-color: rgba(202, 76, 122, 0.3);
  2455. border-color: transparent;
  2456. box-shadow: 0 0 transparent;
  2457. text-shadow: none;
  2458. icon-shadow: none;
  2459. }
  2460. .lg-obj-inspector-button:insensitive {
  2461. color: rgba(202, 76, 122, 0.3);
  2462. background-color: transparent;
  2463. border-color: transparent;
  2464. box-shadow: 0 0 transparent;
  2465. text-shadow: none;
  2466. icon-shadow: none;
  2467. }
  2468. .lg-obj-inspector-button:focus {
  2469. color: #ca4c7a;
  2470. text-shadow: none;
  2471. icon-shadow: none;
  2472. box-shadow: 0 0 transparent;
  2473. }
  2474. .lg-obj-inspector-button:hover {
  2475. border: none;
  2476. }
  2477. #lookingGlassExtensions {
  2478. padding: 4px;
  2479. }
  2480. .lg-extensions-list {
  2481. padding: 4px;
  2482. spacing: 6px;
  2483. }
  2484. .lg-extension {
  2485. border: none;
  2486. border-radius: 2px;
  2487. padding: 4px;
  2488. }
  2489. .lg-extension-name {
  2490. font-size: 18pt;
  2491. font-weight: 400;
  2492. }
  2493. .lg-extension-meta {
  2494. spacing: 6px;
  2495. }
  2496. #LookingGlassPropertyInspector {
  2497. background: #efefef;
  2498. border: none;
  2499. border-radius: 2px;
  2500. padding: 6px;
  2501. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44);
  2502. }
  2503. /* Dash to Dock */
  2504. #dashtodockContainer #dash {
  2505. background-color: rgba(0, 0, 0, 0.6);
  2506. }
  2507. #dashtodockContainer:overview #dash {
  2508. background-color: rgba(255, 255, 255, 0.1);
  2509. }
  2510. #dashtodockContainer.extended:overview #dash {
  2511. background-color: transparent;
  2512. }
  2513. #dashtodockContainer.left #dash,
  2514. #dashtodockContainer.right #dash {
  2515. padding: 3px 0;
  2516. }
  2517. #dashtodockContainer.top #dash,
  2518. #dashtodockContainer.bottom #dash {
  2519. padding: 0 3px;
  2520. }
  2521. #dashtodockContainer.extended #dash {
  2522. padding: 0;
  2523. border-radius: 0;
  2524. }
  2525. #dashtodockContainer.left .dash-item-container > StWidget,
  2526. #dashtodockContainer.right .dash-item-container > StWidget,
  2527. #dashtodockContainer.extended.left .dash-item-container > StWidget,
  2528. #dashtodockContainer.extended.right .dash-item-container > StWidget {
  2529. padding: 3px 6px;
  2530. }
  2531. #dashtodockContainer.extended.left .dash-item-container:first-child > StWidget,
  2532. #dashtodockContainer.extended.right .dash-item-container:first-child > StWidget {
  2533. padding: 6px 6px 3px 6px;
  2534. }
  2535. #dashtodockContainer.extended.left .dash-item-container:last-child > StWidget,
  2536. #dashtodockContainer.extended.right .dash-item-container:last-child > StWidget {
  2537. padding: 3px 6px 6px 6px;
  2538. }
  2539. #dashtodockContainer.top .dash-item-container > StWidget,
  2540. #dashtodockContainer.bottom .dash-item-container > StWidget,
  2541. #dashtodockContainer.extended.top .dash-item-container > StWidget,
  2542. #dashtodockContainer.extended.bottom .dash-item-container > StWidget {
  2543. padding: 6px 3px;
  2544. }
  2545. #dashtodockContainer.extended.top .dash-item-container:first-child > StWidget,
  2546. #dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget {
  2547. padding: 6px 3px 6px 6px;
  2548. }
  2549. #dashtodockContainer.extended.top .dash-item-container:last-child > StWidget,
  2550. #dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget {
  2551. padding: 6px 6px 6px 3px;
  2552. }
  2553. #dashtodockContainer .app-well-app-running-dot {
  2554. background-color: transparent;
  2555. }
  2556. #dashtodockContainer .dash-item-container > StWidget {
  2557. background-size: cover;
  2558. }
  2559. #dashtodockContainer.left .dash-item-container > StWidget.running1 {
  2560. background-image: url("assets/dash/left-running1.svg");
  2561. }
  2562. #dashtodockContainer.left .dash-item-container > StWidget.running1.focused {
  2563. background-image: url("assets/dash/left-running1-focused.svg");
  2564. }
  2565. #dashtodockContainer.left .dash-item-container > StWidget.running2 {
  2566. background-image: url("assets/dash/left-running2.svg");
  2567. }
  2568. #dashtodockContainer.left .dash-item-container > StWidget.running2.focused {
  2569. background-image: url("assets/dash/left-running2-focused.svg");
  2570. }
  2571. #dashtodockContainer.left .dash-item-container > StWidget.running3 {
  2572. background-image: url("assets/dash/left-running3.svg");
  2573. }
  2574. #dashtodockContainer.left .dash-item-container > StWidget.running3.focused {
  2575. background-image: url("assets/dash/left-running3-focused.svg");
  2576. }
  2577. #dashtodockContainer.left .dash-item-container > StWidget.running4 {
  2578. background-image: url("assets/dash/left-running4.svg");
  2579. }
  2580. #dashtodockContainer.left .dash-item-container > StWidget.running4.focused {
  2581. background-image: url("assets/dash/left-running4-focused.svg");
  2582. }
  2583. #dashtodockContainer.right .dash-item-container > StWidget.running1 {
  2584. background-image: url("assets/dash/right-running1.svg");
  2585. }
  2586. #dashtodockContainer.right .dash-item-container > StWidget.running1.focused {
  2587. background-image: url("assets/dash/right-running1-focused.svg");
  2588. }
  2589. #dashtodockContainer.right .dash-item-container > StWidget.running2 {
  2590. background-image: url("assets/dash/right-running2.svg");
  2591. }
  2592. #dashtodockContainer.right .dash-item-container > StWidget.running2.focused {
  2593. background-image: url("assets/dash/right-running2-focused.svg");
  2594. }
  2595. #dashtodockContainer.right .dash-item-container > StWidget.running3 {
  2596. background-image: url("assets/dash/right-running3.svg");
  2597. }
  2598. #dashtodockContainer.right .dash-item-container > StWidget.running3.focused {
  2599. background-image: url("assets/dash/right-running3-focused.svg");
  2600. }
  2601. #dashtodockContainer.right .dash-item-container > StWidget.running4 {
  2602. background-image: url("assets/dash/right-running4.svg");
  2603. }
  2604. #dashtodockContainer.right .dash-item-container > StWidget.running4.focused {
  2605. background-image: url("assets/dash/right-running4-focused.svg");
  2606. }
  2607. #dashtodockContainer.top .dash-item-container > StWidget.running1 {
  2608. background-image: url("assets/dash/top-running1.svg");
  2609. }
  2610. #dashtodockContainer.top .dash-item-container > StWidget.running1.focused {
  2611. background-image: url("assets/dash/top-running1-focused.svg");
  2612. }
  2613. #dashtodockContainer.top .dash-item-container > StWidget.running2 {
  2614. background-image: url("assets/dash/top-running2.svg");
  2615. }
  2616. #dashtodockContainer.top .dash-item-container > StWidget.running2.focused {
  2617. background-image: url("assets/dash/top-running2-focused.svg");
  2618. }
  2619. #dashtodockContainer.top .dash-item-container > StWidget.running3 {
  2620. background-image: url("assets/dash/top-running3.svg");
  2621. }
  2622. #dashtodockContainer.top .dash-item-container > StWidget.running3.focused {
  2623. background-image: url("assets/dash/top-running3-focused.svg");
  2624. }
  2625. #dashtodockContainer.top .dash-item-container > StWidget.running4 {
  2626. background-image: url("assets/dash/top-running4.svg");
  2627. }
  2628. #dashtodockContainer.top .dash-item-container > StWidget.running4.focused {
  2629. background-image: url("assets/dash/top-running4-focused.svg");
  2630. }
  2631. #dashtodockContainer.bottom .dash-item-container > StWidget.running1 {
  2632. background-image: url("assets/dash/bottom-running1.svg");
  2633. }
  2634. #dashtodockContainer.bottom .dash-item-container > StWidget.running1.focused {
  2635. background-image: url("assets/dash/bottom-running1-focused.svg");
  2636. }
  2637. #dashtodockContainer.bottom .dash-item-container > StWidget.running2 {
  2638. background-image: url("assets/dash/bottom-running2.svg");
  2639. }
  2640. #dashtodockContainer.bottom .dash-item-container > StWidget.running2.focused {
  2641. background-image: url("assets/dash/bottom-running2-focused.svg");
  2642. }
  2643. #dashtodockContainer.bottom .dash-item-container > StWidget.running3 {
  2644. background-image: url("assets/dash/bottom-running3.svg");
  2645. }
  2646. #dashtodockContainer.bottom .dash-item-container > StWidget.running3.focused {
  2647. background-image: url("assets/dash/bottom-running3-focused.svg");
  2648. }
  2649. #dashtodockContainer.bottom .dash-item-container > StWidget.running4 {
  2650. background-image: url("assets/dash/bottom-running4.svg");
  2651. }
  2652. #dashtodockContainer.bottom .dash-item-container > StWidget.running4.focused {
  2653. background-image: url("assets/dash/bottom-running4-focused.svg");
  2654. }
  2655. /* Simple Dock */
  2656. #dash:desktop {
  2657. background-color: rgba(0, 0, 0, 0.6);
  2658. }
  2659. /* GPaste */
  2660. .popup-menu .search-entry {
  2661. color: #ca4c7a;
  2662. selection-background-color: #ca4c7a;
  2663. selected-color: #ffffff;
  2664. background-color: rgba(239, 239, 239, 0.01);
  2665. border-color: transparent;
  2666. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  2667. }
  2668. .popup-menu .search-entry:focus {
  2669. border-color: transparent;
  2670. box-shadow: inset 0 -2px #ca4c7a;
  2671. color: #ca4c7a;
  2672. }
  2673. .popup-menu .search-entry .search-entry-icon {
  2674. color: rgba(202, 76, 122, 0.5);
  2675. }
  2676. .popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon {
  2677. color: #ca4c7a;
  2678. }