gtk.css 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949
  1. @keyframes ripple_effect {
  2. to {
  3. background-size: 1000% 1000%;
  4. }
  5. }
  6. @keyframes scale_ripple_effect {
  7. to {
  8. background-size: auto, 1000% 1000%;
  9. }
  10. }
  11. @keyframes header_ripple_effect {
  12. from {
  13. background-image: radial-gradient(circle farthest-corner at center, #ca4c7a 0%, transparent 0%);
  14. }
  15. to {
  16. background-image: radial-gradient(circle farthest-corner at center, #ca4c7a 100%, transparent 0%);
  17. }
  18. }
  19. * {
  20. background-clip: padding-box;
  21. -GtkToolButton-icon-spacing: 0;
  22. -GtkTextView-error-underline-color: #ca4c7a;
  23. -GtkScrolledWindow-scrollbar-spacing: 0;
  24. -GtkToolItemGroup-expander-size: 11;
  25. -GtkWidget-text-handle-width: 24;
  26. -GtkWidget-text-handle-height: 24;
  27. -GtkDialog-button-spacing: 4;
  28. -GtkDialog-action-area-border: 0;
  29. outline-style: solid;
  30. outline-width: 2px;
  31. outline-color: transparent;
  32. outline-offset: -4px;
  33. -gtk-outline-radius: 3px;
  34. -gtk-secondary-caret-color: #ca4c7a;
  35. }
  36. notebook:focus tab,
  37. *:focus {
  38. outline-color: alpha(currentColor, 0.24);
  39. }
  40. /***************
  41. * Base States *
  42. ***************/
  43. .background {
  44. background-color: #ffffff;
  45. color: #ca4c7a;
  46. }
  47. /*
  48. These wildcard seems unavoidable, need to investigate.
  49. Wildcards are bad and troublesome, use them with care,
  50. or better, just don't.
  51. Everytime a wildcard is used a kitten dies, painfully.
  52. */
  53. *:disabled {
  54. -gtk-icon-effect: dim;
  55. }
  56. .gtkstyle-fallback {
  57. background-color: #ffffff;
  58. color: #ca4c7a;
  59. }
  60. .gtkstyle-fallback:hover {
  61. background-color: #f2f2f2;
  62. color: #ca4c7a;
  63. }
  64. .gtkstyle-fallback:active {
  65. background-color: #e6e6e6;
  66. color: #ca4c7a;
  67. }
  68. .gtkstyle-fallback:disabled {
  69. background-color: #ffffff;
  70. color: rgba(202, 76, 122, 0.5);
  71. }
  72. .gtkstyle-fallback:selected {
  73. background-color: #ca4c7a;
  74. color: #ffffff;
  75. }
  76. .view {
  77. background-color: #efefef;
  78. color: #ca4c7a;
  79. }
  80. .view:disabled {
  81. color: rgba(202, 76, 122, 0.5);
  82. }
  83. .view:hover, .view:active, .view:selected {
  84. border-radius: 3px;
  85. }
  86. textview text {
  87. background-color: #efefef;
  88. }
  89. textview border {
  90. background-color: #f5f5f5;
  91. color: rgba(202, 76, 122, 0.5);
  92. }
  93. .rubberband,
  94. rubberband,
  95. flowbox rubberband,
  96. treeview.view rubberband,
  97. .content-view rubberband,
  98. .content-view .rubberband {
  99. border: 1px solid #ea6c9a;
  100. background-color: rgba(234, 108, 154, 0.3);
  101. }
  102. flowbox flowboxchild {
  103. padding: 4px;
  104. border-radius: 3px;
  105. }
  106. .content-view .tile:selected {
  107. background-color: transparent;
  108. color: inherit;
  109. }
  110. label {
  111. caret-color: currentColor;
  112. }
  113. label.separator {
  114. color: #ca4c7a;
  115. }
  116. label selection {
  117. background-color: #ca4c7a;
  118. color: #ffffff;
  119. }
  120. label:disabled {
  121. color: rgba(202, 76, 122, 0.5);
  122. }
  123. tab label:disabled,
  124. button label:disabled {
  125. color: inherit;
  126. }
  127. .dim-label, label.separator, .titlebar:not(headerbar) .subtitle,
  128. headerbar .subtitle, .budgie-notification .notification-body, .budgie-switcher .notification-body {
  129. opacity: 0.6;
  130. }
  131. assistant .sidebar {
  132. padding: 4px 0;
  133. }
  134. assistant .sidebar label {
  135. min-height: 36px;
  136. padding: 0 12px;
  137. color: rgba(202, 76, 122, 0.5);
  138. font-weight: 500;
  139. }
  140. assistant .sidebar label.highlight {
  141. color: #ca4c7a;
  142. }
  143. /*********************
  144. * Spinner Animation *
  145. *********************/
  146. @keyframes spin {
  147. to {
  148. -gtk-icon-transform: rotate(1turn);
  149. }
  150. }
  151. spinner {
  152. background: none;
  153. opacity: 0;
  154. -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
  155. }
  156. spinner:checked {
  157. opacity: 1;
  158. animation: spin 1s linear infinite;
  159. }
  160. spinner:checked:disabled {
  161. opacity: 0.5;
  162. }
  163. /****************
  164. * Text Entries *
  165. ****************/
  166. spinbutton:not(.vertical),
  167. entry {
  168. min-height: 36px;
  169. padding: 0 8px;
  170. border-radius: 3px;
  171. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  172. border-image: none;
  173. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  174. background-color: #efefef;
  175. color: #ca4c7a;
  176. }
  177. spinbutton:focus:not(.vertical),
  178. entry:focus {
  179. border-image: none;
  180. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  181. }
  182. spinbutton:disabled:not(.vertical),
  183. entry:disabled {
  184. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  185. background-color: #f5f5f5;
  186. color: rgba(202, 76, 122, 0.5);
  187. }
  188. spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) entry:not(.search),
  189. notebook > stack:not(:only-child) spinbutton:not(.vertical), messagedialog entry, colorchooser .popover.osd spinbutton:not(.vertical), layoutpane entry.search, editortweak entry.search, .raven .raven-background spinbutton:not(.vertical), #login_window entry,
  190. entry.flat {
  191. border-radius: 0;
  192. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  193. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 0%, transparent 0%) 0 0 0/0 0 0px;
  194. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  195. background-color: transparent;
  196. color: #ca4c7a;
  197. }
  198. spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry:focus:not(.search),
  199. notebook > stack:not(:only-child) spinbutton:focus:not(.vertical), messagedialog entry:focus, colorchooser .popover.osd spinbutton:focus:not(.vertical), layoutpane entry.search:focus, editortweak entry.search:focus, .raven .raven-background spinbutton:focus:not(.vertical), #login_window entry:focus,
  200. entry.flat:focus {
  201. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 100%, transparent 0%) 0 0 2/0 0 2px;
  202. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  203. }
  204. spinbutton.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry:disabled:not(.search),
  205. notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), messagedialog entry:disabled, colorchooser .popover.osd spinbutton:disabled:not(.vertical), layoutpane entry.search:disabled, editortweak entry.search:disabled, .raven .raven-background spinbutton:disabled:not(.vertical), #login_window entry:disabled,
  206. entry.flat:disabled {
  207. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.12);
  208. background-color: transparent;
  209. color: rgba(202, 76, 122, 0.5);
  210. }
  211. spinbutton:not(.vertical) image,
  212. entry image {
  213. color: rgba(202, 76, 122, 0.7);
  214. }
  215. spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active,
  216. entry image:hover,
  217. entry image:active {
  218. color: #ca4c7a;
  219. }
  220. spinbutton:not(.vertical) image:disabled,
  221. entry image:disabled {
  222. color: rgba(202, 76, 122, 0.5);
  223. }
  224. spinbutton:not(.vertical) image.left,
  225. entry image.left {
  226. margin-left: 2px;
  227. margin-right: 6px;
  228. }
  229. spinbutton:not(.vertical) image.right,
  230. entry image.right {
  231. margin-left: 6px;
  232. margin-right: 2px;
  233. }
  234. spinbutton:not(.vertical) undershoot.left,
  235. entry undershoot.left {
  236. background-color: transparent;
  237. background-image: linear-gradient(to top, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  238. padding-left: 1px;
  239. background-size: 1px 12px;
  240. background-repeat: repeat-y;
  241. background-origin: content-box;
  242. background-position: left top;
  243. }
  244. spinbutton:not(.vertical) undershoot.right,
  245. entry undershoot.right {
  246. background-color: transparent;
  247. background-image: linear-gradient(to top, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  248. padding-right: 1px;
  249. background-size: 1px 12px;
  250. background-repeat: repeat-y;
  251. background-origin: content-box;
  252. background-position: right top;
  253. }
  254. spinbutton.error:not(.vertical),
  255. entry.error {
  256. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  257. border-image: none;
  258. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  259. background-color: #efefef;
  260. color: #ca4c7a;
  261. }
  262. spinbutton.error:focus:not(.vertical),
  263. entry.error:focus {
  264. border-image: none;
  265. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  266. }
  267. spinbutton.error:disabled:not(.vertical),
  268. entry.error:disabled {
  269. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  270. background-color: #f5f5f5;
  271. color: rgba(202, 76, 122, 0.5);
  272. }
  273. spinbutton.error.flat:not(.vertical), notebook > stack:not(:only-child) entry.error:not(.search),
  274. notebook > stack:not(:only-child) spinbutton.error:not(.vertical), messagedialog entry.error, colorchooser .popover.osd spinbutton.error:not(.vertical), layoutpane entry.error.search, editortweak entry.error.search, .raven .raven-background spinbutton.error:not(.vertical), #login_window entry.error,
  275. entry.error.flat {
  276. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  277. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 0%, transparent 0%) 0 0 0/0 0 0px;
  278. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  279. background-color: transparent;
  280. color: #ca4c7a;
  281. }
  282. spinbutton.error.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.error:focus:not(.search),
  283. notebook > stack:not(:only-child) spinbutton.error:focus:not(.vertical), messagedialog entry.error:focus, colorchooser .popover.osd spinbutton.error:focus:not(.vertical), layoutpane entry.error.search:focus, editortweak entry.error.search:focus, .raven .raven-background spinbutton.error:focus:not(.vertical), #login_window entry.error:focus,
  284. entry.error.flat:focus {
  285. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 100%, transparent 0%) 0 0 2/0 0 2px;
  286. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  287. }
  288. spinbutton.error.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.error:disabled:not(.search),
  289. notebook > stack:not(:only-child) spinbutton.error:disabled:not(.vertical), messagedialog entry.error:disabled, colorchooser .popover.osd spinbutton.error:disabled:not(.vertical), layoutpane entry.error.search:disabled, editortweak entry.error.search:disabled, .raven .raven-background spinbutton.error:disabled:not(.vertical), #login_window entry.error:disabled,
  290. entry.error.flat:disabled {
  291. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.12);
  292. background-color: transparent;
  293. color: rgba(202, 76, 122, 0.5);
  294. }
  295. spinbutton.error:not(.vertical) image,
  296. entry.error image {
  297. color: rgba(255, 255, 255, 0.7);
  298. }
  299. spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active,
  300. entry.error image:hover,
  301. entry.error image:active {
  302. color: #ffffff;
  303. }
  304. spinbutton.error:not(.vertical) image:disabled,
  305. entry.error image:disabled {
  306. color: rgba(255, 255, 255, 0.5);
  307. }
  308. spinbutton.warning:not(.vertical),
  309. entry.warning {
  310. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  311. border-image: none;
  312. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  313. background-color: #caa452;
  314. color: #ffffff;
  315. }
  316. spinbutton.warning:focus:not(.vertical),
  317. entry.warning:focus {
  318. border-image: none;
  319. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  320. }
  321. spinbutton.warning:disabled:not(.vertical),
  322. entry.warning:disabled {
  323. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  324. background-color: #f5f5f5;
  325. color: rgba(202, 76, 122, 0.5);
  326. }
  327. spinbutton.warning.flat:not(.vertical), notebook > stack:not(:only-child) entry.warning:not(.search),
  328. notebook > stack:not(:only-child) spinbutton.warning:not(.vertical), messagedialog entry.warning, colorchooser .popover.osd spinbutton.warning:not(.vertical), layoutpane entry.warning.search, editortweak entry.warning.search, .raven .raven-background spinbutton.warning:not(.vertical), #login_window entry.warning,
  329. entry.warning.flat {
  330. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  331. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #caa452 0%, transparent 0%) 0 0 0/0 0 0px;
  332. box-shadow: inset 0 -1px #caa452;
  333. background-color: transparent;
  334. color: #ca4c7a;
  335. }
  336. spinbutton.warning.flat:focus:not(.vertical), notebook > stack:not(:only-child) entry.warning:focus:not(.search),
  337. notebook > stack:not(:only-child) spinbutton.warning:focus:not(.vertical), messagedialog entry.warning:focus, colorchooser .popover.osd spinbutton.warning:focus:not(.vertical), layoutpane entry.warning.search:focus, editortweak entry.warning.search:focus, .raven .raven-background spinbutton.warning:focus:not(.vertical), #login_window entry.warning:focus,
  338. entry.warning.flat:focus {
  339. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #caa452 100%, transparent 0%) 0 0 2/0 0 2px;
  340. box-shadow: inset 0 -1px #caa452;
  341. }
  342. spinbutton.warning.flat:disabled:not(.vertical), notebook > stack:not(:only-child) entry.warning:disabled:not(.search),
  343. notebook > stack:not(:only-child) spinbutton.warning:disabled:not(.vertical), messagedialog entry.warning:disabled, colorchooser .popover.osd spinbutton.warning:disabled:not(.vertical), layoutpane entry.warning.search:disabled, editortweak entry.warning.search:disabled, .raven .raven-background spinbutton.warning:disabled:not(.vertical), #login_window entry.warning:disabled,
  344. entry.warning.flat:disabled {
  345. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.12);
  346. background-color: transparent;
  347. color: rgba(202, 76, 122, 0.5);
  348. }
  349. spinbutton.warning:not(.vertical) image,
  350. entry.warning image {
  351. color: rgba(255, 255, 255, 0.7);
  352. }
  353. spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active,
  354. entry.warning image:hover,
  355. entry.warning image:active {
  356. color: #ffffff;
  357. }
  358. spinbutton.warning:not(.vertical) image:disabled,
  359. entry.warning image:disabled {
  360. color: rgba(255, 255, 255, 0.5);
  361. }
  362. spinbutton:not(.vertical) progress,
  363. entry progress {
  364. margin: 2px -6px;
  365. border-bottom: 2px solid #ca4c7a;
  366. background-color: transparent;
  367. }
  368. .linked:not(.vertical) > spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) .linked:not(.vertical) > entry:not(.search),
  369. notebook > stack:not(:only-child) .linked:not(.vertical) > spinbutton:not(.vertical), messagedialog .linked:not(.vertical) > entry, colorchooser .popover.osd .linked:not(.vertical) > spinbutton:not(.vertical), layoutpane .linked:not(.vertical) > entry.search, editortweak .linked:not(.vertical) > entry.search, .raven .raven-background .linked:not(.vertical) > spinbutton:not(.vertical), #login_window .linked:not(.vertical) > entry,
  370. .linked.vertical > spinbutton.flat:not(.vertical),
  371. notebook > stack:not(:only-child) .linked.vertical > entry:not(.search),
  372. notebook > stack:not(:only-child) .linked.vertical > spinbutton:not(.vertical),
  373. messagedialog .linked.vertical > entry,
  374. colorchooser .popover.osd .linked.vertical > spinbutton:not(.vertical),
  375. layoutpane .linked.vertical > entry.search,
  376. editortweak .linked.vertical > entry.search,
  377. .raven .raven-background .linked.vertical > spinbutton:not(.vertical),
  378. #login_window .linked.vertical > entry, .linked:not(.vertical) >
  379. entry.flat,
  380. .linked.vertical >
  381. entry.flat {
  382. border-radius: 0;
  383. }
  384. notebook > stack:not(:only-child) treeview entry.flat:not(.search),
  385. notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search),
  386. notebook > stack:not(:only-child) treeview spinbutton:not(.vertical),
  387. treeview entry.flat,
  388. treeview entry {
  389. min-height: 0;
  390. padding: 2px;
  391. border-radius: 0;
  392. background-color: #efefef;
  393. }
  394. notebook > stack:not(:only-child) treeview entry.flat:not(.search),
  395. notebook > stack:not(:only-child) treeview spinbutton.flat:not(.vertical), notebook > stack:not(:only-child) treeview entry.flat:focus:not(.search),
  396. notebook > stack:not(:only-child) treeview spinbutton.flat:focus:not(.vertical), notebook > stack:not(:only-child) treeview entry:not(.search),
  397. notebook > stack:not(:only-child) treeview spinbutton:not(.vertical), notebook > stack:not(:only-child) treeview entry:focus:not(.search),
  398. notebook > stack:not(:only-child) treeview spinbutton:focus:not(.vertical),
  399. treeview entry.flat,
  400. treeview entry.flat:focus,
  401. treeview entry,
  402. treeview entry:focus {
  403. border-image: none;
  404. box-shadow: none;
  405. }
  406. .entry-tag, .documents-entry-tag, .photos-entry-tag {
  407. margin: 2px;
  408. border-radius: 9999px;
  409. box-shadow: none;
  410. background-color: rgba(202, 76, 122, 0.12);
  411. color: #ca4c7a;
  412. }
  413. .entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover {
  414. background-image: image(rgba(202, 76, 122, 0.12));
  415. }
  416. :dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag {
  417. margin-left: 4px;
  418. margin-right: 0;
  419. padding-left: 12px;
  420. padding-right: 8px;
  421. }
  422. :dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag {
  423. margin-left: 0;
  424. margin-right: 4px;
  425. padding-left: 8px;
  426. padding-right: 12px;
  427. }
  428. .entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag {
  429. box-shadow: none;
  430. background-color: transparent;
  431. }
  432. .entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) {
  433. color: rgba(202, 76, 122, 0.7);
  434. }
  435. /***********
  436. * Buttons *
  437. ***********/
  438. @keyframes needs_attention {
  439. from {
  440. background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#ca4c7a), to(transparent));
  441. }
  442. to {
  443. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#ca4c7a), to(transparent));
  444. }
  445. }
  446. button {
  447. min-height: 24px;
  448. min-width: 16px;
  449. padding: 6px 10px;
  450. border-radius: 3px;
  451. font-weight: 500;
  452. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1);
  453. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 9999px transparent;
  454. background-color: #ca4c7a;
  455. background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
  456. background-repeat: no-repeat;
  457. background-position: center;
  458. background-size: 1000% 1000%;
  459. color: #ffffff;
  460. }
  461. button:hover {
  462. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px transparent;
  463. color: #ca4c7a;
  464. }
  465. button:active {
  466. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
  467. animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards;
  468. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 0 0 9999px alpha(currentColor, 0.12);
  469. background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%);
  470. background-size: 0% 0%;
  471. color: #ca4c7a;
  472. }
  473. button:disabled {
  474. box-shadow: none;
  475. background-color: rgba(202, 76, 122, 0.12);
  476. color: rgba(202, 76, 122, 0.3);
  477. }
  478. button:checked {
  479. background-color: #ca4c7a;
  480. color: #ffffff;
  481. }
  482. button:checked:disabled {
  483. background-color: rgba(202, 76, 122, 0.3);
  484. color: rgba(202, 76, 122, 0.5);
  485. }
  486. modelbutton.flat,
  487. .menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, popover.background.menu button,
  488. popover.background button.model, notebook > header > tabs > arrow, scrollbar button, check,
  489. radio, calendar.button, messagedialog.csd .dialog-action-area button, button.sidebar-button, .gedit-search-slider .linked > button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .raven .raven-header:not(.top) button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, .lightdm-gtk-greeter button, :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar) .path-bar button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, toolbar button, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
  490. headerbar button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button, .nemo-window .toolbar button,
  491. button.flat {
  492. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1);
  493. box-shadow: inset 0 0 0 9999px transparent;
  494. background-color: transparent;
  495. background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
  496. background-repeat: no-repeat;
  497. background-position: center;
  498. background-size: 1000% 1000%;
  499. color: rgba(202, 76, 122, 0.7);
  500. }
  501. modelbutton.flat:hover,
  502. .menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, spinbutton.vertical button:hover, popover.background.menu button:hover,
  503. popover.background button.model:hover, notebook > header > tabs > arrow:hover, scrollbar button:hover, check:hover,
  504. radio:hover, calendar.button:hover, messagedialog.csd .dialog-action-area button:hover, button.sidebar-button:hover, .gedit-search-slider .linked > button:hover, #mate-menu button:hover, .budgie-settings-window buttonbox.inline-toolbar button:hover, .raven .raven-header:not(.top) button:hover, .drop-shadow button:hover, .budgie-session-dialog .linked.horizontal > button:hover, .lightdm-gtk-greeter button:hover, :not(headerbar) .caja-pathbar button:hover, .caja-pathbar :not(headerbar) button:hover, :not(headerbar) .path-bar button:hover, layouttabbar button:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, toolbar button:hover, .titlebar:not(headerbar) button:hover:not(.suggested-action):not(.destructive-action),
  505. headerbar button:hover:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:hover, .nemo-window .toolbar button:hover,
  506. button.flat:hover {
  507. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12);
  508. color: #ca4c7a;
  509. }
  510. modelbutton.flat:active,
  511. .menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, popover.background.menu button:active,
  512. popover.background button.model:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active,
  513. radio:active, calendar.button:active, messagedialog.csd .dialog-action-area button:active, button.sidebar-button:active, .gedit-search-slider .linked > button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .raven .raven-header:not(.top) button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, .lightdm-gtk-greeter button:active, :not(headerbar) .caja-pathbar button:active, .caja-pathbar :not(headerbar) button:active, :not(headerbar) .path-bar button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, toolbar button:active, .titlebar:not(headerbar) button:active:not(.suggested-action):not(.destructive-action),
  514. headerbar button:active:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:active, .nemo-window .toolbar button:active,
  515. button.flat:active {
  516. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
  517. animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards;
  518. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12);
  519. background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%);
  520. background-size: 0% 0%;
  521. color: #ca4c7a;
  522. }
  523. modelbutton.flat:disabled,
  524. .menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, popover.background.menu button:disabled,
  525. popover.background button.model:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled,
  526. radio:disabled, calendar.button:disabled, messagedialog.csd .dialog-action-area button:disabled, button.sidebar-button:disabled, .gedit-search-slider .linked > button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .raven .raven-header:not(.top) button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, .lightdm-gtk-greeter button:disabled, :not(headerbar) .caja-pathbar button:disabled, .caja-pathbar :not(headerbar) button:disabled, :not(headerbar) .path-bar button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, toolbar button:disabled, .titlebar:not(headerbar) button:disabled:not(.suggested-action):not(.destructive-action),
  527. headerbar button:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:disabled, .nemo-window .toolbar button:disabled,
  528. button.flat:disabled {
  529. box-shadow: none;
  530. background-color: transparent;
  531. color: rgba(202, 76, 122, 0.3);
  532. }
  533. :not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .path-bar button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, toolbar button:checked, .titlebar:not(headerbar) button:checked:not(.suggested-action):not(.destructive-action),
  534. headerbar button:checked:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked, .nemo-window .toolbar button:checked,
  535. button.flat:checked {
  536. background-color: alpha(currentColor, 0.24);
  537. color: #ca4c7a;
  538. }
  539. :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar) .path-bar button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, toolbar button:checked:disabled, .titlebar:not(headerbar) button:checked:disabled:not(.suggested-action):not(.destructive-action),
  540. headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification button:checked:disabled, .nemo-window .toolbar button:checked:disabled,
  541. button.flat:checked:disabled {
  542. background-color: rgba(202, 76, 122, 0.12);
  543. color: rgba(202, 76, 122, 0.5);
  544. }
  545. button.text-button {
  546. padding-left: 16px;
  547. padding-right: 16px;
  548. }
  549. button.image-button {
  550. min-width: 24px;
  551. padding: 6px;
  552. }
  553. button.text-button.image-button {
  554. border-radius: 3px;
  555. -gtk-outline-radius: 3px;
  556. }
  557. button.text-button.image-button label:first-child {
  558. margin-left: 10px;
  559. }
  560. button.text-button.image-button label:last-child {
  561. margin-right: 10px;
  562. }
  563. button.text-button.image-button image:not(:only-child) {
  564. margin: 0 4px;
  565. }
  566. toolbar .linked > button, .titlebar:not(headerbar) .linked > button:not(.suggested-action):not(.destructive-action),
  567. headerbar .linked > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button, .nemo-window .toolbar .linked > button, toolbar .linked.vertical > button, .titlebar:not(headerbar) .linked.vertical > button:not(.suggested-action):not(.destructive-action),
  568. headerbar .linked.vertical > button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked.vertical > button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked.vertical > button, .nemo-window .toolbar .linked.vertical > button, .linked >
  569. button.flat,
  570. .linked.vertical >
  571. button.flat {
  572. border-radius: 3px;
  573. }
  574. toolbar .linked > button.text-button.image-button, .titlebar:not(headerbar) .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
  575. headerbar .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.text-button.image-button, .nemo-window .toolbar .linked > button.text-button.image-button, toolbar .linked.vertical > button.text-button.image-button, .titlebar:not(headerbar) .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action),
  576. headerbar .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked.vertical > button.text-button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked.vertical > button.text-button.image-button, .nemo-window .toolbar .linked.vertical > button.text-button.image-button, .linked >
  577. button.flat.text-button.image-button,
  578. .linked.vertical >
  579. button.flat.text-button.image-button {
  580. border-radius: 3px;
  581. -gtk-outline-radius: 3px;
  582. }
  583. infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected
  584. button:disabled {
  585. background-color: rgba(255, 255, 255, 0.12);
  586. color: rgba(255, 255, 255, 0.3);
  587. }
  588. row:selected button.sidebar-button, infobar.info button.flat, infobar.question button.flat, infobar.warning button.flat, infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .raven-mpris button.image-button, row:selected
  589. button.flat {
  590. color: rgba(255, 255, 255, 0.7);
  591. }
  592. row:selected button.sidebar-button:hover, infobar.info button.flat:hover, infobar.question button.flat:hover, infobar.warning button.flat:hover, infobar.error button.flat:hover, .mate-panel-menu-bar button:hover, .budgie-panel button:hover, .raven stackswitcher.linked > button:hover, .raven-mpris button.image-button:hover, row:selected button.sidebar-button:active, infobar.info button.flat:active, infobar.question button.flat:active, infobar.warning button.flat:active, infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .raven-mpris button.image-button:active, row:selected
  593. button.flat:hover, row:selected
  594. button.flat:active {
  595. color: #ffffff;
  596. }
  597. row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.question button.flat:disabled, infobar.warning button.flat:disabled, infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .raven-mpris button.image-button:disabled, row:selected
  598. button.flat:disabled {
  599. color: rgba(255, 255, 255, 0.3);
  600. }
  601. row:selected button.sidebar-button:checked, infobar.info button.flat:checked, infobar.question button.flat:checked, infobar.warning button.flat:checked, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .raven-mpris button.image-button:checked, row:selected
  602. button.flat:checked {
  603. background-color: rgba(255, 255, 255, 0.3);
  604. color: #ffffff;
  605. }
  606. row:selected button.sidebar-button:checked:disabled, infobar.info button.flat:checked:disabled, infobar.question button.flat:checked:disabled, infobar.warning button.flat:checked:disabled, infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .raven-mpris button.image-button:checked:disabled, row:selected
  607. button.flat:checked:disabled {
  608. background-color: rgba(255, 255, 255, 0.12);
  609. color: rgba(255, 255, 255, 0.5);
  610. }
  611. button.osd {
  612. padding: 12px 16px;
  613. }
  614. button.osd.image-button {
  615. padding: 12px;
  616. }
  617. button.osd:disabled {
  618. opacity: 0;
  619. }
  620. button.suggested-action {
  621. background-color: #ca4c7a;
  622. color: #ffffff;
  623. }
  624. button.suggested-action:disabled {
  625. box-shadow: none;
  626. background-color: rgba(202, 76, 122, 0.12);
  627. color: rgba(202, 76, 122, 0.3);
  628. }
  629. button.suggested-action:checked {
  630. background-color: #da82a2;
  631. }
  632. button.suggested-action.flat {
  633. background-color: transparent;
  634. color: #ca4c7a;
  635. }
  636. button.suggested-action.flat:disabled {
  637. box-shadow: none;
  638. background-color: transparent;
  639. color: rgba(202, 76, 122, 0.3);
  640. }
  641. button.suggested-action.flat:checked {
  642. background-color: rgba(202, 76, 122, 0.3);
  643. }
  644. button.destructive-action {
  645. background-color: #ca4c7a;
  646. color: #ffffff;
  647. }
  648. button.destructive-action:disabled {
  649. box-shadow: none;
  650. background-color: rgba(202, 76, 122, 0.12);
  651. color: rgba(202, 76, 122, 0.3);
  652. }
  653. button.destructive-action:checked {
  654. background-color: #da82a2;
  655. }
  656. button.destructive-action.flat {
  657. background-color: transparent;
  658. color: #ca4c7a;
  659. }
  660. button.destructive-action.flat:disabled {
  661. box-shadow: none;
  662. background-color: transparent;
  663. color: rgba(202, 76, 122, 0.3);
  664. }
  665. button.destructive-action.flat:checked {
  666. background-color: rgba(202, 76, 122, 0.3);
  667. }
  668. .stack-switcher >
  669. button {
  670. outline-offset: -4px;
  671. }
  672. .stack-switcher >
  673. button > label {
  674. padding-left: 6px;
  675. padding-right: 6px;
  676. }
  677. .stack-switcher >
  678. button > image {
  679. padding-left: 6px;
  680. padding-right: 6px;
  681. padding-top: 3px;
  682. padding-bottom: 3px;
  683. }
  684. .stack-switcher >
  685. button.text-button {
  686. padding-left: 10px;
  687. padding-right: 10px;
  688. }
  689. .stack-switcher >
  690. button.image-button {
  691. padding-left: 4px;
  692. padding-right: 4px;
  693. }
  694. .stack-switcher >
  695. button.needs-attention:checked > label,
  696. .stack-switcher >
  697. button.needs-attention:checked > image {
  698. animation: none;
  699. background-image: none;
  700. }
  701. .primary-toolbar
  702. button {
  703. -gtk-icon-shadow: none;
  704. }
  705. button.image-button, toolbar .linked > button.image-button, .titlebar:not(headerbar) .linked > button.image-button:not(.suggested-action):not(.destructive-action),
  706. headerbar .linked > button.image-button:not(.suggested-action):not(.destructive-action), actionbar > revealer > box .linked > button.image-button:not(.suggested-action):not(.destructive-action):not(.server-list-button), .app-notification .linked > button.image-button, .nemo-window .toolbar .linked > button.image-button, toolbar .linked.vertical > button.image-button,
  707. headerbar .linked.vertical > button.image-button:not(.suggested-action):not(.destructive-action), .app-notification .linked.vertical > button.image-button, .nemo-window .toolbar .linked.vertical > button.image-button, .linked > button.flat.image-button,
  708. .linked.vertical > button.flat.image-button, .inline-toolbar button:not(.text-button), check,
  709. radio, button.titlebutton, .nautilus-window headerbar > revealer > button, .raven .raven-header:not(.top) button.image-button, .raven .expander-button,
  710. button.close,
  711. button.circular {
  712. border-radius: 9999px;
  713. -gtk-outline-radius: 9999px;
  714. }
  715. spinbutton:not(.vertical) button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked > button, .pluma-window paned.horizontal box.vertical box.horizontal button.flat {
  716. min-height: 24px;
  717. min-width: 24px;
  718. padding: 0;
  719. border-radius: 9999px;
  720. -gtk-outline-radius: 9999px;
  721. }
  722. .stack-switcher > button.needs-attention > label,
  723. .stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
  724. animation: needs_attention 250ms cubic-bezier(0, 0, 0.2, 1) forwards;
  725. background-repeat: no-repeat;
  726. background-position: right 3px;
  727. background-size: 6px 6px;
  728. }
  729. .stack-switcher > button.needs-attention > label:dir(rtl),
  730. .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) {
  731. background-position: left 3px;
  732. }
  733. .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button, .linked:not(.vertical) > combobox > box > button.combo {
  734. border-radius: 0;
  735. -gtk-outline-radius: 3px;
  736. }
  737. .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child, combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:first-child > box > button.combo {
  738. border-top-left-radius: 3px;
  739. border-bottom-left-radius: 3px;
  740. }
  741. .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child, combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:last-child > box > button.combo {
  742. border-top-right-radius: 3px;
  743. border-bottom-right-radius: 3px;
  744. }
  745. .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo {
  746. border-radius: 3px;
  747. }
  748. .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button, .linked.vertical > combobox > box > button.combo {
  749. border-radius: 0;
  750. -gtk-outline-radius: 3px;
  751. }
  752. .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child, .linked.vertical > combobox:first-child > box > button.combo {
  753. border-top-left-radius: 3px;
  754. border-top-right-radius: 3px;
  755. }
  756. .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child, .linked.vertical > combobox:last-child > box > button.combo {
  757. border-bottom-left-radius: 3px;
  758. border-bottom-right-radius: 3px;
  759. }
  760. .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child, .linked.vertical > combobox:only-child > box > button.combo {
  761. border-radius: 3px;
  762. }
  763. /* menu buttons */
  764. modelbutton.flat,
  765. .menuitem.button.flat {
  766. min-height: 28px;
  767. padding: 0 8px;
  768. border-radius: 3px;
  769. color: inherit;
  770. }
  771. modelbutton.flat arrow {
  772. background: none;
  773. }
  774. modelbutton.flat arrow:hover {
  775. background: none;
  776. }
  777. modelbutton.flat arrow.left {
  778. -gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
  779. }
  780. modelbutton.flat arrow.right {
  781. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  782. }
  783. button.color {
  784. min-height: 24px;
  785. min-width: 24px;
  786. padding: 6px;
  787. }
  788. /*********
  789. * Links *
  790. *********/
  791. *:link, button:link,
  792. button:visited, *:link:hover, button:hover:link,
  793. button:hover:visited, *:link:active, button:active:link,
  794. button:active:visited {
  795. color: #5d03bf;
  796. }
  797. *:link:visited,
  798. button:visited, *:link:visited:hover,
  799. button:visited:hover, *:link:visited:active,
  800. button:visited:active {
  801. color: #b903bd;
  802. }
  803. infobar.info *:link, infobar.info button:link,
  804. infobar.info button:visited, infobar.question *:link, infobar.question button:link,
  805. infobar.question button:visited, infobar.warning *:link, infobar.warning button:link,
  806. infobar.warning button:visited, infobar.error *:link, infobar.error button:link,
  807. infobar.error button:visited, *:link:selected, button:selected:link,
  808. button:selected:visited, .selection-mode.titlebar:not(headerbar) .subtitle:link,
  809. headerbar.selection-mode .subtitle:link,
  810. *:selected *:link,
  811. *:selected button:link,
  812. *:selected button:visited {
  813. color: #ffffff;
  814. }
  815. button:link > label,
  816. button:visited > label {
  817. text-decoration-line: underline;
  818. }
  819. /*****************
  820. * GtkSpinButton *
  821. *****************/
  822. spinbutton:not(.vertical) {
  823. padding: 0;
  824. }
  825. notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled,
  826. spinbutton:not(.vertical) entry {
  827. min-width: 32px;
  828. margin: 0;
  829. border-image: none;
  830. border-radius: 0;
  831. box-shadow: none;
  832. background-color: transparent;
  833. }
  834. spinbutton:not(.vertical) button {
  835. border: solid 6px transparent;
  836. }
  837. spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) {
  838. margin-left: -3px;
  839. }
  840. spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) {
  841. margin-right: -3px;
  842. }
  843. spinbutton.vertical:disabled {
  844. color: rgba(202, 76, 122, 0.5);
  845. }
  846. spinbutton.vertical:drop(active) {
  847. box-shadow: none;
  848. }
  849. spinbutton.vertical entry {
  850. min-height: 36px;
  851. min-width: 48px;
  852. padding: 0;
  853. }
  854. spinbutton.vertical button {
  855. min-height: 36px;
  856. min-width: 48px;
  857. padding: 0;
  858. }
  859. spinbutton.vertical button.up {
  860. border-radius: 3px 3px 0 0;
  861. }
  862. spinbutton.vertical button.down {
  863. border-radius: 0 0 3px 3px;
  864. }
  865. treeview spinbutton:not(.vertical) {
  866. min-height: 0;
  867. border-style: none;
  868. border-radius: 0;
  869. }
  870. treeview spinbutton:not(.vertical) entry {
  871. min-height: 0;
  872. padding: 1px 2px;
  873. }
  874. /**************
  875. * ComboBoxes *
  876. **************/
  877. combobox arrow {
  878. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  879. min-height: 16px;
  880. min-width: 16px;
  881. }
  882. combobox decoration,
  883. combobox button.combo:checked {
  884. transition: none;
  885. }
  886. combobox button.combo cellview:dir(ltr) {
  887. margin-left: -2px;
  888. }
  889. combobox button.combo cellview:dir(rtl) {
  890. margin-right: -2px;
  891. }
  892. combobox #gtk-combobox-popup-menu {
  893. padding: 2px 0;
  894. }
  895. combobox #gtk-combobox-popup-menu menuitem {
  896. min-height: 32px;
  897. padding: 0 8px;
  898. }
  899. combobox #gtk-combobox-popup-menu > arrow.top {
  900. margin-top: -2px;
  901. }
  902. combobox #gtk-combobox-popup-menu > arrow.bottom {
  903. margin-top: 4px;
  904. margin-bottom: -6px;
  905. }
  906. combobox:drop(active) {
  907. box-shadow: none;
  908. }
  909. notebook > stack:not(:only-child) button.combo, .raven .raven-background button.combo, #login_window #user_combobox button {
  910. border-radius: 0;
  911. background-image: none;
  912. font-weight: inherit;
  913. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  914. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 0%, transparent 0%) 0 0 0/0 0 0px;
  915. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.3);
  916. background-color: transparent;
  917. color: #ca4c7a;
  918. }
  919. notebook > stack:not(:only-child) button.combo:hover, .raven .raven-background button.combo:hover, #login_window #user_combobox button:hover {
  920. box-shadow: inset 0 -2px rgba(202, 76, 122, 0.5);
  921. }
  922. notebook > stack:not(:only-child) button.combo:checked, .raven .raven-background button.combo:checked, #login_window #user_combobox button:checked {
  923. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 100%, transparent 0%) 0 0 2/0 0 2px;
  924. }
  925. notebook > stack:not(:only-child) button.combo:disabled, .raven .raven-background button.combo:disabled, #login_window #user_combobox button:disabled {
  926. box-shadow: inset 0 -1px rgba(202, 76, 122, 0.12);
  927. color: rgba(202, 76, 122, 0.5);
  928. }
  929. /************
  930. * Toolbars *
  931. ************/
  932. toolbar {
  933. -GtkWidget-window-dragging: true;
  934. padding: 2px;
  935. background-color: #ffffff;
  936. }
  937. .osd toolbar {
  938. background-color: transparent;
  939. }
  940. toolbar.osd, .app-notification, frame.documents-dropdown {
  941. transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  942. padding: 6px;
  943. border-radius: 3px;
  944. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
  945. background-color: #efefef;
  946. }
  947. toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop {
  948. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
  949. }
  950. toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown {
  951. border-radius: 0;
  952. }
  953. toolbar.horizontal > separator {
  954. margin: 2px;
  955. }
  956. toolbar.vertical > separator {
  957. margin: 2px;
  958. }
  959. toolbar:not(.inline-toolbar):not(.osd) scale,
  960. toolbar:not(.inline-toolbar):not(.osd) entry,
  961. toolbar:not(.inline-toolbar):not(.osd) spinbutton,
  962. toolbar:not(.inline-toolbar):not(.osd) button {
  963. margin: 2px;
  964. }
  965. toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
  966. toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
  967. toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) {
  968. margin-left: 0;
  969. }
  970. toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
  971. toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
  972. toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) {
  973. margin-right: 0;
  974. }
  975. toolbar:not(.inline-toolbar):not(.osd) spinbutton entry,
  976. toolbar:not(.inline-toolbar):not(.osd) spinbutton button {
  977. margin: 0;
  978. }
  979. toolbar:not(.inline-toolbar):not(.osd) switch {
  980. margin: 8px 2px;
  981. }
  982. .inline-toolbar {
  983. padding: 6px;
  984. border-style: solid;
  985. border-width: 0 1px 1px;
  986. border-color: rgba(0, 0, 0, 0.12);
  987. background-color: #f5f5f5;
  988. }
  989. searchbar > revealer > box,
  990. .location-bar {
  991. padding: 6px;
  992. border-style: solid;
  993. border-width: 0 0 1px;
  994. border-color: rgba(0, 0, 0, 0.12);
  995. background-color: #ffffff;
  996. background-clip: border-box;
  997. }
  998. searchbar > revealer > box {
  999. margin: -6px;
  1000. padding: 6px;
  1001. }
  1002. /***************
  1003. * Header bars *
  1004. ***************/
  1005. .titlebar:not(headerbar),
  1006. headerbar {
  1007. transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1), color 250ms cubic-bezier(0, 0, 0.2, 1);
  1008. min-height: 48px;
  1009. padding: 0 6px;
  1010. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
  1011. background-color: #ffffff;
  1012. color: #ca4c7a;
  1013. }
  1014. .titlebar:disabled:not(headerbar) :not(button) > label,
  1015. headerbar:disabled :not(button) > label {
  1016. color: rgba(202, 76, 122, 0.5);
  1017. }
  1018. .titlebar:backdrop:not(headerbar),
  1019. headerbar:backdrop {
  1020. color: rgba(202, 76, 122, 0.7);
  1021. }
  1022. .titlebar:backdrop:disabled:not(headerbar) :not(button) > label,
  1023. headerbar:backdrop:disabled :not(button) > label {
  1024. color: rgba(202, 76, 122, 0.3);
  1025. }
  1026. .titlebar:not(headerbar) .title,
  1027. headerbar .title {
  1028. padding: 0 12px;
  1029. font-weight: bold;
  1030. }
  1031. .titlebar:not(headerbar) .subtitle,
  1032. headerbar .subtitle {
  1033. padding: 0 12px;
  1034. font-size: smaller;
  1035. }
  1036. .titlebar:not(headerbar) .linked:not(.vertical) > entry:not(.flat),
  1037. headerbar .linked:not(.vertical) > entry:not(.flat) {
  1038. border-radius: 3px;
  1039. }
  1040. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
  1041. headerbar button:not(.suggested-action):not(.destructive-action) {
  1042. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 0%, transparent 0%) 0 0 0/0 0 0px;
  1043. color: rgba(202, 76, 122, 0.7);
  1044. }
  1045. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active,
  1046. headerbar button:not(.suggested-action):not(.destructive-action):hover,
  1047. headerbar button:not(.suggested-action):not(.destructive-action):active {
  1048. color: #ca4c7a;
  1049. }
  1050. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled,
  1051. headerbar button:not(.suggested-action):not(.destructive-action):disabled {
  1052. color: rgba(202, 76, 122, 0.3);
  1053. }
  1054. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
  1055. headerbar button:not(.suggested-action):not(.destructive-action):checked {
  1056. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 100%, transparent 0%) 0 0 2/0 0 2px;
  1057. color: #ca4c7a;
  1058. }
  1059. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
  1060. headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
  1061. color: rgba(202, 76, 122, 0.5);
  1062. }
  1063. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
  1064. headerbar button:not(.suggested-action):not(.destructive-action):checked,
  1065. headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
  1066. background-color: transparent;
  1067. }
  1068. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop,
  1069. headerbar button:not(.suggested-action):not(.destructive-action):backdrop {
  1070. color: rgba(202, 76, 122, 0.5);
  1071. }
  1072. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:hover, .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:active,
  1073. headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover,
  1074. headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active {
  1075. color: rgba(202, 76, 122, 0.7);
  1076. }
  1077. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled,
  1078. headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
  1079. color: rgba(202, 76, 122, 0.3);
  1080. }
  1081. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked,
  1082. headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked {
  1083. color: rgba(202, 76, 122, 0.7);
  1084. }
  1085. .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled,
  1086. headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
  1087. color: rgba(202, 76, 122, 0.3);
  1088. }
  1089. .titlebar:not(headerbar) button.suggested-action:disabled, .titlebar:not(headerbar) button.destructive-action:disabled,
  1090. headerbar button.suggested-action:disabled,
  1091. headerbar button.destructive-action:disabled {
  1092. background-color: rgba(202, 76, 122, 0.12);
  1093. color: rgba(202, 76, 122, 0.5);
  1094. }
  1095. .selection-mode.titlebar:not(headerbar),
  1096. headerbar.selection-mode {
  1097. transition: background-color 0.00001s 250ms, color 250ms cubic-bezier(0, 0, 0.2, 1);
  1098. animation: header_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1);
  1099. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.2);
  1100. background-color: #ca4c7a;
  1101. color: #ffffff;
  1102. }
  1103. .selection-mode.titlebar:backdrop:not(headerbar),
  1104. headerbar.selection-mode:backdrop {
  1105. color: rgba(255, 255, 255, 0.7);
  1106. }
  1107. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action),
  1108. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) {
  1109. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px;
  1110. color: #ffffff;
  1111. }
  1112. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):disabled,
  1113. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled {
  1114. color: rgba(255, 255, 255, 0.5);
  1115. }
  1116. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked,
  1117. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked {
  1118. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px;
  1119. color: #ffffff;
  1120. }
  1121. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):checked:disabled,
  1122. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled {
  1123. color: rgba(255, 255, 255, 0.5);
  1124. }
  1125. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop,
  1126. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop {
  1127. color: rgba(255, 255, 255, 0.7);
  1128. }
  1129. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:disabled,
  1130. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
  1131. color: rgba(255, 255, 255, 0.3);
  1132. }
  1133. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked,
  1134. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked {
  1135. color: rgba(255, 255, 255, 0.7);
  1136. }
  1137. .selection-mode.titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled,
  1138. headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
  1139. color: rgba(255, 255, 255, 0.3);
  1140. }
  1141. .selection-mode.titlebar:not(headerbar) .selection-menu,
  1142. headerbar.selection-mode .selection-menu {
  1143. padding-left: 16px;
  1144. padding-right: 16px;
  1145. }
  1146. .selection-mode.titlebar:not(headerbar) .selection-menu arrow,
  1147. headerbar.selection-mode .selection-menu arrow {
  1148. -GtkArrow-arrow-scaling: 1;
  1149. }
  1150. .selection-mode.titlebar:not(headerbar) .selection-menu .arrow,
  1151. headerbar.selection-mode .selection-menu .arrow {
  1152. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1153. }
  1154. .tiled .titlebar:not(headerbar),
  1155. .tiled-top .titlebar:not(headerbar),
  1156. .tiled-right .titlebar:not(headerbar),
  1157. .tiled-bottom .titlebar:not(headerbar),
  1158. .tiled-left .titlebar:not(headerbar),
  1159. .maximized .titlebar:not(headerbar),
  1160. .fullscreen .titlebar:not(headerbar), .tiled
  1161. headerbar,
  1162. .tiled-top
  1163. headerbar,
  1164. .tiled-right
  1165. headerbar,
  1166. .tiled-bottom
  1167. headerbar,
  1168. .tiled-left
  1169. headerbar,
  1170. .maximized
  1171. headerbar,
  1172. .fullscreen
  1173. headerbar {
  1174. border-radius: 0;
  1175. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1176. }
  1177. .default-decoration.titlebar:not(headerbar),
  1178. headerbar.default-decoration {
  1179. min-height: 24px;
  1180. padding: 6px;
  1181. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  1182. }
  1183. .tiled .default-decoration.titlebar:not(headerbar),
  1184. .maximized .default-decoration.titlebar:not(headerbar),
  1185. .fullscreen .default-decoration.titlebar:not(headerbar), .tiled
  1186. headerbar.default-decoration,
  1187. .maximized
  1188. headerbar.default-decoration,
  1189. .fullscreen
  1190. headerbar.default-decoration {
  1191. box-shadow: none;
  1192. }
  1193. .default-decoration.titlebar:not(headerbar) button.titlebutton,
  1194. headerbar.default-decoration button.titlebutton {
  1195. min-height: 24px;
  1196. min-width: 24px;
  1197. margin: 0;
  1198. padding: 0;
  1199. }
  1200. .background:not(.csd) .default-decoration.titlebar:not(headerbar) button.titlebutton:active, .background:not(.csd)
  1201. headerbar.default-decoration button.titlebutton:active {
  1202. background-size: 1000% 1000%;
  1203. }
  1204. headerbar entry,
  1205. headerbar spinbutton,
  1206. headerbar button {
  1207. margin-top: 6px;
  1208. margin-bottom: 6px;
  1209. }
  1210. headerbar switch {
  1211. margin-top: 12px;
  1212. margin-bottom: 12px;
  1213. }
  1214. headerbar spinbutton button {
  1215. margin-top: 0;
  1216. margin-bottom: 0;
  1217. }
  1218. .background .titlebar {
  1219. border-top-left-radius: 3px;
  1220. border-top-right-radius: 3px;
  1221. }
  1222. .background.tiled .titlebar,
  1223. .background.tiled-top .titlebar,
  1224. .background.tiled-right .titlebar,
  1225. .background.tiled-bottom .titlebar,
  1226. .background.tiled-left .titlebar,
  1227. .background.maximized .titlebar,
  1228. .background.solid-csd .titlebar {
  1229. border-top-left-radius: 0;
  1230. border-top-right-radius: 0;
  1231. }
  1232. window separator:first-child + headerbar,
  1233. window headerbar:first-child {
  1234. border-top-left-radius: 3px;
  1235. }
  1236. window headerbar:last-child {
  1237. border-top-right-radius: 3px;
  1238. }
  1239. window stack headerbar:first-child, window stack headerbar:last-child {
  1240. border-top-left-radius: 3px;
  1241. border-top-right-radius: 3px;
  1242. }
  1243. window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child,
  1244. window.tiled-top headerbar,
  1245. window.tiled-top headerbar:first-child,
  1246. window.tiled-top headerbar:last-child,
  1247. window.tiled-top headerbar:only-child,
  1248. window.tiled-right headerbar,
  1249. window.tiled-right headerbar:first-child,
  1250. window.tiled-right headerbar:last-child,
  1251. window.tiled-right headerbar:only-child,
  1252. window.tiled-bottom headerbar,
  1253. window.tiled-bottom headerbar:first-child,
  1254. window.tiled-bottom headerbar:last-child,
  1255. window.tiled-bottom headerbar:only-child,
  1256. window.tiled-left headerbar,
  1257. window.tiled-left headerbar:first-child,
  1258. window.tiled-left headerbar:last-child,
  1259. window.tiled-left headerbar:only-child,
  1260. window.maximized headerbar,
  1261. window.maximized headerbar:first-child,
  1262. window.maximized headerbar:last-child,
  1263. window.maximized headerbar:only-child,
  1264. window.fullscreen headerbar,
  1265. window.fullscreen headerbar:first-child,
  1266. window.fullscreen headerbar:last-child,
  1267. window.fullscreen headerbar:only-child,
  1268. window.solid-csd headerbar,
  1269. window.solid-csd headerbar:first-child,
  1270. window.solid-csd headerbar:last-child,
  1271. window.solid-csd headerbar:only-child {
  1272. border-top-left-radius: 0;
  1273. border-top-right-radius: 0;
  1274. }
  1275. window.csd > .titlebar:not(headerbar) {
  1276. padding: 0;
  1277. background-color: transparent;
  1278. background-image: none;
  1279. border-style: none;
  1280. box-shadow: none;
  1281. }
  1282. .titlebar:not(headerbar) > separator {
  1283. background-color: #ffffff;
  1284. background-image: image(rgba(0, 0, 0, 0.12));
  1285. }
  1286. /************
  1287. * Pathbars *
  1288. ************/
  1289. .caja-pathbar button,
  1290. .path-bar button {
  1291. padding-left: 6px;
  1292. padding-right: 6px;
  1293. }
  1294. .caja-pathbar button label:not(:only-child):first-child,
  1295. .path-bar button label:not(:only-child):first-child {
  1296. margin-left: 4px;
  1297. }
  1298. .caja-pathbar button label:not(:only-child):last-child,
  1299. .path-bar button label:not(:only-child):last-child {
  1300. margin-right: 4px;
  1301. }
  1302. .caja-pathbar button.slider-button,
  1303. .path-bar button.slider-button {
  1304. padding-left: 4px;
  1305. padding-right: 4px;
  1306. }
  1307. :not(headerbar) .caja-pathbar button, .caja-pathbar :not(headerbar) button, :not(headerbar)
  1308. .path-bar button {
  1309. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 0%, transparent 0%) 0 0 0/0 0 0px;
  1310. border-radius: 3px;
  1311. }
  1312. :not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar)
  1313. .path-bar button:checked {
  1314. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #ca4c7a 100%, transparent 0%) 0 0 2/0 0 2px;
  1315. }
  1316. :not(headerbar) .caja-pathbar button:checked, .caja-pathbar :not(headerbar) button:checked, :not(headerbar) .caja-pathbar button:checked:disabled, .caja-pathbar :not(headerbar) button:checked:disabled, :not(headerbar)
  1317. .path-bar button:checked, :not(headerbar)
  1318. .path-bar button:checked:disabled {
  1319. background-color: transparent;
  1320. }
  1321. /**************
  1322. * Tree Views *
  1323. **************/
  1324. treeview.view {
  1325. border-left-color: rgba(202, 76, 122, 0.3);
  1326. border-top-color: rgba(0, 0, 0, 0.12);
  1327. }
  1328. * {
  1329. -GtkTreeView-horizontal-separator: 4;
  1330. -GtkTreeView-grid-line-width: 1;
  1331. -GtkTreeView-grid-line-pattern: '';
  1332. -GtkTreeView-tree-line-width: 1;
  1333. -GtkTreeView-tree-line-pattern: '';
  1334. -GtkTreeView-expander-size: 16;
  1335. }
  1336. treeview.view:selected {
  1337. border-left-color: rgba(255, 255, 255, 0.3);
  1338. }
  1339. treeview.view:hover, treeview.view:active, treeview.view:selected {
  1340. border-radius: 0;
  1341. }
  1342. treeview.view.separator {
  1343. min-height: 5px;
  1344. color: rgba(0, 0, 0, 0.12);
  1345. }
  1346. treeview.view:drop(active) {
  1347. border-style: solid none;
  1348. border-width: 1px;
  1349. border-color: #ca4c7a;
  1350. }
  1351. treeview.view:drop(active).after {
  1352. border-top-style: none;
  1353. }
  1354. treeview.view:drop(active).before {
  1355. border-bottom-style: none;
  1356. }
  1357. treeview.view.expander {
  1358. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1359. -gtk-icon-transform: rotate(-90deg);
  1360. color: rgba(202, 76, 122, 0.7);
  1361. }
  1362. treeview.view.expander:dir(rtl) {
  1363. -gtk-icon-transform: rotate(90deg);
  1364. }
  1365. treeview.view.expander:checked {
  1366. -gtk-icon-transform: unset;
  1367. }
  1368. treeview.view.expander:hover, treeview.view.expander:active {
  1369. color: #ca4c7a;
  1370. }
  1371. treeview.view.expander:disabled {
  1372. color: rgba(202, 76, 122, 0.3);
  1373. }
  1374. treeview.view.expander:selected {
  1375. color: rgba(255, 255, 255, 0.7);
  1376. }
  1377. treeview.view.expander:selected:hover, treeview.view.expander:selected:active {
  1378. color: #ffffff;
  1379. }
  1380. treeview.view.expander:selected:disabled {
  1381. color: rgba(255, 255, 255, 0.3);
  1382. }
  1383. treeview.view.progressbar {
  1384. border-bottom: 4px solid #ca4c7a;
  1385. box-shadow: none;
  1386. background-color: transparent;
  1387. }
  1388. treeview.view.progressbar:selected {
  1389. border-bottom-color: #ffffff;
  1390. }
  1391. treeview.view.trough {
  1392. border-bottom: 4px solid rgba(202, 76, 122, 0.3);
  1393. box-shadow: none;
  1394. background-color: transparent;
  1395. }
  1396. treeview.view.trough:selected {
  1397. border-bottom-color: rgba(255, 255, 255, 0.3);
  1398. }
  1399. treeview.view header button {
  1400. padding: 2px 6px;
  1401. border-style: none solid solid none;
  1402. border-width: 1px;
  1403. border-color: rgba(0, 0, 0, 0.12);
  1404. border-radius: 0;
  1405. background-clip: border-box;
  1406. }
  1407. treeview.view header button, treeview.view header button:hover, treeview.view header button:active {
  1408. box-shadow: none;
  1409. }
  1410. treeview.view header button, treeview.view header button:disabled {
  1411. background-color: #efefef;
  1412. }
  1413. treeview.view header button:last-child {
  1414. border-right-style: none;
  1415. }
  1416. treeview.view button.dnd,
  1417. treeview.view header.button.dnd {
  1418. padding: 2px 6px;
  1419. border-style: none solid solid;
  1420. border-width: 1px;
  1421. border-color: rgba(0, 0, 0, 0.12);
  1422. border-radius: 0;
  1423. box-shadow: none;
  1424. background-color: #efefef;
  1425. background-clip: border-box;
  1426. color: #ca4c7a;
  1427. }
  1428. treeview.view acceleditor > label {
  1429. background-color: #ca4c7a;
  1430. }
  1431. /*********
  1432. * Menus *
  1433. *********/
  1434. menubar,
  1435. .menubar {
  1436. -GtkWidget-window-dragging: true;
  1437. padding: 0;
  1438. background-color: #ffffff;
  1439. }
  1440. menubar > menuitem,
  1441. .menubar > menuitem {
  1442. transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  1443. min-height: 20px;
  1444. padding: 4px 8px;
  1445. color: rgba(202, 76, 122, 0.7);
  1446. }
  1447. menubar > menuitem:hover,
  1448. .menubar > menuitem:hover {
  1449. transition: none;
  1450. background-color: rgba(202, 76, 122, 0.12);
  1451. color: #ca4c7a;
  1452. }
  1453. menubar > menuitem:disabled,
  1454. .menubar > menuitem:disabled {
  1455. color: rgba(202, 76, 122, 0.3);
  1456. }
  1457. menubar > menuitem label:disabled,
  1458. .menubar > menuitem label:disabled {
  1459. color: inherit;
  1460. }
  1461. .csd.popup {
  1462. background-color: transparent;
  1463. }
  1464. menu,
  1465. .menu,
  1466. .context-menu {
  1467. margin: 4px 0;
  1468. padding: 4px 0;
  1469. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  1470. background-color: #efefef;
  1471. border: 1px solid rgba(0, 0, 0, 0.12);
  1472. }
  1473. .csd menu, .csd
  1474. .menu, .csd
  1475. .context-menu {
  1476. border: none;
  1477. border-radius: 3px;
  1478. }
  1479. menu menuitem,
  1480. .menu menuitem,
  1481. .context-menu menuitem {
  1482. transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1);
  1483. min-height: 20px;
  1484. min-width: 40px;
  1485. padding: 4px 8px;
  1486. font: initial;
  1487. text-shadow: none;
  1488. }
  1489. menu menuitem:hover,
  1490. .menu menuitem:hover,
  1491. .context-menu menuitem:hover {
  1492. transition: none;
  1493. background-color: rgba(202, 76, 122, 0.12);
  1494. }
  1495. menu menuitem:disabled,
  1496. .menu menuitem:disabled,
  1497. .context-menu menuitem:disabled {
  1498. color: rgba(202, 76, 122, 0.5);
  1499. }
  1500. menu menuitem arrow,
  1501. .menu menuitem arrow,
  1502. .context-menu menuitem arrow {
  1503. min-height: 16px;
  1504. min-width: 16px;
  1505. }
  1506. menu menuitem arrow:dir(ltr),
  1507. .menu menuitem arrow:dir(ltr),
  1508. .context-menu menuitem arrow:dir(ltr) {
  1509. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  1510. margin-left: 8px;
  1511. }
  1512. menu menuitem arrow:dir(rtl),
  1513. .menu menuitem arrow:dir(rtl),
  1514. .context-menu menuitem arrow:dir(rtl) {
  1515. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
  1516. margin-right: 8px;
  1517. }
  1518. menu menuitem label:dir(rtl), menu menuitem label:dir(ltr),
  1519. .menu menuitem label:dir(rtl),
  1520. .menu menuitem label:dir(ltr),
  1521. .context-menu menuitem label:dir(rtl),
  1522. .context-menu menuitem label:dir(ltr) {
  1523. color: inherit;
  1524. }
  1525. menu > arrow,
  1526. .menu > arrow,
  1527. .context-menu > arrow {
  1528. min-height: 16px;
  1529. min-width: 16px;
  1530. padding: 4px;
  1531. background-color: #efefef;
  1532. color: rgba(202, 76, 122, 0.7);
  1533. }
  1534. menu > arrow.top,
  1535. .menu > arrow.top,
  1536. .context-menu > arrow.top {
  1537. margin-top: -4px;
  1538. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  1539. border-radius: 3px 3px 0 0;
  1540. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
  1541. }
  1542. menu > arrow.bottom,
  1543. .menu > arrow.bottom,
  1544. .context-menu > arrow.bottom {
  1545. margin-top: 8px;
  1546. margin-bottom: -12px;
  1547. border-top: 1px solid rgba(0, 0, 0, 0.12);
  1548. border-radius: 0 0 3px 3px;
  1549. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1550. }
  1551. menu > arrow:hover,
  1552. .menu > arrow:hover,
  1553. .context-menu > arrow:hover {
  1554. background-image: image(rgba(202, 76, 122, 0.12));
  1555. color: #ca4c7a;
  1556. }
  1557. menu > arrow:disabled,
  1558. .menu > arrow:disabled,
  1559. .context-menu > arrow:disabled {
  1560. border-color: transparent;
  1561. background-color: transparent;
  1562. color: transparent;
  1563. }
  1564. menu separator,
  1565. .menu separator,
  1566. .context-menu separator {
  1567. margin: 4px 0;
  1568. }
  1569. menuitem accelerator {
  1570. color: rgba(202, 76, 122, 0.7);
  1571. }
  1572. .popup:not(.csd) menu menuitem {
  1573. color: #ca4c7a;
  1574. }
  1575. .popup:not(.csd) menu menuitem:hover {
  1576. background-color: #ebdbe1;
  1577. }
  1578. .popup:not(.csd) menu menuitem:disabled {
  1579. color: #dd9eb5;
  1580. }
  1581. .popup:not(.csd) menu accelerator {
  1582. color: #d57d9d;
  1583. }
  1584. /************
  1585. * Popovers *
  1586. ************/
  1587. popover.background {
  1588. transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  1589. padding: 2px;
  1590. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  1591. background-color: #efefef;
  1592. }
  1593. popover.background:backdrop {
  1594. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1595. }
  1596. popover.background, .csd popover.background {
  1597. border-style: solid;
  1598. border-width: 1px;
  1599. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
  1600. border-radius: 4px;
  1601. }
  1602. popover.background > stack {
  1603. margin: -4px;
  1604. }
  1605. popover.background > toolbar {
  1606. margin: -2px;
  1607. }
  1608. popover.background > list,
  1609. popover.background > .view,
  1610. popover.background > toolbar {
  1611. border-style: none;
  1612. box-shadow: none;
  1613. background-color: transparent;
  1614. }
  1615. popover.background.menu button,
  1616. popover.background button.model {
  1617. min-height: 32px;
  1618. padding: 0 8px;
  1619. border-radius: 3px;
  1620. }
  1621. popover.background separator {
  1622. margin: 4px 0;
  1623. }
  1624. popover.background list separator {
  1625. margin: 0;
  1626. }
  1627. /*************
  1628. * Notebooks *
  1629. *************/
  1630. notebook > header {
  1631. border-width: 1px;
  1632. border-color: rgba(0, 0, 0, 0.12);
  1633. background-color: #ffffff;
  1634. background-clip: border-box;
  1635. }
  1636. notebook > header.top {
  1637. border-bottom-style: solid;
  1638. }
  1639. notebook > header.top > tabs {
  1640. margin-bottom: -1px;
  1641. }
  1642. notebook > header.top > tabs > tab:hover {
  1643. box-shadow: inset 0 -2px rgba(202, 76, 122, 0.3);
  1644. }
  1645. notebook > header.top > tabs > tab:checked {
  1646. box-shadow: inset 0 -2px #ca4c7a;
  1647. }
  1648. notebook > header.bottom {
  1649. border-top-style: solid;
  1650. }
  1651. notebook > header.bottom > tabs {
  1652. margin-top: -1px;
  1653. }
  1654. notebook > header.bottom > tabs > tab:hover {
  1655. box-shadow: inset 0 2px rgba(202, 76, 122, 0.3);
  1656. }
  1657. notebook > header.bottom > tabs > tab:checked {
  1658. box-shadow: inset 0 2px #ca4c7a;
  1659. }
  1660. notebook > header.left {
  1661. border-right-style: solid;
  1662. }
  1663. notebook > header.left > tabs {
  1664. margin-right: -1px;
  1665. }
  1666. notebook > header.left > tabs > tab:hover {
  1667. box-shadow: inset -2px 0 rgba(202, 76, 122, 0.3);
  1668. }
  1669. notebook > header.left > tabs > tab:checked {
  1670. box-shadow: inset -2px 0 #ca4c7a;
  1671. }
  1672. notebook > header.right {
  1673. border-left-style: solid;
  1674. }
  1675. notebook > header.right > tabs {
  1676. margin-left: -1px;
  1677. }
  1678. notebook > header.right > tabs > tab:hover {
  1679. box-shadow: inset 2px 0 rgba(202, 76, 122, 0.3);
  1680. }
  1681. notebook > header.right > tabs > tab:checked {
  1682. box-shadow: inset 2px 0 #ca4c7a;
  1683. }
  1684. notebook > header.top > tabs > arrow {
  1685. border-top-style: none;
  1686. }
  1687. notebook > header.bottom > tabs > arrow {
  1688. border-bottom-style: none;
  1689. }
  1690. notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
  1691. padding-left: 4px;
  1692. padding-right: 4px;
  1693. }
  1694. notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
  1695. margin-left: -8px;
  1696. -gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
  1697. }
  1698. notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
  1699. margin-right: -8px;
  1700. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  1701. }
  1702. notebook > header.left > tabs > arrow {
  1703. border-left-style: none;
  1704. }
  1705. notebook > header.right > tabs > arrow {
  1706. border-right-style: none;
  1707. }
  1708. notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
  1709. padding-top: 4px;
  1710. padding-bottom: 4px;
  1711. }
  1712. notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
  1713. margin-top: -8px;
  1714. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
  1715. }
  1716. notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
  1717. margin-bottom: -8px;
  1718. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1719. }
  1720. notebook > header > tabs > arrow {
  1721. min-height: 16px;
  1722. min-width: 16px;
  1723. border-radius: 0;
  1724. }
  1725. notebook > header tab {
  1726. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
  1727. min-height: 24px;
  1728. min-width: 24px;
  1729. padding: 6px 12px;
  1730. outline-offset: -6px;
  1731. border-width: 1px;
  1732. border-color: transparent;
  1733. background-image: radial-gradient(circle farthest-corner at center, #ca4c7a 10%, transparent 0%);
  1734. background-repeat: no-repeat;
  1735. background-position: center;
  1736. background-size: 0% 0%;
  1737. color: rgba(202, 76, 122, 0.7);
  1738. font-weight: 500;
  1739. }
  1740. notebook > header tab:hover {
  1741. color: #ca4c7a;
  1742. }
  1743. notebook > header tab:hover.reorderable-page {
  1744. border-color: rgba(0, 0, 0, 0.12);
  1745. background-color: #f5f5f5;
  1746. }
  1747. notebook > header tab:disabled {
  1748. color: rgba(202, 76, 122, 0.3);
  1749. }
  1750. notebook > header tab:checked {
  1751. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1);
  1752. background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
  1753. background-size: 1000% 1000%;
  1754. color: #ca4c7a;
  1755. }
  1756. notebook > header tab:checked:disabled {
  1757. color: rgba(202, 76, 122, 0.5);
  1758. }
  1759. notebook > header tab:checked.reorderable-page {
  1760. border-color: rgba(0, 0, 0, 0.12);
  1761. background-color: #efefef;
  1762. }
  1763. notebook > header tab button.flat:last-child {
  1764. margin-left: 6px;
  1765. margin-right: -6px;
  1766. }
  1767. notebook > header tab button.flat:first-child {
  1768. margin-left: -6px;
  1769. margin-right: 6px;
  1770. }
  1771. notebook > header.top tabs, notebook > header.bottom tabs {
  1772. padding-left: 8px;
  1773. padding-right: 8px;
  1774. }
  1775. notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
  1776. margin-left: 0;
  1777. }
  1778. notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
  1779. margin-right: 0;
  1780. }
  1781. notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
  1782. margin: 0 -1px;
  1783. border-style: none solid;
  1784. }
  1785. notebook > header.left tabs, notebook > header.right tabs {
  1786. padding-top: 8px;
  1787. padding-bottom: 8px;
  1788. }
  1789. notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
  1790. margin-top: 0;
  1791. }
  1792. notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
  1793. margin-bottom: 0;
  1794. }
  1795. notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
  1796. margin: -1px 0;
  1797. border-style: solid none;
  1798. }
  1799. notebook > stack:not(:only-child) {
  1800. background-color: #efefef;
  1801. }
  1802. /**************
  1803. * Scrollbars *
  1804. **************/
  1805. scrollbar {
  1806. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  1807. background-color: #efefef;
  1808. background-clip: padding-box;
  1809. }
  1810. * {
  1811. -GtkScrollbar-has-backward-stepper: false;
  1812. -GtkScrollbar-has-forward-stepper: false;
  1813. }
  1814. scrollbar.top {
  1815. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  1816. }
  1817. scrollbar.bottom {
  1818. border-top: 1px solid rgba(0, 0, 0, 0.12);
  1819. }
  1820. scrollbar.left {
  1821. border-right: 1px solid rgba(0, 0, 0, 0.12);
  1822. }
  1823. scrollbar.right {
  1824. border-left: 1px solid rgba(0, 0, 0, 0.12);
  1825. }
  1826. scrollbar slider {
  1827. transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0;
  1828. min-width: 8px;
  1829. min-height: 8px;
  1830. border: 4px solid transparent;
  1831. border-radius: 9999px;
  1832. background-clip: padding-box;
  1833. background-color: rgba(202, 76, 122, 0.5);
  1834. }
  1835. scrollbar slider:hover {
  1836. background-color: rgba(202, 76, 122, 0.7);
  1837. }
  1838. scrollbar slider:active {
  1839. background-color: #ca4c7a;
  1840. }
  1841. scrollbar slider:disabled {
  1842. background-color: rgba(202, 76, 122, 0.3);
  1843. }
  1844. scrollbar.fine-tune slider {
  1845. transition: all 150ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0;
  1846. min-width: 4px;
  1847. min-height: 4px;
  1848. }
  1849. scrollbar.fine-tune.horizontal slider {
  1850. margin: 2px 0;
  1851. }
  1852. scrollbar.fine-tune.vertical slider {
  1853. margin: 0 2px;
  1854. }
  1855. scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
  1856. border-color: transparent;
  1857. background-color: transparent;
  1858. }
  1859. scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider {
  1860. min-width: 4px;
  1861. min-height: 4px;
  1862. margin: 3px;
  1863. border: 1px solid rgba(239, 239, 239, 0.3);
  1864. }
  1865. scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
  1866. min-width: 4px;
  1867. min-height: 4px;
  1868. margin: 3px;
  1869. border: 1px solid rgba(239, 239, 239, 0.3);
  1870. border-radius: 9999px;
  1871. background-color: rgba(202, 76, 122, 0.5);
  1872. background-clip: padding-box;
  1873. -gtk-icon-source: none;
  1874. }
  1875. scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
  1876. background-color: rgba(202, 76, 122, 0.3);
  1877. }
  1878. scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider {
  1879. min-width: 24px;
  1880. }
  1881. scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
  1882. min-width: 8px;
  1883. }
  1884. scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider {
  1885. min-height: 24px;
  1886. }
  1887. scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
  1888. min-height: 8px;
  1889. }
  1890. scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
  1891. background-color: rgba(239, 239, 239, 0.9);
  1892. }
  1893. scrollbar.horizontal slider {
  1894. min-width: 24px;
  1895. }
  1896. scrollbar.vertical slider {
  1897. min-height: 24px;
  1898. }
  1899. scrollbar button {
  1900. min-width: 16px;
  1901. min-height: 16px;
  1902. padding: 0;
  1903. border-radius: 0;
  1904. }
  1905. scrollbar.vertical button.down {
  1906. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  1907. }
  1908. scrollbar.vertical button.up {
  1909. -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
  1910. }
  1911. scrollbar.horizontal button.down {
  1912. -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
  1913. }
  1914. scrollbar.horizontal button.up {
  1915. -gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
  1916. }
  1917. /**********
  1918. * Switch *
  1919. **********/
  1920. switch {
  1921. transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), opacity 250ms cubic-bezier(0, 0, 0.2, 1);
  1922. margin: 6px 0;
  1923. padding: 0 2px;
  1924. border: 5px solid transparent;
  1925. border-radius: 9999px;
  1926. background-color: rgba(202, 76, 122, 0.3);
  1927. background-clip: padding-box;
  1928. font-size: 0;
  1929. }
  1930. switch:checked {
  1931. background-color: rgba(202, 76, 122, 0.5);
  1932. }
  1933. switch:disabled {
  1934. opacity: 0.5;
  1935. }
  1936. switch slider {
  1937. transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0, 0, 0.2, 1);
  1938. min-width: 20px;
  1939. min-height: 20px;
  1940. margin: -3px -2px;
  1941. border-radius: 9999px;
  1942. box-shadow: 0 0 0 10px transparent, 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1943. background-color: #efefef;
  1944. color: rgba(202, 76, 122, 0.7);
  1945. }
  1946. switch:hover slider {
  1947. box-shadow: 0 0 0 10px alpha(currentColor, 0.16), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1948. }
  1949. switch:focus slider {
  1950. box-shadow: 0 0 0 10px alpha(currentColor, 0.2), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1951. }
  1952. switch:focus:hover slider {
  1953. box-shadow: 0 0 0 10px alpha(currentColor, 0.24), 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1954. }
  1955. switch:checked slider {
  1956. background-color: #ca4c7a;
  1957. color: #ca4c7a;
  1958. }
  1959. /*************************
  1960. * Check and Radio items *
  1961. *************************/
  1962. .view.content-view.check:not(list),
  1963. .content-view .tile check:not(list) {
  1964. min-height: 40px;
  1965. min-width: 40px;
  1966. margin: 0;
  1967. padding: 0;
  1968. box-shadow: none;
  1969. background-color: transparent;
  1970. background-image: none;
  1971. -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  1972. }
  1973. .view.content-view.check:not(list):hover, .view.content-view.check:not(list):active,
  1974. .content-view .tile check:not(list):hover,
  1975. .content-view .tile check:not(list):active {
  1976. -gtk-icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  1977. }
  1978. .view.content-view.check:not(list),
  1979. .content-view .tile check:not(list) {
  1980. -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png"));
  1981. }
  1982. .view.content-view.check:not(list):checked,
  1983. .content-view .tile check:not(list):checked {
  1984. -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png"));
  1985. }
  1986. checkbutton,
  1987. radiobutton {
  1988. outline: none;
  1989. }
  1990. checkbutton.text-button,
  1991. radiobutton.text-button {
  1992. padding: 2px;
  1993. }
  1994. checkbutton.text-button label:not(:only-child),
  1995. radiobutton.text-button label:not(:only-child) {
  1996. margin: 0 4px;
  1997. }
  1998. check,
  1999. radio {
  2000. min-height: 24px;
  2001. min-width: 24px;
  2002. margin: -8px;
  2003. padding: 8px;
  2004. }
  2005. check:focus,
  2006. radio:focus {
  2007. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.2);
  2008. }
  2009. check:hover,
  2010. radio:hover {
  2011. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12);
  2012. }
  2013. check:checked, check:indeterminate,
  2014. radio:checked,
  2015. radio:indeterminate {
  2016. color: #ca4c7a;
  2017. }
  2018. check:checked:disabled, check:indeterminate:disabled,
  2019. radio:checked:disabled,
  2020. radio:indeterminate:disabled {
  2021. color: rgba(202, 76, 122, 0.5);
  2022. }
  2023. row:selected check:not(:checked):not(:indeterminate), row:selected
  2024. radio:not(:checked):not(:indeterminate) {
  2025. color: rgba(255, 255, 255, 0.7);
  2026. }
  2027. row:selected check:not(:checked):not(:indeterminate):hover, row:selected check:not(:checked):not(:indeterminate):active, row:selected
  2028. radio:not(:checked):not(:indeterminate):hover, row:selected
  2029. radio:not(:checked):not(:indeterminate):active {
  2030. color: #ffffff;
  2031. }
  2032. row:selected check:not(:checked):not(:indeterminate):disabled, row:selected
  2033. radio:not(:checked):not(:indeterminate):disabled {
  2034. color: rgba(255, 255, 255, 0.3);
  2035. }
  2036. popover check, popover check:focus, popover check:hover, popover check:active, popover check:disabled, popover
  2037. radio, popover
  2038. radio:focus, popover
  2039. radio:hover, popover
  2040. radio:active, popover
  2041. radio:disabled {
  2042. transition: none;
  2043. box-shadow: none;
  2044. background-image: none;
  2045. }
  2046. popover check:not(:checked):not(:indeterminate):not(:disabled), popover
  2047. radio:not(:checked):not(:indeterminate):not(:disabled) {
  2048. color: rgba(202, 76, 122, 0.7);
  2049. }
  2050. popover check.left:dir(rtl), popover
  2051. radio.left:dir(rtl) {
  2052. margin-left: -12px;
  2053. margin-right: -4px;
  2054. }
  2055. popover check.right:dir(ltr), popover
  2056. radio.right:dir(ltr) {
  2057. margin-left: -4px;
  2058. margin-right: -12px;
  2059. }
  2060. menu menuitem check, menu menuitem
  2061. radio {
  2062. transition: none;
  2063. margin: 0;
  2064. padding: 0;
  2065. }
  2066. menu menuitem check:dir(ltr), menu menuitem
  2067. radio:dir(ltr) {
  2068. margin-right: 8px;
  2069. }
  2070. menu menuitem check:dir(rtl), menu menuitem
  2071. radio:dir(rtl) {
  2072. margin-left: 8px;
  2073. }
  2074. menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem
  2075. radio:not(:checked):not(:indeterminate):not(:disabled) {
  2076. color: rgba(202, 76, 122, 0.7);
  2077. }
  2078. menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem
  2079. radio, menu menuitem
  2080. radio:hover, menu menuitem
  2081. radio:disabled {
  2082. box-shadow: none;
  2083. }
  2084. check {
  2085. -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg"));
  2086. }
  2087. check:checked {
  2088. -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg"));
  2089. }
  2090. check:indeterminate {
  2091. -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg"));
  2092. }
  2093. radio {
  2094. -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg"));
  2095. border-image-slice: 20;
  2096. border-image-width: 20px;
  2097. }
  2098. radio:indeterminate {
  2099. -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg"));
  2100. }
  2101. radio {
  2102. border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#ca4c7a), to(transparent));
  2103. }
  2104. radio:checked:not(:indeterminate) {
  2105. border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(#ca4c7a), to(transparent));
  2106. }
  2107. radio:checked:not(:indeterminate):disabled {
  2108. border-image-source: -gtk-gradient(radial, center center, 0, center center, 0.125, to(rgba(202, 76, 122, 0.5)), to(transparent));
  2109. }
  2110. window.background:not(.csd) > widget > checkbutton > check,
  2111. menu menuitem check {
  2112. min-height: 16px;
  2113. min-width: 16px;
  2114. border-radius: 3px;
  2115. -gtk-outline-radius: 3px;
  2116. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg"));
  2117. }
  2118. window.background:not(.csd) > widget > checkbutton > check:checked,
  2119. menu menuitem check:checked {
  2120. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg"));
  2121. }
  2122. window.background:not(.csd) > widget > checkbutton > check:indeterminate,
  2123. menu menuitem check:indeterminate {
  2124. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg"));
  2125. }
  2126. window.background:not(.csd) > widget > radiobutton > radio,
  2127. menu menuitem radio {
  2128. min-height: 16px;
  2129. min-width: 16px;
  2130. border-image: none;
  2131. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg"));
  2132. }
  2133. window.background:not(.csd) > widget > radiobutton > radio:checked,
  2134. menu menuitem radio:checked {
  2135. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg"));
  2136. }
  2137. window.background:not(.csd) > widget > radiobutton > radio:indeterminate,
  2138. menu menuitem radio:indeterminate {
  2139. -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg"));
  2140. }
  2141. check:not(:checked):active {
  2142. -gtk-icon-transform: rotate(90deg);
  2143. }
  2144. check:not(:checked):indeterminate:active,
  2145. radio:not(:checked):indeterminate:active {
  2146. -gtk-icon-transform: scaleX(-1);
  2147. }
  2148. check:not(:checked),
  2149. radio:not(:checked) {
  2150. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0;
  2151. }
  2152. check:not(:checked):active,
  2153. radio:not(:checked):active {
  2154. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0;
  2155. }
  2156. menu menuitem check:not(:checked), menu menuitem
  2157. radio:not(:checked) {
  2158. transition: none;
  2159. }
  2160. treeview.view check,
  2161. treeview.view radio {
  2162. padding: 0;
  2163. }
  2164. treeview.view check:hover,
  2165. treeview.view radio:hover {
  2166. box-shadow: inset 0 0 0 9999px alpha(#ca4c7a, 0.05);
  2167. }
  2168. treeview.view check:hover:disabled,
  2169. treeview.view radio:hover:disabled {
  2170. box-shadow: none;
  2171. }
  2172. treeview.view check:hover:selected,
  2173. treeview.view radio:hover:selected {
  2174. box-shadow: inset 0 0 0 9999px alpha(#ffffff, 0.05);
  2175. }
  2176. treeview.view check,
  2177. treeview.view radio {
  2178. color: rgba(202, 76, 122, 0.7);
  2179. }
  2180. treeview.view check:hover, treeview.view check:active,
  2181. treeview.view radio:hover,
  2182. treeview.view radio:active {
  2183. color: #ca4c7a;
  2184. }
  2185. treeview.view check:disabled,
  2186. treeview.view radio:disabled {
  2187. color: rgba(202, 76, 122, 0.3);
  2188. }
  2189. treeview.view check:checked, treeview.view check:indeterminate,
  2190. treeview.view radio:checked,
  2191. treeview.view radio:indeterminate {
  2192. color: #ca4c7a;
  2193. }
  2194. treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled,
  2195. treeview.view radio:checked:disabled,
  2196. treeview.view radio:indeterminate:disabled {
  2197. color: rgba(202, 76, 122, 0.5);
  2198. }
  2199. treeview.view check:selected,
  2200. treeview.view radio:selected {
  2201. color: rgba(255, 255, 255, 0.7);
  2202. }
  2203. treeview.view check:selected:hover, treeview.view check:selected:active,
  2204. treeview.view radio:selected:hover,
  2205. treeview.view radio:selected:active {
  2206. color: #ffffff;
  2207. }
  2208. treeview.view check:selected:disabled,
  2209. treeview.view radio:selected:disabled {
  2210. color: rgba(255, 255, 255, 0.3);
  2211. }
  2212. treeview.view check:selected:checked, treeview.view check:selected:indeterminate,
  2213. treeview.view radio:selected:checked,
  2214. treeview.view radio:selected:indeterminate {
  2215. color: #ca4c7a;
  2216. }
  2217. treeview.view check:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled,
  2218. treeview.view radio:selected:checked:disabled,
  2219. treeview.view radio:selected:indeterminate:disabled {
  2220. color: rgba(202, 76, 122, 0.5);
  2221. }
  2222. treeview.view radio:checked {
  2223. -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg"));
  2224. border-image: none;
  2225. }
  2226. /************
  2227. * GtkScale *
  2228. ************/
  2229. scale {
  2230. min-height: 2px;
  2231. min-width: 2px;
  2232. }
  2233. scale.horizontal {
  2234. padding: 17px 12px;
  2235. }
  2236. scale.vertical {
  2237. padding: 12px 17px;
  2238. }
  2239. scale slider {
  2240. min-height: 32px;
  2241. min-width: 32px;
  2242. margin: -15px;
  2243. }
  2244. scale.fine-tune.horizontal {
  2245. min-height: 4px;
  2246. padding-top: 16px;
  2247. padding-bottom: 16px;
  2248. }
  2249. scale.fine-tune.vertical {
  2250. min-width: 4px;
  2251. padding-left: 16px;
  2252. padding-right: 16px;
  2253. }
  2254. scale.fine-tune slider {
  2255. margin: -14px;
  2256. }
  2257. scale trough {
  2258. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1);
  2259. outline: none;
  2260. background-color: rgba(202, 76, 122, 0.3);
  2261. }
  2262. scale trough:disabled {
  2263. background-color: rgba(202, 76, 122, 0.12);
  2264. }
  2265. scale highlight {
  2266. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1);
  2267. background-color: #ca4c7a;
  2268. }
  2269. scale highlight:disabled {
  2270. background-color: transparent;
  2271. }
  2272. scale fill {
  2273. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1);
  2274. background-color: rgba(202, 76, 122, 0.3);
  2275. }
  2276. scale fill:disabled {
  2277. background-color: transparent;
  2278. }
  2279. scale slider {
  2280. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1);
  2281. background-repeat: no-repeat;
  2282. background-position: center;
  2283. background-size: auto, 1000% 1000%;
  2284. border-radius: 50%;
  2285. color: transparent;
  2286. }
  2287. scale slider {
  2288. background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2289. }
  2290. scale slider:disabled {
  2291. background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2292. }
  2293. scale slider:focus {
  2294. background-color: rgba(202, 76, 122, 0.16);
  2295. }
  2296. scale slider:hover {
  2297. background-color: rgba(202, 76, 122, 0.12);
  2298. }
  2299. scale slider:active {
  2300. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
  2301. animation: scale_ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards;
  2302. background-size: auto, 0% 0%;
  2303. background-color: rgba(202, 76, 122, 0.12);
  2304. color: rgba(202, 76, 122, 0.12);
  2305. }
  2306. scale marks label,
  2307. scale value {
  2308. color: rgba(202, 76, 122, 0.5);
  2309. }
  2310. scale marks {
  2311. color: rgba(202, 76, 122, 0.3);
  2312. }
  2313. scale marks.top {
  2314. margin-bottom: 7px;
  2315. margin-top: -15px;
  2316. }
  2317. scale marks.bottom {
  2318. margin-top: 7px;
  2319. margin-bottom: -15px;
  2320. }
  2321. scale marks.left {
  2322. margin-right: 7px;
  2323. margin-left: -15px;
  2324. }
  2325. scale marks.right {
  2326. margin-left: 7px;
  2327. margin-right: -15px;
  2328. }
  2329. scale.fine-tune marks.top {
  2330. margin-bottom: 6px;
  2331. margin-top: -14px;
  2332. }
  2333. scale.fine-tune marks.bottom {
  2334. margin-top: 6px;
  2335. margin-bottom: -14px;
  2336. }
  2337. scale.fine-tune marks.left {
  2338. margin-right: 6px;
  2339. margin-left: -14px;
  2340. }
  2341. scale.fine-tune marks.right {
  2342. margin-left: 6px;
  2343. margin-right: -14px;
  2344. }
  2345. scale.horizontal indicator {
  2346. min-height: 8px;
  2347. min-width: 1px;
  2348. }
  2349. scale.vertical indicator {
  2350. min-height: 1px;
  2351. min-width: 8px;
  2352. }
  2353. scale.horizontal.marks-before:not(.marks-after) slider {
  2354. background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2355. }
  2356. scale.horizontal.marks-before:not(.marks-after) slider:disabled {
  2357. background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2358. }
  2359. scale.horizontal.marks-after:not(.marks-before) slider {
  2360. background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2361. }
  2362. scale.horizontal.marks-after:not(.marks-before) slider:disabled {
  2363. background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2364. }
  2365. scale.vertical.marks-before:not(.marks-after) slider {
  2366. background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2367. }
  2368. scale.vertical.marks-before:not(.marks-after) slider:disabled {
  2369. background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2370. }
  2371. scale.vertical.marks-after:not(.marks-before) slider {
  2372. background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2373. }
  2374. scale.vertical.marks-after:not(.marks-before) slider:disabled {
  2375. background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")), radial-gradient(circle farthest-corner at center, currentColor 10%, transparent 0%);
  2376. }
  2377. scale.color {
  2378. min-height: 0;
  2379. min-width: 0;
  2380. }
  2381. scale.color.horizontal {
  2382. padding: 0 0 12px 0;
  2383. }
  2384. scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) {
  2385. margin-bottom: -24px;
  2386. margin-top: 8px;
  2387. }
  2388. scale.color.vertical:dir(ltr) {
  2389. padding: 0 0 0 12px;
  2390. }
  2391. scale.color.vertical:dir(ltr) slider {
  2392. margin-left: -24px;
  2393. margin-right: 8px;
  2394. }
  2395. scale.color.vertical:dir(rtl) {
  2396. padding: 0 12px 0 0;
  2397. }
  2398. scale.color.vertical:dir(rtl) slider {
  2399. margin-right: -24px;
  2400. margin-left: 8px;
  2401. }
  2402. /*****************
  2403. * Progress bars *
  2404. *****************/
  2405. progressbar {
  2406. color: rgba(202, 76, 122, 0.5);
  2407. font-size: smaller;
  2408. }
  2409. progressbar.horizontal trough,
  2410. progressbar.horizontal progress {
  2411. min-height: 4px;
  2412. }
  2413. progressbar.vertical trough,
  2414. progressbar.vertical progress {
  2415. min-width: 4px;
  2416. }
  2417. progressbar trough {
  2418. background-color: rgba(202, 76, 122, 0.3);
  2419. }
  2420. progressbar progress {
  2421. background-color: #ca4c7a;
  2422. }
  2423. progressbar trough.empty progress {
  2424. all: unset;
  2425. }
  2426. /*************
  2427. * Level Bar *
  2428. *************/
  2429. levelbar.horizontal block {
  2430. min-height: 4px;
  2431. }
  2432. levelbar.horizontal.discrete block {
  2433. min-width: 36px;
  2434. }
  2435. levelbar.horizontal.discrete block:not(:last-child) {
  2436. margin-right: 2px;
  2437. }
  2438. levelbar.vertical block {
  2439. min-width: 4px;
  2440. }
  2441. levelbar.vertical.discrete block {
  2442. min-height: 36px;
  2443. }
  2444. levelbar.vertical.discrete block:not(:last-child) {
  2445. margin-bottom: 2px;
  2446. }
  2447. levelbar block.low {
  2448. background-color: #caa452;
  2449. }
  2450. levelbar block.high, levelbar block:not(.empty) {
  2451. background-color: #ca4c7a;
  2452. }
  2453. levelbar block.full {
  2454. background-color: #8cca54;
  2455. }
  2456. levelbar block.empty {
  2457. background-color: rgba(202, 76, 122, 0.12);
  2458. }
  2459. /****************
  2460. * Print dialog *
  2461. *****************/
  2462. printdialog paper {
  2463. padding: 0;
  2464. border: 1px solid rgba(0, 0, 0, 0.12);
  2465. background-color: #efefef;
  2466. color: #ca4c7a;
  2467. }
  2468. printdialog .dialog-action-box {
  2469. margin: 12px;
  2470. }
  2471. /**********
  2472. * Frames *
  2473. **********/
  2474. frame > border,
  2475. .frame {
  2476. margin: 0;
  2477. padding: 0;
  2478. border: 1px solid rgba(0, 0, 0, 0.12);
  2479. border-radius: 0;
  2480. box-shadow: none;
  2481. }
  2482. frame > border.flat,
  2483. .frame.flat,
  2484. frame.flat > border {
  2485. border-style: none;
  2486. }
  2487. actionbar > revealer > box {
  2488. padding: 6px;
  2489. border-top: 1px solid rgba(0, 0, 0, 0.12);
  2490. }
  2491. scrolledwindow viewport.frame {
  2492. border-style: none;
  2493. }
  2494. overshoot.top {
  2495. background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(234, 108, 154, 0.3)), to(transparent));
  2496. background-repeat: no-repeat;
  2497. background-position: center top;
  2498. background-color: transparent;
  2499. border: none;
  2500. box-shadow: none;
  2501. }
  2502. overshoot.bottom {
  2503. background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(234, 108, 154, 0.3)), to(transparent));
  2504. background-repeat: no-repeat;
  2505. background-position: center bottom;
  2506. background-color: transparent;
  2507. border: none;
  2508. box-shadow: none;
  2509. }
  2510. overshoot.left {
  2511. background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(234, 108, 154, 0.3)), to(transparent));
  2512. background-repeat: no-repeat;
  2513. background-position: left center;
  2514. background-color: transparent;
  2515. border: none;
  2516. box-shadow: none;
  2517. }
  2518. overshoot.right {
  2519. background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(234, 108, 154, 0.3)), to(transparent));
  2520. background-repeat: no-repeat;
  2521. background-position: right center;
  2522. background-color: transparent;
  2523. border: none;
  2524. box-shadow: none;
  2525. }
  2526. undershoot.top {
  2527. background-color: transparent;
  2528. background-image: linear-gradient(to left, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  2529. padding-top: 1px;
  2530. background-size: 12px 1px;
  2531. background-repeat: repeat-x;
  2532. background-origin: content-box;
  2533. background-position: left top;
  2534. }
  2535. undershoot.bottom {
  2536. background-color: transparent;
  2537. background-image: linear-gradient(to left, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  2538. padding-bottom: 1px;
  2539. background-size: 12px 1px;
  2540. background-repeat: repeat-x;
  2541. background-origin: content-box;
  2542. background-position: left bottom;
  2543. }
  2544. undershoot.left {
  2545. background-color: transparent;
  2546. background-image: linear-gradient(to top, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  2547. padding-left: 1px;
  2548. background-size: 1px 12px;
  2549. background-repeat: repeat-y;
  2550. background-origin: content-box;
  2551. background-position: left top;
  2552. }
  2553. undershoot.right {
  2554. background-color: transparent;
  2555. background-image: linear-gradient(to top, rgba(239, 239, 239, 0.3) 50%, rgba(202, 76, 122, 0.3) 50%);
  2556. padding-right: 1px;
  2557. background-size: 1px 12px;
  2558. background-repeat: repeat-y;
  2559. background-origin: content-box;
  2560. background-position: right top;
  2561. }
  2562. junction {
  2563. border-style: solid none none solid;
  2564. border-width: 1px;
  2565. border-color: rgba(0, 0, 0, 0.12);
  2566. background-color: #efefef;
  2567. }
  2568. junction:dir(rtl) {
  2569. border-style: solid solid none none;
  2570. }
  2571. separator {
  2572. min-width: 1px;
  2573. min-height: 1px;
  2574. background-color: rgba(0, 0, 0, 0.12);
  2575. }
  2576. button.font separator,
  2577. button.file separator, .tweak-categories separator {
  2578. min-width: 0;
  2579. min-height: 0;
  2580. background-color: transparent;
  2581. }
  2582. /*********
  2583. * Lists *
  2584. *********/
  2585. list {
  2586. border-color: rgba(0, 0, 0, 0.12);
  2587. background-color: #efefef;
  2588. }
  2589. list row {
  2590. padding: 2px;
  2591. }
  2592. row.activatable, .view, treeview.view header button, .budgie-menu button {
  2593. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1);
  2594. box-shadow: inset 0 0 0 9999px transparent;
  2595. background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
  2596. background-repeat: no-repeat;
  2597. background-position: center;
  2598. background-size: 1000% 1000%;
  2599. }
  2600. row.activatable:hover, .view:hover, treeview.view header button:hover, .budgie-menu button:hover {
  2601. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, box-shadow 0, background-size 350ms cubic-bezier(0, 0, 0.2, 1), background-image 1000ms cubic-bezier(0, 0, 0.2, 1);
  2602. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.06);
  2603. }
  2604. row.activatable.has-open-popup, .has-open-popup.view, treeview.view header button.has-open-popup, .budgie-menu button.has-open-popup, row.activatable:active, .view:active, treeview.view header button:active, .budgie-menu button:active {
  2605. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-color 0, color 0, background-size 0, background-image 0;
  2606. animation: ripple_effect 250ms cubic-bezier(0, 0, 0.2, 1) forwards;
  2607. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12);
  2608. background-image: radial-gradient(circle farthest-corner at center, alpha(currentColor, 0.12) 10%, transparent 0%);
  2609. background-size: 0% 0%;
  2610. }
  2611. /*********************
  2612. * App Notifications *
  2613. *********************/
  2614. .app-notification {
  2615. margin: 8px;
  2616. }
  2617. .app-notification.frame,
  2618. .app-notification border {
  2619. border-style: none;
  2620. }
  2621. /*************
  2622. * Expanders *
  2623. *************/
  2624. expander title > arrow {
  2625. transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  2626. min-width: 16px;
  2627. min-height: 16px;
  2628. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  2629. -gtk-icon-transform: rotate(-90deg);
  2630. color: rgba(202, 76, 122, 0.7);
  2631. }
  2632. expander title > arrow:dir(rtl) {
  2633. -gtk-icon-transform: rotate(90deg);
  2634. }
  2635. expander title > arrow:checked {
  2636. -gtk-icon-transform: unset;
  2637. }
  2638. expander title > arrow:hover, expander title > arrow:active {
  2639. color: #ca4c7a;
  2640. }
  2641. expander title > arrow:disabled {
  2642. color: rgba(202, 76, 122, 0.3);
  2643. }
  2644. expander title > arrow:selected {
  2645. color: rgba(255, 255, 255, 0.7);
  2646. }
  2647. expander title > arrow:selected:hover, expander title > arrow:selected:active {
  2648. color: #ffffff;
  2649. }
  2650. expander title > arrow:selected:disabled {
  2651. color: rgba(255, 255, 255, 0.3);
  2652. }
  2653. /************
  2654. * Calendar *
  2655. ************/
  2656. calendar {
  2657. padding: 1px;
  2658. border: 1px solid rgba(0, 0, 0, 0.12);
  2659. color: #ca4c7a;
  2660. }
  2661. calendar:disabled {
  2662. color: rgba(202, 76, 122, 0.5);
  2663. }
  2664. calendar:selected {
  2665. border-radius: 4px;
  2666. }
  2667. calendar.header {
  2668. border-style: none none solid;
  2669. border-radius: 0;
  2670. }
  2671. calendar.highlight {
  2672. color: rgba(202, 76, 122, 0.7);
  2673. font-weight: 500;
  2674. }
  2675. calendar:indeterminate {
  2676. color: rgba(202, 76, 122, 0.3);
  2677. }
  2678. /***********
  2679. * Dialogs *
  2680. ***********/
  2681. messagedialog.background {
  2682. background-color: #efefef;
  2683. }
  2684. messagedialog .titlebar {
  2685. min-height: 24px;
  2686. border-style: none;
  2687. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  2688. background-color: #efefef;
  2689. color: #ca4c7a;
  2690. }
  2691. messagedialog .titlebar:backdrop {
  2692. color: rgba(202, 76, 122, 0.7);
  2693. }
  2694. messagedialog.csd.background {
  2695. border-bottom-left-radius: 3px;
  2696. border-bottom-right-radius: 3px;
  2697. }
  2698. messagedialog.csd .dialog-action-area {
  2699. margin-top: -6px;
  2700. padding: 6px;
  2701. }
  2702. messagedialog.csd .dialog-action-area button {
  2703. border-radius: 3px;
  2704. }
  2705. messagedialog.csd .dialog-action-area button:not(:last-child) {
  2706. margin-right: 6px;
  2707. }
  2708. messagedialog.csd .dialog-action-area button.suggested-action:not(:disabled) {
  2709. color: #ca4c7a;
  2710. }
  2711. messagedialog.csd .dialog-action-area button.destructive-action:not(:disabled) {
  2712. color: #ca4c7a;
  2713. }
  2714. filechooser .dialog-action-box {
  2715. border-top: 1px solid rgba(0, 0, 0, 0.12);
  2716. }
  2717. filechooser #pathbarbox {
  2718. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  2719. background-color: #ffffff;
  2720. }
  2721. filechooserbutton:drop(active) {
  2722. box-shadow: none;
  2723. }
  2724. /***********
  2725. * Sidebar *
  2726. ***********/
  2727. .sidebar {
  2728. border-style: none;
  2729. background-color: #f5f5f5;
  2730. }
  2731. stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
  2732. border-right: 1px solid rgba(0, 0, 0, 0.12);
  2733. border-left-style: none;
  2734. }
  2735. stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right {
  2736. border-left: 1px solid rgba(0, 0, 0, 0.12);
  2737. border-right-style: none;
  2738. }
  2739. .sidebar list {
  2740. background-color: transparent;
  2741. }
  2742. paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
  2743. border-style: none;
  2744. }
  2745. stacksidebar row {
  2746. padding: 10px 4px;
  2747. }
  2748. stacksidebar row > label {
  2749. padding-left: 6px;
  2750. padding-right: 6px;
  2751. }
  2752. /****************
  2753. * File chooser *
  2754. ****************/
  2755. row image.sidebar-icon {
  2756. color: rgba(202, 76, 122, 0.7);
  2757. }
  2758. row:selected image.sidebar-icon {
  2759. color: rgba(255, 255, 255, 0.7);
  2760. }
  2761. placessidebar > viewport.frame {
  2762. border-style: none;
  2763. }
  2764. placessidebar list {
  2765. padding: 1px 0 4px;
  2766. }
  2767. placessidebar row {
  2768. min-height: 32px;
  2769. margin: -1px 0;
  2770. padding: 0;
  2771. }
  2772. placessidebar row > revealer {
  2773. padding: 0 12px;
  2774. }
  2775. placessidebar row:selected {
  2776. color: #ffffff;
  2777. }
  2778. placessidebar row:disabled {
  2779. color: rgba(202, 76, 122, 0.5);
  2780. }
  2781. placessidebar row image.sidebar-icon:dir(ltr) {
  2782. padding-right: 8px;
  2783. }
  2784. placessidebar row image.sidebar-icon:dir(rtl) {
  2785. padding-left: 8px;
  2786. }
  2787. placessidebar row label.sidebar-label:dir(ltr) {
  2788. padding-right: 2px;
  2789. }
  2790. placessidebar row label.sidebar-label:dir(rtl) {
  2791. padding-left: 2px;
  2792. }
  2793. placessidebar row.sidebar-placeholder-row {
  2794. min-height: 2px;
  2795. padding: 0 8px;
  2796. background-image: image(#ca4c7a);
  2797. background-clip: content-box;
  2798. }
  2799. placessidebar row.sidebar-new-bookmark-row {
  2800. color: #ca4c7a;
  2801. }
  2802. placessidebar row:drop(active):not(:disabled) {
  2803. box-shadow: inset 0 0 0 2px #ca4c7a;
  2804. }
  2805. placesview .server-list-button > image {
  2806. -gtk-icon-transform: rotate(0turn);
  2807. }
  2808. placesview .server-list-button:checked > image {
  2809. -gtk-icon-transform: rotate(-0.5turn);
  2810. }
  2811. placesview > actionbar > revealer > box > label {
  2812. padding-left: 8px;
  2813. padding-right: 8px;
  2814. }
  2815. /*********
  2816. * Paned *
  2817. *********/
  2818. paned > separator {
  2819. min-width: 1px;
  2820. min-height: 1px;
  2821. -gtk-icon-source: none;
  2822. border-style: none;
  2823. background-color: transparent;
  2824. background-image: image(rgba(0, 0, 0, 0.12));
  2825. background-size: 1px 1px;
  2826. background-clip: content-box;
  2827. }
  2828. paned > separator.wide {
  2829. min-width: 6px;
  2830. min-height: 6px;
  2831. background-color: #ffffff;
  2832. background-image: image(rgba(0, 0, 0, 0.12)), image(rgba(0, 0, 0, 0.12));
  2833. background-size: 1px 1px, 1px 1px;
  2834. }
  2835. paned.horizontal > separator {
  2836. background-repeat: repeat-y;
  2837. }
  2838. paned.horizontal > separator:dir(ltr) {
  2839. margin: 0 -8px 0 0;
  2840. padding: 0 8px 0 0;
  2841. background-position: left;
  2842. }
  2843. paned.horizontal > separator:dir(rtl) {
  2844. margin: 0 0 0 -8px;
  2845. padding: 0 0 0 8px;
  2846. background-position: right;
  2847. }
  2848. paned.horizontal > separator.wide {
  2849. margin: 0;
  2850. padding: 0;
  2851. background-repeat: repeat-y, repeat-y;
  2852. background-position: left, right;
  2853. }
  2854. paned.vertical > separator {
  2855. margin: 0 0 -8px 0;
  2856. padding: 0 0 8px 0;
  2857. background-repeat: repeat-x;
  2858. background-position: top;
  2859. }
  2860. paned.vertical > separator.wide {
  2861. margin: 0;
  2862. padding: 0;
  2863. background-repeat: repeat-x, repeat-x;
  2864. background-position: bottom, top;
  2865. }
  2866. /**************
  2867. * GtkInfoBar *
  2868. **************/
  2869. infobar {
  2870. border-style: none;
  2871. }
  2872. infobar.info {
  2873. background-color: #6c4cd0;
  2874. }
  2875. infobar.question {
  2876. background-color: #6c4cd0;
  2877. }
  2878. infobar.warning {
  2879. background-color: #caa452;
  2880. }
  2881. infobar.error {
  2882. background-color: #ca4c7a;
  2883. }
  2884. infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error {
  2885. color: #ffffff;
  2886. }
  2887. /************
  2888. * Tooltips *
  2889. ************/
  2890. tooltip {
  2891. border-radius: 3px;
  2892. box-shadow: none;
  2893. }
  2894. tooltip.background {
  2895. background-color: rgba(255, 255, 255, 0.9);
  2896. color: #ca4c7a;
  2897. }
  2898. tooltip decoration {
  2899. background-color: transparent;
  2900. }
  2901. tooltip label {
  2902. min-height: 20px;
  2903. padding: 0 2px;
  2904. }
  2905. /*****************
  2906. * Color Chooser *
  2907. *****************/
  2908. colorswatch.top {
  2909. border-top-left-radius: 3.5px;
  2910. border-top-right-radius: 3.5px;
  2911. }
  2912. colorswatch.top overlay {
  2913. border-top-left-radius: 3px;
  2914. border-top-right-radius: 3px;
  2915. }
  2916. colorswatch.bottom {
  2917. border-bottom-left-radius: 3.5px;
  2918. border-bottom-right-radius: 3.5px;
  2919. }
  2920. colorswatch.bottom overlay {
  2921. border-bottom-left-radius: 3px;
  2922. border-bottom-right-radius: 3px;
  2923. }
  2924. colorswatch.left, colorswatch:first-child:not(.top) {
  2925. border-top-left-radius: 3.5px;
  2926. border-bottom-left-radius: 3.5px;
  2927. }
  2928. colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
  2929. border-top-left-radius: 3px;
  2930. border-bottom-left-radius: 3px;
  2931. }
  2932. colorswatch.right, colorswatch:last-child:not(.bottom) {
  2933. border-top-right-radius: 3.5px;
  2934. border-bottom-right-radius: 3.5px;
  2935. }
  2936. colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
  2937. border-top-right-radius: 3px;
  2938. border-bottom-right-radius: 3px;
  2939. }
  2940. colorswatch.dark {
  2941. color: #ffffff;
  2942. }
  2943. colorswatch.light {
  2944. color: #ca4c7a;
  2945. }
  2946. colorswatch:drop(active) {
  2947. box-shadow: none;
  2948. }
  2949. colorswatch:drop(active).light overlay {
  2950. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #ca4c7a;
  2951. }
  2952. colorswatch:drop(active).dark overlay {
  2953. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 0 2px #ca4c7a;
  2954. }
  2955. colorswatch overlay {
  2956. transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  2957. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  2958. }
  2959. colorswatch overlay:hover {
  2960. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  2961. }
  2962. colorswatch#add-color-button {
  2963. border-radius: 3px 3px 0 0;
  2964. color: #ffffff;
  2965. }
  2966. colorswatch#add-color-button:only-child {
  2967. border-radius: 3px;
  2968. }
  2969. colorswatch#add-color-button overlay {
  2970. background-image: linear-gradient(to right, #ca4c7a 25%, #caa452 25%, #caa452 50%, #6c4cd0 50%, #6c4cd0 75%, #6c4cd0 75%);
  2971. }
  2972. colorswatch:disabled {
  2973. opacity: 0.5;
  2974. }
  2975. colorswatch:disabled overlay {
  2976. box-shadow: none;
  2977. }
  2978. colorswatch#editor-color-sample {
  2979. border-radius: 3.5px;
  2980. }
  2981. colorswatch#editor-color-sample overlay {
  2982. border-radius: 3px;
  2983. }
  2984. colorchooser .popover.osd {
  2985. transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  2986. border-radius: 3px;
  2987. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
  2988. background-color: #efefef;
  2989. }
  2990. colorchooser .popover.osd:backdrop {
  2991. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.4);
  2992. }
  2993. /********
  2994. * Misc *
  2995. ********/
  2996. .content-view {
  2997. background-color: #ffffff;
  2998. }
  2999. /**********************
  3000. * Window Decorations *
  3001. **********************/
  3002. decoration {
  3003. transition: box-shadow 150ms cubic-bezier(0, 0, 0.2, 1);
  3004. border-radius: 3px 3px 0 0;
  3005. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), 0 16px 16px transparent;
  3006. margin: 8px;
  3007. }
  3008. decoration:backdrop {
  3009. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), 0 16px 16px transparent;
  3010. }
  3011. .maximized decoration,
  3012. .fullscreen decoration,
  3013. .tiled decoration,
  3014. .tiled-top decoration,
  3015. .tiled-right decoration,
  3016. .tiled-bottom decoration,
  3017. .tiled-left decoration {
  3018. border-radius: 0;
  3019. }
  3020. .popup decoration {
  3021. box-shadow: none;
  3022. }
  3023. .ssd decoration {
  3024. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  3025. }
  3026. .csd.popup decoration {
  3027. border-radius: 3px;
  3028. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  3029. }
  3030. tooltip.csd decoration {
  3031. border-radius: 3px;
  3032. box-shadow: none;
  3033. }
  3034. messagedialog.csd decoration {
  3035. border-radius: 3px;
  3036. }
  3037. .solid-csd decoration {
  3038. margin: 0;
  3039. border-radius: 0;
  3040. box-shadow: none;
  3041. background-color: #ffffff;
  3042. }
  3043. .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
  3044. entry selection, modelbutton.flat:selected,
  3045. .menuitem.button.flat:selected, popover.background.menu button:checked,
  3046. popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked {
  3047. background-color: #ca4c7a;
  3048. }
  3049. row:selected label, label:selected, .view selection, .view:selected, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection,
  3050. entry selection, modelbutton.flat:selected,
  3051. .menuitem.button.flat:selected, popover.background.menu button:checked,
  3052. popover.background button.model:checked, row:selected, calendar:selected, text:selected, .budgie-menu button:checked {
  3053. color: #ffffff;
  3054. }
  3055. row:selected label:disabled, label:disabled:selected, .view selection:disabled, .view:disabled:selected, flowbox flowboxchild:disabled:selected, label:disabled selection, spinbutton:not(.vertical) selection:disabled,
  3056. entry selection:disabled, modelbutton.flat:disabled:selected,
  3057. .menuitem.button.flat:disabled:selected, popover.background.menu button:disabled:checked,
  3058. popover.background button.model:disabled:checked, row:disabled:selected, calendar:disabled:selected, text:disabled:selected, .budgie-menu button:disabled:checked {
  3059. color: rgba(255, 255, 255, 0.5);
  3060. }
  3061. .monospace {
  3062. font-family: monospace;
  3063. }
  3064. /**********************
  3065. * Touch Copy & Paste *
  3066. **********************/
  3067. cursor-handle {
  3068. border-radius: 9999px;
  3069. background-color: #ca4c7a;
  3070. background-image: none;
  3071. }
  3072. cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) {
  3073. padding-left: 6px;
  3074. border-top-right-radius: 0;
  3075. }
  3076. cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) {
  3077. padding-right: 6px;
  3078. border-top-left-radius: 0;
  3079. }
  3080. cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
  3081. -GtkWidget-text-handle-width: 24;
  3082. -GtkWidget-text-handle-height: 30;
  3083. -gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png"));
  3084. }
  3085. .context-menu {
  3086. font: initial;
  3087. }
  3088. .keycap {
  3089. min-width: 12px;
  3090. min-height: 26px;
  3091. margin-top: 2px;
  3092. padding-bottom: 2px;
  3093. padding-left: 8px;
  3094. padding-right: 8px;
  3095. border: solid 1px rgba(0, 0, 0, 0.12);
  3096. border-radius: 4px;
  3097. box-shadow: inset 0 -2px rgba(0, 0, 0, 0.12);
  3098. background-color: #efefef;
  3099. color: #ca4c7a;
  3100. font-size: smaller;
  3101. }
  3102. :not(decoration):not(window):drop(active) {
  3103. transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  3104. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), inset 0 0 0 2px #ca4c7a;
  3105. caret-color: #ca4c7a;
  3106. }
  3107. stackswitcher button.text-button {
  3108. min-width: 100px;
  3109. }
  3110. stackswitcher button.circular,
  3111. stackswitcher button.text-button.circular {
  3112. min-width: 36px;
  3113. min-height: 36px;
  3114. padding: 0;
  3115. }
  3116. /*********
  3117. * Emoji *
  3118. *********/
  3119. popover.emoji-picker {
  3120. padding: 0;
  3121. }
  3122. popover.emoji-picker entry {
  3123. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3124. border-bottom-left-radius: 0;
  3125. border-bottom-right-radius: 0;
  3126. box-shadow: none;
  3127. }
  3128. popover.emoji-picker scrolledwindow {
  3129. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3130. }
  3131. button.emoji-section {
  3132. margin-top: -1px;
  3133. padding: 0 8px;
  3134. min-width: 24px;
  3135. min-height: 36px;
  3136. border-radius: 0;
  3137. outline-offset: -6px;
  3138. box-shadow: none;
  3139. }
  3140. button.emoji-section:hover {
  3141. box-shadow: inset 0 2px rgba(202, 76, 122, 0.3);
  3142. }
  3143. button.emoji-section:active {
  3144. box-shadow: inset 0 2px #ca4c7a;
  3145. background-image: radial-gradient(circle farthest-corner at center, rgba(202, 76, 122, 0.7) 10%, transparent 0%);
  3146. }
  3147. button.emoji-section:checked {
  3148. box-shadow: inset 0 2px #ca4c7a;
  3149. background-color: transparent;
  3150. }
  3151. button.emoji-section:first-child {
  3152. margin-left: 4px;
  3153. }
  3154. button.emoji-section:last-child {
  3155. margin-right: 4px;
  3156. }
  3157. .emoji {
  3158. min-width: 3em;
  3159. min-height: 3em;
  3160. padding: 0;
  3161. }
  3162. .emoji widget {
  3163. transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  3164. }
  3165. .emoji widget:hover {
  3166. font-size: larger;
  3167. }
  3168. /************
  3169. * Nautilus *
  3170. ************/
  3171. .nautilus-window,
  3172. .nautilus-window notebook,
  3173. .nautilus-window notebook > stack {
  3174. background-color: #efefef;
  3175. }
  3176. .nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle,
  3177. headerbar .nautilus-canvas-item.subtitle, .budgie-notification .nautilus-canvas-item.notification-body, .budgie-switcher .nautilus-canvas-item.notification-body,
  3178. .nautilus-list-dim-label {
  3179. color: rgba(202, 76, 122, 0.7);
  3180. }
  3181. .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected,
  3182. headerbar .nautilus-canvas-item.subtitle:selected, .budgie-notification .nautilus-canvas-item.notification-body:selected, .budgie-switcher .nautilus-canvas-item.notification-body:selected,
  3183. .nautilus-list-dim-label:selected {
  3184. color: rgba(255, 255, 255, 0.7);
  3185. }
  3186. .nautilus-desktop.nautilus-canvas-item:not(:selected), .caja-desktop.caja-canvas-item:not(:selected), .nemo-desktop.nemo-canvas-item:not(:selected) {
  3187. color: #ffffff;
  3188. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  3189. }
  3190. @keyframes needs_attention_keyframes {
  3191. to {
  3192. background-color: alpha(currentColor, 0.24);
  3193. }
  3194. }
  3195. .nautilus-operations-button-needs-attention {
  3196. animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate;
  3197. }
  3198. .nautilus-operations-button-needs-attention-multiple {
  3199. animation: needs_attention_keyframes 250ms cubic-bezier(0.4, 0, 0.2, 1) 4 alternate;
  3200. }
  3201. .nautilus-window .floating-bar {
  3202. min-height: 32px;
  3203. padding: 0;
  3204. border-style: solid solid none;
  3205. border-width: 1px;
  3206. border-color: rgba(0, 0, 0, 0.12);
  3207. border-radius: 4px 4px 0 0;
  3208. background-color: rgba(239, 239, 239, 0.9);
  3209. background-clip: padding-box;
  3210. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), border-width 0;
  3211. }
  3212. .nautilus-window .floating-bar.bottom.left {
  3213. margin-right: 7px;
  3214. border-left-style: none;
  3215. border-top-left-radius: 0;
  3216. }
  3217. .nautilus-window .floating-bar.bottom.right {
  3218. margin-left: 7px;
  3219. border-right-style: none;
  3220. border-top-right-radius: 0;
  3221. }
  3222. .nautilus-window .floating-bar button {
  3223. margin: 4px;
  3224. }
  3225. .disk-space-display.unknown {
  3226. background-color: #caa452;
  3227. }
  3228. .disk-space-display.used {
  3229. background-color: #ca4c7a;
  3230. }
  3231. .disk-space-display.free {
  3232. background-color: rgba(202, 76, 122, 0.12);
  3233. }
  3234. .nautilus-window paned > separator {
  3235. background-color: #ffffff;
  3236. }
  3237. /*********
  3238. * gedit *
  3239. *********/
  3240. .open-document-selector-path-label {
  3241. color: rgba(202, 76, 122, 0.7);
  3242. font-size: smaller;
  3243. }
  3244. .open-document-selector-path-label:selected {
  3245. color: rgba(255, 255, 255, 0.7);
  3246. }
  3247. .gedit-document-panel {
  3248. background-color: #f5f5f5;
  3249. }
  3250. .gedit-document-panel row button.flat {
  3251. margin-top: 8px;
  3252. margin-bottom: 8px;
  3253. }
  3254. .gedit-document-panel-group-row:not(:first-child) {
  3255. border-top: 1px solid rgba(0, 0, 0, 0.12);
  3256. }
  3257. .gedit-side-panel-paned statusbar {
  3258. border-top: 1px solid rgba(0, 0, 0, 0.12);
  3259. }
  3260. .gedit-search-slider {
  3261. margin: 4px 4px 8px;
  3262. }
  3263. .gedit-search-slider .linked > entry {
  3264. border-radius: 3px;
  3265. }
  3266. .gedit-search-slider .linked > entry .gedit-search-entry-occurrences-tag {
  3267. all: unset;
  3268. color: rgba(202, 76, 122, 0.5);
  3269. }
  3270. .gedit-search-slider .linked > entry:dir(ltr) {
  3271. margin-right: -66px;
  3272. padding-right: 66px;
  3273. }
  3274. .gedit-search-slider .linked > entry:dir(ltr) .gedit-search-entry-occurrences-tag {
  3275. margin-left: 6px;
  3276. }
  3277. .gedit-search-slider .linked > entry:dir(ltr) image.right {
  3278. margin-right: 0;
  3279. }
  3280. .gedit-search-slider .linked > entry:dir(rtl) {
  3281. margin-left: -66px;
  3282. padding-left: 66px;
  3283. }
  3284. .gedit-search-slider .linked > entry:dir(rtl) .gedit-search-entry-occurrences-tag {
  3285. margin-right: 6px;
  3286. }
  3287. .gedit-search-slider .linked > entry:dir(rtl) image.left {
  3288. margin-left: 0;
  3289. }
  3290. .gedit-search-slider .linked > entry:not(.error) {
  3291. background-color: #efefef;
  3292. }
  3293. .gedit-search-slider .linked > entry.error ~ button {
  3294. color: rgba(255, 255, 255, 0.7);
  3295. }
  3296. .gedit-search-slider .linked > entry.error ~ button:hover, .gedit-search-slider .linked > entry.error ~ button:active {
  3297. color: #ffffff;
  3298. }
  3299. .gedit-search-slider .linked > entry.error ~ button:disabled {
  3300. color: rgba(255, 255, 255, 0.3);
  3301. }
  3302. .gedit-search-slider .linked > button {
  3303. border: solid 6px transparent;
  3304. border-radius: 9999px;
  3305. }
  3306. .gedit-search-slider .linked > button:last-child:dir(ltr), .gedit-search-slider .linked > button:not(:first-child):dir(rtl) {
  3307. margin-left: -3px;
  3308. }
  3309. .gedit-search-slider .linked > button:first-child:dir(rtl), .gedit-search-slider .linked > button:not(:last-child):dir(ltr) {
  3310. margin-right: -3px;
  3311. }
  3312. frame.gedit-map-frame > border:dir(ltr) {
  3313. border-style: none none none solid;
  3314. }
  3315. frame.gedit-map-frame > border:dir(rtl) {
  3316. border-style: none solid none none;
  3317. }
  3318. /**************
  3319. * Tweak Tool *
  3320. **************/
  3321. .tweak-categories {
  3322. background-image: image(#f5f5f5);
  3323. }
  3324. .tweak {
  3325. padding: 3px;
  3326. }
  3327. .tweak.title:hover {
  3328. box-shadow: none;
  3329. }
  3330. .tweak-group-white,
  3331. .tweak-white,
  3332. .tweak-white:hover {
  3333. background-image: image(#efefef);
  3334. }
  3335. .tweak-startup,
  3336. .tweak-startup:hover {
  3337. background-image: image(#efefef);
  3338. }
  3339. .tweak-group-startup {
  3340. background-image: image(#efefef);
  3341. border: 1px solid rgba(0, 0, 0, 0.12);
  3342. }
  3343. /***********
  3344. * Builder *
  3345. ***********/
  3346. workbench stack.titlebar {
  3347. padding: 0;
  3348. }
  3349. workbench:not(.tiled):not(.maximized):not(.fullscreen) stack.titlebar headerbar {
  3350. border-radius: 3px 3px 0 0;
  3351. }
  3352. perspectiveswitcher {
  3353. background-color: #ffffff;
  3354. }
  3355. perspectiveswitcher button:checked {
  3356. color: #ca4c7a;
  3357. }
  3358. layouttabbar {
  3359. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3360. background-color: #ffffff;
  3361. }
  3362. layouttabbar > box > button {
  3363. margin: 2px 0;
  3364. }
  3365. layouttab {
  3366. margin: 0 8px;
  3367. border-style: none solid;
  3368. border-width: 1px;
  3369. border-color: rgba(0, 0, 0, 0.12);
  3370. box-shadow: inset 0 -2px #ca4c7a;
  3371. background-color: #efefef;
  3372. }
  3373. layouttab separator.vertical {
  3374. margin: 8px 4px;
  3375. }
  3376. layouttab button.text-button, layouttab button.image-button, layouttab button {
  3377. margin-top: 8px;
  3378. margin-bottom: 8px;
  3379. padding: 0 4px;
  3380. }
  3381. layout {
  3382. border: 1px solid rgba(0, 0, 0, 0.12);
  3383. -PnlDockBin-handle-size: 1;
  3384. }
  3385. entry.search-missing {
  3386. background-color: #ca4c7a;
  3387. color: #ffffff;
  3388. }
  3389. workbench treeview.image {
  3390. color: rgba(202, 76, 122, 0.7);
  3391. }
  3392. workbench treeview.image:selected {
  3393. color: rgba(255, 255, 255, 0.7);
  3394. }
  3395. dockbin {
  3396. border: 1px solid rgba(0, 0, 0, 0.12);
  3397. -PnlDockBin-handle-size: 1;
  3398. }
  3399. dockpaned {
  3400. border: 1px solid rgba(0, 0, 0, 0.12);
  3401. }
  3402. eggsearchbar box.search-bar {
  3403. padding: 0 8px;
  3404. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3405. background-color: #ffffff;
  3406. }
  3407. docktabstrip {
  3408. padding: 0 8px;
  3409. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3410. background-color: #ffffff;
  3411. }
  3412. docktab {
  3413. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
  3414. min-height: 24px;
  3415. min-width: 24px;
  3416. margin-bottom: -1px;
  3417. padding: 6px 6px;
  3418. outline-offset: -6px;
  3419. border-width: 1px;
  3420. border-color: transparent;
  3421. background-image: radial-gradient(circle farthest-corner at center, #ca4c7a 10%, transparent 0%);
  3422. background-repeat: no-repeat;
  3423. background-position: center;
  3424. background-size: 0% 0%;
  3425. color: rgba(202, 76, 122, 0.7);
  3426. font-weight: 500;
  3427. }
  3428. docktab:hover {
  3429. box-shadow: inset 0 -2px rgba(202, 76, 122, 0.3);
  3430. color: #ca4c7a;
  3431. }
  3432. docktab:checked {
  3433. transition: all 250ms cubic-bezier(0, 0, 0.2, 1), background-size 250ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1);
  3434. box-shadow: inset 0 -2px #ca4c7a;
  3435. background-image: radial-gradient(circle farthest-corner at center, transparent 10%, transparent 0%);
  3436. background-size: 1000% 1000%;
  3437. color: #ca4c7a;
  3438. }
  3439. dockoverlayedge {
  3440. background-color: #ffffff;
  3441. }
  3442. dockoverlayedge docktabstrip {
  3443. padding: 0;
  3444. border: none;
  3445. }
  3446. dockoverlayedge.left-edge docktab:hover {
  3447. box-shadow: inset -2px 0 rgba(202, 76, 122, 0.3);
  3448. }
  3449. dockoverlayedge.left-edge docktab:checked {
  3450. box-shadow: inset -2px 0 #ca4c7a;
  3451. }
  3452. dockoverlayedge.right-edge docktab:hover {
  3453. box-shadow: inset 2px 0 rgba(202, 76, 122, 0.3);
  3454. }
  3455. dockoverlayedge.right-edge docktab:checked {
  3456. box-shadow: inset 2px 0 #ca4c7a;
  3457. }
  3458. pillbox {
  3459. background-color: #ffffff;
  3460. border-radius: 3px;
  3461. }
  3462. buildperspective row {
  3463. padding: 10px;
  3464. }
  3465. layoutpane entry.search {
  3466. box-shadow: inset 0 -1px rgba(0, 0, 0, 0.12);
  3467. background-color: #efefef;
  3468. }
  3469. editortweak entry.search {
  3470. margin-bottom: -1px;
  3471. box-shadow: none;
  3472. }
  3473. frame.gb-search-frame {
  3474. border-bottom-right-radius: 5px;
  3475. }
  3476. .gb-search-entry-occurrences-tag {
  3477. box-shadow: none;
  3478. background-color: transparent;
  3479. }
  3480. docktabstrip {
  3481. min-height: 39px;
  3482. }
  3483. workbench preferences preferencesgroup list entry {
  3484. padding-top: 8px;
  3485. padding-bottom: 8px;
  3486. }
  3487. /**********
  3488. * Photos *
  3489. **********/
  3490. GdMainIconView.content-view {
  3491. -GdMainIconView-icon-size: 48;
  3492. }
  3493. .documents-counter {
  3494. margin: 8px;
  3495. border-radius: 9999px;
  3496. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  3497. background-color: #ca4c7a;
  3498. color: #ffffff;
  3499. font-weight: bold;
  3500. }
  3501. .documents-scrolledwin.frame {
  3502. border-style: none;
  3503. }
  3504. .photos-fade-in {
  3505. opacity: 1;
  3506. transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1);
  3507. }
  3508. .photos-fade-out {
  3509. opacity: 0;
  3510. transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1);
  3511. }
  3512. overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) {
  3513. border-style: none none none solid;
  3514. }
  3515. overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) {
  3516. border-style: none solid none none;
  3517. }
  3518. /*********
  3519. * Music *
  3520. *********/
  3521. .side-panel:dir(ltr) {
  3522. border-style: solid;
  3523. border-color: rgba(0, 0, 0, 0.12);
  3524. }
  3525. .side-panel:dir(rtl) {
  3526. border-style: solid;
  3527. border-color: rgba(0, 0, 0, 0.12);
  3528. }
  3529. .side-panel .view {
  3530. background-image: image(#f5f5f5);
  3531. }
  3532. .side-panel .view:hover {
  3533. background-image: image(#f3edef);
  3534. }
  3535. .side-panel .view:selected {
  3536. background-image: image(#ca4c7a);
  3537. }
  3538. .side-panel .view:selected:hover {
  3539. background-image: image(#cd5581);
  3540. }
  3541. .songs-list:hover {
  3542. background-image: image(alpha(currentColor, 0.06));
  3543. }
  3544. frame.documents-dropdown {
  3545. margin: 8px;
  3546. }
  3547. frame.documents-dropdown > border {
  3548. border: none;
  3549. }
  3550. box.vertical:not(.titlebar) > revealer > toolbar.search-bar {
  3551. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  3552. }
  3553. box.vertical:not(.titlebar) > revealer > toolbar.search-bar button > widget {
  3554. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  3555. }
  3556. /*********
  3557. * To Do *
  3558. *********/
  3559. task-row {
  3560. transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  3561. margin: 0 -4px;
  3562. }
  3563. task-row:hover {
  3564. transition: none;
  3565. }
  3566. task-row label {
  3567. margin: 0 8px;
  3568. }
  3569. task-row image {
  3570. margin: 0 4px;
  3571. }
  3572. task-list-view > box > revealer > box > button {
  3573. min-height: 36px;
  3574. margin: -4px;
  3575. padding: 0 12px;
  3576. }
  3577. task-list-view > box > revealer > box > button label {
  3578. margin: 0 8px;
  3579. }
  3580. task-list-view > box > revealer > box > button image {
  3581. margin: 0 4px;
  3582. }
  3583. /*******
  3584. * eog *
  3585. *******/
  3586. #eog-thumb-nav scrolledwindow {
  3587. border-top: none;
  3588. }
  3589. #eog-thumb-nav button {
  3590. -gtk-outline-radius: 3px;
  3591. }
  3592. /*************
  3593. * Evolution *
  3594. *************/
  3595. frame.taskbar > border {
  3596. border-style: solid none none;
  3597. }
  3598. box.vertical > paned.horizontal notebook widget .frame {
  3599. border-style: none;
  3600. }
  3601. /********
  3602. * gitg *
  3603. ********/
  3604. frame.commit-frame > border {
  3605. border-style: solid none none;
  3606. }
  3607. /**************
  3608. * Characters *
  3609. **************/
  3610. box.dialog-vbox scrolledwindow.related {
  3611. border: 1px solid rgba(0, 0, 0, 0.12);
  3612. }
  3613. list.categories {
  3614. background-image: image(#f5f5f5);
  3615. }
  3616. /*********
  3617. * Boxes *
  3618. *********/
  3619. .transparent-bg + stack overlay > label {
  3620. min-height: 24px;
  3621. padding: 0 4px;
  3622. border-radius: 3px;
  3623. background-color: rgba(0, 0, 0, 0.6);
  3624. color: #ffffff;
  3625. }
  3626. /**************
  3627. * Calculator *
  3628. **************/
  3629. button.title label {
  3630. min-height: 36px;
  3631. }
  3632. /*********
  3633. * Geary *
  3634. *********/
  3635. .geary-titlebar-left:dir(ltr) {
  3636. margin-right: 5px;
  3637. padding-right: 0;
  3638. }
  3639. .geary-titlebar-left:dir(rtl) {
  3640. margin-left: 5px;
  3641. padding-left: 0;
  3642. }
  3643. .geary-titlebar-left > separator {
  3644. background-color: rgba(0, 0, 0, 0.05);
  3645. }
  3646. .geary-titlebar-right:dir(ltr) {
  3647. margin-left: -5px;
  3648. }
  3649. .geary-titlebar-right:dir(rtl) {
  3650. margin-right: -5px;
  3651. }
  3652. /*********
  3653. * Tilix *
  3654. *********/
  3655. overlay > revealer.left > scrolledwindow.frame,
  3656. overlay > revealer.right > scrolledwindow.frame {
  3657. border-style: none;
  3658. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
  3659. }
  3660. overlay > revealer.left > scrolledwindow.frame {
  3661. margin-right: 32px;
  3662. }
  3663. overlay > revealer.right > scrolledwindow.frame {
  3664. margin-left: 32px;
  3665. }
  3666. .terminix-session-sidebar,
  3667. .tilix-session-sidebar {
  3668. background-image: image(#efefef);
  3669. }
  3670. .terminal-titlebar button {
  3671. border-radius: 0;
  3672. }
  3673. button.image-button.session-new-button {
  3674. min-width: 32px;
  3675. }
  3676. /**************
  3677. * Terminator *
  3678. **************/
  3679. .terminator-terminal-window paned > separator {
  3680. background-color: #ffffff;
  3681. }
  3682. .terminator-terminal-window notebook.frame {
  3683. border-style: none;
  3684. }
  3685. /***********
  3686. * Eclipse *
  3687. ***********/
  3688. window.background > box.vertical > scrolledwindow > widget toolbar {
  3689. padding: 2px;
  3690. }
  3691. window.background > box.vertical > scrolledwindow > widget toolbar separator,
  3692. window.background > box.vertical > scrolledwindow > widget toolbar button {
  3693. margin: 2px;
  3694. }
  3695. window.background > box.vertical > scrolledwindow > widget toolbar button {
  3696. border-radius: 3px;
  3697. }
  3698. /************
  3699. * Chromium *
  3700. ************/
  3701. window.background.chromium {
  3702. background-color: #ffffff;
  3703. }
  3704. window.background.chromium entry,
  3705. window.background.chromium > button:not(.suggested-action):not(.destructive-action) {
  3706. border: 1px solid rgba(0, 0, 0, 0.26);
  3707. }
  3708. window.background.chromium > button {
  3709. box-shadow: none;
  3710. background-size: auto;
  3711. }
  3712. window.background.chromium > button:hover {
  3713. background-image: image(alpha(currentColor, 0.06));
  3714. }
  3715. window.background.chromium > button:active {
  3716. background-image: image(alpha(currentColor, 0.12));
  3717. }
  3718. window.background.chromium headerbar button:active {
  3719. background-size: 1000% 1000%;
  3720. }
  3721. window.background.chromium spinner {
  3722. color: #ca4c7a;
  3723. }
  3724. window.background.chromium textview {
  3725. background-color: #efefef;
  3726. }
  3727. tooltip.background.chromium {
  3728. background-color: white;
  3729. }
  3730. /***********
  3731. * Firefox *
  3732. ***********/
  3733. window.background:not(.csd) > widget > separator {
  3734. color: rgba(0, 0, 0, 0.26);
  3735. }
  3736. window.background:not(.csd) > widget > scrollbar {
  3737. background-clip: border-box;
  3738. }
  3739. window.background:not(.csd) > widget > scrollbar,
  3740. window.background:not(.csd) > widget > frame > border {
  3741. border-color: rgba(0, 0, 0, 0.26);
  3742. }
  3743. window.background:not(.csd) > widget > entry,
  3744. window.background:not(.csd) > widget > button > button {
  3745. border: 1px solid rgba(0, 0, 0, 0.26);
  3746. border-radius: 4px;
  3747. box-shadow: none;
  3748. }
  3749. window.background:not(.csd) > widget > entry {
  3750. min-height: 30px;
  3751. }
  3752. window.background:not(.csd) > widget > entry:focus {
  3753. border-color: #ca4c7a;
  3754. }
  3755. window.background:not(.csd) > widget > button > button {
  3756. padding: 4px 8px;
  3757. background-size: auto;
  3758. }
  3759. window.background:not(.csd) > widget > button > button:hover {
  3760. background-image: image(alpha(currentColor, 0.06));
  3761. }
  3762. window.background:not(.csd) > widget > button > button:active {
  3763. background-image: image(alpha(currentColor, 0.12));
  3764. }
  3765. window.background:not(.csd) > widget > checkbutton > check:not(:checked),
  3766. window.background:not(.csd) > widget > radiobutton > radio:not(:checked) {
  3767. color: #757575;
  3768. }
  3769. window.background:not(.csd) > widget > checkbutton > check:not(:checked):hover, window.background:not(.csd) > widget > checkbutton > check:not(:checked):active,
  3770. window.background:not(.csd) > widget > radiobutton > radio:not(:checked):hover,
  3771. window.background:not(.csd) > widget > radiobutton > radio:not(:checked):active {
  3772. color: #212121;
  3773. }
  3774. window.background:not(.csd) > widget > checkbutton > check:not(:checked):disabled,
  3775. window.background:not(.csd) > widget > radiobutton > radio:not(:checked):disabled {
  3776. color: rgba(117, 117, 117, 0.5);
  3777. }
  3778. window.background:not(.csd) > window > menu,
  3779. window.background:not(.csd) > menu > menu {
  3780. border: none;
  3781. }
  3782. window.background:not(.csd) > widget > menubar {
  3783. color: rgba(202, 76, 122, 0.7);
  3784. }
  3785. window.background:not(.csd) > widget > menubar:hover {
  3786. color: #ca4c7a;
  3787. }
  3788. window.background:not(.csd) > widget > menubar:disabled {
  3789. color: rgba(202, 76, 122, 0.3);
  3790. }
  3791. window.background:not(.csd) > widget > frame {
  3792. color: rgba(0, 0, 0, 0.26);
  3793. }
  3794. window.background:not(.csd) > widget > checkbutton > check,
  3795. window.background:not(.csd) > widget > radiobutton > radio {
  3796. margin: 0;
  3797. padding: 0;
  3798. }
  3799. window.background:not(.csd) > window.background > menu > separator {
  3800. color: rgba(0, 0, 0, 0.12);
  3801. }
  3802. /************
  3803. * Inkscape *
  3804. ************/
  3805. #ToolboxCommon > #AuxToolbox #StyleSwatch {
  3806. font-size: smaller;
  3807. }
  3808. #ToolboxCommon > #AuxToolbox #Kludge {
  3809. padding: 0;
  3810. }
  3811. #ToolboxCommon > #AuxToolbox spinbutton,
  3812. #ToolboxCommon > #AuxToolbox entry {
  3813. min-height: 32px;
  3814. }
  3815. #ToolboxCommon > #AuxToolbox button:not(.up):not(.down) {
  3816. min-height: 24px;
  3817. min-width: 16px;
  3818. padding: 4px 8px;
  3819. border-radius: 3px;
  3820. -gtk-outline-radius: 3px;
  3821. }
  3822. #ToolboxCommon > #AuxToolbox spinbutton button {
  3823. border-width: 4px;
  3824. }
  3825. #ToolboxCommon > toolbar.vertical {
  3826. margin-top: -4px;
  3827. }
  3828. #ToolboxCommon > toolbar.vertical button {
  3829. min-height: 24px;
  3830. min-width: 24px;
  3831. padding: 4px;
  3832. border-radius: 3px;
  3833. -gtk-outline-radius: 3px;
  3834. }
  3835. #CanvasTable button {
  3836. min-height: 16px;
  3837. min-width: 16px;
  3838. padding: 0;
  3839. }
  3840. #CanvasTable #HorizontalScrollbar {
  3841. border-top: 1px solid rgba(0, 0, 0, 0.12);
  3842. }
  3843. #CanvasTable #VerticalScrollbar:dir(ltr) {
  3844. border-left: 1px solid rgba(0, 0, 0, 0.12);
  3845. }
  3846. #CanvasTable #VerticalScrollbar:dir(rtl) {
  3847. border-right: 1px solid rgba(0, 0, 0, 0.12);
  3848. }
  3849. #Canvas_and_Dock frame > border {
  3850. border: none;
  3851. }
  3852. #Canvas_and_Dock widget > widget > button.flat {
  3853. min-height: 16px;
  3854. min-width: 16px;
  3855. padding: 4px;
  3856. }
  3857. #Canvas_and_Dock widget > widget > box.horizontal image {
  3858. padding: 4px;
  3859. }
  3860. #Canvas_and_Dock box.horizontal > box.vertical > button.flat {
  3861. min-height: 16px;
  3862. min-width: 24px;
  3863. padding: 8px 4px;
  3864. }
  3865. /***********
  3866. * Synapse *
  3867. ***********/
  3868. box.vertical > widget > widget:selected {
  3869. background-color: #ca4c7a;
  3870. }
  3871. /*********
  3872. * Unity *
  3873. *********/
  3874. UnityDecoration {
  3875. -UnityDecoration-extents: 28px 0 0 0;
  3876. -UnityDecoration-input-extents: 8px;
  3877. -UnityDecoration-shadow-offset-x: 0;
  3878. -UnityDecoration-shadow-offset-y: 3px;
  3879. -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48);
  3880. -UnityDecoration-active-shadow-radius: 18px;
  3881. -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32);
  3882. -UnityDecoration-inactive-shadow-radius: 6px;
  3883. -UnityDecoration-glow-size: 8px;
  3884. -UnityDecoration-glow-color: #ca4c7a;
  3885. -UnityDecoration-title-indent: 4px;
  3886. -UnityDecoration-title-fade: 32px;
  3887. -UnityDecoration-title-alignment: 0.0;
  3888. }
  3889. UnityDecoration .top {
  3890. padding: 0 2px;
  3891. border-style: none;
  3892. border-radius: 3px 3px 0 0;
  3893. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  3894. background-color: #ffffff;
  3895. color: #ca4c7a;
  3896. }
  3897. UnityDecoration .top:backdrop {
  3898. color: rgba(202, 76, 122, 0.7);
  3899. }
  3900. UnityDecoration .menuitem {
  3901. color: rgba(202, 76, 122, 0.7);
  3902. }
  3903. UnityDecoration .menuitem:hover {
  3904. box-shadow: inset 0 -2px #ca4c7a;
  3905. background-color: transparent;
  3906. color: #ca4c7a;
  3907. }
  3908. .background:not(.csd) headerbar:not(.titlebar) {
  3909. border-radius: 0;
  3910. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  3911. }
  3912. .background:not(.csd) headerbar:not(.titlebar).inline-toolbar {
  3913. border-style: none;
  3914. }
  3915. UnityPanelWidget,
  3916. .unity-panel {
  3917. background-color: #dfdfdf;
  3918. color: #ca4c7a;
  3919. }
  3920. UnityPanelWidget:backdrop,
  3921. .unity-panel:backdrop {
  3922. color: rgba(202, 76, 122, 0.7);
  3923. }
  3924. .unity-panel.menuitem,
  3925. .unity-panel .menuitem {
  3926. color: rgba(202, 76, 122, 0.7);
  3927. }
  3928. .unity-panel.menubar.menuitem:hover,
  3929. .unity-panel.menubar .menuitem *:hover {
  3930. box-shadow: inset 0 -2px #ca4c7a;
  3931. background-color: transparent;
  3932. color: #ca4c7a;
  3933. }
  3934. .menu IdoPlaybackMenuItem.menuitem:active {
  3935. -gtk-icon-source: -gtk-icontheme("process-working-symbolic");
  3936. animation: spin 1s linear infinite;
  3937. color: #ca4c7a;
  3938. }
  3939. /**************
  3940. * Mate-Panel *
  3941. **************/
  3942. .mate-panel-menu-bar menubar,
  3943. #PanelApplet-window-menu-applet-button {
  3944. background-color: transparent;
  3945. }
  3946. .mate-panel-menu-bar {
  3947. background-color: rgba(0, 0, 0, 0.6);
  3948. font-weight: 500;
  3949. }
  3950. .mate-panel-menu-bar:not(.popup) {
  3951. color: rgba(255, 255, 255, 0.7);
  3952. }
  3953. .mate-panel-menu-bar button {
  3954. min-height: 16px;
  3955. min-width: 16px;
  3956. padding: 0;
  3957. border-radius: 0;
  3958. }
  3959. .mate-panel-menu-bar button:checked {
  3960. background-color: rgba(255, 255, 255, 0.12);
  3961. }
  3962. PanelToplevel.horizontal > grid > button {
  3963. min-width: 24px;
  3964. }
  3965. PanelToplevel.vertical > grid > button {
  3966. min-height: 24px;
  3967. }
  3968. PanelSeparator {
  3969. color: rgba(255, 255, 255, 0.12);
  3970. }
  3971. MatePanelAppletFrameDBus {
  3972. border-style: solid;
  3973. border-color: rgba(255, 255, 255, 0.12);
  3974. }
  3975. .mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus {
  3976. border-width: 0 1px;
  3977. }
  3978. .mate-panel-menu-bar.vertical MatePanelAppletFrameDBus {
  3979. border-width: 1px 0;
  3980. }
  3981. .mate-panel-menu-bar menubar > menuitem {
  3982. color: rgba(255, 255, 255, 0.7);
  3983. }
  3984. .mate-panel-menu-bar menubar > menuitem:hover {
  3985. background-color: rgba(255, 255, 255, 0.12);
  3986. color: #ffffff;
  3987. }
  3988. .mate-panel-menu-bar menubar > menuitem:disabled {
  3989. color: rgba(255, 255, 255, 0.3);
  3990. }
  3991. .mate-panel-menu-bar.horizontal menubar > menuitem {
  3992. padding: 0 8px;
  3993. }
  3994. .mate-panel-menu-bar.vertical menubar > menuitem {
  3995. padding: 8px 0;
  3996. }
  3997. .mate-panel-menu-bar menubar menu > menuitem {
  3998. min-height: 28px;
  3999. padding: 0 6px;
  4000. }
  4001. .mate-panel-menu-bar #PanelApplet button {
  4002. -GtkWidget-window-dragging: true;
  4003. }
  4004. .mate-panel-menu-bar #tasklist-button {
  4005. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px;
  4006. }
  4007. .mate-panel-menu-bar #tasklist-button:checked {
  4008. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px;
  4009. }
  4010. .mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) {
  4011. padding-left: 4px;
  4012. }
  4013. .mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) {
  4014. padding-right: 4px;
  4015. }
  4016. .mate-panel-menu-bar.vertical #tasklist-button {
  4017. min-height: 32px;
  4018. }
  4019. .mate-panel-menu-bar.horizontal #showdesktop-button image {
  4020. min-width: 24px;
  4021. padding: 0 4px;
  4022. }
  4023. .mate-panel-menu-bar.vertical #showdesktop-button image {
  4024. min-height: 24px;
  4025. padding: 4px 0;
  4026. }
  4027. PanelApplet.wnck-applet .wnck-pager {
  4028. background-color: transparent;
  4029. color: #ea6c9a;
  4030. }
  4031. PanelApplet.wnck-applet .wnck-pager:hover {
  4032. background-color: rgba(255, 255, 255, 0.12);
  4033. }
  4034. PanelApplet.wnck-applet .wnck-pager:active {
  4035. background-color: rgba(255, 255, 255, 0.3);
  4036. }
  4037. PanelApplet.wnck-applet .wnck-pager:selected {
  4038. background-color: #ca4c7a;
  4039. }
  4040. .mate-panel-menu-bar.horizontal #clock-applet-button label {
  4041. padding: 0 8px;
  4042. }
  4043. .mate-panel-menu-bar.vertical #clock-applet-button label {
  4044. padding: 8px 0;
  4045. }
  4046. #MatePanelPopupWindow {
  4047. border: 1px solid rgba(0, 0, 0, 0.12);
  4048. border-radius: 4px;
  4049. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  4050. }
  4051. #MatePanelPopupWindow frame > border {
  4052. border-style: none;
  4053. }
  4054. #MatePanelPopupWindow button {
  4055. padding: 4px 16px;
  4056. }
  4057. #MatePanelPopupWindow > frame > box > box > box > widget {
  4058. color: rgba(0, 0, 0, 0.12);
  4059. }
  4060. na-tray-applet {
  4061. -NaTrayApplet-icon-padding: 3px;
  4062. -NaTrayApplet-icon-size: 16;
  4063. }
  4064. .mate-panel-menu-bar {
  4065. -PanelMenuBar-icon-visible: true;
  4066. }
  4067. .mate-panel-applet-slider {
  4068. border: 1px solid rgba(0, 0, 0, 0.12);
  4069. border-radius: 4px;
  4070. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  4071. background-color: #ffffff;
  4072. }
  4073. .mate-panel-applet-slider frame > border {
  4074. border-style: none;
  4075. }
  4076. #PanelApplet:not(:selected) > box {
  4077. transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  4078. }
  4079. #PanelApplet:selected > box {
  4080. background-color: rgba(255, 255, 255, 0.12);
  4081. color: #ffffff;
  4082. }
  4083. #mate-menu {
  4084. border: 1px solid rgba(0, 0, 0, 0.12);
  4085. }
  4086. #mate-menu button {
  4087. min-height: 24px;
  4088. min-width: 24px;
  4089. padding: 4px 0;
  4090. color: #ca4c7a;
  4091. font-weight: normal;
  4092. }
  4093. #mate-menu button label:not(:first-child) {
  4094. color: rgba(202, 76, 122, 0.7);
  4095. }
  4096. #mate-menu entry {
  4097. margin: 0 0 8px;
  4098. }
  4099. #mate-menu entry image {
  4100. margin: 0;
  4101. }
  4102. #mate-menu entry + button {
  4103. margin: 0 4px 8px;
  4104. padding: 6px;
  4105. }
  4106. /*********************
  4107. * CAJA File manager *
  4108. *********************/
  4109. .caja-navigation-window button.toggle.image-button {
  4110. border-radius: 3px;
  4111. }
  4112. .caja-pathbar button {
  4113. margin: 0 -1px 0 -2px;
  4114. }
  4115. .caja-pathbar button > widget {
  4116. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  4117. -GtkArrow-arrow-scaling: 1;
  4118. }
  4119. .caja-side-pane notebook viewport.frame,
  4120. .caja-side-pane notebook widget .vertical {
  4121. background-color: #efefef;
  4122. }
  4123. .caja-side-pane notebook,
  4124. .caja-notebook {
  4125. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4126. }
  4127. .caja-side-pane notebook .frame,
  4128. .caja-notebook .frame {
  4129. border-style: none;
  4130. }
  4131. .caja-navigation-window statusbar {
  4132. margin: 0 -10px;
  4133. padding: 0 4px;
  4134. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4135. }
  4136. .caja-notebook frame > border {
  4137. border-style: none;
  4138. }
  4139. #caja-extra-view-widget {
  4140. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4141. background-color: #ffffff;
  4142. }
  4143. #caja-extra-view-widget > box > box > label {
  4144. font-weight: bold;
  4145. }
  4146. /*********
  4147. * Pluma *
  4148. *********/
  4149. .pluma-window statusbar {
  4150. margin: 0 -10px;
  4151. padding: 0 4px;
  4152. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4153. }
  4154. .pluma-window statusbar frame > border {
  4155. border-style: none;
  4156. }
  4157. .pluma-window statusbar frame button.flat {
  4158. padding: 0 4px;
  4159. border-radius: 0;
  4160. }
  4161. .pluma-window statusbar frame button.flat widget {
  4162. -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
  4163. -GtkArrow-arrow-scaling: 1;
  4164. }
  4165. .pluma-print-preview toolbar {
  4166. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4167. }
  4168. .pluma-window paned.horizontal box.vertical box.horizontal button.flat {
  4169. margin: 1px;
  4170. }
  4171. .pluma-window paned.horizontal box.vertical .frame {
  4172. border-style: none;
  4173. }
  4174. .pluma-window paned.horizontal box.vertical notebook.frame {
  4175. margin-top: -1px;
  4176. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4177. }
  4178. .pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal {
  4179. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4180. }
  4181. /*********
  4182. * Atril *
  4183. *********/
  4184. .atril-window paned.horizontal box.vertical .frame {
  4185. border-style: none;
  4186. }
  4187. .atril-window paned.horizontal box.vertical notebook .frame {
  4188. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4189. }
  4190. /* mate-screensaver lock dialog */
  4191. .lock-dialog {
  4192. border-radius: 3px;
  4193. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.4);
  4194. }
  4195. .lock-dialog frame > border {
  4196. border-style: none;
  4197. }
  4198. /* multimedia OSD */
  4199. MsdOsdWindow.background.osd {
  4200. border-radius: 3px;
  4201. background-color: rgba(255, 255, 255, 0.9);
  4202. color: #ca4c7a;
  4203. }
  4204. MsdOsdWindow.background.osd .trough {
  4205. border-radius: 0;
  4206. background-color: rgba(255, 255, 255, 0.12);
  4207. }
  4208. MsdOsdWindow.background.osd .progressbar {
  4209. border-radius: 0;
  4210. background-color: #ca4c7a;
  4211. }
  4212. /******************
  4213. * Budgie Desktop *
  4214. ******************/
  4215. .budgie-container {
  4216. background-color: transparent;
  4217. }
  4218. .budgie-settings-window buttonbox.inline-toolbar {
  4219. border-style: none none solid;
  4220. }
  4221. .budgie-settings-window buttonbox.inline-toolbar button {
  4222. border-radius: 3px;
  4223. -gtk-outline-radius: 3px;
  4224. }
  4225. .budgie-popover {
  4226. border-style: solid;
  4227. border-width: 1px;
  4228. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
  4229. border-radius: 4px;
  4230. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
  4231. background-color: #efefef;
  4232. }
  4233. .budgie-popover .container {
  4234. padding: 2px;
  4235. }
  4236. .budgie-popover border {
  4237. border: none;
  4238. }
  4239. .budgie-popover list {
  4240. background-color: transparent;
  4241. }
  4242. .budgie-popover row {
  4243. padding: 0;
  4244. }
  4245. .budgie-popover row:hover {
  4246. box-shadow: none;
  4247. }
  4248. .budgie-popover:not(.budgie-menu) button.flat:not(.image-button) {
  4249. min-height: 28px;
  4250. padding: 0 8px;
  4251. color: #ca4c7a;
  4252. font-weight: normal;
  4253. }
  4254. .budgie-popover:not(.budgie-menu) button.flat:not(.image-button):disabled {
  4255. color: rgba(202, 76, 122, 0.5);
  4256. }
  4257. .budgie-popover.budgie-menu .container {
  4258. padding: 0;
  4259. }
  4260. .budgie-popover.user-menu .container {
  4261. padding: 8px;
  4262. }
  4263. .budgie-popover.user-menu separator {
  4264. margin: 4px 0;
  4265. }
  4266. .budgie-popover.sound-popover separator {
  4267. margin: 3px 0;
  4268. }
  4269. .budgie-popover.night-light-indicator .container {
  4270. padding: 8px;
  4271. }
  4272. .budgie-popover.places-menu .container {
  4273. padding: 8px;
  4274. }
  4275. .budgie-popover.places-menu .places-list:not(.always-expand) {
  4276. margin-top: 4px;
  4277. padding-top: 4px;
  4278. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4279. }
  4280. .budgie-popover.places-menu .alternative-label {
  4281. padding: 3px;
  4282. font-size: 15px;
  4283. }
  4284. .budgie-popover.workspace-popover .container {
  4285. padding: 2px 8px 8px;
  4286. }
  4287. .budgie-popover.workspace-popover separator {
  4288. margin: 4px 0;
  4289. }
  4290. .budgie-popover.workspace-popover flowboxchild {
  4291. padding: 0;
  4292. }
  4293. .workspace-switcher .workspace-layout {
  4294. border: 0 solid rgba(255, 255, 255, 0.12);
  4295. }
  4296. .top .workspace-switcher .workspace-layout:dir(ltr),
  4297. .bottom .workspace-switcher .workspace-layout:dir(ltr) {
  4298. border-left-width: 1px;
  4299. }
  4300. .top .workspace-switcher .workspace-layout:dir(rtl),
  4301. .bottom .workspace-switcher .workspace-layout:dir(rtl) {
  4302. border-right-width: 1px;
  4303. }
  4304. .left .workspace-switcher .workspace-layout,
  4305. .right .workspace-switcher .workspace-layout {
  4306. border-top-width: 1px;
  4307. }
  4308. .workspace-switcher .workspace-item,
  4309. .workspace-switcher .workspace-add-button {
  4310. border: 0 solid rgba(255, 255, 255, 0.12);
  4311. }
  4312. .top .workspace-switcher .workspace-item:dir(ltr),
  4313. .bottom .workspace-switcher .workspace-item:dir(ltr), .top
  4314. .workspace-switcher .workspace-add-button:dir(ltr),
  4315. .bottom
  4316. .workspace-switcher .workspace-add-button:dir(ltr) {
  4317. border-right-width: 1px;
  4318. }
  4319. .top .workspace-switcher .workspace-item:dir(rtl),
  4320. .bottom .workspace-switcher .workspace-item:dir(rtl), .top
  4321. .workspace-switcher .workspace-add-button:dir(rtl),
  4322. .bottom
  4323. .workspace-switcher .workspace-add-button:dir(rtl) {
  4324. border-left-width: 1px;
  4325. }
  4326. .left .workspace-switcher .workspace-item,
  4327. .right .workspace-switcher .workspace-item, .left
  4328. .workspace-switcher .workspace-add-button,
  4329. .right
  4330. .workspace-switcher .workspace-add-button {
  4331. border-bottom-width: 1px;
  4332. }
  4333. .workspace-switcher .workspace-item {
  4334. transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  4335. }
  4336. .workspace-switcher .workspace-item.current-workspace {
  4337. background-color: rgba(255, 255, 255, 0.12);
  4338. }
  4339. .workspace-switcher .workspace-add-button:hover {
  4340. box-shadow: none;
  4341. }
  4342. .workspace-switcher .workspace-add-button:active {
  4343. background-image: none;
  4344. }
  4345. .workspace-switcher .workspace-add-button:active image {
  4346. margin: 1px 0 -1px;
  4347. }
  4348. .budgie-panel .workspace-switcher .workspace-icon-button {
  4349. min-height: 24px;
  4350. min-width: 24px;
  4351. padding: 0;
  4352. border-radius: 3px;
  4353. }
  4354. .budgie-menu.background {
  4355. padding: 0;
  4356. background-color: #efefef;
  4357. }
  4358. .budgie-menu scrollbar,
  4359. .budgie-menu entry.search {
  4360. background-color: transparent;
  4361. }
  4362. .budgie-menu entry.search {
  4363. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4364. border-radius: 0;
  4365. box-shadow: none;
  4366. font-size: 120%;
  4367. }
  4368. .budgie-menu .categories:dir(ltr) {
  4369. border-bottom-left-radius: 3px;
  4370. }
  4371. .budgie-menu .categories:dir(rtl) {
  4372. border-bottom-right-radius: 3px;
  4373. }
  4374. .budgie-menu button {
  4375. min-height: 32px;
  4376. padding: 0 8px;
  4377. border-radius: 0;
  4378. color: #ca4c7a;
  4379. font-weight: normal;
  4380. }
  4381. .budgie-menu button:disabled {
  4382. color: rgba(202, 76, 122, 0.5);
  4383. }
  4384. .budgie-menu button:checked:disabled {
  4385. background-color: #ca4c7a;
  4386. }
  4387. .budgie-menu row {
  4388. padding: 0;
  4389. }
  4390. .budgie-menu row:hover {
  4391. box-shadow: none;
  4392. }
  4393. popover.background.user-menu {
  4394. padding: 8px;
  4395. }
  4396. popover.background.user-menu .content-box {
  4397. background-color: transparent;
  4398. }
  4399. popover.background.user-menu separator {
  4400. margin: 4px 0;
  4401. }
  4402. popover.background.user-menu row {
  4403. padding: 0;
  4404. box-shadow: none;
  4405. background-image: none;
  4406. }
  4407. popover.background.places-menu {
  4408. padding: 8px;
  4409. }
  4410. popover.background.places-menu .name-button.text-button {
  4411. padding-left: 8px;
  4412. padding-right: 8px;
  4413. }
  4414. popover.background.places-menu .name-button.text-button image:dir(ltr) {
  4415. margin-right: 3px;
  4416. }
  4417. popover.background.places-menu .name-button.text-button image:dir(rtl) {
  4418. margin-left: 3px;
  4419. }
  4420. popover.background.places-menu .places-section-header > image:dir(ltr) {
  4421. margin: 0 -2px 0 5px;
  4422. }
  4423. popover.background.places-menu .places-section-header > image:dir(rtl) {
  4424. margin: 0 5px 0 -2px;
  4425. }
  4426. popover.background.places-menu .places-list {
  4427. margin-top: 4px;
  4428. padding-top: 4px;
  4429. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4430. background-color: transparent;
  4431. }
  4432. popover.background.places-menu row {
  4433. padding: 0;
  4434. box-shadow: none;
  4435. background-image: none;
  4436. }
  4437. .budgie-panel {
  4438. transition: background-color 250ms cubic-bezier(0, 0, 0.2, 1);
  4439. background-color: rgba(0, 0, 0, 0.6);
  4440. color: rgba(255, 255, 255, 0.7);
  4441. font-weight: 500;
  4442. }
  4443. .budgie-panel.transparent {
  4444. background-color: rgba(0, 0, 0, 0.6);
  4445. }
  4446. .budgie-panel button {
  4447. min-height: 16px;
  4448. min-width: 16px;
  4449. padding: 0;
  4450. border-radius: 0;
  4451. }
  4452. .budgie-panel button:checked {
  4453. background-color: rgba(255, 255, 255, 0.12);
  4454. }
  4455. .budgie-panel.horizontal button {
  4456. padding: 0 4px;
  4457. }
  4458. .budgie-panel.vertical button {
  4459. padding: 4px 0;
  4460. }
  4461. .budgie-panel separator {
  4462. background-color: rgba(255, 255, 255, 0.3);
  4463. }
  4464. .budgie-panel .alert {
  4465. color: #ca4c7a;
  4466. }
  4467. .budgie-panel #tasklist-button {
  4468. padding: 0 4px;
  4469. }
  4470. .budgie-panel.vertical #tasklist-button {
  4471. min-height: 32px;
  4472. }
  4473. .budgie-panel button.flat.launcher {
  4474. padding: 0;
  4475. }
  4476. .budgie-panel button.flat.launcher:not(:checked) {
  4477. color: rgba(255, 255, 255, 0.5);
  4478. }
  4479. .budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel button.flat.launcher:not(:checked):active {
  4480. color: rgba(255, 255, 255, 0.7);
  4481. }
  4482. .budgie-panel button.flat.launcher:not(:checked):disabled {
  4483. color: rgba(255, 255, 255, 0.3);
  4484. }
  4485. .top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button, .top .budgie-panel button.flat.launcher, .budgie-panel .top button.flat.launcher {
  4486. border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
  4487. }
  4488. .top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel button.flat.launcher:checked, .budgie-panel .top button.flat.launcher:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher,
  4489. .top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running {
  4490. border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0;
  4491. }
  4492. .bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button, .bottom .budgie-panel button.flat.launcher, .budgie-panel .bottom button.flat.launcher {
  4493. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
  4494. }
  4495. .bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel button.flat.launcher:checked, .budgie-panel .bottom button.flat.launcher:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher,
  4496. .bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running {
  4497. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0;
  4498. }
  4499. .left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button, .left .budgie-panel button.flat.launcher, .budgie-panel .left button.flat.launcher {
  4500. border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
  4501. }
  4502. .left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel button.flat.launcher:checked, .budgie-panel .left button.flat.launcher:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher,
  4503. .left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running {
  4504. border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px;
  4505. }
  4506. .right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button, .right .budgie-panel button.flat.launcher, .budgie-panel .right button.flat.launcher {
  4507. border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0;
  4508. }
  4509. .right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel button.flat.launcher:checked, .budgie-panel .right button.flat.launcher:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher,
  4510. .right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running {
  4511. border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0;
  4512. }
  4513. frame.raven-frame > border {
  4514. border-style: none;
  4515. box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
  4516. }
  4517. .top frame.raven-frame > border {
  4518. margin-bottom: 32px;
  4519. }
  4520. .bottom frame.raven-frame > border {
  4521. margin-top: 32px;
  4522. }
  4523. .left frame.raven-frame > border {
  4524. margin-right: 32px;
  4525. }
  4526. .right frame.raven-frame > border {
  4527. margin-left: 32px;
  4528. }
  4529. .raven {
  4530. background-color: #efefef;
  4531. }
  4532. .raven > box {
  4533. margin-bottom: -10px;
  4534. }
  4535. .raven > stack {
  4536. margin-bottom: -10px;
  4537. }
  4538. .raven stackswitcher.linked > button {
  4539. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #caa452 0%, transparent 0%) 0 0 0/0 0 0px;
  4540. border-radius: 0;
  4541. }
  4542. .raven stackswitcher.linked > button:checked {
  4543. border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #caa452 100%, transparent 0%) 0 0 2/0 0 2px;
  4544. background-color: transparent;
  4545. }
  4546. .raven .raven-header {
  4547. min-height: 36px;
  4548. padding: 3px;
  4549. }
  4550. .raven .raven-header:not(.top) {
  4551. margin-top: -6px;
  4552. }
  4553. .raven .raven-header.top {
  4554. padding: 2px 0;
  4555. background-color: #ca4c7a;
  4556. color: #ffffff;
  4557. }
  4558. .raven .raven-header.top stackswitcher button {
  4559. margin: -6px 0;
  4560. min-height: 36px;
  4561. }
  4562. .raven .raven-header.top button.image-button:dir(ltr) {
  4563. margin-right: 2px;
  4564. }
  4565. .raven .raven-header.top button.image-button:dir(rtl) {
  4566. margin-left: 2px;
  4567. }
  4568. .raven .raven-header.top > image {
  4569. margin: 0 8px;
  4570. }
  4571. .raven .raven-header.top > label {
  4572. margin: 0 -8px;
  4573. font-weight: bold;
  4574. }
  4575. .raven .raven-header.bottom {
  4576. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4577. }
  4578. .raven viewport.frame .raven-header {
  4579. margin-top: -8px;
  4580. }
  4581. .raven .raven-background {
  4582. border-style: solid none;
  4583. border-width: 1px;
  4584. border-color: rgba(0, 0, 0, 0.12);
  4585. background-color: #efefef;
  4586. }
  4587. .raven .raven-background.frame {
  4588. border-style: solid none;
  4589. }
  4590. .raven .raven-background > overlay > widget > image {
  4591. color: rgba(202, 76, 122, 0.12);
  4592. }
  4593. .raven .raven-background grid > label:first-child {
  4594. min-height: 36px;
  4595. }
  4596. .raven scrolledwindow.raven-background {
  4597. border-bottom-style: none;
  4598. }
  4599. .raven .raven-header.top + .raven-background {
  4600. border-style: none;
  4601. background-color: #ca4c7a;
  4602. color: #ffffff;
  4603. }
  4604. .raven .raven-header.top + .raven-background stackswitcher button {
  4605. margin: -4px 0;
  4606. }
  4607. .raven .powerstrip button {
  4608. margin: 2px 0 1px;
  4609. padding: 12px;
  4610. }
  4611. .raven .option-subtitle {
  4612. font-size: smaller;
  4613. }
  4614. calendar.raven-calendar {
  4615. border-style: none;
  4616. background-color: transparent;
  4617. }
  4618. calendar.raven-calendar:selected {
  4619. border-radius: 3px;
  4620. background-color: #ca4c7a;
  4621. }
  4622. .raven-mpris {
  4623. background-color: rgba(0, 0, 0, 0.6);
  4624. color: #ffffff;
  4625. }
  4626. .raven-mpris label {
  4627. min-height: 24px;
  4628. }
  4629. .raven-mpris button.image-button {
  4630. padding: 12px;
  4631. }
  4632. .budgie-notification-window, .budgie-osd-window, .budgie-switcher-window {
  4633. background-color: transparent;
  4634. }
  4635. .budgie-notification .notification-title, .budgie-switcher .notification-title {
  4636. font-size: 120%;
  4637. }
  4638. .budgie-osd .budgie-osd-text {
  4639. font-size: 120%;
  4640. }
  4641. .drop-shadow {
  4642. margin: 5px 9px;
  4643. padding: 3px;
  4644. border-radius: 3px;
  4645. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
  4646. background-color: #efefef;
  4647. }
  4648. .drop-shadow .linked > button {
  4649. border-radius: 3px;
  4650. }
  4651. .budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog {
  4652. border-radius: 3px;
  4653. background-color: #efefef;
  4654. }
  4655. .budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration {
  4656. border-radius: 3px;
  4657. }
  4658. .budgie-session-dialog label:not(:last-child),
  4659. .budgie-session-dialog .dialog-title {
  4660. font-size: 120%;
  4661. }
  4662. .budgie-session-dialog .linked.horizontal > button {
  4663. padding: 8px 16px;
  4664. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4665. border-radius: 0;
  4666. }
  4667. .budgie-session-dialog .linked.horizontal > button:first-child {
  4668. border-bottom-left-radius: 3px;
  4669. }
  4670. .budgie-session-dialog .linked.horizontal > button:last-child {
  4671. border-bottom-right-radius: 3px;
  4672. }
  4673. .budgie-polkit-dialog .message {
  4674. color: rgba(202, 76, 122, 0.5);
  4675. }
  4676. .budgie-polkit-dialog .failure {
  4677. color: #ca4c7a;
  4678. }
  4679. .budgie-run-dialog {
  4680. background-color: #efefef;
  4681. }
  4682. .budgie-run-dialog entry.search {
  4683. font-size: 120%;
  4684. padding: 6px 14px;
  4685. box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  4686. background-color: transparent;
  4687. }
  4688. .budgie-run-dialog list .dim-label, .budgie-run-dialog list label.separator, .budgie-run-dialog list .titlebar:not(headerbar) .subtitle, .titlebar:not(headerbar) .budgie-run-dialog list .subtitle,
  4689. .budgie-run-dialog list headerbar .subtitle, headerbar .budgie-run-dialog list .subtitle, .budgie-run-dialog list .budgie-notification .notification-body, .budgie-notification .budgie-run-dialog list .notification-body, .budgie-run-dialog list .budgie-switcher .notification-body, .budgie-switcher .budgie-run-dialog list .notification-body {
  4690. opacity: 1;
  4691. }
  4692. .budgie-run-dialog scrolledwindow {
  4693. border-top: 1px solid rgba(0, 0, 0, 0.12);
  4694. }
  4695. /************************
  4696. * LightDM GTK+ Greeter *
  4697. ************************/
  4698. #panel_window {
  4699. background-color: rgba(0, 0, 0, 0.3);
  4700. color: #ffffff;
  4701. }
  4702. #panel_window menubar,
  4703. #panel_window separator {
  4704. background-color: transparent;
  4705. }
  4706. #panel_window separator {
  4707. padding: 0 4px;
  4708. }
  4709. #panel_window separator:first-child {
  4710. padding: 0 8px;
  4711. }
  4712. #panel_window menubar > menuitem {
  4713. color: rgba(255, 255, 255, 0.7);
  4714. }
  4715. #panel_window menubar > menuitem:hover {
  4716. color: #ffffff;
  4717. }
  4718. #panel_window menubar > menuitem:disabled label {
  4719. color: rgba(255, 255, 255, 0.3);
  4720. }
  4721. #login_window,
  4722. #shutdown_dialog,
  4723. #restart_dialog {
  4724. margin: 8px;
  4725. border-radius: 3px;
  4726. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.4);
  4727. background-color: #efefef;
  4728. }
  4729. #content_frame {
  4730. padding-bottom: 20px;
  4731. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4732. }
  4733. #buttonbox_frame {
  4734. padding-top: 24px;
  4735. }
  4736. #buttonbox_frame button {
  4737. margin: -16px;
  4738. }
  4739. #greeter_infobar {
  4740. margin-top: -1px;
  4741. }
  4742. /********
  4743. * Nemo *
  4744. ********/
  4745. .nemo-window .primary-toolbar {
  4746. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  4747. }
  4748. .nemo-window .primary-toolbar entry {
  4749. min-height: 0;
  4750. margin: 0;
  4751. }
  4752. .nemo-window .primary-toolbar button.text-button {
  4753. padding-left: 8px;
  4754. padding-right: 8px;
  4755. }
  4756. .nemo-window .primary-toolbar button:not(.text-button):not(.image-button) {
  4757. padding-left: 4px;
  4758. padding-right: 4px;
  4759. }
  4760. .nemo-window scrolledwindow.frame {
  4761. border-style: none;
  4762. }
  4763. .nemo-window scrolledwindow.frame .view:not(:selected) {
  4764. background-color: transparent;
  4765. }
  4766. .nemo-window infobar {
  4767. margin-top: -6px;
  4768. }
  4769. .nemo-window .nemo-inactive-pane .view:not(:selected) {
  4770. background-color: #f5f5f5;
  4771. }
  4772. /* GTK NAMED COLORS
  4773. ----------------
  4774. use responsibly! */
  4775. /*
  4776. widget text/foreground color */
  4777. @define-color theme_fg_color #ca4c7a;
  4778. /*
  4779. text color for entries, views and content in general */
  4780. @define-color theme_text_color #ca4c7a;
  4781. /*
  4782. widget base background color */
  4783. @define-color theme_bg_color #ffffff;
  4784. /*
  4785. text widgets and the like base background color */
  4786. @define-color theme_base_color #efefef;
  4787. /*
  4788. base background color of selections */
  4789. @define-color theme_selected_bg_color #ca4c7a;
  4790. /*
  4791. text/foreground color of selections */
  4792. @define-color theme_selected_fg_color #ffffff;
  4793. /*
  4794. base background color of insensitive widgets */
  4795. @define-color insensitive_bg_color #ffffff;
  4796. /*
  4797. text foreground color of insensitive widgets */
  4798. @define-color insensitive_fg_color rgba(202, 76, 122, 0.5);
  4799. /*
  4800. insensitive text widgets and the like base background color */
  4801. @define-color insensitive_base_color #f5f5f5;
  4802. /*
  4803. widget text/foreground color on backdrop windows */
  4804. @define-color theme_unfocused_fg_color #ca4c7a;
  4805. /*
  4806. text color for entries, views and content in general on backdrop windows */
  4807. @define-color theme_unfocused_text_color #ca4c7a;
  4808. /*
  4809. widget base background color on backdrop windows */
  4810. @define-color theme_unfocused_bg_color #ffffff;
  4811. /*
  4812. text widgets and the like base background color on backdrop windows */
  4813. @define-color theme_unfocused_base_color #efefef;
  4814. /*
  4815. base background color of selections on backdrop windows */
  4816. @define-color theme_unfocused_selected_bg_color #ca4c7a;
  4817. /*
  4818. text/foreground color of selections on backdrop windows */
  4819. @define-color theme_unfocused_selected_fg_color #ffffff;
  4820. /*
  4821. insensitive color on backdrop windows */
  4822. @define-color unfocused_insensitive_color rgba(202, 76, 122, 0.5);
  4823. /*
  4824. widgets main borders color */
  4825. @define-color borders rgba(0, 0, 0, 0.12);
  4826. /*
  4827. widgets main borders color on backdrop windows */
  4828. @define-color unfocused_borders rgba(0, 0, 0, 0.12);
  4829. /*
  4830. these are pretty self explicative */
  4831. @define-color warning_color #caa452;
  4832. @define-color error_color #ca4c7a;
  4833. @define-color success_color #8cca54;
  4834. /*
  4835. these colors are exported for the window manager and shouldn't be used in applications,
  4836. read if you used those and something break with a version upgrade you're on your own... */
  4837. @define-color wm_title #ca4c7a;
  4838. @define-color wm_unfocused_title rgba(202, 76, 122, 0.7);
  4839. @define-color wm_highlight rgba(255, 255, 255, 0.4);
  4840. @define-color wm_bg #ffffff;
  4841. /*
  4842. FIXME this is really an API */
  4843. @define-color content_view_bg #efefef;
  4844. @define-color placeholder_text_color #d57d9d;