gtk.css 163 KB

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