gtk.css 156 KB

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