style.css 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827
  1. @charset "UTF-8";
  2. /**
  3. * Colors
  4. */
  5. /**
  6. * Breakpoints & Media Queries
  7. */
  8. /**
  9. * SCSS Variables.
  10. *
  11. * Please use variables from this sheet to ensure consistency across the UI.
  12. * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
  13. * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
  14. */
  15. /**
  16. * Colors
  17. */
  18. /**
  19. * Fonts & basic variables.
  20. */
  21. /**
  22. * Grid System.
  23. * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
  24. */
  25. /**
  26. * Dimensions.
  27. */
  28. /**
  29. * Shadows.
  30. */
  31. /**
  32. * Editor widths.
  33. */
  34. /**
  35. * Block & Editor UI.
  36. */
  37. /**
  38. * Block paddings.
  39. */
  40. /**
  41. * React Native specific.
  42. * These variables do not appear to be used anywhere else.
  43. */
  44. /**
  45. * Converts a hex value into the rgb equivalent.
  46. *
  47. * @param {string} hex - the hexadecimal value to convert
  48. * @return {string} comma separated rgb values
  49. */
  50. /**
  51. * Breakpoint mixins
  52. */
  53. /**
  54. * Long content fade mixin
  55. *
  56. * Creates a fading overlay to signify that the content is longer
  57. * than the space allows.
  58. */
  59. /**
  60. * Focus styles.
  61. */
  62. /**
  63. * Applies editor left position to the selector passed as argument
  64. */
  65. /**
  66. * Styles that are reused verbatim in a few places
  67. */
  68. /**
  69. * Allows users to opt-out of animations via OS-level preferences.
  70. */
  71. /**
  72. * Reset default styles for JavaScript UI based pages.
  73. * This is a WP-admin agnostic reset
  74. */
  75. /**
  76. * Reset the WP Admin page styles for Gutenberg-like pages.
  77. */
  78. :root {
  79. --wp-admin-theme-color: #007cba;
  80. --wp-admin-theme-color--rgb: 0, 124, 186;
  81. --wp-admin-theme-color-darker-10: #006ba1;
  82. --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  83. --wp-admin-theme-color-darker-20: #005a87;
  84. --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  85. --wp-admin-border-width-focus: 2px;
  86. }
  87. @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  88. :root {
  89. --wp-admin-border-width-focus: 1.5px;
  90. }
  91. }
  92. .components-animate__appear {
  93. animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
  94. animation-fill-mode: forwards;
  95. }
  96. @media (prefers-reduced-motion: reduce) {
  97. .components-animate__appear {
  98. animation-duration: 1ms;
  99. animation-delay: 0s;
  100. }
  101. }
  102. .components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
  103. transform-origin: top left;
  104. }
  105. .components-animate__appear.is-from-top.is-from-right {
  106. transform-origin: top right;
  107. }
  108. .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
  109. transform-origin: bottom left;
  110. }
  111. .components-animate__appear.is-from-bottom.is-from-right {
  112. transform-origin: bottom right;
  113. }
  114. @keyframes components-animate__appear-animation {
  115. from {
  116. transform: translateY(-2em) scaleY(0) scaleX(0);
  117. }
  118. to {
  119. transform: translateY(0%) scaleY(1) scaleX(1);
  120. }
  121. }
  122. .components-animate__slide-in {
  123. animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
  124. animation-fill-mode: forwards;
  125. }
  126. @media (prefers-reduced-motion: reduce) {
  127. .components-animate__slide-in {
  128. animation-duration: 1ms;
  129. animation-delay: 0s;
  130. }
  131. }
  132. .components-animate__slide-in.is-from-left {
  133. transform: translateX(100%);
  134. }
  135. .components-animate__slide-in.is-from-right {
  136. transform: translateX(-100%);
  137. }
  138. @keyframes components-animate__slide-in-animation {
  139. 100% {
  140. transform: translateX(0%);
  141. }
  142. }
  143. .components-animate__loading {
  144. animation: components-animate__loading 1.6s ease-in-out infinite;
  145. }
  146. @keyframes components-animate__loading {
  147. 0% {
  148. opacity: 0.5;
  149. }
  150. 50% {
  151. opacity: 1;
  152. }
  153. 100% {
  154. opacity: 0.5;
  155. }
  156. }
  157. .components-autocomplete__popover .components-popover__content > div {
  158. padding: 16px;
  159. min-width: 220px;
  160. }
  161. .components-autocomplete__result.components-button {
  162. display: flex;
  163. height: auto;
  164. min-height: 36px;
  165. text-align: left;
  166. width: 100%;
  167. }
  168. .components-autocomplete__result.components-button.is-selected {
  169. box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  170. }
  171. .components-button-group {
  172. display: inline-block;
  173. }
  174. .components-button-group .components-button {
  175. border-radius: 0;
  176. display: inline-flex;
  177. color: #1e1e1e;
  178. box-shadow: inset 0 0 0 1px #1e1e1e;
  179. }
  180. .components-button-group .components-button + .components-button {
  181. margin-left: -1px;
  182. }
  183. .components-button-group .components-button:first-child {
  184. border-radius: 2px 0 0 2px;
  185. }
  186. .components-button-group .components-button:last-child {
  187. border-radius: 0 2px 2px 0;
  188. }
  189. .components-button-group .components-button:focus, .components-button-group .components-button.is-primary {
  190. position: relative;
  191. z-index: 1;
  192. }
  193. .components-button-group .components-button.is-primary {
  194. box-shadow: inset 0 0 0 1px #1e1e1e;
  195. }
  196. .components-button {
  197. display: inline-flex;
  198. text-decoration: none;
  199. font-family: inherit;
  200. font-weight: normal;
  201. font-size: 13px;
  202. margin: 0;
  203. border: 0;
  204. cursor: pointer;
  205. -webkit-appearance: none;
  206. background: none;
  207. transition: box-shadow 0.1s linear;
  208. height: 36px;
  209. align-items: center;
  210. box-sizing: border-box;
  211. padding: 6px 12px;
  212. border-radius: 2px;
  213. color: #1e1e1e;
  214. /**
  215. * Primary button style.
  216. */
  217. /**
  218. * Secondary and tertiary buttons.
  219. */
  220. /**
  221. * Secondary button style.
  222. */
  223. /**
  224. * Tertiary buttons.
  225. */
  226. /**
  227. * Destructive buttons.
  228. */
  229. /**
  230. * Link buttons.
  231. */
  232. }
  233. @media (prefers-reduced-motion: reduce) {
  234. .components-button {
  235. transition-duration: 0s;
  236. transition-delay: 0s;
  237. }
  238. }
  239. .components-button[aria-expanded=true], .components-button:hover {
  240. color: var(--wp-admin-theme-color);
  241. }
  242. .components-button[aria-disabled=true]:hover {
  243. color: initial;
  244. }
  245. .components-button:focus:not(:disabled) {
  246. box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  247. outline: 3px solid transparent;
  248. }
  249. .components-button.is-primary {
  250. white-space: nowrap;
  251. background: var(--wp-admin-theme-color);
  252. color: #fff;
  253. text-decoration: none;
  254. text-shadow: none;
  255. outline: 1px solid transparent;
  256. }
  257. .components-button.is-primary:hover:not(:disabled) {
  258. background: var(--wp-admin-theme-color-darker-10);
  259. color: #fff;
  260. }
  261. .components-button.is-primary:active:not(:disabled) {
  262. background: var(--wp-admin-theme-color-darker-20);
  263. border-color: var(--wp-admin-theme-color-darker-20);
  264. color: #fff;
  265. }
  266. .components-button.is-primary:focus:not(:disabled) {
  267. box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  268. }
  269. .components-button.is-primary:disabled, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary[aria-disabled=true], .components-button.is-primary[aria-disabled=true]:enabled, .components-button.is-primary[aria-disabled=true]:active:enabled {
  270. color: rgba(255, 255, 255, 0.4);
  271. background: var(--wp-admin-theme-color);
  272. border-color: var(--wp-admin-theme-color);
  273. opacity: 1;
  274. outline: none;
  275. }
  276. .components-button.is-primary:disabled:focus:enabled, .components-button.is-primary:disabled:active:enabled:focus:enabled, .components-button.is-primary[aria-disabled=true]:focus:enabled, .components-button.is-primary[aria-disabled=true]:enabled:focus:enabled, .components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled {
  277. box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
  278. }
  279. .components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled=true] {
  280. color: #fff;
  281. background-size: 100px 100%;
  282. /* stylelint-disable */
  283. background-image: linear-gradient(-45deg, var(--wp-admin-theme-color) 33%, var(--wp-admin-theme-color-darker-20) 33%, var(--wp-admin-theme-color-darker-20) 70%, var(--wp-admin-theme-color) 70%);
  284. /* stylelint-enable */
  285. border-color: var(--wp-admin-theme-color);
  286. }
  287. .components-button.is-secondary, .components-button.is-tertiary {
  288. outline: 1px solid transparent;
  289. }
  290. .components-button.is-secondary:active:not(:disabled), .components-button.is-tertiary:active:not(:disabled) {
  291. background: #ddd;
  292. color: var(--wp-admin-theme-color-darker-10);
  293. box-shadow: none;
  294. }
  295. .components-button.is-secondary:hover:not(:disabled), .components-button.is-tertiary:hover:not(:disabled) {
  296. color: var(--wp-admin-theme-color-darker-10);
  297. box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color-darker-10);
  298. }
  299. .components-button.is-secondary:disabled, .components-button.is-secondary[aria-disabled=true], .components-button.is-secondary[aria-disabled=true]:hover, .components-button.is-tertiary:disabled, .components-button.is-tertiary[aria-disabled=true], .components-button.is-tertiary[aria-disabled=true]:hover {
  300. color: #828282;
  301. background: #eaeaea;
  302. transform: none;
  303. opacity: 1;
  304. box-shadow: none;
  305. outline: none;
  306. }
  307. .components-button.is-secondary {
  308. box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color);
  309. outline: 1px solid transparent;
  310. white-space: nowrap;
  311. color: var(--wp-admin-theme-color);
  312. background: transparent;
  313. }
  314. .components-button.is-tertiary {
  315. white-space: nowrap;
  316. color: var(--wp-admin-theme-color);
  317. background: transparent;
  318. padding: 6px;
  319. }
  320. .components-button.is-tertiary .dashicon {
  321. display: inline-block;
  322. flex: 0 0 auto;
  323. }
  324. p + .components-button.is-tertiary {
  325. margin-left: -6px;
  326. }
  327. .components-button.is-destructive {
  328. color: #cc1818;
  329. box-shadow: inset 0 0 0 1px #cc1818;
  330. }
  331. .components-button.is-destructive:hover:not(:disabled) {
  332. color: #710d0d;
  333. box-shadow: inset 0 0 0 1px #710d0d;
  334. }
  335. .components-button.is-destructive:focus:not(:disabled) {
  336. color: var(--wp-admin-theme-color);
  337. }
  338. .components-button.is-destructive:active:not(:disabled) {
  339. background: #ccc;
  340. }
  341. .components-button.is-destructive.is-primary {
  342. color: #fff;
  343. background: #cc1818;
  344. box-shadow: inset 0 0 0 1px #cc1818;
  345. }
  346. .components-button.is-destructive.is-primary:hover:not(:disabled) {
  347. color: #fff;
  348. background: #710d0d;
  349. box-shadow: inset 0 0 0 1px #710d0d;
  350. }
  351. .components-button.is-destructive.is-tertiary {
  352. box-shadow: none;
  353. }
  354. .components-button.is-destructive.is-tertiary:hover:not(:disabled) {
  355. box-shadow: inset 0 0 0 1px #cc1818;
  356. color: #cc1818;
  357. }
  358. .components-button.is-destructive.is-tertiary:focus:not(:disabled) {
  359. box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #cc1818;
  360. color: #cc1818;
  361. }
  362. .components-button.is-link {
  363. margin: 0;
  364. padding: 0;
  365. box-shadow: none;
  366. border: 0;
  367. border-radius: 0;
  368. background: none;
  369. outline: none;
  370. text-align: left;
  371. color: var(--wp-admin-theme-color);
  372. text-decoration: underline;
  373. transition-property: border, background, color;
  374. transition-duration: 0.05s;
  375. transition-timing-function: ease-in-out;
  376. height: auto;
  377. }
  378. @media (prefers-reduced-motion: reduce) {
  379. .components-button.is-link {
  380. transition-duration: 0s;
  381. transition-delay: 0s;
  382. }
  383. }
  384. .components-button.is-link:focus {
  385. border-radius: 2px;
  386. }
  387. .components-button.is-link.is-destructive {
  388. color: #cc1818;
  389. }
  390. .components-button.is-link.is-destructive:active:not(:disabled), .components-button.is-link.is-destructive:hover:not(:disabled) {
  391. color: #710d0d;
  392. background: none;
  393. }
  394. .components-button.is-link.is-destructive:focus:not(:disabled) {
  395. color: var(--wp-admin-theme-color);
  396. }
  397. .components-button:not([aria-disabled=true]):active {
  398. color: inherit;
  399. }
  400. .components-button:disabled, .components-button[aria-disabled=true] {
  401. cursor: default;
  402. opacity: 0.3;
  403. }
  404. .components-button.is-busy, .components-button.is-secondary.is-busy, .components-button.is-secondary.is-busy:disabled, .components-button.is-secondary.is-busy[aria-disabled=true] {
  405. animation: components-button__busy-animation 2500ms infinite linear;
  406. opacity: 1;
  407. background-size: 100px 100%;
  408. /* stylelint-disable */
  409. background-image: linear-gradient(-45deg, #fafafa 33%, #e0e0e0 33%, #e0e0e0 70%, #fafafa 70%);
  410. /* stylelint-enable */
  411. }
  412. .components-button.is-small {
  413. height: 24px;
  414. line-height: 22px;
  415. padding: 0 8px;
  416. font-size: 11px;
  417. }
  418. .components-button.is-small.has-icon:not(.has-text) {
  419. padding: 0 8px;
  420. width: 24px;
  421. }
  422. .components-button.has-icon {
  423. padding: 6px;
  424. min-width: 36px;
  425. justify-content: center;
  426. }
  427. .components-button.has-icon .dashicon {
  428. display: inline-block;
  429. flex: 0 0 auto;
  430. margin-left: 2px;
  431. margin-right: 2px;
  432. }
  433. .components-button.has-icon.has-text {
  434. justify-content: left;
  435. }
  436. .components-button.has-icon.has-text svg {
  437. margin-right: 8px;
  438. }
  439. .components-button.has-icon.has-text .dashicon {
  440. margin-right: 10px;
  441. }
  442. .components-button.is-pressed {
  443. color: #fff;
  444. background: #1e1e1e;
  445. }
  446. .components-button.is-pressed:focus:not(:disabled) {
  447. box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  448. outline: 2px solid transparent;
  449. }
  450. .components-button.is-pressed:hover:not(:disabled) {
  451. color: #fff;
  452. background: #1e1e1e;
  453. }
  454. .components-button svg {
  455. fill: currentColor;
  456. outline: none;
  457. }
  458. @media (forced-colors: active) {
  459. .components-button svg {
  460. fill: CanvasText;
  461. }
  462. }
  463. .components-button .components-visually-hidden {
  464. height: auto;
  465. }
  466. @keyframes components-button__busy-animation {
  467. 0% {
  468. background-position: 200px 0;
  469. }
  470. }
  471. .components-checkbox-control__input[type=checkbox] {
  472. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  473. padding: 6px 8px;
  474. box-shadow: 0 0 0 transparent;
  475. transition: box-shadow 0.1s linear;
  476. border-radius: 2px;
  477. border: 1px solid #757575;
  478. /* Fonts smaller than 16px causes mobile safari to zoom. */
  479. font-size: 16px;
  480. /* Override core line-height. To be reviewed. */
  481. line-height: normal;
  482. border: 1px solid #1e1e1e;
  483. margin-right: 12px;
  484. transition: none;
  485. border-radius: 2px;
  486. background: #fff;
  487. color: #1e1e1e;
  488. clear: none;
  489. cursor: pointer;
  490. display: inline-block;
  491. line-height: 0;
  492. margin: 0 4px 0 0;
  493. outline: 0;
  494. padding: 0 !important;
  495. text-align: center;
  496. vertical-align: top;
  497. width: 24px;
  498. height: 24px;
  499. -webkit-appearance: none;
  500. appearance: none;
  501. transition: 0.1s border-color ease-in-out;
  502. }
  503. @media (prefers-reduced-motion: reduce) {
  504. .components-checkbox-control__input[type=checkbox] {
  505. transition-duration: 0s;
  506. transition-delay: 0s;
  507. }
  508. }
  509. @media (min-width: 600px) {
  510. .components-checkbox-control__input[type=checkbox] {
  511. font-size: 13px;
  512. /* Override core line-height. To be reviewed. */
  513. line-height: normal;
  514. }
  515. }
  516. .components-checkbox-control__input[type=checkbox]:focus {
  517. border-color: var(--wp-admin-theme-color);
  518. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  519. outline: 2px solid transparent;
  520. }
  521. .components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder {
  522. color: rgba(30, 30, 30, 0.62);
  523. }
  524. .components-checkbox-control__input[type=checkbox]::-moz-placeholder {
  525. opacity: 1;
  526. color: rgba(30, 30, 30, 0.62);
  527. }
  528. .components-checkbox-control__input[type=checkbox]:-ms-input-placeholder {
  529. color: rgba(30, 30, 30, 0.62);
  530. }
  531. .components-checkbox-control__input[type=checkbox]:focus {
  532. box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
  533. outline: 2px solid transparent;
  534. }
  535. .components-checkbox-control__input[type=checkbox]:checked {
  536. background: var(--wp-admin-theme-color);
  537. border-color: var(--wp-admin-theme-color);
  538. }
  539. .components-checkbox-control__input[type=checkbox]:checked::-ms-check {
  540. opacity: 0;
  541. }
  542. .components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
  543. margin: -3px -5px;
  544. color: #fff;
  545. }
  546. @media (min-width: 782px) {
  547. .components-checkbox-control__input[type=checkbox]:checked::before, .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
  548. margin: -4px 0 0 -5px;
  549. }
  550. }
  551. .components-checkbox-control__input[type=checkbox][aria-checked=mixed] {
  552. background: var(--wp-admin-theme-color);
  553. border-color: var(--wp-admin-theme-color);
  554. }
  555. .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
  556. content: "";
  557. float: left;
  558. display: inline-block;
  559. vertical-align: middle;
  560. width: 16px;
  561. /* stylelint-disable */
  562. font: normal 30px/1 dashicons;
  563. /* stylelint-enable */
  564. speak: none;
  565. -webkit-font-smoothing: antialiased;
  566. -moz-osx-font-smoothing: grayscale;
  567. }
  568. @media (min-width: 782px) {
  569. .components-checkbox-control__input[type=checkbox][aria-checked=mixed]::before {
  570. float: none;
  571. font-size: 21px;
  572. }
  573. }
  574. @media (min-width: 600px) {
  575. .components-checkbox-control__input[type=checkbox] {
  576. height: 20px;
  577. width: 20px;
  578. }
  579. }
  580. @media (prefers-reduced-motion: reduce) {
  581. .components-checkbox-control__input[type=checkbox] {
  582. transition-duration: 0s;
  583. transition-delay: 0s;
  584. }
  585. }
  586. .components-checkbox-control__input[type=checkbox]:focus {
  587. box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
  588. outline: 2px solid transparent;
  589. }
  590. .components-checkbox-control__input[type=checkbox]:checked, .components-checkbox-control__input[type=checkbox]:indeterminate {
  591. background: var(--wp-admin-theme-color);
  592. border-color: var(--wp-admin-theme-color);
  593. }
  594. .components-checkbox-control__input[type=checkbox]:checked::-ms-check, .components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check {
  595. opacity: 0;
  596. }
  597. .components-checkbox-control__input[type=checkbox]:checked::before {
  598. content: none;
  599. }
  600. .components-checkbox-control__input-container {
  601. position: relative;
  602. display: inline-block;
  603. margin-right: 12px;
  604. vertical-align: middle;
  605. width: 24px;
  606. height: 24px;
  607. }
  608. @media (min-width: 600px) {
  609. .components-checkbox-control__input-container {
  610. width: 20px;
  611. height: 20px;
  612. }
  613. }
  614. svg.components-checkbox-control__checked,
  615. svg.components-checkbox-control__indeterminate {
  616. fill: #fff;
  617. cursor: pointer;
  618. position: absolute;
  619. left: 0;
  620. top: 0;
  621. width: 24px;
  622. height: 24px;
  623. -webkit-user-select: none;
  624. user-select: none;
  625. pointer-events: none;
  626. }
  627. @media (min-width: 600px) {
  628. svg.components-checkbox-control__checked,
  629. svg.components-checkbox-control__indeterminate {
  630. left: -2px;
  631. top: -2px;
  632. }
  633. }
  634. .components-circular-option-picker {
  635. display: inline-block;
  636. width: 100%;
  637. min-width: 188px;
  638. }
  639. .components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
  640. display: flex;
  641. justify-content: flex-end;
  642. margin-top: 12px;
  643. }
  644. .components-circular-option-picker .components-circular-option-picker__swatches {
  645. display: flex;
  646. flex-wrap: wrap;
  647. gap: 12px;
  648. }
  649. .components-circular-option-picker__option-wrapper {
  650. display: inline-block;
  651. height: 28px;
  652. width: 28px;
  653. vertical-align: top;
  654. transform: scale(1);
  655. transition: 100ms transform ease;
  656. }
  657. @media (prefers-reduced-motion: reduce) {
  658. .components-circular-option-picker__option-wrapper {
  659. transition-duration: 0s;
  660. transition-delay: 0s;
  661. }
  662. }
  663. .components-circular-option-picker__option-wrapper:hover {
  664. transform: scale(1.2);
  665. }
  666. .components-circular-option-picker__option-wrapper > div {
  667. height: 100%;
  668. width: 100%;
  669. }
  670. .components-circular-option-picker__option-wrapper::before {
  671. content: "";
  672. position: absolute;
  673. top: 1px;
  674. left: 1px;
  675. bottom: 1px;
  676. right: 1px;
  677. border-radius: 50%;
  678. z-index: -1;
  679. /* stylelint-disable-next-line function-url-quotes */
  680. background: url('data:image/svg+xml,%3Csvg width="28" height="28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M6 8V6H4v2h2zM8 8V6h2v2H8zM10 16H8v-2h2v2zM12 16v-2h2v2h-2zM12 18v-2h-2v2H8v2h2v-2h2zM14 18v2h-2v-2h2zM16 18h-2v-2h2v2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z" fill="%23555D65"/%3E%3Cpath d="M18 18v2h-2v-2h2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z" fill="%23555D65"/%3E%3C/svg%3E');
  681. }
  682. .components-circular-option-picker__option {
  683. display: inline-block;
  684. vertical-align: top;
  685. height: 100%;
  686. width: 100%;
  687. border: none;
  688. border-radius: 50%;
  689. background: transparent;
  690. box-shadow: inset 0 0 0 14px;
  691. transition: 100ms box-shadow ease;
  692. cursor: pointer;
  693. }
  694. @media (prefers-reduced-motion: reduce) {
  695. .components-circular-option-picker__option {
  696. transition-duration: 0s;
  697. transition-delay: 0s;
  698. }
  699. }
  700. .components-circular-option-picker__option:hover {
  701. box-shadow: inset 0 0 0 14px !important;
  702. }
  703. .components-circular-option-picker__option.is-pressed {
  704. box-shadow: inset 0 0 0 4px;
  705. position: relative;
  706. z-index: 1;
  707. overflow: visible;
  708. }
  709. .components-circular-option-picker__option.is-pressed + svg {
  710. position: absolute;
  711. left: 2px;
  712. top: 2px;
  713. border-radius: 50%;
  714. z-index: 2;
  715. pointer-events: none;
  716. }
  717. .components-circular-option-picker__option::after {
  718. content: "";
  719. position: absolute;
  720. top: -1px;
  721. left: -1px;
  722. bottom: -1px;
  723. right: -1px;
  724. border-radius: 50%;
  725. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  726. border: 1px solid transparent;
  727. }
  728. .components-circular-option-picker__option:focus::after {
  729. content: "";
  730. border: 2px solid #757575;
  731. width: 32px;
  732. height: 32px;
  733. position: absolute;
  734. top: -2px;
  735. left: -2px;
  736. border-radius: 50%;
  737. box-shadow: inset 0 0 0 2px #fff;
  738. }
  739. .components-circular-option-picker__option.components-button:focus {
  740. background-color: transparent;
  741. box-shadow: inset 0 0 0 14px;
  742. outline: none;
  743. }
  744. .components-circular-option-picker__button-action .components-circular-option-picker__option {
  745. color: #fff;
  746. background: #fff;
  747. }
  748. .components-circular-option-picker__dropdown-link-action {
  749. margin-right: 16px;
  750. }
  751. .components-circular-option-picker__dropdown-link-action .components-button {
  752. line-height: 22px;
  753. }
  754. @media (min-width: 782px) {
  755. .components-palette-edit__popover.components-popover .components-popover__content.components-popover__content.components-popover__content {
  756. margin-right: 156px;
  757. margin-top: -49px;
  758. }
  759. }
  760. .components-palette-edit__popover .components-custom-gradient-picker__gradient-bar {
  761. margin-top: 0;
  762. }
  763. .components-palette-edit__popover .components-custom-gradient-picker__ui-line {
  764. margin-bottom: 0;
  765. }
  766. .components-palette-edit__popover .components-custom-gradient-picker {
  767. width: 280px;
  768. padding: 8px;
  769. }
  770. .components-dropdown-menu__menu .components-palette-edit__menu-button {
  771. width: 100%;
  772. }
  773. .component-color-indicator {
  774. width: 20px;
  775. height: 20px;
  776. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  777. border-radius: 50%;
  778. display: inline-block;
  779. padding: 0;
  780. }
  781. .components-combobox-control {
  782. width: 100%;
  783. }
  784. input.components-combobox-control__input[type=text] {
  785. width: 100%;
  786. border: none;
  787. box-shadow: none;
  788. font-family: inherit;
  789. font-size: 16px;
  790. padding: 2px;
  791. margin: 0;
  792. line-height: inherit;
  793. min-height: auto;
  794. }
  795. @media (min-width: 600px) {
  796. input.components-combobox-control__input[type=text] {
  797. font-size: 13px;
  798. }
  799. }
  800. input.components-combobox-control__input[type=text]:focus {
  801. outline: none;
  802. box-shadow: none;
  803. }
  804. .components-combobox-control__suggestions-container {
  805. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  806. padding: 6px 8px;
  807. box-shadow: 0 0 0 transparent;
  808. transition: box-shadow 0.1s linear;
  809. border-radius: 2px;
  810. border: 1px solid #757575;
  811. /* Fonts smaller than 16px causes mobile safari to zoom. */
  812. font-size: 16px;
  813. /* Override core line-height. To be reviewed. */
  814. line-height: normal;
  815. display: flex;
  816. flex-wrap: wrap;
  817. align-items: flex-start;
  818. width: 100%;
  819. margin: 0 0 8px 0;
  820. padding: 4px;
  821. }
  822. @media (prefers-reduced-motion: reduce) {
  823. .components-combobox-control__suggestions-container {
  824. transition-duration: 0s;
  825. transition-delay: 0s;
  826. }
  827. }
  828. @media (min-width: 600px) {
  829. .components-combobox-control__suggestions-container {
  830. font-size: 13px;
  831. /* Override core line-height. To be reviewed. */
  832. line-height: normal;
  833. }
  834. }
  835. .components-combobox-control__suggestions-container:focus {
  836. border-color: var(--wp-admin-theme-color);
  837. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  838. outline: 2px solid transparent;
  839. }
  840. .components-combobox-control__suggestions-container::-webkit-input-placeholder {
  841. color: rgba(30, 30, 30, 0.62);
  842. }
  843. .components-combobox-control__suggestions-container::-moz-placeholder {
  844. opacity: 1;
  845. color: rgba(30, 30, 30, 0.62);
  846. }
  847. .components-combobox-control__suggestions-container:-ms-input-placeholder {
  848. color: rgba(30, 30, 30, 0.62);
  849. }
  850. .components-combobox-control__suggestions-container:focus-within {
  851. border-color: var(--wp-admin-theme-color);
  852. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  853. outline: 2px solid transparent;
  854. }
  855. .components-combobox-control__reset.components-button {
  856. display: flex;
  857. height: 16px;
  858. min-width: 16px;
  859. padding: 0;
  860. }
  861. .components-color-list-picker,
  862. .components-color-list-picker__swatch-button {
  863. width: 100%;
  864. }
  865. .components-color-list-picker__color-picker {
  866. margin: 8px 0;
  867. }
  868. .components-color-palette__custom-color {
  869. position: relative;
  870. border: none;
  871. background: none;
  872. border-radius: 2px;
  873. height: 64px;
  874. padding: 12px;
  875. font-family: inherit;
  876. width: 100%;
  877. background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
  878. background-position: 0 0, 25px 25px;
  879. background-size: calc(2 * 25px) calc(2 * 25px);
  880. box-sizing: border-box;
  881. color: #fff;
  882. cursor: pointer;
  883. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  884. outline: 1px solid transparent;
  885. }
  886. .components-color-palette__custom-color:focus {
  887. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  888. outline-width: 2px;
  889. }
  890. .components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content {
  891. overflow: visible;
  892. box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  893. border: none;
  894. border-radius: 2px;
  895. max-height: -moz-fit-content !important;
  896. max-height: fit-content !important;
  897. }
  898. .components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content > div {
  899. padding: 0;
  900. }
  901. .components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content .react-colorful__saturation {
  902. border-top-right-radius: 2px;
  903. border-top-left-radius: 2px;
  904. }
  905. @media (min-width: 782px) {
  906. .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar .components-popover__content.components-popover__content {
  907. margin-right: 156px;
  908. }
  909. .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-top .components-popover__content {
  910. margin-top: -60px;
  911. }
  912. .components-dropdown__content.components-color-palette__custom-color-dropdown-content.is-rendered-in-sidebar.is-from-bottom .components-popover__content {
  913. margin-bottom: -60px;
  914. }
  915. }
  916. .components-color-palette__custom-color-name {
  917. text-align: left;
  918. }
  919. .components-color-palette__custom-color-value {
  920. margin-left: 16px;
  921. text-transform: uppercase;
  922. }
  923. .components-custom-gradient-picker__gradient-bar:not(.has-gradient) {
  924. opacity: 0.4;
  925. }
  926. .components-custom-gradient-picker__gradient-bar {
  927. border-radius: 2px;
  928. margin-top: 12px;
  929. width: 100%;
  930. height: 48px;
  931. margin-bottom: 20px;
  932. /*rtl:ignore*/
  933. padding-right: 16px;
  934. }
  935. .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {
  936. position: relative;
  937. width: calc(100% - 32px);
  938. margin-left: auto;
  939. margin-right: auto;
  940. }
  941. .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {
  942. border-radius: 50%;
  943. background: #fff;
  944. padding: 2px;
  945. top: 16px;
  946. min-width: 16px;
  947. width: 16px;
  948. height: 16px;
  949. position: relative;
  950. color: #1e1e1e;
  951. }
  952. .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point svg {
  953. height: 100%;
  954. width: 100%;
  955. }
  956. .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {
  957. border-radius: 50%;
  958. height: 16px;
  959. width: 16px;
  960. padding: 0;
  961. position: absolute;
  962. top: 16px;
  963. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
  964. outline: 2px solid transparent;
  965. }
  966. .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus, .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active {
  967. box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus) * 2) #fff, 0 0 2px 0 rgba(0, 0, 0, 0.25);
  968. outline: 4px solid transparent;
  969. }
  970. .components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {
  971. margin-left: auto;
  972. margin-right: auto;
  973. display: block;
  974. margin-bottom: 8px;
  975. }
  976. .components-custom-gradient-picker__inserter {
  977. /*rtl:ignore*/
  978. direction: ltr;
  979. width: 100%;
  980. }
  981. .components-custom-gradient-picker__liner-gradient-indicator {
  982. display: inline-block;
  983. flex: 0 auto;
  984. width: 20px;
  985. height: 20px;
  986. }
  987. .components-custom-gradient-picker .components-custom-gradient-picker__ui-line {
  988. margin-bottom: 16px;
  989. }
  990. .components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-angle-picker,
  991. .components-custom-gradient-picker .components-custom-gradient-picker__ui-line .components-base-control.components-custom-gradient-picker__type-picker {
  992. margin-bottom: 0;
  993. }
  994. .components-custom-gradient-picker .components-custom-gradient-picker__toolbar {
  995. border: none;
  996. }
  997. .components-custom-gradient-picker .components-custom-gradient-picker__toolbar > div + div {
  998. margin-left: 1px;
  999. }
  1000. .components-custom-gradient-picker .components-custom-gradient-picker__toolbar button.is-pressed > svg {
  1001. background: #fff;
  1002. border: 1px solid #949494;
  1003. border-radius: 2px;
  1004. }
  1005. .components-custom-gradient-picker .components-input-control__label {
  1006. line-height: 1;
  1007. }
  1008. .components-custom-gradient-picker label {
  1009. text-transform: uppercase;
  1010. font-size: 11px;
  1011. font-weight: 500;
  1012. }
  1013. .components-custom-select-control {
  1014. position: relative;
  1015. }
  1016. .components-custom-select-control__label {
  1017. display: block;
  1018. margin-bottom: 8px;
  1019. }
  1020. .components-custom-select-control__button {
  1021. border: 1px solid #757575;
  1022. border-radius: 2px;
  1023. min-width: 130px;
  1024. position: relative;
  1025. text-align: left;
  1026. }
  1027. .components-custom-select-control__button:not(.is-next-36px-default-size) {
  1028. min-height: 30px;
  1029. }
  1030. .components-custom-select-control__button.components-custom-select-control__button {
  1031. padding-left: 16px;
  1032. padding-right: 32px;
  1033. }
  1034. .components-custom-select-control__button.components-custom-select-control__button:not(.is-next-36px-default-size) {
  1035. padding-left: 8px;
  1036. padding-right: 24px;
  1037. }
  1038. .components-custom-select-control__button:focus:not(:disabled) {
  1039. border-color: var(--wp-admin-theme-color);
  1040. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  1041. }
  1042. .components-custom-select-control__button .components-custom-select-control__button-icon {
  1043. height: 100%;
  1044. padding: 0;
  1045. position: absolute;
  1046. right: 8px;
  1047. top: 0;
  1048. }
  1049. .components-custom-select-control__button .components-custom-select-control__button-icon:not(.is-next-36px-default-size) {
  1050. right: 4px;
  1051. }
  1052. .components-custom-select-control__menu {
  1053. border: 1px solid #1e1e1e;
  1054. background-color: #fff;
  1055. border-radius: 2px;
  1056. outline: none;
  1057. transition: none;
  1058. max-height: 400px;
  1059. min-width: 100%;
  1060. overflow: auto;
  1061. padding: 0;
  1062. position: absolute;
  1063. z-index: 1000000;
  1064. }
  1065. .components-custom-select-control__menu[aria-hidden=true] {
  1066. display: none;
  1067. }
  1068. .components-custom-select-control__item {
  1069. align-items: center;
  1070. display: grid;
  1071. grid-template-columns: auto auto;
  1072. list-style-type: none;
  1073. padding: 8px 16px;
  1074. cursor: default;
  1075. line-height: 28px;
  1076. }
  1077. .components-custom-select-control__item:not(.is-next-36px-default-size) {
  1078. padding: 8px;
  1079. }
  1080. .components-custom-select-control__item.has-hint {
  1081. grid-template-columns: auto auto 30px;
  1082. }
  1083. .components-custom-select-control__item.is-highlighted {
  1084. background: #ddd;
  1085. }
  1086. .components-custom-select-control__item .components-custom-select-control__item-hint {
  1087. color: #757575;
  1088. text-align: right;
  1089. padding-right: 4px;
  1090. }
  1091. .components-custom-select-control__item .components-custom-select-control__item-icon {
  1092. margin-left: auto;
  1093. }
  1094. .components-custom-select-control__item:last-child {
  1095. margin-bottom: 0;
  1096. }
  1097. /**
  1098. * Parts of this source were derived and modified from react-dates,
  1099. * released under the MIT license.
  1100. *
  1101. * https://github.com/airbnb/react-dates
  1102. *
  1103. * The MIT License (MIT)
  1104. *
  1105. * Copyright (c) 2016 Airbnb
  1106. *
  1107. * Permission is hereby granted, free of charge, to any person obtaining a copy
  1108. * of this software and associated documentation files (the "Software"), to deal
  1109. * in the Software without restriction, including without limitation the rights
  1110. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1111. * copies of the Software, and to permit persons to whom the Software is
  1112. * furnished to do so, subject to the following conditions:
  1113. *
  1114. * The above copyright notice and this permission notice shall be included in all
  1115. * copies or substantial portions of the Software.
  1116. *
  1117. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1118. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1119. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1120. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1121. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1122. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1123. * SOFTWARE.
  1124. */
  1125. /*rtl:begin:ignore*/
  1126. .PresetDateRangePicker_panel {
  1127. padding: 0 22px 11px;
  1128. }
  1129. .PresetDateRangePicker_button {
  1130. position: relative;
  1131. height: 100%;
  1132. text-align: center;
  1133. background: 0 0;
  1134. border: 2px solid #00a699;
  1135. color: #00a699;
  1136. padding: 4px 12px;
  1137. margin-right: 8px;
  1138. font: inherit;
  1139. font-weight: 700;
  1140. line-height: normal;
  1141. overflow: visible;
  1142. box-sizing: border-box;
  1143. cursor: pointer;
  1144. }
  1145. .PresetDateRangePicker_button:active {
  1146. outline: 0;
  1147. }
  1148. .PresetDateRangePicker_button__selected {
  1149. color: #fff;
  1150. background: #00a699;
  1151. }
  1152. .SingleDatePickerInput {
  1153. display: inline-block;
  1154. background-color: #fff;
  1155. }
  1156. .SingleDatePickerInput__withBorder {
  1157. border-radius: 2px;
  1158. border: 1px solid #dbdbdb;
  1159. }
  1160. .SingleDatePickerInput__rtl {
  1161. direction: rtl;
  1162. }
  1163. .SingleDatePickerInput__disabled {
  1164. background-color: #f2f2f2;
  1165. }
  1166. .SingleDatePickerInput__block {
  1167. display: block;
  1168. }
  1169. .SingleDatePickerInput__showClearDate {
  1170. padding-right: 30px;
  1171. }
  1172. .SingleDatePickerInput_clearDate {
  1173. background: 0 0;
  1174. border: 0;
  1175. color: inherit;
  1176. font: inherit;
  1177. line-height: normal;
  1178. overflow: visible;
  1179. cursor: pointer;
  1180. padding: 10px;
  1181. margin: 0 10px 0 5px;
  1182. position: absolute;
  1183. right: 0;
  1184. top: 50%;
  1185. transform: translateY(-50%);
  1186. }
  1187. .SingleDatePickerInput_clearDate__default:focus,
  1188. .SingleDatePickerInput_clearDate__default:hover {
  1189. background: #dbdbdb;
  1190. border-radius: 50%;
  1191. }
  1192. .SingleDatePickerInput_clearDate__small {
  1193. padding: 6px;
  1194. }
  1195. .SingleDatePickerInput_clearDate__hide {
  1196. visibility: hidden;
  1197. }
  1198. .SingleDatePickerInput_clearDate_svg {
  1199. fill: #82888a;
  1200. height: 12px;
  1201. width: 15px;
  1202. vertical-align: middle;
  1203. }
  1204. .SingleDatePickerInput_clearDate_svg__small {
  1205. height: 9px;
  1206. }
  1207. .SingleDatePickerInput_calendarIcon {
  1208. background: 0 0;
  1209. border: 0;
  1210. color: inherit;
  1211. font: inherit;
  1212. line-height: normal;
  1213. overflow: visible;
  1214. cursor: pointer;
  1215. display: inline-block;
  1216. vertical-align: middle;
  1217. padding: 10px;
  1218. margin: 0 5px 0 10px;
  1219. }
  1220. .SingleDatePickerInput_calendarIcon_svg {
  1221. fill: #82888a;
  1222. height: 15px;
  1223. width: 14px;
  1224. vertical-align: middle;
  1225. }
  1226. .SingleDatePicker {
  1227. position: relative;
  1228. display: inline-block;
  1229. }
  1230. .SingleDatePicker__block {
  1231. display: block;
  1232. }
  1233. .SingleDatePicker_picker {
  1234. z-index: 1;
  1235. background-color: #fff;
  1236. position: absolute;
  1237. }
  1238. .SingleDatePicker_picker__rtl {
  1239. direction: rtl;
  1240. }
  1241. .SingleDatePicker_picker__directionLeft {
  1242. left: 0;
  1243. }
  1244. .SingleDatePicker_picker__directionRight {
  1245. right: 0;
  1246. }
  1247. .SingleDatePicker_picker__portal {
  1248. background-color: rgba(0, 0, 0, 0.3);
  1249. position: fixed;
  1250. top: 0;
  1251. left: 0;
  1252. height: 100%;
  1253. width: 100%;
  1254. }
  1255. .SingleDatePicker_picker__fullScreenPortal {
  1256. background-color: #fff;
  1257. }
  1258. .SingleDatePicker_closeButton {
  1259. background: 0 0;
  1260. border: 0;
  1261. color: inherit;
  1262. font: inherit;
  1263. line-height: normal;
  1264. overflow: visible;
  1265. cursor: pointer;
  1266. position: absolute;
  1267. top: 0;
  1268. right: 0;
  1269. padding: 15px;
  1270. z-index: 2;
  1271. }
  1272. .SingleDatePicker_closeButton:focus,
  1273. .SingleDatePicker_closeButton:hover {
  1274. color: #b0b3b4;
  1275. text-decoration: none;
  1276. }
  1277. .SingleDatePicker_closeButton_svg {
  1278. height: 15px;
  1279. width: 15px;
  1280. fill: #cacccd;
  1281. }
  1282. .DayPickerKeyboardShortcuts_buttonReset {
  1283. background: 0 0;
  1284. border: 0;
  1285. border-radius: 0;
  1286. color: inherit;
  1287. font: inherit;
  1288. line-height: normal;
  1289. overflow: visible;
  1290. padding: 0;
  1291. cursor: pointer;
  1292. font-size: 14px;
  1293. }
  1294. .DayPickerKeyboardShortcuts_buttonReset:active {
  1295. outline: 0;
  1296. }
  1297. .DayPickerKeyboardShortcuts_show {
  1298. width: 22px;
  1299. position: absolute;
  1300. z-index: 2;
  1301. }
  1302. .DayPickerKeyboardShortcuts_show__bottomRight {
  1303. border-top: 26px solid transparent;
  1304. border-right: 33px solid #00a699;
  1305. bottom: 0;
  1306. right: 0;
  1307. }
  1308. .DayPickerKeyboardShortcuts_show__bottomRight:hover {
  1309. border-right: 33px solid #008489;
  1310. }
  1311. .DayPickerKeyboardShortcuts_show__topRight {
  1312. border-bottom: 26px solid transparent;
  1313. border-right: 33px solid #00a699;
  1314. top: 0;
  1315. right: 0;
  1316. }
  1317. .DayPickerKeyboardShortcuts_show__topRight:hover {
  1318. border-right: 33px solid #008489;
  1319. }
  1320. .DayPickerKeyboardShortcuts_show__topLeft {
  1321. border-bottom: 26px solid transparent;
  1322. border-left: 33px solid #00a699;
  1323. top: 0;
  1324. left: 0;
  1325. }
  1326. .DayPickerKeyboardShortcuts_show__topLeft:hover {
  1327. border-left: 33px solid #008489;
  1328. }
  1329. .DayPickerKeyboardShortcuts_showSpan {
  1330. color: #fff;
  1331. position: absolute;
  1332. }
  1333. .DayPickerKeyboardShortcuts_showSpan__bottomRight {
  1334. bottom: 0;
  1335. right: -28px;
  1336. }
  1337. .DayPickerKeyboardShortcuts_showSpan__topRight {
  1338. top: 1px;
  1339. right: -28px;
  1340. }
  1341. .DayPickerKeyboardShortcuts_showSpan__topLeft {
  1342. top: 1px;
  1343. left: -28px;
  1344. }
  1345. .DayPickerKeyboardShortcuts_panel {
  1346. overflow: auto;
  1347. background: #fff;
  1348. border: 1px solid #dbdbdb;
  1349. border-radius: 2px;
  1350. position: absolute;
  1351. top: 0;
  1352. bottom: 0;
  1353. right: 0;
  1354. left: 0;
  1355. z-index: 2;
  1356. padding: 22px;
  1357. margin: 33px;
  1358. }
  1359. .DayPickerKeyboardShortcuts_title {
  1360. font-size: 16px;
  1361. font-weight: 700;
  1362. margin: 0;
  1363. }
  1364. .DayPickerKeyboardShortcuts_list {
  1365. list-style: none;
  1366. padding: 0;
  1367. font-size: 14px;
  1368. }
  1369. .DayPickerKeyboardShortcuts_close {
  1370. position: absolute;
  1371. right: 22px;
  1372. top: 22px;
  1373. z-index: 2;
  1374. }
  1375. .DayPickerKeyboardShortcuts_close:active {
  1376. outline: 0;
  1377. }
  1378. .DayPickerKeyboardShortcuts_closeSvg {
  1379. height: 15px;
  1380. width: 15px;
  1381. fill: #cacccd;
  1382. }
  1383. .DayPickerKeyboardShortcuts_closeSvg:focus,
  1384. .DayPickerKeyboardShortcuts_closeSvg:hover {
  1385. fill: #82888a;
  1386. }
  1387. .CalendarDay {
  1388. box-sizing: border-box;
  1389. cursor: pointer;
  1390. font-size: 14px;
  1391. text-align: center;
  1392. }
  1393. .CalendarDay:active {
  1394. outline: 0;
  1395. }
  1396. .CalendarDay__defaultCursor {
  1397. cursor: default;
  1398. }
  1399. .CalendarDay__default {
  1400. border: 1px solid #e4e7e7;
  1401. color: #484848;
  1402. background: #fff;
  1403. }
  1404. .CalendarDay__default:hover {
  1405. background: #e4e7e7;
  1406. border: 1px double #e4e7e7;
  1407. color: inherit;
  1408. }
  1409. .CalendarDay__hovered_offset {
  1410. background: #f4f5f5;
  1411. border: 1px double #e4e7e7;
  1412. color: inherit;
  1413. }
  1414. .CalendarDay__outside {
  1415. border: 0;
  1416. background: #fff;
  1417. color: #484848;
  1418. }
  1419. .CalendarDay__outside:hover {
  1420. border: 0;
  1421. }
  1422. .CalendarDay__blocked_minimum_nights {
  1423. background: #fff;
  1424. border: 1px solid #eceeee;
  1425. color: #cacccd;
  1426. }
  1427. .CalendarDay__blocked_minimum_nights:active,
  1428. .CalendarDay__blocked_minimum_nights:hover {
  1429. background: #fff;
  1430. color: #cacccd;
  1431. }
  1432. .CalendarDay__highlighted_calendar {
  1433. background: #ffe8bc;
  1434. color: #484848;
  1435. }
  1436. .CalendarDay__highlighted_calendar:active,
  1437. .CalendarDay__highlighted_calendar:hover {
  1438. background: #ffce71;
  1439. color: #484848;
  1440. }
  1441. .CalendarDay__selected_span {
  1442. background: #66e2da;
  1443. border: 1px solid #33dacd;
  1444. color: #fff;
  1445. }
  1446. .CalendarDay__selected_span:active,
  1447. .CalendarDay__selected_span:hover {
  1448. background: #33dacd;
  1449. border: 1px solid #33dacd;
  1450. color: #fff;
  1451. }
  1452. .CalendarDay__last_in_range {
  1453. border-right: #00a699;
  1454. }
  1455. .CalendarDay__selected,
  1456. .CalendarDay__selected:active,
  1457. .CalendarDay__selected:hover {
  1458. background: #00a699;
  1459. border: 1px solid #00a699;
  1460. color: #fff;
  1461. }
  1462. .CalendarDay__hovered_span,
  1463. .CalendarDay__hovered_span:hover {
  1464. background: #b2f1ec;
  1465. border: 1px solid #80e8e0;
  1466. color: #007a87;
  1467. }
  1468. .CalendarDay__hovered_span:active {
  1469. background: #80e8e0;
  1470. border: 1px solid #80e8e0;
  1471. color: #007a87;
  1472. }
  1473. .CalendarDay__blocked_calendar,
  1474. .CalendarDay__blocked_calendar:active,
  1475. .CalendarDay__blocked_calendar:hover {
  1476. background: #cacccd;
  1477. border: 1px solid #cacccd;
  1478. color: #82888a;
  1479. }
  1480. .CalendarDay__blocked_out_of_range,
  1481. .CalendarDay__blocked_out_of_range:active,
  1482. .CalendarDay__blocked_out_of_range:hover {
  1483. background: #fff;
  1484. border: 1px solid #e4e7e7;
  1485. color: #cacccd;
  1486. }
  1487. .CalendarMonth {
  1488. background: #fff;
  1489. text-align: center;
  1490. vertical-align: top;
  1491. -webkit-user-select: none;
  1492. user-select: none;
  1493. }
  1494. .CalendarMonth_table {
  1495. border-collapse: collapse;
  1496. border-spacing: 0;
  1497. }
  1498. .CalendarMonth_verticalSpacing {
  1499. border-collapse: separate;
  1500. }
  1501. .CalendarMonth_caption {
  1502. color: #484848;
  1503. font-size: 18px;
  1504. text-align: center;
  1505. padding-top: 22px;
  1506. padding-bottom: 37px;
  1507. caption-side: initial;
  1508. }
  1509. .CalendarMonth_caption__verticalScrollable {
  1510. padding-top: 12px;
  1511. padding-bottom: 7px;
  1512. }
  1513. .CalendarMonthGrid {
  1514. background: #fff;
  1515. text-align: left;
  1516. z-index: 0;
  1517. }
  1518. .CalendarMonthGrid__animating {
  1519. z-index: 1;
  1520. }
  1521. .CalendarMonthGrid__horizontal {
  1522. position: absolute;
  1523. left: 0;
  1524. }
  1525. .CalendarMonthGrid__vertical {
  1526. margin: 0 auto;
  1527. }
  1528. .CalendarMonthGrid__vertical_scrollable {
  1529. margin: 0 auto;
  1530. overflow-y: scroll;
  1531. }
  1532. .CalendarMonthGrid_month__horizontal {
  1533. display: inline-block;
  1534. vertical-align: top;
  1535. min-height: 100%;
  1536. }
  1537. .CalendarMonthGrid_month__hideForAnimation {
  1538. position: absolute;
  1539. z-index: -1;
  1540. opacity: 0;
  1541. pointer-events: none;
  1542. }
  1543. .CalendarMonthGrid_month__hidden {
  1544. visibility: hidden;
  1545. }
  1546. .DayPickerNavigation {
  1547. position: relative;
  1548. z-index: 2;
  1549. }
  1550. .DayPickerNavigation__horizontal {
  1551. height: 0;
  1552. }
  1553. .DayPickerNavigation__verticalDefault {
  1554. position: absolute;
  1555. width: 100%;
  1556. height: 52px;
  1557. bottom: 0;
  1558. left: 0;
  1559. }
  1560. .DayPickerNavigation__verticalScrollableDefault {
  1561. position: relative;
  1562. }
  1563. .DayPickerNavigation_button {
  1564. cursor: pointer;
  1565. -webkit-user-select: none;
  1566. user-select: none;
  1567. border: 0;
  1568. padding: 0;
  1569. margin: 0;
  1570. }
  1571. .DayPickerNavigation_button__default {
  1572. border: 1px solid #e4e7e7;
  1573. background-color: #fff;
  1574. color: #757575;
  1575. }
  1576. .DayPickerNavigation_button__default:focus,
  1577. .DayPickerNavigation_button__default:hover {
  1578. border: 1px solid #c4c4c4;
  1579. }
  1580. .DayPickerNavigation_button__default:active {
  1581. background: #f2f2f2;
  1582. }
  1583. .DayPickerNavigation_button__horizontalDefault {
  1584. position: absolute;
  1585. top: 18px;
  1586. line-height: 0.78;
  1587. border-radius: 3px;
  1588. padding: 6px 9px;
  1589. }
  1590. .DayPickerNavigation_leftButton__horizontalDefault {
  1591. left: 22px;
  1592. }
  1593. .DayPickerNavigation_rightButton__horizontalDefault {
  1594. right: 22px;
  1595. }
  1596. .DayPickerNavigation_button__verticalDefault {
  1597. padding: 5px;
  1598. background: #fff;
  1599. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  1600. position: relative;
  1601. display: inline-block;
  1602. height: 100%;
  1603. width: 50%;
  1604. }
  1605. .DayPickerNavigation_nextButton__verticalDefault {
  1606. border-left: 0;
  1607. }
  1608. .DayPickerNavigation_nextButton__verticalScrollableDefault {
  1609. width: 100%;
  1610. }
  1611. .DayPickerNavigation_svg__horizontal {
  1612. height: 19px;
  1613. width: 19px;
  1614. fill: #82888a;
  1615. display: block;
  1616. }
  1617. .DayPickerNavigation_svg__vertical {
  1618. height: 42px;
  1619. width: 42px;
  1620. fill: #484848;
  1621. display: block;
  1622. }
  1623. .DayPicker {
  1624. background: #fff;
  1625. position: relative;
  1626. text-align: left;
  1627. }
  1628. .DayPicker__horizontal {
  1629. background: #fff;
  1630. }
  1631. .DayPicker__verticalScrollable {
  1632. height: 100%;
  1633. }
  1634. .DayPicker__hidden {
  1635. visibility: hidden;
  1636. }
  1637. .DayPicker__withBorder {
  1638. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  1639. border-radius: 3px;
  1640. }
  1641. .DayPicker_portal__horizontal {
  1642. box-shadow: none;
  1643. position: absolute;
  1644. left: 50%;
  1645. top: 50%;
  1646. }
  1647. .DayPicker_portal__vertical {
  1648. position: initial;
  1649. }
  1650. .DayPicker_focusRegion {
  1651. outline: 0;
  1652. }
  1653. .DayPicker_calendarInfo__horizontal,
  1654. .DayPicker_wrapper__horizontal {
  1655. display: inline-block;
  1656. vertical-align: top;
  1657. }
  1658. .DayPicker_weekHeaders {
  1659. position: relative;
  1660. }
  1661. .DayPicker_weekHeaders__horizontal {
  1662. margin-left: 13px;
  1663. }
  1664. .DayPicker_weekHeader {
  1665. color: #757575;
  1666. position: absolute;
  1667. top: 62px;
  1668. z-index: 2;
  1669. text-align: left;
  1670. padding: 0 !important;
  1671. }
  1672. .DayPicker_weekHeader__vertical {
  1673. left: 50%;
  1674. }
  1675. .DayPicker_weekHeader__verticalScrollable {
  1676. top: 0;
  1677. display: table-row;
  1678. border-bottom: 1px solid #dbdbdb;
  1679. background: #fff;
  1680. margin-left: 0;
  1681. left: 0;
  1682. width: 100%;
  1683. text-align: center;
  1684. }
  1685. .DayPicker_weekHeader_ul {
  1686. list-style: none;
  1687. margin: 1px 0;
  1688. padding-left: 0;
  1689. padding-right: 0;
  1690. font-size: 14px;
  1691. }
  1692. .DayPicker_weekHeader_li {
  1693. display: inline-block;
  1694. text-align: center;
  1695. margin: 0 1px;
  1696. }
  1697. .DayPicker_transitionContainer {
  1698. position: relative;
  1699. overflow: hidden;
  1700. border-radius: 3px;
  1701. }
  1702. .DayPicker_transitionContainer__horizontal {
  1703. transition: height 0.2s ease-in-out;
  1704. }
  1705. .DayPicker_transitionContainer__vertical {
  1706. width: 100%;
  1707. }
  1708. .DayPicker_transitionContainer__verticalScrollable {
  1709. padding-top: 20px;
  1710. height: 100%;
  1711. position: absolute;
  1712. top: 0;
  1713. bottom: 0;
  1714. right: 0;
  1715. left: 0;
  1716. overflow-y: scroll;
  1717. }
  1718. .DateInput {
  1719. margin: 0;
  1720. padding: 0;
  1721. background: #fff;
  1722. position: relative;
  1723. display: inline-block;
  1724. width: 130px;
  1725. vertical-align: middle;
  1726. }
  1727. .DateInput__small {
  1728. width: 97px;
  1729. }
  1730. .DateInput__block {
  1731. width: 100%;
  1732. }
  1733. .DateInput__disabled {
  1734. background: #f2f2f2;
  1735. color: #dbdbdb;
  1736. }
  1737. .DateInput_input {
  1738. font-weight: 200;
  1739. font-size: 19px;
  1740. line-height: 24px;
  1741. color: #484848;
  1742. background-color: #fff;
  1743. width: 100%;
  1744. padding: 11px 11px 9px;
  1745. border: 0;
  1746. border-top: 0;
  1747. border-right: 0;
  1748. border-bottom: 2px solid transparent;
  1749. border-left: 0;
  1750. border-radius: 0;
  1751. }
  1752. .DateInput_input__small {
  1753. font-size: 15px;
  1754. line-height: 18px;
  1755. letter-spacing: 0.2px;
  1756. padding: 7px 7px 5px;
  1757. }
  1758. .DateInput_input__regular {
  1759. font-weight: auto;
  1760. }
  1761. .DateInput_input__readOnly {
  1762. -webkit-user-select: none;
  1763. user-select: none;
  1764. }
  1765. .DateInput_input__focused {
  1766. outline: 0;
  1767. background: #fff;
  1768. border: 0;
  1769. border-top: 0;
  1770. border-right: 0;
  1771. border-bottom: 2px solid #008489;
  1772. border-left: 0;
  1773. }
  1774. .DateInput_input__disabled {
  1775. background: #f2f2f2;
  1776. font-style: italic;
  1777. }
  1778. .DateInput_screenReaderMessage {
  1779. border: 0;
  1780. clip: rect(0, 0, 0, 0);
  1781. height: 1px;
  1782. margin: -1px;
  1783. overflow: hidden;
  1784. padding: 0;
  1785. position: absolute;
  1786. width: 1px;
  1787. }
  1788. .DateInput_fang {
  1789. position: absolute;
  1790. width: 20px;
  1791. height: 10px;
  1792. left: 22px;
  1793. z-index: 2;
  1794. }
  1795. .DateInput_fangShape {
  1796. fill: #fff;
  1797. }
  1798. .DateInput_fangStroke {
  1799. stroke: #dbdbdb;
  1800. fill: transparent;
  1801. }
  1802. .DateRangePickerInput {
  1803. background-color: #fff;
  1804. display: inline-block;
  1805. }
  1806. .DateRangePickerInput__disabled {
  1807. background: #f2f2f2;
  1808. }
  1809. .DateRangePickerInput__withBorder {
  1810. border-radius: 2px;
  1811. border: 1px solid #dbdbdb;
  1812. }
  1813. .DateRangePickerInput__rtl {
  1814. direction: rtl;
  1815. }
  1816. .DateRangePickerInput__block {
  1817. display: block;
  1818. }
  1819. .DateRangePickerInput__showClearDates {
  1820. padding-right: 30px;
  1821. }
  1822. .DateRangePickerInput_arrow {
  1823. display: inline-block;
  1824. vertical-align: middle;
  1825. color: #484848;
  1826. }
  1827. .DateRangePickerInput_arrow_svg {
  1828. vertical-align: middle;
  1829. fill: #484848;
  1830. height: 24px;
  1831. width: 24px;
  1832. }
  1833. .DateRangePickerInput_clearDates {
  1834. background: 0 0;
  1835. border: 0;
  1836. color: inherit;
  1837. font: inherit;
  1838. line-height: normal;
  1839. overflow: visible;
  1840. cursor: pointer;
  1841. padding: 10px;
  1842. margin: 0 10px 0 5px;
  1843. position: absolute;
  1844. right: 0;
  1845. top: 50%;
  1846. transform: translateY(-50%);
  1847. }
  1848. .DateRangePickerInput_clearDates__small {
  1849. padding: 6px;
  1850. }
  1851. .DateRangePickerInput_clearDates_default:focus,
  1852. .DateRangePickerInput_clearDates_default:hover {
  1853. background: #dbdbdb;
  1854. border-radius: 50%;
  1855. }
  1856. .DateRangePickerInput_clearDates__hide {
  1857. visibility: hidden;
  1858. }
  1859. .DateRangePickerInput_clearDates_svg {
  1860. fill: #82888a;
  1861. height: 12px;
  1862. width: 15px;
  1863. vertical-align: middle;
  1864. }
  1865. .DateRangePickerInput_clearDates_svg__small {
  1866. height: 9px;
  1867. }
  1868. .DateRangePickerInput_calendarIcon {
  1869. background: 0 0;
  1870. border: 0;
  1871. color: inherit;
  1872. font: inherit;
  1873. line-height: normal;
  1874. overflow: visible;
  1875. cursor: pointer;
  1876. display: inline-block;
  1877. vertical-align: middle;
  1878. padding: 10px;
  1879. margin: 0 5px 0 10px;
  1880. }
  1881. .DateRangePickerInput_calendarIcon_svg {
  1882. fill: #82888a;
  1883. height: 15px;
  1884. width: 14px;
  1885. vertical-align: middle;
  1886. }
  1887. .DateRangePicker {
  1888. position: relative;
  1889. display: inline-block;
  1890. }
  1891. .DateRangePicker__block {
  1892. display: block;
  1893. }
  1894. .DateRangePicker_picker {
  1895. z-index: 1;
  1896. background-color: #fff;
  1897. position: absolute;
  1898. }
  1899. .DateRangePicker_picker__rtl {
  1900. direction: rtl;
  1901. }
  1902. .DateRangePicker_picker__directionLeft {
  1903. left: 0;
  1904. }
  1905. .DateRangePicker_picker__directionRight {
  1906. right: 0;
  1907. }
  1908. .DateRangePicker_picker__portal {
  1909. background-color: rgba(0, 0, 0, 0.3);
  1910. position: fixed;
  1911. top: 0;
  1912. left: 0;
  1913. height: 100%;
  1914. width: 100%;
  1915. }
  1916. .DateRangePicker_picker__fullScreenPortal {
  1917. background-color: #fff;
  1918. }
  1919. .DateRangePicker_closeButton {
  1920. background: 0 0;
  1921. border: 0;
  1922. color: inherit;
  1923. font: inherit;
  1924. line-height: normal;
  1925. overflow: visible;
  1926. cursor: pointer;
  1927. position: absolute;
  1928. top: 0;
  1929. right: 0;
  1930. padding: 15px;
  1931. z-index: 2;
  1932. }
  1933. .DateRangePicker_closeButton:focus,
  1934. .DateRangePicker_closeButton:hover {
  1935. color: #b0b3b4;
  1936. text-decoration: none;
  1937. }
  1938. .DateRangePicker_closeButton_svg {
  1939. height: 15px;
  1940. width: 15px;
  1941. fill: #cacccd;
  1942. }
  1943. /*rtl:end:ignore*/
  1944. .components-datetime {
  1945. padding: 16px;
  1946. }
  1947. .components-panel__body .components-datetime {
  1948. padding: 0;
  1949. }
  1950. .components-datetime .components-datetime__calendar-help {
  1951. padding: 16px;
  1952. min-width: 260px;
  1953. }
  1954. .components-datetime .components-datetime__calendar-help h4 {
  1955. margin: 0;
  1956. }
  1957. .components-datetime .components-datetime__buttons {
  1958. display: flex;
  1959. justify-content: space-between;
  1960. }
  1961. .components-datetime .components-datetime__date-help-toggle {
  1962. display: block;
  1963. margin-left: auto;
  1964. }
  1965. .components-datetime fieldset {
  1966. border: 0;
  1967. padding: 0;
  1968. margin: 0;
  1969. }
  1970. .components-datetime select,
  1971. .components-datetime input {
  1972. box-shadow: 0 0 0 transparent;
  1973. transition: box-shadow 0.1s linear;
  1974. border-radius: 2px;
  1975. border: 1px solid #757575;
  1976. }
  1977. @media (prefers-reduced-motion: reduce) {
  1978. .components-datetime select,
  1979. .components-datetime input {
  1980. transition-duration: 0s;
  1981. transition-delay: 0s;
  1982. }
  1983. }
  1984. .components-datetime select,
  1985. .components-datetime input[type=number],
  1986. .components-datetime .components-button {
  1987. height: 30px;
  1988. margin-top: 0;
  1989. margin-bottom: 0;
  1990. }
  1991. .components-datetime .components-button:focus {
  1992. z-index: 1;
  1993. }
  1994. .components-datetime__date {
  1995. min-height: 236px;
  1996. border-top: 1px solid #ddd;
  1997. }
  1998. .components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {
  1999. /*!rtl:begin:ignore*/
  2000. left: 13px;
  2001. /*!rtl:end:ignore*/
  2002. }
  2003. .components-datetime__date .CalendarMonth_caption {
  2004. font-size: 13px;
  2005. }
  2006. .components-datetime__date .CalendarMonth_table {
  2007. border-collapse: separate;
  2008. border-spacing: 2px;
  2009. }
  2010. .components-datetime__date .CalendarDay {
  2011. font-size: 13px;
  2012. border: none;
  2013. border-radius: 50%;
  2014. text-align: center;
  2015. }
  2016. .components-datetime__date .CalendarDay:focus {
  2017. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 3px #fff;
  2018. outline: 2px solid transparent;
  2019. }
  2020. .components-datetime__date .CalendarDay__selected {
  2021. background: var(--wp-admin-theme-color);
  2022. border: 2px solid transparent;
  2023. }
  2024. .components-datetime__date .CalendarDay__selected:hover {
  2025. background: var(--wp-admin-theme-color-darker-20);
  2026. }
  2027. .components-datetime__date .CalendarDay__selected:focus {
  2028. box-shadow: inset 0 0 0 1px #fff;
  2029. }
  2030. .components-datetime__date .DayPickerNavigation_button__horizontalDefault {
  2031. padding: 2px 8px;
  2032. top: 20px;
  2033. }
  2034. .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
  2035. border-color: var(--wp-admin-theme-color);
  2036. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  2037. outline: 2px solid transparent;
  2038. }
  2039. .components-datetime__date .DayPicker_weekHeader {
  2040. top: 50px;
  2041. }
  2042. .components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {
  2043. margin: 1px;
  2044. padding-left: 0;
  2045. padding-right: 0;
  2046. }
  2047. .components-datetime__date.is-description-visible .DayPicker {
  2048. visibility: hidden;
  2049. }
  2050. .components-datetime__date .CalendarDay .components-datetime__date__day {
  2051. height: 100%;
  2052. display: flex;
  2053. justify-content: center;
  2054. align-content: center;
  2055. flex-direction: column;
  2056. position: relative;
  2057. }
  2058. .components-datetime__date .CalendarDay .components-datetime__date__day.has-events::before {
  2059. content: " ";
  2060. width: 4px;
  2061. height: 4px;
  2062. border-radius: 2px;
  2063. position: absolute;
  2064. left: 50%;
  2065. margin-left: -2px;
  2066. bottom: 0;
  2067. background-color: #fff;
  2068. }
  2069. .components-datetime__date .CalendarDay:not(.CalendarDay__selected) .components-datetime__date__day.has-events::before {
  2070. background: var(--wp-admin-theme-color);
  2071. }
  2072. .components-datetime__time {
  2073. padding-bottom: 16px;
  2074. }
  2075. .components-datetime__time fieldset {
  2076. position: relative;
  2077. margin-bottom: 0.5em;
  2078. }
  2079. .components-datetime__time fieldset + fieldset {
  2080. margin-bottom: 0;
  2081. }
  2082. .components-datetime__time .components-datetime__time-field-am-pm fieldset {
  2083. margin-top: 0;
  2084. }
  2085. .components-datetime__time .components-datetime__time-wrapper {
  2086. display: flex;
  2087. }
  2088. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
  2089. display: inline-block;
  2090. padding: 0 3px 0 0;
  2091. }
  2092. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
  2093. /*rtl:ignore*/
  2094. direction: ltr;
  2095. }
  2096. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
  2097. margin-right: 4px;
  2098. }
  2099. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
  2100. position: relative;
  2101. z-index: 1;
  2102. }
  2103. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number] {
  2104. padding: 2px;
  2105. margin-right: 4px;
  2106. text-align: center;
  2107. -moz-appearance: textfield;
  2108. }
  2109. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]:focus {
  2110. position: relative;
  2111. z-index: 1;
  2112. }
  2113. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type=number]::-webkit-inner-spin-button {
  2114. -webkit-appearance: none;
  2115. margin: 0;
  2116. }
  2117. .components-datetime__time.is-12-hour .components-datetime__time-field-day input {
  2118. margin: -4px 0 0 !important;
  2119. border-radius: 2px 0 0 2px !important;
  2120. }
  2121. .components-datetime__time.is-12-hour .components-datetime__time-field-year input {
  2122. border-radius: 0 2px 2px 0 !important;
  2123. }
  2124. .components-datetime__timezone {
  2125. line-height: 30px;
  2126. margin-left: 4px;
  2127. -webkit-text-decoration: underline dotted;
  2128. text-decoration: underline dotted;
  2129. }
  2130. .components-datetime__time-legend {
  2131. font-weight: 600;
  2132. margin-top: 0.5em;
  2133. }
  2134. .components-datetime__time-legend.invisible {
  2135. position: absolute;
  2136. top: -999em;
  2137. left: -999em;
  2138. }
  2139. .components-datetime__time-field-integer-field {
  2140. font-family: inherit;
  2141. }
  2142. .components-datetime__time-field-hours-input,
  2143. .components-datetime__time-field-minutes-input,
  2144. .components-datetime__time-field-day-input {
  2145. width: 35px;
  2146. }
  2147. .components-datetime__time-field-year-input {
  2148. width: 55px;
  2149. }
  2150. .components-datetime__time-field-month-select {
  2151. max-width: 145px;
  2152. }
  2153. .components-popover .components-datetime__date {
  2154. padding-left: 4px;
  2155. }
  2156. .block-editor-dimension-control .components-base-control__field {
  2157. display: flex;
  2158. align-items: center;
  2159. }
  2160. .block-editor-dimension-control .components-base-control__label {
  2161. display: flex;
  2162. align-items: center;
  2163. margin-right: 1em;
  2164. margin-bottom: 0;
  2165. }
  2166. .block-editor-dimension-control .components-base-control__label .dashicon {
  2167. margin-right: 0.5em;
  2168. }
  2169. .block-editor-dimension-control.is-manual .components-base-control__label {
  2170. width: 10em;
  2171. }
  2172. body.is-dragging-components-draggable {
  2173. cursor: move;
  2174. /* Fallback for IE/Edge < 14 */
  2175. cursor: grabbing !important;
  2176. }
  2177. .components-draggable__invisible-drag-image {
  2178. position: fixed;
  2179. left: -1000px;
  2180. height: 50px;
  2181. width: 50px;
  2182. }
  2183. .components-draggable__clone {
  2184. position: fixed;
  2185. padding: 0;
  2186. background: transparent;
  2187. pointer-events: none;
  2188. z-index: 1000000000;
  2189. }
  2190. .components-drop-zone {
  2191. position: absolute;
  2192. top: 0;
  2193. right: 0;
  2194. bottom: 0;
  2195. left: 0;
  2196. z-index: 40;
  2197. visibility: hidden;
  2198. opacity: 0;
  2199. border-radius: 2px;
  2200. }
  2201. .components-drop-zone.is-active {
  2202. opacity: 1;
  2203. visibility: visible;
  2204. }
  2205. .components-drop-zone__content {
  2206. position: absolute;
  2207. top: 0;
  2208. bottom: 0;
  2209. left: 0;
  2210. right: 0;
  2211. height: 100%;
  2212. width: 100%;
  2213. display: flex;
  2214. background-color: var(--wp-admin-theme-color);
  2215. align-items: center;
  2216. justify-content: center;
  2217. z-index: 50;
  2218. text-align: center;
  2219. color: #fff;
  2220. }
  2221. .components-drop-zone__content-icon,
  2222. .components-drop-zone__content-text {
  2223. display: block;
  2224. }
  2225. .components-drop-zone__content-icon {
  2226. margin: 0 auto;
  2227. line-height: 0;
  2228. fill: currentColor;
  2229. pointer-events: none;
  2230. }
  2231. .components-drop-zone__content-text {
  2232. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2233. font-size: 13px;
  2234. }
  2235. .components-dropdown {
  2236. display: inline-block;
  2237. }
  2238. .components-dropdown__content .components-popover__content > div {
  2239. padding: 8px;
  2240. }
  2241. .components-dropdown__content [role=menuitem] {
  2242. white-space: nowrap;
  2243. }
  2244. .components-dropdown-menu__menu {
  2245. width: 100%;
  2246. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2247. font-size: 13px;
  2248. line-height: 1.4;
  2249. }
  2250. .components-dropdown-menu__menu .components-dropdown-menu__menu-item,
  2251. .components-dropdown-menu__menu .components-menu-item {
  2252. width: 100%;
  2253. padding: 6px;
  2254. outline: none;
  2255. cursor: pointer;
  2256. white-space: nowrap;
  2257. }
  2258. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
  2259. .components-dropdown-menu__menu .components-menu-item.has-separator {
  2260. margin-top: 6px;
  2261. position: relative;
  2262. overflow: visible;
  2263. }
  2264. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
  2265. .components-dropdown-menu__menu .components-menu-item.has-separator::before {
  2266. display: block;
  2267. content: "";
  2268. box-sizing: content-box;
  2269. background-color: #ddd;
  2270. position: absolute;
  2271. top: -3px;
  2272. left: 0;
  2273. right: 0;
  2274. height: 1px;
  2275. }
  2276. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,
  2277. .components-dropdown-menu__menu .components-menu-item.is-active svg {
  2278. color: #fff;
  2279. background: #1e1e1e;
  2280. box-shadow: 0 0 0 1px #1e1e1e;
  2281. border-radius: 1px;
  2282. }
  2283. .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,
  2284. .components-dropdown-menu__menu .components-menu-item > svg {
  2285. border-radius: 2px;
  2286. width: 24px;
  2287. height: 24px;
  2288. }
  2289. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,
  2290. .components-dropdown-menu__menu .components-menu-item.is-icon-only {
  2291. width: auto;
  2292. }
  2293. .components-dropdown-menu__menu .components-menu-item__button,
  2294. .components-dropdown-menu__menu .components-menu-item__button.components-button {
  2295. min-height: 36px;
  2296. height: auto;
  2297. text-align: left;
  2298. padding-left: 8px;
  2299. padding-right: 8px;
  2300. }
  2301. .components-dropdown-menu__menu .components-menu-group {
  2302. padding: 8px;
  2303. margin-top: 0;
  2304. margin-bottom: 0;
  2305. margin-left: -8px;
  2306. margin-right: -8px;
  2307. }
  2308. .components-dropdown-menu__menu .components-menu-group:first-child {
  2309. margin-top: -8px;
  2310. }
  2311. .components-dropdown-menu__menu .components-menu-group:last-child {
  2312. margin-bottom: -8px;
  2313. }
  2314. .components-dropdown-menu__menu .components-menu-group + .components-menu-group {
  2315. margin-top: 0;
  2316. border-top: 1px solid #ccc;
  2317. padding: 8px;
  2318. }
  2319. .is-alternate .components-dropdown-menu__menu .components-menu-group + .components-menu-group {
  2320. border-color: #1e1e1e;
  2321. }
  2322. .components-font-size-picker__header__hint {
  2323. margin-left: 4px;
  2324. color: #757575;
  2325. }
  2326. .components-font-size-picker__header .components-button.is-small.has-icon:not(.has-text) {
  2327. min-width: 24px;
  2328. padding: 0;
  2329. }
  2330. .components-font-size-picker__controls {
  2331. max-width: 248px;
  2332. align-items: center;
  2333. margin-top: 8px;
  2334. margin-bottom: 24px;
  2335. }
  2336. .components-font-size-picker__controls .components-unit-control-wrapper .components-input-control__label {
  2337. font-weight: 300;
  2338. padding-bottom: 0 !important;
  2339. margin-bottom: 8px !important;
  2340. }
  2341. .components-font-size-picker__controls .components-custom-select-control__button {
  2342. width: 100%;
  2343. }
  2344. .components-font-size-picker__controls .components-font-size-picker__number {
  2345. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2346. padding: 6px 8px;
  2347. box-shadow: 0 0 0 transparent;
  2348. transition: box-shadow 0.1s linear;
  2349. border-radius: 2px;
  2350. border: 1px solid #757575;
  2351. /* Fonts smaller than 16px causes mobile safari to zoom. */
  2352. font-size: 16px;
  2353. /* Override core line-height. To be reviewed. */
  2354. line-height: normal;
  2355. display: inline-block;
  2356. font-weight: 500;
  2357. height: 30px;
  2358. margin-bottom: 0;
  2359. margin-left: 0;
  2360. margin-right: 8px;
  2361. margin-top: 8px;
  2362. width: 54px;
  2363. }
  2364. @media (prefers-reduced-motion: reduce) {
  2365. .components-font-size-picker__controls .components-font-size-picker__number {
  2366. transition-duration: 0s;
  2367. transition-delay: 0s;
  2368. }
  2369. }
  2370. @media (min-width: 600px) {
  2371. .components-font-size-picker__controls .components-font-size-picker__number {
  2372. font-size: 13px;
  2373. /* Override core line-height. To be reviewed. */
  2374. line-height: normal;
  2375. }
  2376. }
  2377. .components-font-size-picker__controls .components-font-size-picker__number:focus {
  2378. border-color: var(--wp-admin-theme-color);
  2379. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  2380. outline: 2px solid transparent;
  2381. }
  2382. .components-font-size-picker__controls .components-font-size-picker__number::-webkit-input-placeholder {
  2383. color: rgba(30, 30, 30, 0.62);
  2384. }
  2385. .components-font-size-picker__controls .components-font-size-picker__number::-moz-placeholder {
  2386. opacity: 1;
  2387. color: rgba(30, 30, 30, 0.62);
  2388. }
  2389. .components-font-size-picker__controls .components-font-size-picker__number:-ms-input-placeholder {
  2390. color: rgba(30, 30, 30, 0.62);
  2391. }
  2392. .components-font-size-picker__controls .components-font-size-picker__number[value=""] + .components-button {
  2393. cursor: default;
  2394. opacity: 0.3;
  2395. pointer-events: none;
  2396. }
  2397. .components-font-size-picker__controls .components-font-size-picker__number-container {
  2398. display: flex;
  2399. flex-direction: column;
  2400. }
  2401. .components-font-size-picker__controls .components-color-palette__clear {
  2402. height: 30px;
  2403. }
  2404. .components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
  2405. width: 30px;
  2406. height: 30px;
  2407. }
  2408. .components-font-size-picker {
  2409. border: 0;
  2410. padding: 0;
  2411. margin: 0;
  2412. }
  2413. .components-form-toggle {
  2414. position: relative;
  2415. display: inline-block;
  2416. }
  2417. .components-form-toggle .components-form-toggle__track {
  2418. content: "";
  2419. display: inline-block;
  2420. box-sizing: border-box;
  2421. vertical-align: top;
  2422. background-color: #fff;
  2423. border: 1px solid #1e1e1e;
  2424. width: 36px;
  2425. height: 18px;
  2426. border-radius: 9px;
  2427. transition: 0.2s background ease;
  2428. }
  2429. @media (prefers-reduced-motion: reduce) {
  2430. .components-form-toggle .components-form-toggle__track {
  2431. transition-duration: 0s;
  2432. transition-delay: 0s;
  2433. }
  2434. }
  2435. .components-form-toggle .components-form-toggle__thumb {
  2436. display: block;
  2437. position: absolute;
  2438. box-sizing: border-box;
  2439. top: 3px;
  2440. left: 3px;
  2441. width: 12px;
  2442. height: 12px;
  2443. border-radius: 50%;
  2444. transition: 0.1s transform ease;
  2445. background-color: #1e1e1e;
  2446. border: 5px solid #1e1e1e;
  2447. }
  2448. @media (prefers-reduced-motion: reduce) {
  2449. .components-form-toggle .components-form-toggle__thumb {
  2450. transition-duration: 0s;
  2451. transition-delay: 0s;
  2452. }
  2453. }
  2454. .components-form-toggle.is-checked .components-form-toggle__track {
  2455. background-color: var(--wp-admin-theme-color);
  2456. border: 1px solid var(--wp-admin-theme-color);
  2457. border: 9px solid transparent;
  2458. }
  2459. .components-form-toggle .components-form-toggle__input:focus + .components-form-toggle__track {
  2460. box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
  2461. outline: 2px solid transparent;
  2462. outline-offset: 2px;
  2463. }
  2464. .components-form-toggle.is-checked .components-form-toggle__thumb {
  2465. background-color: #fff;
  2466. border-width: 0;
  2467. transform: translateX(18px);
  2468. }
  2469. .components-form-toggle.is-disabled, .components-disabled .components-form-toggle {
  2470. opacity: 0.3;
  2471. }
  2472. .components-form-toggle input.components-form-toggle__input[type=checkbox] {
  2473. position: absolute;
  2474. top: 0;
  2475. left: 0;
  2476. width: 100%;
  2477. height: 100%;
  2478. opacity: 0;
  2479. margin: 0;
  2480. padding: 0;
  2481. z-index: 1;
  2482. border: none;
  2483. }
  2484. .components-form-toggle input.components-form-toggle__input[type=checkbox]:checked {
  2485. background: none;
  2486. }
  2487. .components-form-toggle input.components-form-toggle__input[type=checkbox]::before {
  2488. content: "";
  2489. }
  2490. .components-form-token-field__input-container {
  2491. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2492. padding: 6px 8px;
  2493. box-shadow: 0 0 0 transparent;
  2494. transition: box-shadow 0.1s linear;
  2495. border-radius: 2px;
  2496. border: 1px solid #757575;
  2497. /* Fonts smaller than 16px causes mobile safari to zoom. */
  2498. font-size: 16px;
  2499. /* Override core line-height. To be reviewed. */
  2500. line-height: normal;
  2501. display: flex;
  2502. flex-wrap: wrap;
  2503. align-items: center;
  2504. width: 100%;
  2505. margin: 0 0 8px 0;
  2506. padding: 2px 4px;
  2507. cursor: text;
  2508. }
  2509. @media (prefers-reduced-motion: reduce) {
  2510. .components-form-token-field__input-container {
  2511. transition-duration: 0s;
  2512. transition-delay: 0s;
  2513. }
  2514. }
  2515. @media (min-width: 600px) {
  2516. .components-form-token-field__input-container {
  2517. font-size: 13px;
  2518. /* Override core line-height. To be reviewed. */
  2519. line-height: normal;
  2520. }
  2521. }
  2522. .components-form-token-field__input-container:focus {
  2523. border-color: var(--wp-admin-theme-color);
  2524. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  2525. outline: 2px solid transparent;
  2526. }
  2527. .components-form-token-field__input-container::-webkit-input-placeholder {
  2528. color: rgba(30, 30, 30, 0.62);
  2529. }
  2530. .components-form-token-field__input-container::-moz-placeholder {
  2531. opacity: 1;
  2532. color: rgba(30, 30, 30, 0.62);
  2533. }
  2534. .components-form-token-field__input-container:-ms-input-placeholder {
  2535. color: rgba(30, 30, 30, 0.62);
  2536. }
  2537. .components-form-token-field__input-container.is-disabled {
  2538. background: #ddd;
  2539. border-color: #ddd;
  2540. }
  2541. .components-form-token-field__input-container.is-active {
  2542. border-color: var(--wp-admin-theme-color);
  2543. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  2544. outline: 2px solid transparent;
  2545. }
  2546. .components-form-token-field__input-container input[type=text].components-form-token-field__input {
  2547. display: inline-block;
  2548. flex: 1;
  2549. font-family: inherit;
  2550. font-size: 16px;
  2551. width: 100%;
  2552. max-width: 100%;
  2553. margin-left: 4px;
  2554. padding: 0;
  2555. min-height: 24px;
  2556. min-width: 50px;
  2557. background: inherit;
  2558. border: 0;
  2559. color: #1e1e1e;
  2560. box-shadow: none;
  2561. }
  2562. @media (min-width: 600px) {
  2563. .components-form-token-field__input-container input[type=text].components-form-token-field__input {
  2564. font-size: 13px;
  2565. }
  2566. }
  2567. .components-form-token-field__input-container input[type=text].components-form-token-field__input:focus, .components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input {
  2568. outline: none;
  2569. box-shadow: none;
  2570. }
  2571. .components-form-token-field__input-container .components-form-token-field__token + input[type=text].components-form-token-field__input {
  2572. width: auto;
  2573. }
  2574. .components-form-token-field__label {
  2575. display: inline-block;
  2576. margin-bottom: 8px;
  2577. }
  2578. .components-form-token-field__help {
  2579. font-size: 12px;
  2580. font-style: normal;
  2581. color: #757575;
  2582. }
  2583. .components-form-token-field__token {
  2584. font-size: 13px;
  2585. display: flex;
  2586. margin: 2px 4px 2px 0;
  2587. color: #1e1e1e;
  2588. max-width: 100%;
  2589. }
  2590. .components-form-token-field__token.is-success .components-form-token-field__token-text,
  2591. .components-form-token-field__token.is-success .components-form-token-field__remove-token {
  2592. background: #4ab866;
  2593. }
  2594. .components-form-token-field__token.is-error .components-form-token-field__token-text,
  2595. .components-form-token-field__token.is-error .components-form-token-field__remove-token {
  2596. background: #cc1818;
  2597. }
  2598. .components-form-token-field__token.is-validating .components-form-token-field__token-text,
  2599. .components-form-token-field__token.is-validating .components-form-token-field__remove-token {
  2600. color: #757575;
  2601. }
  2602. .components-form-token-field__token.is-borderless {
  2603. position: relative;
  2604. padding: 0 16px 0 0;
  2605. }
  2606. .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2607. background: transparent;
  2608. color: var(--wp-admin-theme-color);
  2609. }
  2610. .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
  2611. background: transparent;
  2612. color: #757575;
  2613. position: absolute;
  2614. top: 1px;
  2615. right: 0;
  2616. }
  2617. .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
  2618. color: #4ab866;
  2619. }
  2620. .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
  2621. color: #cc1818;
  2622. border-radius: 4px 0 0 4px;
  2623. padding: 0 4px 0 6px;
  2624. }
  2625. .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
  2626. color: #1e1e1e;
  2627. }
  2628. .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
  2629. cursor: default;
  2630. }
  2631. .components-form-token-field__token-text,
  2632. .components-form-token-field__remove-token.components-button {
  2633. display: inline-block;
  2634. line-height: 24px;
  2635. height: auto;
  2636. background: #ddd;
  2637. min-width: unset;
  2638. transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1);
  2639. }
  2640. @media (prefers-reduced-motion: reduce) {
  2641. .components-form-token-field__token-text,
  2642. .components-form-token-field__remove-token.components-button {
  2643. transition-duration: 0s;
  2644. transition-delay: 0s;
  2645. animation-duration: 1ms;
  2646. animation-delay: 0s;
  2647. }
  2648. }
  2649. .components-form-token-field__token-text {
  2650. border-radius: 2px 0 0 2px;
  2651. padding: 0 0 0 8px;
  2652. white-space: nowrap;
  2653. overflow: hidden;
  2654. text-overflow: ellipsis;
  2655. }
  2656. .components-form-token-field__remove-token.components-button {
  2657. cursor: pointer;
  2658. border-radius: 0 2px 2px 0;
  2659. padding: 0 2px;
  2660. color: #1e1e1e;
  2661. line-height: 10px;
  2662. overflow: initial;
  2663. }
  2664. .components-form-token-field__remove-token.components-button:hover {
  2665. color: #1e1e1e;
  2666. }
  2667. .components-form-token-field__suggestions-list {
  2668. flex: 1 0 100%;
  2669. min-width: 100%;
  2670. max-height: 9em;
  2671. overflow-y: auto;
  2672. transition: all 0.15s ease-in-out;
  2673. list-style: none;
  2674. border-top: 1px solid #757575;
  2675. margin: 4px -4px -4px;
  2676. padding: 0;
  2677. }
  2678. @media (prefers-reduced-motion: reduce) {
  2679. .components-form-token-field__suggestions-list {
  2680. transition-duration: 0s;
  2681. transition-delay: 0s;
  2682. }
  2683. }
  2684. .components-form-token-field__suggestion {
  2685. color: #757575;
  2686. display: block;
  2687. font-size: 13px;
  2688. padding: 4px 8px;
  2689. margin: 0;
  2690. cursor: pointer;
  2691. }
  2692. .components-form-token-field__suggestion.is-selected {
  2693. background: var(--wp-admin-theme-color);
  2694. color: #fff;
  2695. }
  2696. .components-form-token-field__suggestion-match {
  2697. text-decoration: underline;
  2698. }
  2699. @media (min-width: 600px) {
  2700. .components-guide {
  2701. width: 600px;
  2702. }
  2703. }
  2704. .components-guide .components-modal__content {
  2705. padding: 0;
  2706. margin-top: 0;
  2707. border-radius: 2px;
  2708. }
  2709. .components-guide .components-modal__content::before {
  2710. content: none;
  2711. }
  2712. .components-guide .components-modal__header {
  2713. border-bottom: none;
  2714. padding: 0;
  2715. position: sticky;
  2716. }
  2717. .components-guide .components-modal__header .components-button {
  2718. align-self: flex-start;
  2719. margin: 8px 8px 0 0;
  2720. position: static;
  2721. }
  2722. .components-guide .components-modal__header .components-button:hover svg {
  2723. fill: #fff;
  2724. }
  2725. .components-guide__container {
  2726. display: flex;
  2727. flex-direction: column;
  2728. justify-content: space-between;
  2729. margin-top: -60px;
  2730. min-height: 100%;
  2731. }
  2732. .components-guide__page {
  2733. display: flex;
  2734. flex-direction: column;
  2735. justify-content: center;
  2736. position: relative;
  2737. }
  2738. @media (min-width: 600px) {
  2739. .components-guide__page {
  2740. min-height: 300px;
  2741. }
  2742. }
  2743. .components-guide__footer {
  2744. align-content: center;
  2745. display: flex;
  2746. height: 30px;
  2747. justify-content: center;
  2748. margin: 0 0 24px 0;
  2749. padding: 0 32px;
  2750. position: relative;
  2751. width: 100%;
  2752. }
  2753. .components-guide__page-control {
  2754. margin: 0;
  2755. text-align: center;
  2756. }
  2757. .components-guide__page-control li {
  2758. display: inline-block;
  2759. margin: 0;
  2760. }
  2761. .components-guide__page-control .components-button {
  2762. height: 30px;
  2763. min-width: 20px;
  2764. margin: -6px 0;
  2765. }
  2766. .components-modal__frame.components-guide {
  2767. border: none;
  2768. min-width: 312px;
  2769. height: 80vh;
  2770. max-height: 575px;
  2771. }
  2772. @media (max-width: 600px) {
  2773. .components-modal__frame.components-guide {
  2774. margin: auto;
  2775. max-width: calc(100vw - 16px * 2);
  2776. }
  2777. }
  2778. .components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {
  2779. height: 30px;
  2780. position: absolute;
  2781. }
  2782. .components-button.components-guide__back-button, .components-button.components-guide__forward-button {
  2783. font-size: 13px;
  2784. padding: 4px 2px;
  2785. }
  2786. .components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {
  2787. margin: 0;
  2788. }
  2789. .components-button.components-guide__back-button:hover, .components-button.components-guide__forward-button:hover {
  2790. text-decoration: underline;
  2791. }
  2792. .components-button.components-guide__back-button {
  2793. left: 32px;
  2794. }
  2795. .components-button.components-guide__forward-button {
  2796. right: 32px;
  2797. color: #1386bf;
  2798. font-weight: bold;
  2799. }
  2800. .components-button.components-guide__finish-button {
  2801. right: 32px;
  2802. }
  2803. [role=region] {
  2804. position: relative;
  2805. }
  2806. .is-focusing-regions [role=region]:focus::after {
  2807. content: "";
  2808. position: absolute;
  2809. top: 0;
  2810. bottom: 0;
  2811. left: 0;
  2812. right: 0;
  2813. pointer-events: none;
  2814. outline: 4px solid transparent;
  2815. box-shadow: inset 0 0 0 4px var(--wp-admin-theme-color);
  2816. }
  2817. @supports (outline-offset: 1px) {
  2818. .is-focusing-regions [role=region]:focus::after {
  2819. content: none;
  2820. }
  2821. .is-focusing-regions [role=region]:focus {
  2822. outline-style: solid;
  2823. outline-color: var(--wp-admin-theme-color);
  2824. outline-width: 4px;
  2825. outline-offset: -4px;
  2826. }
  2827. }
  2828. .components-menu-group + .components-menu-group {
  2829. margin-top: 8px;
  2830. padding-top: 8px;
  2831. border-top: 1px solid #1e1e1e;
  2832. }
  2833. .components-menu-group + .components-menu-group.has-hidden-separator {
  2834. border-top: none;
  2835. margin-top: 0;
  2836. padding-top: 0;
  2837. }
  2838. .components-menu-group__label {
  2839. padding: 0 8px;
  2840. margin-top: 4px;
  2841. margin-bottom: 12px;
  2842. color: #757575;
  2843. text-transform: uppercase;
  2844. font-size: 11px;
  2845. font-weight: 500;
  2846. white-space: nowrap;
  2847. }
  2848. .components-menu-item__button,
  2849. .components-menu-item__button.components-button {
  2850. width: 100%;
  2851. }
  2852. .components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child, .components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,
  2853. .components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,
  2854. .components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child {
  2855. padding-right: 48px;
  2856. }
  2857. .components-menu-item__button .components-menu-items__item-icon,
  2858. .components-menu-item__button.components-button .components-menu-items__item-icon {
  2859. display: inline-block;
  2860. flex: 0 0 auto;
  2861. }
  2862. .components-menu-item__button .components-menu-items__item-icon.has-icon-right,
  2863. .components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right {
  2864. margin-right: -2px;
  2865. margin-left: 24px;
  2866. }
  2867. .components-menu-item__button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right,
  2868. .components-menu-item__button.components-button .components-menu-item__shortcut + .components-menu-items__item-icon.has-icon-right {
  2869. margin-left: 8px;
  2870. }
  2871. .components-menu-item__button .block-editor-block-icon,
  2872. .components-menu-item__button.components-button .block-editor-block-icon {
  2873. margin-left: -2px;
  2874. margin-right: 8px;
  2875. }
  2876. .components-menu-item__button.is-primary,
  2877. .components-menu-item__button.components-button.is-primary {
  2878. justify-content: center;
  2879. }
  2880. .components-menu-item__button.is-primary .components-menu-item__item,
  2881. .components-menu-item__button.components-button.is-primary .components-menu-item__item {
  2882. margin-right: 0;
  2883. }
  2884. .components-menu-item__info-wrapper {
  2885. display: flex;
  2886. flex-direction: column;
  2887. margin-right: auto;
  2888. }
  2889. .components-menu-item__info {
  2890. margin-top: 4px;
  2891. font-size: 12px;
  2892. color: #757575;
  2893. white-space: normal;
  2894. }
  2895. .components-menu-item__item {
  2896. white-space: nowrap;
  2897. min-width: 160px;
  2898. margin-right: auto;
  2899. display: inline-flex;
  2900. align-items: center;
  2901. }
  2902. .components-menu-item__shortcut {
  2903. align-self: center;
  2904. margin-right: 0;
  2905. margin-left: auto;
  2906. padding-left: 24px;
  2907. color: currentColor;
  2908. display: none;
  2909. }
  2910. @media (min-width: 480px) {
  2911. .components-menu-item__shortcut {
  2912. display: inline;
  2913. }
  2914. }
  2915. .components-menu-items-choice svg,
  2916. .components-menu-items-choice.components-button svg {
  2917. margin-right: 12px;
  2918. }
  2919. .components-menu-items-choice.has-icon,
  2920. .components-menu-items-choice.components-button.has-icon {
  2921. padding-left: 12px;
  2922. }
  2923. .components-modal__screen-overlay {
  2924. position: fixed;
  2925. top: 0;
  2926. right: 0;
  2927. bottom: 0;
  2928. left: 0;
  2929. background-color: rgba(0, 0, 0, 0.35);
  2930. z-index: 100000;
  2931. display: flex;
  2932. animation: edit-post__fade-in-animation 0.2s ease-out 0s;
  2933. animation-fill-mode: forwards;
  2934. }
  2935. @media (prefers-reduced-motion: reduce) {
  2936. .components-modal__screen-overlay {
  2937. animation-duration: 1ms;
  2938. animation-delay: 0s;
  2939. }
  2940. }
  2941. .components-modal__frame {
  2942. margin: 0;
  2943. width: 100%;
  2944. background: #fff;
  2945. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  2946. border-radius: 2px;
  2947. overflow: hidden;
  2948. display: flex;
  2949. }
  2950. @media (min-width: 600px) {
  2951. .components-modal__frame {
  2952. margin: auto;
  2953. width: auto;
  2954. min-width: 360px;
  2955. max-width: calc(100% - 32px);
  2956. max-height: calc(100% - 120px);
  2957. animation: components-modal__appear-animation 0.1s ease-out;
  2958. animation-fill-mode: forwards;
  2959. }
  2960. }
  2961. @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
  2962. .components-modal__frame {
  2963. animation-duration: 1ms;
  2964. animation-delay: 0s;
  2965. }
  2966. }
  2967. @media (min-width: 600px) {
  2968. .components-modal__frame.is-full-screen {
  2969. width: 90vw;
  2970. min-height: 90vh;
  2971. }
  2972. }
  2973. @media (min-width: 960px) {
  2974. .components-modal__frame {
  2975. max-height: 70%;
  2976. }
  2977. }
  2978. @keyframes components-modal__appear-animation {
  2979. from {
  2980. transform: translateY(32px);
  2981. }
  2982. to {
  2983. transform: translateY(0);
  2984. }
  2985. }
  2986. .components-modal__header {
  2987. box-sizing: border-box;
  2988. border-bottom: 1px solid #ddd;
  2989. padding: 0 32px;
  2990. display: flex;
  2991. flex-direction: row;
  2992. justify-content: space-between;
  2993. align-items: center;
  2994. height: 60px;
  2995. width: 100%;
  2996. z-index: 10;
  2997. position: absolute;
  2998. top: 0;
  2999. left: 0;
  3000. }
  3001. .components-modal__header .components-modal__header-heading {
  3002. font-size: 1rem;
  3003. font-weight: 600;
  3004. }
  3005. .components-modal__header h1 {
  3006. line-height: 1;
  3007. margin: 0;
  3008. }
  3009. .components-modal__header .components-button {
  3010. position: relative;
  3011. left: 8px;
  3012. }
  3013. .components-modal__header-heading-container {
  3014. align-items: center;
  3015. flex-grow: 1;
  3016. display: flex;
  3017. flex-direction: row;
  3018. justify-content: left;
  3019. }
  3020. .components-modal__header-icon-container {
  3021. display: inline-block;
  3022. }
  3023. .components-modal__header-icon-container svg {
  3024. max-width: 36px;
  3025. max-height: 36px;
  3026. padding: 8px;
  3027. }
  3028. .components-modal__content {
  3029. flex: 1;
  3030. margin-top: 60px;
  3031. padding: 0 32px 24px;
  3032. overflow: auto;
  3033. }
  3034. .components-modal__content::before {
  3035. content: "";
  3036. display: block;
  3037. margin-bottom: 24px;
  3038. }
  3039. .components-modal__content.hide-header {
  3040. margin-top: 0;
  3041. padding-top: 24px;
  3042. }
  3043. .components-modal__content.hide-header::before {
  3044. content: none;
  3045. }
  3046. .components-notice {
  3047. display: flex;
  3048. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3049. font-size: 13px;
  3050. background-color: #fff;
  3051. border-left: 4px solid var(--wp-admin-theme-color);
  3052. margin: 5px 15px 2px;
  3053. padding: 8px 12px;
  3054. align-items: center;
  3055. }
  3056. .components-notice.is-dismissible {
  3057. padding-right: 36px;
  3058. position: relative;
  3059. }
  3060. .components-notice.is-success {
  3061. border-left-color: #4ab866;
  3062. background-color: #eff9f1;
  3063. }
  3064. .components-notice.is-warning {
  3065. border-left-color: #f0b849;
  3066. background-color: #fef8ee;
  3067. }
  3068. .components-notice.is-error {
  3069. border-left-color: #cc1818;
  3070. background-color: #f4a2a2;
  3071. }
  3072. .components-notice__content {
  3073. flex-grow: 1;
  3074. margin: 4px 25px 4px 0;
  3075. }
  3076. .components-notice__actions {
  3077. display: flex;
  3078. flex-wrap: wrap;
  3079. }
  3080. .components-notice__action.components-button {
  3081. margin-right: 8px;
  3082. }
  3083. .components-notice__action.components-button, .components-notice__action.components-button.is-link {
  3084. margin-left: 12px;
  3085. }
  3086. .components-notice__action.components-button.is-secondary {
  3087. vertical-align: initial;
  3088. }
  3089. .components-notice__dismiss {
  3090. color: #757575;
  3091. align-self: flex-start;
  3092. flex-shrink: 0;
  3093. }
  3094. .components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active, .components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus {
  3095. color: #1e1e1e;
  3096. background-color: transparent;
  3097. }
  3098. .components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
  3099. box-shadow: none;
  3100. }
  3101. .components-notice-list {
  3102. max-width: 100vw;
  3103. box-sizing: border-box;
  3104. }
  3105. .components-notice-list .components-notice__content {
  3106. margin-top: 12px;
  3107. margin-bottom: 12px;
  3108. line-height: 2;
  3109. }
  3110. .components-notice-list .components-notice__action.components-button {
  3111. display: block;
  3112. margin-left: 0;
  3113. margin-top: 8px;
  3114. }
  3115. .components-panel {
  3116. background: #fff;
  3117. border: 1px solid #e0e0e0;
  3118. }
  3119. .components-panel > .components-panel__header:first-child,
  3120. .components-panel > .components-panel__body:first-child {
  3121. margin-top: -1px;
  3122. }
  3123. .components-panel > .components-panel__header:last-child,
  3124. .components-panel > .components-panel__body:last-child {
  3125. border-bottom-width: 0;
  3126. }
  3127. .components-panel + .components-panel {
  3128. margin-top: -1px;
  3129. }
  3130. .components-panel__body {
  3131. border-top: 1px solid #e0e0e0;
  3132. border-bottom: 1px solid #e0e0e0;
  3133. }
  3134. .components-panel__body h3 {
  3135. margin: 0 0 0.5em;
  3136. }
  3137. .components-panel__body.is-opened {
  3138. padding: 16px;
  3139. }
  3140. .components-panel__header {
  3141. display: flex;
  3142. justify-content: space-between;
  3143. align-items: center;
  3144. padding: 0 16px;
  3145. height: 48px;
  3146. border-bottom: 1px solid #ddd;
  3147. }
  3148. .components-panel__header h2 {
  3149. margin: 0;
  3150. font-size: inherit;
  3151. color: inherit;
  3152. }
  3153. .components-panel__body + .components-panel__body,
  3154. .components-panel__body + .components-panel__header,
  3155. .components-panel__header + .components-panel__body,
  3156. .components-panel__header + .components-panel__header {
  3157. margin-top: -1px;
  3158. }
  3159. .components-panel__body > .components-panel__body-title {
  3160. display: block;
  3161. padding: 0;
  3162. font-size: inherit;
  3163. margin-top: 0;
  3164. margin-bottom: 0;
  3165. transition: 0.1s background ease-in-out;
  3166. }
  3167. @media (prefers-reduced-motion: reduce) {
  3168. .components-panel__body > .components-panel__body-title {
  3169. transition-duration: 0s;
  3170. transition-delay: 0s;
  3171. }
  3172. }
  3173. .components-panel__body.is-opened > .components-panel__body-title {
  3174. margin: -16px;
  3175. margin-bottom: 5px;
  3176. }
  3177. .components-panel__body > .components-panel__body-title:hover {
  3178. background: #f0f0f0;
  3179. border: none;
  3180. }
  3181. .components-panel__body-toggle.components-button {
  3182. position: relative;
  3183. padding: 16px 48px 16px 16px;
  3184. outline: none;
  3185. width: 100%;
  3186. font-weight: 500;
  3187. text-align: left;
  3188. color: #1e1e1e;
  3189. border: none;
  3190. box-shadow: none;
  3191. transition: 0.1s background ease-in-out;
  3192. height: auto;
  3193. /* rtl:begin:ignore */
  3194. /* rtl:end:ignore */
  3195. }
  3196. @media (prefers-reduced-motion: reduce) {
  3197. .components-panel__body-toggle.components-button {
  3198. transition-duration: 0s;
  3199. transition-delay: 0s;
  3200. }
  3201. }
  3202. .components-panel__body-toggle.components-button:focus {
  3203. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  3204. border-radius: 0;
  3205. }
  3206. .components-panel__body-toggle.components-button .components-panel__arrow {
  3207. position: absolute;
  3208. right: 16px;
  3209. top: 50%;
  3210. transform: translateY(-50%);
  3211. color: #1e1e1e;
  3212. fill: currentColor;
  3213. transition: 0.1s color ease-in-out;
  3214. }
  3215. @media (prefers-reduced-motion: reduce) {
  3216. .components-panel__body-toggle.components-button .components-panel__arrow {
  3217. transition-duration: 0s;
  3218. transition-delay: 0s;
  3219. }
  3220. }
  3221. body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
  3222. transform: scaleX(-1);
  3223. -ms-filter: fliph;
  3224. filter: FlipH;
  3225. margin-top: -10px;
  3226. }
  3227. .components-panel__icon {
  3228. color: #757575;
  3229. margin: -2px 0 -2px 6px;
  3230. }
  3231. .components-panel__body-toggle-icon {
  3232. margin-right: -5px;
  3233. }
  3234. .components-panel__color-title {
  3235. float: left;
  3236. height: 19px;
  3237. }
  3238. .components-panel__row {
  3239. display: flex;
  3240. justify-content: space-between;
  3241. align-items: center;
  3242. margin-top: 8px;
  3243. min-height: 36px;
  3244. }
  3245. .components-panel__row select {
  3246. min-width: 0;
  3247. }
  3248. .components-panel__row label {
  3249. margin-right: 12px;
  3250. flex-shrink: 0;
  3251. max-width: 75%;
  3252. }
  3253. .components-panel__row:empty, .components-panel__row:first-of-type {
  3254. margin-top: 0;
  3255. }
  3256. .components-panel .circle-picker {
  3257. padding-bottom: 20px;
  3258. }
  3259. .components-placeholder.components-placeholder {
  3260. box-sizing: border-box;
  3261. position: relative;
  3262. padding: 1em;
  3263. min-height: 200px;
  3264. width: 100%;
  3265. text-align: left;
  3266. margin: 0;
  3267. color: #1e1e1e;
  3268. -moz-font-smoothing: subpixel-antialiased;
  3269. -webkit-font-smoothing: subpixel-antialiased;
  3270. border-radius: 2px;
  3271. background-color: #fff;
  3272. box-shadow: inset 0 0 0 1px #1e1e1e;
  3273. outline: 1px solid transparent;
  3274. }
  3275. @supports (position: sticky) {
  3276. .components-placeholder.components-placeholder {
  3277. display: flex;
  3278. flex-direction: column;
  3279. justify-content: center;
  3280. align-items: flex-start;
  3281. }
  3282. }
  3283. .components-placeholder.components-placeholder .components-base-control__label {
  3284. font-size: 13px;
  3285. }
  3286. .components-placeholder__error,
  3287. .components-placeholder__instructions,
  3288. .components-placeholder__label,
  3289. .components-placeholder__fieldset {
  3290. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3291. font-size: 13px;
  3292. }
  3293. .components-placeholder__label {
  3294. display: flex;
  3295. font-weight: 600;
  3296. margin-bottom: 16px;
  3297. align-items: center;
  3298. }
  3299. .components-placeholder__label > svg,
  3300. .components-placeholder__label .dashicon,
  3301. .components-placeholder__label .block-editor-block-icon {
  3302. margin-right: 1ch;
  3303. fill: currentColor;
  3304. }
  3305. @media (forced-colors: active) {
  3306. .components-placeholder__label > svg,
  3307. .components-placeholder__label .dashicon,
  3308. .components-placeholder__label .block-editor-block-icon {
  3309. fill: CanvasText;
  3310. }
  3311. }
  3312. .components-placeholder__label:empty {
  3313. display: none;
  3314. }
  3315. .components-placeholder__fieldset,
  3316. .components-placeholder__fieldset form {
  3317. display: flex;
  3318. flex-direction: row;
  3319. width: 100%;
  3320. flex-wrap: wrap;
  3321. }
  3322. .components-placeholder__fieldset p,
  3323. .components-placeholder__fieldset form p {
  3324. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3325. font-size: 13px;
  3326. }
  3327. .components-placeholder__fieldset.components-placeholder__fieldset {
  3328. border: none;
  3329. padding: 0;
  3330. }
  3331. .components-placeholder__fieldset.components-placeholder__fieldset .components-placeholder__instructions {
  3332. padding: 0;
  3333. font-weight: normal;
  3334. font-size: 1em;
  3335. }
  3336. .components-placeholder__fieldset.is-column-layout,
  3337. .components-placeholder__fieldset.is-column-layout form {
  3338. flex-direction: column;
  3339. }
  3340. .components-placeholder__input[type=url] {
  3341. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3342. padding: 6px 8px;
  3343. box-shadow: 0 0 0 transparent;
  3344. transition: box-shadow 0.1s linear;
  3345. border-radius: 2px;
  3346. border: 1px solid #757575;
  3347. /* Fonts smaller than 16px causes mobile safari to zoom. */
  3348. font-size: 16px;
  3349. /* Override core line-height. To be reviewed. */
  3350. line-height: normal;
  3351. margin: 0 8px 0 0;
  3352. flex: 1 1 auto;
  3353. }
  3354. @media (prefers-reduced-motion: reduce) {
  3355. .components-placeholder__input[type=url] {
  3356. transition-duration: 0s;
  3357. transition-delay: 0s;
  3358. }
  3359. }
  3360. @media (min-width: 600px) {
  3361. .components-placeholder__input[type=url] {
  3362. font-size: 13px;
  3363. /* Override core line-height. To be reviewed. */
  3364. line-height: normal;
  3365. }
  3366. }
  3367. .components-placeholder__input[type=url]:focus {
  3368. border-color: var(--wp-admin-theme-color);
  3369. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  3370. outline: 2px solid transparent;
  3371. }
  3372. .components-placeholder__input[type=url]::-webkit-input-placeholder {
  3373. color: rgba(30, 30, 30, 0.62);
  3374. }
  3375. .components-placeholder__input[type=url]::-moz-placeholder {
  3376. opacity: 1;
  3377. color: rgba(30, 30, 30, 0.62);
  3378. }
  3379. .components-placeholder__input[type=url]:-ms-input-placeholder {
  3380. color: rgba(30, 30, 30, 0.62);
  3381. }
  3382. .components-placeholder__instructions {
  3383. margin-bottom: 1em;
  3384. }
  3385. .components-placeholder__error {
  3386. margin-top: 1em;
  3387. width: 100%;
  3388. }
  3389. .components-placeholder__preview img {
  3390. margin: 3%;
  3391. width: 50%;
  3392. }
  3393. .components-placeholder__fieldset .components-button {
  3394. margin-right: 12px;
  3395. margin-bottom: 12px;
  3396. }
  3397. .components-placeholder__fieldset .components-button:last-child {
  3398. margin-bottom: 0;
  3399. margin-right: 0;
  3400. }
  3401. .components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {
  3402. margin-left: 10px;
  3403. margin-right: 10px;
  3404. }
  3405. .components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {
  3406. margin-right: 0;
  3407. }
  3408. .components-placeholder.is-large .components-placeholder__label {
  3409. font-size: 18pt;
  3410. font-weight: normal;
  3411. }
  3412. .components-placeholder.is-medium .components-placeholder__instructions, .components-placeholder.is-small .components-placeholder__instructions {
  3413. display: none;
  3414. }
  3415. .components-placeholder.is-medium .components-placeholder__fieldset,
  3416. .components-placeholder.is-medium .components-placeholder__fieldset form, .components-placeholder.is-small .components-placeholder__fieldset,
  3417. .components-placeholder.is-small .components-placeholder__fieldset form {
  3418. flex-direction: column;
  3419. }
  3420. .components-placeholder.is-medium .components-placeholder__fieldset .components-button, .components-placeholder.is-small .components-placeholder__fieldset .components-button {
  3421. margin-right: auto;
  3422. }
  3423. .components-placeholder.is-small .components-button {
  3424. padding: 0 8px 2px;
  3425. }
  3426. /*!rtl:begin:ignore*/
  3427. .components-popover {
  3428. position: fixed;
  3429. z-index: 1000000;
  3430. top: 0;
  3431. left: 0;
  3432. opacity: 0;
  3433. }
  3434. .components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {
  3435. opacity: 1;
  3436. }
  3437. .components-popover.is-expanded {
  3438. top: 0;
  3439. left: 0;
  3440. right: 0;
  3441. bottom: 0;
  3442. z-index: 1000000 !important;
  3443. }
  3444. .components-popover:not(.is-without-arrow) {
  3445. margin-left: 2px;
  3446. }
  3447. .components-popover:not(.is-without-arrow)::before {
  3448. border: 8px solid #ccc;
  3449. }
  3450. .components-popover:not(.is-without-arrow).is-alternate::before {
  3451. border-color: #1e1e1e;
  3452. }
  3453. .components-popover:not(.is-without-arrow)::after {
  3454. border: 8px solid #fff;
  3455. }
  3456. .components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {
  3457. content: "";
  3458. position: absolute;
  3459. height: 0;
  3460. width: 0;
  3461. line-height: 0;
  3462. }
  3463. .components-popover:not(.is-without-arrow)[data-y-axis=top] {
  3464. margin-top: -8px;
  3465. }
  3466. .components-popover:not(.is-without-arrow)[data-y-axis=top]::before {
  3467. bottom: -8px;
  3468. }
  3469. .components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
  3470. bottom: -6px;
  3471. }
  3472. .components-popover:not(.is-without-arrow)[data-y-axis=top]::before, .components-popover:not(.is-without-arrow)[data-y-axis=top]::after {
  3473. border-bottom: none;
  3474. border-left-color: transparent;
  3475. border-right-color: transparent;
  3476. border-top-style: solid;
  3477. margin-left: -10px;
  3478. }
  3479. .components-popover:not(.is-without-arrow)[data-y-axis=bottom] {
  3480. margin-top: 8px;
  3481. }
  3482. .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before {
  3483. top: -8px;
  3484. }
  3485. .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
  3486. top: -6px;
  3487. }
  3488. .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::before, .components-popover:not(.is-without-arrow)[data-y-axis=bottom]::after {
  3489. border-bottom-style: solid;
  3490. border-left-color: transparent;
  3491. border-right-color: transparent;
  3492. border-top: none;
  3493. margin-left: -10px;
  3494. }
  3495. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left] {
  3496. margin-left: -8px;
  3497. }
  3498. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::before {
  3499. right: -8px;
  3500. }
  3501. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::after {
  3502. right: -6px;
  3503. }
  3504. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::before, .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=left]::after {
  3505. border-bottom-color: transparent;
  3506. border-left-style: solid;
  3507. border-right: none;
  3508. border-top-color: transparent;
  3509. }
  3510. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right] {
  3511. margin-left: 8px;
  3512. }
  3513. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::before {
  3514. left: -8px;
  3515. }
  3516. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::after {
  3517. left: -6px;
  3518. }
  3519. .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::before, .components-popover:not(.is-without-arrow)[data-y-axis=middle][data-x-axis=right]::after {
  3520. border-bottom-color: transparent;
  3521. border-left: none;
  3522. border-right-style: solid;
  3523. border-top-color: transparent;
  3524. }
  3525. .components-popover[data-y-axis=top] {
  3526. bottom: 100%;
  3527. }
  3528. .components-popover[data-y-axis=bottom] {
  3529. top: 100%;
  3530. }
  3531. .components-popover[data-y-axis=middle] {
  3532. align-items: center;
  3533. display: flex;
  3534. }
  3535. .components-popover.is-from-top {
  3536. margin-top: 12px;
  3537. }
  3538. .components-popover.is-from-bottom {
  3539. margin-top: -12px;
  3540. }
  3541. .components-popover.is-from-left:not(.is-from-top):not(.is-from-bottom) {
  3542. margin-left: 12px;
  3543. }
  3544. .components-popover.is-from-right:not(.is-from-top):not(.is-from-bottom) {
  3545. margin-right: 12px;
  3546. }
  3547. .components-popover__content {
  3548. height: 100%;
  3549. background: #fff;
  3550. border: 1px solid #ccc;
  3551. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  3552. border-radius: 2px;
  3553. }
  3554. .is-alternate .components-popover__content {
  3555. border: 1px solid #1e1e1e;
  3556. box-shadow: none;
  3557. }
  3558. .components-popover .components-popover__content {
  3559. position: absolute;
  3560. height: auto;
  3561. overflow-y: auto;
  3562. }
  3563. .components-popover.is-expanded .components-popover__content {
  3564. position: static;
  3565. height: calc(100% - 48px);
  3566. overflow-y: visible;
  3567. min-width: auto;
  3568. border: none;
  3569. border-top: 1px solid #1e1e1e;
  3570. }
  3571. .components-popover[data-y-axis=top] .components-popover__content {
  3572. bottom: 100%;
  3573. }
  3574. .components-popover[data-x-axis=center] .components-popover__content {
  3575. left: 50%;
  3576. transform: translateX(-50%);
  3577. }
  3578. .components-popover[data-x-axis=right] .components-popover__content {
  3579. position: absolute;
  3580. left: 100%;
  3581. }
  3582. .components-popover:not([data-y-axis=middle])[data-x-axis=right] .components-popover__content {
  3583. margin-left: -25px;
  3584. }
  3585. .components-popover[data-x-axis=left] .components-popover__content {
  3586. position: absolute;
  3587. right: 100%;
  3588. }
  3589. .components-popover:not([data-y-axis=middle])[data-x-axis=left] .components-popover__content {
  3590. margin-right: -25px;
  3591. }
  3592. .components-popover__header {
  3593. align-items: center;
  3594. background: #fff;
  3595. display: flex;
  3596. height: 48px;
  3597. justify-content: space-between;
  3598. padding: 0 8px 0 16px;
  3599. }
  3600. .components-popover__header-title {
  3601. overflow: hidden;
  3602. text-overflow: ellipsis;
  3603. white-space: nowrap;
  3604. width: 100%;
  3605. }
  3606. .components-popover__close.components-button {
  3607. z-index: 5;
  3608. }
  3609. /*!rtl:end:ignore*/
  3610. .components-radio-control {
  3611. display: flex;
  3612. flex-direction: column;
  3613. }
  3614. .components-radio-control .components-base-control__help {
  3615. margin-top: 0;
  3616. }
  3617. .components-radio-control .components-base-control__field {
  3618. margin-bottom: 0;
  3619. }
  3620. .components-radio-control__option:not(:last-child) {
  3621. margin-bottom: 4px;
  3622. }
  3623. .components-radio-control__input[type=radio] {
  3624. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3625. padding: 6px 8px;
  3626. box-shadow: 0 0 0 transparent;
  3627. transition: box-shadow 0.1s linear;
  3628. border-radius: 2px;
  3629. border: 1px solid #757575;
  3630. /* Fonts smaller than 16px causes mobile safari to zoom. */
  3631. font-size: 16px;
  3632. /* Override core line-height. To be reviewed. */
  3633. line-height: normal;
  3634. border: 1px solid #1e1e1e;
  3635. margin-right: 12px;
  3636. transition: none;
  3637. border-radius: 50%;
  3638. width: 24px;
  3639. height: 24px;
  3640. margin-top: 0;
  3641. margin-right: 6px;
  3642. }
  3643. @media (prefers-reduced-motion: reduce) {
  3644. .components-radio-control__input[type=radio] {
  3645. transition-duration: 0s;
  3646. transition-delay: 0s;
  3647. }
  3648. }
  3649. @media (min-width: 600px) {
  3650. .components-radio-control__input[type=radio] {
  3651. font-size: 13px;
  3652. /* Override core line-height. To be reviewed. */
  3653. line-height: normal;
  3654. }
  3655. }
  3656. .components-radio-control__input[type=radio]:focus {
  3657. border-color: var(--wp-admin-theme-color);
  3658. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  3659. outline: 2px solid transparent;
  3660. }
  3661. .components-radio-control__input[type=radio]::-webkit-input-placeholder {
  3662. color: rgba(30, 30, 30, 0.62);
  3663. }
  3664. .components-radio-control__input[type=radio]::-moz-placeholder {
  3665. opacity: 1;
  3666. color: rgba(30, 30, 30, 0.62);
  3667. }
  3668. .components-radio-control__input[type=radio]:-ms-input-placeholder {
  3669. color: rgba(30, 30, 30, 0.62);
  3670. }
  3671. @media (min-width: 600px) {
  3672. .components-radio-control__input[type=radio] {
  3673. height: 20px;
  3674. width: 20px;
  3675. }
  3676. }
  3677. .components-radio-control__input[type=radio]:checked::before {
  3678. box-sizing: inherit;
  3679. width: 8px;
  3680. height: 8px;
  3681. transform: translate(7px, 7px);
  3682. margin: 0;
  3683. background-color: #fff;
  3684. border: 4px solid #fff;
  3685. }
  3686. @media (min-width: 600px) {
  3687. .components-radio-control__input[type=radio]:checked::before {
  3688. transform: translate(5px, 5px);
  3689. }
  3690. }
  3691. .components-radio-control__input[type=radio]:focus {
  3692. box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
  3693. outline: 2px solid transparent;
  3694. }
  3695. .components-radio-control__input[type=radio]:checked {
  3696. background: var(--wp-admin-theme-color);
  3697. border-color: var(--wp-admin-theme-color);
  3698. }
  3699. .components-resizable-box__handle {
  3700. display: none;
  3701. width: 23px;
  3702. height: 23px;
  3703. z-index: 2;
  3704. }
  3705. .components-resizable-box__container.has-show-handle .components-resizable-box__handle {
  3706. display: block;
  3707. }
  3708. .components-resizable-box__container > img {
  3709. width: inherit;
  3710. }
  3711. .components-resizable-box__handle::after {
  3712. display: block;
  3713. content: "";
  3714. width: 15px;
  3715. height: 15px;
  3716. border-radius: 50%;
  3717. background: #fff;
  3718. cursor: inherit;
  3719. position: absolute;
  3720. top: calc(50% - 8px);
  3721. right: calc(50% - 8px);
  3722. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  3723. outline: 2px solid transparent;
  3724. }
  3725. .components-resizable-box__side-handle::before {
  3726. display: block;
  3727. border-radius: 2px;
  3728. content: "";
  3729. width: 3px;
  3730. height: 3px;
  3731. background: var(--wp-admin-theme-color);
  3732. cursor: inherit;
  3733. position: absolute;
  3734. top: calc(50% - 1px);
  3735. right: calc(50% - 1px);
  3736. transition: transform 0.1s ease-in;
  3737. opacity: 0;
  3738. }
  3739. @media (prefers-reduced-motion: reduce) {
  3740. .components-resizable-box__side-handle::before {
  3741. transition-duration: 0s;
  3742. transition-delay: 0s;
  3743. }
  3744. }
  3745. .components-resizable-box__side-handle {
  3746. z-index: 2;
  3747. }
  3748. .components-resizable-box__corner-handle {
  3749. z-index: 2;
  3750. }
  3751. .components-resizable-box__side-handle.components-resizable-box__handle-top,
  3752. .components-resizable-box__side-handle.components-resizable-box__handle-bottom,
  3753. .components-resizable-box__side-handle.components-resizable-box__handle-top::before,
  3754. .components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
  3755. width: 100%;
  3756. left: 0;
  3757. border-left: 0;
  3758. border-right: 0;
  3759. }
  3760. .components-resizable-box__side-handle.components-resizable-box__handle-left,
  3761. .components-resizable-box__side-handle.components-resizable-box__handle-right,
  3762. .components-resizable-box__side-handle.components-resizable-box__handle-left::before,
  3763. .components-resizable-box__side-handle.components-resizable-box__handle-right::before {
  3764. height: 100%;
  3765. top: 0;
  3766. border-top: 0;
  3767. border-bottom: 0;
  3768. }
  3769. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  3770. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  3771. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  3772. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  3773. animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
  3774. animation-fill-mode: forwards;
  3775. }
  3776. @media (prefers-reduced-motion: reduce) {
  3777. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  3778. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  3779. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  3780. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  3781. animation-duration: 1ms;
  3782. animation-delay: 0s;
  3783. }
  3784. }
  3785. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  3786. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  3787. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  3788. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  3789. animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
  3790. animation-fill-mode: forwards;
  3791. }
  3792. @media (prefers-reduced-motion: reduce) {
  3793. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  3794. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  3795. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  3796. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  3797. animation-duration: 1ms;
  3798. animation-delay: 0s;
  3799. }
  3800. }
  3801. /* This CSS is shown only to Safari, which has a bug with table-caption making it jumpy.
  3802. See https://bugs.webkit.org/show_bug.cgi?id=187903. */
  3803. @media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  3804. @supports (-webkit-appearance: none) {
  3805. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  3806. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  3807. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  3808. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  3809. animation: none;
  3810. }
  3811. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  3812. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  3813. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  3814. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  3815. animation: none;
  3816. }
  3817. }
  3818. }
  3819. @keyframes components-resizable-box__top-bottom-animation {
  3820. from {
  3821. transform: scaleX(0);
  3822. opacity: 0;
  3823. }
  3824. to {
  3825. transform: scaleX(1);
  3826. opacity: 1;
  3827. }
  3828. }
  3829. @keyframes components-resizable-box__left-right-animation {
  3830. from {
  3831. transform: scaleY(0);
  3832. opacity: 0;
  3833. }
  3834. to {
  3835. transform: scaleY(1);
  3836. opacity: 1;
  3837. }
  3838. }
  3839. /*!rtl:begin:ignore*/
  3840. .components-resizable-box__handle-right {
  3841. right: calc(11.5px * -1);
  3842. }
  3843. .components-resizable-box__handle-left {
  3844. left: calc(11.5px * -1);
  3845. }
  3846. .components-resizable-box__handle-top {
  3847. top: calc(11.5px * -1);
  3848. }
  3849. .components-resizable-box__handle-bottom {
  3850. bottom: calc(11.5px * -1);
  3851. }
  3852. /*!rtl:end:ignore*/
  3853. .components-responsive-wrapper {
  3854. position: relative;
  3855. max-width: 100%;
  3856. }
  3857. .components-responsive-wrapper, .components-responsive-wrapper > span {
  3858. display: block;
  3859. }
  3860. .components-responsive-wrapper__content {
  3861. position: absolute;
  3862. top: 0;
  3863. right: 0;
  3864. bottom: 0;
  3865. left: 0;
  3866. width: 100%;
  3867. height: 100%;
  3868. margin: auto;
  3869. }
  3870. .components-sandbox {
  3871. overflow: hidden;
  3872. }
  3873. iframe.components-sandbox {
  3874. width: 100%;
  3875. }
  3876. html.lockscroll,
  3877. body.lockscroll {
  3878. overflow: hidden;
  3879. }
  3880. .components-search-control {
  3881. position: relative;
  3882. }
  3883. .components-search-control input[type=search].components-search-control__input {
  3884. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3885. padding: 6px 8px;
  3886. box-shadow: 0 0 0 transparent;
  3887. transition: box-shadow 0.1s linear;
  3888. border-radius: 2px;
  3889. border: 1px solid #757575;
  3890. /* Fonts smaller than 16px causes mobile safari to zoom. */
  3891. font-size: 16px;
  3892. /* Override core line-height. To be reviewed. */
  3893. line-height: normal;
  3894. display: block;
  3895. padding: 16px 48px 16px 16px;
  3896. background: #f0f0f0;
  3897. border: none;
  3898. width: 100%;
  3899. height: 48px;
  3900. /* Fonts smaller than 16px causes mobile safari to zoom. */
  3901. font-size: 16px;
  3902. }
  3903. @media (prefers-reduced-motion: reduce) {
  3904. .components-search-control input[type=search].components-search-control__input {
  3905. transition-duration: 0s;
  3906. transition-delay: 0s;
  3907. }
  3908. }
  3909. @media (min-width: 600px) {
  3910. .components-search-control input[type=search].components-search-control__input {
  3911. font-size: 13px;
  3912. /* Override core line-height. To be reviewed. */
  3913. line-height: normal;
  3914. }
  3915. }
  3916. .components-search-control input[type=search].components-search-control__input:focus {
  3917. border-color: var(--wp-admin-theme-color);
  3918. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  3919. outline: 2px solid transparent;
  3920. }
  3921. .components-search-control input[type=search].components-search-control__input::-webkit-input-placeholder {
  3922. color: rgba(30, 30, 30, 0.62);
  3923. }
  3924. .components-search-control input[type=search].components-search-control__input::-moz-placeholder {
  3925. opacity: 1;
  3926. color: rgba(30, 30, 30, 0.62);
  3927. }
  3928. .components-search-control input[type=search].components-search-control__input:-ms-input-placeholder {
  3929. color: rgba(30, 30, 30, 0.62);
  3930. }
  3931. @media (min-width: 600px) {
  3932. .components-search-control input[type=search].components-search-control__input {
  3933. font-size: 13px;
  3934. }
  3935. }
  3936. .components-search-control input[type=search].components-search-control__input:focus {
  3937. background: #fff;
  3938. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  3939. }
  3940. .components-search-control input[type=search].components-search-control__input::placeholder {
  3941. color: #757575;
  3942. }
  3943. .components-search-control input[type=search].components-search-control__input::-webkit-search-decoration, .components-search-control input[type=search].components-search-control__input::-webkit-search-cancel-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-button, .components-search-control input[type=search].components-search-control__input::-webkit-search-results-decoration {
  3944. -webkit-appearance: none;
  3945. }
  3946. .components-search-control__icon {
  3947. position: absolute;
  3948. top: 0;
  3949. right: 12px;
  3950. bottom: 0;
  3951. display: flex;
  3952. align-items: center;
  3953. }
  3954. .components-search-control__icon > svg {
  3955. margin: 8px 0;
  3956. }
  3957. .components-search-control__input-wrapper {
  3958. position: relative;
  3959. }
  3960. .components-select-control__input {
  3961. background: #fff;
  3962. height: 36px;
  3963. line-height: 36px;
  3964. margin: 1px;
  3965. outline: 0;
  3966. width: 100%;
  3967. -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  3968. }
  3969. @media (min-width: 782px) {
  3970. .components-select-control__input {
  3971. height: 28px;
  3972. line-height: 28px;
  3973. }
  3974. }
  3975. @media (max-width: 782px) {
  3976. .components-base-control .components-base-control__field .components-select-control__input {
  3977. font-size: 16px;
  3978. }
  3979. }
  3980. .components-snackbar {
  3981. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3982. font-size: 13px;
  3983. background-color: #1e1e1e;
  3984. border-radius: 2px;
  3985. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  3986. color: #fff;
  3987. padding: 16px 24px;
  3988. width: 100%;
  3989. max-width: 600px;
  3990. box-sizing: border-box;
  3991. cursor: pointer;
  3992. pointer-events: auto;
  3993. }
  3994. @media (min-width: 600px) {
  3995. .components-snackbar {
  3996. width: -moz-fit-content;
  3997. width: fit-content;
  3998. }
  3999. }
  4000. .components-snackbar:focus {
  4001. box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--wp-admin-theme-color);
  4002. }
  4003. .components-snackbar.components-snackbar-explicit-dismiss {
  4004. cursor: default;
  4005. }
  4006. .components-snackbar .components-snackbar__content-with-icon {
  4007. margin-left: 24px;
  4008. }
  4009. .components-snackbar .components-snackbar__icon {
  4010. position: absolute;
  4011. top: 24px;
  4012. left: 28px;
  4013. }
  4014. .components-snackbar .components-snackbar__dismiss-button {
  4015. margin-left: 32px;
  4016. cursor: pointer;
  4017. }
  4018. .components-snackbar__action.components-button {
  4019. margin-left: 32px;
  4020. color: #fff;
  4021. height: auto;
  4022. flex-shrink: 0;
  4023. line-height: 1.4;
  4024. padding: 0;
  4025. }
  4026. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary) {
  4027. text-decoration: underline;
  4028. background-color: transparent;
  4029. }
  4030. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):focus {
  4031. color: #fff;
  4032. box-shadow: none;
  4033. outline: 1px dotted #fff;
  4034. }
  4035. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
  4036. color: var(--wp-admin-theme-color);
  4037. }
  4038. .components-snackbar__content {
  4039. display: flex;
  4040. align-items: baseline;
  4041. justify-content: space-between;
  4042. line-height: 1.4;
  4043. }
  4044. .components-snackbar-list {
  4045. position: absolute;
  4046. z-index: 100000;
  4047. width: 100%;
  4048. box-sizing: border-box;
  4049. pointer-events: none;
  4050. }
  4051. .components-snackbar-list__notice-container {
  4052. position: relative;
  4053. padding-top: 8px;
  4054. }
  4055. .components-swatch {
  4056. width: 18px;
  4057. height: 18px;
  4058. border-radius: 50%;
  4059. color: transparent;
  4060. background: transparent;
  4061. }
  4062. .components-swatch::after {
  4063. content: "";
  4064. display: block;
  4065. width: 100%;
  4066. height: 100%;
  4067. border: 1px solid rgba(0, 0, 0, 0.2);
  4068. border-radius: 50%;
  4069. }
  4070. .components-button.has-icon.has-text .components-swatch {
  4071. margin-right: 8px;
  4072. }
  4073. .components-tab-panel__tabs {
  4074. display: flex;
  4075. align-items: stretch;
  4076. flex-direction: row;
  4077. }
  4078. .components-tab-panel__tabs[aria-orientation=vertical] {
  4079. flex-direction: column;
  4080. }
  4081. .components-tab-panel__tabs-item {
  4082. background: transparent;
  4083. border: none;
  4084. box-shadow: none;
  4085. border-radius: 0;
  4086. cursor: pointer;
  4087. height: 48px;
  4088. padding: 3px 16px;
  4089. margin-left: 0;
  4090. font-weight: 500;
  4091. transition: box-shadow 0.1s linear;
  4092. box-sizing: border-box;
  4093. }
  4094. .components-tab-panel__tabs-item::after {
  4095. content: attr(data-label);
  4096. display: block;
  4097. height: 0;
  4098. overflow: hidden;
  4099. speak: none;
  4100. visibility: hidden;
  4101. }
  4102. .components-tab-panel__tabs-item:focus:not(:disabled) {
  4103. box-shadow: inset 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  4104. }
  4105. .components-tab-panel__tabs-item.is-active {
  4106. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
  4107. position: relative;
  4108. }
  4109. .components-tab-panel__tabs-item.is-active::before {
  4110. content: "";
  4111. position: absolute;
  4112. top: 0;
  4113. bottom: 1px;
  4114. right: 0;
  4115. left: 0;
  4116. border-bottom: 4px solid transparent;
  4117. }
  4118. .components-tab-panel__tabs-item:focus {
  4119. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  4120. }
  4121. .components-tab-panel__tabs-item.is-active:focus {
  4122. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
  4123. }
  4124. .components-text-control__input,
  4125. .components-text-control__input[type=text],
  4126. .components-text-control__input[type=tel],
  4127. .components-text-control__input[type=time],
  4128. .components-text-control__input[type=url],
  4129. .components-text-control__input[type=week],
  4130. .components-text-control__input[type=password],
  4131. .components-text-control__input[type=color],
  4132. .components-text-control__input[type=date],
  4133. .components-text-control__input[type=datetime],
  4134. .components-text-control__input[type=datetime-local],
  4135. .components-text-control__input[type=email],
  4136. .components-text-control__input[type=month],
  4137. .components-text-control__input[type=number] {
  4138. width: 100%;
  4139. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  4140. padding: 6px 8px;
  4141. box-shadow: 0 0 0 transparent;
  4142. transition: box-shadow 0.1s linear;
  4143. border-radius: 2px;
  4144. border: 1px solid #757575;
  4145. /* Fonts smaller than 16px causes mobile safari to zoom. */
  4146. font-size: 16px;
  4147. /* Override core line-height. To be reviewed. */
  4148. line-height: normal;
  4149. }
  4150. @media (prefers-reduced-motion: reduce) {
  4151. .components-text-control__input,
  4152. .components-text-control__input[type=text],
  4153. .components-text-control__input[type=tel],
  4154. .components-text-control__input[type=time],
  4155. .components-text-control__input[type=url],
  4156. .components-text-control__input[type=week],
  4157. .components-text-control__input[type=password],
  4158. .components-text-control__input[type=color],
  4159. .components-text-control__input[type=date],
  4160. .components-text-control__input[type=datetime],
  4161. .components-text-control__input[type=datetime-local],
  4162. .components-text-control__input[type=email],
  4163. .components-text-control__input[type=month],
  4164. .components-text-control__input[type=number] {
  4165. transition-duration: 0s;
  4166. transition-delay: 0s;
  4167. }
  4168. }
  4169. @media (min-width: 600px) {
  4170. .components-text-control__input,
  4171. .components-text-control__input[type=text],
  4172. .components-text-control__input[type=tel],
  4173. .components-text-control__input[type=time],
  4174. .components-text-control__input[type=url],
  4175. .components-text-control__input[type=week],
  4176. .components-text-control__input[type=password],
  4177. .components-text-control__input[type=color],
  4178. .components-text-control__input[type=date],
  4179. .components-text-control__input[type=datetime],
  4180. .components-text-control__input[type=datetime-local],
  4181. .components-text-control__input[type=email],
  4182. .components-text-control__input[type=month],
  4183. .components-text-control__input[type=number] {
  4184. font-size: 13px;
  4185. /* Override core line-height. To be reviewed. */
  4186. line-height: normal;
  4187. }
  4188. }
  4189. .components-text-control__input:focus,
  4190. .components-text-control__input[type=text]:focus,
  4191. .components-text-control__input[type=tel]:focus,
  4192. .components-text-control__input[type=time]:focus,
  4193. .components-text-control__input[type=url]:focus,
  4194. .components-text-control__input[type=week]:focus,
  4195. .components-text-control__input[type=password]:focus,
  4196. .components-text-control__input[type=color]:focus,
  4197. .components-text-control__input[type=date]:focus,
  4198. .components-text-control__input[type=datetime]:focus,
  4199. .components-text-control__input[type=datetime-local]:focus,
  4200. .components-text-control__input[type=email]:focus,
  4201. .components-text-control__input[type=month]:focus,
  4202. .components-text-control__input[type=number]:focus {
  4203. border-color: var(--wp-admin-theme-color);
  4204. box-shadow: 0 0 0 1px var(--wp-admin-theme-color);
  4205. outline: 2px solid transparent;
  4206. }
  4207. .components-text-control__input::-webkit-input-placeholder,
  4208. .components-text-control__input[type=text]::-webkit-input-placeholder,
  4209. .components-text-control__input[type=tel]::-webkit-input-placeholder,
  4210. .components-text-control__input[type=time]::-webkit-input-placeholder,
  4211. .components-text-control__input[type=url]::-webkit-input-placeholder,
  4212. .components-text-control__input[type=week]::-webkit-input-placeholder,
  4213. .components-text-control__input[type=password]::-webkit-input-placeholder,
  4214. .components-text-control__input[type=color]::-webkit-input-placeholder,
  4215. .components-text-control__input[type=date]::-webkit-input-placeholder,
  4216. .components-text-control__input[type=datetime]::-webkit-input-placeholder,
  4217. .components-text-control__input[type=datetime-local]::-webkit-input-placeholder,
  4218. .components-text-control__input[type=email]::-webkit-input-placeholder,
  4219. .components-text-control__input[type=month]::-webkit-input-placeholder,
  4220. .components-text-control__input[type=number]::-webkit-input-placeholder {
  4221. color: rgba(30, 30, 30, 0.62);
  4222. }
  4223. .components-text-control__input::-moz-placeholder,
  4224. .components-text-control__input[type=text]::-moz-placeholder,
  4225. .components-text-control__input[type=tel]::-moz-placeholder,
  4226. .components-text-control__input[type=time]::-moz-placeholder,
  4227. .components-text-control__input[type=url]::-moz-placeholder,
  4228. .components-text-control__input[type=week]::-moz-placeholder,
  4229. .components-text-control__input[type=password]::-moz-placeholder,
  4230. .components-text-control__input[type=color]::-moz-placeholder,
  4231. .components-text-control__input[type=date]::-moz-placeholder,
  4232. .components-text-control__input[type=datetime]::-moz-placeholder,
  4233. .components-text-control__input[type=datetime-local]::-moz-placeholder,
  4234. .components-text-control__input[type=email]::-moz-placeholder,
  4235. .components-text-control__input[type=month]::-moz-placeholder,
  4236. .components-text-control__input[type=number]::-moz-placeholder {
  4237. opacity: 1;
  4238. color: rgba(30, 30, 30, 0.62);
  4239. }
  4240. .components-text-control__input:-ms-input-placeholder,
  4241. .components-text-control__input[type=text]:-ms-input-placeholder,
  4242. .components-text-control__input[type=tel]:-ms-input-placeholder,
  4243. .components-text-control__input[type=time]:-ms-input-placeholder,
  4244. .components-text-control__input[type=url]:-ms-input-placeholder,
  4245. .components-text-control__input[type=week]:-ms-input-placeholder,
  4246. .components-text-control__input[type=password]:-ms-input-placeholder,
  4247. .components-text-control__input[type=color]:-ms-input-placeholder,
  4248. .components-text-control__input[type=date]:-ms-input-placeholder,
  4249. .components-text-control__input[type=datetime]:-ms-input-placeholder,
  4250. .components-text-control__input[type=datetime-local]:-ms-input-placeholder,
  4251. .components-text-control__input[type=email]:-ms-input-placeholder,
  4252. .components-text-control__input[type=month]:-ms-input-placeholder,
  4253. .components-text-control__input[type=number]:-ms-input-placeholder {
  4254. color: rgba(30, 30, 30, 0.62);
  4255. }
  4256. .components-tip {
  4257. display: flex;
  4258. color: #757575;
  4259. }
  4260. .components-tip svg {
  4261. align-self: center;
  4262. fill: #f0b849;
  4263. flex-shrink: 0;
  4264. margin-right: 16px;
  4265. }
  4266. .components-tip p {
  4267. margin: 0;
  4268. }
  4269. .components-toggle-control .components-base-control__field {
  4270. display: flex;
  4271. margin-bottom: 12px;
  4272. line-height: initial;
  4273. align-items: center;
  4274. }
  4275. .components-toggle-control .components-base-control__field .components-form-toggle {
  4276. margin-right: 12px;
  4277. }
  4278. .components-toggle-control .components-base-control__field .components-toggle-control__label {
  4279. display: block;
  4280. }
  4281. .components-accessible-toolbar {
  4282. display: inline-flex;
  4283. border: 1px solid #1e1e1e;
  4284. border-radius: 2px;
  4285. flex-shrink: 0;
  4286. }
  4287. .components-accessible-toolbar > .components-toolbar-group:last-child {
  4288. border-right: none;
  4289. }
  4290. .components-accessible-toolbar .components-button,
  4291. .components-toolbar .components-button {
  4292. position: relative;
  4293. height: 48px;
  4294. z-index: 1;
  4295. padding-left: 16px;
  4296. padding-right: 16px;
  4297. }
  4298. .components-accessible-toolbar .components-button:focus:enabled,
  4299. .components-toolbar .components-button:focus:enabled {
  4300. box-shadow: none;
  4301. outline: none;
  4302. }
  4303. .components-accessible-toolbar .components-button::before,
  4304. .components-toolbar .components-button::before {
  4305. content: "";
  4306. position: absolute;
  4307. display: block;
  4308. border-radius: 2px;
  4309. height: 32px;
  4310. left: 8px;
  4311. right: 8px;
  4312. z-index: -1;
  4313. animation: components-button__appear-animation 0.1s ease;
  4314. animation-fill-mode: forwards;
  4315. }
  4316. @media (prefers-reduced-motion: reduce) {
  4317. .components-accessible-toolbar .components-button::before,
  4318. .components-toolbar .components-button::before {
  4319. animation-duration: 1ms;
  4320. animation-delay: 0s;
  4321. }
  4322. }
  4323. .components-accessible-toolbar .components-button svg,
  4324. .components-toolbar .components-button svg {
  4325. position: relative;
  4326. margin-left: auto;
  4327. margin-right: auto;
  4328. }
  4329. .components-accessible-toolbar .components-button.is-pressed,
  4330. .components-toolbar .components-button.is-pressed {
  4331. background: transparent;
  4332. }
  4333. .components-accessible-toolbar .components-button.is-pressed:hover,
  4334. .components-toolbar .components-button.is-pressed:hover {
  4335. background: transparent;
  4336. }
  4337. .components-accessible-toolbar .components-button.is-pressed::before,
  4338. .components-toolbar .components-button.is-pressed::before {
  4339. background: #1e1e1e;
  4340. }
  4341. .components-accessible-toolbar .components-button:focus::before,
  4342. .components-toolbar .components-button:focus::before {
  4343. box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 4px #fff;
  4344. outline: 2px solid transparent;
  4345. }
  4346. .components-accessible-toolbar .components-button.has-icon.has-icon,
  4347. .components-toolbar .components-button.has-icon.has-icon {
  4348. padding-left: 12px;
  4349. padding-right: 12px;
  4350. min-width: 48px;
  4351. }
  4352. .components-accessible-toolbar .components-button.components-tab-button,
  4353. .components-toolbar .components-button.components-tab-button {
  4354. font-weight: 500;
  4355. }
  4356. .components-accessible-toolbar .components-button.components-tab-button span,
  4357. .components-toolbar .components-button.components-tab-button span {
  4358. display: inline-block;
  4359. padding-left: 0;
  4360. padding-right: 0;
  4361. position: relative;
  4362. }
  4363. @keyframes components-button__appear-animation {
  4364. from {
  4365. transform: scaleY(0);
  4366. }
  4367. to {
  4368. transform: scaleY(1);
  4369. }
  4370. }
  4371. .components-toolbar__control.components-button {
  4372. position: relative;
  4373. }
  4374. .components-toolbar__control.components-button[data-subscript] svg {
  4375. padding: 5px 10px 5px 0;
  4376. }
  4377. .components-toolbar__control.components-button[data-subscript]::after {
  4378. content: attr(data-subscript);
  4379. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  4380. font-size: 13px;
  4381. font-weight: 600;
  4382. line-height: 12px;
  4383. position: absolute;
  4384. right: 8px;
  4385. bottom: 10px;
  4386. }
  4387. .components-toolbar__control.components-button:active::before {
  4388. display: none;
  4389. }
  4390. .components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]::after {
  4391. color: #fff;
  4392. }
  4393. .components-toolbar-group {
  4394. min-height: 48px;
  4395. border-right: 1px solid #1e1e1e;
  4396. background-color: #fff;
  4397. display: inline-flex;
  4398. flex-shrink: 0;
  4399. flex-wrap: wrap;
  4400. line-height: 0;
  4401. }
  4402. .components-toolbar-group .components-toolbar-group.components-toolbar-group {
  4403. border-width: 0;
  4404. margin: 0;
  4405. }
  4406. .components-toolbar {
  4407. min-height: 48px;
  4408. margin: 0;
  4409. border: 1px solid #1e1e1e;
  4410. background-color: #fff;
  4411. display: inline-flex;
  4412. flex-shrink: 0;
  4413. flex-wrap: wrap;
  4414. }
  4415. .components-toolbar .components-toolbar.components-toolbar {
  4416. border-width: 0;
  4417. margin: 0;
  4418. }
  4419. div.components-toolbar > div {
  4420. display: block;
  4421. margin: 0;
  4422. }
  4423. @supports (position: sticky) {
  4424. div.components-toolbar > div {
  4425. display: flex;
  4426. }
  4427. }
  4428. div.components-toolbar > div + div.has-left-divider {
  4429. margin-left: 6px;
  4430. position: relative;
  4431. overflow: visible;
  4432. }
  4433. div.components-toolbar > div + div.has-left-divider::before {
  4434. display: inline-block;
  4435. content: "";
  4436. box-sizing: content-box;
  4437. background-color: #ddd;
  4438. position: absolute;
  4439. top: 8px;
  4440. left: -3px;
  4441. width: 1px;
  4442. height: 20px;
  4443. }
  4444. .components-tooltip.components-popover {
  4445. z-index: 1000002;
  4446. }
  4447. .components-tooltip.components-popover .components-popover__content {
  4448. min-width: 0;
  4449. }
  4450. .components-tooltip .components-popover__content {
  4451. background: #1e1e1e;
  4452. border-radius: 2px;
  4453. border-width: 0;
  4454. color: #fff;
  4455. white-space: nowrap;
  4456. text-align: center;
  4457. line-height: 1.4;
  4458. font-size: 12px;
  4459. box-shadow: none;
  4460. }
  4461. .components-tooltip .components-popover__content > div {
  4462. padding: 4px 8px;
  4463. }
  4464. .components-tooltip__shortcut {
  4465. display: inline-block;
  4466. margin-left: 8px;
  4467. }
  4468. .disabled-element-wrapper {
  4469. position: relative;
  4470. }
  4471. .disabled-element-wrapper .event-catcher {
  4472. z-index: 100002;
  4473. position: absolute;
  4474. width: 100%;
  4475. height: 100%;
  4476. top: 0;
  4477. left: 0;
  4478. bottom: 0;
  4479. right: 0;
  4480. }