gtk.css 155 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019
  1. /* GTK NAMED COLORS
  2. ----------------
  3. use responsibly! */
  4. /* widget text/foreground color */
  5. @define-color theme_fg_color #c0caf5;
  6. /* text color for entries, views and content in general */
  7. @define-color theme_text_color #c0caf5;
  8. /* widget base background color */
  9. @define-color theme_bg_color #1a1b26;
  10. /* text widgets and the like base background color */
  11. @define-color theme_base_color #1a1b26;
  12. /* base background color of selections */
  13. @define-color theme_selected_bg_color #a9b1d6;
  14. /* text/foreground color of selections */
  15. @define-color theme_selected_fg_color rgba(0, 0, 0, 0.87);
  16. /* base background color of insensitive widgets */
  17. @define-color insensitive_bg_color #1a1b26;
  18. /* text foreground color of insensitive widgets */
  19. @define-color insensitive_fg_color rgba(192, 202, 245, 0.5);
  20. /* insensitive text widgets and the like base background color */
  21. @define-color insensitive_base_color #292e42;
  22. /* widget text/foreground color on backdrop windows */
  23. @define-color theme_unfocused_fg_color #c0caf5;
  24. /* text color for entries, views and content in general on backdrop windows */
  25. @define-color theme_unfocused_text_color #c0caf5;
  26. /* widget base background color on backdrop windows */
  27. @define-color theme_unfocused_bg_color #1a1b26;
  28. /* text widgets and the like base background color on backdrop windows */
  29. @define-color theme_unfocused_base_color #1a1b26;
  30. /* base background color of selections on backdrop windows */
  31. @define-color theme_unfocused_selected_bg_color #a9b1d6;
  32. /* text/foreground color of selections on backdrop windows */
  33. @define-color theme_unfocused_selected_fg_color rgba(0, 0, 0, 0.87);
  34. /* insensitive color on backdrop windows */
  35. @define-color unfocused_insensitive_color rgba(192, 202, 245, 0.5);
  36. /* widgets main borders color */
  37. @define-color borders rgba(192, 202, 245, 0.12);
  38. /* widgets main borders color on backdrop windows */
  39. @define-color unfocused_borders rgba(192, 202, 245, 0.12);
  40. /* these are pretty self explicative */
  41. @define-color warning_color #e0af68;
  42. @define-color error_color #f7768e;
  43. @define-color success_color #9ece6a;
  44. /* these colors are exported for the window manager and shouldn't be used in applications,
  45. read if you used those and something break with a version upgrade you're on your own... */
  46. @define-color wm_title #c0caf5;
  47. @define-color wm_unfocused_title rgba(192, 202, 245, 0.7);
  48. @define-color wm_highlight rgba(192, 202, 245, 0.1);
  49. @define-color wm_bg #1a1b26;
  50. @define-color wm_unfocused_bg #1a1b26;
  51. @define-color wm_button_close_icon #1a1b26;
  52. @define-color wm_button_close_hover_bg #a9b1d6;
  53. @define-color wm_button_close_active_bg #c7c7c7;
  54. /* FIXME this is really an API */
  55. @define-color content_view_bg #1a1b26;
  56. @define-color placeholder_text_color silver;
  57. /* Very contrasty background for text views (@theme_text_color foreground) */
  58. @define-color text_view_bg #1d1d1d;
  59. @define-color budgie_tasklist_indicator_color #c0caf5;
  60. @define-color budgie_tasklist_indicator_color_active #c0caf5;
  61. @define-color budgie_tasklist_indicator_color_active_window #999999;
  62. @define-color budgie_tasklist_indicator_color_attention #e0af68;
  63. @define-color STRAWBERRY_100 #FF9262;
  64. @define-color STRAWBERRY_300 #FF793E;
  65. @define-color STRAWBERRY_500 #F15D22;
  66. @define-color STRAWBERRY_700 #CF3B00;
  67. @define-color STRAWBERRY_900 #AC1800;
  68. @define-color ORANGE_100 #FFDB91;
  69. @define-color ORANGE_300 #FFCA40;
  70. @define-color ORANGE_500 #FAA41A;
  71. @define-color ORANGE_700 #DE8800;
  72. @define-color ORANGE_900 #C26C00;
  73. @define-color BANANA_100 #FFFFA8;
  74. @define-color BANANA_300 #FFFA7D;
  75. @define-color BANANA_500 #FFCE51;
  76. @define-color BANANA_700 #D1A023;
  77. @define-color BANANA_900 #A27100;
  78. @define-color LIME_100 #A2F3BE;
  79. @define-color LIME_300 #8ADBA6;
  80. @define-color LIME_500 #73C48F;
  81. @define-color LIME_700 #479863;
  82. @define-color LIME_900 #1C6D38;
  83. @define-color BLUEBERRY_100 #94A6FF;
  84. @define-color BLUEBERRY_300 #6A7CE0;
  85. @define-color BLUEBERRY_500 #3F51B5;
  86. @define-color BLUEBERRY_700 #213397;
  87. @define-color BLUEBERRY_900 #031579;
  88. @define-color GRAPE_100 #D25DE6;
  89. @define-color GRAPE_300 #B84ACB;
  90. @define-color GRAPE_500 #9C27B0;
  91. @define-color GRAPE_700 #830E97;
  92. @define-color GRAPE_900 #6A007E;
  93. @define-color COCOA_100 #9F9792;
  94. @define-color COCOA_300 #7B736E;
  95. @define-color COCOA_500 #574F4A;
  96. @define-color COCOA_700 #463E39;
  97. @define-color COCOA_900 #342C27;
  98. @define-color SILVER_100 #EEE;
  99. @define-color SILVER_300 #CCC;
  100. @define-color SILVER_500 #AAA;
  101. @define-color SILVER_700 #888;
  102. @define-color SILVER_900 #666;
  103. @define-color SLATE_100 #888;
  104. @define-color SLATE_300 #666;
  105. @define-color SLATE_500 #444;
  106. @define-color SLATE_700 #222;
  107. @define-color SLATE_900 #111;
  108. @define-color BLACK_100 #474341;
  109. @define-color BLACK_300 #403C3A;
  110. @define-color BLACK_500 #393634;
  111. @define-color BLACK_700 #33302F;
  112. @define-color BLACK_900 #2B2928;
  113. /* GTK NAMED COLORS (Libadwaita)
  114. ----------------
  115. use responsibly! */
  116. @define-color accent_bg_color #a9b1d6;
  117. @define-color accent_fg_color rgba(0, 0, 0, 0.87);
  118. @define-color accent_color #a9b1d6;
  119. @define-color destructive_bg_color #f7768e;
  120. @define-color destructive_fg_color rgba(0, 0, 0, 0.87);
  121. @define-color destructive_color #f7768e;
  122. @define-color success_bg_color #9ece6a;
  123. @define-color success_fg_color rgba(0, 0, 0, 0.87);
  124. @define-color success_color #9ece6a;
  125. @define-color warning_bg_color #e0af68;
  126. @define-color warning_fg_color rgba(0, 0, 0, 0.87);
  127. @define-color warning_color #e0af68;
  128. @define-color error_bg_color #f7768e;
  129. @define-color error_fg_color rgba(0, 0, 0, 0.87);
  130. @define-color error_color #f7768e;
  131. @define-color window_bg_color #1a1b26;
  132. @define-color window_fg_color #c0caf5;
  133. @define-color view_bg_color #1a1b26;
  134. @define-color view_fg_color #c0caf5;
  135. @define-color headerbar_bg_color #1a1b26;
  136. @define-color headerbar_fg_color #c0caf5;
  137. @define-color headerbar_border_color rgba(192, 202, 245, 0.12);
  138. @define-color headerbar_backdrop_color @window_bg_color;
  139. @define-color headerbar_shade_color rgba(0, 0, 0, 0.36);
  140. @define-color card_bg_color #1a1b26;
  141. @define-color card_fg_color #c0caf5;
  142. @define-color card_shade_color rgba(0, 0, 0, 0.36);
  143. @define-color dialog_bg_color #1a1b26;
  144. @define-color dialog_fg_color #c0caf5;
  145. @define-color popover_bg_color #1a1b26;
  146. @define-color popover_fg_color #c0caf5;
  147. @define-color thumbnail_bg_color #1a1b26;
  148. @define-color thumbnail_fg_color #c0caf5;
  149. @define-color shade_color rgba(0, 0, 0, 0.36);
  150. @define-color scrollbar_outline_color rgba(0, 0, 0, 0.5);
  151. /***************
  152. * Base States *
  153. ***************/
  154. .background {
  155. background-color: #1a1b26;
  156. color: #c0caf5;
  157. }
  158. dnd {
  159. color: #c0caf5;
  160. }
  161. .normal-icons {
  162. -gtk-icon-size: 16px;
  163. }
  164. .large-icons {
  165. -gtk-icon-size: 32px;
  166. }
  167. spinner:disabled,
  168. arrow:disabled,
  169. scrollbar:disabled,
  170. check:disabled,
  171. radio:disabled,
  172. treeview.expander:disabled {
  173. -gtk-icon-filter: opacity(0.5);
  174. }
  175. iconview,
  176. .view {
  177. color: #c0caf5;
  178. }
  179. iconview:disabled,
  180. .view:disabled {
  181. color: rgba(192, 202, 245, 0.5);
  182. }
  183. textview text {
  184. background-color: #1a1b26;
  185. }
  186. textview border {
  187. background-color: #292e42;
  188. color: rgba(192, 202, 245, 0.7);
  189. }
  190. iconview:hover,
  191. iconview:selected {
  192. border-radius: 3px;
  193. }
  194. rubberband,
  195. .content-view rubberband,
  196. .content-view columnview.view > rubberband,
  197. .content-view treeview.view > rubberband,
  198. .content-view .rubberband,
  199. columnview.view > rubberband,
  200. treeview.view > rubberband,
  201. gridview > rubberband,
  202. flowbox > rubberband {
  203. border: 1px solid #a9b1d6;
  204. background-color: rgba(169, 177, 214, 0.3);
  205. }
  206. flowbox > flowboxchild {
  207. padding: 4px;
  208. border-radius: 6px;
  209. }
  210. .content-view .tile:selected {
  211. background-color: transparent;
  212. }
  213. gridview > child {
  214. padding: 3px;
  215. }
  216. gridview > child:selected {
  217. outline-color: alpha(currentColor, 0.06);
  218. }
  219. gridview > child box {
  220. border-spacing: 8px;
  221. margin: 12px;
  222. }
  223. coverflow cover {
  224. color: #c0caf5;
  225. background-color: #1a1b26;
  226. border: 1px solid black;
  227. }
  228. label.separator {
  229. color: rgba(192, 202, 245, 0.7);
  230. }
  231. label:disabled {
  232. color: rgba(192, 202, 245, 0.5);
  233. opacity: 1;
  234. filter: none;
  235. }
  236. headerbar label:disabled,
  237. tab label:disabled,
  238. button label:disabled {
  239. color: inherit;
  240. }
  241. label.osd {
  242. border-radius: 6px;
  243. background-color: rgba(22, 22, 30, 0.9);
  244. color: #c0caf5;
  245. }
  246. label.search-information {
  247. background-color: #a9b1d6;
  248. color: rgba(0, 0, 0, 0.87);
  249. }
  250. .dim-label,
  251. row label.subtitle {
  252. color: rgba(192, 202, 245, 0.7);
  253. opacity: 1;
  254. }
  255. window.assistant .sidebar {
  256. padding: 4px 0;
  257. }
  258. window.assistant .sidebar label {
  259. min-height: 36px;
  260. padding: 0 12px;
  261. color: rgba(192, 202, 245, 0.5);
  262. font-weight: 500;
  263. }
  264. window.assistant .sidebar label.highlight {
  265. color: #c0caf5;
  266. }
  267. .osd popover.background > arrow,
  268. .osd popover.background > contents,
  269. popover.background.touch-selection > arrow,
  270. popover.background.touch-selection > contents,
  271. popover.background.magnifier > arrow,
  272. popover.background.magnifier > contents,
  273. .osd {
  274. color: #c0caf5;
  275. background-clip: padding-box;
  276. border-radius: 6px;
  277. border: none;
  278. }
  279. .osd {
  280. padding: 6px;
  281. margin: 6px;
  282. box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2),
  283. 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  284. }
  285. .osd.circular {
  286. border-radius: 9999px;
  287. }
  288. /*********************
  289. * Spinner Animation *
  290. *********************/
  291. @keyframes spin {
  292. to {
  293. transform: rotate(1turn);
  294. }
  295. }
  296. spinner {
  297. background: none;
  298. opacity: 0;
  299. -gtk-icon-source: -gtk-icontheme('process-working-symbolic');
  300. }
  301. spinner:checked {
  302. opacity: 1;
  303. animation: spin 1s linear infinite;
  304. }
  305. spinner:checked:disabled {
  306. opacity: 0.5;
  307. }
  308. .large-title {
  309. font-weight: 300;
  310. font-size: 24pt;
  311. }
  312. .title-1 {
  313. font-weight: 800;
  314. font-size: 20pt;
  315. }
  316. .title-2 {
  317. font-weight: 800;
  318. font-size: 15pt;
  319. }
  320. .title-3 {
  321. font-weight: 700;
  322. font-size: 15pt;
  323. }
  324. .title-4 {
  325. font-weight: 700;
  326. font-size: 13pt;
  327. }
  328. .heading {
  329. font-weight: 700;
  330. font-size: 11pt;
  331. }
  332. .body {
  333. font-weight: 400;
  334. font-size: 11pt;
  335. }
  336. .caption {
  337. font-weight: 400;
  338. font-size: 9pt;
  339. }
  340. .caption-heading {
  341. font-weight: 700;
  342. font-size: 9pt;
  343. }
  344. /****************
  345. * Text Entries *
  346. ****************/
  347. entry {
  348. min-height: 36px;
  349. padding: 0 8px;
  350. border-spacing: 6px;
  351. border-radius: 6px;
  352. caret-color: currentColor;
  353. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  354. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  355. box-shadow: inset 0 0 0 2px transparent;
  356. background-color: rgba(192, 202, 245, 0.04);
  357. color: #c0caf5;
  358. outline: none;
  359. }
  360. entry:focus-within {
  361. background-color: rgba(192, 202, 245, 0.04);
  362. box-shadow: inset 0 0 0 2px #a9b1d6;
  363. outline: none;
  364. }
  365. entry:drop(active) {
  366. background-color: alpha(currentColor, 0.08);
  367. box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
  368. outline: none;
  369. }
  370. entry:disabled {
  371. box-shadow: inset 0 0 0 2px transparent;
  372. background-color: rgba(192, 202, 245, 0.04);
  373. color: rgba(192, 202, 245, 0.5);
  374. outline: none;
  375. opacity: 1;
  376. filter: none;
  377. }
  378. entry.search {
  379. border-radius: 9px;
  380. }
  381. entry.flat {
  382. min-height: 0;
  383. padding: 2px;
  384. border-radius: 0;
  385. background-color: transparent;
  386. }
  387. entry image {
  388. color: rgba(192, 202, 245, 0.7);
  389. }
  390. entry image:hover,
  391. entry image:active {
  392. color: #c0caf5;
  393. }
  394. entry image:disabled {
  395. color: rgba(192, 202, 245, 0.5);
  396. }
  397. entry image.left {
  398. margin-left: 2px;
  399. margin-right: 6px;
  400. }
  401. entry image.right {
  402. margin-left: 6px;
  403. margin-right: 2px;
  404. }
  405. entry undershoot.left {
  406. background-color: transparent;
  407. background-image: linear-gradient(
  408. to top,
  409. transparent 50%,
  410. rgba(192, 202, 245, 0.3) 50%
  411. );
  412. padding-left: 1px;
  413. background-size: 1px 12px;
  414. background-repeat: repeat-y;
  415. background-origin: content-box;
  416. background-position: left top;
  417. margin: 0 4px;
  418. margin: 4px 0;
  419. }
  420. entry undershoot.right {
  421. background-color: transparent;
  422. background-image: linear-gradient(
  423. to top,
  424. transparent 50%,
  425. rgba(192, 202, 245, 0.3) 50%
  426. );
  427. padding-right: 1px;
  428. background-size: 1px 12px;
  429. background-repeat: repeat-y;
  430. background-origin: content-box;
  431. background-position: right top;
  432. margin: 0 4px;
  433. margin: 4px 0;
  434. }
  435. entry.error {
  436. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  437. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  438. box-shadow: inset 0 0 0 2px transparent;
  439. background-color: rgba(192, 202, 245, 0.04);
  440. color: #c0caf5;
  441. outline: none;
  442. }
  443. entry.error:focus-within {
  444. background-color: rgba(192, 202, 245, 0.04);
  445. box-shadow: inset 0 0 0 2px #f7768e;
  446. outline: none;
  447. }
  448. entry.error:disabled {
  449. box-shadow: inset 0 0 0 2px transparent;
  450. background-color: rgba(192, 202, 245, 0.04);
  451. color: rgba(192, 202, 245, 0.5);
  452. outline: none;
  453. opacity: 1;
  454. filter: none;
  455. }
  456. entry.warning {
  457. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  458. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  459. box-shadow: inset 0 0 0 2px transparent;
  460. background-color: rgba(192, 202, 245, 0.04);
  461. color: #c0caf5;
  462. outline: none;
  463. }
  464. entry.warning:focus-within {
  465. background-color: rgba(192, 202, 245, 0.04);
  466. box-shadow: inset 0 0 0 2px #e0af68;
  467. outline: none;
  468. }
  469. entry.warning:disabled {
  470. box-shadow: inset 0 0 0 2px transparent;
  471. background-color: rgba(192, 202, 245, 0.04);
  472. color: rgba(192, 202, 245, 0.5);
  473. outline: none;
  474. opacity: 1;
  475. filter: none;
  476. }
  477. entry > progress,
  478. entry progress > trough > progress {
  479. margin: 2px -8px;
  480. border-bottom: 2px solid #a9b1d6;
  481. background-color: transparent;
  482. }
  483. treeview entry.flat,
  484. treeview entry {
  485. background-color: #1a1b26;
  486. }
  487. treeview entry.flat,
  488. treeview entry.flat:focus-within,
  489. treeview entry,
  490. treeview entry:focus-within {
  491. border-image: none;
  492. box-shadow: none;
  493. }
  494. .entry-tag {
  495. margin: 2px;
  496. border-radius: 9999px;
  497. box-shadow: none;
  498. background-color: rgba(192, 202, 245, 0.12);
  499. color: #c0caf5;
  500. }
  501. .entry-tag:hover {
  502. background-image: image(alpha(currentColor, 0.08));
  503. }
  504. :dir(ltr) .entry-tag {
  505. margin-left: 4px;
  506. margin-right: 0;
  507. padding-left: 12px;
  508. padding-right: 8px;
  509. }
  510. :dir(rtl) .entry-tag {
  511. margin-left: 0;
  512. margin-right: 4px;
  513. padding-left: 8px;
  514. padding-right: 12px;
  515. }
  516. .entry-tag.button {
  517. box-shadow: none;
  518. background-color: transparent;
  519. }
  520. .entry-tag.button:not(:hover):not(:active) {
  521. color: rgba(192, 202, 245, 0.7);
  522. }
  523. editablelabel > stack > text {
  524. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  525. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  526. box-shadow: inset 0 0 0 2px transparent;
  527. background-color: rgba(192, 202, 245, 0.04);
  528. color: #c0caf5;
  529. outline: none;
  530. }
  531. /***********
  532. * Buttons *
  533. ***********/
  534. @keyframes needs-attention {
  535. from {
  536. background-image: radial-gradient(
  537. farthest-side,
  538. #a9b1d6 0%,
  539. rgba(169, 177, 214, 0) 0%
  540. );
  541. }
  542. to {
  543. background-image: radial-gradient(
  544. farthest-side,
  545. #a9b1d6 95%,
  546. rgba(169, 177, 214, 0)
  547. );
  548. }
  549. }
  550. toast button,
  551. toast button.text-button,
  552. toast button.circular.flat,
  553. infobar.warning > revealer > box button,
  554. infobar.warning:backdrop > revealer > box button,
  555. popover.background.touch-selection button,
  556. popover.background.magnifier button,
  557. headerbar.selection-mode
  558. button:not(.suggested-action):not(.destructive-action) {
  559. color: rgba(192, 202, 245, 0.7);
  560. }
  561. toast button:focus,
  562. toast button.circular.flat:focus,
  563. infobar.warning > revealer > box button:focus,
  564. popover.background.touch-selection button:focus,
  565. popover.background.magnifier button:focus,
  566. headerbar.selection-mode
  567. button:focus:not(.suggested-action):not(.destructive-action),
  568. toast button:hover,
  569. toast button.circular.flat:hover,
  570. infobar.warning > revealer > box button:hover,
  571. popover.background.touch-selection button:hover,
  572. popover.background.magnifier button:hover,
  573. headerbar.selection-mode
  574. button:hover:not(.suggested-action):not(.destructive-action),
  575. toast button:active,
  576. toast button.circular.flat:active,
  577. infobar.warning > revealer > box button:active,
  578. popover.background.touch-selection button:active,
  579. popover.background.magnifier button:active,
  580. headerbar.selection-mode
  581. button:active:not(.suggested-action):not(.destructive-action),
  582. toast button:checked,
  583. toast button.circular.flat:checked,
  584. infobar.warning > revealer > box button:checked,
  585. popover.background.touch-selection button:checked,
  586. popover.background.magnifier button:checked,
  587. headerbar.selection-mode
  588. button:checked:not(.suggested-action):not(.destructive-action) {
  589. color: #c0caf5;
  590. }
  591. toast button:disabled,
  592. toast button.circular.flat:disabled,
  593. infobar.warning > revealer > box button:disabled,
  594. popover.background.touch-selection button:disabled,
  595. popover.background.magnifier button:disabled,
  596. headerbar.selection-mode
  597. button:disabled:not(.suggested-action):not(.destructive-action) {
  598. color: rgba(192, 202, 245, 0.3);
  599. }
  600. toast button:checked:disabled,
  601. infobar.warning > revealer > box button:checked:disabled,
  602. popover.background.touch-selection button:checked:disabled,
  603. popover.background.magnifier button:checked:disabled,
  604. headerbar.selection-mode
  605. button:checked:disabled:not(.suggested-action):not(.destructive-action) {
  606. color: rgba(192, 202, 245, 0.5);
  607. }
  608. headerbar
  609. popover
  610. button:not(.suggested-action):not(.destructive-action):not(.flat),
  611. button {
  612. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  613. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  614. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  615. outline: none;
  616. background-color: rgba(192, 202, 245, 0.04);
  617. color: #c0caf5;
  618. box-shadow: inset 0 0 0 2px transparent;
  619. }
  620. headerbar
  621. popover
  622. button:focus:not(.suggested-action):not(.destructive-action):not(.flat),
  623. button:focus {
  624. box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
  625. color: #c0caf5;
  626. outline: none;
  627. }
  628. headerbar
  629. popover
  630. button:hover:not(.suggested-action):not(.destructive-action):not(.flat),
  631. button:hover {
  632. background-color: alpha(currentColor, 0.08);
  633. color: #c0caf5;
  634. box-shadow: inset 0 0 0 2px transparent;
  635. }
  636. headerbar
  637. popover
  638. button:active:not(.suggested-action):not(.destructive-action):not(.flat),
  639. button:active {
  640. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  641. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  642. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  643. background-color: alpha(currentColor, 0.12);
  644. box-shadow: inset 0 0 0 2px transparent;
  645. color: #c0caf5;
  646. }
  647. headerbar
  648. popover
  649. button:disabled:not(.suggested-action):not(.destructive-action):not(.flat),
  650. button:disabled {
  651. box-shadow: none;
  652. background-color: rgba(192, 202, 245, 0.04);
  653. color: rgba(192, 202, 245, 0.5);
  654. transition: none;
  655. opacity: 1;
  656. filter: none;
  657. }
  658. headerbar
  659. popover
  660. button:checked:not(.suggested-action):not(.destructive-action):not(.flat),
  661. button:checked {
  662. box-shadow: none;
  663. background-color: #a9b1d6;
  664. color: rgba(0, 0, 0, 0.87);
  665. outline: none;
  666. }
  667. headerbar
  668. popover
  669. button:checked:hover:not(.suggested-action):not(.destructive-action):not(
  670. .flat
  671. ),
  672. button:checked:hover {
  673. box-shadow: none;
  674. }
  675. headerbar
  676. popover
  677. button:checked:disabled:not(.suggested-action):not(.destructive-action):not(
  678. .flat
  679. ),
  680. button:checked:disabled {
  681. box-shadow: none;
  682. background-color: rgba(192, 202, 245, 0.04);
  683. color: rgba(192, 202, 245, 0.5);
  684. opacity: 1;
  685. filter: none;
  686. }
  687. button {
  688. min-height: 24px;
  689. min-width: 16px;
  690. padding: 6px 10px;
  691. border-radius: 6px;
  692. font-weight: 500;
  693. }
  694. button:drop(active) {
  695. background-color: alpha(currentColor, 0.08);
  696. color: #c0caf5;
  697. box-shadow: inset 0 0 0 2px transparent;
  698. }
  699. placessidebar .navigation-sidebar > row button.sidebar-button,
  700. calendar > header > button,
  701. columnview.view > header > button button.circular,
  702. treeview.view > header > button button.circular,
  703. row.activatable button.circular,
  704. scrollbar button,
  705. notebook > header > tabs > arrow,
  706. popover.menu box.circular-buttons button.circular.image-button.model,
  707. headerbar popover calendar > header > button,
  708. spinbutton.vertical > button,
  709. spinbutton:not(.vertical) > button,
  710. splitbutton.flat > button,
  711. splitbutton.flat > menubutton > button,
  712. filechooser #pathbarbox > stack > box > button,
  713. window.dialog.message.csd .dialog-action-area > button,
  714. .app-notification button,
  715. headerbar button:not(.suggested-action):not(.destructive-action),
  716. .toolbar button,
  717. toolbar button,
  718. dropdown > .linked:not(.vertical) > button:not(:only-child),
  719. combobox > .linked:not(.vertical) > button:not(:only-child),
  720. splitbutton.suggested-action > button,
  721. splitbutton.suggested-action > menubutton > button,
  722. splitbutton.destructive-action > button,
  723. splitbutton.destructive-action > menubutton > button,
  724. splitbutton.opaque > button,
  725. splitbutton.opaque > menubutton > button,
  726. menubutton.suggested-action > button,
  727. menubutton.destructive-action > button,
  728. menubutton.opaque > button,
  729. menubutton.flat > button,
  730. button.flat {
  731. background-color: transparent;
  732. color: rgba(192, 202, 245, 0.7);
  733. }
  734. placessidebar .navigation-sidebar > row button.sidebar-button:focus,
  735. calendar > header > button:focus,
  736. columnview.view > header > button button.circular:focus,
  737. treeview.view > header > button button.circular:focus,
  738. row.activatable button.circular:focus,
  739. scrollbar button:focus,
  740. notebook > header > tabs > arrow:focus,
  741. popover.menu box.circular-buttons button.circular.image-button.model:focus,
  742. headerbar popover calendar > header > button:focus,
  743. spinbutton.vertical > button:focus,
  744. spinbutton:not(.vertical) > button:focus,
  745. splitbutton.flat > button:focus,
  746. splitbutton.flat > menubutton > button:focus,
  747. filechooser #pathbarbox > stack > box > button:focus,
  748. window.dialog.message.csd .dialog-action-area > button:focus,
  749. .app-notification button:focus,
  750. headerbar button:focus:not(.suggested-action):not(.destructive-action),
  751. .toolbar button:focus,
  752. toolbar button:focus,
  753. dropdown > .linked:not(.vertical) > button:focus:not(:only-child),
  754. combobox > .linked:not(.vertical) > button:focus:not(:only-child),
  755. splitbutton.suggested-action > button:focus,
  756. splitbutton.suggested-action > menubutton > button:focus,
  757. splitbutton.destructive-action > button:focus,
  758. splitbutton.destructive-action > menubutton > button:focus,
  759. splitbutton.opaque > button:focus,
  760. splitbutton.opaque > menubutton > button:focus,
  761. menubutton.suggested-action > button:focus,
  762. menubutton.destructive-action > button:focus,
  763. menubutton.opaque > button:focus,
  764. menubutton.flat > button:focus,
  765. button.flat:focus {
  766. box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
  767. color: #c0caf5;
  768. }
  769. placessidebar .navigation-sidebar > row button.sidebar-button:hover,
  770. calendar > header > button:hover,
  771. columnview.view > header > button button.circular:hover,
  772. treeview.view > header > button button.circular:hover,
  773. row.activatable button.circular:hover,
  774. scrollbar button:hover,
  775. notebook > header > tabs > arrow:hover,
  776. popover.menu box.circular-buttons button.circular.image-button.model:hover,
  777. headerbar popover calendar > header > button:hover,
  778. spinbutton.vertical > button:hover,
  779. spinbutton:not(.vertical) > button:hover,
  780. splitbutton.flat > button:hover,
  781. splitbutton.flat > menubutton > button:hover,
  782. filechooser #pathbarbox > stack > box > button:hover,
  783. window.dialog.message.csd .dialog-action-area > button:hover,
  784. .app-notification button:hover,
  785. headerbar button:hover:not(.suggested-action):not(.destructive-action),
  786. .toolbar button:hover,
  787. toolbar button:hover,
  788. dropdown > .linked:not(.vertical) > button:hover:not(:only-child),
  789. combobox > .linked:not(.vertical) > button:hover:not(:only-child),
  790. splitbutton.suggested-action > button:hover,
  791. splitbutton.suggested-action > menubutton > button:hover,
  792. splitbutton.destructive-action > button:hover,
  793. splitbutton.destructive-action > menubutton > button:hover,
  794. splitbutton.opaque > button:hover,
  795. splitbutton.opaque > menubutton > button:hover,
  796. menubutton.suggested-action > button:hover,
  797. menubutton.destructive-action > button:hover,
  798. menubutton.opaque > button:hover,
  799. menubutton.flat > button:hover,
  800. button.flat:hover {
  801. background-color: alpha(currentColor, 0.08);
  802. color: #c0caf5;
  803. }
  804. placessidebar .navigation-sidebar > row button.sidebar-button:active,
  805. calendar > header > button:active,
  806. columnview.view > header > button button.circular:active,
  807. treeview.view > header > button button.circular:active,
  808. row.activatable button.circular:active,
  809. scrollbar button:active,
  810. notebook > header > tabs > arrow:active,
  811. popover.menu box.circular-buttons button.circular.image-button.model:active,
  812. headerbar popover calendar > header > button:active,
  813. spinbutton.vertical > button:active,
  814. spinbutton:not(.vertical) > button:active,
  815. splitbutton.flat > button:active,
  816. splitbutton.flat > menubutton > button:active,
  817. filechooser #pathbarbox > stack > box > button:active,
  818. window.dialog.message.csd .dialog-action-area > button:active,
  819. .app-notification button:active,
  820. headerbar button:active:not(.suggested-action):not(.destructive-action),
  821. .toolbar button:active,
  822. toolbar button:active,
  823. dropdown > .linked:not(.vertical) > button:active:not(:only-child),
  824. combobox > .linked:not(.vertical) > button:active:not(:only-child),
  825. splitbutton.suggested-action > button:active,
  826. splitbutton.suggested-action > menubutton > button:active,
  827. splitbutton.destructive-action > button:active,
  828. splitbutton.destructive-action > menubutton > button:active,
  829. splitbutton.opaque > button:active,
  830. splitbutton.opaque > menubutton > button:active,
  831. menubutton.suggested-action > button:active,
  832. menubutton.destructive-action > button:active,
  833. menubutton.opaque > button:active,
  834. menubutton.flat > button:active,
  835. button.flat:active {
  836. background-color: alpha(currentColor, 0.12);
  837. color: #c0caf5;
  838. box-shadow: none;
  839. }
  840. placessidebar .navigation-sidebar > row button.sidebar-button:disabled,
  841. calendar > header > button:disabled,
  842. columnview.view > header > button button.circular:disabled,
  843. treeview.view > header > button button.circular:disabled,
  844. row.activatable button.circular:disabled,
  845. scrollbar button:disabled,
  846. notebook > header > tabs > arrow:disabled,
  847. popover.menu box.circular-buttons button.circular.image-button.model:disabled,
  848. headerbar popover calendar > header > button:disabled,
  849. spinbutton.vertical > button:disabled,
  850. spinbutton:not(.vertical) > button:disabled,
  851. splitbutton.flat > button:disabled,
  852. splitbutton.flat > menubutton > button:disabled,
  853. filechooser #pathbarbox > stack > box > button:disabled,
  854. window.dialog.message.csd .dialog-action-area > button:disabled,
  855. .app-notification button:disabled,
  856. headerbar button:disabled:not(.suggested-action):not(.destructive-action),
  857. .toolbar button:disabled,
  858. toolbar button:disabled,
  859. dropdown > .linked:not(.vertical) > button:disabled:not(:only-child),
  860. combobox > .linked:not(.vertical) > button:disabled:not(:only-child),
  861. splitbutton.suggested-action > button:disabled,
  862. splitbutton.suggested-action > menubutton > button:disabled,
  863. splitbutton.destructive-action > button:disabled,
  864. splitbutton.destructive-action > menubutton > button:disabled,
  865. splitbutton.opaque > button:disabled,
  866. splitbutton.opaque > menubutton > button:disabled,
  867. menubutton.suggested-action > button:disabled,
  868. menubutton.destructive-action > button:disabled,
  869. menubutton.opaque > button:disabled,
  870. menubutton.flat > button:disabled,
  871. button.flat:disabled {
  872. box-shadow: none;
  873. background-color: transparent;
  874. color: rgba(192, 202, 245, 0.3);
  875. opacity: 1;
  876. filter: none;
  877. }
  878. filechooser #pathbarbox > stack > box > button:checked,
  879. window.dialog.message.csd .dialog-action-area > button:checked,
  880. .app-notification button:checked,
  881. headerbar button:checked:not(.suggested-action):not(.destructive-action),
  882. .toolbar button:checked,
  883. toolbar button:checked,
  884. dropdown > .linked:not(.vertical) > button:checked:not(:only-child),
  885. combobox > .linked:not(.vertical) > button:checked:not(:only-child),
  886. splitbutton.suggested-action > button:checked,
  887. splitbutton.suggested-action > menubutton > button:checked,
  888. splitbutton.destructive-action > button:checked,
  889. splitbutton.destructive-action > menubutton > button:checked,
  890. splitbutton.opaque > button:checked,
  891. splitbutton.opaque > menubutton > button:checked,
  892. menubutton.suggested-action > button:checked,
  893. menubutton.destructive-action > button:checked,
  894. menubutton.opaque > button:checked,
  895. menubutton.flat > button:checked,
  896. button.flat:checked,
  897. button.flat:checked:hover {
  898. background-color: alpha(currentColor, 0.1);
  899. color: #c0caf5;
  900. outline: none;
  901. box-shadow: none;
  902. }
  903. filechooser #pathbarbox > stack > box > button:checked:disabled,
  904. window.dialog.message.csd .dialog-action-area > button:checked:disabled,
  905. .app-notification button:checked:disabled,
  906. headerbar
  907. button:checked:disabled:not(.suggested-action):not(.destructive-action),
  908. .toolbar button:checked:disabled,
  909. toolbar button:checked:disabled,
  910. dropdown > .linked:not(.vertical) > button:checked:disabled:not(:only-child),
  911. combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child),
  912. splitbutton.suggested-action > button:checked:disabled,
  913. splitbutton.suggested-action > menubutton > button:checked:disabled,
  914. splitbutton.destructive-action > button:checked:disabled,
  915. splitbutton.destructive-action > menubutton > button:checked:disabled,
  916. splitbutton.opaque > button:checked:disabled,
  917. splitbutton.opaque > menubutton > button:checked:disabled,
  918. menubutton.suggested-action > button:checked:disabled,
  919. menubutton.destructive-action > button:checked:disabled,
  920. menubutton.opaque > button:checked:disabled,
  921. menubutton.flat > button:checked:disabled,
  922. button.flat:checked:disabled {
  923. background-color: alpha(currentColor, 0.06);
  924. color: rgba(192, 202, 245, 0.5);
  925. opacity: 1;
  926. filter: none;
  927. }
  928. button.text-button {
  929. min-width: 32px;
  930. padding-left: 16px;
  931. padding-right: 16px;
  932. }
  933. button.text-button.flat {
  934. min-width: 48px;
  935. padding-left: 8px;
  936. padding-right: 8px;
  937. }
  938. button.image-button {
  939. min-width: 24px;
  940. padding: 6px;
  941. border-radius: 9px;
  942. }
  943. .linked button.image-button {
  944. border-radius: 6px;
  945. }
  946. button.text-button.image-button {
  947. min-width: 24px;
  948. padding: 6px;
  949. border-radius: 6px;
  950. }
  951. button.text-button.image-button label:first-child {
  952. margin-left: 10px;
  953. }
  954. button.text-button.image-button label:last-child {
  955. margin-right: 10px;
  956. }
  957. button.text-button.image-button.flat label:first-child {
  958. margin-left: 6px;
  959. }
  960. button.text-button.image-button.flat label:last-child {
  961. margin-right: 6px;
  962. }
  963. button.text-button.image-button image:not(:only-child) {
  964. margin: 0 4px;
  965. }
  966. .linked:not(.vertical) > button.flat:not(:only-child),
  967. .linked.vertical > button.flat:not(:only-child) {
  968. border-radius: 6px;
  969. }
  970. .linked:not(.vertical) > button.flat:focus,
  971. .linked.vertical > button.flat:focus {
  972. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
  973. }
  974. button.osd {
  975. padding: 12px 16px;
  976. box-shadow: none;
  977. background-color: #1a1b26;
  978. color: #c0caf5;
  979. }
  980. button.osd:hover {
  981. background-color: #414868;
  982. color: #c0caf5;
  983. }
  984. button.osd:active {
  985. background-color: #16161e;
  986. color: #c0caf5;
  987. }
  988. button.osd.image-button {
  989. padding: 6px;
  990. }
  991. button.osd:disabled {
  992. opacity: 0;
  993. }
  994. button.suggested-action {
  995. background-color: #a9b1d6;
  996. color: rgba(0, 0, 0, 0.87);
  997. box-shadow: none;
  998. }
  999. button.suggested-action:disabled {
  1000. box-shadow: none;
  1001. background-color: rgba(192, 202, 245, 0.04);
  1002. color: rgba(192, 202, 245, 0.5);
  1003. transition: none;
  1004. opacity: 1;
  1005. filter: none;
  1006. }
  1007. button.suggested-action:hover {
  1008. box-shadow: inset 0 0 0 9999px transparent,
  1009. 0 2px 2.4px -1px rgba(169, 177, 214, 0.2),
  1010. 0 4px 3px 0 rgba(169, 177, 214, 0.14), 0 1px 6px 0 rgba(169, 177, 214, 0.12);
  1011. }
  1012. button.suggested-action:checked {
  1013. background-color: rgba(169, 177, 214, 0.961);
  1014. }
  1015. button.suggested-action:checked:hover {
  1016. box-shadow: inset 0 0 0 9999px transparent,
  1017. 0 3px 3px -3px rgba(169, 177, 214, 0.3),
  1018. 0 2px 3px -1px rgba(169, 177, 214, 0.24),
  1019. 0 2px 5px 0 rgba(169, 177, 214, 0.12);
  1020. }
  1021. button.suggested-action:focus {
  1022. box-shadow: 0 0 0 2px rgba(169, 177, 214, 0.35);
  1023. }
  1024. button.suggested-action.flat {
  1025. background-color: transparent;
  1026. color: #a9b1d6;
  1027. }
  1028. button.suggested-action.flat:disabled {
  1029. box-shadow: none;
  1030. background-color: transparent;
  1031. color: rgba(192, 202, 245, 0.3);
  1032. opacity: 1;
  1033. filter: none;
  1034. }
  1035. button.suggested-action.flat:checked {
  1036. background-color: rgba(169, 177, 214, 0.3);
  1037. }
  1038. button.destructive-action {
  1039. background-color: #f7768e;
  1040. color: rgba(0, 0, 0, 0.87);
  1041. box-shadow: none;
  1042. }
  1043. button.destructive-action:disabled {
  1044. box-shadow: none;
  1045. background-color: rgba(192, 202, 245, 0.04);
  1046. color: rgba(192, 202, 245, 0.5);
  1047. transition: none;
  1048. opacity: 1;
  1049. filter: none;
  1050. }
  1051. button.destructive-action:hover {
  1052. box-shadow: inset 0 0 0 9999px transparent,
  1053. 0 2px 2.4px -1px rgba(242, 139, 130, 0.2),
  1054. 0 4px 3px 0 rgba(242, 139, 130, 0.14), 0 1px 6px 0 rgba(242, 139, 130, 0.12);
  1055. }
  1056. button.destructive-action:checked {
  1057. background-color: rgba(182, 105, 98, 0.961);
  1058. }
  1059. button.destructive-action:checked:hover {
  1060. box-shadow: inset 0 0 0 9999px transparent,
  1061. 0 3px 3px -3px rgba(242, 139, 130, 0.3),
  1062. 0 2px 3px -1px rgba(242, 139, 130, 0.24),
  1063. 0 2px 5px 0 rgba(242, 139, 130, 0.12);
  1064. }
  1065. button.destructive-action:focus {
  1066. box-shadow: 0 0 0 2px rgba(242, 139, 130, 0.35);
  1067. }
  1068. button.destructive-action.flat {
  1069. background-color: transparent;
  1070. color: #f7768e;
  1071. }
  1072. button.destructive-action.flat:disabled {
  1073. box-shadow: none;
  1074. background-color: transparent;
  1075. color: rgba(192, 202, 245, 0.3);
  1076. opacity: 1;
  1077. filter: none;
  1078. }
  1079. button.destructive-action.flat:checked {
  1080. background-color: rgba(242, 139, 130, 0.3);
  1081. }
  1082. menubutton.pill > button,
  1083. button.pill {
  1084. padding: 9px 30px;
  1085. border-radius: 9999px;
  1086. }
  1087. button.card {
  1088. background-clip: padding-box;
  1089. font-weight: inherit;
  1090. background-clip: border-box;
  1091. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  1092. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  1093. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  1094. outline: none;
  1095. background-color: rgba(192, 202, 245, 0.04);
  1096. color: #c0caf5;
  1097. box-shadow: inset 0 0 0 2px transparent;
  1098. }
  1099. button.card:hover {
  1100. background-image: none;
  1101. background-color: alpha(currentColor, 0.08);
  1102. color: #c0caf5;
  1103. box-shadow: inset 0 0 0 2px transparent;
  1104. }
  1105. button.card.keyboard-activating,
  1106. button.card:active {
  1107. background-image: none;
  1108. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  1109. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  1110. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  1111. background-color: alpha(currentColor, 0.12);
  1112. box-shadow: inset 0 0 0 2px transparent;
  1113. color: #c0caf5;
  1114. }
  1115. button.card:checked {
  1116. background-image: none;
  1117. box-shadow: none;
  1118. background-color: #a9b1d6;
  1119. color: rgba(0, 0, 0, 0.87);
  1120. outline: none;
  1121. border-color: #a9b1d6;
  1122. }
  1123. button.card:checked:hover {
  1124. background-image: none;
  1125. box-shadow: none;
  1126. }
  1127. button.card:checked:disabled {
  1128. box-shadow: none;
  1129. background-color: rgba(192, 202, 245, 0.04);
  1130. color: rgba(192, 202, 245, 0.5);
  1131. opacity: 1;
  1132. filter: none;
  1133. }
  1134. button.card.keyboard-activating:checked,
  1135. button.card:checked:active {
  1136. background-image: none;
  1137. }
  1138. button.card.has-open-popup:checked {
  1139. background-image: none;
  1140. }
  1141. button.card:drop(active) {
  1142. color: #ff9e64;
  1143. box-shadow: inset 0 0 0 1px #ff9e64;
  1144. }
  1145. stackswitcher > button > label {
  1146. margin: 0 -6px;
  1147. padding: 0 6px;
  1148. }
  1149. stackswitcher > button > image {
  1150. margin: -3px -6px;
  1151. padding: 3px 6px;
  1152. }
  1153. stackswitcher > button.needs-attention:checked > label,
  1154. stackswitcher > button.needs-attention:checked > image {
  1155. animation: none;
  1156. background-image: none;
  1157. }
  1158. button.font > box,
  1159. button.file > box {
  1160. border-spacing: 6px;
  1161. }
  1162. button.font > box > box > label,
  1163. button.file > box > box > label {
  1164. font-weight: bold;
  1165. }
  1166. windowcontrols button:not(.suggested-action):not(.destructive-action),
  1167. filechooser #pathbarbox > stack > box > button,
  1168. menubutton.circular > button,
  1169. button.close,
  1170. button.circular {
  1171. border-radius: 9999px;
  1172. min-width: 24px;
  1173. min-height: 24px;
  1174. padding: 6px;
  1175. }
  1176. windowcontrols button:not(.suggested-action):not(.destructive-action) label,
  1177. filechooser #pathbarbox > stack > box > button label,
  1178. menubutton.circular > button label,
  1179. button.close label,
  1180. button.circular label {
  1181. padding: 0;
  1182. }
  1183. .nautilus-window .floating-bar button,
  1184. placessidebar .navigation-sidebar > row button.sidebar-button,
  1185. notebook > header > tabs > tab button.flat,
  1186. popover.menu box.circular-buttons button.circular.image-button.model,
  1187. spinbutton.vertical > button,
  1188. spinbutton:not(.vertical) > button {
  1189. min-height: 24px;
  1190. min-width: 24px;
  1191. padding: 0;
  1192. border-radius: 9999px;
  1193. }
  1194. menubutton.osd {
  1195. background: none;
  1196. color: inherit;
  1197. }
  1198. menubutton.suggested-action {
  1199. background-color: #a9b1d6;
  1200. color: #c0caf5;
  1201. }
  1202. menubutton.destructive-action {
  1203. background-color: #f7768e;
  1204. color: #c0caf5;
  1205. }
  1206. menubutton.opaque {
  1207. background-color: #565f89;
  1208. color: #c0caf5;
  1209. }
  1210. menubutton.suggested-action,
  1211. menubutton.destructive-action,
  1212. menubutton.opaque {
  1213. border-radius: 6px;
  1214. }
  1215. menubutton.suggested-action.circular,
  1216. menubutton.suggested-action.pill,
  1217. menubutton.destructive-action.circular,
  1218. menubutton.destructive-action.pill,
  1219. menubutton.opaque.circular,
  1220. menubutton.opaque.pill {
  1221. border-radius: 9999px;
  1222. }
  1223. menubutton.suggested-action > button,
  1224. menubutton.suggested-action > button:checked,
  1225. menubutton.destructive-action > button,
  1226. menubutton.destructive-action > button:checked,
  1227. menubutton.opaque > button,
  1228. menubutton.opaque > button:checked {
  1229. background-color: transparent;
  1230. color: inherit;
  1231. }
  1232. menubutton.image-button > button {
  1233. min-width: 24px;
  1234. padding-left: 6px;
  1235. padding-right: 6px;
  1236. }
  1237. menubutton arrow {
  1238. min-height: 16px;
  1239. min-width: 16px;
  1240. }
  1241. menubutton arrow.none {
  1242. -gtk-icon-source: -gtk-icontheme('open-menu-symbolic');
  1243. }
  1244. menubutton arrow.down {
  1245. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  1246. }
  1247. menubutton arrow.up {
  1248. -gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
  1249. }
  1250. menubutton arrow.left {
  1251. -gtk-icon-source: -gtk-icontheme('pan-start-symbolic');
  1252. }
  1253. menubutton arrow.right {
  1254. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
  1255. }
  1256. splitbutton {
  1257. border-radius: 6px;
  1258. }
  1259. splitbutton,
  1260. splitbutton > separator {
  1261. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  1262. transition-property: background;
  1263. }
  1264. splitbutton:disabled {
  1265. filter: none;
  1266. }
  1267. splitbutton:disabled > button,
  1268. splitbutton:disabled > menubutton > button {
  1269. filter: none;
  1270. }
  1271. splitbutton > separator {
  1272. margin-top: 6px;
  1273. margin-bottom: 6px;
  1274. background: none;
  1275. }
  1276. splitbutton > menubutton > button {
  1277. min-width: 24px;
  1278. padding-left: 4px;
  1279. padding-right: 4px;
  1280. }
  1281. splitbutton.image-button > button {
  1282. min-width: 24px;
  1283. padding-left: 6px;
  1284. padding-right: 6px;
  1285. }
  1286. splitbutton.text-button.image-button > button,
  1287. splitbutton.image-text-button > button {
  1288. padding-left: 9px;
  1289. padding-right: 9px;
  1290. }
  1291. splitbutton.text-button.image-button > button > box,
  1292. splitbutton.image-text-button > button > box {
  1293. border-spacing: 6px;
  1294. }
  1295. splitbutton > button:dir(ltr),
  1296. splitbutton > menubutton > button:dir(rtl) {
  1297. border-top-right-radius: 0;
  1298. border-bottom-right-radius: 0;
  1299. margin-right: -1px;
  1300. }
  1301. splitbutton > button:dir(rtl),
  1302. splitbutton > menubutton > button:dir(ltr) {
  1303. border-top-left-radius: 0;
  1304. border-bottom-left-radius: 0;
  1305. margin-left: -1px;
  1306. }
  1307. splitbutton.flat > separator {
  1308. background: rgba(192, 202, 245, 0.12);
  1309. }
  1310. splitbutton.flat:hover,
  1311. splitbutton.flat:active,
  1312. splitbutton.flat:checked {
  1313. background: alpha(currentColor, 0.07);
  1314. }
  1315. splitbutton.flat:hover > separator,
  1316. splitbutton.flat:active > separator,
  1317. splitbutton.flat:checked > separator {
  1318. background: none;
  1319. }
  1320. splitbutton.flat:focus-within:focus-visible > separator {
  1321. background: none;
  1322. }
  1323. splitbutton.flat > button,
  1324. splitbutton.flat > menubutton > button {
  1325. border-radius: 6px;
  1326. }
  1327. splitbutton.suggested-action {
  1328. background-color: #a9b1d6;
  1329. color: #c0caf5;
  1330. }
  1331. splitbutton.destructive-action {
  1332. background-color: #f7768e;
  1333. color: #c0caf5;
  1334. }
  1335. splitbutton.opaque {
  1336. background-color: #565f89;
  1337. color: #c0caf5;
  1338. }
  1339. splitbutton.suggested-action > button,
  1340. splitbutton.suggested-action > button:checked,
  1341. splitbutton.suggested-action > menubutton > button,
  1342. splitbutton.suggested-action > menubutton > button:checked,
  1343. splitbutton.destructive-action > button,
  1344. splitbutton.destructive-action > button:checked,
  1345. splitbutton.destructive-action > menubutton > button,
  1346. splitbutton.destructive-action > menubutton > button:checked,
  1347. splitbutton.opaque > button,
  1348. splitbutton.opaque > button:checked,
  1349. splitbutton.opaque > menubutton > button,
  1350. splitbutton.opaque > menubutton > button:checked {
  1351. color: inherit;
  1352. background-color: transparent;
  1353. }
  1354. splitbutton.suggested-action > menubutton > button:dir(ltr),
  1355. splitbutton.destructive-action > menubutton > button:dir(ltr),
  1356. splitbutton.opaque > menubutton > button:dir(ltr) {
  1357. box-shadow: inset 1px 0 rgba(192, 202, 245, 0.12);
  1358. }
  1359. splitbutton.suggested-action > menubutton > button:dir(rtl),
  1360. splitbutton.destructive-action > menubutton > button:dir(rtl),
  1361. splitbutton.opaque > menubutton > button:dir(rtl) {
  1362. box-shadow: inset -1px 0 rgba(192, 202, 245, 0.12);
  1363. }
  1364. splitbutton > menubutton > button > arrow.none {
  1365. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  1366. }
  1367. buttoncontent {
  1368. border-spacing: 6px;
  1369. }
  1370. buttoncontent > label {
  1371. font-weight: bold;
  1372. }
  1373. buttoncontent > label:dir(ltr) {
  1374. padding-right: 2px;
  1375. }
  1376. buttoncontent > label:dir(rtl) {
  1377. padding-left: 2px;
  1378. }
  1379. .arrow-button > box > buttoncontent > label:dir(ltr),
  1380. splitbutton > button > buttoncontent > label:dir(ltr) {
  1381. padding-right: 0;
  1382. }
  1383. .arrow-button > box > buttoncontent > label:dir(rtl),
  1384. splitbutton > button > buttoncontent > label:dir(rtl) {
  1385. padding-left: 0;
  1386. }
  1387. stacksidebar row.needs-attention > label,
  1388. stackswitcher > button.needs-attention > label,
  1389. stackswitcher > button.needs-attention > image {
  1390. animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
  1391. background-repeat: no-repeat;
  1392. background-position: right 3px;
  1393. background-size: 6px 6px;
  1394. }
  1395. stacksidebar row.needs-attention > label:dir(rtl),
  1396. stackswitcher > button.needs-attention > label:dir(rtl),
  1397. stackswitcher > button.needs-attention > image:dir(rtl) {
  1398. background-position: left 3px;
  1399. }
  1400. .linked:not(.vertical) > entry,
  1401. .linked:not(.vertical) > button,
  1402. .linked:not(.vertical) > button.image-button {
  1403. border-radius: 0;
  1404. }
  1405. .linked:not(.vertical) > entry:first-child,
  1406. .linked:not(.vertical) > button:first-child {
  1407. border-top-left-radius: 6px;
  1408. border-bottom-left-radius: 6px;
  1409. }
  1410. .linked:not(.vertical) > entry:last-child,
  1411. .linked:not(.vertical) > button:last-child {
  1412. border-top-right-radius: 6px;
  1413. border-bottom-right-radius: 6px;
  1414. }
  1415. .linked:not(.vertical) > entry:only-child,
  1416. .linked:not(.vertical) > button:only-child {
  1417. border-radius: 6px;
  1418. }
  1419. .linked.vertical > entry,
  1420. .linked.vertical > button,
  1421. .linked.vertical > button.image-button {
  1422. border-radius: 0;
  1423. }
  1424. .linked.vertical > entry:first-child,
  1425. .linked.vertical > button:first-child {
  1426. border-top-left-radius: 6px;
  1427. border-top-right-radius: 6px;
  1428. }
  1429. .linked.vertical > entry:last-child,
  1430. .linked.vertical > button:last-child {
  1431. border-bottom-left-radius: 6px;
  1432. border-bottom-right-radius: 6px;
  1433. }
  1434. .linked.vertical > entry:only-child,
  1435. .linked.vertical > button:only-child {
  1436. border-radius: 6px;
  1437. }
  1438. .linked:not(.vertical) > button:not(.combo):dir(ltr):not(:first-child),
  1439. .linked:not(.vertical) > button:not(.combo):dir(rtl):not(:last-child) {
  1440. border-top-left-radius: 0;
  1441. border-bottom-left-radius: 0;
  1442. margin-left: 0;
  1443. }
  1444. .linked:not(.vertical) > button:not(.combo):dir(ltr):not(:last-child),
  1445. .linked:not(.vertical) > button:not(.combo):dir(rtl):not(:first-child) {
  1446. border-top-right-radius: 0;
  1447. border-bottom-right-radius: 0;
  1448. }
  1449. .linked.vertical button:not(.combo):not(:first-child) {
  1450. border-top-left-radius: 0;
  1451. border-top-right-radius: 0;
  1452. margin-top: 0;
  1453. }
  1454. .linked.vertical button:not(.combo):not(:last-child) {
  1455. border-bottom-left-radius: 0;
  1456. border-bottom-right-radius: 0;
  1457. }
  1458. .linked:not(.vertical) > menubutton:dir(ltr):not(:first-child) > button,
  1459. .linked:not(.vertical) > menubutton:dir(rtl):not(:last-child) > button {
  1460. border-top-left-radius: 0;
  1461. border-bottom-left-radius: 0;
  1462. margin-left: 0;
  1463. }
  1464. .linked:not(.vertical) > menubutton:dir(ltr):not(:last-child) > button,
  1465. .linked:not(.vertical) > menubutton:dir(rtl):not(:first-child) > button {
  1466. border-top-right-radius: 0;
  1467. border-bottom-right-radius: 0;
  1468. }
  1469. .linked.vertical menubutton:not(:first-child) > button {
  1470. border-top-left-radius: 0;
  1471. border-top-right-radius: 0;
  1472. margin-top: 0;
  1473. }
  1474. .linked.vertical menubutton:not(:last-child) > button {
  1475. border-bottom-left-radius: 0;
  1476. border-bottom-right-radius: 0;
  1477. }
  1478. .linked:not(.vertical) > dropdown:dir(ltr):not(:first-child) > button,
  1479. .linked:not(.vertical) > dropdown:dir(rtl):not(:last-child) > button {
  1480. border-top-left-radius: 0;
  1481. border-bottom-left-radius: 0;
  1482. margin-left: 0;
  1483. }
  1484. .linked:not(.vertical) > dropdown:dir(ltr):not(:last-child) > button,
  1485. .linked:not(.vertical) > dropdown:dir(rtl):not(:first-child) > button {
  1486. border-top-right-radius: 0;
  1487. border-bottom-right-radius: 0;
  1488. }
  1489. .linked.vertical dropdown:not(:first-child) > button {
  1490. border-top-left-radius: 0;
  1491. border-top-right-radius: 0;
  1492. margin-top: 0;
  1493. }
  1494. .linked.vertical dropdown:not(:last-child) > button {
  1495. border-bottom-left-radius: 0;
  1496. border-bottom-right-radius: 0;
  1497. }
  1498. .linked:not(.vertical) > colorbutton:dir(ltr):not(:first-child) > button,
  1499. .linked:not(.vertical) > colorbutton:dir(rtl):not(:last-child) > button {
  1500. border-top-left-radius: 0;
  1501. border-bottom-left-radius: 0;
  1502. margin-left: 0;
  1503. }
  1504. .linked:not(.vertical) > colorbutton:dir(ltr):not(:last-child) > button,
  1505. .linked:not(.vertical) > colorbutton:dir(rtl):not(:first-child) > button {
  1506. border-top-right-radius: 0;
  1507. border-bottom-right-radius: 0;
  1508. }
  1509. .linked.vertical colorbutton:not(:first-child) > button {
  1510. border-top-left-radius: 0;
  1511. border-top-right-radius: 0;
  1512. margin-top: 0;
  1513. }
  1514. .linked.vertical colorbutton:not(:last-child) > button {
  1515. border-bottom-left-radius: 0;
  1516. border-bottom-right-radius: 0;
  1517. }
  1518. .linked:not(.vertical) > fontbutton:dir(ltr):not(:first-child) > button,
  1519. .linked:not(.vertical) > fontbutton:dir(rtl):not(:last-child) > button {
  1520. border-top-left-radius: 0;
  1521. border-bottom-left-radius: 0;
  1522. margin-left: 0;
  1523. }
  1524. .linked:not(.vertical) > fontbutton:dir(ltr):not(:last-child) > button,
  1525. .linked:not(.vertical) > fontbutton:dir(rtl):not(:first-child) > button {
  1526. border-top-right-radius: 0;
  1527. border-bottom-right-radius: 0;
  1528. }
  1529. .linked.vertical fontbutton:not(:first-child) > button {
  1530. border-top-left-radius: 0;
  1531. border-top-right-radius: 0;
  1532. margin-top: 0;
  1533. }
  1534. .linked.vertical fontbutton:not(:last-child) > button {
  1535. border-bottom-left-radius: 0;
  1536. border-bottom-right-radius: 0;
  1537. }
  1538. .linked:not(.vertical) > tabbutton:dir(ltr):not(:first-child) > button,
  1539. .linked:not(.vertical) > tabbutton:dir(rtl):not(:last-child) > button {
  1540. border-top-left-radius: 0;
  1541. border-bottom-left-radius: 0;
  1542. margin-left: 0;
  1543. }
  1544. .linked:not(.vertical) > tabbutton:dir(ltr):not(:last-child) > button,
  1545. .linked:not(.vertical) > tabbutton:dir(rtl):not(:first-child) > button {
  1546. border-top-right-radius: 0;
  1547. border-bottom-right-radius: 0;
  1548. }
  1549. .linked.vertical tabbutton:not(:first-child) > button {
  1550. border-top-left-radius: 0;
  1551. border-top-right-radius: 0;
  1552. margin-top: 0;
  1553. }
  1554. .linked.vertical tabbutton:not(:last-child) > button {
  1555. border-bottom-left-radius: 0;
  1556. border-bottom-right-radius: 0;
  1557. }
  1558. .linked:not(.vertical) > entry:not(.combo):dir(ltr):not(:first-child),
  1559. .linked:not(.vertical) > entry:not(.combo):dir(rtl):not(:last-child) {
  1560. border-top-left-radius: 0;
  1561. border-bottom-left-radius: 0;
  1562. margin-left: 0;
  1563. }
  1564. .linked:not(.vertical) > entry:not(.combo):dir(ltr):not(:last-child),
  1565. .linked:not(.vertical) > entry:not(.combo):dir(rtl):not(:first-child) {
  1566. border-top-right-radius: 0;
  1567. border-bottom-right-radius: 0;
  1568. }
  1569. .linked.vertical entry:not(.combo):not(:first-child) {
  1570. border-top-left-radius: 0;
  1571. border-top-right-radius: 0;
  1572. margin-top: 0;
  1573. }
  1574. .linked.vertical entry:not(.combo):not(:last-child) {
  1575. border-bottom-left-radius: 0;
  1576. border-bottom-right-radius: 0;
  1577. }
  1578. button.color {
  1579. min-height: 24px;
  1580. min-width: 24px;
  1581. padding: 6px;
  1582. }
  1583. list > row button.image-button:not(.flat) {
  1584. background-color: transparent;
  1585. box-shadow: none;
  1586. border: none;
  1587. }
  1588. list > row button.image-button:not(.flat):hover {
  1589. background-color: alpha(currentColor, 0.08);
  1590. color: #c0caf5;
  1591. box-shadow: inset 0 0 0 2px transparent;
  1592. }
  1593. list > row button.image-button:not(.flat):active,
  1594. list > row button.image-button:not(.flat):checked {
  1595. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  1596. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  1597. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  1598. background-color: alpha(currentColor, 0.12);
  1599. box-shadow: inset 0 0 0 2px transparent;
  1600. color: #c0caf5;
  1601. }
  1602. list > row button.image-button.suggested-action:not(.flat) {
  1603. background-color: #a9b1d6;
  1604. color: rgba(0, 0, 0, 0.87);
  1605. }
  1606. list > row button.image-button.destructive-action:not(.flat) {
  1607. background-color: #f7768e;
  1608. color: rgba(0, 0, 0, 0.87);
  1609. }
  1610. /*********
  1611. * Links *
  1612. *********/
  1613. link {
  1614. color: #7aa2f7;
  1615. }
  1616. link:visited {
  1617. color: #bb9af7;
  1618. }
  1619. button.link:link,
  1620. button.link:link:focus,
  1621. button.link:link:hover,
  1622. button.link:link:active {
  1623. color: #7aa2f7;
  1624. }
  1625. button.link:visited,
  1626. button.link:visited:focus,
  1627. button.link:visited:hover,
  1628. button.link:visited:active {
  1629. color: #bb9af7;
  1630. }
  1631. button.link > label {
  1632. text-decoration-line: underline;
  1633. }
  1634. /*****************
  1635. * GtkSpinButton *
  1636. *****************/
  1637. spinbutton {
  1638. border-radius: 6px;
  1639. padding: 0;
  1640. border-spacing: 0;
  1641. min-height: 0;
  1642. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  1643. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  1644. box-shadow: inset 0 0 0 2px transparent;
  1645. background-color: rgba(192, 202, 245, 0.04);
  1646. color: #c0caf5;
  1647. outline: none;
  1648. }
  1649. spinbutton:focus-within {
  1650. background-color: rgba(192, 202, 245, 0.04);
  1651. box-shadow: inset 0 0 0 2px #a9b1d6;
  1652. outline: none;
  1653. }
  1654. spinbutton:disabled {
  1655. box-shadow: inset 0 0 0 2px transparent;
  1656. background-color: rgba(192, 202, 245, 0.04);
  1657. color: rgba(192, 202, 245, 0.5);
  1658. outline: none;
  1659. opacity: 1;
  1660. filter: none;
  1661. }
  1662. spinbutton:not(.vertical) > text {
  1663. min-width: 32px;
  1664. margin: 0;
  1665. padding-left: 12px;
  1666. border-image: none;
  1667. border-radius: 0;
  1668. box-shadow: none;
  1669. background-color: transparent;
  1670. }
  1671. spinbutton:not(.vertical) > button {
  1672. border: solid 6px transparent;
  1673. }
  1674. spinbutton:not(.vertical)
  1675. > button:focus:not(:hover):not(:active):not(:disabled) {
  1676. box-shadow: inset 0 0 0 9999px transparent;
  1677. color: rgba(192, 202, 245, 0.7);
  1678. }
  1679. spinbutton:not(.vertical) > button.up:dir(ltr),
  1680. spinbutton:not(.vertical) > button.down:dir(rtl) {
  1681. margin-left: -3px;
  1682. }
  1683. spinbutton:not(.vertical) > button.up:dir(rtl),
  1684. spinbutton:not(.vertical) > button.down:dir(ltr) {
  1685. margin-right: -3px;
  1686. }
  1687. spinbutton.vertical > text {
  1688. margin: 0;
  1689. border-image: none;
  1690. border-radius: 0;
  1691. box-shadow: none;
  1692. background-color: transparent;
  1693. min-height: 36px;
  1694. min-width: 42px;
  1695. padding: 0;
  1696. }
  1697. spinbutton.vertical > button {
  1698. padding: 0;
  1699. border: solid 6px transparent;
  1700. }
  1701. spinbutton.vertical > button:focus:not(:hover):not(:active) {
  1702. box-shadow: inset 0 0 0 9999px transparent;
  1703. color: rgba(192, 202, 245, 0.7);
  1704. }
  1705. spinbutton.vertical > button.up {
  1706. margin: 0 3px;
  1707. }
  1708. spinbutton.vertical > button.down {
  1709. margin: 0 3px;
  1710. }
  1711. list > row spinbutton:not(.vertical) > button {
  1712. margin: 6px;
  1713. }
  1714. list > row spinbutton:not(.vertical) > button.up:dir(ltr),
  1715. list > row spinbutton:not(.vertical) > button.down:dir(rtl) {
  1716. margin-left: 3px;
  1717. }
  1718. list > row spinbutton:not(.vertical) > button.up:dir(rtl),
  1719. list > row spinbutton:not(.vertical) > button.down:dir(ltr) {
  1720. margin-right: 3px;
  1721. }
  1722. /**************
  1723. * ComboBoxes *
  1724. **************/
  1725. dropdown > button > box {
  1726. border-spacing: 6px;
  1727. }
  1728. dropdown arrow,
  1729. combobox arrow {
  1730. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  1731. min-height: 16px;
  1732. min-width: 16px;
  1733. }
  1734. dropdown > popover.menu > contents modelbutton,
  1735. combobox > popover.menu > contents modelbutton {
  1736. padding-left: 9px;
  1737. padding-right: 9px;
  1738. }
  1739. dropdown button.combo cellview:dir(ltr),
  1740. combobox button.combo cellview:dir(ltr) {
  1741. margin-left: -2px;
  1742. }
  1743. dropdown button.combo cellview:dir(rtl),
  1744. combobox button.combo cellview:dir(rtl) {
  1745. margin-right: -2px;
  1746. }
  1747. dropdown popover,
  1748. combobox popover {
  1749. margin-top: 4px;
  1750. padding: 0;
  1751. }
  1752. dropdown popover listview,
  1753. combobox popover listview {
  1754. margin: 0;
  1755. }
  1756. dropdown popover listview > row,
  1757. combobox popover listview > row {
  1758. padding: 6px;
  1759. }
  1760. dropdown popover listview > row:selected,
  1761. combobox popover listview > row:selected {
  1762. color: #c0caf5;
  1763. background-color: alpha(currentColor, 0.06);
  1764. }
  1765. dropdown popover .dropdown-searchbar,
  1766. combobox popover .dropdown-searchbar {
  1767. padding: 6px;
  1768. }
  1769. dropdown.linked button:nth-child(2):dir(ltr),
  1770. combobox.linked button:nth-child(2):dir(ltr) {
  1771. border-top-left-radius: 0;
  1772. border-bottom-left-radius: 0;
  1773. }
  1774. dropdown.linked button:nth-child(2):dir(rtl),
  1775. combobox.linked button:nth-child(2):dir(rtl) {
  1776. border-top-right-radius: 0;
  1777. border-bottom-right-radius: 0;
  1778. }
  1779. dropdown > .linked:not(.vertical) > entry:not(:only-child),
  1780. combobox > .linked:not(.vertical) > entry:not(:only-child) {
  1781. border-radius: 6px;
  1782. }
  1783. dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child,
  1784. combobox > .linked:not(.vertical) > entry:not(:only-child):first-child {
  1785. margin-right: -36px;
  1786. padding-right: 36px;
  1787. }
  1788. dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child,
  1789. combobox > .linked:not(.vertical) > entry:not(:only-child):last-child {
  1790. margin-left: -36px;
  1791. padding-left: 36px;
  1792. }
  1793. dropdown > .linked:not(.vertical) > button:not(:only-child),
  1794. combobox > .linked:not(.vertical) > button:not(:only-child) {
  1795. min-height: 16px;
  1796. min-width: 16px;
  1797. margin: 6px;
  1798. padding: 4px;
  1799. border-radius: 9999px;
  1800. }
  1801. .linked:not(.vertical) > combobox:not(:first-child) > box > button.combo {
  1802. border-top-left-radius: 0;
  1803. border-bottom-left-radius: 0;
  1804. }
  1805. .linked:not(.vertical) > combobox:not(:last-child) > box > button.combo {
  1806. border-top-right-radius: 0;
  1807. border-bottom-right-radius: 0;
  1808. }
  1809. .linked.vertical > combobox:not(:first-child) > box > button.combo {
  1810. border-top-left-radius: 0;
  1811. border-top-right-radius: 0;
  1812. }
  1813. .linked.vertical > combobox:not(:last-child) > box > button.combo {
  1814. border-bottom-left-radius: 0;
  1815. border-bottom-right-radius: 0;
  1816. }
  1817. button.combo:only-child {
  1818. border-radius: 6px;
  1819. font-weight: normal;
  1820. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  1821. box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
  1822. box-shadow: inset 0 0 0 2px transparent;
  1823. background-color: rgba(192, 202, 245, 0.04);
  1824. color: #c0caf5;
  1825. outline: none;
  1826. }
  1827. button.combo:only-child:focus {
  1828. box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
  1829. color: #c0caf5;
  1830. }
  1831. button.combo:only-child:hover {
  1832. background-color: alpha(currentColor, 0.08);
  1833. color: #c0caf5;
  1834. }
  1835. button.combo:only-child:active {
  1836. background-color: alpha(currentColor, 0.12);
  1837. color: #c0caf5;
  1838. box-shadow: none;
  1839. }
  1840. button.combo:only-child:checked {
  1841. background-color: alpha(currentColor, 0.1);
  1842. color: #c0caf5;
  1843. outline: none;
  1844. box-shadow: none;
  1845. }
  1846. button.combo:only-child:disabled {
  1847. box-shadow: none;
  1848. background-color: rgba(192, 202, 245, 0.04);
  1849. color: rgba(192, 202, 245, 0.5);
  1850. transition: none;
  1851. opacity: 1;
  1852. filter: none;
  1853. }
  1854. /************
  1855. * Toolbars *
  1856. ************/
  1857. .toolbar,
  1858. toolbar {
  1859. padding: 3px 6px;
  1860. background-color: #1a1b26;
  1861. border-spacing: 6px;
  1862. }
  1863. .osd .toolbar,
  1864. .osd toolbar {
  1865. background-color: transparent;
  1866. }
  1867. .app-notification,
  1868. .toolbar.osd,
  1869. toolbar.osd {
  1870. transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
  1871. padding: 6px;
  1872. border-radius: 6px;
  1873. box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2),
  1874. 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12),
  1875. inset 0 1px rgba(192, 202, 245, 0.1);
  1876. background-color: #3b4261;
  1877. }
  1878. .app-notification:backdrop,
  1879. .toolbar.osd:backdrop,
  1880. toolbar.osd:backdrop {
  1881. box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3),
  1882. 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12),
  1883. inset 0 1px rgba(192, 202, 245, 0.1);
  1884. }
  1885. .left.app-notification,
  1886. .right.app-notification,
  1887. .top.app-notification,
  1888. .bottom.app-notification,
  1889. .toolbar.osd.left,
  1890. .toolbar.osd.right,
  1891. .toolbar.osd.top,
  1892. .toolbar.osd.bottom,
  1893. toolbar.osd.left,
  1894. toolbar.osd.right,
  1895. toolbar.osd.top,
  1896. toolbar.osd.bottom {
  1897. border-radius: 0;
  1898. }
  1899. .bottom.app-notification,
  1900. .toolbar.osd.bottom,
  1901. toolbar.osd.bottom {
  1902. box-shadow: none;
  1903. background-color: transparent;
  1904. background-image: linear-gradient(
  1905. to bottom,
  1906. transparent,
  1907. rgba(0, 0, 0, 0.1) 30%,
  1908. rgba(0, 0, 0, 0.2) 50%,
  1909. rgba(0, 0, 0, 0.4)
  1910. );
  1911. }
  1912. .toolbar.horizontal > separator,
  1913. toolbar.horizontal > separator {
  1914. margin: 2px;
  1915. }
  1916. .toolbar.vertical > separator,
  1917. toolbar.vertical > separator {
  1918. margin: 2px;
  1919. }
  1920. .toolbar:not(.inline-toolbar):not(.osd) scale,
  1921. .toolbar:not(.inline-toolbar):not(.osd) entry,
  1922. .toolbar:not(.inline-toolbar):not(.osd) spinbutton,
  1923. .toolbar:not(.inline-toolbar):not(.osd) button,
  1924. toolbar:not(.inline-toolbar):not(.osd) scale,
  1925. toolbar:not(.inline-toolbar):not(.osd) entry,
  1926. toolbar:not(.inline-toolbar):not(.osd) spinbutton,
  1927. toolbar:not(.inline-toolbar):not(.osd) button {
  1928. margin: 2px;
  1929. }
  1930. .toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
  1931. .toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
  1932. .toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child),
  1933. toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
  1934. toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
  1935. toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) {
  1936. margin-left: 0;
  1937. }
  1938. .toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
  1939. .toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
  1940. .toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child),
  1941. toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
  1942. toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
  1943. toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) {
  1944. margin-right: 0;
  1945. }
  1946. .toolbar:not(.inline-toolbar):not(.osd) spinbutton entry,
  1947. .toolbar:not(.inline-toolbar):not(.osd) spinbutton button,
  1948. toolbar:not(.inline-toolbar):not(.osd) spinbutton entry,
  1949. toolbar:not(.inline-toolbar):not(.osd) spinbutton button {
  1950. margin: 0;
  1951. }
  1952. .toolbar:not(.inline-toolbar):not(.osd) switch,
  1953. toolbar:not(.inline-toolbar):not(.osd) switch {
  1954. margin: 8px 2px;
  1955. }
  1956. searchbar > revealer > box {
  1957. padding: 6px;
  1958. border-spacing: 6px;
  1959. border-style: solid;
  1960. border-width: 0 0 1px;
  1961. border-color: rgba(192, 202, 245, 0.12);
  1962. background-color: #1a1b26;
  1963. background-clip: border-box;
  1964. box-shadow: none;
  1965. }
  1966. searchbar > revealer > box entry,
  1967. searchbar > revealer > box button {
  1968. margin: 0;
  1969. }
  1970. /***************
  1971. * Header bars *
  1972. ***************/
  1973. headerbar button:not(.suggested-action):not(.destructive-action) {
  1974. color: rgba(192, 202, 245, 0.7);
  1975. border-radius: 9px;
  1976. }
  1977. headerbar button:focus:not(.suggested-action):not(.destructive-action),
  1978. headerbar button:hover:not(.suggested-action):not(.destructive-action),
  1979. headerbar button:active:not(.suggested-action):not(.destructive-action),
  1980. headerbar button:checked:not(.suggested-action):not(.destructive-action) {
  1981. color: #c0caf5;
  1982. box-shadow: none;
  1983. }
  1984. headerbar button:disabled:not(.suggested-action):not(.destructive-action) {
  1985. color: rgba(192, 202, 245, 0.3);
  1986. }
  1987. headerbar
  1988. button:checked:disabled:not(.suggested-action):not(.destructive-action) {
  1989. background-color: transparent;
  1990. color: rgba(192, 202, 245, 0.5);
  1991. }
  1992. headerbar button:backdrop:not(.suggested-action):not(.destructive-action) {
  1993. color: rgba(192, 202, 245, 0.5);
  1994. }
  1995. headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action),
  1996. headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action),
  1997. headerbar
  1998. button:backdrop:active:not(.suggested-action):not(.destructive-action) {
  1999. color: rgba(192, 202, 245, 0.7);
  2000. }
  2001. headerbar
  2002. button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
  2003. color: rgba(192, 202, 245, 0.3);
  2004. }
  2005. headerbar
  2006. button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
  2007. color: rgba(192, 202, 245, 0.7);
  2008. }
  2009. headerbar
  2010. button:backdrop:checked:disabled:not(.suggested-action):not(
  2011. .destructive-action
  2012. ) {
  2013. color: rgba(192, 202, 245, 0.3);
  2014. }
  2015. headerbar entry {
  2016. background-color: rgba(192, 202, 245, 0.04);
  2017. color: #c0caf5;
  2018. }
  2019. headerbar entry:focus-within {
  2020. box-shadow: inset 0 0 0 2px #a9b1d6;
  2021. }
  2022. headerbar entry:disabled {
  2023. background-color: rgba(192, 202, 245, 0.04);
  2024. color: rgba(192, 202, 245, 0.5);
  2025. }
  2026. headerbar entry image {
  2027. color: rgba(192, 202, 245, 0.7);
  2028. }
  2029. headerbar entry image:hover,
  2030. headerbar entry image:active {
  2031. color: #c0caf5;
  2032. }
  2033. headerbar entry image:disabled {
  2034. color: rgba(192, 202, 245, 0.5);
  2035. }
  2036. headerbar {
  2037. min-height: 48px;
  2038. padding: 2px 0;
  2039. margin: 0;
  2040. border: none;
  2041. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  2042. background-color: #1a1b26;
  2043. color: #c0caf5;
  2044. box-shadow: none;
  2045. border-radius: 12px 12px 0 0;
  2046. }
  2047. headerbar:disabled {
  2048. color: rgba(192, 202, 245, 0.5);
  2049. }
  2050. headerbar:backdrop {
  2051. background-color: #1a1b26;
  2052. color: rgba(192, 202, 245, 0.7);
  2053. }
  2054. headerbar:backdrop:disabled {
  2055. color: rgba(192, 202, 245, 0.3);
  2056. }
  2057. headerbar.flat {
  2058. background-color: transparent;
  2059. color: #c0caf5;
  2060. }
  2061. headerbar .title {
  2062. padding: 0 12px;
  2063. font-weight: bold;
  2064. }
  2065. headerbar .subtitle {
  2066. padding: 0 12px;
  2067. font-size: smaller;
  2068. }
  2069. headerbar .subtitle,
  2070. headerbar .dim-label,
  2071. headerbar row label.subtitle,
  2072. row headerbar label.subtitle {
  2073. transition: color 75ms cubic-bezier(0, 0, 0.2, 1);
  2074. color: rgba(192, 202, 245, 0.7);
  2075. }
  2076. headerbar .subtitle:backdrop,
  2077. headerbar .dim-label:backdrop,
  2078. headerbar row label.subtitle:backdrop,
  2079. row headerbar label.subtitle:backdrop {
  2080. color: rgba(192, 202, 245, 0.5);
  2081. }
  2082. headerbar > windowhandle > box {
  2083. padding: 0 6px;
  2084. }
  2085. headerbar > windowhandle > box,
  2086. headerbar > windowhandle > box > box.start,
  2087. headerbar > windowhandle > box > box.end {
  2088. border-spacing: 6px;
  2089. }
  2090. headerbar entry,
  2091. headerbar spinbutton,
  2092. headerbar button,
  2093. headerbar stackswitcher,
  2094. headerbar menubutton,
  2095. headerbar splitbutton,
  2096. headerbar separator {
  2097. margin-top: 6px;
  2098. margin-bottom: 6px;
  2099. }
  2100. headerbar menubutton > button,
  2101. headerbar spinbutton > button,
  2102. headerbar splitbutton > button,
  2103. headerbar splitbutton > menubutton,
  2104. headerbar stackswitcher > button {
  2105. margin-top: 0;
  2106. margin-bottom: 0;
  2107. }
  2108. headerbar separator:not(.spacer) {
  2109. background-color: rgba(192, 202, 245, 0.12);
  2110. }
  2111. headerbar switch {
  2112. margin-top: 12px;
  2113. margin-bottom: 12px;
  2114. }
  2115. headerbar spinbutton button {
  2116. margin-top: 0;
  2117. margin-bottom: 0;
  2118. }
  2119. headerbar .entry-tag {
  2120. margin-top: 5px;
  2121. margin-bottom: 5px;
  2122. }
  2123. headerbar .titlebar {
  2124. background-color: transparent;
  2125. box-shadow: none;
  2126. }
  2127. headerbar headerbar + separator {
  2128. background-color: rgba(192, 202, 245, 0.12);
  2129. }
  2130. headerbar .linked:not(.vertical) > entry:not(:only-child) {
  2131. border-radius: 6px;
  2132. }
  2133. headerbar button.suggested-action:disabled,
  2134. headerbar button.destructive-action:disabled {
  2135. background-color: rgba(192, 202, 245, 0.04);
  2136. color: rgba(192, 202, 245, 0.5);
  2137. }
  2138. headerbar stackswitcher {
  2139. margin: 6px 0;
  2140. border-radius: 9999px;
  2141. }
  2142. headerbar
  2143. stackswitcher.linked:not(.vertical)
  2144. > button.text-button:not(.suggested-action):not(.destructive-action) {
  2145. border-radius: 9999px;
  2146. }
  2147. headerbar
  2148. stackswitcher.linked:not(.vertical)
  2149. > button.text-button:not(.suggested-action):not(.destructive-action):checked {
  2150. background-color: #a9b1d6;
  2151. color: rgba(0, 0, 0, 0.87);
  2152. }
  2153. headerbar.selection-mode {
  2154. transition: background-color 0.1ms 225ms,
  2155. color 75ms cubic-bezier(0, 0, 0.2, 1);
  2156. box-shadow: inset 0 1px rgba(192, 202, 245, 0);
  2157. background-color: #a9b1d6;
  2158. color: rgba(0, 0, 0, 0.87);
  2159. }
  2160. headerbar.selection-mode:backdrop {
  2161. color: rgba(0, 0, 0, 0.6);
  2162. }
  2163. headerbar.selection-mode .subtitle:link {
  2164. color: rgba(0, 0, 0, 0.87);
  2165. }
  2166. headerbar.selection-mode .selection-menu {
  2167. padding-left: 16px;
  2168. padding-right: 16px;
  2169. }
  2170. headerbar.selection-mode .selection-menu .arrow {
  2171. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  2172. }
  2173. headerbar .selection-mode {
  2174. box-shadow: inset 0 1px rgba(192, 202, 245, 0);
  2175. background-color: #a9b1d6;
  2176. }
  2177. .tiled headerbar,
  2178. .tiled-top headerbar,
  2179. .tiled-right headerbar,
  2180. .tiled-bottom headerbar,
  2181. .tiled-left headerbar,
  2182. .maximized headerbar,
  2183. .fullscreen headerbar {
  2184. border-radius: 0;
  2185. }
  2186. headerbar.default-decoration {
  2187. min-height: 36px;
  2188. border-radius: 12px 12px 0 0;
  2189. }
  2190. headerbar.default-decoration windowcontrols button,
  2191. headerbar.default-decoration windowcontrols menubutton {
  2192. min-height: 24px;
  2193. min-width: 24px;
  2194. margin: 0;
  2195. padding: 0;
  2196. }
  2197. .solid-csd headerbar:dir(rtl),
  2198. .solid-csd headerbar:dir(ltr) {
  2199. border-radius: 0;
  2200. box-shadow: none;
  2201. }
  2202. leaflet > box:last-child > headerbar {
  2203. border-top-right-radius: 0;
  2204. }
  2205. leaflet > box:not(:last-child) > headerbar,
  2206. leaflet > box > stack > widget > box > widget > headerbar {
  2207. border-top-left-radius: 0;
  2208. }
  2209. window.devel headerbar.titlebar {
  2210. background: #1a1b26
  2211. cross-fade(10% -gtk-icontheme('system-run-symbolic'), image(transparent))
  2212. 90% 0/256px 256px no-repeat,
  2213. linear-gradient(to right, transparent 65%, rgba(169, 177, 214, 0.1)),
  2214. linear-gradient(to top, #343434 3px, #393939);
  2215. }
  2216. window.devel headerbar.titlebar:backdrop {
  2217. background: #1a1b26
  2218. cross-fade(10% -gtk-icontheme('system-run-symbolic'), image(transparent))
  2219. 90% 0/256px 256px no-repeat,
  2220. image(#1a1b26);
  2221. /* background-color would flash */
  2222. }
  2223. /************
  2224. * Pathbars *
  2225. ************/
  2226. pathbar > button {
  2227. padding-left: 6px;
  2228. padding-right: 6px;
  2229. border-radius: 6px;
  2230. }
  2231. pathbar > button label:not(:only-child):first-child {
  2232. margin-left: 0;
  2233. }
  2234. pathbar > button label:not(:only-child):last-child {
  2235. margin-right: 0;
  2236. }
  2237. pathbar > button.text-button {
  2238. min-width: 0;
  2239. }
  2240. pathbar > button.slider-button {
  2241. padding-left: 4px;
  2242. padding-right: 4px;
  2243. }
  2244. .pathbar {
  2245. background-color: rgba(192, 202, 245, 0.04);
  2246. color: rgba(192, 202, 245, 0.7);
  2247. border: none;
  2248. border-radius: 6px;
  2249. padding: 2px;
  2250. }
  2251. headerbar .pathbar {
  2252. margin-top: 6px;
  2253. margin-bottom: 6px;
  2254. background-color: rgba(192, 202, 245, 0.04);
  2255. color: rgba(192, 202, 245, 0.7);
  2256. }
  2257. .pathbar > button {
  2258. margin-top: 0;
  2259. margin-bottom: 0;
  2260. min-height: 20px;
  2261. border-radius: 4px;
  2262. border: none;
  2263. box-shadow: none;
  2264. }
  2265. .pathbar > button:last-child {
  2266. background-color: alpha(currentColor, 0.1);
  2267. color: #c0caf5;
  2268. outline: none;
  2269. box-shadow: none;
  2270. }
  2271. /**************
  2272. * Tree Views *
  2273. **************/
  2274. columnview.view,
  2275. treeview.view {
  2276. border-left-color: #414868;
  2277. border-top-color: #414868;
  2278. }
  2279. columnview.view:selected,
  2280. treeview.view:selected {
  2281. background-color: alpha(currentColor, 0.1);
  2282. box-shadow: none;
  2283. }
  2284. columnview.view:focus,
  2285. treeview.view:focus {
  2286. box-shadow: none;
  2287. outline: none;
  2288. }
  2289. columnview.view:hover,
  2290. columnview.view:selected,
  2291. treeview.view:hover,
  2292. treeview.view:selected {
  2293. border-radius: 0;
  2294. box-shadow: none;
  2295. }
  2296. columnview.view.separator,
  2297. treeview.view.separator {
  2298. min-height: 5px;
  2299. color: rgba(192, 202, 245, 0.12);
  2300. }
  2301. columnview.view:drop(active),
  2302. treeview.view:drop(active) {
  2303. box-shadow: none;
  2304. }
  2305. columnview.view.after:drop(active),
  2306. treeview.view.after:drop(active) {
  2307. border-top-style: none;
  2308. }
  2309. columnview.view.before:drop(active),
  2310. treeview.view.before:drop(active) {
  2311. border-bottom-style: none;
  2312. }
  2313. columnview.view > dndtarget:drop(active),
  2314. treeview.view > dndtarget:drop(active) {
  2315. border-style: solid none;
  2316. border-width: 1px;
  2317. border-color: alpha(currentColor, 0.06);
  2318. }
  2319. columnview.view > dndtarget.after:drop(active),
  2320. treeview.view > dndtarget.after:drop(active) {
  2321. border-top-style: none;
  2322. }
  2323. columnview.view > dndtarget.before:drop(active),
  2324. treeview.view > dndtarget.before:drop(active) {
  2325. border-bottom-style: none;
  2326. }
  2327. columnview.view.expander,
  2328. treeview.view.expander {
  2329. min-width: 16px;
  2330. min-height: 16px;
  2331. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
  2332. color: rgba(192, 202, 245, 0.7);
  2333. }
  2334. columnview.view.expander:dir(rtl),
  2335. treeview.view.expander:dir(rtl) {
  2336. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl');
  2337. }
  2338. columnview.view.expander:hover,
  2339. treeview.view.expander:hover {
  2340. color: #c0caf5;
  2341. }
  2342. columnview.view.expander:selected,
  2343. treeview.view.expander:selected {
  2344. color: #c0caf5;
  2345. }
  2346. columnview.view.expander:selected:hover,
  2347. treeview.view.expander:selected:hover {
  2348. color: #c0caf5;
  2349. }
  2350. columnview.view.expander:checked,
  2351. treeview.view.expander:checked {
  2352. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  2353. }
  2354. columnview.view.expander:disabled,
  2355. treeview.view.expander:disabled {
  2356. color: rgba(192, 202, 245, 0.3);
  2357. }
  2358. columnview.view.progressbar,
  2359. treeview.view.progressbar {
  2360. border-bottom: 6px solid #a9b1d6;
  2361. box-shadow: none;
  2362. background-color: transparent;
  2363. background-image: none;
  2364. }
  2365. columnview.view.progressbar:selected:hover,
  2366. treeview.view.progressbar:selected:hover {
  2367. box-shadow: none;
  2368. }
  2369. columnview.view.trough,
  2370. treeview.view.trough {
  2371. border-bottom: 6px solid rgba(192, 202, 245, 0.12);
  2372. box-shadow: none;
  2373. background-color: transparent;
  2374. background-image: none;
  2375. }
  2376. columnview.view.trough:selected:hover,
  2377. treeview.view.trough:selected:hover {
  2378. box-shadow: none;
  2379. }
  2380. columnview.view > header > button,
  2381. treeview.view > header > button {
  2382. padding: 2px 6px;
  2383. border-style: none solid solid none;
  2384. border-width: 1px;
  2385. border-color: rgba(192, 202, 245, 0.12);
  2386. border-radius: 0;
  2387. background-clip: border-box;
  2388. }
  2389. columnview.view > header > button:not(:focus):not(:hover):not(:active),
  2390. treeview.view > header > button:not(:focus):not(:hover):not(:active) {
  2391. color: rgba(192, 202, 245, 0.7);
  2392. }
  2393. columnview.view > header > button,
  2394. columnview.view > header > button:disabled,
  2395. treeview.view > header > button,
  2396. treeview.view > header > button:disabled {
  2397. background-color: #1a1b26;
  2398. }
  2399. columnview.view > header > button:last-child,
  2400. treeview.view > header > button:last-child {
  2401. border-right-style: none;
  2402. }
  2403. columnview.view button.dnd,
  2404. columnview.view header.button.dnd,
  2405. treeview.view button.dnd,
  2406. treeview.view header.button.dnd {
  2407. padding: 2px 6px;
  2408. border-style: none solid solid;
  2409. border-width: 1px;
  2410. border-color: rgba(192, 202, 245, 0.12);
  2411. border-radius: 0;
  2412. box-shadow: none;
  2413. background-color: #1a1b26;
  2414. background-clip: border-box;
  2415. color: #a9b1d6;
  2416. }
  2417. columnview.view acceleditor > label,
  2418. treeview.view acceleditor > label {
  2419. background-color: #a9b1d6;
  2420. }
  2421. /*********
  2422. * Menus *
  2423. *********/
  2424. menubar {
  2425. padding: 0;
  2426. color: #c0caf5;
  2427. }
  2428. menubar:backdrop {
  2429. color: rgba(192, 202, 245, 0.7);
  2430. }
  2431. .csd menubar {
  2432. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  2433. }
  2434. menubar > item {
  2435. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  2436. min-height: 20px;
  2437. padding: 4px 8px;
  2438. color: rgba(192, 202, 245, 0.7);
  2439. }
  2440. menubar > item:selected {
  2441. transition: none;
  2442. background-color: alpha(currentColor, 0.1);
  2443. color: #c0caf5;
  2444. }
  2445. menubar > item:disabled {
  2446. color: rgba(192, 202, 245, 0.3);
  2447. }
  2448. menubar > item label:disabled {
  2449. color: inherit;
  2450. }
  2451. menubar > item popover.menu popover.menu {
  2452. margin-left: 9px;
  2453. }
  2454. menubar > item popover.menu.background popover.menu.background > contents {
  2455. margin: 0;
  2456. border-radius: 12px;
  2457. }
  2458. /**********************
  2459. * Popover Base Menus *
  2460. **********************/
  2461. popover.menu box.inline-buttons {
  2462. padding: 0 9px;
  2463. }
  2464. popover.menu box.inline-buttons button.image-button.model {
  2465. min-height: 28px;
  2466. min-width: 28px;
  2467. padding: 0;
  2468. border: none;
  2469. outline: none;
  2470. transition: none;
  2471. }
  2472. popover.menu box.inline-buttons button.image-button.model:selected {
  2473. background-image: image(alpha(currentColor, 0.06));
  2474. }
  2475. popover.menu box.circular-buttons {
  2476. padding: 6px;
  2477. }
  2478. popover.menu box.circular-buttons button.circular.image-button.model {
  2479. padding: 6px;
  2480. }
  2481. popover.menu box.circular-buttons button.circular.image-button.model:focus {
  2482. background-color: alpha(currentColor, 0.06);
  2483. }
  2484. popover.menu arrow.left,
  2485. popover.menu radio.left,
  2486. popover.menu check.left {
  2487. margin-left: 0;
  2488. margin-right: 0;
  2489. }
  2490. popover.menu arrow.right,
  2491. popover.menu radio.right,
  2492. popover.menu check.right {
  2493. margin-left: 0;
  2494. margin-right: 0;
  2495. }
  2496. /************
  2497. * Popovers *
  2498. ************/
  2499. popover.background {
  2500. font: initial;
  2501. }
  2502. popover.background,
  2503. popover.background:backdrop {
  2504. background-color: transparent;
  2505. }
  2506. popover.background > arrow,
  2507. popover.background > contents {
  2508. transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
  2509. padding: 6px;
  2510. background-color: #1f2231;
  2511. border-radius: 12px;
  2512. color: #a9b1d6;
  2513. border: 1px solid rgba(192, 202, 245, 0.2);
  2514. background-clip: border-box;
  2515. box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.05),
  2516. 0 4px 6px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.05),
  2517. 0 0 0 1px rgba(0, 0, 0, 0.75);
  2518. }
  2519. popover.background:backdrop > arrow,
  2520. popover.background:backdrop > contents {
  2521. border: none;
  2522. box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3),
  2523. 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  2524. }
  2525. popover.background modelbutton {
  2526. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
  2527. min-height: 22px;
  2528. min-width: 56px;
  2529. padding: 3px 9px;
  2530. border-radius: 6px;
  2531. color: #a9b1d6;
  2532. font: initial;
  2533. text-shadow: none;
  2534. box-shadow: none;
  2535. background: none;
  2536. }
  2537. popover.background modelbutton:hover {
  2538. transition: none;
  2539. background-color: #292e42;
  2540. color: #0db9d7;
  2541. }
  2542. popover.background modelbutton:hover accelerator {
  2543. color: #0db9d7;
  2544. }
  2545. popover.background modelbutton:hover accelerator:disabled {
  2546. color: rgba(0, 0, 0, 0.26);
  2547. }
  2548. popover.background modelbutton:disabled {
  2549. color: rgba(192, 202, 245, 0.5);
  2550. }
  2551. popover.background modelbutton accelerator {
  2552. color: rgba(192, 202, 245, 0.5);
  2553. margin-left: 30px;
  2554. }
  2555. popover.background modelbutton accelerator:disabled {
  2556. color: rgba(192, 202, 245, 0.12);
  2557. }
  2558. popover.background modelbutton arrow.left {
  2559. -gtk-icon-source: -gtk-icontheme('go-previous-symbolic');
  2560. }
  2561. popover.background modelbutton arrow.right {
  2562. -gtk-icon-source: -gtk-icontheme('go-next-symbolic');
  2563. }
  2564. popover.background label.title {
  2565. font-weight: bold;
  2566. padding: 3px 35px;
  2567. }
  2568. popover.background > contents > list,
  2569. popover.background > contents > .view,
  2570. popover.background > contents > toolbar {
  2571. border-style: none;
  2572. box-shadow: none;
  2573. background-color: transparent;
  2574. }
  2575. popover.background > contents separator {
  2576. background-color: rgba(192, 202, 245, 0.12);
  2577. margin: 3px 0;
  2578. }
  2579. popover.background > contents list separator {
  2580. margin: 0;
  2581. }
  2582. popover.background > contents stack > box {
  2583. padding: 0;
  2584. }
  2585. popover.background > contents stack > scrolledwindow > viewport {
  2586. border: 1px solid rgba(192, 202, 245, 0.12);
  2587. border-radius: 2px;
  2588. }
  2589. popover.background > contents > box > button {
  2590. margin: 0;
  2591. }
  2592. popover.background.menu button,
  2593. popover.background button.model {
  2594. min-height: 32px;
  2595. padding: 0 8px;
  2596. border-radius: 6px;
  2597. }
  2598. .osd popover.background,
  2599. popover.background.touch-selection,
  2600. popover.background.magnifier {
  2601. background-color: transparent;
  2602. }
  2603. .osd popover.background > arrow,
  2604. .osd popover.background > contents,
  2605. popover.background.touch-selection > arrow,
  2606. popover.background.touch-selection > contents,
  2607. popover.background.magnifier > arrow,
  2608. popover.background.magnifier > contents {
  2609. border: none;
  2610. box-shadow: none;
  2611. }
  2612. /*************
  2613. * Notebooks *
  2614. *************/
  2615. tabbar scrolledwindow:not(.pinned) > tabbox tab,
  2616. notebook > header > tabs > tab {
  2617. transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms,
  2618. background-image 0ms;
  2619. min-height: 24px;
  2620. min-width: 24px;
  2621. padding: 5px;
  2622. margin: 0;
  2623. border: none;
  2624. outline: none;
  2625. background-clip: padding-box;
  2626. color: rgba(192, 202, 245, 0.7);
  2627. font-weight: 500;
  2628. border-radius: 9px;
  2629. background-color: rgba(192, 202, 245, 0.03);
  2630. }
  2631. tabbar scrolledwindow:not(.pinned) > tabbox tab:hover,
  2632. notebook > header > tabs > tab:hover {
  2633. background-color: rgba(192, 202, 245, 0.06);
  2634. color: #0db9d7;
  2635. box-shadow: none;
  2636. }
  2637. tabbar scrolledwindow:not(.pinned) > tabbox tab:disabled,
  2638. notebook > header > tabs > tab:disabled {
  2639. color: rgba(192, 202, 245, 0.3);
  2640. }
  2641. tabbar scrolledwindow:not(.pinned) > tabbox tab:checked,
  2642. notebook > header > tabs > tab:checked,
  2643. tabbar scrolledwindow:not(.pinned) > tabbox tab:selected,
  2644. notebook > header > tabs > tab:selected {
  2645. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  2646. background-color: #292e42;
  2647. color: #0db9d7;
  2648. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  2649. }
  2650. tabbar scrolledwindow:not(.pinned) > tabbox tab:checked:disabled,
  2651. notebook > header > tabs > tab:checked:disabled,
  2652. tabbar scrolledwindow:not(.pinned) > tabbox tab:selected:disabled,
  2653. notebook > header > tabs > tab:selected:disabled {
  2654. color: rgba(192, 202, 245, 0.5);
  2655. }
  2656. frame > paned > notebook > header,
  2657. notebook.frame > header {
  2658. background-color: rgba(192, 202, 245, 0.04);
  2659. }
  2660. notebook,
  2661. notebook.frame {
  2662. background-color: #1a1b26;
  2663. border-radius: 12px;
  2664. }
  2665. notebook.frame frame > border {
  2666. border: none;
  2667. border-radius: 6px;
  2668. }
  2669. notebook.frame frame > list row.activatable {
  2670. border-radius: 6px;
  2671. }
  2672. notebook > header {
  2673. border: none;
  2674. background-color: rgba(192, 202, 245, 0.04);
  2675. padding: 3px;
  2676. margin: 3px;
  2677. border-radius: 9px;
  2678. }
  2679. notebook > header.top > tabs > arrow {
  2680. border-top-style: none;
  2681. }
  2682. notebook > header.bottom > tabs > arrow {
  2683. border-bottom-style: none;
  2684. }
  2685. notebook > header.top > tabs > arrow,
  2686. notebook > header.bottom > tabs > arrow {
  2687. padding-left: 4px;
  2688. padding-right: 4px;
  2689. }
  2690. notebook > header.top > tabs > arrow.down,
  2691. notebook > header.bottom > tabs > arrow.down {
  2692. margin-left: 0;
  2693. -gtk-icon-source: -gtk-icontheme('pan-start-symbolic');
  2694. }
  2695. notebook > header.top > tabs > arrow.up,
  2696. notebook > header.bottom > tabs > arrow.up {
  2697. margin-right: 0;
  2698. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
  2699. }
  2700. notebook > header.left > tabs > arrow {
  2701. border-left-style: none;
  2702. }
  2703. notebook > header.right > tabs > arrow {
  2704. border-right-style: none;
  2705. }
  2706. notebook > header.left > tabs > arrow,
  2707. notebook > header.right > tabs > arrow {
  2708. padding-top: 4px;
  2709. padding-bottom: 4px;
  2710. }
  2711. notebook > header.left > tabs > arrow.down,
  2712. notebook > header.right > tabs > arrow.down {
  2713. margin-top: 0;
  2714. -gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
  2715. }
  2716. notebook > header.left > tabs > arrow.up,
  2717. notebook > header.right > tabs > arrow.up {
  2718. margin-bottom: 0;
  2719. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  2720. }
  2721. notebook > header > tabs > arrow {
  2722. min-height: 16px;
  2723. min-width: 16px;
  2724. border-radius: 6px;
  2725. }
  2726. notebook > header > tabs {
  2727. padding: 0;
  2728. margin: 0;
  2729. }
  2730. notebook > header > tabs > tab > box {
  2731. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
  2732. margin: -6px -12px;
  2733. padding: 6px 12px;
  2734. }
  2735. notebook > header > tabs > tab > box:drop(active) {
  2736. background-color: rgba(192, 202, 245, 0.12);
  2737. color: #c0caf5;
  2738. }
  2739. notebook > header > tabs > tab > label {
  2740. padding: 0 6px;
  2741. }
  2742. notebook > header > tabs > tab button.flat:last-child {
  2743. margin-left: 6px;
  2744. margin-right: -6px;
  2745. }
  2746. notebook > header > tabs > tab button.flat:first-child {
  2747. margin-left: -6px;
  2748. margin-right: 6px;
  2749. }
  2750. notebook > header > tabs > tab button.close-button {
  2751. min-width: 24px;
  2752. min-height: 24px;
  2753. }
  2754. notebook > header.top tabs:not(:only-child):first-child,
  2755. notebook > header.bottom tabs:not(:only-child):first-child {
  2756. margin-left: 0;
  2757. }
  2758. notebook > header.top tabs:not(:only-child):last-child,
  2759. notebook > header.bottom tabs:not(:only-child):last-child {
  2760. margin-right: 0;
  2761. }
  2762. notebook > header.top tabs tab.reorderable-page,
  2763. notebook > header.bottom tabs tab.reorderable-page {
  2764. border-style: solid;
  2765. }
  2766. notebook > header.left tabs:not(:only-child):first-child,
  2767. notebook > header.right tabs:not(:only-child):first-child {
  2768. margin-top: 0;
  2769. }
  2770. notebook > header.left tabs:not(:only-child):last-child,
  2771. notebook > header.right tabs:not(:only-child):last-child {
  2772. margin-bottom: 0;
  2773. }
  2774. notebook > header.left tabs tab.reorderable-page,
  2775. notebook > header.right tabs tab.reorderable-page {
  2776. border-style: solid;
  2777. }
  2778. notebook > header > menubutton > button.image-button {
  2779. padding: 3px;
  2780. min-width: 24px;
  2781. min-height: 24px;
  2782. margin-left: 3px;
  2783. }
  2784. notebook > stack:not(:only-child) {
  2785. background-color: transparent;
  2786. border-radius: 6px;
  2787. }
  2788. tabbar .box {
  2789. min-height: 36px;
  2790. }
  2791. tabbar:not(.inline) .box {
  2792. border: none;
  2793. background-color: transparent;
  2794. padding: 0;
  2795. margin: 0px;
  2796. border-radius: 9px;
  2797. box-shadow: none;
  2798. }
  2799. tabbar:not(.inline):backdrop .box {
  2800. background-color: rgba(192, 202, 245, 0.04);
  2801. }
  2802. tabbar:not(.inline):backdrop .box > scrolledwindow,
  2803. tabbar:not(.inline):backdrop .box > .start-action,
  2804. tabbar:not(.inline):backdrop .box > .end-action {
  2805. filter: opacity(0.5);
  2806. }
  2807. tabbar scrolledwindow:not(.pinned) > tabbox > tabboxchild {
  2808. padding: 3px 0;
  2809. margin: 0 -3px;
  2810. }
  2811. tabbar scrolledwindow:not(.pinned) > tabbox > tabboxchild > tab {
  2812. margin: 3px;
  2813. }
  2814. tabbar scrolledwindow.pinned > tabbox > tabboxchild {
  2815. padding: 3px 0;
  2816. margin: 0;
  2817. }
  2818. tabbar scrolledwindow.pinned > tabbox > tabboxchild > tab {
  2819. margin: 3px;
  2820. padding: 3px;
  2821. }
  2822. tabbar .start-action,
  2823. tabbar .end-action {
  2824. padding: 6px;
  2825. }
  2826. tabbar .start-action:dir(ltr),
  2827. tabbar .end-action:dir(rtl) {
  2828. padding-right: 0;
  2829. }
  2830. tabbar .start-action:dir(rtl),
  2831. tabbar .end-action:dir(ltr) {
  2832. padding-left: 0;
  2833. }
  2834. dnd tab {
  2835. min-height: 24px;
  2836. background-color: #1a1b26;
  2837. color: #c0caf5;
  2838. margin: 24px;
  2839. outline: none;
  2840. box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.09),
  2841. 0 2px 14px 3px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  2842. }
  2843. tabbar tab,
  2844. dnd tab {
  2845. padding: 6px;
  2846. }
  2847. tabbar tab button.image-button,
  2848. dnd tab button.image-button {
  2849. padding: 0;
  2850. margin: 0;
  2851. min-width: 24px;
  2852. min-height: 24px;
  2853. border-radius: 9999px;
  2854. }
  2855. tabbar tab indicator,
  2856. dnd tab indicator {
  2857. min-height: 2px;
  2858. border-radius: 2px;
  2859. background: alpha(#a9b1d6, 0.5);
  2860. transform: translateY(4px);
  2861. }
  2862. tabthumbnail {
  2863. border-radius: 10px;
  2864. transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1),
  2865. background-color cubic-bezier(0, 0, 0.2, 1);
  2866. }
  2867. tabthumbnail > box {
  2868. margin: 6px;
  2869. }
  2870. tabthumbnail:drop(active) {
  2871. box-shadow: inset 0 0 0 2px alpha(#ff9e64, 0.4);
  2872. background-color: alpha(#ff9e64, 0.1);
  2873. }
  2874. tabthumbnail .needs-attention:dir(ltr) {
  2875. transform: translate(8px, -8px);
  2876. }
  2877. tabthumbnail .needs-attention:dir(rtl) {
  2878. transform: translate(-8px, -8px);
  2879. }
  2880. tabthumbnail .needs-attention > widget {
  2881. background: #a9b1d6;
  2882. min-width: 12px;
  2883. min-height: 12px;
  2884. border-radius: 6px;
  2885. margin: 3px;
  2886. box-shadow: 0 1px 2px alpha(#a9b1d6, 0.4);
  2887. }
  2888. tabthumbnail .card {
  2889. background: none;
  2890. color: inherit;
  2891. }
  2892. tabthumbnail .card picture {
  2893. outline: none;
  2894. border-radius: 6px;
  2895. }
  2896. tabthumbnail.pinned .card {
  2897. background-color: #1a1b26;
  2898. color: #c0caf5;
  2899. }
  2900. tabthumbnail .pinned-box {
  2901. margin-left: 10px;
  2902. margin-right: 10px;
  2903. }
  2904. tabthumbnail .icon-title-box {
  2905. border-spacing: 6px;
  2906. }
  2907. tabthumbnail .tab-unpin-icon {
  2908. margin: 6px;
  2909. min-width: 24px;
  2910. min-height: 24px;
  2911. }
  2912. taboverview > .overview.scrolled-to-top headerbar,
  2913. taboverview > .overview.scrolled-to-top searchbar > revealer > box {
  2914. background: none;
  2915. color: inherit;
  2916. box-shadow: none;
  2917. }
  2918. taboverview > .overview .new-tab-button {
  2919. margin: 18px;
  2920. }
  2921. tabview:drop(active),
  2922. tabbox:drop(active),
  2923. tabgrid:drop(active) {
  2924. box-shadow: none;
  2925. }
  2926. /**************
  2927. * Scrollbars *
  2928. **************/
  2929. scrollbar {
  2930. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  2931. background-color: #1a1b26;
  2932. }
  2933. scrollbar > range > trough {
  2934. outline: none;
  2935. background: none;
  2936. border: none;
  2937. }
  2938. scrollbar > range > trough > slider {
  2939. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
  2940. min-width: 8px;
  2941. min-height: 8px;
  2942. border: 4px solid transparent;
  2943. border-radius: 9999px;
  2944. background-clip: padding-box;
  2945. background-color: rgba(192, 202, 245, 0.5);
  2946. box-shadow: none;
  2947. outline: none;
  2948. }
  2949. scrollbar > range > trough > slider:hover {
  2950. background-color: rgba(192, 202, 245, 0.7);
  2951. }
  2952. scrollbar > range > trough > slider:active {
  2953. background-color: #c0caf5;
  2954. }
  2955. scrollbar > range > trough > slider:disabled {
  2956. background-color: rgba(192, 202, 245, 0.3);
  2957. }
  2958. scrollbar > range.fine-tune > trough > slider {
  2959. min-width: 4px;
  2960. min-height: 4px;
  2961. }
  2962. scrollbar > range.fine-tune.horizontal > trough > slider {
  2963. margin: 2px 0;
  2964. }
  2965. scrollbar > range.fine-tune.vertical > trough > slider {
  2966. margin: 0 2px;
  2967. }
  2968. scrollbar.overlay-indicator:not(.fine-tune) > range > trough > slider {
  2969. transition-property: background-color, min-height, min-width;
  2970. }
  2971. scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
  2972. border-color: transparent;
  2973. background-color: transparent;
  2974. }
  2975. scrollbar.overlay-indicator:not(.dragging):not(.hovering)
  2976. > range
  2977. > trough
  2978. > slider {
  2979. min-width: 4px;
  2980. min-height: 4px;
  2981. margin: 3px;
  2982. border: 1px solid rgba(26, 27, 38, 0.3);
  2983. }
  2984. scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
  2985. min-width: 4px;
  2986. min-height: 4px;
  2987. margin: 3px;
  2988. border: 1px solid rgba(26, 27, 38, 0.3);
  2989. border-radius: 9999px;
  2990. background-color: rgba(192, 202, 245, 0.5);
  2991. background-clip: padding-box;
  2992. -gtk-icon-source: none;
  2993. }
  2994. scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
  2995. background-color: rgba(192, 202, 245, 0.3);
  2996. }
  2997. scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering)
  2998. > range
  2999. > trough
  3000. > slider {
  3001. min-width: 24px;
  3002. }
  3003. scrollbar.overlay-indicator.horizontal:not(.dragging):not(.hovering) button {
  3004. min-width: 8px;
  3005. }
  3006. scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering)
  3007. > range
  3008. > trough
  3009. > slider {
  3010. min-height: 24px;
  3011. }
  3012. scrollbar.overlay-indicator.vertical:not(.dragging):not(.hovering) button {
  3013. min-height: 8px;
  3014. }
  3015. scrollbar.overlay-indicator.dragging,
  3016. scrollbar.overlay-indicator.hovering {
  3017. background-color: transparent;
  3018. }
  3019. scrollbar.horizontal > range > trough > slider {
  3020. min-width: 24px;
  3021. }
  3022. scrollbar.vertical > range > trough > slider {
  3023. min-height: 24px;
  3024. }
  3025. scrollbar button {
  3026. min-width: 16px;
  3027. min-height: 16px;
  3028. padding: 0;
  3029. border-radius: 0;
  3030. }
  3031. scrollbar.vertical button.down {
  3032. -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
  3033. }
  3034. scrollbar.vertical button.up {
  3035. -gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
  3036. }
  3037. scrollbar.horizontal button.down {
  3038. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
  3039. }
  3040. scrollbar.horizontal button.up {
  3041. -gtk-icon-source: -gtk-icontheme('pan-start-symbolic');
  3042. }
  3043. /**********
  3044. * Switch *
  3045. **********/
  3046. switch {
  3047. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  3048. margin: 6px 0;
  3049. padding: 0;
  3050. border: 2px solid rgba(192, 202, 245, 0.7);
  3051. border-radius: 9999px;
  3052. background-color: transparent;
  3053. background-clip: border-box;
  3054. font-size: 0;
  3055. color: transparent;
  3056. }
  3057. switch:checked {
  3058. background-color: #a9b1d6;
  3059. border-color: #a9b1d6;
  3060. }
  3061. switch:disabled {
  3062. opacity: 0.5;
  3063. }
  3064. switch image {
  3065. margin: -8px;
  3066. }
  3067. switch > slider {
  3068. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  3069. min-width: 16px;
  3070. min-height: 16px;
  3071. margin: 2px;
  3072. border-radius: 9999px;
  3073. outline: none;
  3074. box-shadow: none;
  3075. background-color: rgba(192, 202, 245, 0.7);
  3076. border: none;
  3077. }
  3078. switch:focus > slider {
  3079. box-shadow: 0 0 0 10px rgba(192, 202, 245, 0.04);
  3080. }
  3081. switch:hover > slider {
  3082. box-shadow: 0 0 0 10px rgba(192, 202, 245, 0.12);
  3083. }
  3084. switch:focus:hover > slider {
  3085. box-shadow: 0 0 0 10px rgba(192, 202, 245, 0.12);
  3086. }
  3087. switch:checked > slider {
  3088. background-color: #1a1b26;
  3089. color: #1a1b26;
  3090. }
  3091. /*************************
  3092. * Check and Radio items *
  3093. *************************/
  3094. checkbutton,
  3095. radiobutton {
  3096. outline: none;
  3097. border-spacing: 4px;
  3098. }
  3099. checkbutton.text-button,
  3100. radiobutton.text-button {
  3101. padding: 2px;
  3102. }
  3103. checkbutton.text-button label:not(:only-child),
  3104. radiobutton.text-button label:not(:only-child) {
  3105. margin: 0 4px;
  3106. }
  3107. check,
  3108. radio {
  3109. min-height: 16px;
  3110. min-width: 16px;
  3111. -gtk-icon-size: 16px;
  3112. padding: 0;
  3113. margin: 3px;
  3114. border: 2px solid rgba(192, 202, 245, 0.7);
  3115. background-clip: border-box;
  3116. background-color: transparent;
  3117. border-radius: 9999px;
  3118. box-shadow: 0 0 0 10px transparent;
  3119. transition: all 75ms cubic-bezier(0, 0, 0.2, 1),
  3120. background-color 225ms cubic-bezier(0, 0, 0.2, 1),
  3121. box-shadow 225ms cubic-bezier(0, 0, 0.2, 1);
  3122. }
  3123. check:hover,
  3124. radio:hover {
  3125. border-color: inherit;
  3126. box-shadow: 0 0 0 10px rgba(192, 202, 245, 0.04);
  3127. }
  3128. check:active,
  3129. radio:active {
  3130. border-color: #c0caf5;
  3131. box-shadow: 0 0 0 10px rgba(192, 202, 245, 0.12);
  3132. }
  3133. check:checked,
  3134. check:indeterminate,
  3135. radio:checked,
  3136. radio:indeterminate {
  3137. border-color: transparent;
  3138. background-color: #a9b1d6;
  3139. color: rgba(0, 0, 0, 0.87);
  3140. }
  3141. check:checked:hover,
  3142. check:indeterminate:hover,
  3143. radio:checked:hover,
  3144. radio:indeterminate:hover {
  3145. background-color: #c0caf5;
  3146. color: rgba(0, 0, 0, 0.87);
  3147. }
  3148. check:checked:active,
  3149. check:indeterminate:active,
  3150. radio:checked:active,
  3151. radio:indeterminate:active {
  3152. background-color: #a9b1d6;
  3153. color: rgba(0, 0, 0, 0.87);
  3154. }
  3155. check:checked:disabled,
  3156. check:indeterminate:disabled,
  3157. radio:checked:disabled,
  3158. radio:indeterminate:disabled {
  3159. border-color: transparent;
  3160. background-color: rgba(192, 202, 245, 0.3);
  3161. color: #1a1b26;
  3162. }
  3163. check:disabled,
  3164. radio:disabled {
  3165. border-color: rgba(192, 202, 245, 0.3);
  3166. }
  3167. check:not(:hover):focus,
  3168. radio:not(:hover):focus {
  3169. box-shadow: none;
  3170. }
  3171. popover.menu check,
  3172. popover.menu radio {
  3173. transition: none;
  3174. margin: 0;
  3175. padding: 0;
  3176. }
  3177. popover.menu check,
  3178. popover.menu check:focus,
  3179. popover.menu check:hover,
  3180. popover.menu check:focus:hover,
  3181. popover.menu check:active,
  3182. popover.menu check:disabled,
  3183. popover.menu radio,
  3184. popover.menu radio:focus,
  3185. popover.menu radio:hover,
  3186. popover.menu radio:focus:hover,
  3187. popover.menu radio:active,
  3188. popover.menu radio:disabled {
  3189. transition: none;
  3190. box-shadow: none;
  3191. background-image: none;
  3192. }
  3193. popover.menu check:not(:checked):not(:indeterminate):not(:disabled):hover,
  3194. popover.menu radio:not(:checked):not(:indeterminate):not(:disabled):hover {
  3195. border-color: rgba(0, 0, 0, 0.87);
  3196. background-color: transparent;
  3197. }
  3198. popover.menu check:active,
  3199. popover.menu check:checked,
  3200. popover.menu check:indeterminate,
  3201. popover.menu radio:active,
  3202. popover.menu radio:checked,
  3203. popover.menu radio:indeterminate {
  3204. border-color: transparent;
  3205. background-color: #a9b1d6;
  3206. color: rgba(0, 0, 0, 0.87);
  3207. }
  3208. popover.menu check:active:hover,
  3209. popover.menu check:checked:hover,
  3210. popover.menu check:indeterminate:hover,
  3211. popover.menu radio:active:hover,
  3212. popover.menu radio:checked:hover,
  3213. popover.menu radio:indeterminate:hover {
  3214. border-color: transparent;
  3215. background-color: rgba(0, 0, 0, 0.87);
  3216. color: #a9b1d6;
  3217. }
  3218. popover.menu check:active:disabled,
  3219. popover.menu check:checked:disabled,
  3220. popover.menu check:indeterminate:disabled,
  3221. popover.menu radio:active:disabled,
  3222. popover.menu radio:checked:disabled,
  3223. popover.menu radio:indeterminate:disabled {
  3224. border-color: transparent;
  3225. background-color: rgba(192, 202, 245, 0.3);
  3226. color: #1a1b26;
  3227. }
  3228. popover.menu check,
  3229. popover.menu check:hover,
  3230. popover.menu check:active,
  3231. popover.menu check:disabled,
  3232. popover.menu radio,
  3233. popover.menu radio:hover,
  3234. popover.menu radio:active,
  3235. popover.menu radio:disabled {
  3236. box-shadow: none;
  3237. color: inherit;
  3238. }
  3239. popover.menu check:dir(ltr),
  3240. popover.menu radio:dir(ltr) {
  3241. margin-right: 6px;
  3242. }
  3243. popover.menu check:dir(rtl),
  3244. popover.menu radio:dir(rtl) {
  3245. margin-left: 6px;
  3246. }
  3247. check:checked {
  3248. -gtk-icon-source: -gtk-scaled(
  3249. -gtk-recolor(url('assets/scalable/check-symbolic.svg')),
  3250. -gtk-recolor(url('assets/scalable/check-symbolic@2.svg'))
  3251. );
  3252. }
  3253. radio:checked {
  3254. -gtk-icon-source: -gtk-scaled(
  3255. -gtk-recolor(url('assets/scalable/dot-symbolic.svg')),
  3256. -gtk-recolor(url('assets/scalable/dot-symbolic@2.svg'))
  3257. );
  3258. }
  3259. check:indeterminate,
  3260. radio:indeterminate {
  3261. -gtk-icon-source: -gtk-scaled(
  3262. -gtk-recolor(url('assets/scalable/line-symbolic.svg')),
  3263. -gtk-recolor(url('assets/scalable/line-symbolic@2.svg'))
  3264. );
  3265. }
  3266. check:not(:checked):active {
  3267. -gtk-icon-transform: rotate(90deg);
  3268. }
  3269. check:not(:checked):indeterminate:active {
  3270. -gtk-icon-transform: scaleX(-1);
  3271. }
  3272. checkbutton.theme-selector radio,
  3273. checkbutton.theme-selector radio:hover,
  3274. checkbutton.theme-selector radio:disabled {
  3275. border-color: transparent;
  3276. background-color: transparent;
  3277. }
  3278. checkbutton.theme-selector
  3279. radio:not(:checked):not(:indeterminate):not(:disabled):hover {
  3280. border-color: transparent;
  3281. background-color: transparent;
  3282. }
  3283. checkbutton.theme-selector radio:checked,
  3284. checkbutton.theme-selector radio:active,
  3285. checkbutton.theme-selector radio:active:hover {
  3286. border-color: transparent;
  3287. background-color: #a9b1d6;
  3288. color: rgba(0, 0, 0, 0.87);
  3289. -gtk-icon-source: -gtk-scaled(
  3290. -gtk-recolor(url('assets/scalable/check-symbolic.svg')),
  3291. -gtk-recolor(url('assets/scalable/check-symbolic@2.svg'))
  3292. );
  3293. }
  3294. checkbutton.theme-selector radio:checked:hover {
  3295. background-color: #c0caf5;
  3296. color: rgba(0, 0, 0, 0.87);
  3297. }
  3298. themeswitcher {
  3299. padding: 6px;
  3300. }
  3301. themeswitcher .check {
  3302. min-height: 16px;
  3303. min-width: 16px;
  3304. background-color: #a9b1d6;
  3305. color: rgba(0, 0, 0, 0.87);
  3306. padding: 2px;
  3307. border-radius: 9999px;
  3308. margin: 3px;
  3309. -gtk-icon-size: 20px;
  3310. -gtk-icon-source: -gtk-scaled(
  3311. -gtk-recolor(url('assets/scalable/check-symbolic.svg')),
  3312. -gtk-recolor(url('assets/scalable/check-symbolic@2.svg'))
  3313. );
  3314. }
  3315. themeswitcher .check:hover {
  3316. background-color: #c0caf5;
  3317. color: rgba(0, 0, 0, 0.87);
  3318. }
  3319. themeswitcher checkbutton radio {
  3320. padding: 0;
  3321. margin: 2px;
  3322. min-height: 48px;
  3323. min-width: 48px;
  3324. }
  3325. themeswitcher checkbutton radio,
  3326. themeswitcher checkbutton radio:hover {
  3327. outline-color: rgba(192, 202, 245, 0.12);
  3328. outline-width: 1px;
  3329. outline-offset: -1px;
  3330. outline-style: solid;
  3331. box-shadow: none;
  3332. }
  3333. themeswitcher checkbutton radio,
  3334. themeswitcher checkbutton radio:hover,
  3335. themeswitcher checkbutton radio:checked,
  3336. themeswitcher checkbutton radio:checked:hover {
  3337. -gtk-icon-source: none;
  3338. transition: none;
  3339. border: none;
  3340. }
  3341. themeswitcher checkbutton radio:checked,
  3342. themeswitcher checkbutton radio:checked:hover {
  3343. box-shadow: inset 0 0 0 2px #a9b1d6;
  3344. outline: none;
  3345. }
  3346. themeswitcher checkbutton.system radio,
  3347. themeswitcher checkbutton.system radio:hover,
  3348. themeswitcher checkbutton.system radio:checked,
  3349. themeswitcher checkbutton.system radio:checked:hover {
  3350. background-image: linear-gradient(-45deg, #292e42 49.99%, #c0caf5 50.01%);
  3351. background-color: transparent;
  3352. }
  3353. themeswitcher checkbutton.light radio,
  3354. themeswitcher checkbutton.light radio:hover,
  3355. themeswitcher checkbutton.light radio:checked,
  3356. themeswitcher checkbutton.light radio:checked:hover {
  3357. color: rgba(0, 0, 0, 0.8);
  3358. background-color: #c0caf5;
  3359. }
  3360. themeswitcher checkbutton.dark radio,
  3361. themeswitcher checkbutton.dark radio:hover,
  3362. themeswitcher checkbutton.dark radio:checked,
  3363. themeswitcher checkbutton.dark radio:checked:hover {
  3364. color: #c0caf5;
  3365. background-image: image(#292e42);
  3366. background-color: transparent;
  3367. }
  3368. /************
  3369. * GtkScale *
  3370. ************/
  3371. scale {
  3372. min-height: 2px;
  3373. min-width: 2px;
  3374. }
  3375. scale.horizontal {
  3376. padding: 17px 12px;
  3377. }
  3378. scale.vertical {
  3379. padding: 12px 17px;
  3380. }
  3381. scale slider {
  3382. min-height: 18px;
  3383. min-width: 18px;
  3384. margin: -8px;
  3385. }
  3386. scale.fine-tune.horizontal {
  3387. min-height: 4px;
  3388. padding-top: 16px;
  3389. padding-bottom: 16px;
  3390. }
  3391. scale.fine-tune.vertical {
  3392. min-width: 4px;
  3393. padding-left: 16px;
  3394. padding-right: 16px;
  3395. }
  3396. scale.fine-tune slider {
  3397. margin: -7px;
  3398. }
  3399. scale trough {
  3400. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
  3401. outline: none;
  3402. background-color: rgba(192, 202, 245, 0.3);
  3403. }
  3404. scale trough:disabled {
  3405. background-color: rgba(192, 202, 245, 0.12);
  3406. }
  3407. scale highlight {
  3408. transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1);
  3409. background-image: image(#a9b1d6);
  3410. }
  3411. scale highlight:disabled {
  3412. background-color: #1a1b26;
  3413. background-image: image(rgba(192, 202, 245, 0.3));
  3414. }
  3415. scale fill {
  3416. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
  3417. background-color: rgba(192, 202, 245, 0.3);
  3418. }
  3419. scale fill:disabled {
  3420. background-color: transparent;
  3421. }
  3422. scale slider {
  3423. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  3424. border-radius: 9999px;
  3425. color: #a9b1d6;
  3426. background-color: #1a1b26;
  3427. box-shadow: inset 0 0 0 2px #a9b1d6;
  3428. }
  3429. scale slider:hover {
  3430. box-shadow: inset 0 0 0 2px #a9b1d6, 0 0 0 8px rgba(192, 202, 245, 0.12);
  3431. }
  3432. scale slider:active {
  3433. box-shadow: inset 0 0 0 4px #a9b1d6, 0 0 0 8px rgba(192, 202, 245, 0.12);
  3434. }
  3435. scale slider:disabled {
  3436. box-shadow: inset 0 0 0 2px rgba(192, 202, 245, 0.3);
  3437. }
  3438. scale marks,
  3439. scale value {
  3440. color: rgba(192, 202, 245, 0.7);
  3441. }
  3442. scale indicator {
  3443. background-color: rgba(192, 202, 245, 0.3);
  3444. color: transparent;
  3445. }
  3446. scale.horizontal > marks.top {
  3447. margin-bottom: 7px;
  3448. margin-top: -15px;
  3449. }
  3450. scale.horizontal.fine-tune > marks.top {
  3451. margin-bottom: 6px;
  3452. margin-top: -14px;
  3453. }
  3454. scale.horizontal > marks.bottom {
  3455. margin-top: 7px;
  3456. margin-bottom: -15px;
  3457. }
  3458. scale.horizontal.fine-tune > marks.bottom {
  3459. margin-top: 6px;
  3460. margin-bottom: -14px;
  3461. }
  3462. scale.vertical > marks.top {
  3463. margin-right: 7px;
  3464. margin-left: -15px;
  3465. }
  3466. scale.vertical.fine-tune > marks.top {
  3467. margin-right: 6px;
  3468. margin-left: -14px;
  3469. }
  3470. scale.vertical > marks.bottom {
  3471. margin-left: 7px;
  3472. margin-right: -15px;
  3473. }
  3474. scale.vertical.fine-tune > marks.bottom {
  3475. margin-left: 6px;
  3476. margin-right: -14px;
  3477. }
  3478. scale.horizontal indicator {
  3479. min-height: 8px;
  3480. min-width: 1px;
  3481. }
  3482. scale.vertical indicator {
  3483. min-height: 1px;
  3484. min-width: 8px;
  3485. }
  3486. scale.horizontal.marks-before:not(.marks-after) slider {
  3487. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1),
  3488. background-size 300ms cubic-bezier(0, 0, 0.2, 1),
  3489. background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
  3490. min-height: 32px;
  3491. min-width: 32px;
  3492. margin: -15px;
  3493. border-radius: 50%;
  3494. background-size: auto, 1000% 1000%;
  3495. background-repeat: no-repeat;
  3496. background-position: center center;
  3497. background-color: transparent;
  3498. }
  3499. scale.horizontal.marks-before:not(.marks-after) slider,
  3500. scale.horizontal.marks-before:not(.marks-after) slider:hover,
  3501. scale.horizontal.marks-before:not(.marks-after) slider:active,
  3502. scale.horizontal.marks-before:not(.marks-after) slider:disabled {
  3503. box-shadow: none;
  3504. }
  3505. scale.horizontal.marks-before:not(.marks-after) slider:focus {
  3506. background-color: alpha(currentColor, 0.08);
  3507. }
  3508. scale.horizontal.marks-before:not(.marks-after) slider:hover {
  3509. background-color: alpha(currentColor, 0.08);
  3510. }
  3511. scale.horizontal.marks-before:not(.marks-after) slider:focus:hover {
  3512. background-color: alpha(currentColor, 0.16);
  3513. }
  3514. scale.horizontal.marks-before:not(.marks-after) slider:active {
  3515. background-size: auto, 0% 0%;
  3516. background-color: alpha(currentColor, 0.08);
  3517. }
  3518. scale.horizontal.marks-before:not(.marks-after) slider {
  3519. background-image: -gtk-scaled(
  3520. url('assets/scale-horz-marks-before-slider-dark.png'),
  3521. url('assets/scale-horz-marks-before-slider-dark@2.png')
  3522. );
  3523. }
  3524. scale.horizontal.marks-before:not(.marks-after) slider:disabled {
  3525. background-image: -gtk-scaled(
  3526. url('assets/scale-horz-marks-before-slider-disabled-dark.png'),
  3527. url('assets/scale-horz-marks-before-slider-disabled-dark@2.png')
  3528. );
  3529. }
  3530. scale.horizontal.marks-before:not(.marks-after) slider:active {
  3531. background-image: -gtk-scaled(
  3532. url('assets/scale-horz-marks-before-slider-dark.png'),
  3533. url('assets/scale-horz-marks-before-slider-dark@2.png')
  3534. );
  3535. }
  3536. scale.horizontal.marks-after:not(.marks-before) slider {
  3537. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1),
  3538. background-size 300ms cubic-bezier(0, 0, 0.2, 1),
  3539. background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
  3540. min-height: 32px;
  3541. min-width: 32px;
  3542. margin: -15px;
  3543. border-radius: 50%;
  3544. background-size: auto, 1000% 1000%;
  3545. background-repeat: no-repeat;
  3546. background-position: center center;
  3547. background-color: transparent;
  3548. }
  3549. scale.horizontal.marks-after:not(.marks-before) slider,
  3550. scale.horizontal.marks-after:not(.marks-before) slider:hover,
  3551. scale.horizontal.marks-after:not(.marks-before) slider:active,
  3552. scale.horizontal.marks-after:not(.marks-before) slider:disabled {
  3553. box-shadow: none;
  3554. }
  3555. scale.horizontal.marks-after:not(.marks-before) slider:focus {
  3556. background-color: alpha(currentColor, 0.08);
  3557. }
  3558. scale.horizontal.marks-after:not(.marks-before) slider:hover {
  3559. background-color: alpha(currentColor, 0.08);
  3560. }
  3561. scale.horizontal.marks-after:not(.marks-before) slider:focus:hover {
  3562. background-color: alpha(currentColor, 0.16);
  3563. }
  3564. scale.horizontal.marks-after:not(.marks-before) slider:active {
  3565. background-size: auto, 0% 0%;
  3566. background-color: alpha(currentColor, 0.08);
  3567. }
  3568. scale.horizontal.marks-after:not(.marks-before) slider {
  3569. background-image: -gtk-scaled(
  3570. url('assets/scale-horz-marks-after-slider-dark.png'),
  3571. url('assets/scale-horz-marks-after-slider-dark@2.png')
  3572. );
  3573. }
  3574. scale.horizontal.marks-after:not(.marks-before) slider:disabled {
  3575. background-image: -gtk-scaled(
  3576. url('assets/scale-horz-marks-after-slider-disabled-dark.png'),
  3577. url('assets/scale-horz-marks-after-slider-disabled-dark@2.png')
  3578. );
  3579. }
  3580. scale.horizontal.marks-after:not(.marks-before) slider:active {
  3581. background-image: -gtk-scaled(
  3582. url('assets/scale-horz-marks-after-slider-dark.png'),
  3583. url('assets/scale-horz-marks-after-slider-dark@2.png')
  3584. );
  3585. }
  3586. scale.vertical.marks-before:not(.marks-after) slider {
  3587. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1),
  3588. background-size 300ms cubic-bezier(0, 0, 0.2, 1),
  3589. background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
  3590. min-height: 32px;
  3591. min-width: 32px;
  3592. margin: -15px;
  3593. border-radius: 50%;
  3594. background-size: auto, 1000% 1000%;
  3595. background-repeat: no-repeat;
  3596. background-position: center center;
  3597. background-color: transparent;
  3598. }
  3599. scale.vertical.marks-before:not(.marks-after) slider,
  3600. scale.vertical.marks-before:not(.marks-after) slider:hover,
  3601. scale.vertical.marks-before:not(.marks-after) slider:active,
  3602. scale.vertical.marks-before:not(.marks-after) slider:disabled {
  3603. box-shadow: none;
  3604. }
  3605. scale.vertical.marks-before:not(.marks-after) slider:focus {
  3606. background-color: alpha(currentColor, 0.08);
  3607. }
  3608. scale.vertical.marks-before:not(.marks-after) slider:hover {
  3609. background-color: alpha(currentColor, 0.08);
  3610. }
  3611. scale.vertical.marks-before:not(.marks-after) slider:focus:hover {
  3612. background-color: alpha(currentColor, 0.16);
  3613. }
  3614. scale.vertical.marks-before:not(.marks-after) slider:active {
  3615. background-size: auto, 0% 0%;
  3616. background-color: alpha(currentColor, 0.08);
  3617. }
  3618. scale.vertical.marks-before:not(.marks-after) slider {
  3619. background-image: -gtk-scaled(
  3620. url('assets/scale-vert-marks-before-slider-dark.png'),
  3621. url('assets/scale-vert-marks-before-slider-dark@2.png')
  3622. );
  3623. }
  3624. scale.vertical.marks-before:not(.marks-after) slider:disabled {
  3625. background-image: -gtk-scaled(
  3626. url('assets/scale-vert-marks-before-slider-disabled-dark.png'),
  3627. url('assets/scale-vert-marks-before-slider-disabled-dark@2.png')
  3628. );
  3629. }
  3630. scale.vertical.marks-before:not(.marks-after) slider:active {
  3631. background-image: -gtk-scaled(
  3632. url('assets/scale-vert-marks-before-slider-dark.png'),
  3633. url('assets/scale-vert-marks-before-slider-dark@2.png')
  3634. );
  3635. }
  3636. scale.vertical.marks-after:not(.marks-before) slider {
  3637. transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1),
  3638. background-size 300ms cubic-bezier(0, 0, 0.2, 1),
  3639. background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
  3640. min-height: 32px;
  3641. min-width: 32px;
  3642. margin: -15px;
  3643. border-radius: 50%;
  3644. background-size: auto, 1000% 1000%;
  3645. background-repeat: no-repeat;
  3646. background-position: center center;
  3647. background-color: transparent;
  3648. }
  3649. scale.vertical.marks-after:not(.marks-before) slider,
  3650. scale.vertical.marks-after:not(.marks-before) slider:hover,
  3651. scale.vertical.marks-after:not(.marks-before) slider:active,
  3652. scale.vertical.marks-after:not(.marks-before) slider:disabled {
  3653. box-shadow: none;
  3654. }
  3655. scale.vertical.marks-after:not(.marks-before) slider:focus {
  3656. background-color: alpha(currentColor, 0.08);
  3657. }
  3658. scale.vertical.marks-after:not(.marks-before) slider:hover {
  3659. background-color: alpha(currentColor, 0.08);
  3660. }
  3661. scale.vertical.marks-after:not(.marks-before) slider:focus:hover {
  3662. background-color: alpha(currentColor, 0.16);
  3663. }
  3664. scale.vertical.marks-after:not(.marks-before) slider:active {
  3665. background-size: auto, 0% 0%;
  3666. background-color: alpha(currentColor, 0.08);
  3667. }
  3668. scale.vertical.marks-after:not(.marks-before) slider {
  3669. background-image: -gtk-scaled(
  3670. url('assets/scale-vert-marks-after-slider-dark.png'),
  3671. url('assets/scale-vert-marks-after-slider-dark@2.png')
  3672. );
  3673. }
  3674. scale.vertical.marks-after:not(.marks-before) slider:disabled {
  3675. background-image: -gtk-scaled(
  3676. url('assets/scale-vert-marks-after-slider-disabled-dark.png'),
  3677. url('assets/scale-vert-marks-after-slider-disabled-dark@2.png')
  3678. );
  3679. }
  3680. scale.vertical.marks-after:not(.marks-before) slider:active {
  3681. background-image: -gtk-scaled(
  3682. url('assets/scale-vert-marks-after-slider-dark.png'),
  3683. url('assets/scale-vert-marks-after-slider-dark@2.png')
  3684. );
  3685. }
  3686. scale.color {
  3687. min-height: 0;
  3688. min-width: 0;
  3689. }
  3690. scale.color.horizontal {
  3691. padding: 0 0 12px 0;
  3692. }
  3693. scale.color.horizontal slider:dir(ltr),
  3694. scale.color.horizontal slider:dir(rtl) {
  3695. margin-bottom: -13.5px;
  3696. margin-top: 11.5px;
  3697. }
  3698. scale.color.vertical:dir(ltr) {
  3699. padding: 0 0 0 12px;
  3700. }
  3701. scale.color.vertical:dir(ltr) slider {
  3702. margin-left: -13.5px;
  3703. margin-right: 11.5px;
  3704. }
  3705. scale.color.vertical:dir(rtl) {
  3706. padding: 0 12px 0 0;
  3707. }
  3708. scale.color.vertical:dir(rtl) slider {
  3709. margin-right: -13.5px;
  3710. margin-left: 11.5px;
  3711. }
  3712. /*****************
  3713. * Progress bars *
  3714. *****************/
  3715. progressbar {
  3716. color: rgba(192, 202, 245, 0.7);
  3717. font-size: smaller;
  3718. }
  3719. progressbar.horizontal trough,
  3720. progressbar.horizontal progress {
  3721. min-height: 6px;
  3722. }
  3723. progressbar.vertical trough,
  3724. progressbar.vertical progress {
  3725. min-width: 6px;
  3726. }
  3727. progressbar trough {
  3728. border-radius: 6px;
  3729. background-color: rgba(192, 202, 245, 0.12);
  3730. }
  3731. progressbar progress {
  3732. border-radius: 6px;
  3733. background-color: #a9b1d6;
  3734. }
  3735. progressbar.osd {
  3736. min-width: 6px;
  3737. min-height: 6px;
  3738. background-color: transparent;
  3739. box-shadow: none;
  3740. margin: 0;
  3741. padding: 0;
  3742. }
  3743. progressbar.osd trough {
  3744. background-color: transparent;
  3745. }
  3746. progressbar.osd progress {
  3747. background-color: #a9b1d6;
  3748. }
  3749. progressbar trough.empty progress {
  3750. all: unset;
  3751. }
  3752. /*************
  3753. * Level Bar *
  3754. *************/
  3755. levelbar.horizontal block {
  3756. min-height: 6px;
  3757. }
  3758. levelbar.horizontal.discrete block {
  3759. min-width: 36px;
  3760. }
  3761. levelbar.horizontal.discrete block:not(:last-child) {
  3762. margin-right: 2px;
  3763. }
  3764. levelbar.vertical block {
  3765. min-width: 6px;
  3766. }
  3767. levelbar.vertical.discrete block {
  3768. min-height: 36px;
  3769. }
  3770. levelbar.vertical.discrete block:not(:last-child) {
  3771. margin-bottom: 2px;
  3772. }
  3773. levelbar trough {
  3774. border-radius: 6px;
  3775. }
  3776. levelbar block.low {
  3777. background-color: #e0af68;
  3778. }
  3779. levelbar block.high,
  3780. levelbar block:not(.empty) {
  3781. background-color: #a9b1d6;
  3782. }
  3783. levelbar block.full {
  3784. background-color: #9ece6a;
  3785. }
  3786. levelbar block.empty {
  3787. background-color: rgba(192, 202, 245, 0.12);
  3788. }
  3789. /****************
  3790. * Print dialog *
  3791. *****************/
  3792. window.dialog.print drawing {
  3793. color: #c0caf5;
  3794. background: none;
  3795. border: none;
  3796. padding: 0;
  3797. }
  3798. window.dialog.print drawing paper {
  3799. padding: 0;
  3800. border: 1px solid rgba(192, 202, 245, 0.12);
  3801. background-color: #1a1b26;
  3802. color: #c0caf5;
  3803. }
  3804. window.dialog.print .dialog-action-box {
  3805. margin: 12px;
  3806. }
  3807. /**********
  3808. * Frames *
  3809. **********/
  3810. frame,
  3811. .frame {
  3812. border: 1px solid rgba(192, 202, 245, 0.12);
  3813. }
  3814. frame > list,
  3815. .frame > list {
  3816. border: none;
  3817. }
  3818. frame.view,
  3819. .frame.view {
  3820. border-radius: 6px;
  3821. }
  3822. frame.flat,
  3823. .frame.flat {
  3824. border-style: none;
  3825. }
  3826. frame {
  3827. border-radius: 6px;
  3828. }
  3829. frame > label {
  3830. margin: 4px;
  3831. }
  3832. frame.flat > border,
  3833. statusbar frame > border {
  3834. border: none;
  3835. }
  3836. actionbar > revealer > box {
  3837. padding: 6px;
  3838. border-spacing: 6px;
  3839. border-top: 1px solid rgba(192, 202, 245, 0.12);
  3840. background-color: #1a1b26;
  3841. background-clip: border-box;
  3842. box-shadow: none;
  3843. }
  3844. statusbar {
  3845. padding: 6px 18px;
  3846. }
  3847. scrolledwindow viewport.frame {
  3848. border: none;
  3849. }
  3850. stack scrolledwindow.frame viewport.frame list {
  3851. border: none;
  3852. }
  3853. overshoot.top {
  3854. background-size: 200% 70%;
  3855. background-image: radial-gradient(
  3856. farthest-side at top,
  3857. rgba(169, 177, 214, 0.24) 99%,
  3858. rgba(169, 177, 214, 0) 100%
  3859. );
  3860. background-repeat: no-repeat;
  3861. background-position: center top;
  3862. background-color: transparent;
  3863. border: none;
  3864. box-shadow: none;
  3865. }
  3866. overshoot.bottom {
  3867. background-size: 200% 70%;
  3868. background-image: radial-gradient(
  3869. farthest-side at bottom,
  3870. rgba(169, 177, 214, 0.24) 99%,
  3871. rgba(169, 177, 214, 0) 100%
  3872. );
  3873. background-repeat: no-repeat;
  3874. background-position: center bottom;
  3875. background-color: transparent;
  3876. border: none;
  3877. box-shadow: none;
  3878. }
  3879. overshoot.left {
  3880. background-size: 200% 70%;
  3881. background-image: radial-gradient(
  3882. farthest-side at left,
  3883. rgba(169, 177, 214, 0.24) 99%,
  3884. rgba(169, 177, 214, 0) 100%
  3885. );
  3886. background-repeat: no-repeat;
  3887. background-position: left center;
  3888. background-color: transparent;
  3889. border: none;
  3890. box-shadow: none;
  3891. }
  3892. overshoot.right {
  3893. background-size: 200% 70%;
  3894. background-image: radial-gradient(
  3895. farthest-side at right,
  3896. rgba(169, 177, 214, 0.24) 99%,
  3897. rgba(169, 177, 214, 0) 100%
  3898. );
  3899. background-repeat: no-repeat;
  3900. background-position: right center;
  3901. background-color: transparent;
  3902. border: none;
  3903. box-shadow: none;
  3904. }
  3905. junction {
  3906. border-style: solid none none solid;
  3907. border-width: 1px;
  3908. border-color: rgba(192, 202, 245, 0.12);
  3909. background-color: #1a1b26;
  3910. }
  3911. junction:dir(rtl) {
  3912. border-style: solid solid none none;
  3913. }
  3914. separator:not(.spacer) {
  3915. min-width: 1px;
  3916. min-height: 1px;
  3917. background-color: rgba(192, 202, 245, 0.12);
  3918. }
  3919. stacksidebar + separator.vertical,
  3920. stacksidebar separator.horizontal,
  3921. button.font separator,
  3922. button.file separator {
  3923. min-width: 0;
  3924. min-height: 0;
  3925. background-color: transparent;
  3926. }
  3927. /*********
  3928. * Lists *
  3929. *********/
  3930. listview.boxed-list,
  3931. list.boxed-list,
  3932. listview.content:not(.conversation-listbox),
  3933. list.content:not(.conversation-listbox) {
  3934. border-radius: 7px;
  3935. box-shadow: none;
  3936. border: 1px solid rgba(192, 202, 245, 0.12);
  3937. }
  3938. listview.boxed-list > row.expander list > row,
  3939. list.boxed-list > row.expander list > row,
  3940. listview.boxed-list > row,
  3941. list.boxed-list > row,
  3942. listview.content:not(.conversation-listbox) > row,
  3943. list.content:not(.conversation-listbox) > row {
  3944. border-radius: 0;
  3945. }
  3946. listview.boxed-list > row.expander list > row:first-child,
  3947. list.boxed-list > row.expander list > row:first-child,
  3948. listview.boxed-list > row:first-child,
  3949. list.boxed-list > row:first-child,
  3950. listview.content:not(.conversation-listbox) > row:first-child,
  3951. list.content:not(.conversation-listbox) > row:first-child {
  3952. border-top-left-radius: 6px;
  3953. border-top-right-radius: 6px;
  3954. }
  3955. listview.boxed-list > row.expander list > row:last-child,
  3956. list.boxed-list > row.expander list > row:last-child,
  3957. listview.boxed-list > row:last-child,
  3958. list.boxed-list > row:last-child,
  3959. listview.content:not(.conversation-listbox) > row:last-child,
  3960. list.content:not(.conversation-listbox) > row:last-child {
  3961. border-bottom-left-radius: 6px;
  3962. border-bottom-right-radius: 6px;
  3963. }
  3964. listview.boxed-list > row.expander list > row:only-child,
  3965. list.boxed-list > row.expander list > row:only-child,
  3966. listview.boxed-list > row:only-child,
  3967. list.boxed-list > row:only-child,
  3968. listview.content:not(.conversation-listbox) > row:only-child,
  3969. list.content:not(.conversation-listbox) > row:only-child {
  3970. border-radius: 6px;
  3971. }
  3972. listview.boxed-list > row.expander list > row:not(:last-child),
  3973. list.boxed-list > row.expander list > row:not(:last-child),
  3974. listview.boxed-list > row:not(:last-child),
  3975. list.boxed-list > row:not(:last-child),
  3976. listview.content:not(.conversation-listbox) > row:not(:last-child),
  3977. list.content:not(.conversation-listbox) > row:not(:last-child) {
  3978. border-bottom: 1px solid rgba(192, 202, 245, 0.12);
  3979. }
  3980. listview.boxed-list > row.expander list > row:focus,
  3981. list.boxed-list > row.expander list > row:focus,
  3982. listview.boxed-list > row:focus,
  3983. list.boxed-list > row:focus,
  3984. listview.content:not(.conversation-listbox) > row:focus,
  3985. list.content:not(.conversation-listbox) > row:focus {
  3986. box-shadow: inset 0 0 0 1000px alpha(currentColor, 0.08);
  3987. }
  3988. listview,
  3989. list {
  3990. border-color: rgba(192, 202, 245, 0.12);
  3991. background-color: #1a1b26;
  3992. color: rgba(192, 202, 245, 0.7);
  3993. }
  3994. listview row,
  3995. list row {
  3996. padding: 2px;
  3997. color: rgba(192, 202, 245, 0.7);
  3998. }
  3999. listview > row.expander,
  4000. list > row.expander {
  4001. padding: 0px;
  4002. }
  4003. listview > row.expander .row-header,
  4004. list > row.expander .row-header {
  4005. padding: 2px;
  4006. }
  4007. listview.boxed-list > row.expander list,
  4008. list.boxed-list > row.expander list {
  4009. background-color: transparent;
  4010. box-shadow: none;
  4011. border: none;
  4012. }
  4013. list.frame {
  4014. border-radius: 6px;
  4015. }
  4016. listview.view {
  4017. color: #c0caf5;
  4018. background-color: transparent;
  4019. }
  4020. popover.menu listview.view {
  4021. padding: 0;
  4022. }
  4023. popover.menu listview.view > row {
  4024. margin-left: 0;
  4025. margin-right: 0;
  4026. padding: 6px 12px;
  4027. }
  4028. popover.menu listview.view > row:first-child,
  4029. popover.menu listview.view > row:last-child,
  4030. popover.menu listview.view > row {
  4031. border-radius: 6px;
  4032. }
  4033. row {
  4034. color: rgba(192, 202, 245, 0.7);
  4035. background-clip: padding-box;
  4036. }
  4037. row label.subtitle {
  4038. font-size: smaller;
  4039. }
  4040. row > box.header {
  4041. margin-left: 12px;
  4042. margin-right: 12px;
  4043. min-height: 48px;
  4044. }
  4045. row > box.header > .icon:disabled {
  4046. filter: opacity(0.35);
  4047. }
  4048. row > box.header > box.title {
  4049. margin-top: 6px;
  4050. margin-bottom: 6px;
  4051. border-spacing: 3px;
  4052. }
  4053. columnview.view > header > button,
  4054. treeview.view > header > button,
  4055. row.activatable {
  4056. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  4057. outline: none;
  4058. box-shadow: inset 0 0 0 9999px transparent;
  4059. }
  4060. columnview.view > header > button:focus,
  4061. treeview.view > header > button:focus,
  4062. row.activatable:focus {
  4063. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
  4064. }
  4065. columnview.view > header > button:hover,
  4066. treeview.view > header > button:hover,
  4067. row.activatable:hover {
  4068. transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms;
  4069. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
  4070. }
  4071. columnview.view > header > button.has-open-popup,
  4072. treeview.view > header > button.has-open-popup,
  4073. columnview.view > header > button:active,
  4074. treeview.view > header > button:active,
  4075. row.activatable.has-open-popup,
  4076. row.activatable:active {
  4077. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  4078. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.12);
  4079. }
  4080. button row.activatable:focus,
  4081. button row.activatable:hover,
  4082. button row.activatable:active {
  4083. box-shadow: none;
  4084. }
  4085. button:checked row.activatable {
  4086. color: rgba(0, 0, 0, 0.87);
  4087. }
  4088. row:selected image,
  4089. row:selected label {
  4090. color: #c0caf5;
  4091. }
  4092. row:selected button image,
  4093. row:selected button label {
  4094. color: inherit;
  4095. }
  4096. row:selected:disabled image,
  4097. row:selected:disabled label {
  4098. color: rgba(192, 202, 245, 0.5);
  4099. }
  4100. treeexpander {
  4101. border-spacing: 4px;
  4102. }
  4103. columnview row:not(:selected) cell editablelabel:not(.editing):focus-within {
  4104. outline: 2px solid alpha(currentColor, 0.06);
  4105. }
  4106. columnview row:not(:selected) cell editablelabel.editing:focus-within {
  4107. outline: 2px solid #a9b1d6;
  4108. }
  4109. columnview row:not(:selected) cell editablelabel.editing text selection {
  4110. color: rgba(0, 0, 0, 0.87);
  4111. background-color: #a9b1d6;
  4112. }
  4113. .rich-list {
  4114. /* rich lists usually containing other widgets than just labels/text */
  4115. }
  4116. .rich-list > row {
  4117. padding: 9px 12px;
  4118. min-height: 32px;
  4119. /* should be tall even when only containing a label */
  4120. }
  4121. .rich-list > row > box {
  4122. border-spacing: 12px;
  4123. }
  4124. /*********************
  4125. * App Notifications *
  4126. *********************/
  4127. .app-notification {
  4128. margin: 8px;
  4129. border-spacing: 9px;
  4130. padding: 9px;
  4131. border: none;
  4132. }
  4133. .app-notification button.text-button:not(:disabled) {
  4134. color: #a9b1d6;
  4135. }
  4136. .app-notification.frame,
  4137. .app-notification border {
  4138. border-style: none;
  4139. }
  4140. /*************
  4141. * Expanders *
  4142. *************/
  4143. expander {
  4144. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  4145. min-width: 16px;
  4146. min-height: 16px;
  4147. color: rgba(192, 202, 245, 0.7);
  4148. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
  4149. }
  4150. expander:dir(rtl) {
  4151. -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl');
  4152. }
  4153. expander:hover,
  4154. expander:active {
  4155. color: #c0caf5;
  4156. }
  4157. expander:disabled {
  4158. color: rgba(192, 202, 245, 0.3);
  4159. }
  4160. expander-widget > box > title {
  4161. border-radius: 6px;
  4162. }
  4163. expander-widget > box > title:hover > expander {
  4164. color: rgba(192, 202, 245, 0.7);
  4165. }
  4166. .navigation-sidebar:not(decoration):not(window):drop(active):focus,
  4167. .navigation-sidebar:not(decoration):not(window):drop(active),
  4168. placessidebar:not(decoration):not(window):drop(active):focus,
  4169. placessidebar:not(decoration):not(window):drop(active),
  4170. stackswitcher:not(decoration):not(window):drop(active):focus,
  4171. stackswitcher:not(decoration):not(window):drop(active),
  4172. expander-widget:not(decoration):not(window):drop(active):focus,
  4173. expander-widget:not(decoration):not(window):drop(active) {
  4174. box-shadow: none;
  4175. }
  4176. /************
  4177. * Calendar *
  4178. ************/
  4179. calendar {
  4180. padding: 0;
  4181. border: 1px solid rgba(192, 202, 245, 0.12);
  4182. border-radius: 6px;
  4183. color: #c0caf5;
  4184. }
  4185. calendar:disabled {
  4186. color: rgba(192, 202, 245, 0.5);
  4187. }
  4188. calendar:selected {
  4189. border-radius: 6px;
  4190. }
  4191. calendar > header {
  4192. padding: 3px;
  4193. border-bottom: 1px solid rgba(192, 202, 245, 0.12);
  4194. }
  4195. calendar > header > button {
  4196. min-height: 24px;
  4197. }
  4198. calendar > grid {
  4199. margin: 3px;
  4200. }
  4201. calendar > grid > label {
  4202. border-radius: 9999px;
  4203. margin: 0;
  4204. }
  4205. calendar > grid > label.today {
  4206. box-shadow: none;
  4207. }
  4208. calendar > grid > label.today:selected {
  4209. box-shadow: none;
  4210. }
  4211. calendar > grid > label:focus {
  4212. outline-style: none;
  4213. }
  4214. calendar > grid > label.day-number {
  4215. padding: 9px;
  4216. }
  4217. calendar > grid > label.day-number:selected {
  4218. color: #c0caf5;
  4219. background-color: alpha(currentColor, 0.06);
  4220. }
  4221. calendar > grid > label.day-number.other-month {
  4222. color: alpha(currentColor, 0.3);
  4223. }
  4224. /***********
  4225. * Dialogs *
  4226. ***********/
  4227. window.dialog.message.background {
  4228. background-color: #3b4261;
  4229. }
  4230. window.dialog.message box.dialog-vbox.vertical {
  4231. border-spacing: 10px;
  4232. }
  4233. window.dialog.message .titlebar {
  4234. min-height: 24px;
  4235. border-style: none;
  4236. box-shadow: inset 0 1px rgba(192, 202, 245, 0.1);
  4237. background-color: #3b4261;
  4238. color: #c0caf5;
  4239. }
  4240. window.dialog.message .titlebar:backdrop {
  4241. background-color: #3b4261;
  4242. color: rgba(192, 202, 245, 0.7);
  4243. }
  4244. window.dialog.message.csd .dialog-action-area {
  4245. margin-top: -6px;
  4246. padding: 0;
  4247. }
  4248. window.dialog.message.csd .dialog-action-area > button,
  4249. window.dialog.message.csd .dialog-action-area > button:first-child,
  4250. window.dialog.message.csd .dialog-action-area > button:last-child {
  4251. border-radius: 1px;
  4252. }
  4253. window.dialog.message.csd .dialog-action-area > button:not(:disabled) {
  4254. color: #a9b1d6;
  4255. }
  4256. window.dialog.message.csd
  4257. .dialog-action-area
  4258. > button.destructive-action:not(:disabled) {
  4259. color: #f7768e;
  4260. }
  4261. window.background.csd.dialog > headerbar.titlebar {
  4262. box-shadow: inset 0 -1px rgba(192, 202, 245, 0.12);
  4263. }
  4264. window.aboutdialog.background.csd scrolledwindow.frame,
  4265. window.aboutdialog.background.csd scrolledwindow.frame > viewport.view,
  4266. window.aboutdialog.background.csd scrolledwindow.frame > textview.view,
  4267. window.aboutdialog.background.csd scrolledwindow.frame > textview.view > text {
  4268. border-radius: 6px;
  4269. }
  4270. filechooser .dialog-action-box {
  4271. border-top: 1px solid rgba(192, 202, 245, 0.12);
  4272. }
  4273. filechooser #pathbarbox {
  4274. border-bottom: 1px solid rgba(192, 202, 245, 0.12);
  4275. background-color: #1a1b26;
  4276. }
  4277. filechooser stack.view frame > border {
  4278. border: none;
  4279. }
  4280. filechooserbutton > button > box {
  4281. border-spacing: 6px;
  4282. }
  4283. filechooserbutton:drop(active) {
  4284. box-shadow: none;
  4285. border-color: transparent;
  4286. }
  4287. /***********
  4288. * Sidebar *
  4289. ***********/
  4290. .sidebar {
  4291. border-style: none;
  4292. }
  4293. .sidebar:not(separator):dir(ltr),
  4294. .sidebar.left:not(separator),
  4295. .sidebar.left:not(separator):dir(rtl) {
  4296. border-right: 1px solid rgba(192, 202, 245, 0.12);
  4297. border-left-style: none;
  4298. }
  4299. .sidebar:not(separator):dir(rtl),
  4300. .sidebar.right:not(separator) {
  4301. border-left: 1px solid rgba(192, 202, 245, 0.12);
  4302. border-right-style: none;
  4303. }
  4304. separator + .sidebar:not(separator):dir(ltr),
  4305. separator + .sidebar.left:not(separator),
  4306. separator + .sidebar.left:not(separator):dir(rtl),
  4307. separator + box > .sidebar:not(separator):dir(ltr),
  4308. separator + box > .sidebar.left:not(separator),
  4309. separator + box > .sidebar.left:not(separator):dir(rtl) {
  4310. border-right: none;
  4311. }
  4312. separator + .sidebar:not(separator):dir(rtl),
  4313. separator + .sidebar.right:not(separator),
  4314. separator + box > .sidebar:not(separator):dir(rtl),
  4315. separator + box > .sidebar.right:not(separator) {
  4316. border-left: none;
  4317. }
  4318. .sidebar listview.view,
  4319. .sidebar list {
  4320. background-color: transparent;
  4321. }
  4322. paned .sidebar.left,
  4323. paned .sidebar.right,
  4324. paned .sidebar.left:dir(rtl),
  4325. paned .sidebar:dir(rtl),
  4326. paned .sidebar:dir(ltr),
  4327. paned .sidebar {
  4328. border-style: none;
  4329. }
  4330. leaflet.unfolded > box > stacksidebar.sidebar {
  4331. border: none;
  4332. }
  4333. stacksidebar list {
  4334. padding: 4px 0;
  4335. }
  4336. stacksidebar row {
  4337. min-height: 24px;
  4338. padding: 6px 9px;
  4339. border-radius: 6px;
  4340. margin: 2px 6px;
  4341. }
  4342. stacksidebar row:selected {
  4343. font-weight: 500;
  4344. }
  4345. stacksidebar row > label {
  4346. padding-left: 6px;
  4347. padding-right: 6px;
  4348. color: inherit;
  4349. }
  4350. separator.sidebar {
  4351. background-color: rgba(192, 202, 245, 0.12);
  4352. border-right: none;
  4353. }
  4354. separator.sidebar.selection-mode,
  4355. .selection-mode separator.sidebar {
  4356. background-color: rgba(192, 202, 245, 0.15);
  4357. }
  4358. /**********************
  4359. * Navigation Sidebar *
  4360. **********************/
  4361. .navigation-sidebar {
  4362. padding: 0 4px;
  4363. border-right: none;
  4364. }
  4365. .navigation-sidebar,
  4366. .navigation-sidebar.view {
  4367. background-color: transparent;
  4368. color: inherit;
  4369. }
  4370. .navigation-sidebar > row {
  4371. min-height: 24px;
  4372. padding: 2px 4px;
  4373. margin: 2px 4px;
  4374. border-radius: 6px;
  4375. }
  4376. .navigation-sidebar > row:hover,
  4377. .navigation-sidebar > row:focus-visible:focus-within {
  4378. background-color: alpha(currentColor, 0.08);
  4379. }
  4380. .navigation-sidebar > row:selected {
  4381. background-color: #292e42;
  4382. }
  4383. .navigation-sidebar > row:selected label,
  4384. .navigation-sidebar > row:selected image {
  4385. color: #0db9d7;
  4386. font-weight: 500;
  4387. }
  4388. .navigation-sidebar > row:selected:hover {
  4389. background-color: #3b4261;
  4390. }
  4391. .navigation-sidebar > row:selected:focus-visible:focus-within {
  4392. outline: none;
  4393. background-color: alpha(currentColor, 0.08);
  4394. }
  4395. .navigation-sidebar > row:selected:focus-visible:focus-within:hover {
  4396. background-color: alpha(currentColor, 0.16);
  4397. }
  4398. .navigation-sidebar > row:disabled {
  4399. color: rgba(192, 202, 245, 0.5);
  4400. }
  4401. .navigation-sidebar > separator {
  4402. margin: 3px 0;
  4403. }
  4404. /****************
  4405. * File chooser *
  4406. ****************/
  4407. row image.sidebar-icon {
  4408. transition: color 75ms cubic-bezier(0, 0, 0.2, 1);
  4409. color: rgba(192, 202, 245, 0.7);
  4410. }
  4411. row image.sidebar-icon:disabled {
  4412. color: rgba(192, 202, 245, 0.3);
  4413. }
  4414. placessidebar > viewport.frame {
  4415. border-style: none;
  4416. }
  4417. placessidebar .navigation-sidebar > row {
  4418. padding: 0;
  4419. }
  4420. placessidebar .navigation-sidebar > row:selected {
  4421. font-weight: 500;
  4422. }
  4423. placessidebar .navigation-sidebar > row > revealer {
  4424. padding: 6px 9px;
  4425. }
  4426. placessidebar .navigation-sidebar > row image.sidebar-icon:dir(ltr) {
  4427. padding-right: 8px;
  4428. }
  4429. placessidebar .navigation-sidebar > row image.sidebar-icon:dir(rtl) {
  4430. padding-left: 8px;
  4431. }
  4432. placessidebar .navigation-sidebar > row label.sidebar-label {
  4433. color: inherit;
  4434. }
  4435. placessidebar .navigation-sidebar > row label.sidebar-label:dir(ltr) {
  4436. padding-right: 2px;
  4437. }
  4438. placessidebar .navigation-sidebar > row label.sidebar-label:dir(rtl) {
  4439. padding-left: 2px;
  4440. }
  4441. placessidebar .navigation-sidebar > row.sidebar-placeholder-row {
  4442. background-color: alpha(currentColor, 0.08);
  4443. }
  4444. placessidebar .navigation-sidebar > row.sidebar-new-bookmark-row {
  4445. color: #a9b1d6;
  4446. }
  4447. placessidebar
  4448. .navigation-sidebar
  4449. > row.sidebar-new-bookmark-row
  4450. image.sidebar-icon {
  4451. color: #a9b1d6;
  4452. }
  4453. placessidebar .navigation-sidebar > row:drop(active) {
  4454. transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms;
  4455. box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
  4456. }
  4457. placesview .server-list-button > image {
  4458. transition: 200ms cubic-bezier(0, 0, 0.2, 1);
  4459. -gtk-icon-transform: rotate(0turn);
  4460. }
  4461. placesview .server-list-button:checked > image {
  4462. transition: 200ms cubic-bezier(0, 0, 0.2, 1);
  4463. -gtk-icon-transform: rotate(-0.5turn);
  4464. }
  4465. placesview > actionbar > revealer > box > label {
  4466. border-spacing: 6px;
  4467. }
  4468. /*********
  4469. * Paned *
  4470. *********/
  4471. paned > separator {
  4472. min-width: 1px;
  4473. min-height: 1px;
  4474. -gtk-icon-source: none;
  4475. border: none;
  4476. box-shadow: none;
  4477. background-color: transparent;
  4478. background-image: image(#414868);
  4479. background-size: 1px 1px;
  4480. background-clip: content-box;
  4481. }
  4482. paned > separator.wide {
  4483. min-width: 6px;
  4484. min-height: 6px;
  4485. background-color: #1a1b26;
  4486. background-image: image(#414868), image(#414868);
  4487. background-size: 1px 1px, 1px 1px;
  4488. }
  4489. paned.horizontal > separator {
  4490. background-repeat: repeat-y;
  4491. }
  4492. paned.horizontal > separator:dir(ltr) {
  4493. margin: 0 -8px 0 0;
  4494. padding: 0 8px 0 0;
  4495. background-position: left;
  4496. }
  4497. paned.horizontal > separator:dir(rtl) {
  4498. margin: 0 0 0 -8px;
  4499. padding: 0 0 0 8px;
  4500. background-position: right;
  4501. }
  4502. paned.horizontal > separator.wide {
  4503. margin: 0;
  4504. padding: 0;
  4505. background-repeat: repeat-y, repeat-y;
  4506. background-position: left, right;
  4507. }
  4508. paned.vertical > separator {
  4509. margin: 0 0 -8px 0;
  4510. padding: 0 0 8px 0;
  4511. background-repeat: repeat-x;
  4512. background-position: top;
  4513. }
  4514. paned.vertical > separator.wide {
  4515. margin: 0;
  4516. padding: 0;
  4517. background-repeat: repeat-x, repeat-x;
  4518. background-position: bottom, top;
  4519. }
  4520. /************
  4521. * GtkVideo *
  4522. ************/
  4523. video {
  4524. background: black;
  4525. border-radius: 6px;
  4526. }
  4527. video image.osd {
  4528. min-width: 64px;
  4529. min-height: 64px;
  4530. border-radius: 9999px;
  4531. border: none;
  4532. }
  4533. /**************
  4534. * GtkInfoBar *
  4535. **************/
  4536. infobar {
  4537. border: none;
  4538. margin-bottom: 0;
  4539. }
  4540. infobar > revealer > box {
  4541. padding: 6px;
  4542. border-spacing: 12px;
  4543. }
  4544. infobar.info > revealer > box button,
  4545. infobar.info > revealer > box button.text-button:not(:disabled),
  4546. infobar.info:hover > revealer > box button,
  4547. infobar.info:hover > revealer > box button.text-button:not(:disabled),
  4548. infobar.info:backdrop > revealer > box button,
  4549. infobar.info:backdrop > revealer > box button.text-button:not(:disabled) {
  4550. color: #a9b1d6;
  4551. }
  4552. infobar.action > revealer > box,
  4553. infobar.action:backdrop > revealer > box,
  4554. infobar.question > revealer > box,
  4555. infobar.question:backdrop > revealer > box {
  4556. background-color: #292e42;
  4557. color: #a9b1d6;
  4558. border-radius: 6px;
  4559. }
  4560. infobar.action > revealer > box button,
  4561. infobar.action > revealer > box button:hover,
  4562. infobar.action > revealer > box button:focus,
  4563. infobar.action > revealer > box button:active,
  4564. infobar.action > revealer > box button:checked,
  4565. infobar.action > revealer > box button.text-button:not(:disabled),
  4566. infobar.action:backdrop > revealer > box button,
  4567. infobar.action:backdrop > revealer > box button:hover,
  4568. infobar.action:backdrop > revealer > box button:focus,
  4569. infobar.action:backdrop > revealer > box button:active,
  4570. infobar.action:backdrop > revealer > box button:checked,
  4571. infobar.action:backdrop > revealer > box button.text-button:not(:disabled),
  4572. infobar.question > revealer > box button,
  4573. infobar.question > revealer > box button:hover,
  4574. infobar.question > revealer > box button:focus,
  4575. infobar.question > revealer > box button:active,
  4576. infobar.question > revealer > box button:checked,
  4577. infobar.question > revealer > box button.text-button:not(:disabled),
  4578. infobar.question:backdrop > revealer > box button,
  4579. infobar.question:backdrop > revealer > box button:hover,
  4580. infobar.question:backdrop > revealer > box button:focus,
  4581. infobar.question:backdrop > revealer > box button:active,
  4582. infobar.question:backdrop > revealer > box button:checked,
  4583. infobar.question:backdrop > revealer > box button.text-button:not(:disabled) {
  4584. color: #c0caf5;
  4585. }
  4586. infobar.action > revealer > box *:link,
  4587. infobar.action:backdrop > revealer > box *:link,
  4588. infobar.question > revealer > box *:link,
  4589. infobar.question:backdrop > revealer > box *:link {
  4590. color: rgba(0, 0, 0, 0.87);
  4591. }
  4592. infobar.action:hover > revealer > box,
  4593. infobar.question:hover > revealer > box {
  4594. background-color: #292e42;
  4595. color: #a9b1d6;
  4596. border-radius: 6px;
  4597. }
  4598. infobar.warning > revealer > box,
  4599. infobar.warning:backdrop > revealer > box {
  4600. background-color: #e0af68;
  4601. color: rgba(0, 0, 0, 0.87);
  4602. }
  4603. infobar.warning > revealer > box button,
  4604. infobar.warning > revealer > box button:hover,
  4605. infobar.warning > revealer > box button:focus,
  4606. infobar.warning > revealer > box button:active,
  4607. infobar.warning > revealer > box button:checked,
  4608. infobar.warning > revealer > box button.text-button:not(:disabled),
  4609. infobar.warning:backdrop > revealer > box button,
  4610. infobar.warning:backdrop > revealer > box button:hover,
  4611. infobar.warning:backdrop > revealer > box button:focus,
  4612. infobar.warning:backdrop > revealer > box button:active,
  4613. infobar.warning:backdrop > revealer > box button:checked,
  4614. infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) {
  4615. color: rgba(0, 0, 0, 0.87);
  4616. }
  4617. infobar.warning > revealer > box *:link,
  4618. infobar.warning:backdrop > revealer > box *:link {
  4619. color: rgba(0, 0, 0, 0.87);
  4620. }
  4621. infobar.warning:hover > revealer > box {
  4622. background-color: #fdd11a;
  4623. }
  4624. infobar.error > revealer > box,
  4625. infobar.error:backdrop > revealer > box {
  4626. background-color: #f7768e;
  4627. color: rgba(0, 0, 0, 0.87);
  4628. }
  4629. infobar.error > revealer > box button,
  4630. infobar.error > revealer > box button:hover,
  4631. infobar.error > revealer > box button:focus,
  4632. infobar.error > revealer > box button:active,
  4633. infobar.error > revealer > box button:checked,
  4634. infobar.error > revealer > box button.text-button:not(:disabled),
  4635. infobar.error:backdrop > revealer > box button,
  4636. infobar.error:backdrop > revealer > box button:hover,
  4637. infobar.error:backdrop > revealer > box button:focus,
  4638. infobar.error:backdrop > revealer > box button:active,
  4639. infobar.error:backdrop > revealer > box button:checked,
  4640. infobar.error:backdrop > revealer > box button.text-button:not(:disabled) {
  4641. color: rgba(0, 0, 0, 0.87);
  4642. }
  4643. infobar.error > revealer > box *:link,
  4644. infobar.error:backdrop > revealer > box *:link {
  4645. color: rgba(0, 0, 0, 0.87);
  4646. }
  4647. infobar.error:hover > revealer > box {
  4648. background-color: #f7768e;
  4649. }
  4650. /************
  4651. * Tooltips *
  4652. ************/
  4653. tooltip {
  4654. border: none;
  4655. background-clip: padding-box;
  4656. padding: 6px 12px;
  4657. box-shadow: none;
  4658. }
  4659. tooltip.background {
  4660. background-color: rgba(22, 22, 30, 0.9);
  4661. color: #c0caf5;
  4662. box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2),
  4663. 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  4664. border-radius: 6px;
  4665. margin: 2px 6px 8px 6px;
  4666. }
  4667. tooltip > box {
  4668. border-spacing: 6px;
  4669. }
  4670. /*****************
  4671. * Color Chooser *
  4672. *****************/
  4673. colorswatch.top {
  4674. border-top-left-radius: 12px;
  4675. border-top-right-radius: 12px;
  4676. }
  4677. colorswatch.top overlay {
  4678. border-top-left-radius: 12px;
  4679. border-top-right-radius: 12px;
  4680. }
  4681. colorswatch.bottom {
  4682. border-bottom-left-radius: 12px;
  4683. border-bottom-right-radius: 12px;
  4684. }
  4685. colorswatch.bottom overlay {
  4686. border-bottom-left-radius: 12px;
  4687. border-bottom-right-radius: 12px;
  4688. }
  4689. colorswatch.left,
  4690. colorswatch:first-child:not(.top) {
  4691. border-top-left-radius: 12px;
  4692. border-bottom-left-radius: 12px;
  4693. }
  4694. colorswatch.left overlay,
  4695. colorswatch:first-child:not(.top) overlay {
  4696. border-top-left-radius: 12px;
  4697. border-bottom-left-radius: 12px;
  4698. }
  4699. colorswatch.right,
  4700. colorswatch:last-child:not(.bottom) {
  4701. border-top-right-radius: 12px;
  4702. border-bottom-right-radius: 12px;
  4703. }
  4704. colorswatch.right overlay,
  4705. colorswatch:last-child:not(.bottom) overlay {
  4706. border-top-right-radius: 12px;
  4707. border-bottom-right-radius: 12px;
  4708. }
  4709. colorswatch.dark {
  4710. color: #c0caf5;
  4711. }
  4712. colorswatch.light {
  4713. color: rgba(0, 0, 0, 0.87);
  4714. }
  4715. colorswatch#add-color-button {
  4716. border-radius: 12px 12px 0 0;
  4717. color: #c0caf5;
  4718. }
  4719. colorswatch#add-color-button:only-child {
  4720. border-radius: 12px;
  4721. }
  4722. colorswatch#add-color-button overlay {
  4723. background-color: #3b4261;
  4724. }
  4725. colorswatch:disabled {
  4726. opacity: 0.5;
  4727. }
  4728. colorswatch:disabled overlay {
  4729. box-shadow: none;
  4730. }
  4731. colorswatch#editor-color-sample {
  4732. border-radius: 12px;
  4733. }
  4734. colorswatch#editor-color-sample overlay {
  4735. border-radius: 12px;
  4736. }
  4737. colorchooser .popover.osd {
  4738. transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
  4739. border-radius: 6px;
  4740. box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2),
  4741. 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12),
  4742. inset 0 1px rgba(192, 202, 245, 0.1);
  4743. background-color: #3b4261;
  4744. }
  4745. colorchooser .popover.osd:backdrop {
  4746. box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3),
  4747. 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12),
  4748. inset 0 1px rgba(192, 202, 245, 0.1);
  4749. }
  4750. /********
  4751. * Misc *
  4752. ********/
  4753. .content-view {
  4754. background-color: #1a1b26;
  4755. }
  4756. /**********************
  4757. * Window Decorations *
  4758. **********************/
  4759. window {
  4760. margin: 0;
  4761. padding: 0;
  4762. border: none;
  4763. }
  4764. window.csd {
  4765. border-radius: 12px;
  4766. transition: none;
  4767. margin: 0;
  4768. padding: 0;
  4769. outline: 1px solid rgba(192, 202, 245, 0.2);
  4770. box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 10px 18px rgba(0, 0, 0, 0.14),
  4771. 0 8px 24px rgba(0, 0, 0, 0.12), 0 1px 2px transparent, 0 3px 4px transparent,
  4772. 0 1px 6px transparent;
  4773. }
  4774. window.csd:backdrop {
  4775. transition: none;
  4776. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 3px 4px rgba(0, 0, 0, 0.14),
  4777. 0 1px 6px rgba(0, 0, 0, 0.12), 0 3px 8px transparent,
  4778. 0 10px 18px transparent, 0 8px 24px transparent;
  4779. }
  4780. window.csd.maximized,
  4781. window.csd.fullscreen,
  4782. window.csd.tiled,
  4783. window.csd.tiled-top,
  4784. window.csd.tiled-right,
  4785. window.csd.tiled-bottom,
  4786. window.csd.tiled-left {
  4787. border-radius: 0;
  4788. }
  4789. window.csd.maximized,
  4790. window.csd.fullscreen {
  4791. box-shadow: none;
  4792. }
  4793. window.dialog.message {
  4794. border-radius: 12px;
  4795. }
  4796. window.solid-csd {
  4797. margin: 0;
  4798. padding: 2px;
  4799. border-radius: 0;
  4800. background-color: #1a1b26;
  4801. border: 1px solid #414868;
  4802. }
  4803. window.solid-csd:backdrop {
  4804. background-color: #1a1b26;
  4805. }
  4806. windowcontrols {
  4807. border-spacing: 6px;
  4808. }
  4809. windowcontrols.start:not(.empty):dir(ltr),
  4810. windowcontrols.end:not(.empty):dir(rtl) {
  4811. margin-left: 10px;
  4812. margin-right: 10px;
  4813. }
  4814. windowcontrols.start:not(.empty):dir(rtl),
  4815. windowcontrols.end:not(.empty):dir(ltr) {
  4816. margin-left: 10px;
  4817. margin-right: 10px;
  4818. }
  4819. windowcontrols button:not(.suggested-action):not(.destructive-action) {
  4820. border-radius: 9999px;
  4821. min-height: 24px;
  4822. min-width: 24px;
  4823. padding: 0;
  4824. margin: 0 3px;
  4825. }
  4826. windowcontrols button:not(.suggested-action):not(.destructive-action) image {
  4827. background: none;
  4828. }
  4829. windowcontrols
  4830. button.close:not(.suggested-action):not(.destructive-action):hover {
  4831. background-color: #0db9d7;
  4832. color: #1a1b26;
  4833. }
  4834. windowcontrols
  4835. button.close:not(.suggested-action):not(.destructive-action):active {
  4836. background-color: #f7768e;
  4837. color: #1a1b26;
  4838. }
  4839. gridview > child:selected,
  4840. row:selected,
  4841. calendar:selected {
  4842. background-color: alpha(currentColor, 0.06);
  4843. }
  4844. .view:selected,
  4845. iconview:selected,
  4846. flowbox > flowboxchild:selected,
  4847. calendar > grid > label.today {
  4848. color: #a9b1d6;
  4849. background-color: rgba(169, 177, 214, 0.2);
  4850. }
  4851. text > selection,
  4852. label > selection,
  4853. calendar > grid > label.today:selected,
  4854. stacksidebar row:selected {
  4855. color: #27a1b9;
  4856. background-color: #3b4261;
  4857. }
  4858. .monospace {
  4859. font-family: monospace;
  4860. }
  4861. /**********************
  4862. * Touch Copy & Paste *
  4863. **********************/
  4864. cursor-handle {
  4865. color: #a9b1d6;
  4866. -gtk-icon-source: -gtk-recolor(
  4867. url('assets/scalable/cursor-handle-symbolic.svg')
  4868. );
  4869. }
  4870. cursor-handle.insertion-cursor:dir(ltr),
  4871. cursor-handle.insertion-cursor:dir(rtl) {
  4872. padding-top: 6px;
  4873. }
  4874. shortcuts-section {
  4875. margin: 20px;
  4876. }
  4877. .shortcuts-search-results {
  4878. margin: 20px;
  4879. border-spacing: 24px;
  4880. }
  4881. shortcut {
  4882. border-spacing: 6px;
  4883. }
  4884. shortcut > .keycap {
  4885. min-width: 12px;
  4886. min-height: 26px;
  4887. margin-top: 2px;
  4888. padding-bottom: 2px;
  4889. padding-left: 8px;
  4890. padding-right: 8px;
  4891. border: solid 1px rgba(192, 202, 245, 0.12);
  4892. border-radius: 7px;
  4893. box-shadow: inset 0 -2px rgba(192, 202, 245, 0.12);
  4894. background-color: #3b4261;
  4895. color: #c0caf5;
  4896. font-size: smaller;
  4897. }
  4898. :not(decoration):not(window):drop(active) {
  4899. caret-color: #a9b1d6;
  4900. }
  4901. stackswitcher {
  4902. min-height: 0;
  4903. border-radius: 9999px;
  4904. padding: 0;
  4905. background-color: alpha(currentColor, 0.05);
  4906. }
  4907. stackswitcher.linked:not(.vertical)
  4908. > button:not(.suggested-action):not(.destructive-action) {
  4909. margin: 0 0;
  4910. }
  4911. stackswitcher.linked:not(.vertical)
  4912. > button:not(.suggested-action):not(.destructive-action):not(:hover):not(
  4913. :active
  4914. ):not(:checked) {
  4915. background-color: transparent;
  4916. }
  4917. stackswitcher.linked:not(.vertical)
  4918. > button:not(.suggested-action):not(.destructive-action):first-child,
  4919. stackswitcher.linked:not(.vertical)
  4920. > button:not(.suggested-action):not(.destructive-action):last-child,
  4921. stackswitcher.linked:not(.vertical)
  4922. > button:not(.suggested-action):not(.destructive-action) {
  4923. border-radius: 9999px;
  4924. }
  4925. stackswitcher.linked:not(.vertical)
  4926. > button.text-button:not(.suggested-action):not(.destructive-action) {
  4927. min-width: 100px;
  4928. }
  4929. stackswitcher button.text-button {
  4930. min-width: 100px;
  4931. }
  4932. stackswitcher.circular {
  4933. border-spacing: 12px;
  4934. }
  4935. stackswitcher.circular button.circular,
  4936. stackswitcher.circular button.text-button.circular {
  4937. min-width: 36px;
  4938. min-height: 36px;
  4939. padding: 0;
  4940. }
  4941. /*************
  4942. * App Icons *
  4943. *************/
  4944. .lowres-icon {
  4945. -gtk-icon-shadow: none;
  4946. }
  4947. .icon-dropshadow {
  4948. -gtk-icon-shadow: none;
  4949. }
  4950. /*********
  4951. * Emoji *
  4952. *********/
  4953. popover.emoji-picker {
  4954. padding: 0;
  4955. }
  4956. popover.emoji-picker > contents {
  4957. padding: 0;
  4958. }
  4959. .emoji-searchbar {
  4960. padding: 6px;
  4961. border-spacing: 6px;
  4962. border-bottom: 1px solid rgba(192, 202, 245, 0.12);
  4963. background: none;
  4964. }
  4965. .emoji-searchbar entry text {
  4966. background: none;
  4967. box-shadow: none;
  4968. }
  4969. .emoji-toolbar {
  4970. padding: 0;
  4971. border-spacing: 3px;
  4972. border-top: 1px solid rgba(192, 202, 245, 0.12);
  4973. background: none;
  4974. }
  4975. button.emoji-section {
  4976. margin: 0;
  4977. padding: 6px;
  4978. border-radius: 6px;
  4979. }
  4980. button.emoji-section:checked {
  4981. color: #a9b1d6;
  4982. }
  4983. popover.emoji-picker emoji {
  4984. font-size: x-large;
  4985. padding: 6px;
  4986. transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
  4987. border-radius: 6px;
  4988. }
  4989. popover.emoji-picker emoji:focus,
  4990. popover.emoji-picker emoji:hover {
  4991. background: alpha(currentColor, 0.08);
  4992. }
  4993. emoji-completion-row {
  4994. min-height: 28px;
  4995. padding: 0 12px;
  4996. }
  4997. emoji-completion-row > box {
  4998. border-spacing: 6px;
  4999. padding: 2px 6px;
  5000. }
  5001. emoji-completion-row:focus,
  5002. emoji-completion-row:hover,
  5003. emoji-completion-row emoji:hover,
  5004. emoji-completion-row emoji:focus {
  5005. background-color: alpha(currentColor, 0.08);
  5006. color: #c0caf5;
  5007. }
  5008. popover.entry-completion > contents {
  5009. padding: 0;
  5010. }
  5011. .nautilus-window {
  5012. background-color: #1a1b26;
  5013. }
  5014. .nautilus-window:backdrop {
  5015. background-color: #1a1b26;
  5016. }
  5017. .nautilus-window headerbar {
  5018. box-shadow: none;
  5019. }
  5020. .nautilus-window separator.spacer {
  5021. padding-right: 0.8em;
  5022. }
  5023. .nautilus-window flap.unfolded > placessidebar {
  5024. background-color: transparent;
  5025. color: rgba(192, 202, 245, 0.7);
  5026. padding: 0 0 0 2px;
  5027. margin: 0 0 0 2px;
  5028. }
  5029. .nautilus-window
  5030. flap.unfolded
  5031. > placessidebar
  5032. > scrolledwindow
  5033. > viewport
  5034. > list.navigation-sidebar {
  5035. background: none;
  5036. padding: 0 0 0 2px;
  5037. margin: 0 0 0 2px;
  5038. }
  5039. .nautilus-window
  5040. flap.unfolded
  5041. > placessidebar
  5042. > scrolledwindow
  5043. > viewport
  5044. > list.navigation-sidebar
  5045. > separator {
  5046. background: rgba(192, 202, 245, 0.1);
  5047. }
  5048. .nautilus-window
  5049. flap.unfolded
  5050. > placessidebar
  5051. > scrolledwindow
  5052. > viewport
  5053. > list.navigation-sidebar
  5054. > row.activatable {
  5055. border-radius: 6px;
  5056. }
  5057. .nautilus-window
  5058. flap.unfolded
  5059. > placessidebar
  5060. > scrolledwindow
  5061. > viewport
  5062. > list.navigation-sidebar
  5063. > row.activatable,
  5064. .nautilus-window
  5065. flap.unfolded
  5066. > placessidebar
  5067. > scrolledwindow
  5068. > viewport
  5069. > list.navigation-sidebar
  5070. > row.activatable
  5071. image.sidebar-icon,
  5072. .nautilus-window
  5073. flap.unfolded
  5074. > placessidebar
  5075. > scrolledwindow
  5076. > viewport
  5077. > list.navigation-sidebar
  5078. > row.activatable
  5079. label.sidebar-label,
  5080. .nautilus-window
  5081. flap.unfolded
  5082. > placessidebar
  5083. > scrolledwindow
  5084. > viewport
  5085. > list.navigation-sidebar
  5086. > row.activatable
  5087. button.sidebar-button {
  5088. color: rgba(192, 202, 245, 0.7);
  5089. }
  5090. .nautilus-window
  5091. flap.unfolded
  5092. > placessidebar
  5093. > scrolledwindow
  5094. > viewport
  5095. > list.navigation-sidebar
  5096. > row.activatable:hover {
  5097. background-color: rgba(192, 202, 245, 0.12);
  5098. color: #c0caf5;
  5099. }
  5100. .nautilus-window
  5101. flap.unfolded
  5102. > placessidebar
  5103. > scrolledwindow
  5104. > viewport
  5105. > list.navigation-sidebar
  5106. > row.activatable:selected {
  5107. background-color: #292e42;
  5108. font-weight: 700;
  5109. border-left: 3px solid #f7768e;
  5110. }
  5111. .nautilus-window
  5112. flap.unfolded
  5113. > placessidebar
  5114. > scrolledwindow
  5115. > viewport
  5116. > list.navigation-sidebar
  5117. > row.activatable:selected,
  5118. .nautilus-window
  5119. flap.unfolded
  5120. > placessidebar
  5121. > scrolledwindow
  5122. > viewport
  5123. > list.navigation-sidebar
  5124. > row.activatable:selected
  5125. image.sidebar-icon,
  5126. .nautilus-window
  5127. flap.unfolded
  5128. > placessidebar
  5129. > scrolledwindow
  5130. > viewport
  5131. > list.navigation-sidebar
  5132. > row.activatable:selected
  5133. label.sidebar-label,
  5134. .nautilus-window
  5135. flap.unfolded
  5136. > placessidebar
  5137. > scrolledwindow
  5138. > viewport
  5139. > list.navigation-sidebar
  5140. > row.activatable:selected
  5141. button.sidebar-button {
  5142. color: #0db9d7;
  5143. }
  5144. .nautilus-window
  5145. flap.unfolded
  5146. > placessidebar
  5147. > scrolledwindow
  5148. > viewport
  5149. > list.navigation-sidebar
  5150. > row.activatable:disabled,
  5151. .nautilus-window
  5152. flap.unfolded
  5153. > placessidebar
  5154. > scrolledwindow
  5155. > viewport
  5156. > list.navigation-sidebar
  5157. > row.activatable:disabled
  5158. image.sidebar-icon,
  5159. .nautilus-window
  5160. flap.unfolded
  5161. > placessidebar
  5162. > scrolledwindow
  5163. > viewport
  5164. > list.navigation-sidebar
  5165. > row.activatable:disabled
  5166. label.sidebar-label {
  5167. color: rgba(192, 202, 245, 0.3);
  5168. }
  5169. .nautilus-window
  5170. flap.unfolded
  5171. > placessidebar
  5172. > scrolledwindow
  5173. > scrollbar
  5174. > range
  5175. > though {
  5176. background: none;
  5177. }
  5178. .nautilus-window
  5179. flap.unfolded
  5180. > placessidebar
  5181. > scrolledwindow
  5182. > scrollbar
  5183. > range
  5184. > though
  5185. > slider {
  5186. border: none;
  5187. }
  5188. .nautilus-window .nautilus-grid-view.view {
  5189. margin: 0 6px 6px;
  5190. }
  5191. .nautilus-window .nautilus-grid-view.view,
  5192. .nautilus-window .nautilus-grid-view.view gridview.view {
  5193. background-color: #292e42;
  5194. border-radius: 12px;
  5195. }
  5196. .nautilus-window flap > separator {
  5197. background: none;
  5198. }
  5199. .nautilus-window placesview label {
  5200. color: rgba(192, 202, 245, 0.7);
  5201. }
  5202. .nautilus-window infobar {
  5203. margin: 3px;
  5204. }
  5205. .nautilus-window infobar > revealer > box {
  5206. border-radius: 12px;
  5207. }
  5208. .nautilus-window label.search-information {
  5209. margin: 3px;
  5210. border-radius: 6px;
  5211. }
  5212. .nautilus-window .floating-bar {
  5213. min-height: 32px;
  5214. padding: 0;
  5215. margin: 6px;
  5216. border-style: none;
  5217. border-radius: 6px;
  5218. background-color: rgba(22, 22, 30, 0.95);
  5219. color: #0db9d7;
  5220. box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2),
  5221. 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12);
  5222. }
  5223. .nautilus-window .floating-bar button {
  5224. margin: 4px;
  5225. color: rgba(0, 0, 0, 0.87);
  5226. }
  5227. #NautilusViewCell clamp box {
  5228. margin: 0;
  5229. border-spacing: 0;
  5230. }
  5231. #NautilusQueryEditor > menubutton > button {
  5232. min-width: 16px;
  5233. min-height: 16px;
  5234. margin: 0;
  5235. }
  5236. #NautilusQueryEditor > text {
  5237. margin: 0;
  5238. }
  5239. #NautilusPathBar {
  5240. background-color: #292e42;
  5241. border-radius: 9px;
  5242. margin: 6px 0;
  5243. }
  5244. #NautilusPathBar #NautilusPathButton {
  5245. margin: 1px 3px;
  5246. border-radius: 6px;
  5247. }
  5248. #NautilusPathBar #NautilusPathButton.current-dir {
  5249. color: #0db9d7;
  5250. }
  5251. #NautilusPathBar #NautilusPathButton.current-dir:hover,
  5252. #NautilusPathBar #NautilusPathButton.current-dir:active {
  5253. background: none;
  5254. box-shadow: none;
  5255. }
  5256. #NautilusPathBar #NautilusPathButton:first-child {
  5257. margin-left: 0;
  5258. }
  5259. #NautilusPathBar > menubutton {
  5260. margin: 0;
  5261. }
  5262. #NautilusPathBar > menubutton > button {
  5263. border-radius: 9999px;
  5264. }
  5265. #NautilusQueryEditorTag {
  5266. border-radius: 9999px;
  5267. }
  5268. #NautilusQueryEditorTag > button {
  5269. margin: 3px;
  5270. padding: 0;
  5271. min-height: 22px;
  5272. min-width: 22px;
  5273. }
  5274. window.dialog > box > stack > box > box > notebook.frame {
  5275. border-width: 0 0 0 1px;
  5276. border-radius: 0;
  5277. }
  5278. .history-view {
  5279. background-color: #1a1b26;
  5280. }
  5281. #displayitem {
  5282. border-top: 1px solid rgba(192, 202, 245, 0.12);
  5283. }
  5284. .small .card {
  5285. border-radius: 0;
  5286. box-shadow: none;
  5287. }
  5288. .small .card.forecast-card {
  5289. border-width: 1px 0;
  5290. }
  5291. .small .card.display-container {
  5292. border-width: 0 0 1px 0;
  5293. }
  5294. leaflet button.number-button {
  5295. background-color: rgba(192, 202, 245, 0.1);
  5296. }
  5297. leaflet button.number-button:hover {
  5298. background-color: rgba(192, 202, 245, 0.2);
  5299. }
  5300. leaflet button.number-button:active {
  5301. background-color: rgba(192, 202, 245, 0.3);
  5302. }
  5303. leaflet button.clear-button.image-button {
  5304. border-radius: 6px;
  5305. }
  5306. datechooser.view button.flat.pill,
  5307. datechooser.view button.circular.day {
  5308. min-height: 24px;
  5309. min-width: 24px;
  5310. padding: 6px;
  5311. }
  5312. menubutton.sources-button {
  5313. margin: 0;
  5314. }
  5315. menubutton.sources-button > button {
  5316. border-radius: 0;
  5317. margin: 0;
  5318. }
  5319. .contacts-contact-list list.navigation-sidebar {
  5320. background: none;
  5321. }
  5322. flowboxchild > button.card.category-tile {
  5323. padding: 21px;
  5324. border: none;
  5325. border-radius: 6px;
  5326. }
  5327. flowboxchild > button.card.category-tile-iconless {
  5328. padding: 9px 15px;
  5329. }
  5330. app-context-bar > box:not(:first-child) > button.flat {
  5331. border-radius: 0;
  5332. }
  5333. app-context-bar > box:not(:first-child) > button.flat:last-child {
  5334. border-radius: 0 6px 6px 0;
  5335. }
  5336. app-context-bar > box:first-child > button.flat {
  5337. border-radius: 0;
  5338. }
  5339. app-context-bar > box:first-child > button.flat:first-child {
  5340. border-radius: 6px 0 0 6px;
  5341. }
  5342. app-context-bar > box > button.flat {
  5343. border-left-color: rgba(192, 202, 245, 0.12);
  5344. }
  5345. carousel.card {
  5346. border: none;
  5347. }
  5348. .context-tile-lozenge {
  5349. min-height: 28px;
  5350. min-width: 28px;
  5351. padding: 6px;
  5352. }
  5353. .context-tile-lozenge.grey {
  5354. color: #c0caf5;
  5355. background-color: rgba(192, 202, 245, 0.12);
  5356. }
  5357. .context-tile-lozenge.green,
  5358. .context-tile-lozenge.details-rating-0 {
  5359. color: #4cb168;
  5360. background-color: rgba(129, 201, 149, 0.15);
  5361. }
  5362. .context-tile-lozenge.blue,
  5363. .context-tile-lozenge.details-rating-5 {
  5364. color: #7aa2f7;
  5365. background-color: rgba(33, 150, 243, 0.15);
  5366. }
  5367. .context-tile-lozenge.yellow,
  5368. .context-tile-lozenge.details-rating-12 {
  5369. color: #e1b602;
  5370. background-color: rgba(253, 214, 51, 0.15);
  5371. }
  5372. .context-tile-lozenge.details-rating-15 {
  5373. color: #ff9800;
  5374. background-color: rgba(255, 152, 0, 0.15);
  5375. }
  5376. .context-tile-lozenge.red,
  5377. .context-tile-lozenge.details-rating-18 {
  5378. color: #eb4b3d;
  5379. background-color: rgba(242, 139, 130, 0.15);
  5380. }
  5381. screenshot-carousel box.frame.view {
  5382. border-width: 1px 0;
  5383. border-radius: 0;
  5384. }
  5385. /* Styling for specific category buttons. */
  5386. .category-tile.category-create {
  5387. background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%);
  5388. color: #c0caf5;
  5389. }
  5390. .category-tile.category-create:hover {
  5391. background: linear-gradient(
  5392. 180deg,
  5393. shade(#ce8cd7, 1.07) 0%,
  5394. shade(#2861c6, 1.1) 100%
  5395. );
  5396. }
  5397. .category-tile.category-create:active {
  5398. background: linear-gradient(
  5399. 180deg,
  5400. shade(#ce8cd7, 0.95) 0%,
  5401. shade(#2861c6, 0.95) 100%
  5402. );
  5403. }
  5404. .category-tile.category-develop {
  5405. background: #5e5c64;
  5406. color: #c0caf5;
  5407. }
  5408. .category-tile.category-develop:hover {
  5409. background: shade(#5e5c64, 1.2);
  5410. }
  5411. .category-tile.category-develop:active {
  5412. background-color: shade(#5e5c64, 0.95);
  5413. }
  5414. .category-tile.category-learn {
  5415. background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%);
  5416. color: #c0caf5;
  5417. }
  5418. .category-tile.category-learn:hover {
  5419. background: linear-gradient(
  5420. 180deg,
  5421. shade(#2ec27e, 1.06) 30%,
  5422. shade(#27a66c, 1.06) 100%
  5423. );
  5424. }
  5425. .category-tile.category-learn:active {
  5426. background: linear-gradient(
  5427. 180deg,
  5428. shade(#2ec27e, 0.95) 30%,
  5429. shade(#27a66c, 0.95) 100%
  5430. );
  5431. }
  5432. .category-tile.category-play {
  5433. background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%);
  5434. color: #393484;
  5435. }
  5436. .category-tile.category-play:hover {
  5437. background: linear-gradient(
  5438. 75deg,
  5439. shade(#f9e2a7, 1.07) 0%,
  5440. shade(#eb5ec3, 1.07) 50%,
  5441. shade(#6d53e0, 1.07) 100%
  5442. );
  5443. }
  5444. .category-tile.category-play:active {
  5445. background: linear-gradient(
  5446. 75deg,
  5447. shade(#f9e2a7, 0.97) 0%,
  5448. shade(#eb5ec3, 0.95) 50%,
  5449. shade(#6d53e0, 1.07) 100%
  5450. );
  5451. }
  5452. .category-tile.category-socialize {
  5453. background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%);
  5454. color: rgba(192, 202, 245, 0.7);
  5455. }
  5456. .category-tile.category-socialize:hover {
  5457. background: linear-gradient(
  5458. 90deg,
  5459. shade(#ef4e9b, 1.08) 0%,
  5460. shade(#f77466, 1.08) 100%
  5461. );
  5462. }
  5463. .category-tile.category-socialize:active {
  5464. background: linear-gradient(
  5465. 90deg,
  5466. shade(#ef4e9b, 0.95) 0%,
  5467. shade(#f77466, 0.95) 100%
  5468. );
  5469. }
  5470. .category-tile.category-work {
  5471. padding: 1px;
  5472. /* FIXME: work around https://gitlab.gnome.org/GNOME/gtk/-/issues/4324 */
  5473. color: #1c71d8;
  5474. background-color: #fdf8d7;
  5475. background-image: linear-gradient(
  5476. rgba(192, 202, 245, 0.12) 1px,
  5477. transparent 1px
  5478. ),
  5479. linear-gradient(90deg, rgba(192, 202, 245, 0.12) 1px, transparent 1px);
  5480. background-size: 10px 10px, 10px 10px;
  5481. background-position: -1px -4px, center -1px;
  5482. }
  5483. .category-tile.category-work:hover {
  5484. background-color: #fefcef;
  5485. background-image: linear-gradient(
  5486. rgba(192, 202, 245, 0.12) 1px,
  5487. transparent 1px
  5488. ),
  5489. linear-gradient(90deg, rgba(192, 202, 245, 0.12) 1px, transparent 1px);
  5490. }
  5491. .category-tile.category-work:active {
  5492. background-color: #fcf4bf;
  5493. background-image: linear-gradient(
  5494. rgba(192, 202, 245, 0.12) 1px,
  5495. transparent 1px
  5496. ),
  5497. linear-gradient(90deg, rgba(192, 202, 245, 0.12) 1px, transparent 1px);
  5498. }
  5499. .polari-room-list .sidebar {
  5500. background: none;
  5501. }
  5502. .polari-room-list .sidebar > row.activatable:selected {
  5503. background-color: #a9b1d6;
  5504. color: rgba(0, 0, 0, 0.87);
  5505. }
  5506. .polari-room-list popover.background > arrow,
  5507. .polari-room-list popover.background > contents {
  5508. padding: 0;
  5509. }
  5510. window.org-gnome-Builder headerbar {
  5511. box-shadow: inset 0 -1px rgba(192, 202, 245, 0.12);
  5512. }
  5513. window.org-gnome-Builder headerbar splitbutton button {
  5514. border-radius: 6px;
  5515. }
  5516. window.org-gnome-Builder headerbar splitbutton notification button {
  5517. margin: 0;
  5518. min-height: 24px;
  5519. min-width: 24px;
  5520. padding: 0;
  5521. }
  5522. window.org-gnome-Builder headerbar menubutton > button {
  5523. border-radius: 6px;
  5524. padding: 6px 9px;
  5525. }
  5526. window.org-gnome-Builder headerbar paneltogglebutton button {
  5527. border-radius: 6px;
  5528. }
  5529. popover.background.global-search > arrow,
  5530. popover.background.global-search > contents {
  5531. padding: 0;
  5532. }
  5533. panelframeswitcher {
  5534. padding: 6px;
  5535. }
  5536. .frameheader.header {
  5537. min-height: 24px;
  5538. background-color: rgba(192, 202, 245, 0.04);
  5539. }
  5540. .frameheader.header > button {
  5541. border: none;
  5542. margin: 0;
  5543. padding: 3px;
  5544. }
  5545. .frameheader.header tabbar.inline > revealer > box {
  5546. min-height: 24px;
  5547. }
  5548. .frameheader.header tabbar.inline > revealer > box .start-action {
  5549. padding: 0;
  5550. border: none;
  5551. }
  5552. .frameheader.header tabbar.inline > revealer > box .end-action {
  5553. padding: 0;
  5554. border-left: 1px solid rgba(192, 202, 245, 0.12);
  5555. }
  5556. .frameheader.header
  5557. tabbar.inline
  5558. > revealer
  5559. > box
  5560. .end-action
  5561. menubutton
  5562. > button {
  5563. margin: 6px;
  5564. min-height: 24px;
  5565. min-width: 24px;
  5566. padding: 3px;
  5567. border-radius: 6px;
  5568. }
  5569. .frameheader.header tabbar.inline > revealer > box tabbox {
  5570. border: none;
  5571. background: none;
  5572. }
  5573. panelstatusbar {
  5574. background-color: #1a1b26;
  5575. }
  5576. panelstatusbar > menubutton > button,
  5577. panelstatusbar > paneltogglebutton button.image-button {
  5578. border-radius: 0;
  5579. }
  5580. .style-variant {
  5581. padding: 0 12px;
  5582. }
  5583. .style-variant button.toggle {
  5584. padding: 0;
  5585. }
  5586. .style-variant button.toggle,
  5587. .style-variant button.toggle:hover,
  5588. .style-variant button.toggle:focus,
  5589. .style-variant button.toggle:active,
  5590. .style-variant button.toggle:checked {
  5591. background: none;
  5592. outline: none;
  5593. border: none;
  5594. box-shadow: none;
  5595. }
  5596. .style-variant button.toggle > stylevariantpreview > .wallpaper {
  5597. border-radius: 6px;
  5598. outline-color: transparent;
  5599. outline-width: 3px;
  5600. outline-offset: 3px;
  5601. outline-style: solid;
  5602. box-shadow: none;
  5603. }
  5604. .style-variant button.toggle:hover > stylevariantpreview > .wallpaper {
  5605. outline-color: rgba(192, 202, 245, 0.04);
  5606. }
  5607. .style-variant button.toggle:active > stylevariantpreview > .wallpaper {
  5608. outline-color: rgba(192, 202, 245, 0.3);
  5609. }
  5610. .style-variant button.toggle:checked > stylevariantpreview > .wallpaper {
  5611. outline-color: #a9b1d6;
  5612. }
  5613. window.dialog
  5614. > .dialog-vbox
  5615. > box
  5616. > scrolledwindow
  5617. > viewport
  5618. > widget
  5619. > list.boxed-list {
  5620. border: none;
  5621. border-radius: 0;
  5622. }
  5623. window.dialog
  5624. > .dialog-vbox
  5625. > box
  5626. > scrolledwindow
  5627. > viewport
  5628. > widget
  5629. > list.boxed-list
  5630. > row:first-child,
  5631. window.dialog
  5632. > .dialog-vbox
  5633. > box
  5634. > scrolledwindow
  5635. > viewport
  5636. > widget
  5637. > list.boxed-list
  5638. > row:last-child {
  5639. border-radius: 0;
  5640. }
  5641. avatar {
  5642. border-radius: 9999px;
  5643. font-weight: bold;
  5644. }
  5645. avatar.color1 {
  5646. background-image: linear-gradient(#83b6ec, #337fdc);
  5647. color: #cfe1f5;
  5648. }
  5649. avatar.color2 {
  5650. background-image: linear-gradient(#7ad9f1, #0f9ac8);
  5651. color: #caeaf2;
  5652. }
  5653. avatar.color3 {
  5654. background-image: linear-gradient(#8de6b1, #29ae74);
  5655. color: #cef8d8;
  5656. }
  5657. avatar.color4 {
  5658. background-image: linear-gradient(#b5e98a, #6ab85b);
  5659. color: #e6f9d7;
  5660. }
  5661. avatar.color5 {
  5662. background-image: linear-gradient(#f8e359, #d29d09);
  5663. color: #f9f4e1;
  5664. }
  5665. avatar.color6 {
  5666. background-image: linear-gradient(#ffcb62, #d68400);
  5667. color: #ffead1;
  5668. }
  5669. avatar.color7 {
  5670. background-image: linear-gradient(#ffa95a, #ed5b00);
  5671. color: #ffe5c5;
  5672. }
  5673. avatar.color8 {
  5674. background-image: linear-gradient(#f78773, #e62d42);
  5675. color: #f8d2ce;
  5676. }
  5677. avatar.color9 {
  5678. background-image: linear-gradient(#e973ab, #e33b6a);
  5679. color: #fac7de;
  5680. }
  5681. avatar.color10 {
  5682. background-image: linear-gradient(#cb78d4, #9945b5);
  5683. color: #e7c2e8;
  5684. }
  5685. avatar.color11 {
  5686. background-image: linear-gradient(#9e91e8, #7a59ca);
  5687. color: #d5d2f5;
  5688. }
  5689. avatar.color12 {
  5690. background-image: linear-gradient(#e3cf9c, #b08952);
  5691. color: #f2eade;
  5692. }
  5693. avatar.color13 {
  5694. background-image: linear-gradient(#be916d, #785336);
  5695. color: #e5d6ca;
  5696. }
  5697. avatar.color14 {
  5698. background-image: linear-gradient(#c0bfbc, #6e6d71);
  5699. color: #d8d7d3;
  5700. }
  5701. avatar.contrasted {
  5702. color: #c0caf5;
  5703. }
  5704. avatar.image {
  5705. background: none;
  5706. }
  5707. .card {
  5708. border-radius: 6px;
  5709. box-shadow: none;
  5710. border: 1px solid rgba(192, 202, 245, 0.12);
  5711. background-clip: border-box;
  5712. background-color: #1a1b26;
  5713. color: rgba(192, 202, 245, 0.7);
  5714. }
  5715. preferencespage > scrolledwindow > viewport > clamp > box {
  5716. margin: 24px 12px;
  5717. border-spacing: 24px;
  5718. }
  5719. preferencesgroup > box,
  5720. preferencesgroup > box .labels {
  5721. border-spacing: 6px;
  5722. }
  5723. preferencesgroup > box > box.header:not(.single-line) {
  5724. margin-bottom: 6px;
  5725. }
  5726. preferencesgroup > box > box.single-line {
  5727. min-height: 34px;
  5728. }
  5729. preferencesgroup > box button.background-preview-button.toggle {
  5730. padding: 0;
  5731. background: none;
  5732. box-shadow: none;
  5733. outline-color: transparent;
  5734. outline-width: 3px;
  5735. outline-offset: 3px;
  5736. outline-style: solid;
  5737. }
  5738. preferencesgroup > box button.background-preview-button.toggle,
  5739. preferencesgroup
  5740. > box
  5741. button.background-preview-button.toggle
  5742. > background-preview {
  5743. border-radius: 6px;
  5744. }
  5745. preferencesgroup > box button.background-preview-button.toggle:hover {
  5746. outline-color: rgba(192, 202, 245, 0.04);
  5747. }
  5748. preferencesgroup > box button.background-preview-button.toggle:active {
  5749. outline-color: rgba(192, 202, 245, 0.3);
  5750. }
  5751. preferencesgroup > box button.background-preview-button.toggle:checked {
  5752. outline-color: #a9b1d6;
  5753. }
  5754. statuspage > scrolledwindow > viewport > box {
  5755. margin: 36px 12px;
  5756. border-spacing: 36px;
  5757. }
  5758. statuspage > scrolledwindow > viewport > box > clamp > box {
  5759. border-spacing: 12px;
  5760. }
  5761. statuspage > scrolledwindow > viewport > box > clamp > box > .icon {
  5762. -gtk-icon-size: 128px;
  5763. color: alpha(currentColor, 0.55);
  5764. }
  5765. statuspage > scrolledwindow > viewport > box > clamp > box > .icon:disabled {
  5766. opacity: 0.35;
  5767. }
  5768. statuspage
  5769. > scrolledwindow
  5770. > viewport
  5771. > box
  5772. > clamp
  5773. > box
  5774. > .icon:not(:last-child) {
  5775. margin-bottom: 24px;
  5776. }
  5777. statuspage.compact > scrolledwindow > viewport > box {
  5778. margin: 24px 12px;
  5779. border-spacing: 24px;
  5780. }
  5781. statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon {
  5782. -gtk-icon-size: 96px;
  5783. }
  5784. statuspage.compact
  5785. > scrolledwindow
  5786. > viewport
  5787. > box
  5788. > clamp
  5789. > box
  5790. > .icon:not(:last-child) {
  5791. margin-bottom: 12px;
  5792. }
  5793. statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title {
  5794. font-size: 18pt;
  5795. }
  5796. toast {
  5797. margin: 12px;
  5798. margin-bottom: 24px;
  5799. border-radius: 9999px;
  5800. border-spacing: 6px;
  5801. padding: 6px;
  5802. box-shadow: 0 7px 4.8px -4px rgba(0, 0, 0, 0.2),
  5803. 0 12px 10.2px 2px rgba(0, 0, 0, 0.14), 0 5px 13.2px 4px rgba(0, 0, 0, 0.12),
  5804. inset 0 1px rgba(192, 202, 245, 0.1);
  5805. background-color: rgba(26, 27, 38, 0.95);
  5806. color: #c0caf5;
  5807. border: none;
  5808. }
  5809. toast:dir(ltr) {
  5810. padding-left: 12px;
  5811. }
  5812. toast:dir(rtl) {
  5813. padding-right: 12px;
  5814. }
  5815. toast > label {
  5816. margin: 0 6px;
  5817. }
  5818. viewswitcher {
  5819. margin: 0;
  5820. }
  5821. viewswitcher.wide {
  5822. margin-top: 6px;
  5823. margin-bottom: 6px;
  5824. }
  5825. viewswitcher.wide button.toggle:checked,
  5826. viewswitcher.wide button.toggle.flat:checked {
  5827. background-color: #292e42;
  5828. color: #0db9d7;
  5829. font-weight: 500;
  5830. }
  5831. viewswitcher.wide button.toggle:not(:checked),
  5832. viewswitcher.wide button.toggle.flat:not(:checked) {
  5833. box-shadow: none;
  5834. }
  5835. viewswitcher.wide button.toggle:checked:backdrop,
  5836. viewswitcher.wide button.toggle.flat:checked:backdrop {
  5837. color: #0db9d7;
  5838. }
  5839. viewswitcher.wide
  5840. button.toggle:checked
  5841. indicatorbin.needs-attention
  5842. > indicator,
  5843. viewswitcher.wide
  5844. button.toggle.flat:checked
  5845. indicatorbin.needs-attention
  5846. > indicator {
  5847. background-color: rgba(0, 0, 0, 0.87);
  5848. }
  5849. viewswitcher.wide
  5850. button.toggle:checked
  5851. indicatorbin.needs-attention
  5852. > indicator
  5853. > label,
  5854. viewswitcher.wide
  5855. button.toggle.flat:checked
  5856. indicatorbin.needs-attention
  5857. > indicator
  5858. > label {
  5859. color: #a9b1d6;
  5860. }
  5861. viewswitcher.narrow button.toggle {
  5862. border-radius: 0;
  5863. margin: 0;
  5864. border: none;
  5865. }
  5866. headerbar viewswitcher.narrow button.toggle {
  5867. border-radius: 6px;
  5868. margin: 0 2px;
  5869. min-width: 120px;
  5870. padding: 0;
  5871. background-color: transparent;
  5872. }
  5873. headerbar viewswitcher.narrow button.toggle:checked {
  5874. background-color: #a9b1d6;
  5875. color: rgba(0, 0, 0, 0.87);
  5876. }
  5877. headerbar viewswitcher.narrow button.toggle:checked indicator {
  5878. background: rgba(0, 0, 0, 0.87);
  5879. }
  5880. headerbar viewswitcher.narrow button.toggle:checked indicator > label {
  5881. color: #a9b1d6;
  5882. }
  5883. headerbar viewswitcher.narrow button.toggle:checked:backdrop {
  5884. color: rgba(0, 0, 0, 0.38);
  5885. }
  5886. headerbar viewswitcher.narrow button.toggle:focus {
  5887. box-shadow: none;
  5888. }
  5889. viewswitcher button.toggle {
  5890. font-weight: bold;
  5891. padding: 0;
  5892. min-height: 0;
  5893. margin: 0;
  5894. }
  5895. viewswitcher button.toggle > stack > box.narrow {
  5896. font-size: 0.75rem;
  5897. padding-top: 7px;
  5898. padding-bottom: 5px;
  5899. border-spacing: 4px;
  5900. }
  5901. viewswitcher button.toggle > stack > box.narrow > stack > label {
  5902. padding-left: 8px;
  5903. padding-right: 8px;
  5904. }
  5905. viewswitcher button.toggle > stack > box.wide {
  5906. padding: 0 12px;
  5907. border-spacing: 6px;
  5908. }
  5909. viewswitcherbar actionbar > revealer > box {
  5910. padding: 0;
  5911. }
  5912. viewswitchertitle viewswitcher {
  5913. margin-left: 12px;
  5914. margin-right: 12px;
  5915. }
  5916. indicatorbin > indicator,
  5917. indicatorbin > mask {
  5918. min-width: 6px;
  5919. min-height: 6px;
  5920. border-radius: 9999px;
  5921. }
  5922. indicatorbin > indicator {
  5923. margin: 1px;
  5924. padding: 0;
  5925. background: alpha(currentColor, 0.4);
  5926. }
  5927. indicatorbin > indicator > label {
  5928. font-size: 0.6rem;
  5929. font-weight: bold;
  5930. padding: 2px 5px;
  5931. color: #c0caf5;
  5932. }
  5933. indicatorbin > mask {
  5934. padding: 1px;
  5935. background: black;
  5936. }
  5937. indicatorbin.needs-attention > indicator {
  5938. background-color: #a9b1d6;
  5939. }
  5940. indicatorbin.needs-attention > indicator > label {
  5941. color: rgba(0, 0, 0, 0.87);
  5942. }