| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551 |
- /**
- * Colors
- */
- /**
- * Breakpoints & Media Queries
- */
- /**
- * SCSS Variables.
- *
- * Please use variables from this sheet to ensure consistency across the UI.
- * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
- * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
- */
- /**
- * Colors
- */
- /**
- * Fonts & basic variables.
- */
- /**
- * Grid System.
- * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
- */
- /**
- * Dimensions.
- */
- /**
- * Shadows.
- */
- /**
- * Editor widths.
- */
- /**
- * Block & Editor UI.
- */
- /**
- * Block paddings.
- */
- /**
- * React Native specific.
- * These variables do not appear to be used anywhere else.
- */
- /**
- * Converts a hex value into the rgb equivalent.
- *
- * @param {string} hex - the hexadecimal value to convert
- * @return {string} comma separated rgb values
- */
- /**
- * Breakpoint mixins
- */
- /**
- * Long content fade mixin
- *
- * Creates a fading overlay to signify that the content is longer
- * than the space allows.
- */
- /**
- * Focus styles.
- */
- /**
- * Applies editor left position to the selector passed as argument
- */
- /**
- * Styles that are reused verbatim in a few places
- */
- /**
- * Allows users to opt-out of animations via OS-level preferences.
- */
- /**
- * Reset default styles for JavaScript UI based pages.
- * This is a WP-admin agnostic reset
- */
- /**
- * Reset the WP Admin page styles for Gutenberg-like pages.
- */
- :root {
- --wp-admin-theme-color: #007cba;
- --wp-admin-theme-color--rgb: 0, 124, 186;
- --wp-admin-theme-color-darker-10: #006ba1;
- --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
- --wp-admin-theme-color-darker-20: #005a87;
- --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- :root {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- .block-editor-autocompleters__block {
- white-space: nowrap;
- }
- .block-editor-autocompleters__block .block-editor-block-icon {
- margin-right: 8px;
- }
- .block-editor-autocompleters__link {
- white-space: nowrap;
- }
- .block-editor-autocompleters__link .block-editor-block-icon {
- margin-right: 8px;
- }
- .block-editor-block-alignment-control__menu-group .components-menu-item__info {
- margin-top: 0;
- }
- .block-editor-block-alignment-matrix-control__popover .components-popover__content {
- min-width: 0;
- width: auto;
- }
- .block-editor-block-alignment-matrix-control__popover .components-popover__content > div {
- padding: 8px;
- }
- .block-editor-block-icon {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 24px;
- height: 24px;
- }
- .block-editor-block-icon.has-colors svg {
- fill: currentColor;
- }
- @media (forced-colors: active) {
- .block-editor-block-icon.has-colors svg {
- fill: CanvasText;
- }
- }
- .block-editor-block-icon svg {
- min-width: 20px;
- min-height: 20px;
- max-width: 24px;
- max-height: 24px;
- }
- .block-editor-block-inspector p {
- margin-top: 0;
- }
- .block-editor-block-inspector h2,
- .block-editor-block-inspector h3 {
- font-size: 13px;
- color: #1e1e1e;
- margin-bottom: 1.5em;
- }
- .block-editor-block-inspector .components-base-control {
- margin-bottom: 24px;
- }
- .block-editor-block-inspector .components-base-control:last-child {
- margin-bottom: 8px;
- }
- .block-editor-block-inspector .components-panel__body {
- border: none;
- border-top: 1px solid #e0e0e0;
- }
- .block-editor-block-inspector .block-editor-block-card {
- padding: 16px;
- }
- .block-editor-block-inspector__no-blocks {
- display: block;
- font-size: 13px;
- background: #fff;
- padding: 32px 16px;
- text-align: center;
- }
- .block-editor-block-styles .block-editor-block-list__block {
- margin: 0;
- }
- /**
- * Notices & Block Selected/Hover Styles.
- */
- /**
- * Cross-Block Selection
- */
- .block-editor-block-list__layout {
- position: relative;
- }
- .block-editor-block-list__layout.is-navigate-mode {
- cursor: default;
- }
- .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
- .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::after,
- .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,
- .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted ~ .is-multi-selected::after {
- position: absolute;
- z-index: 1;
- pointer-events: none;
- content: "";
- top: 1px;
- bottom: 1px;
- left: 1px;
- right: 1px;
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- border-radius: 1px;
- outline: 2px solid transparent;
- }
- .is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .is-dark-theme .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered::after,
- .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable])::after,
- .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after,
- .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted ~ .is-multi-selected::after {
- box-shadow: 0 0 0 1px #fff;
- }
- .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected .components-placeholder ::selection, .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered .components-placeholder ::selection,
- .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not([contenteditable]) .components-placeholder ::selection,
- .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted .components-placeholder ::selection,
- .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted ~ .is-multi-selected .components-placeholder ::selection {
- background: transparent;
- }
- .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-hovered:not(.is-selected)::after {
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- }
- .block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- outline: 1px solid transparent;
- }
- .block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected::after, .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.has-child-selected {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- outline: 2px solid transparent;
- }
- .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::before {
- content: "";
- position: absolute;
- z-index: 0;
- pointer-events: none;
- transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
- right: 0;
- left: 0;
- top: -14px;
- border-radius: 2px;
- border-top: 4px solid #ccc;
- }
- .block-editor-block-list__layout .is-block-moving-mode.block-editor-block-list__block.is-selected::after {
- content: none;
- }
- .block-editor-block-list__layout .is-block-moving-mode.can-insert-moving-block.block-editor-block-list__block.is-selected::before {
- border-color: var(--wp-admin-theme-color);
- }
- .is-block-moving-mode.block-editor-block-list__block-selection-button {
- opacity: 0;
- font-size: 1px;
- height: 1px;
- padding: 0;
- }
- .block-editor-block-list__layout .block-editor-block-list__block {
- position: relative;
- overflow-wrap: break-word;
- /**
- * Notices
- */
- /**
- * Block Layout
- */
- /**
- * Block styles and alignments
- */
- }
- .block-editor-block-list__layout .block-editor-block-list__block .reusable-block-edit-panel * {
- z-index: 1;
- }
- .block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui {
- margin: -10px 0 12px 0;
- }
- .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui {
- margin: 0 0 12px 0;
- width: 100%;
- }
- .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice {
- margin-left: 0;
- margin-right: 0;
- }
- .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content {
- font-size: 13px;
- }
- .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus {
- outline: none;
- }
- .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
- position: absolute;
- z-index: 1;
- pointer-events: none;
- content: "";
- top: 1px;
- bottom: 1px;
- left: 1px;
- right: 1px;
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- border-radius: 1px;
- outline: 2px solid transparent;
- }
- .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff;
- }
- .block-editor-block-list__layout .block-editor-block-list__block::after {
- content: "";
- pointer-events: none;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- border-radius: 2px;
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) transparent;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.has-warning {
- min-height: 48px;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.has-warning > * {
- pointer-events: none;
- -webkit-user-select: none;
- user-select: none;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning {
- pointer-events: all;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.has-warning::after {
- content: "";
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- border-radius: 2px;
- background-color: rgba(255, 255, 255, 0.4);
- }
- .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after {
- background-color: transparent;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay::after {
- display: none;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks > .block-editor-block-list__layout.has-overlay .block-editor-block-list__layout.has-overlay::after {
- display: block;
- }
- .block-editor-block-list__layout .block-editor-block-list__block.is-reusable.has-child-selected::after {
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- }
- .block-editor-block-list__layout .block-editor-block-list__block[data-clear=true] {
- float: none;
- }
- .is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered {
- cursor: default;
- }
- .is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered::after {
- top: 1px;
- left: 1px;
- right: 1px;
- bottom: 1px;
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- border-radius: 1px;
- }
- .is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected {
- cursor: unset;
- }
- .is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected::after {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- top: 1px;
- left: 1px;
- right: 1px;
- bottom: 1px;
- border-radius: 1px;
- }
- .is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-selected:focus::after {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- .is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
- opacity: 0.5;
- transition: opacity 0.1s linear;
- }
- @media (prefers-reduced-motion: reduce) {
- .is-focus-mode .block-editor-block-list__block:not(.has-child-selected) {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .is-focus-mode .block-editor-block-list__block:not(.has-child-selected) .block-editor-block-list__block, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-selected, .is-focus-mode .block-editor-block-list__block:not(.has-child-selected).is-multi-selected {
- opacity: 1;
- }
- .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
- opacity: 0.5;
- transition: opacity 0.1s linear;
- }
- @media (prefers-reduced-motion: reduce) {
- .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.has-child-selected, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity:not(.has-child-selected) .block-editor-block-list__block, .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity.is-active-entity .block-editor-block-list__block,
- .is-root-container:not(.is-focus-mode) .block-editor-block-list__block.has-active-entity .is-active-entity .block-editor-block-list__block {
- opacity: 1;
- }
- .wp-block[data-align=left] > *,
- .wp-block[data-align=right] > *,
- .wp-block.alignleft,
- .wp-block.alignright {
- z-index: 21;
- }
- .wp-site-blocks > [data-align=left] {
- float: left;
- margin-right: 2em;
- }
- .wp-site-blocks > [data-align=right] {
- float: right;
- margin-left: 2em;
- }
- .wp-site-blocks > [data-align=center] {
- justify-content: center;
- margin-left: auto;
- margin-right: auto;
- }
- /**
- * In-Canvas Inserter
- */
- .block-editor-block-list .block-editor-inserter {
- margin: 8px;
- cursor: move;
- cursor: grab;
- }
- @keyframes block-editor-inserter__toggle__fade-in-animation {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- .wp-block .block-list-appender .block-editor-inserter__toggle {
- animation: block-editor-inserter__toggle__fade-in-animation 0.1s ease;
- animation-fill-mode: forwards;
- }
- @media (prefers-reduced-motion: reduce) {
- .wp-block .block-list-appender .block-editor-inserter__toggle {
- animation-duration: 1ms;
- animation-delay: 0s;
- }
- }
- .block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender {
- display: none;
- }
- .block-editor-block-list__block:not(.is-selected):not(.has-child-selected) .block-editor-default-block-appender .block-editor-inserter__toggle {
- opacity: 0;
- transform: scale(0);
- }
- .block-editor-block-list__block .block-editor-block-list__block-html-textarea {
- display: block;
- margin: 0;
- padding: 12px;
- width: 100%;
- border: none;
- outline: none;
- border-radius: 2px;
- box-shadow: inset 0 0 0 1px #1e1e1e;
- resize: none;
- overflow: hidden;
- font-family: Menlo, Consolas, monaco, monospace;
- font-size: 15px;
- line-height: 1.5;
- transition: padding 0.2s linear;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-list__block .block-editor-block-list__block-html-textarea {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- /**
- * Warnings.
- */
- .block-editor-block-list__block .block-editor-warning {
- z-index: 5;
- position: relative;
- }
- .block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning {
- margin-bottom: auto;
- }
- /**
- * Insertion Point.
- */
- .block-editor-block-list__insertion-point {
- position: absolute;
- }
- .block-editor-block-list__insertion-point-indicator {
- position: absolute;
- background: var(--wp-admin-theme-color);
- }
- .block-editor-block-list__insertion-point.is-vertical > .block-editor-block-list__insertion-point-indicator {
- top: 50%;
- height: 1px;
- }
- .block-editor-block-list__insertion-point.is-horizontal > .block-editor-block-list__insertion-point-indicator {
- top: 0;
- right: 0;
- left: 50%;
- width: 1px;
- }
- .block-editor-block-list__insertion-point-inserter {
- display: none;
- position: absolute;
- justify-content: center;
- top: calc(50% - 12px);
- left: calc(50% - 12px);
- }
- @media (min-width: 480px) {
- .block-editor-block-list__insertion-point-inserter {
- display: flex;
- }
- }
- .block-editor-block-list__block-popover-inserter {
- position: absolute;
- top: -9999em;
- margin-bottom: 14px;
- }
- .block-editor-block-list__block-popover-inserter.is-visible {
- position: static;
- }
- .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon {
- background: #1e1e1e;
- border-radius: 2px;
- color: #fff;
- padding: 0;
- min-width: 24px;
- height: 24px;
- }
- .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
- .block-editor-default-block-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
- .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
- color: #fff;
- background: var(--wp-admin-theme-color);
- }
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon {
- background: var(--wp-admin-theme-color);
- }
- .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
- background: #1e1e1e;
- }
- /**
- * Block Toolbar when contextual.
- */
- .block-editor-block-contextual-toolbar {
- display: inline-flex;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- background-color: #fff;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar-group,
- .block-editor-block-contextual-toolbar .block-editor-block-toolbar .components-toolbar {
- border-right-color: #1e1e1e;
- }
- .block-editor-block-contextual-toolbar.is-fixed {
- position: sticky;
- top: 0;
- width: 100%;
- z-index: 31;
- min-height: 48px;
- display: block;
- border: none;
- border-bottom: 1px solid #e0e0e0;
- border-radius: 0;
- }
- .block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar-group,
- .block-editor-block-contextual-toolbar.is-fixed .block-editor-block-toolbar .components-toolbar {
- border-right-color: #e0e0e0;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-mover-button {
- overflow: hidden;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
- min-width: 24px;
- width: 24px;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button svg {
- min-width: 24px;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button:focus::before {
- left: 0 !important;
- min-width: 0;
- width: 100%;
- }
- @media (min-width: 600px) {
- .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-up-button svg {
- top: 5px;
- }
- .block-editor-block-contextual-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button.is-down-button svg {
- bottom: 5px;
- }
- }
- /**
- * Block Label for Navigation/Selection Mode
- */
- .block-editor-block-list__block-selection-button {
- display: inline-flex;
- padding: 0 12px;
- z-index: 22;
- border-radius: 2px;
- background-color: #1e1e1e;
- font-size: 13px;
- height: 48px;
- }
- .block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content {
- margin: auto;
- display: inline-flex;
- align-items: center;
- }
- .block-editor-block-list__block-selection-button .block-editor-block-list__block-selection-button__content > .components-flex__item {
- margin-right: 6px;
- }
- .block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle {
- cursor: grab;
- padding: 0;
- height: 24px;
- min-width: 24px;
- margin-left: -2px;
- }
- .block-editor-block-list__block-selection-button .components-button.has-icon.block-selection-button_drag-handle svg {
- min-width: 18px;
- min-height: 18px;
- }
- .block-editor-block-list__block-selection-button .block-editor-block-icon {
- font-size: 13px;
- color: #fff;
- height: 48px;
- }
- .block-editor-block-list__block-selection-button .components-button {
- min-width: 36px;
- color: #fff;
- height: 48px;
- display: flex;
- }
- .block-editor-block-list__block-selection-button .components-button:focus {
- box-shadow: none;
- border: none;
- }
- .block-editor-block-list__block-selection-button .components-button:active {
- color: #fff;
- }
- .block-editor-block-list__block-selection-button .block-selection-button_select-button.components-button {
- padding: 0;
- }
- /**
- * Popovers.
- */
- .block-editor-block-list__insertion-point-popover.is-without-arrow {
- z-index: 28;
- position: absolute;
- pointer-events: none;
- }
- .block-editor-block-list__insertion-point-popover.is-without-arrow * {
- pointer-events: none;
- }
- .block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter {
- pointer-events: all;
- }
- .block-editor-block-list__insertion-point-popover.is-without-arrow .is-with-inserter * {
- pointer-events: all;
- }
- .block-editor-block-list__insertion-point-popover.is-without-arrow .components-popover__content.components-popover__content {
- background: none;
- border: none;
- box-shadow: none;
- overflow-y: visible;
- margin-left: 0;
- }
- @keyframes hide-during-dragging {
- to {
- position: fixed;
- transform: translate(9999px, 9999px);
- }
- }
- .components-popover.block-editor-block-list__block-popover {
- z-index: 31;
- position: absolute;
- }
- .components-popover.block-editor-block-list__block-popover .components-popover__content {
- margin: 0 !important;
- min-width: auto;
- width: max-content;
- background: none;
- border: none;
- box-shadow: none;
- overflow-y: visible;
- pointer-events: none;
- }
- .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
- .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar,
- .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__empty-block-inserter {
- pointer-events: all;
- }
- .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__block-selection-button,
- .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar {
- margin-top: 12px;
- margin-bottom: 12px;
- }
- .components-popover.block-editor-block-list__block-popover.is-insertion-point-visible {
- visibility: hidden;
- }
- .is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {
- opacity: 0;
- animation: hide-during-dragging 1ms linear forwards;
- }
- .is-dragging-components-draggable .components-tooltip {
- display: none;
- }
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown,
- .block-editor-block-toolbar .components-toolbar-group {
- padding-left: 6px;
- padding-right: 6px;
- }
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button,
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon,
- .block-editor-block-toolbar .components-toolbar-group .components-button,
- .block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon {
- min-width: 36px;
- padding-left: 6px;
- padding-right: 6px;
- }
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button svg,
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon svg,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button svg,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon svg,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button svg,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon svg,
- .block-editor-block-toolbar .components-toolbar-group .components-button svg,
- .block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon svg {
- min-width: 24px;
- }
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button::before,
- .block-editor-block-toolbar > .components-toolbar > .block-editor-block-toolbar__slot .components-button.has-icon.has-icon::before,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button::before,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-toolbar .components-button.has-icon.has-icon::before,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button::before,
- .block-editor-block-toolbar > .block-editor-block-toolbar__slot > .components-dropdown .components-button.has-icon.has-icon::before,
- .block-editor-block-toolbar .components-toolbar-group .components-button::before,
- .block-editor-block-toolbar .components-toolbar-group .components-button.has-icon.has-icon::before {
- left: 2px;
- right: 2px;
- }
- .is-vertical .block-list-appender {
- width: 24px;
- margin-right: auto;
- margin-top: 12px;
- margin-left: 12px;
- }
- .block-list-appender > .block-editor-inserter {
- display: block;
- }
- .block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.block-editor-block-list__layout) .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle {
- opacity: 0;
- transform: scale(0);
- }
- .block-editor-block-lock-modal {
- z-index: 1000001;
- }
- @media (min-width: 600px) {
- .block-editor-block-lock-modal .components-modal__frame {
- max-width: 480px;
- }
- }
- .block-editor-block-lock-modal__checklist {
- margin: 0;
- }
- .block-editor-block-lock-modal__options-title {
- padding: 12px 0;
- }
- .block-editor-block-lock-modal__options-title .components-checkbox-control__label {
- font-weight: 600;
- }
- .block-editor-block-lock-modal__options-title .components-base-control__field {
- align-items: center;
- display: flex;
- margin: 0;
- }
- .block-editor-block-lock-modal__checklist-item {
- margin-bottom: 0;
- padding: 12px 0 12px 32px;
- }
- .block-editor-block-lock-modal__checklist-item .components-base-control__field {
- align-items: center;
- display: flex;
- margin: 0;
- }
- .block-editor-block-lock-modal__checklist-item .components-checkbox-control__label {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-grow: 1;
- }
- .block-editor-block-lock-modal__checklist-item .components-checkbox-control__label svg {
- margin-right: 12px;
- fill: #1e1e1e;
- }
- .block-editor-block-lock-modal__checklist-item:hover {
- background-color: #f0f0f0;
- border-radius: 2px;
- }
- .block-editor-block-lock-modal__actions {
- margin-top: 24px;
- }
- .block-editor-block-lock-toolbar .components-button.has-icon {
- min-width: 36px !important;
- padding-left: 0 !important;
- }
- .block-editor-block-lock-toolbar .components-button.has-icon:focus::before {
- right: 8px !important;
- }
- .block-editor-block-breadcrumb {
- list-style: none;
- padding: 0;
- margin: 0;
- }
- .block-editor-block-breadcrumb li {
- display: inline-flex;
- margin: 0;
- }
- .block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator {
- fill: currentColor;
- margin-left: -4px;
- margin-right: -4px;
- transform: scaleX(1) /*rtl:scaleX(-1);*/;
- }
- .block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator {
- display: none;
- }
- .block-editor-block-breadcrumb__button.components-button {
- height: 24px;
- line-height: 24px;
- padding: 0;
- position: relative;
- }
- .block-editor-block-breadcrumb__button.components-button:hover:not(:disabled) {
- text-decoration: underline;
- box-shadow: none;
- }
- .block-editor-block-breadcrumb__button.components-button:focus {
- box-shadow: none;
- }
- .block-editor-block-breadcrumb__button.components-button:focus::before {
- content: "";
- display: block;
- position: absolute;
- border-radius: 2px;
- top: 1px;
- right: 1px;
- bottom: 1px;
- left: 1px;
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- .block-editor-block-breadcrumb__current {
- cursor: default;
- }
- .block-editor-block-breadcrumb__button.components-button,
- .block-editor-block-breadcrumb__current {
- color: #1e1e1e;
- padding: 0 8px;
- font-size: inherit;
- }
- .block-editor-block-card {
- display: flex;
- align-items: flex-start;
- }
- .block-editor-block-card__content {
- flex-grow: 1;
- margin-bottom: 4px;
- }
- .block-editor-block-card__title {
- font-weight: 500;
- }
- .block-editor-block-card__title.block-editor-block-card__title {
- line-height: 24px;
- margin: 0 0 4px;
- }
- .block-editor-block-card__description {
- font-size: 13px;
- }
- .block-editor-block-card .block-editor-block-icon {
- flex: 0 0 24px;
- margin-left: 0;
- margin-right: 12px;
- width: 24px;
- height: 24px;
- }
- /**
- * Invalid block comparison
- */
- .block-editor-block-compare {
- height: auto;
- }
- .block-editor-block-compare__wrapper {
- display: flex;
- padding-bottom: 16px;
- }
- .block-editor-block-compare__wrapper > div {
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- width: 50%;
- padding: 0 16px 0 0;
- min-width: 200px;
- max-width: 600px;
- }
- .block-editor-block-compare__wrapper > div button {
- float: right;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__converted {
- border-left: 1px solid #ddd;
- padding-left: 15px;
- padding-right: 0;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__html {
- font-family: Menlo, Consolas, monaco, monospace;
- font-size: 12px;
- color: #1e1e1e;
- border-bottom: 1px solid #ddd;
- padding-bottom: 15px;
- line-height: 1.7;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__html span {
- background-color: #e6ffed;
- padding-top: 3px;
- padding-bottom: 3px;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {
- background-color: #acf2bd;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {
- background-color: #cc1818;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__preview {
- padding: 0;
- padding-top: 16px;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__preview p {
- font-size: 12px;
- margin-top: 0;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__action {
- margin-top: 16px;
- }
- .block-editor-block-compare__wrapper .block-editor-block-compare__heading {
- font-size: 1em;
- font-weight: 400;
- margin: 0.67em 0;
- }
- .block-editor-block-content-overlay.overlay-active::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: transparent;
- border: none;
- border-radius: 2px;
- z-index: 10;
- }
- .block-editor-block-content-overlay:hover:not(.is-dragging-blocks).overlay-active::before, .block-editor-block-content-overlay.parent-highlighted.overlay-active::before {
- background: rgba(var(--wp-admin-theme-color--rgb), 0.1);
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color) inset;
- }
- .block-editor-block-content-overlay.overlay-active:not(.is-dragging-blocks) * {
- pointer-events: none;
- }
- .block-editor-block-content-overlay.is-dragging-blocks {
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- }
- .block-editor-block-draggable-chip-wrapper {
- position: absolute;
- top: -24px;
- left: 0;
- }
- .block-editor-block-draggable-chip {
- background-color: #1e1e1e;
- border-radius: 2px;
- box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
- color: #fff;
- cursor: grabbing;
- display: inline-flex;
- height: 48px;
- padding: 0 13px;
- -webkit-user-select: none;
- user-select: none;
- }
- .block-editor-block-draggable-chip svg {
- fill: currentColor;
- }
- .block-editor-block-draggable-chip .block-editor-block-draggable-chip__content {
- margin: auto;
- justify-content: flex-start;
- }
- .block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item {
- margin-right: 6px;
- }
- .block-editor-block-draggable-chip .block-editor-block-draggable-chip__content > .components-flex__item:last-child {
- margin-right: 0;
- }
- .block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg {
- min-width: 18px;
- min-height: 18px;
- }
- .block-editor-block-draggable-chip .components-flex__item {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- }
- .block-editor-block-list__layout .is-dragging {
- background-color: currentColor !important;
- opacity: 0.05 !important;
- border-radius: 2px !important;
- pointer-events: none !important;
- }
- .block-editor-block-list__layout .is-dragging::selection {
- background: transparent !important;
- }
- .block-editor-block-list__layout .is-dragging::after {
- content: none !important;
- }
- .block-editor-block-mobile-toolbar {
- display: flex;
- flex-direction: row;
- border-right: 1px solid #ddd;
- }
- .block-editor-block-mobile-toolbar .block-editor-block-mover-button {
- width: 36px;
- height: 36px;
- border-radius: 2px;
- padding: 3px;
- margin: 0;
- justify-content: center;
- align-items: center;
- }
- .block-editor-block-mobile-toolbar .block-editor-block-mover-button .dashicon {
- margin: auto;
- }
- .block-editor-block-mobile-toolbar .block-editor-block-mover {
- display: flex;
- margin-right: auto;
- }
- .block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover-button {
- float: left;
- }
- .block-editor-block-mover-button__description {
- display: none;
- }
- .block-editor-block-mover-button.has-icon {
- padding: 0;
- }
- .block-editor-block-mover {
- display: inline-flex;
- flex-direction: row;
- }
- .block-editor-block-mover .block-editor-block-mover__move-button-container,
- .block-editor-block-mover .components-toolbar {
- flex: 1;
- flex-direction: row;
- border-right: none !important;
- padding: 0;
- }
- @media (min-width: 600px) {
- .block-editor-block-mover .block-editor-block-mover__move-button-container,
- .block-editor-block-mover .components-toolbar {
- flex-direction: column;
- }
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container, .block-editor-block-mover.is-horizontal .components-toolbar {
- flex-direction: row;
- }
- .block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
- padding-right: 0;
- padding-left: 0;
- min-width: 36px;
- }
- @media (min-width: 600px) {
- .block-editor-block-mover .block-editor-block-mover-button {
- height: 24px;
- width: 42px;
- padding-right: 11px !important;
- padding-left: 6px !important;
- }
- .block-editor-block-mover .block-editor-block-mover-button.block-editor-block-mover-button {
- min-width: 42px;
- }
- }
- @media (min-width: 600px) {
- .block-editor-block-mover .block-editor-block-mover-button::before {
- left: 8px !important;
- right: 8px !important;
- }
- }
- .block-editor-block-mover .block-editor-block-mover__drag-handle {
- width: 24px;
- cursor: grab;
- min-width: 24px !important;
- padding: 0 !important;
- }
- .block-editor-block-mover .block-editor-block-mover__drag-handle:focus::before {
- left: 0 !important;
- right: 0 !important;
- }
- @media (min-width: 600px) {
- .block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button,
- .block-editor-block-mover .components-toolbar .block-editor-block-mover-button {
- margin: 0 auto 0 0;
- }
- .block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-up-button::before,
- .block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-up-button::before {
- bottom: 0;
- height: calc(100% - 1px);
- }
- .block-editor-block-mover .components-toolbar-group .block-editor-block-mover-button.is-down-button::before,
- .block-editor-block-mover .components-toolbar .block-editor-block-mover-button.is-down-button::before {
- top: 0;
- height: calc(100% - 1px);
- }
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon {
- height: 48px;
- width: 24px;
- padding-left: 0;
- padding-right: 0;
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.has-icon::before {
- top: 1px;
- bottom: 1px;
- min-width: 0;
- width: auto;
- height: auto;
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon svg {
- margin-left: 0;
- margin-right: -8px;
- margin-bottom: 0;
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-up-button.has-icon::before {
- left: 0 !important;
- right: 0 !important;
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon svg {
- margin-left: -8px;
- margin-right: 0;
- margin-top: 0;
- }
- .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.is-down-button.has-icon::before {
- left: 0 !important;
- right: 0 !important;
- width: calc(100% + 1px);
- }
- .block-editor-block-navigation__container {
- min-width: 280px;
- }
- .block-editor-block-navigation__label {
- margin: 0 0 12px;
- color: #757575;
- text-transform: uppercase;
- font-size: 11px;
- font-weight: 500;
- }
- .block-editor-block-parent-selector {
- background: #fff;
- border-radius: 2px;
- }
- .block-editor-block-parent-selector .block-editor-block-parent-selector__button {
- width: 48px;
- height: 48px;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- }
- .block-editor-block-patterns-list__list-item {
- cursor: pointer;
- margin-bottom: 24px;
- }
- .block-editor-block-patterns-list__list-item.is-placeholder {
- min-height: 100px;
- }
- .block-editor-block-patterns-list__list-item[draggable=true] .block-editor-block-preview__container {
- cursor: grab;
- }
- .block-editor-block-patterns-list__item {
- height: 100%;
- }
- .block-editor-block-patterns-list__item .block-editor-block-preview__container {
- display: flex;
- align-items: center;
- overflow: hidden;
- border-radius: 2px;
- border: 1px solid #f0f0f0;
- }
- .block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title {
- padding-top: 8px;
- font-size: 12px;
- text-align: center;
- }
- .block-editor-block-patterns-list__item:hover .block-editor-block-preview__container {
- border: 1px solid var(--wp-admin-theme-color);
- }
- .block-editor-block-patterns-list__item:focus .block-editor-block-preview__container {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- outline: 2px solid transparent;
- }
- .block-editor-block-patterns-list__item:hover .block-editor-block-patterns-list__item-title, .block-editor-block-patterns-list__item:focus .block-editor-block-patterns-list__item-title {
- color: var(--wp-admin-theme-color);
- }
- .block-editor-block-preview__container {
- position: relative;
- width: 100%;
- overflow: hidden;
- }
- .block-editor-block-preview__container .block-editor-block-preview__content {
- top: 0;
- left: 0;
- transform-origin: top left;
- text-align: initial;
- margin: 0;
- overflow: visible;
- min-height: auto;
- }
- .block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,
- .block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-drop-zone,
- .block-editor-block-preview__container .block-editor-block-preview__content .reusable-block-indicator,
- .block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender {
- display: none;
- }
- .block-editor-block-preview__content-iframe .block-list-appender {
- display: none;
- }
- .block-editor-block-preview__live-content * {
- pointer-events: none;
- }
- .block-editor-block-preview__live-content .block-list-appender {
- display: none;
- }
- .block-editor-block-preview__live-content .components-button:disabled {
- opacity: initial;
- }
- .block-editor-block-preview__live-content .components-placeholder,
- .block-editor-block-preview__live-content .block-editor-block-list__block[data-empty=true] {
- display: none;
- }
- .block-editor-block-settings-menu__popover .components-dropdown-menu__menu {
- padding: 0;
- }
- .block-editor-block-styles + .default-style-picker__default-switcher {
- margin-top: 16px;
- }
- .block-editor-block-styles__preview-panel {
- display: none;
- position: absolute;
- right: 16px;
- left: auto;
- z-index: 90;
- }
- @media (min-width: 782px) {
- .block-editor-block-styles__preview-panel {
- display: block;
- }
- }
- .block-editor-block-styles__preview-panel .block-editor-inserter__preview-container {
- left: auto;
- right: auto;
- top: auto;
- position: static;
- }
- .block-editor-block-styles__preview-panel .block-editor-block-card__title.block-editor-block-card__title {
- margin: 0;
- }
- .block-editor-block-styles__preview-panel .block-editor-block-icon {
- display: none;
- }
- .block-editor-block-styles__variants {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- gap: 8px;
- }
- .block-editor-block-styles__variants .block-editor-block-styles__item {
- color: #2f2f2f;
- box-shadow: inset 0 0 0 1px #ccc;
- display: inline-block;
- width: calc(50% - 4px);
- }
- .block-editor-block-styles__variants .block-editor-block-styles__item:focus, .block-editor-block-styles__variants .block-editor-block-styles__item:hover {
- color: var(--wp-admin-theme-color);
- box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
- }
- .block-editor-block-styles__variants .block-editor-block-styles__item.is-active, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover {
- background-color: #2f2f2f;
- box-shadow: none;
- }
- .block-editor-block-styles__variants .block-editor-block-styles__item.is-active .block-editor-block-styles__item-text, .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text {
- color: #fff;
- }
- .block-editor-block-styles__variants .block-editor-block-styles__item.is-active:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--wp-admin-theme-color);
- }
- .block-editor-block-styles__block-preview-container,
- .block-editor-block-styles__block-preview-container * {
- box-sizing: border-box !important;
- }
- .block-editor-block-switcher {
- position: relative;
- padding: 0 6px;
- }
- .block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon {
- min-width: 36px;
- }
- .block-editor-block-switcher__no-switcher-icon,
- .block-editor-block-switcher__toggle {
- position: relative;
- }
- .components-button.block-editor-block-switcher__toggle,
- .components-button.block-editor-block-switcher__no-switcher-icon {
- margin: 0;
- display: block;
- height: 48px;
- }
- .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
- .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
- margin: auto;
- }
- .block-editor-block-switcher__toggle-text {
- margin-left: 8px;
- }
- .show-icon-labels .block-editor-block-switcher__toggle-text {
- display: none;
- }
- .show-icon-labels .block-editor-block-toolbar .block-editor-block-switcher .components-button.has-icon::after {
- font-size: 14px;
- }
- .block-editor-block-switcher__popover {
- margin-left: 6px;
- }
- .components-button.block-editor-block-switcher__no-switcher-icon {
- display: flex;
- padding: 6px 12px !important;
- }
- .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
- margin-right: auto;
- margin-left: auto;
- min-width: 24px !important;
- }
- .components-button.block-editor-block-switcher__no-switcher-icon:disabled {
- opacity: 1;
- }
- .components-button.block-editor-block-switcher__no-switcher-icon:disabled,
- .components-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors {
- color: #1e1e1e;
- }
- .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon .block-editor-block-icon,
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon .block-editor-block-icon,
- .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon,
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon .block-editor-block-icon {
- height: 100%;
- position: relative;
- margin: 0 auto;
- display: flex;
- align-items: center;
- min-width: 100%;
- }
- .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon::before,
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__no-switcher-icon.has-icon.has-icon::before,
- .block-editor-block-toolbar .components-toolbar-group .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before,
- .block-editor-block-toolbar .components-toolbar .components-button.block-editor-block-switcher__toggle.has-icon.has-icon::before {
- top: 8px;
- right: 8px;
- bottom: 8px;
- left: 8px;
- }
- .components-popover.block-editor-block-switcher__popover .components-popover__content {
- min-width: 300px;
- }
- .components-popover.block-editor-block-switcher__popover .components-popover__content > div {
- min-width: auto;
- display: flex;
- background: #fff;
- padding: 0;
- }
- .components-popover.block-editor-block-switcher__popover .components-popover__content > div .components-menu-group {
- margin: 0;
- }
- .block-editor-block-switcher__popover .components-popover__content .block-editor-block-styles {
- margin: 0 -3px;
- }
- .block-editor-block-switcher__popover .components-popover__content .components-panel__body {
- border: 0;
- position: relative;
- z-index: 1;
- }
- .block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body {
- border-top: 1px solid #e0e0e0;
- }
- .block-editor-block-switcher__popover__preview__parent .block-editor-block-switcher__popover__preview__container {
- position: absolute;
- top: -12px;
- left: calc(100% + 32px);
- }
- .block-editor-block-switcher__preview__popover {
- display: none;
- }
- .block-editor-block-switcher__preview__popover.components-popover {
- margin-left: 4px;
- margin-top: 11px;
- }
- @media (min-width: 782px) {
- .block-editor-block-switcher__preview__popover {
- display: block;
- }
- }
- .block-editor-block-switcher__preview__popover .components-popover__content {
- box-shadow: none;
- border: 1px solid #1e1e1e;
- background: #fff;
- border-radius: 2px;
- }
- .block-editor-block-switcher__preview__popover .block-editor-block-switcher__preview {
- width: 300px;
- height: auto;
- max-height: 500px;
- padding: 16px;
- }
- .block-editor-block-switcher__preview-title {
- margin-bottom: 12px;
- color: #757575;
- text-transform: uppercase;
- font-size: 11px;
- font-weight: 500;
- }
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {
- min-width: 36px;
- }
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle {
- height: 48px;
- }
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
- width: 48px;
- height: 48px;
- }
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
- .block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
- padding: 12px;
- }
- .block-editor-block-switcher__preview-patterns-container {
- padding-bottom: 16px;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item {
- margin-top: 16px;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container {
- cursor: pointer;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item {
- height: 100%;
- border-radius: 2px;
- transition: all 0.05s ease-in-out;
- position: relative;
- border: 1px solid transparent;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover, .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- outline: 2px solid transparent;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e;
- }
- .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title {
- padding: 4px;
- font-size: 12px;
- text-align: center;
- cursor: pointer;
- }
- .block-editor-block-types-list > [role=presentation] {
- overflow: hidden;
- display: flex;
- flex-wrap: wrap;
- }
- .block-editor-block-variation-picker .components-placeholder__instructions {
- margin-bottom: 0;
- }
- .block-editor-block-variation-picker .components-placeholder__fieldset {
- flex-direction: column;
- }
- .block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset {
- max-width: 90%;
- }
- .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations {
- display: flex;
- justify-content: flex-start;
- flex-direction: row;
- flex-wrap: wrap;
- width: 100%;
- margin: 16px 0;
- padding: 0;
- list-style: none;
- }
- .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li {
- list-style: none;
- margin: 8px 20px 0 0;
- flex-shrink: 1;
- width: 75px;
- text-align: center;
- }
- .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li button {
- display: inline-flex;
- margin-right: 0;
- }
- .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation {
- padding: 8px;
- }
- .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 12px;
- display: block;
- line-height: 1.4;
- }
- .block-editor-block-variation-picker__variation {
- width: 100%;
- }
- .block-editor-block-variation-picker__variation.components-button.has-icon {
- justify-content: center;
- width: auto;
- }
- .block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary {
- background-color: #fff;
- }
- .block-editor-block-variation-picker__variation.components-button {
- height: auto;
- padding: 0;
- }
- .block-editor-block-variation-picker__variation::before {
- content: "";
- padding-bottom: 100%;
- }
- .block-editor-block-variation-picker__variation:first-child {
- margin-left: 0;
- }
- .block-editor-block-variation-picker__variation:last-child {
- margin-right: 0;
- }
- .block-editor-block-pattern-setup {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- border-radius: 2px;
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar {
- justify-content: center;
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
- column-gap: 24px;
- display: block;
- width: 100%;
- padding: 32px;
- column-count: 2;
- }
- @media (min-width: 1440px) {
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
- column-count: 3;
- }
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button] {
- cursor: pointer;
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item {
- break-inside: avoid-column;
- margin-bottom: 24px;
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container {
- min-height: 100px;
- border-radius: 2px;
- border: 1px solid #ddd;
- }
- .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content {
- width: 100%;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar {
- height: 60px;
- box-sizing: border-box;
- padding: 16px;
- width: 100%;
- text-align: left;
- margin: 0;
- color: #1e1e1e;
- border-radius: 2px 2px 0 0;
- background-color: #fff;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- border-top: 1px solid #ddd;
- align-self: flex-end;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls {
- display: flex;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation,
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
- width: calc(50% - 36px);
- display: flex;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
- justify-content: flex-end;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container {
- display: flex;
- flex-direction: column;
- width: 100%;
- box-sizing: border-box;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container {
- overflow: hidden;
- position: relative;
- padding: 0;
- margin: 0;
- list-style: none;
- transform-style: preserve-3d;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container * {
- box-sizing: border-box;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide {
- position: absolute;
- top: 0;
- width: 100%;
- margin: auto;
- padding: 0;
- transition: transform 0.5s, z-index 0.5s;
- z-index: 100;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide {
- opacity: 1;
- position: relative;
- z-index: 102;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide {
- transform: translateX(-100%);
- z-index: 101;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide {
- transform: translateX(100%);
- z-index: 101;
- }
- .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender {
- display: none;
- }
- .block-editor-block-pattern-setup__carousel,
- .block-editor-block-pattern-setup__grid {
- width: 100%;
- overflow-y: auto;
- }
- .block-editor-block-variation-transforms {
- padding: 0 16px 16px 52px;
- width: 100%;
- }
- .block-editor-block-variation-transforms .components-dropdown-menu__toggle {
- border: 1px solid #757575;
- border-radius: 2px;
- min-height: 30px;
- width: 100%;
- position: relative;
- text-align: left;
- justify-content: left;
- padding: 6px 12px;
- }
- .block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle {
- padding-right: 24px;
- }
- .block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled) {
- border-color: var(--wp-admin-theme-color);
- box-shadow: 0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color);
- }
- .block-editor-block-variation-transforms .components-dropdown-menu__toggle svg {
- height: 100%;
- padding: 0;
- position: absolute;
- right: 0;
- top: 0;
- }
- .block-editor-block-variation-transforms__popover .components-popover__content {
- min-width: 230px;
- }
- .components-border-radius-control {
- margin-bottom: 12px;
- }
- .components-border-radius-control legend {
- margin-bottom: 8px;
- }
- .components-border-radius-control .components-border-radius-control__wrapper {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .components-border-radius-control .components-border-radius-control__wrapper > .components-unit-control-wrapper {
- width: calc(50% - 26px);
- margin-bottom: 0;
- }
- .components-border-radius-control .components-border-radius-control__wrapper .components-range-control {
- width: calc(50% - 26px);
- margin-bottom: 0;
- }
- .components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-base-control__field {
- margin-bottom: 0;
- height: 30px;
- }
- .components-border-radius-control .components-border-radius-control__wrapper .components-range-control .components-range-control__wrapper {
- margin-right: 10px;
- }
- .components-border-radius-control .components-border-radius-control__wrapper > span {
- flex: 0 0 auto;
- }
- .components-border-radius-control .components-border-radius-control__input-controls-wrapper {
- display: flex;
- width: 70%;
- flex-wrap: wrap;
- }
- .components-border-radius-control .components-border-radius-control__input-controls-wrapper .components-unit-control-wrapper {
- width: calc(50% - 8px);
- margin-bottom: 8px;
- margin-right: 8px;
- }
- .components-border-radius-control .component-border-radius-control__linked-button.has-icon {
- display: flex;
- justify-content: center;
- }
- .components-border-radius-control .component-border-radius-control__linked-button.has-icon svg {
- margin-right: 0;
- }
- .components-border-style-control legend {
- line-height: 1.4;
- margin-bottom: 8px;
- padding: 0;
- }
- .components-border-style-control .components-border-style-control__buttons {
- display: inline-flex;
- }
- .components-border-style-control .components-border-style-control__buttons .components-button.has-icon {
- min-width: 30px;
- height: 30px;
- padding: 3px;
- margin-right: 4px;
- }
- .block-editor-button-block-appender {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: auto;
- color: #1e1e1e;
- box-shadow: inset 0 0 0 1px #1e1e1e;
- }
- .block-editor-button-block-appender.components-button.components-button {
- padding: 12px;
- }
- .is-dark-theme .block-editor-button-block-appender {
- color: rgba(255, 255, 255, 0.65);
- box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
- }
- .block-editor-button-block-appender:hover {
- color: var(--wp-admin-theme-color);
- box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
- }
- .block-editor-button-block-appender:focus {
- box-shadow: inset 0 0 0 2px var(--wp-admin-theme-color);
- }
- .block-editor-button-block-appender:active {
- color: #000;
- }
- .block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator {
- margin-bottom: 12px;
- }
- .block-editor-color-gradient-control__fieldset {
- min-width: 0;
- }
- .block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title {
- display: flex;
- gap: 8px;
- }
- .block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
- width: 12px;
- height: 12px;
- align-self: center;
- }
- .block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator:first-child {
- margin-left: 12px;
- }
- .block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator {
- display: none;
- }
- @media screen and (min-width: 782px) {
- .block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches {
- display: grid;
- grid-template-columns: repeat(6, 28px);
- justify-content: space-between;
- }
- }
- .block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control {
- margin-bottom: inherit;
- }
- .block-editor-panel-color-gradient-settings .block-editor-panel-color-gradient-settings__dropdown {
- display: block;
- }
- .block-editor-panel-color-gradient-settings__dropdown {
- width: 100%;
- }
- .block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content > div {
- width: 280px;
- }
- @media (min-width: 782px) {
- .block-editor-panel-color-gradient-settings__dropdown-content .components-popover__content {
- margin-right: 156px !important;
- }
- .block-editor-panel-color-gradient-settings__dropdown-content.is-from-top .components-popover__content {
- margin-top: -60px !important;
- }
- .block-editor-panel-color-gradient-settings__dropdown-content.is-from-bottom .components-popover__content {
- margin-bottom: -60px !important;
- }
- }
- .block-editor-panel-color-gradient-settings__dropdown:last-child > div {
- border-bottom-width: 0;
- }
- .block-editor-panel-color-gradient-settings__item {
- padding-top: 12px !important;
- padding-bottom: 12px !important;
- }
- .block-editor-panel-color-gradient-settings__item .block-editor-panel-color-gradient-settings__color-indicator {
- background: linear-gradient(-45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
- }
- .block-editor-panel-color-gradient-settings__item.is-open {
- background: #f0f0f0;
- color: var(--wp-admin-theme-color);
- }
- .block-editor-contrast-checker > .components-notice {
- margin: 0;
- }
- /**
- * Default block appender.
- *
- * This component shows up in 3 places:
- * - the black plus that sits at the end of the canvas, if the last block isn't a paragraph
- * - on the right, inside empty paragraphs
- * - absolute positioned and blue inside nesting containers
- */
- .block-editor-default-block-appender {
- clear: both;
- margin-left: auto;
- margin-right: auto;
- position: relative;
- }
- .block-editor-default-block-appender[data-root-client-id=""] .block-editor-default-block-appender__content:hover {
- outline: 1px solid transparent;
- }
- .block-editor-default-block-appender .block-editor-default-block-appender__content {
- opacity: 0.62;
- }
- .block-editor-default-block-appender .components-drop-zone__content-icon {
- display: none;
- }
- .block-editor-default-block-appender .block-editor-inserter,
- .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter {
- position: absolute;
- top: 0;
- right: 0;
- line-height: 0;
- }
- .block-editor-default-block-appender .block-editor-inserter:disabled,
- .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled {
- display: none;
- }
- /**
- * Fixed position appender.
- * These styles apply to all in-canvas inserters that exist inside nesting containers.
- */
- .block-editor-block-list__block .block-list-appender {
- position: absolute;
- list-style: none;
- padding: 0;
- z-index: 2;
- bottom: 0;
- right: 0;
- }
- .block-editor-block-list__block .block-list-appender.block-list-appender {
- margin: 0;
- line-height: 0;
- }
- .block-editor-block-list__block .block-list-appender .block-editor-default-block-appender {
- height: 24px;
- }
- .block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-block-list__block .block-list-appender .block-list-appender__toggle {
- flex-direction: row;
- box-shadow: none;
- height: 24px;
- width: 24px;
- display: none;
- padding: 0 !important;
- background: #1e1e1e;
- color: #fff;
- }
- .block-editor-block-list__block .block-list-appender .block-editor-inserter__toggle.components-button.has-icon:hover,
- .block-editor-block-list__block .block-list-appender .block-list-appender__toggle:hover {
- color: #fff;
- background: var(--wp-admin-theme-color);
- }
- .block-editor-block-list__block .block-list-appender .block-editor-default-block-appender__content {
- display: none;
- }
- .block-editor-block-list__block .block-list-appender:only-child {
- position: relative;
- right: auto;
- align-self: center;
- list-style: none;
- line-height: inherit;
- }
- .block-editor-block-list__block .block-list-appender:only-child .block-editor-default-block-appender__content {
- display: block;
- }
- .block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-block-list__block.is-selected .block-editor-block-list__layout > .block-list-appender .block-list-appender__toggle,
- .block-editor-block-list__block.is-selected > .block-list-appender .block-editor-inserter__toggle.components-button.has-icon,
- .block-editor-block-list__block.is-selected > .block-list-appender .block-list-appender__toggle {
- display: flex;
- }
- .block-editor-default-block-appender__content {
- cursor: text;
- }
- .block-editor-date-format-picker {
- margin-bottom: 16px;
- }
- .block-editor-date-format-picker__default-format-toggle-control__hint {
- color: #757575;
- display: block;
- }
- .block-editor-date-format-picker__custom-format-select-control.components-base-control {
- margin-bottom: 0;
- }
- .block-editor-date-format-picker__custom-format-select-control .components-custom-select-control__button {
- width: 100%;
- }
- .block-editor-date-format-picker__custom-format-select-control__custom-option {
- border-top: 1px solid #ddd;
- }
- .block-editor-date-format-picker__custom-format-select-control__custom-option.has-hint {
- grid-template-columns: auto 30px;
- }
- .block-editor-date-format-picker__custom-format-select-control__custom-option .components-custom-select-control__item-hint {
- grid-row: 2;
- text-align: left;
- }
- .block-editor-duotone-control__popover > .components-popover__content > div {
- padding: 16px;
- width: 280px;
- }
- .block-editor-duotone-control__popover .components-menu-group__label {
- padding: 0;
- }
- .block-editor-duotone-control__popover .components-custom-gradient-picker__gradient-bar {
- margin: 16px 0 12px;
- }
- .block-editor-duotone-control__popover .components-circular-option-picker__swatches {
- display: grid;
- grid-template-columns: repeat(6, 28px);
- gap: 12px;
- justify-content: space-between;
- }
- .block-editor-duotone-control__description {
- margin: 16px 0;
- font-size: 12px;
- }
- .block-editor-duotone-control__popover:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
- margin-left: -14px;
- }
- .components-font-appearance-control {
- margin-bottom: 24px;
- }
- .components-font-appearance-control ul li {
- color: #1e1e1e;
- text-transform: capitalize;
- }
- .block-editor-image-size-control {
- margin-bottom: 1em;
- }
- .block-editor-image-size-control .block-editor-image-size-control__row {
- display: flex;
- justify-content: space-between;
- }
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width,
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
- margin-bottom: 0.5em;
- }
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input,
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input {
- line-height: 1.25;
- }
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width {
- margin-right: 5px;
- }
- .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height {
- margin-left: 5px;
- }
- .block-editor-block-list__layout.has-overlay::after {
- content: "";
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 60;
- }
- .block-editor-block-types-list__list-item {
- display: block;
- width: 33.33%;
- padding: 0;
- margin: 0;
- }
- .components-button.block-editor-block-types-list__item {
- display: flex;
- flex-direction: column;
- width: 100%;
- font-size: 13px;
- color: #1e1e1e;
- padding: 8px;
- align-items: stretch;
- justify-content: center;
- cursor: pointer;
- background: transparent;
- word-break: break-word;
- border-radius: 2px;
- transition: all 0.05s ease-in-out;
- position: relative;
- height: auto;
- }
- @media (prefers-reduced-motion: reduce) {
- .components-button.block-editor-block-types-list__item {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .components-button.block-editor-block-types-list__item:disabled {
- opacity: 0.6;
- cursor: default;
- }
- .components-button.block-editor-block-types-list__item:not(:disabled):hover {
- color: var(--wp-admin-theme-color) !important;
- }
- .components-button.block-editor-block-types-list__item:not(:disabled):focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- .components-button.block-editor-block-types-list__item:not(:disabled).is-active {
- color: #fff;
- background: #1e1e1e;
- outline: 2px solid transparent;
- outline-offset: -2px;
- }
- .block-editor-block-types-list__item-icon {
- padding: 12px 20px;
- border-radius: 2px;
- color: #1e1e1e;
- transition: all 0.05s ease-in-out;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-types-list__item-icon {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-block-types-list__item-icon .block-editor-block-icon {
- margin-left: auto;
- margin-right: auto;
- }
- .block-editor-block-types-list__item-icon svg {
- transition: all 0.15s ease-out;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-types-list__item-icon svg {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon {
- cursor: grab;
- }
- .block-editor-block-types-list__item-title {
- padding: 4px 2px 8px;
- font-size: 12px;
- }
- .items-justified-left {
- justify-content: flex-start;
- }
- .items-justified-center {
- justify-content: center;
- }
- .items-justified-right {
- justify-content: flex-end;
- }
- .items-justified-space-between {
- justify-content: space-between;
- }
- @keyframes loadingpulse {
- 0% {
- opacity: 1;
- }
- 50% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- .block-editor-link-control {
- position: relative;
- min-width: 360px;
- }
- .components-popover__content .block-editor-link-control {
- min-width: auto;
- width: 90vw;
- max-width: 360px;
- }
- .block-editor-link-control__search-input-wrapper {
- position: relative;
- }
- .block-editor-link-control__search-input-container {
- position: relative;
- }
- .block-editor-link-control__search-input.has-no-label .block-editor-url-input__input {
- flex: 1;
- }
- .block-editor-link-control__field {
- margin: 16px;
- }
- .block-editor-link-control__field > .components-base-control__field {
- display: flex;
- align-items: center;
- margin: 0;
- }
- .block-editor-link-control__field .components-base-control__label {
- margin-right: 16px;
- margin-bottom: 0;
- }
- .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- padding: 6px 8px;
- box-shadow: 0 0 0 transparent;
- transition: box-shadow 0.1s linear;
- border-radius: 2px;
- border: 1px solid #757575;
- /* Fonts smaller than 16px causes mobile safari to zoom. */
- font-size: 16px;
- /* Override core line-height. To be reviewed. */
- line-height: normal;
- width: calc(100% - 32px);
- display: block;
- padding: 11px 16px;
- padding-right: 36px;
- margin: 0;
- position: relative;
- border: 1px solid #ddd;
- border-radius: 2px;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 600px) {
- .block-editor-link-control__field input[type=text], .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input {
- font-size: 13px;
- /* Override core line-height. To be reviewed. */
- line-height: normal;
- }
- }
- .block-editor-link-control__field input[type=text]:focus, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:focus {
- border-color: var(--wp-admin-theme-color);
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- outline: 2px solid transparent;
- }
- .block-editor-link-control__field input[type=text]::-webkit-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-webkit-input-placeholder {
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-link-control__field input[type=text]::-moz-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input::-moz-placeholder {
- opacity: 1;
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-link-control__field input[type=text]:-ms-input-placeholder, .block-editor-link-control__field.block-editor-url-input input[type=text].block-editor-url-input__input:-ms-input-placeholder {
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-link-control__search-error {
- margin: -8px 16px 16px;
- }
- .block-editor-link-control__search-actions {
- position: absolute;
- /*
- * Actions must be positioned on top of URLInput, since the input will grow
- * when suggestions are rendered.
- *
- * Compensate for:
- * - Border (1px)
- * - Vertically, for the difference in height between the input (40px) and
- * the icon buttons.
- * - Horizontally, pad to the minimum of: default input padding, or the
- * equivalent of the vertical padding.
- */
- top: 3px;
- right: 19px;
- }
- .components-button .block-editor-link-control__search-submit .has-icon {
- margin: -1px;
- }
- .block-editor-link-control__search-results-wrapper {
- position: relative;
- margin-top: -15px;
- }
- .block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after {
- content: "";
- position: absolute;
- left: -1px;
- right: 16px;
- display: block;
- pointer-events: none;
- z-index: 100;
- }
- .block-editor-link-control__search-results-wrapper::before {
- height: 8px;
- top: 0;
- bottom: auto;
- }
- .block-editor-link-control__search-results-wrapper::after {
- height: 16px;
- bottom: 0;
- top: auto;
- }
- .block-editor-link-control__search-results-label {
- padding: 16px 32px 0;
- display: block;
- font-weight: 600;
- }
- .block-editor-link-control__search-results {
- margin: 0;
- padding: 8px 16px 8px;
- max-height: 200px;
- overflow-y: auto;
- }
- .block-editor-link-control__search-results.is-loading {
- opacity: 0.2;
- }
- .block-editor-link-control__search-item {
- position: relative;
- display: flex;
- align-items: flex-start;
- font-size: 13px;
- cursor: pointer;
- background: #fff;
- width: 100%;
- border: none;
- text-align: left;
- padding: 12px 16px;
- border-radius: 2px;
- height: auto;
- }
- .block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus {
- background-color: #f0f0f0;
- }
- .block-editor-link-control__search-item:hover .block-editor-link-control__search-item-type, .block-editor-link-control__search-item:focus .block-editor-link-control__search-item-type {
- background: #fff;
- }
- .block-editor-link-control__search-item:focus:not(:disabled) {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color) inset;
- }
- .block-editor-link-control__search-item.is-selected {
- background: #f0f0f0;
- }
- .block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type {
- background: #fff;
- }
- .block-editor-link-control__search-item.is-current {
- flex-direction: column;
- background: transparent;
- border: 0;
- width: 100%;
- cursor: default;
- padding: 16px;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-header {
- display: block;
- flex-direction: row;
- align-items: flex-start;
- margin-right: 8px;
- white-space: pre-wrap;
- overflow-wrap: break-word;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info {
- word-break: break-all;
- }
- .block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header {
- display: flex;
- flex: 1;
- }
- .block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header {
- align-items: center;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-icon {
- position: relative;
- top: 0.2em;
- margin-right: 8px;
- max-height: 24px;
- flex-shrink: 0;
- width: 24px;
- display: flex;
- justify-content: center;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-icon img {
- width: 16px;
- }
- .block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon {
- top: 0;
- width: 32px;
- max-height: 32px;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-info,
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-info .components-external-link__icon,
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon {
- position: absolute;
- right: 0;
- margin-top: 0;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title {
- display: block;
- margin-bottom: 0.2em;
- font-weight: 500;
- position: relative;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {
- font-weight: 700;
- color: inherit;
- background-color: transparent;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title span {
- font-weight: normal;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-title svg {
- display: none;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-info {
- display: block;
- color: #757575;
- font-size: 0.9em;
- line-height: 1.3;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-error-notice {
- font-style: italic;
- font-size: 1.1em;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-type {
- display: block;
- padding: 3px 6px;
- margin-left: auto;
- font-size: 0.9em;
- background-color: #f0f0f0;
- border-radius: 2px;
- white-space: nowrap;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-description {
- padding-top: 12px;
- margin: 0;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder {
- margin-top: 12px;
- padding-top: 0;
- height: 28px;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::before, .block-editor-link-control__search-item .block-editor-link-control__search-item-description.is-placeholder::after {
- display: block;
- content: "";
- height: 0.7em;
- width: 100%;
- background-color: #f0f0f0;
- border-radius: 3px;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-description .components-text {
- font-size: 0.9em;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-image {
- display: flex;
- width: 100%;
- background-color: #f0f0f0;
- justify-content: center;
- height: 140px;
- max-height: 140px;
- overflow: hidden;
- border-radius: 2px;
- margin-top: 12px;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-image.is-placeholder {
- background-color: #f0f0f0;
- border-radius: 3px;
- }
- .block-editor-link-control__search-item .block-editor-link-control__search-item-image img {
- display: block;
- max-width: 100%;
- height: 140px;
- max-height: 140px;
- }
- .block-editor-link-control__search-item-top {
- display: flex;
- flex-direction: row;
- width: 100%;
- }
- .block-editor-link-control__search-item-bottom {
- transition: opacity 1.5s;
- width: 100%;
- }
- .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::before, .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-description::after {
- animation: loadingpulse 1s linear infinite;
- animation-delay: 0.5s;
- }
- .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-image {
- animation: loadingpulse 1s linear infinite;
- animation-delay: 0.5s;
- }
- .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg,
- .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img {
- opacity: 0;
- }
- .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon::before {
- content: "";
- display: block;
- background-color: #f0f0f0;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- border-radius: 100%;
- animation: loadingpulse 1s linear infinite;
- animation-delay: 0.5s;
- }
- .block-editor-link-control__loading {
- margin: 16px;
- display: flex;
- align-items: center;
- }
- .block-editor-link-control__loading .components-spinner {
- margin-top: 0;
- }
- .components-button + .block-editor-link-control__search-create {
- overflow: visible;
- padding: 12px 16px;
- }
- .components-button + .block-editor-link-control__search-create::before {
- content: "";
- position: absolute;
- top: -10px;
- left: 0;
- display: block;
- width: 100%;
- }
- .block-editor-link-control__search-create {
- align-items: center;
- }
- .block-editor-link-control__search-create .block-editor-link-control__search-item-title {
- margin-bottom: 0;
- }
- .block-editor-link-control__search-create .block-editor-link-control__search-item-icon {
- top: 0;
- }
- .block-editor-link-control__search-results div[role=menu] > .block-editor-link-control__search-item.block-editor-link-control__search-item {
- padding: 10px;
- }
- .block-editor-link-control__tools {
- display: flex;
- align-items: center;
- border-top: 1px solid #ddd;
- margin: 0;
- padding: 16px;
- }
- .block-editor-link-control__unlink {
- padding-left: 16px;
- padding-right: 16px;
- }
- .block-editor-link-control__settings {
- flex: 1;
- margin: 0;
- }
- .block-editor-link-control__settings :last-child {
- margin-bottom: 0;
- }
- .is-alternate .block-editor-link-control__settings {
- border-top: 1px solid #1e1e1e;
- }
- .block-editor-link-control__setting {
- margin-bottom: 16px;
- }
- .block-editor-link-control__setting :last-child {
- margin-bottom: 0;
- }
- .block-editor-link-control .block-editor-link-control__search-input .components-spinner {
- display: block;
- }
- .block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {
- position: absolute;
- left: auto;
- bottom: auto;
- /*
- * Position spinner to the left of the actions.
- *
- * Compensate for:
- * - Input padding right ($button-size)
- */
- top: calc(50% - 16px / 2);
- right: 36px;
- }
- .block-editor-link-control__search-item-action {
- margin-left: auto;
- flex-shrink: 0;
- }
- .block-editor-list-view-tree {
- width: 100%;
- border-collapse: collapse;
- padding: 0;
- margin: 0;
- }
- .components-modal__content .block-editor-list-view-tree {
- margin: -12px -6px 0;
- width: calc(100% + 12px);
- }
- .block-editor-list-view-leaf {
- position: relative;
- }
- .block-editor-list-view-leaf.is-selected td {
- background: var(--wp-admin-theme-color);
- }
- .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents, .block-editor-list-view-leaf.is-selected .components-button.has-icon {
- color: #fff;
- }
- .is-dragging-components-draggable .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents {
- background: none;
- color: #1e1e1e;
- }
- .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus::after {
- box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- .block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff;
- }
- .block-editor-list-view-leaf.is-dragging {
- display: none;
- }
- .block-editor-list-view-leaf.is-first-selected td:first-child {
- border-top-left-radius: 2px;
- }
- .block-editor-list-view-leaf.is-first-selected td:last-child {
- border-top-right-radius: 2px;
- }
- .block-editor-list-view-leaf.is-last-selected td:first-child {
- border-bottom-left-radius: 2px;
- }
- .block-editor-list-view-leaf.is-last-selected td:last-child {
- border-bottom-right-radius: 2px;
- }
- .block-editor-list-view-leaf.is-branch-selected:not(.is-selected) {
- background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), linear-gradient(var(--wp-admin-theme-color), var(--wp-admin-theme-color));
- }
- .block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child {
- border-top-left-radius: 2px;
- }
- .block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child {
- border-top-right-radius: 2px;
- }
- .block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:first-child {
- border-top-left-radius: 2px;
- }
- .block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-first-selected td:last-child {
- border-top-right-radius: 2px;
- }
- .block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:first-child {
- border-bottom-left-radius: 2px;
- }
- .block-editor-list-view-leaf[aria-expanded=false].is-branch-selected.is-last-selected td:last-child {
- border-bottom-right-radius: 2px;
- }
- .block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td {
- border-radius: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-contents {
- display: flex;
- align-items: center;
- width: 100%;
- height: auto;
- padding: 6px 12px 6px 0;
- text-align: left;
- color: #1e1e1e;
- border-radius: 2px;
- position: relative;
- white-space: nowrap;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-contents.is-dropping-before::before {
- content: "";
- position: absolute;
- pointer-events: none;
- transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear;
- top: -2px;
- right: 0;
- left: 0;
- border-top: 4px solid var(--wp-admin-theme-color);
- }
- .components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
- padding-left: 0;
- padding-right: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus {
- box-shadow: none;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
- content: "";
- position: absolute;
- top: 0;
- right: -29px;
- bottom: 0;
- left: 0;
- border-radius: inherit;
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- z-index: 2;
- pointer-events: none;
- }
- .is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block-contents:focus::after {
- box-shadow: none;
- }
- .block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus::after {
- right: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- z-index: 1;
- }
- .is-dragging-components-draggable .block-editor-list-view-leaf .block-editor-list-view-block__menu:focus {
- box-shadow: none;
- }
- .block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
- opacity: 1;
- animation: edit-post__fade-in-animation 0.2s ease-out 0s;
- animation-fill-mode: forwards;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
- animation-duration: 1ms;
- animation-delay: 0s;
- }
- }
- .block-editor-list-view-leaf .block-editor-block-icon {
- align-self: flex-start;
- margin-right: 8px;
- width: 24px;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__contents-cell {
- padding-top: 0;
- padding-bottom: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
- line-height: 0;
- width: 36px;
- vertical-align: middle;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell > *,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell > * {
- opacity: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible {
- position: relative;
- z-index: 1;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
- opacity: 1;
- animation: edit-post__fade-in-animation 0.2s ease-out 0s;
- animation-fill-mode: forwards;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover > *, .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible > *,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover > *,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible > * {
- animation-duration: 1ms;
- animation-delay: 0s;
- }
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon {
- width: 24px;
- min-width: 24px;
- padding: 0;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell {
- padding-right: 5px;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon {
- height: 24px;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper {
- display: flex;
- height: 100%;
- flex-direction: column;
- align-items: center;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button {
- position: relative;
- width: 36px;
- height: 24px;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button svg {
- position: relative;
- height: 24px;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button {
- margin-top: -6px;
- align-items: flex-end;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg {
- bottom: -4px;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button {
- margin-bottom: -6px;
- align-items: flex-start;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg {
- top: -4px;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button:focus:enabled {
- box-shadow: none;
- outline: none;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button:focus {
- box-shadow: none;
- outline: none;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button:focus::before {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
- outline: 2px solid transparent;
- }
- .block-editor-list-view-leaf .block-editor-block-mover-button::before {
- content: "";
- position: absolute;
- display: block;
- border-radius: 2px;
- height: 16px;
- min-width: 100%;
- left: 0;
- right: 0;
- animation: components-button__appear-animation 0.1s ease;
- animation-fill-mode: forwards;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf .block-editor-block-mover-button::before {
- animation-duration: 1ms;
- animation-delay: 0s;
- }
- }
- .block-editor-list-view-leaf .block-editor-inserter__toggle {
- background: #1e1e1e;
- color: #fff;
- height: 24px;
- margin: 6px 6px 6px 1px;
- min-width: 24px;
- }
- .block-editor-list-view-leaf .block-editor-inserter__toggle:active {
- color: #fff;
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor {
- background: rgba(0, 0, 0, 0.1);
- border-radius: 2px;
- display: inline-block;
- padding: 2px 6px;
- margin: 0 8px;
- max-width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor {
- background: rgba(0, 0, 0, 0.3);
- }
- .block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock {
- line-height: 0;
- width: 24px;
- min-width: 24px;
- margin-left: auto;
- padding: 0;
- vertical-align: middle;
- }
- .block-editor-list-view-block-select-button__description,
- .block-editor-list-view-appender__description {
- display: none;
- }
- .block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container,
- .block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,
- .block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,
- .block-editor-list-view-appender__cell .block-editor-list-view-appender__container {
- display: flex;
- }
- .block-editor-list-view__expander {
- height: 24px;
- margin-left: 4px;
- width: 24px;
- }
- .block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander {
- margin-left: 220px;
- }
- .block-editor-list-view-leaf:not([aria-level="1"]) .block-editor-list-view__expander {
- margin-right: 4px;
- }
- .block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander {
- margin-left: 0px;
- }
- .block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander {
- margin-left: 24px;
- }
- .block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander {
- margin-left: 52px;
- }
- .block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander {
- margin-left: 80px;
- }
- .block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander {
- margin-left: 108px;
- }
- .block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander {
- margin-left: 136px;
- }
- .block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander {
- margin-left: 164px;
- }
- .block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander {
- margin-left: 192px;
- }
- .block-editor-list-view-leaf .block-editor-list-view__expander {
- visibility: hidden;
- }
- .block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
- visibility: visible;
- transition: transform 0.2s ease;
- transform: rotate(90deg);
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf[aria-expanded=true] .block-editor-list-view__expander svg {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
- visibility: visible;
- transform: rotate(0deg);
- transition: transform 0.2s ease;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-list-view-leaf[aria-expanded=false] .block-editor-list-view__expander svg {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-list-view-drop-indicator {
- pointer-events: none;
- }
- .block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line {
- background: var(--wp-admin-theme-color);
- height: 1px;
- }
- .block-editor-list-view-drop-indicator:not([data-y-axis=middle][data-x-axis=right]) > .components-popover__content {
- margin-left: 0;
- border: none;
- box-shadow: none;
- }
- .block-editor-list-view-placeholder {
- padding: 0;
- margin: 0;
- height: 36px;
- }
- .modal-open .block-editor-media-replace-flow__options {
- display: none;
- }
- .block-editor-media-replace-flow__indicator {
- margin-left: 4px;
- }
- .block-editor-media-flow__url-input {
- border-top: 1px solid #1e1e1e;
- margin-top: 8px;
- margin-right: -8px;
- margin-left: -8px;
- padding: 16px;
- }
- .block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {
- display: block;
- top: 16px;
- margin-bottom: 8px;
- }
- .block-editor-media-flow__url-input .block-editor-link-control {
- width: 220px;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input {
- padding: 0;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .components-base-control .components-base-control__field {
- margin-bottom: 0;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-title {
- max-width: 180px;
- white-space: nowrap;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info {
- white-space: nowrap;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item.is-current {
- width: auto;
- padding: 0;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=text] {
- margin: 0;
- width: 100%;
- }
- .block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {
- top: 0;
- right: 4px;
- }
- .block-editor-media-flow__error {
- padding: 0 20px 20px 20px;
- max-width: 255px;
- }
- .block-editor-media-flow__error .components-with-notices-ui {
- max-width: 255px;
- }
- .block-editor-media-flow__error .components-with-notices-ui .components-notice__content {
- overflow: hidden;
- word-wrap: break-word;
- }
- .block-editor-media-flow__error .components-with-notices-ui .components-notice__dismiss {
- position: absolute;
- right: 10px;
- }
- .block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button {
- margin-bottom: 0;
- }
- .block-editor-media-placeholder__url-input-form {
- display: flex;
- }
- .block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
- width: 100%;
- min-width: 200px;
- flex-grow: 1;
- border: none;
- border-radius: 0;
- margin: 2px;
- }
- @media (min-width: 600px) {
- .block-editor-media-placeholder__url-input-form input[type=url].block-editor-media-placeholder__url-input-field {
- width: 300px;
- }
- }
- .block-editor-media-placeholder__url-input-submit-button {
- flex-shrink: 1;
- }
- .block-editor-media-placeholder__button {
- margin-bottom: 0.5rem;
- }
- .block-editor-media-placeholder__cancel-button.is-link {
- margin: 1em;
- display: block;
- }
- .block-editor-media-placeholder.is-appender {
- min-height: 0;
- }
- .block-editor-media-placeholder.is-appender:hover {
- cursor: pointer;
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- }
- .block-editor-multi-selection-inspector__card {
- display: flex;
- align-items: flex-start;
- padding: 16px;
- }
- .block-editor-multi-selection-inspector__card-content {
- flex-grow: 1;
- }
- .block-editor-multi-selection-inspector__card-title {
- font-weight: 500;
- margin-bottom: 5px;
- }
- .block-editor-multi-selection-inspector__card-description {
- font-size: 13px;
- }
- .block-editor-multi-selection-inspector__card .block-editor-block-icon {
- margin-left: -2px;
- margin-right: 10px;
- padding: 0 3px;
- width: 36px;
- height: 24px;
- }
- .block-editor-plain-text {
- box-shadow: none;
- font-family: inherit;
- font-size: inherit;
- color: inherit;
- line-height: inherit;
- border: none;
- padding: 0;
- margin: 0;
- width: 100%;
- }
- .block-editor-responsive-block-control {
- margin-bottom: 28px;
- border-bottom: 1px solid #ccc;
- padding-bottom: 14px;
- }
- .block-editor-responsive-block-control:last-child {
- padding-bottom: 0;
- border-bottom: 0;
- }
- .block-editor-responsive-block-control__title {
- margin: 0;
- margin-bottom: 0.6em;
- margin-left: -3px;
- }
- .block-editor-responsive-block-control__label {
- font-weight: 600;
- margin-bottom: 0.6em;
- margin-left: -3px;
- }
- .block-editor-responsive-block-control__inner {
- margin-left: -1px;
- }
- .block-editor-responsive-block-control__toggle {
- margin-left: 1px;
- }
- .block-editor-responsive-block-control .components-base-control__help {
- border: 0;
- clip: rect(1px, 1px, 1px, 1px);
- -webkit-clip-path: inset(50%);
- clip-path: inset(50%);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
- word-wrap: normal !important;
- }
- .rich-text [data-rich-text-placeholder] {
- pointer-events: none;
- }
- .rich-text [data-rich-text-placeholder]::after {
- content: attr(data-rich-text-placeholder);
- opacity: 0.62;
- }
- .rich-text:focus {
- outline: none;
- }
- .rich-text:focus [data-rich-text-format-boundary] {
- border-radius: 2px;
- }
- .block-editor-rich-text__editable > p:first-child {
- margin-top: 0;
- }
- figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before {
- opacity: 0.8;
- }
- .components-popover.block-editor-rich-text__inline-format-toolbar {
- z-index: 99998;
- }
- .components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {
- width: auto;
- min-width: auto;
- margin-bottom: 8px;
- box-shadow: none;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- background-color: #fff;
- }
- .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group,
- .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar {
- border: none;
- }
- .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control,
- .components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle {
- min-width: 48px;
- min-height: 48px;
- padding-left: 12px;
- padding-right: 12px;
- }
- .block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle {
- justify-content: center;
- }
- .show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon {
- width: auto;
- }
- .show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg {
- display: none;
- }
- .show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon::after {
- content: attr(aria-label);
- }
- [data-rich-text-script] {
- display: inline;
- }
- [data-rich-text-script]::before {
- content: "</>";
- background: yellow;
- }
- .block-editor-skip-to-selected-block {
- position: absolute;
- top: -9999em;
- }
- .block-editor-skip-to-selected-block:focus {
- height: auto;
- width: auto;
- display: block;
- font-size: 14px;
- font-weight: 600;
- padding: 15px 23px 14px;
- background: #f1f1f1;
- color: var(--wp-admin-theme-color);
- line-height: normal;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- text-decoration: none;
- outline: none;
- z-index: 100000;
- }
- .block-editor-text-transform-control {
- flex: 0 0 50%;
- }
- .block-editor-text-transform-control legend {
- margin-bottom: 8px;
- }
- .block-editor-text-transform-control .block-editor-text-transform-control__buttons {
- display: inline-flex;
- margin-bottom: 24px;
- }
- .block-editor-text-transform-control .block-editor-text-transform-control__buttons .components-button.has-icon {
- min-width: 24px;
- padding: 0;
- margin-right: 4px;
- }
- .block-editor-text-decoration-control {
- flex: 0 0 50%;
- }
- .block-editor-text-decoration-control legend {
- margin-bottom: 8px;
- }
- .block-editor-text-decoration-control .block-editor-text-decoration-control__buttons {
- display: inline-flex;
- margin-bottom: 24px;
- }
- .block-editor-text-decoration-control .block-editor-text-decoration-control__buttons .components-button.has-icon {
- min-width: 24px;
- padding: 0;
- margin-right: 4px;
- }
- .block-editor-tool-selector__help {
- margin-top: 8px;
- margin-left: -8px;
- margin-right: -8px;
- margin-bottom: -8px;
- padding: 16px;
- border-top: 1px solid #ddd;
- color: #757575;
- min-width: 280px;
- }
- .block-editor-block-list__block .block-editor-url-input,
- .components-popover .block-editor-url-input,
- .block-editor-url-input {
- flex-grow: 1;
- position: relative;
- padding: 1px;
- }
- .block-editor-block-list__block .block-editor-url-input input[type=text],
- .components-popover .block-editor-url-input input[type=text],
- .block-editor-url-input input[type=text] {
- width: 100%;
- padding: 8px 8px 8px 12px;
- border: none;
- border-radius: 0;
- margin-left: 0;
- margin-right: 0;
- /* Fonts smaller than 16px causes mobile safari to zoom. */
- font-size: 16px;
- }
- @media (min-width: 600px) {
- .block-editor-block-list__block .block-editor-url-input input[type=text],
- .components-popover .block-editor-url-input input[type=text],
- .block-editor-url-input input[type=text] {
- width: 300px;
- }
- }
- @media (min-width: 600px) {
- .block-editor-block-list__block .block-editor-url-input input[type=text],
- .components-popover .block-editor-url-input input[type=text],
- .block-editor-url-input input[type=text] {
- font-size: 13px;
- }
- }
- .block-editor-block-list__block .block-editor-url-input input[type=text]::-ms-clear,
- .components-popover .block-editor-url-input input[type=text]::-ms-clear,
- .block-editor-url-input input[type=text]::-ms-clear {
- display: none;
- }
- .block-editor-block-list__block .block-editor-url-input.is-full-width,
- .components-popover .block-editor-url-input.is-full-width,
- .block-editor-url-input.is-full-width {
- width: 100%;
- }
- .block-editor-block-list__block .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
- .components-popover .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text],
- .block-editor-url-input.is-full-width .block-editor-url-input__input[type=text] {
- width: 100%;
- }
- .block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,
- .components-popover .block-editor-url-input.is-full-width__suggestions,
- .block-editor-url-input.is-full-width__suggestions {
- width: 100%;
- }
- .block-editor-block-list__block .block-editor-url-input .components-spinner,
- .components-popover .block-editor-url-input .components-spinner,
- .block-editor-url-input .components-spinner {
- position: absolute;
- right: 8px 8px 8px 12px;
- bottom: 8px 8px 8px 12px8px1;
- margin: 0;
- }
- .block-editor-url-input__input[type=text] {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- padding: 6px 8px;
- box-shadow: 0 0 0 transparent;
- transition: box-shadow 0.1s linear;
- border-radius: 2px;
- border: 1px solid #757575;
- /* Fonts smaller than 16px causes mobile safari to zoom. */
- font-size: 16px;
- /* Override core line-height. To be reviewed. */
- line-height: normal;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-url-input__input[type=text] {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 600px) {
- .block-editor-url-input__input[type=text] {
- font-size: 13px;
- /* Override core line-height. To be reviewed. */
- line-height: normal;
- }
- }
- .block-editor-url-input__input[type=text]:focus {
- border-color: var(--wp-admin-theme-color);
- box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
- outline: 2px solid transparent;
- }
- .block-editor-url-input__input[type=text]::-webkit-input-placeholder {
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-url-input__input[type=text]::-moz-placeholder {
- opacity: 1;
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-url-input__input[type=text]:-ms-input-placeholder {
- color: rgba(30, 30, 30, 0.62);
- }
- .block-editor-url-input__suggestions {
- max-height: 200px;
- transition: all 0.15s ease-in-out;
- padding: 4px 0;
- width: 302px;
- overflow-y: auto;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-url-input__suggestions {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-url-input__suggestions,
- .block-editor-url-input .components-spinner {
- display: none;
- }
- @media (min-width: 600px) {
- .block-editor-url-input__suggestions,
- .block-editor-url-input .components-spinner {
- display: grid;
- }
- }
- .block-editor-url-input__suggestion {
- min-height: 36px;
- height: auto;
- color: #757575;
- display: block;
- font-size: 13px;
- cursor: pointer;
- background: #fff;
- width: 100%;
- border: none;
- text-align: left;
- box-shadow: none;
- }
- .block-editor-url-input__suggestion:hover {
- background: #ddd;
- }
- .block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected {
- background: var(--wp-admin-theme-color-darker-20);
- color: #fff;
- outline: none;
- }
- .components-toolbar-group > .block-editor-url-input__button,
- .components-toolbar > .block-editor-url-input__button {
- position: inherit;
- }
- .block-editor-url-input__button .block-editor-url-input__back {
- margin-right: 4px;
- overflow: visible;
- }
- .block-editor-url-input__button .block-editor-url-input__back::after {
- content: "";
- position: absolute;
- display: block;
- width: 1px;
- height: 24px;
- right: -1px;
- background: #ddd;
- }
- .block-editor-url-input__button-modal {
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
- border: 1px solid #ddd;
- background: #fff;
- }
- .block-editor-url-input__button-modal-line {
- display: flex;
- flex-direction: row;
- flex-grow: 1;
- flex-shrink: 1;
- min-width: 0;
- align-items: flex-start;
- }
- .block-editor-url-input__button-modal-line .components-button {
- flex-shrink: 0;
- width: 36px;
- height: 36px;
- }
- .block-editor-url-popover__additional-controls {
- border-top: 1px solid #ddd;
- }
- .block-editor-url-popover__additional-controls > div[role=menu] .components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) > svg {
- box-shadow: none;
- }
- .block-editor-url-popover__additional-controls div[role=menu] > .components-button {
- padding-left: 12px;
- }
- .block-editor-url-popover__row {
- display: flex;
- }
- .block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) {
- flex-grow: 1;
- }
- .block-editor-url-popover .components-button.has-icon {
- padding: 3px;
- }
- .block-editor-url-popover .components-button.has-icon > svg {
- padding: 5px;
- border-radius: 2px;
- height: 30px;
- width: 30px;
- }
- .block-editor-url-popover .components-button.has-icon:not(:disabled):focus {
- box-shadow: none;
- }
- .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
- outline: 2px solid transparent;
- }
- .block-editor-url-popover__settings-toggle {
- flex-shrink: 0;
- border-radius: 0;
- border-left: 1px solid #ddd;
- margin-left: 1px;
- }
- .block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon {
- transform: rotate(180deg);
- }
- .block-editor-url-popover__input-container .components-base-control:last-child,
- .block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field {
- margin-bottom: 0;
- }
- .block-editor-url-popover__settings {
- display: block;
- padding: 16px;
- border-top: 1px solid #ddd;
- }
- .block-editor-url-popover__link-editor,
- .block-editor-url-popover__link-viewer {
- display: flex;
- }
- .block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field,
- .block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field {
- margin-bottom: 0;
- }
- .block-editor-url-popover__link-editor .block-editor-url-input .components-spinner,
- .block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner {
- bottom: 8px 8px 8px 12px1;
- }
- .block-editor-url-popover__link-viewer-url {
- margin: 7px;
- flex-grow: 1;
- flex-shrink: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- min-width: 150px;
- max-width: 500px;
- }
- .block-editor-url-popover__link-viewer-url.has-invalid-link {
- color: #cc1818;
- }
- .block-editor-warning {
- align-items: center;
- display: flex;
- flex-wrap: wrap;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- padding: 1em;
- border: 1px solid #1e1e1e;
- border-radius: 2px;
- background-color: #fff;
- }
- .block-editor-warning .block-editor-warning__message {
- line-height: 1.4;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- color: #1e1e1e;
- margin: 0;
- }
- .block-editor-warning p.block-editor-warning__message.block-editor-warning__message {
- min-height: auto;
- }
- .block-editor-warning .block-editor-warning__contents {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: baseline;
- width: 100%;
- }
- .block-editor-warning .block-editor-warning__actions {
- display: flex;
- margin-top: 1em;
- }
- .block-editor-warning .block-editor-warning__action {
- margin: 0 8px 0 0;
- }
- .block-editor-warning__secondary {
- margin: auto 0 auto 8px;
- }
- .components-popover.block-editor-warning__dropdown {
- z-index: 99998;
- }
- .html-anchor-control .components-external-link {
- display: block;
- margin-top: 8px;
- }
- .block-editor-hooks__layout-controls {
- display: flex;
- margin-bottom: 16px;
- }
- .block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit {
- display: flex;
- margin-right: 24px;
- }
- .block-editor-hooks__layout-controls .block-editor-hooks__layout-controls-unit svg {
- margin: auto 0 4px 8px;
- }
- .block-editor-hooks__layout-controls-reset {
- display: flex;
- justify-content: flex-end;
- margin-bottom: 24px;
- }
- .block-editor-hooks__layout-controls-helptext {
- font-size: 12px;
- }
- .block-editor-hooks__flex-layout-justification-controls,
- .block-editor-hooks__flex-layout-orientation-controls {
- margin-bottom: 12px;
- }
- .block-editor-hooks__flex-layout-justification-controls legend,
- .block-editor-hooks__flex-layout-orientation-controls legend {
- margin-bottom: 8px;
- }
- .border-block-support-panel .single-column {
- grid-column: span 1;
- }
- .dimensions-block-support-panel .single-column {
- grid-column: span 1;
- }
- .typography-block-support-panel .components-font-appearance-control,
- .typography-block-support-panel .components-font-size-picker__controls,
- .typography-block-support-panel .block-editor-text-decoration-control__buttons,
- .typography-block-support-panel .block-editor-text-transform-control__buttons {
- margin-bottom: 0;
- }
- .typography-block-support-panel .single-column {
- grid-column: span 1;
- }
- .color-block-support-panel {
- /* Increased specificity required to remove the slot wrapper's row gap */
- /**
- * The following styles replicate the separated border of the
- * `ItemGroup` component but allows for hidden items. This is because
- * to maintain the order of `ToolsPanel` controls, each `ToolsPanelItem`
- * must at least render a placeholder which would otherwise interfere
- * with the `:last-child` styles.
- */
- /**
- * The following few styles fix the layout and spacing for the due to the
- * introduced wrapper element by the `Item` component.
- */
- }
- .color-block-support-panel .block-editor-contrast-checker {
- /**
- * Contrast checkers are forced to the bottom of the panel so all
- * injected color controls can appear as a single item group without
- * the contrast checkers suddenly appearing between items.
- */
- order: 9999;
- grid-column: span 2;
- margin-top: 16px;
- }
- .color-block-support-panel .block-editor-contrast-checker .components-notice__content {
- margin-right: 0;
- }
- .color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper {
- row-gap: 0;
- }
- .color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item {
- padding: 0;
- border-left: 1px solid rgba(0, 0, 0, 0.1);
- border-right: 1px solid rgba(0, 0, 0, 0.1);
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
- }
- .color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first {
- border-top-left-radius: 2px;
- border-top-right-radius: 2px;
- border-top: 1px solid rgba(0, 0, 0, 0.1);
- }
- .color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.last {
- border-bottom-left-radius: 2px;
- border-bottom-right-radius: 2px;
- }
- .color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div,
- .color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item > div > button {
- border-radius: inherit;
- }
- .color-block-support-panel .block-editor-panel-color-gradient-settings__color-indicator {
- background: linear-gradient(-45deg, transparent 48%, #ddd 48%, #ddd 52%, transparent 52%);
- }
- .color-block-support-panel .block-editor-tools-panel-color-dropdown {
- display: block;
- padding: 0;
- }
- .color-block-support-panel .block-editor-tools-panel-color-dropdown > button {
- height: 46px;
- }
- .color-block-support-panel .block-editor-tools-panel-color-dropdown > button.is-open {
- background: #f0f0f0;
- color: var(--wp-admin-theme-color);
- }
- .color-block-support-panel .color-block-support-panel__item-group > div {
- grid-column: span 2;
- border-radius: inherit;
- }
- /**
- * Block Toolbar
- */
- .block-editor-block-toolbar {
- display: flex;
- flex-grow: 1;
- width: 100%;
- position: relative;
- overflow-y: hidden;
- overflow-x: auto;
- transition: border-color 0.1s linear, box-shadow 0.1s linear;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-block-toolbar {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 600px) {
- .block-editor-block-toolbar {
- overflow: inherit;
- }
- }
- .block-editor-block-toolbar .components-toolbar-group,
- .block-editor-block-toolbar .components-toolbar {
- background: none;
- line-height: 0;
- margin-top: -1px;
- margin-bottom: -1px;
- border: 0;
- border-right: 1px solid #ddd;
- }
- .block-editor-block-toolbar > :last-child,
- .block-editor-block-toolbar > :last-child .components-toolbar-group,
- .block-editor-block-toolbar > :last-child .components-toolbar {
- border-right: none;
- }
- .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed) {
- margin-left: calc(48px + 8px);
- }
- .show-icon-labels .block-editor-block-contextual-toolbar.has-parent:not(.is-fixed) {
- margin-left: 0;
- }
- .block-editor-block-parent-selector {
- position: absolute;
- top: -1px;
- left: calc(-48px - 8px - 1px);
- }
- .show-icon-labels .block-editor-block-parent-selector {
- position: relative;
- left: auto;
- top: auto;
- margin-top: -1px;
- margin-left: -1px;
- margin-bottom: -1px;
- }
- .block-editor-block-toolbar__block-controls {
- height: auto !important;
- padding: 0 !important;
- margin-left: -1px;
- }
- .block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
- .block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
- width: 24px !important;
- margin: 0 !important;
- }
- .block-editor-block-toolbar__block-controls .block-editor-block-mover {
- margin-left: -6px;
- }
- .block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar {
- margin-left: -6px !important;
- }
- .block-editor-block-toolbar__block-controls .components-toolbar-group {
- padding: 0;
- }
- .block-editor-block-toolbar .components-toolbar-group,
- .block-editor-block-toolbar .components-toolbar,
- .block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group,
- .block-editor-rich-text__inline-format-toolbar-group .components-toolbar {
- display: flex;
- flex-wrap: nowrap;
- }
- .block-editor-block-toolbar__slot {
- display: inline-block;
- line-height: 0;
- }
- @supports (position: sticky) {
- .block-editor-block-toolbar__slot {
- display: inline-flex;
- }
- }
- .show-icon-labels .block-editor-block-toolbar .components-button.has-icon {
- width: auto;
- }
- .show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg {
- display: none;
- }
- .show-icon-labels .block-editor-block-toolbar .components-button.has-icon::after {
- content: attr(aria-label);
- font-size: 12px;
- }
- .show-icon-labels .components-accessible-toolbar .components-toolbar-group > div:first-child:last-child > .components-button.has-icon {
- padding-left: 6px;
- padding-right: 6px;
- }
- .show-icon-labels .block-editor-block-switcher {
- border-right: 1px solid #1e1e1e;
- }
- .show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle {
- margin-left: 0;
- }
- .show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
- .show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
- width: 0 !important;
- height: 0 !important;
- }
- .show-icon-labels .block-editor-block-parent-selector__button .block-editor-block-icon {
- width: 0;
- }
- .show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover {
- margin-left: 0;
- white-space: nowrap;
- }
- .show-icon-labels .block-editor-block-mover-button {
- padding-left: 8px !important;
- padding-right: 8px !important;
- }
- .show-icon-labels .block-editor-block-mover__drag-handle.has-icon {
- padding-left: 6px !important;
- padding-right: 6px !important;
- border-right: 1px solid #1e1e1e;
- }
- @media (min-width: 600px) {
- .show-icon-labels .is-up-button.is-up-button.is-up-button {
- border-bottom: 1px solid #1e1e1e;
- margin-right: 0;
- border-radius: 0;
- }
- }
- .show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
- width: auto;
- }
- .show-icon-labels .components-toolbar,
- .show-icon-labels .components-toolbar-group {
- flex-shrink: 1;
- }
- .show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button + .components-button {
- margin-left: 6px;
- }
- .block-editor-inserter {
- display: inline-block;
- background: none;
- border: none;
- padding: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- line-height: 0;
- }
- @media (min-width: 782px) {
- .block-editor-inserter {
- position: relative;
- }
- }
- .block-editor-inserter__content {
- position: relative;
- }
- .block-editor-inserter__popover.is-quick .components-popover__content {
- border: none;
- }
- .block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > * {
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- .block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:first-child {
- border-top: 1px solid #ccc;
- }
- .block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *:last-child {
- border-bottom: 1px solid #ccc;
- }
- .block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter > *.components-button {
- border: 1px solid #1e1e1e;
- }
- .block-editor-inserter__popover .block-editor-inserter__menu {
- margin: -12px;
- }
- .block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tabs .components-tab-panel__tabs {
- top: 60px;
- }
- .block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area {
- overflow: visible;
- height: auto;
- }
- .block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container {
- display: none;
- }
- .block-editor-inserter__toggle.components-button {
- display: inline-flex;
- align-items: center;
- cursor: pointer;
- border: none;
- outline: none;
- padding: 0;
- transition: color 0.2s ease;
- }
- @media (prefers-reduced-motion: reduce) {
- .block-editor-inserter__toggle.components-button {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .block-editor-inserter__menu {
- height: 100%;
- position: relative;
- overflow: visible;
- }
- .block-editor-inserter__main-area {
- width: auto;
- overflow-y: auto;
- height: 100%;
- }
- @media (min-width: 782px) {
- .block-editor-inserter__main-area {
- width: 350px;
- }
- }
- .block-editor-inserter__inline-elements {
- margin-top: -1px;
- }
- .block-editor-inserter__menu.is-bottom::after {
- border-bottom-color: #fff;
- }
- .components-popover.block-editor-inserter__popover {
- z-index: 99999;
- }
- .block-editor-inserter__search {
- background: #fff;
- padding: 16px 16px 0 16px;
- position: sticky;
- top: 0;
- z-index: 1;
- }
- .block-editor-inserter__search .components-search-control__icon {
- right: 20px;
- }
- .block-editor-inserter__search .components-base-control__field {
- margin-bottom: 0;
- }
- .block-editor-inserter__tabs {
- display: flex;
- flex-direction: column;
- }
- .block-editor-inserter__tabs .components-tab-panel__tabs {
- position: sticky;
- top: 64px;
- background: #fff;
- z-index: 1;
- border-bottom: 1px solid #ddd;
- }
- .block-editor-inserter__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
- flex-grow: 1;
- margin-bottom: -1px;
- }
- .block-editor-inserter__tabs .components-tab-panel__tab-content {
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- position: relative;
- z-index: 0;
- }
- .block-editor-inserter__panel-header {
- display: inline-flex;
- align-items: center;
- padding: 16px 16px 0;
- }
- .block-editor-inserter__panel-header-patterns {
- padding: 16px 16px 0;
- }
- .block-editor-inserter__panel-content {
- padding: 16px;
- }
- .block-editor-inserter__panel-title,
- .block-editor-inserter__panel-title button {
- margin: 0 12px 0 0;
- color: #757575;
- text-transform: uppercase;
- font-size: 11px;
- font-weight: 500;
- }
- .block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input {
- height: 36px;
- line-height: 36px;
- }
- .block-editor-inserter__panel-dropdown select {
- border: none;
- }
- .block-editor-inserter__block-list {
- flex-grow: 1;
- position: relative;
- }
- .block-editor-inserter__reusable-blocks-panel {
- position: relative;
- text-align: right;
- }
- .block-editor-inserter__manage-reusable-blocks {
- display: inline-block;
- margin: 16px;
- }
- .block-editor-inserter__no-results {
- padding: 32px;
- text-align: center;
- }
- .block-editor-inserter__no-results-icon {
- fill: #949494;
- }
- .block-editor-inserter__child-blocks {
- padding: 0 16px;
- }
- .block-editor-inserter__parent-block-header {
- display: flex;
- align-items: center;
- }
- .block-editor-inserter__parent-block-header h2 {
- font-size: 13px;
- }
- .block-editor-inserter__parent-block-header .block-editor-block-icon {
- margin-right: 8px;
- }
- .block-editor-inserter__preview-container {
- display: none;
- width: 300px;
- background: #fff;
- border-radius: 2px;
- border: 1px solid #ddd;
- position: absolute;
- top: 16px;
- left: calc(100% + 16px);
- max-height: calc(100% - 32px);
- overflow-y: hidden;
- }
- @media (min-width: 782px) {
- .block-editor-inserter__preview-container {
- display: block;
- }
- }
- .block-editor-inserter__preview-container .block-editor-block-card {
- padding: 16px;
- }
- .block-editor-inserter__preview-container .block-editor-block-card__title {
- font-size: 13px;
- }
- .block-editor-inserter__preview-content {
- min-height: 144px;
- background: #f0f0f0;
- display: grid;
- flex-grow: 1;
- align-items: center;
- }
- .block-editor-inserter__preview-content-missing {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 144px;
- color: #757575;
- background: #f0f0f0;
- }
- .block-editor-inserter__tips {
- border-top: 1px solid #ddd;
- padding: 16px;
- flex-shrink: 0;
- position: relative;
- }
- .block-editor-inserter__manage-reusable-blocks-container {
- padding: 16px;
- }
- .block-editor-inserter__quick-inserter {
- width: 100%;
- max-width: 100%;
- }
- @media (min-width: 782px) {
- .block-editor-inserter__quick-inserter {
- width: 350px;
- }
- }
- .block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header {
- height: 0;
- padding: 0;
- float: left;
- }
- .block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content,
- .block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content {
- padding: 16px;
- }
- .block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list {
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-gap: 8px;
- }
- .block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
- margin-bottom: 0;
- }
- .block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-preview__container {
- min-height: 100px;
- }
- .block-editor-inserter__quick-inserter-separator {
- border-top: 1px solid #ddd;
- }
- .block-editor-inserter__popover.is-quick > .components-popover__content > div {
- padding: 0;
- }
- .block-editor-inserter__quick-inserter-expand.components-button {
- display: block;
- background: #1e1e1e;
- color: #fff;
- width: 100%;
- height: 44px;
- border-radius: 0;
- }
- .block-editor-inserter__quick-inserter-expand.components-button:hover {
- color: #fff;
- }
- .block-editor-inserter__quick-inserter-expand.components-button:active {
- color: #ccc;
- }
- .block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled) {
- box-shadow: none;
- background: var(--wp-admin-theme-color);
- border-color: var(--wp-admin-theme-color);
- }
- .block-editor-block-patterns-explorer__sidebar {
- position: absolute;
- top: 60px;
- left: 0;
- bottom: 0;
- width: 280px;
- padding: 24px 32px 32px;
- overflow-x: visible;
- overflow-y: scroll;
- }
- .block-editor-block-patterns-explorer__sidebar__categories-list__item {
- display: block;
- width: 100%;
- height: 48px;
- text-align: left;
- }
- .block-editor-block-patterns-explorer__search {
- margin-bottom: 32px;
- }
- .block-editor-block-patterns-explorer__search-results-count {
- padding-bottom: 32px;
- }
- .block-editor-block-patterns-explorer__list {
- margin-left: 248px;
- }
- .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
- display: grid;
- grid-gap: 32px;
- grid-template-columns: repeat(1, 1fr);
- }
- @media (min-width: 1080px) {
- .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
- grid-template-columns: repeat(2, 1fr);
- }
- }
- @media (min-width: 1440px) {
- .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
- grid-template-columns: repeat(3, 1fr);
- }
- }
- .block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
- min-height: 240px;
- }
- .block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-preview__container {
- height: inherit;
- min-height: 100px;
- max-height: 800px;
- }
- .block-editor-post-preview__dropdown {
- padding: 0;
- }
- .block-editor-post-preview__button-resize.block-editor-post-preview__button-resize {
- padding-left: 40px;
- }
- .block-editor-post-preview__button-resize.block-editor-post-preview__button-resize.has-icon {
- padding-left: 8px;
- }
- .block-editor-post-preview__dropdown-content .components-popover__content {
- overflow-y: visible;
- }
- .block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:first-child {
- padding-bottom: 8px;
- }
- .block-editor-post-preview__dropdown-content.edit-post-post-preview-dropdown .components-menu-group:last-child {
- margin-bottom: 0;
- }
- .block-editor-post-preview__dropdown-content .components-menu-group + .components-menu-group {
- padding: 8px;
- }
- @media (min-width: 600px) {
- .edit-post-header__settings .editor-post-preview,
- .edit-site-header__actions .editor-post-preview {
- display: none;
- }
- }
- @media (min-width: 600px) {
- .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
- .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
- transition: opacity 0.1s linear;
- }
- }
- @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
- .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-save-draft,
- .edit-post-header.has-reduced-ui .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header.has-reduced-ui .edit-post-header__settings .block-editor-post-preview__button-toggle {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 600px) {
- .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-save-draft,
- .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle {
- opacity: 0;
- }
- .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header__settings .block-editor-post-preview__button-toggle.is-opened {
- opacity: 1;
- }
- }
- body.admin-color-light {
- --wp-admin-theme-color: #0085ba;
- --wp-admin-theme-color--rgb: 0, 133, 186;
- --wp-admin-theme-color-darker-10: #0073a1;
- --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
- --wp-admin-theme-color-darker-20: #006187;
- --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-light {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-modern {
- --wp-admin-theme-color: #3858e9;
- --wp-admin-theme-color--rgb: 56, 88, 233;
- --wp-admin-theme-color-darker-10: #2145e6;
- --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
- --wp-admin-theme-color-darker-20: #183ad6;
- --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-modern {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-blue {
- --wp-admin-theme-color: #096484;
- --wp-admin-theme-color--rgb: 9, 100, 132;
- --wp-admin-theme-color-darker-10: #07526c;
- --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
- --wp-admin-theme-color-darker-20: #064054;
- --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-blue {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-coffee {
- --wp-admin-theme-color: #46403c;
- --wp-admin-theme-color--rgb: 70, 64, 60;
- --wp-admin-theme-color-darker-10: #383330;
- --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
- --wp-admin-theme-color-darker-20: #2b2724;
- --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-coffee {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-ectoplasm {
- --wp-admin-theme-color: #523f6d;
- --wp-admin-theme-color--rgb: 82, 63, 109;
- --wp-admin-theme-color-darker-10: #46365d;
- --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
- --wp-admin-theme-color-darker-20: #3a2c4d;
- --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-ectoplasm {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-midnight {
- --wp-admin-theme-color: #e14d43;
- --wp-admin-theme-color--rgb: 225, 77, 67;
- --wp-admin-theme-color-darker-10: #dd382d;
- --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
- --wp-admin-theme-color-darker-20: #d02c21;
- --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-midnight {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-ocean {
- --wp-admin-theme-color: #627c83;
- --wp-admin-theme-color--rgb: 98, 124, 131;
- --wp-admin-theme-color-darker-10: #576e74;
- --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
- --wp-admin-theme-color-darker-20: #4c6066;
- --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-ocean {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-sunrise {
- --wp-admin-theme-color: #dd823b;
- --wp-admin-theme-color--rgb: 221, 130, 59;
- --wp-admin-theme-color-darker-10: #d97426;
- --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
- --wp-admin-theme-color-darker-20: #c36922;
- --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-sunrise {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
|