style-rtl.css 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621
  1. /**
  2. * Colors
  3. */
  4. /**
  5. * Breakpoints & Media Queries
  6. */
  7. /**
  8. * Often re-used variables
  9. */
  10. /**
  11. * Breakpoint mixins
  12. */
  13. /**
  14. * Long content fade mixin
  15. *
  16. * Creates a fading overlay to signify that the content is longer
  17. * than the space allows.
  18. */
  19. /**
  20. * Button states and focus styles
  21. */
  22. /**
  23. * Applies editor left position to the selector passed as argument
  24. */
  25. /**
  26. * Applies editor right position to the selector passed as argument
  27. */
  28. /**
  29. * Styles that are reused verbatim in a few places
  30. */
  31. /**
  32. * Allows users to opt-out of animations via OS-level preferences.
  33. */
  34. /**
  35. * Reset default styles for JavaScript UI based pages.
  36. * This is a WP-admin agnostic reset
  37. */
  38. /**
  39. * Reset the WP Admin page styles for Gutenberg-like pages.
  40. */
  41. .components-animate__appear {
  42. animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
  43. animation-fill-mode: forwards; }
  44. @media (prefers-reduced-motion: reduce) {
  45. .components-animate__appear {
  46. animation-duration: 1ms; } }
  47. .components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
  48. transform-origin: top right; }
  49. .components-animate__appear.is-from-top.is-from-right {
  50. transform-origin: top left; }
  51. .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
  52. transform-origin: bottom right; }
  53. .components-animate__appear.is-from-bottom.is-from-right {
  54. transform-origin: bottom left; }
  55. @keyframes components-animate__appear-animation {
  56. from {
  57. transform: translateY(-2em) scaleY(0) scaleX(0); }
  58. to {
  59. transform: translateY(0%) scaleY(1) scaleX(1); } }
  60. .components-animate__slide-in {
  61. animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
  62. animation-fill-mode: forwards; }
  63. @media (prefers-reduced-motion: reduce) {
  64. .components-animate__slide-in {
  65. animation-duration: 1ms; } }
  66. .components-animate__slide-in.is-from-left {
  67. transform: translateX(-100%); }
  68. @keyframes components-animate__slide-in-animation {
  69. 100% {
  70. transform: translateX(0%); } }
  71. .components-animate__loading {
  72. animation: components-animate__loading 1.6s ease-in-out infinite; }
  73. @keyframes components-animate__loading {
  74. 0% {
  75. opacity: 0.5; }
  76. 50% {
  77. opacity: 1; }
  78. 100% {
  79. opacity: 0.5; } }
  80. .components-autocomplete__popover .components-popover__content {
  81. min-width: 200px; }
  82. .components-autocomplete__popover .components-autocomplete__results {
  83. padding: 3px;
  84. display: flex;
  85. flex-direction: column;
  86. align-items: stretch; }
  87. .components-autocomplete__popover .components-autocomplete__results:empty {
  88. display: none; }
  89. .components-autocomplete__result.components-button {
  90. margin-bottom: 0;
  91. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  92. font-size: 13px;
  93. color: #555d66;
  94. display: flex;
  95. flex-direction: row;
  96. flex-grow: 1;
  97. flex-shrink: 0;
  98. align-items: center;
  99. padding: 6px 8px;
  100. margin-right: -3px;
  101. margin-left: -3px;
  102. text-align: right; }
  103. .components-autocomplete__result.components-button.is-selected {
  104. color: #191e23;
  105. border: none;
  106. box-shadow: none;
  107. outline-offset: -2px;
  108. outline: 1px dotted #555d66; }
  109. .components-autocomplete__result.components-button:hover {
  110. color: #191e23;
  111. border: none;
  112. box-shadow: none;
  113. background: #f3f4f5; }
  114. .components-base-control {
  115. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  116. font-size: 13px; }
  117. .components-base-control .components-base-control__field {
  118. margin-bottom: 8px; }
  119. .components-panel__row .components-base-control .components-base-control__field {
  120. margin-bottom: inherit; }
  121. .components-base-control .components-base-control__label {
  122. display: inline-block;
  123. margin-bottom: 4px; }
  124. .components-base-control .components-base-control__help {
  125. margin-top: -8px;
  126. font-style: italic; }
  127. .components-base-control + .components-base-control {
  128. margin-bottom: 16px; }
  129. .components-button-group {
  130. display: inline-block; }
  131. .components-button-group .components-button.is-button {
  132. border-radius: 0;
  133. display: inline-flex; }
  134. .components-button-group .components-button.is-button + .components-button.is-button {
  135. margin-right: -1px; }
  136. .components-button-group .components-button.is-button:first-child {
  137. border-radius: 0 3px 3px 0; }
  138. .components-button-group .components-button.is-button:last-child {
  139. border-radius: 3px 0 0 3px; }
  140. .components-button-group .components-button.is-button:focus, .components-button-group .components-button.is-button.is-primary {
  141. position: relative;
  142. z-index: 1; }
  143. .components-button-group .components-button.is-button.is-primary {
  144. box-shadow: none; }
  145. .components-button {
  146. display: inline-flex;
  147. text-decoration: none;
  148. font-size: 13px;
  149. margin: 0;
  150. border: 0;
  151. cursor: pointer;
  152. -webkit-appearance: none;
  153. background: none;
  154. transition: box-shadow 0.1s linear;
  155. /* Buttons that look like links, for a cross of good semantics with the visual */
  156. /* Link buttons that are red to indicate destructive behavior. */ }
  157. @media (prefers-reduced-motion: reduce) {
  158. .components-button {
  159. transition-duration: 0s; } }
  160. .components-button.is-button {
  161. padding: 0 10px;
  162. line-height: 2;
  163. height: 28px;
  164. border-radius: 3px;
  165. white-space: nowrap;
  166. border-width: 1px;
  167. border-style: solid; }
  168. .components-button.is-default {
  169. color: rgb(0, 117, 175);
  170. border-color: rgb(0, 117, 175);
  171. background: #f3f5f6; }
  172. body.admin-color-sunrise .components-button.is-default {
  173. color: rgb(196, 126, 70);
  174. border-color: rgb(196, 126, 70); }
  175. body.admin-color-ocean .components-button.is-default {
  176. color: rgb(153, 174, 152);
  177. border-color: rgb(153, 174, 152); }
  178. body.admin-color-midnight .components-button.is-default {
  179. color: rgb(212, 72, 63);
  180. border-color: rgb(212, 72, 63); }
  181. body.admin-color-ectoplasm .components-button.is-default {
  182. color: rgb(157, 171, 81);
  183. border-color: rgb(157, 171, 81); }
  184. body.admin-color-coffee .components-button.is-default {
  185. color: rgb(182, 156, 132);
  186. border-color: rgb(182, 156, 132); }
  187. body.admin-color-blue .components-button.is-default {
  188. color: rgb(204, 161, 84);
  189. border-color: rgb(204, 161, 84); }
  190. body.admin-color-light .components-button.is-default {
  191. color: rgb(0, 125, 175);
  192. border-color: rgb(0, 125, 175); }
  193. .components-button.is-default:hover {
  194. background: #f1f1f1;
  195. border-color: rgb(0, 93, 140);
  196. color: rgb(0, 93, 140);
  197. text-decoration: none; }
  198. body.admin-color-sunrise .components-button.is-default:hover {
  199. border-color: rgb(157, 101, 56);
  200. color: rgb(157, 101, 56); }
  201. body.admin-color-ocean .components-button.is-default:hover {
  202. border-color: rgb(122, 139, 122);
  203. color: rgb(122, 139, 122); }
  204. body.admin-color-midnight .components-button.is-default:hover {
  205. border-color: rgb(169, 58, 50);
  206. color: rgb(169, 58, 50); }
  207. body.admin-color-ectoplasm .components-button.is-default:hover {
  208. border-color: rgb(125, 137, 65);
  209. color: rgb(125, 137, 65); }
  210. body.admin-color-coffee .components-button.is-default:hover {
  211. border-color: rgb(146, 125, 105);
  212. color: rgb(146, 125, 105); }
  213. body.admin-color-blue .components-button.is-default:hover {
  214. border-color: rgb(163, 128, 67);
  215. color: rgb(163, 128, 67); }
  216. body.admin-color-light .components-button.is-default:hover {
  217. border-color: rgb(0, 100, 140);
  218. color: rgb(0, 100, 140); }
  219. .components-button.is-default:focus:enabled {
  220. background: #f3f5f6;
  221. color: rgb(0, 93, 140);
  222. border-color: rgb(0, 118, 177);
  223. box-shadow: 0 0 0 1px rgb(0, 118, 177);
  224. text-decoration: none; }
  225. body.admin-color-sunrise .components-button.is-default:focus:enabled {
  226. color: rgb(157, 101, 56);
  227. border-color: rgb(199, 127, 70);
  228. box-shadow: 0 0 0 1px rgb(199, 127, 70); }
  229. body.admin-color-ocean .components-button.is-default:focus:enabled {
  230. color: rgb(122, 139, 122);
  231. border-color: rgb(155, 176, 154);
  232. box-shadow: 0 0 0 1px rgb(155, 176, 154); }
  233. body.admin-color-midnight .components-button.is-default:focus:enabled {
  234. color: rgb(169, 58, 50);
  235. border-color: rgb(214, 73, 64);
  236. box-shadow: 0 0 0 1px rgb(214, 73, 64); }
  237. body.admin-color-ectoplasm .components-button.is-default:focus:enabled {
  238. color: rgb(125, 137, 65);
  239. border-color: rgb(159, 173, 82);
  240. box-shadow: 0 0 0 1px rgb(159, 173, 82); }
  241. body.admin-color-coffee .components-button.is-default:focus:enabled {
  242. color: rgb(146, 125, 105);
  243. border-color: rgb(184, 158, 133);
  244. box-shadow: 0 0 0 1px rgb(184, 158, 133); }
  245. body.admin-color-blue .components-button.is-default:focus:enabled {
  246. color: rgb(163, 128, 67);
  247. border-color: rgb(206, 162, 85);
  248. box-shadow: 0 0 0 1px rgb(206, 162, 85); }
  249. body.admin-color-light .components-button.is-default:focus:enabled {
  250. color: rgb(0, 100, 140);
  251. border-color: rgb(0, 126, 177);
  252. box-shadow: 0 0 0 1px rgb(0, 126, 177); }
  253. .components-button.is-default:active:enabled {
  254. background: #f3f5f6;
  255. color: rgb(0, 118, 177);
  256. border-color: #7e8993;
  257. box-shadow: none; }
  258. body.admin-color-sunrise .components-button.is-default:active:enabled {
  259. color: rgb(199, 127, 70); }
  260. body.admin-color-ocean .components-button.is-default:active:enabled {
  261. color: rgb(155, 176, 154); }
  262. body.admin-color-midnight .components-button.is-default:active:enabled {
  263. color: rgb(214, 73, 64); }
  264. body.admin-color-ectoplasm .components-button.is-default:active:enabled {
  265. color: rgb(159, 173, 82); }
  266. body.admin-color-coffee .components-button.is-default:active:enabled {
  267. color: rgb(184, 158, 133); }
  268. body.admin-color-blue .components-button.is-default:active:enabled {
  269. color: rgb(206, 162, 85); }
  270. body.admin-color-light .components-button.is-default:active:enabled {
  271. color: rgb(0, 126, 177); }
  272. .components-button.is-default:disabled, .components-button.is-default[aria-disabled="true"] {
  273. color: #a0a5aa;
  274. border-color: #ddd;
  275. background: #f7f7f7;
  276. text-shadow: 0 1px 0 #fff;
  277. transform: none;
  278. opacity: 1; }
  279. .components-button.is-primary {
  280. background: rgb(0, 124, 186);
  281. border-color: rgb(0, 124, 186);
  282. color: #fff;
  283. text-decoration: none;
  284. text-shadow: none; }
  285. body.admin-color-sunrise .components-button.is-primary {
  286. background: rgb(209, 134, 74);
  287. border-color: rgb(209, 134, 74); }
  288. body.admin-color-ocean .components-button.is-primary {
  289. background: rgb(163, 185, 162);
  290. border-color: rgb(163, 185, 162); }
  291. body.admin-color-midnight .components-button.is-primary {
  292. background: rgb(225, 77, 67);
  293. border-color: rgb(225, 77, 67); }
  294. body.admin-color-ectoplasm .components-button.is-primary {
  295. background: rgb(167, 182, 86);
  296. border-color: rgb(167, 182, 86); }
  297. body.admin-color-coffee .components-button.is-primary {
  298. background: rgb(194, 166, 140);
  299. border-color: rgb(194, 166, 140); }
  300. body.admin-color-blue .components-button.is-primary {
  301. background: rgb(217, 171, 89);
  302. border-color: rgb(217, 171, 89); }
  303. body.admin-color-light .components-button.is-primary {
  304. background: rgb(0, 133, 186);
  305. border-color: rgb(0, 133, 186); }
  306. .components-button.is-primary:hover, .components-button.is-primary:focus:enabled {
  307. background: rgb(0, 112, 167);
  308. border-color: rgb(0, 112, 167);
  309. color: #fff; }
  310. body.admin-color-sunrise .components-button.is-primary:hover, body.admin-color-sunrise .components-button.is-primary:focus:enabled {
  311. background: rgb(188, 121, 67);
  312. border-color: rgb(188, 121, 67); }
  313. body.admin-color-ocean .components-button.is-primary:hover, body.admin-color-ocean .components-button.is-primary:focus:enabled {
  314. background: rgb(147, 167, 146);
  315. border-color: rgb(147, 167, 146); }
  316. body.admin-color-midnight .components-button.is-primary:hover, body.admin-color-midnight .components-button.is-primary:focus:enabled {
  317. background: rgb(203, 69, 60);
  318. border-color: rgb(203, 69, 60); }
  319. body.admin-color-ectoplasm .components-button.is-primary:hover, body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
  320. background: rgb(150, 164, 77);
  321. border-color: rgb(150, 164, 77); }
  322. body.admin-color-coffee .components-button.is-primary:hover, body.admin-color-coffee .components-button.is-primary:focus:enabled {
  323. background: rgb(175, 149, 126);
  324. border-color: rgb(175, 149, 126); }
  325. body.admin-color-blue .components-button.is-primary:hover, body.admin-color-blue .components-button.is-primary:focus:enabled {
  326. background: rgb(195, 154, 80);
  327. border-color: rgb(195, 154, 80); }
  328. body.admin-color-light .components-button.is-primary:hover, body.admin-color-light .components-button.is-primary:focus:enabled {
  329. background: rgb(0, 120, 167);
  330. border-color: rgb(0, 120, 167); }
  331. .components-button.is-primary:focus:enabled {
  332. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }
  333. body.admin-color-sunrise .components-button.is-primary:focus:enabled {
  334. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }
  335. body.admin-color-ocean .components-button.is-primary:focus:enabled {
  336. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }
  337. body.admin-color-midnight .components-button.is-primary:focus:enabled {
  338. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }
  339. body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
  340. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }
  341. body.admin-color-coffee .components-button.is-primary:focus:enabled {
  342. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }
  343. body.admin-color-blue .components-button.is-primary:focus:enabled {
  344. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }
  345. body.admin-color-light .components-button.is-primary:focus:enabled {
  346. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }
  347. .components-button.is-primary:active:enabled {
  348. background: rgb(0, 99, 149);
  349. border-color: rgb(0, 99, 149);
  350. color: #fff; }
  351. body.admin-color-sunrise .components-button.is-primary:active:enabled {
  352. background: rgb(167, 107, 59);
  353. border-color: rgb(167, 107, 59); }
  354. body.admin-color-ocean .components-button.is-primary:active:enabled {
  355. background: rgb(130, 148, 130);
  356. border-color: rgb(130, 148, 130); }
  357. body.admin-color-midnight .components-button.is-primary:active:enabled {
  358. background: rgb(180, 62, 54);
  359. border-color: rgb(180, 62, 54); }
  360. body.admin-color-ectoplasm .components-button.is-primary:active:enabled {
  361. background: rgb(134, 146, 69);
  362. border-color: rgb(134, 146, 69); }
  363. body.admin-color-coffee .components-button.is-primary:active:enabled {
  364. background: rgb(155, 133, 112);
  365. border-color: rgb(155, 133, 112); }
  366. body.admin-color-blue .components-button.is-primary:active:enabled {
  367. background: rgb(174, 137, 71);
  368. border-color: rgb(174, 137, 71); }
  369. body.admin-color-light .components-button.is-primary:active:enabled {
  370. background: rgb(0, 106, 149);
  371. border-color: rgb(0, 106, 149); }
  372. .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 {
  373. color: rgb(102, 176, 214);
  374. background: rgb(25, 137, 193);
  375. border-color: rgb(25, 137, 193);
  376. opacity: 1; }
  377. body.admin-color-sunrise .components-button.is-primary:disabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"], body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:active:enabled {
  378. color: rgb(227, 182, 146);
  379. background: rgb(214, 146, 92);
  380. border-color: rgb(214, 146, 92); }
  381. body.admin-color-ocean .components-button.is-primary:disabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"], body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:active:enabled {
  382. color: rgb(200, 213, 199);
  383. background: rgb(172, 192, 171);
  384. border-color: rgb(172, 192, 171); }
  385. body.admin-color-midnight .components-button.is-primary:disabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"], body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:active:enabled {
  386. color: rgb(237, 148, 142);
  387. background: rgb(228, 95, 86);
  388. border-color: rgb(228, 95, 86); }
  389. body.admin-color-ectoplasm .components-button.is-primary:disabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"], body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:active:enabled {
  390. color: rgb(202, 211, 154);
  391. background: rgb(176, 189, 103);
  392. border-color: rgb(176, 189, 103); }
  393. body.admin-color-coffee .components-button.is-primary:disabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"], body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:active:enabled {
  394. color: rgb(218, 202, 186);
  395. background: rgb(200, 175, 152);
  396. border-color: rgb(200, 175, 152); }
  397. body.admin-color-blue .components-button.is-primary:disabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"], body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:active:enabled {
  398. color: rgb(232, 205, 155);
  399. background: rgb(221, 179, 106);
  400. border-color: rgb(221, 179, 106); }
  401. body.admin-color-light .components-button.is-primary:disabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"], body.admin-color-light .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:active:enabled {
  402. color: rgb(102, 182, 214);
  403. background: rgb(25, 145, 193);
  404. border-color: rgb(25, 145, 193); }
  405. .components-button.is-primary:disabled.is-button, .components-button.is-primary:disabled.is-button:hover, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary:disabled:active:enabled.is-button, .components-button.is-primary:disabled:active:enabled.is-button:hover, .components-button.is-primary:disabled:active:enabled:active:enabled, .components-button.is-primary[aria-disabled="true"].is-button, .components-button.is-primary[aria-disabled="true"].is-button:hover, .components-button.is-primary[aria-disabled="true"]:active:enabled, .components-button.is-primary[aria-disabled="true"]:enabled.is-button, .components-button.is-primary[aria-disabled="true"]:enabled.is-button:hover, .components-button.is-primary[aria-disabled="true"]:enabled:active:enabled, .components-button.is-primary[aria-disabled="true"]:active:enabled.is-button, .components-button.is-primary[aria-disabled="true"]:active:enabled.is-button:hover, .components-button.is-primary[aria-disabled="true"]:active:enabled:active:enabled {
  406. box-shadow: none;
  407. text-shadow: none; }
  408. .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 {
  409. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }
  410. body.admin-color-sunrise .components-button.is-primary:disabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  411. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }
  412. body.admin-color-ocean .components-button.is-primary:disabled:focus:enabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  413. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }
  414. body.admin-color-midnight .components-button.is-primary:disabled:focus:enabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  415. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }
  416. body.admin-color-ectoplasm .components-button.is-primary:disabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  417. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }
  418. body.admin-color-coffee .components-button.is-primary:disabled:focus:enabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  419. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }
  420. body.admin-color-blue .components-button.is-primary:disabled:focus:enabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  421. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }
  422. body.admin-color-light .components-button.is-primary:disabled:focus:enabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
  423. box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }
  424. .components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled="true"] {
  425. color: #fff;
  426. background-size: 100px 100%;
  427. /* stylelint-disable */
  428. background-image: linear-gradient(45deg, #007cba 28%, rgb(0, 99, 149) 28%, rgb(0, 99, 149) 72%, #007cba 72%);
  429. /* stylelint-enable */
  430. border-color: rgb(0, 124, 186); }
  431. body.admin-color-sunrise .components-button.is-primary.is-busy, body.admin-color-sunrise .components-button.is-primary.is-busy:disabled, body.admin-color-sunrise .components-button.is-primary.is-busy[aria-disabled="true"] {
  432. background-image: linear-gradient(45deg, #d1864a 28%, rgb(167, 107, 59) 28%, rgb(167, 107, 59) 72%, #d1864a 72%);
  433. border-color: rgb(209, 134, 74); }
  434. body.admin-color-ocean .components-button.is-primary.is-busy, body.admin-color-ocean .components-button.is-primary.is-busy:disabled, body.admin-color-ocean .components-button.is-primary.is-busy[aria-disabled="true"] {
  435. background-image: linear-gradient(45deg, #a3b9a2 28%, rgb(130, 148, 130) 28%, rgb(130, 148, 130) 72%, #a3b9a2 72%);
  436. border-color: rgb(163, 185, 162); }
  437. body.admin-color-midnight .components-button.is-primary.is-busy, body.admin-color-midnight .components-button.is-primary.is-busy:disabled, body.admin-color-midnight .components-button.is-primary.is-busy[aria-disabled="true"] {
  438. background-image: linear-gradient(45deg, #e14d43 28%, rgb(180, 62, 54) 28%, rgb(180, 62, 54) 72%, #e14d43 72%);
  439. border-color: rgb(225, 77, 67); }
  440. body.admin-color-ectoplasm .components-button.is-primary.is-busy, body.admin-color-ectoplasm .components-button.is-primary.is-busy:disabled, body.admin-color-ectoplasm .components-button.is-primary.is-busy[aria-disabled="true"] {
  441. background-image: linear-gradient(45deg, #a7b656 28%, rgb(134, 146, 69) 28%, rgb(134, 146, 69) 72%, #a7b656 72%);
  442. border-color: rgb(167, 182, 86); }
  443. body.admin-color-coffee .components-button.is-primary.is-busy, body.admin-color-coffee .components-button.is-primary.is-busy:disabled, body.admin-color-coffee .components-button.is-primary.is-busy[aria-disabled="true"] {
  444. background-image: linear-gradient(45deg, #c2a68c 28%, rgb(155, 133, 112) 28%, rgb(155, 133, 112) 72%, #c2a68c 72%);
  445. border-color: rgb(194, 166, 140); }
  446. body.admin-color-blue .components-button.is-primary.is-busy, body.admin-color-blue .components-button.is-primary.is-busy:disabled, body.admin-color-blue .components-button.is-primary.is-busy[aria-disabled="true"] {
  447. background-image: linear-gradient(45deg, #d9ab59 28%, rgb(174, 137, 71) 28%, rgb(174, 137, 71) 72%, #d9ab59 72%);
  448. border-color: rgb(217, 171, 89); }
  449. body.admin-color-light .components-button.is-primary.is-busy, body.admin-color-light .components-button.is-primary.is-busy:disabled, body.admin-color-light .components-button.is-primary.is-busy[aria-disabled="true"] {
  450. background-image: linear-gradient(45deg, #0085ba 28%, rgb(0, 106, 149) 28%, rgb(0, 106, 149) 72%, #0085ba 72%);
  451. border-color: rgb(0, 133, 186); }
  452. .components-button.is-link {
  453. margin: 0;
  454. padding: 0;
  455. box-shadow: none;
  456. border: 0;
  457. border-radius: 0;
  458. background: none;
  459. outline: none;
  460. text-align: right;
  461. /* Mimics the default link style in common.css */
  462. color: #0073aa;
  463. text-decoration: underline;
  464. transition-property: border, background, color;
  465. transition-duration: 0.05s;
  466. transition-timing-function: ease-in-out; }
  467. @media (prefers-reduced-motion: reduce) {
  468. .components-button.is-link {
  469. transition-duration: 0s; } }
  470. .components-button.is-link:hover, .components-button.is-link:active {
  471. color: #00a0d2; }
  472. .components-button.is-link:focus {
  473. color: #124964;
  474. box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); }
  475. .components-button.is-link.is-destructive {
  476. color: #d94f4f; }
  477. .components-button:active {
  478. color: inherit; }
  479. .components-button:disabled, .components-button[aria-disabled="true"] {
  480. cursor: default;
  481. opacity: 0.3; }
  482. .components-button:focus:not(:disabled) {
  483. background-color: #fff;
  484. color: #191e23;
  485. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  486. outline: 2px solid transparent; }
  487. .components-button.is-busy, .components-button.is-default.is-busy, .components-button.is-default.is-busy:disabled, .components-button.is-default.is-busy[aria-disabled="true"] {
  488. animation: components-button__busy-animation 2500ms infinite linear;
  489. background-size: 100px 100%;
  490. background-image: repeating-linear-gradient(45deg, #e2e4e7, #fff 11px, #fff 10px, #e2e4e7 20px);
  491. opacity: 1; }
  492. .components-button.is-large {
  493. height: 30px;
  494. line-height: 28px;
  495. padding: 0 12px 2px; }
  496. .components-button.is-small {
  497. height: 24px;
  498. line-height: 22px;
  499. padding: 0 8px 1px;
  500. font-size: 11px; }
  501. .components-button.is-tertiary {
  502. color: #007cba;
  503. padding: 0 10px;
  504. line-height: 26px;
  505. height: 28px; }
  506. body.admin-color-sunrise .components-button.is-tertiary {
  507. color: #837425; }
  508. body.admin-color-ocean .components-button.is-tertiary {
  509. color: #5e7d5e; }
  510. body.admin-color-midnight .components-button.is-tertiary {
  511. color: #497b8d; }
  512. body.admin-color-ectoplasm .components-button.is-tertiary {
  513. color: #523f6d; }
  514. body.admin-color-coffee .components-button.is-tertiary {
  515. color: #59524c; }
  516. body.admin-color-blue .components-button.is-tertiary {
  517. color: #417e9B; }
  518. body.admin-color-light .components-button.is-tertiary {
  519. color: #007cba; }
  520. .components-button.is-tertiary .dashicon {
  521. display: inline-block;
  522. flex: 0 0 auto; }
  523. .components-button.is-tertiary svg {
  524. fill: currentColor;
  525. outline: none; }
  526. .components-button.is-tertiary:active:focus:enabled {
  527. box-shadow: none; }
  528. .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  529. color: rgb(0, 93, 140); }
  530. body.admin-color-sunrise .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  531. color: rgb(98, 87, 28); }
  532. body.admin-color-ocean .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  533. color: rgb(71, 94, 71); }
  534. body.admin-color-midnight .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  535. color: rgb(55, 92, 106); }
  536. body.admin-color-ectoplasm .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  537. color: rgb(62, 47, 82); }
  538. body.admin-color-coffee .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  539. color: rgb(67, 62, 57); }
  540. body.admin-color-blue .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  541. color: rgb(49, 95, 116); }
  542. body.admin-color-light .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  543. color: rgb(0, 93, 140); }
  544. .components-button .screen-reader-text {
  545. height: auto; }
  546. @keyframes components-button__busy-animation {
  547. 0% {
  548. background-position: 200px 0; } }
  549. .components-checkbox-control__input[type="checkbox"] {
  550. border: 1px solid #b4b9be;
  551. background: #fff;
  552. color: #555;
  553. clear: none;
  554. cursor: pointer;
  555. display: inline-block;
  556. line-height: 0;
  557. margin: 0 0 0 4px;
  558. outline: 0;
  559. padding: 0 !important;
  560. text-align: center;
  561. vertical-align: top;
  562. width: 25px;
  563. height: 25px;
  564. -webkit-appearance: none;
  565. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  566. transition: 0.05s border-color ease-in-out; }
  567. @media (min-width: 600px) {
  568. .components-checkbox-control__input[type="checkbox"] {
  569. height: 16px;
  570. width: 16px; } }
  571. .components-checkbox-control__input[type="checkbox"]:focus {
  572. border-color: #5b9dd9;
  573. box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
  574. outline: 2px solid transparent; }
  575. .components-checkbox-control__input[type="checkbox"]:checked {
  576. background: #11a0d2;
  577. border-color: #11a0d2; }
  578. .components-checkbox-control__input[type="checkbox"]:checked::-ms-check {
  579. opacity: 0; }
  580. .components-checkbox-control__input[type="checkbox"]:focus:checked {
  581. border: none; }
  582. .components-checkbox-control__input[type="checkbox"]:checked::before {
  583. content: none; }
  584. .components-checkbox-control__input-container {
  585. position: relative;
  586. display: inline-block;
  587. margin-left: 12px;
  588. vertical-align: middle;
  589. width: 25px;
  590. height: 25px; }
  591. @media (min-width: 600px) {
  592. .components-checkbox-control__input-container {
  593. width: 16px;
  594. height: 16px; } }
  595. svg.dashicon.components-checkbox-control__checked {
  596. fill: #fff;
  597. cursor: pointer;
  598. position: absolute;
  599. right: -4px;
  600. top: -2px;
  601. width: 31px;
  602. height: 31px;
  603. -webkit-user-select: none;
  604. -moz-user-select: none;
  605. -ms-user-select: none;
  606. user-select: none;
  607. pointer-events: none; }
  608. @media (min-width: 600px) {
  609. svg.dashicon.components-checkbox-control__checked {
  610. width: 21px;
  611. height: 21px;
  612. right: -3px; } }
  613. .component-color-indicator {
  614. width: 25px;
  615. height: 16px;
  616. margin-right: 0.8rem;
  617. border: 1px solid #dadada;
  618. display: inline-block; }
  619. .component-color-indicator + .component-color-indicator {
  620. margin-right: 0.5rem; }
  621. .components-color-palette {
  622. margin-left: -14px;
  623. width: calc(100% + 14px); }
  624. .components-color-palette .components-color-palette__custom-clear-wrapper {
  625. width: calc(100% - 14px);
  626. display: flex;
  627. justify-content: flex-end; }
  628. .components-color-palette__item-wrapper {
  629. display: inline-block;
  630. height: 28px;
  631. width: 28px;
  632. margin-left: 14px;
  633. margin-bottom: 14px;
  634. vertical-align: top;
  635. transform: scale(1);
  636. transition: 100ms transform ease; }
  637. @media (prefers-reduced-motion: reduce) {
  638. .components-color-palette__item-wrapper {
  639. transition-duration: 0s; } }
  640. .components-color-palette__item-wrapper:hover {
  641. transform: scale(1.2); }
  642. .components-color-palette__item-wrapper > div {
  643. height: 100%;
  644. width: 100%; }
  645. .components-color-palette__item {
  646. display: inline-block;
  647. vertical-align: top;
  648. height: 100%;
  649. width: 100%;
  650. border: none;
  651. border-radius: 50%;
  652. background: transparent;
  653. box-shadow: inset 0 0 0 14px;
  654. transition: 100ms box-shadow ease;
  655. cursor: pointer; }
  656. @media (prefers-reduced-motion: reduce) {
  657. .components-color-palette__item {
  658. transition-duration: 0s; } }
  659. .components-color-palette__item.is-active {
  660. box-shadow: inset 0 0 0 4px;
  661. position: relative;
  662. z-index: 1; }
  663. .components-color-palette__item.is-active + .dashicons-saved {
  664. position: absolute;
  665. right: 4px;
  666. top: 4px; }
  667. .components-color-palette__item::after {
  668. content: "";
  669. position: absolute;
  670. top: -1px;
  671. right: -1px;
  672. bottom: -1px;
  673. left: -1px;
  674. border-radius: 50%;
  675. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  676. border: 1px solid transparent; }
  677. .components-color-palette__item:focus {
  678. outline: none; }
  679. .components-color-palette__item:focus::after {
  680. content: "";
  681. border: 2px solid #606a73;
  682. width: 32px;
  683. height: 32px;
  684. position: absolute;
  685. top: -2px;
  686. right: -2px;
  687. border-radius: 50%;
  688. box-shadow: inset 0 0 0 2px #fff; }
  689. .components-color-palette__custom-color {
  690. margin-left: 16px; }
  691. .components-color-palette__custom-color .components-button {
  692. line-height: 22px; }
  693. /**
  694. * Parts of this source were derived and modified from react-color,
  695. * released under the MIT license.
  696. *
  697. * https://github.com/casesandberg/react-color/
  698. *
  699. * Copyright (c) 2015 Case Sandberg
  700. *
  701. * Permission is hereby granted, free of charge, to any person obtaining a copy
  702. * of this software and associated documentation files (the "Software"), to deal
  703. * in the Software without restriction, including without limitation the rights
  704. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  705. * copies of the Software, and to permit persons to whom the Software is
  706. * furnished to do so, subject to the following conditions:
  707. *
  708. * The above copyright notice and this permission notice shall be included in
  709. * all copies or substantial portions of the Software.
  710. *
  711. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  712. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  713. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  714. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  715. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  716. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  717. * THE SOFTWARE.
  718. */
  719. .components-color-picker {
  720. width: 100%;
  721. overflow: hidden; }
  722. .components-color-picker__saturation {
  723. width: 100%;
  724. padding-bottom: 55%;
  725. position: relative; }
  726. .components-color-picker__body {
  727. padding: 16px 16px 12px; }
  728. .components-color-picker__controls {
  729. display: flex; }
  730. .components-color-picker__saturation-pointer,
  731. .components-color-picker__hue-pointer,
  732. .components-color-picker__alpha-pointer {
  733. padding: 0;
  734. position: absolute;
  735. cursor: pointer;
  736. box-shadow: none;
  737. border: none; }
  738. /* CURRENT COLOR COMPONENT */
  739. .components-color-picker__swatch {
  740. margin-left: 8px;
  741. width: 32px;
  742. height: 32px;
  743. border-radius: 50%;
  744. position: relative;
  745. overflow: hidden;
  746. background-image: linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, transparent 75%, #ddd 75%), linear-gradient(45deg, transparent 75%, #ddd 75%);
  747. background-size: 10px 10px;
  748. background-position: 100% 0, 100% 5px, 5px -5px, -5px 0; }
  749. .is-alpha-disabled .components-color-picker__swatch {
  750. width: 12px;
  751. height: 12px;
  752. margin-top: 0; }
  753. .components-color-picker__active {
  754. position: absolute;
  755. top: 0;
  756. right: 0;
  757. left: 0;
  758. bottom: 0;
  759. border-radius: 50%;
  760. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  761. z-index: 2; }
  762. /* SATURATION COMPONENT */
  763. .components-color-picker__saturation-color,
  764. .components-color-picker__saturation-white,
  765. .components-color-picker__saturation-black {
  766. position: absolute;
  767. top: 0;
  768. right: 0;
  769. left: 0;
  770. bottom: 0; }
  771. .components-color-picker__saturation-color {
  772. overflow: hidden; }
  773. .components-color-picker__saturation-white {
  774. background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }
  775. .components-color-picker__saturation-black {
  776. background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }
  777. .components-color-picker__saturation-pointer {
  778. width: 8px;
  779. height: 8px;
  780. box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
  781. border-radius: 50%;
  782. background-color: transparent;
  783. transform: translate(4px, -4px); }
  784. /* HUE & ALPHA BARS */
  785. .components-color-picker__toggles {
  786. flex: 1; }
  787. .components-color-picker__alpha {
  788. background-image: linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, transparent 75%, #ddd 75%), linear-gradient(45deg, transparent 75%, #ddd 75%);
  789. background-size: 10px 10px;
  790. background-position: 100% 0, 100% 5px, 5px -5px, -5px 0; }
  791. .components-color-picker__hue-gradient,
  792. .components-color-picker__alpha-gradient {
  793. position: absolute;
  794. top: 0;
  795. right: 0;
  796. left: 0;
  797. bottom: 0; }
  798. .components-color-picker__hue,
  799. .components-color-picker__alpha {
  800. height: 12px;
  801. position: relative; }
  802. .is-alpha-enabled .components-color-picker__hue {
  803. margin-bottom: 8px; }
  804. .components-color-picker__hue-bar,
  805. .components-color-picker__alpha-bar {
  806. position: relative;
  807. margin: 0 3px;
  808. height: 100%;
  809. padding: 0 2px; }
  810. .components-color-picker__hue-gradient {
  811. background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }
  812. .components-color-picker__hue-pointer,
  813. .components-color-picker__alpha-pointer {
  814. left: 0;
  815. width: 14px;
  816. height: 14px;
  817. border-radius: 50%;
  818. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  819. background: #fff;
  820. transform: translate(7px, -1px); }
  821. .components-color-picker__hue-pointer,
  822. .components-color-picker__saturation-pointer {
  823. transition: box-shadow 0.1s linear; }
  824. @media (prefers-reduced-motion: reduce) {
  825. .components-color-picker__hue-pointer,
  826. .components-color-picker__saturation-pointer {
  827. transition-duration: 0s; } }
  828. .components-color-picker__saturation-pointer:focus {
  829. box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a0d2, 0 0 5px 0 #00a0d2, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); }
  830. .components-color-picker__hue-pointer:focus,
  831. .components-color-picker__alpha-pointer:focus {
  832. border-color: #00a0d2;
  833. box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;
  834. outline: 2px solid transparent;
  835. outline-offset: -2px; }
  836. /* INPUTS COMPONENT */
  837. .components-color-picker__inputs-wrapper {
  838. margin: 0 -4px;
  839. padding-top: 16px;
  840. display: flex;
  841. align-items: flex-end; }
  842. .components-color-picker__inputs-wrapper fieldset {
  843. flex: 1; }
  844. .components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type="number"] {
  845. padding: 2px; }
  846. .components-color-picker__inputs-fields {
  847. display: flex;
  848. direction: ltr; }
  849. .components-color-picker__inputs-fields .components-base-control__field {
  850. margin: 0 4px; }
  851. svg.dashicon {
  852. fill: currentColor;
  853. outline: none; }
  854. .PresetDateRangePicker_panel {
  855. padding: 0 22px 11px; }
  856. .PresetDateRangePicker_button {
  857. position: relative;
  858. height: 100%;
  859. text-align: center;
  860. background: 0 0;
  861. border: 2px solid #00a699;
  862. color: #00a699;
  863. padding: 4px 12px;
  864. margin-right: 8px;
  865. font: inherit;
  866. font-weight: 700;
  867. line-height: normal;
  868. overflow: visible;
  869. box-sizing: border-box;
  870. cursor: pointer; }
  871. .PresetDateRangePicker_button:active {
  872. outline: 0; }
  873. .PresetDateRangePicker_button__selected {
  874. color: #fff;
  875. background: #00a699; }
  876. .SingleDatePickerInput {
  877. display: inline-block;
  878. background-color: #fff; }
  879. .SingleDatePickerInput__withBorder {
  880. border-radius: 2px;
  881. border: 1px solid #dbdbdb; }
  882. .SingleDatePickerInput__rtl {
  883. direction: rtl; }
  884. .SingleDatePickerInput__disabled {
  885. background-color: #f2f2f2; }
  886. .SingleDatePickerInput__block {
  887. display: block; }
  888. .SingleDatePickerInput__showClearDate {
  889. padding-right: 30px; }
  890. .SingleDatePickerInput_clearDate {
  891. background: 0 0;
  892. border: 0;
  893. color: inherit;
  894. font: inherit;
  895. line-height: normal;
  896. overflow: visible;
  897. cursor: pointer;
  898. padding: 10px;
  899. margin: 0 10px 0 5px;
  900. position: absolute;
  901. right: 0;
  902. top: 50%;
  903. transform: translateY(-50%); }
  904. .SingleDatePickerInput_clearDate__default:focus,
  905. .SingleDatePickerInput_clearDate__default:hover {
  906. background: #dbdbdb;
  907. border-radius: 50%; }
  908. .SingleDatePickerInput_clearDate__small {
  909. padding: 6px; }
  910. .SingleDatePickerInput_clearDate__hide {
  911. visibility: hidden; }
  912. .SingleDatePickerInput_clearDate_svg {
  913. fill: #82888a;
  914. height: 12px;
  915. width: 15px;
  916. vertical-align: middle; }
  917. .SingleDatePickerInput_clearDate_svg__small {
  918. height: 9px; }
  919. .SingleDatePickerInput_calendarIcon {
  920. background: 0 0;
  921. border: 0;
  922. color: inherit;
  923. font: inherit;
  924. line-height: normal;
  925. overflow: visible;
  926. cursor: pointer;
  927. display: inline-block;
  928. vertical-align: middle;
  929. padding: 10px;
  930. margin: 0 5px 0 10px; }
  931. .SingleDatePickerInput_calendarIcon_svg {
  932. fill: #82888a;
  933. height: 15px;
  934. width: 14px;
  935. vertical-align: middle; }
  936. .SingleDatePicker {
  937. position: relative;
  938. display: inline-block; }
  939. .SingleDatePicker__block {
  940. display: block; }
  941. .SingleDatePicker_picker {
  942. z-index: 1;
  943. background-color: #fff;
  944. position: absolute; }
  945. .SingleDatePicker_picker__rtl {
  946. direction: rtl; }
  947. .SingleDatePicker_picker__directionLeft {
  948. left: 0; }
  949. .SingleDatePicker_picker__directionRight {
  950. right: 0; }
  951. .SingleDatePicker_picker__portal {
  952. background-color: rgba(0, 0, 0, 0.3);
  953. position: fixed;
  954. top: 0;
  955. left: 0;
  956. height: 100%;
  957. width: 100%; }
  958. .SingleDatePicker_picker__fullScreenPortal {
  959. background-color: #fff; }
  960. .SingleDatePicker_closeButton {
  961. background: 0 0;
  962. border: 0;
  963. color: inherit;
  964. font: inherit;
  965. line-height: normal;
  966. overflow: visible;
  967. cursor: pointer;
  968. position: absolute;
  969. top: 0;
  970. right: 0;
  971. padding: 15px;
  972. z-index: 2; }
  973. .SingleDatePicker_closeButton:focus,
  974. .SingleDatePicker_closeButton:hover {
  975. color: #b0b3b4;
  976. text-decoration: none; }
  977. .SingleDatePicker_closeButton_svg {
  978. height: 15px;
  979. width: 15px;
  980. fill: #cacccd; }
  981. .DayPickerKeyboardShortcuts_buttonReset {
  982. background: 0 0;
  983. border: 0;
  984. border-radius: 0;
  985. color: inherit;
  986. font: inherit;
  987. line-height: normal;
  988. overflow: visible;
  989. padding: 0;
  990. cursor: pointer;
  991. font-size: 14px; }
  992. .DayPickerKeyboardShortcuts_buttonReset:active {
  993. outline: 0; }
  994. .DayPickerKeyboardShortcuts_show {
  995. width: 22px;
  996. position: absolute;
  997. z-index: 2; }
  998. .DayPickerKeyboardShortcuts_show__bottomRight {
  999. border-top: 26px solid transparent;
  1000. border-right: 33px solid #00a699;
  1001. bottom: 0;
  1002. right: 0; }
  1003. .DayPickerKeyboardShortcuts_show__bottomRight:hover {
  1004. border-right: 33px solid #008489; }
  1005. .DayPickerKeyboardShortcuts_show__topRight {
  1006. border-bottom: 26px solid transparent;
  1007. border-right: 33px solid #00a699;
  1008. top: 0;
  1009. right: 0; }
  1010. .DayPickerKeyboardShortcuts_show__topRight:hover {
  1011. border-right: 33px solid #008489; }
  1012. .DayPickerKeyboardShortcuts_show__topLeft {
  1013. border-bottom: 26px solid transparent;
  1014. border-left: 33px solid #00a699;
  1015. top: 0;
  1016. left: 0; }
  1017. .DayPickerKeyboardShortcuts_show__topLeft:hover {
  1018. border-left: 33px solid #008489; }
  1019. .DayPickerKeyboardShortcuts_showSpan {
  1020. color: #fff;
  1021. position: absolute; }
  1022. .DayPickerKeyboardShortcuts_showSpan__bottomRight {
  1023. bottom: 0;
  1024. right: -28px; }
  1025. .DayPickerKeyboardShortcuts_showSpan__topRight {
  1026. top: 1px;
  1027. right: -28px; }
  1028. .DayPickerKeyboardShortcuts_showSpan__topLeft {
  1029. top: 1px;
  1030. left: -28px; }
  1031. .DayPickerKeyboardShortcuts_panel {
  1032. overflow: auto;
  1033. background: #fff;
  1034. border: 1px solid #dbdbdb;
  1035. border-radius: 2px;
  1036. position: absolute;
  1037. top: 0;
  1038. bottom: 0;
  1039. right: 0;
  1040. left: 0;
  1041. z-index: 2;
  1042. padding: 22px;
  1043. margin: 33px; }
  1044. .DayPickerKeyboardShortcuts_title {
  1045. font-size: 16px;
  1046. font-weight: 700;
  1047. margin: 0; }
  1048. .DayPickerKeyboardShortcuts_list {
  1049. list-style: none;
  1050. padding: 0;
  1051. font-size: 14px; }
  1052. .DayPickerKeyboardShortcuts_close {
  1053. position: absolute;
  1054. right: 22px;
  1055. top: 22px;
  1056. z-index: 2; }
  1057. .DayPickerKeyboardShortcuts_close:active {
  1058. outline: 0; }
  1059. .DayPickerKeyboardShortcuts_closeSvg {
  1060. height: 15px;
  1061. width: 15px;
  1062. fill: #cacccd; }
  1063. .DayPickerKeyboardShortcuts_closeSvg:focus,
  1064. .DayPickerKeyboardShortcuts_closeSvg:hover {
  1065. fill: #82888a; }
  1066. .CalendarDay {
  1067. box-sizing: border-box;
  1068. cursor: pointer;
  1069. font-size: 14px;
  1070. text-align: center; }
  1071. .CalendarDay:active {
  1072. outline: 0; }
  1073. .CalendarDay__defaultCursor {
  1074. cursor: default; }
  1075. .CalendarDay__default {
  1076. border: 1px solid #e4e7e7;
  1077. color: #484848;
  1078. background: #fff; }
  1079. .CalendarDay__default:hover {
  1080. background: #e4e7e7;
  1081. border: 1px double #e4e7e7;
  1082. color: inherit; }
  1083. .CalendarDay__hovered_offset {
  1084. background: #f4f5f5;
  1085. border: 1px double #e4e7e7;
  1086. color: inherit; }
  1087. .CalendarDay__outside {
  1088. border: 0;
  1089. background: #fff;
  1090. color: #484848; }
  1091. .CalendarDay__outside:hover {
  1092. border: 0; }
  1093. .CalendarDay__blocked_minimum_nights {
  1094. background: #fff;
  1095. border: 1px solid #eceeee;
  1096. color: #cacccd; }
  1097. .CalendarDay__blocked_minimum_nights:active,
  1098. .CalendarDay__blocked_minimum_nights:hover {
  1099. background: #fff;
  1100. color: #cacccd; }
  1101. .CalendarDay__highlighted_calendar {
  1102. background: #ffe8bc;
  1103. color: #484848; }
  1104. .CalendarDay__highlighted_calendar:active,
  1105. .CalendarDay__highlighted_calendar:hover {
  1106. background: #ffce71;
  1107. color: #484848; }
  1108. .CalendarDay__selected_span {
  1109. background: #66e2da;
  1110. border: 1px solid #33dacd;
  1111. color: #fff; }
  1112. .CalendarDay__selected_span:active,
  1113. .CalendarDay__selected_span:hover {
  1114. background: #33dacd;
  1115. border: 1px solid #33dacd;
  1116. color: #fff; }
  1117. .CalendarDay__last_in_range {
  1118. border-right: #00a699; }
  1119. .CalendarDay__selected,
  1120. .CalendarDay__selected:active,
  1121. .CalendarDay__selected:hover {
  1122. background: #00a699;
  1123. border: 1px solid #00a699;
  1124. color: #fff; }
  1125. .CalendarDay__hovered_span,
  1126. .CalendarDay__hovered_span:hover {
  1127. background: #b2f1ec;
  1128. border: 1px solid #80e8e0;
  1129. color: #007a87; }
  1130. .CalendarDay__hovered_span:active {
  1131. background: #80e8e0;
  1132. border: 1px solid #80e8e0;
  1133. color: #007a87; }
  1134. .CalendarDay__blocked_calendar,
  1135. .CalendarDay__blocked_calendar:active,
  1136. .CalendarDay__blocked_calendar:hover {
  1137. background: #cacccd;
  1138. border: 1px solid #cacccd;
  1139. color: #82888a; }
  1140. .CalendarDay__blocked_out_of_range,
  1141. .CalendarDay__blocked_out_of_range:active,
  1142. .CalendarDay__blocked_out_of_range:hover {
  1143. background: #fff;
  1144. border: 1px solid #e4e7e7;
  1145. color: #cacccd; }
  1146. .CalendarMonth {
  1147. background: #fff;
  1148. text-align: center;
  1149. vertical-align: top;
  1150. -webkit-user-select: none;
  1151. -moz-user-select: none;
  1152. -ms-user-select: none;
  1153. user-select: none; }
  1154. .CalendarMonth_table {
  1155. border-collapse: collapse;
  1156. border-spacing: 0; }
  1157. .CalendarMonth_verticalSpacing {
  1158. border-collapse: separate; }
  1159. .CalendarMonth_caption {
  1160. color: #484848;
  1161. font-size: 18px;
  1162. text-align: center;
  1163. padding-top: 22px;
  1164. padding-bottom: 37px;
  1165. caption-side: initial; }
  1166. .CalendarMonth_caption__verticalScrollable {
  1167. padding-top: 12px;
  1168. padding-bottom: 7px; }
  1169. .CalendarMonthGrid {
  1170. background: #fff;
  1171. text-align: left;
  1172. z-index: 0; }
  1173. .CalendarMonthGrid__animating {
  1174. z-index: 1; }
  1175. .CalendarMonthGrid__horizontal {
  1176. position: absolute;
  1177. left: 9px; }
  1178. .CalendarMonthGrid__vertical {
  1179. margin: 0 auto; }
  1180. .CalendarMonthGrid__vertical_scrollable {
  1181. margin: 0 auto;
  1182. overflow-y: scroll; }
  1183. .CalendarMonthGrid_month__horizontal {
  1184. display: inline-block;
  1185. vertical-align: top;
  1186. min-height: 100%; }
  1187. .CalendarMonthGrid_month__hideForAnimation {
  1188. position: absolute;
  1189. z-index: -1;
  1190. opacity: 0;
  1191. pointer-events: none; }
  1192. .CalendarMonthGrid_month__hidden {
  1193. visibility: hidden; }
  1194. .DayPickerNavigation {
  1195. position: relative;
  1196. z-index: 2; }
  1197. .DayPickerNavigation__horizontal {
  1198. height: 0; }
  1199. .DayPickerNavigation__verticalDefault {
  1200. position: absolute;
  1201. width: 100%;
  1202. height: 52px;
  1203. bottom: 0;
  1204. left: 0; }
  1205. .DayPickerNavigation__verticalScrollableDefault {
  1206. position: relative; }
  1207. .DayPickerNavigation_button {
  1208. cursor: pointer;
  1209. -webkit-user-select: none;
  1210. -moz-user-select: none;
  1211. -ms-user-select: none;
  1212. user-select: none;
  1213. border: 0;
  1214. padding: 0;
  1215. margin: 0; }
  1216. .DayPickerNavigation_button__default {
  1217. border: 1px solid #e4e7e7;
  1218. background-color: #fff;
  1219. color: #757575; }
  1220. .DayPickerNavigation_button__default:focus,
  1221. .DayPickerNavigation_button__default:hover {
  1222. border: 1px solid #c4c4c4; }
  1223. .DayPickerNavigation_button__default:active {
  1224. background: #f2f2f2; }
  1225. .DayPickerNavigation_button__horizontalDefault {
  1226. position: absolute;
  1227. top: 18px;
  1228. line-height: .78;
  1229. border-radius: 3px;
  1230. padding: 6px 9px; }
  1231. .DayPickerNavigation_leftButton__horizontalDefault {
  1232. left: 22px; }
  1233. .DayPickerNavigation_rightButton__horizontalDefault {
  1234. right: 22px; }
  1235. .DayPickerNavigation_button__verticalDefault {
  1236. padding: 5px;
  1237. background: #fff;
  1238. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  1239. position: relative;
  1240. display: inline-block;
  1241. height: 100%;
  1242. width: 50%; }
  1243. .DayPickerNavigation_nextButton__verticalDefault {
  1244. border-left: 0; }
  1245. .DayPickerNavigation_nextButton__verticalScrollableDefault {
  1246. width: 100%; }
  1247. .DayPickerNavigation_svg__horizontal {
  1248. height: 19px;
  1249. width: 19px;
  1250. fill: #82888a;
  1251. display: block; }
  1252. .DayPickerNavigation_svg__vertical {
  1253. height: 42px;
  1254. width: 42px;
  1255. fill: #484848;
  1256. display: block; }
  1257. .DayPicker {
  1258. background: #fff;
  1259. position: relative;
  1260. text-align: left; }
  1261. .DayPicker__horizontal {
  1262. background: #fff; }
  1263. .DayPicker__verticalScrollable {
  1264. height: 100%; }
  1265. .DayPicker__hidden {
  1266. visibility: hidden; }
  1267. .DayPicker__withBorder {
  1268. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  1269. border-radius: 3px; }
  1270. .DayPicker_portal__horizontal {
  1271. box-shadow: none;
  1272. position: absolute;
  1273. left: 50%;
  1274. top: 50%; }
  1275. .DayPicker_portal__vertical {
  1276. position: initial; }
  1277. .DayPicker_focusRegion {
  1278. outline: 0; }
  1279. .DayPicker_calendarInfo__horizontal,
  1280. .DayPicker_wrapper__horizontal {
  1281. display: inline-block;
  1282. vertical-align: top; }
  1283. .DayPicker_weekHeaders {
  1284. position: relative; }
  1285. .DayPicker_weekHeaders__horizontal {
  1286. margin-left: 9px; }
  1287. .DayPicker_weekHeader {
  1288. color: #757575;
  1289. position: absolute;
  1290. top: 62px;
  1291. z-index: 2;
  1292. text-align: left; }
  1293. .DayPicker_weekHeader__vertical {
  1294. left: 50%; }
  1295. .DayPicker_weekHeader__verticalScrollable {
  1296. top: 0;
  1297. display: table-row;
  1298. border-bottom: 1px solid #dbdbdb;
  1299. background: #fff;
  1300. margin-left: 0;
  1301. left: 0;
  1302. width: 100%;
  1303. text-align: center; }
  1304. .DayPicker_weekHeader_ul {
  1305. list-style: none;
  1306. margin: 1px 0;
  1307. padding-left: 0;
  1308. padding-right: 0;
  1309. font-size: 14px; }
  1310. .DayPicker_weekHeader_li {
  1311. display: inline-block;
  1312. text-align: center; }
  1313. .DayPicker_transitionContainer {
  1314. position: relative;
  1315. overflow: hidden;
  1316. border-radius: 3px; }
  1317. .DayPicker_transitionContainer__horizontal {
  1318. transition: height .2s ease-in-out; }
  1319. .DayPicker_transitionContainer__vertical {
  1320. width: 100%; }
  1321. .DayPicker_transitionContainer__verticalScrollable {
  1322. padding-top: 20px;
  1323. height: 100%;
  1324. position: absolute;
  1325. top: 0;
  1326. bottom: 0;
  1327. right: 0;
  1328. left: 0;
  1329. overflow-y: scroll; }
  1330. .DateInput {
  1331. margin: 0;
  1332. padding: 0;
  1333. background: #fff;
  1334. position: relative;
  1335. display: inline-block;
  1336. width: 130px;
  1337. vertical-align: middle; }
  1338. .DateInput__small {
  1339. width: 97px; }
  1340. .DateInput__block {
  1341. width: 100%; }
  1342. .DateInput__disabled {
  1343. background: #f2f2f2;
  1344. color: #dbdbdb; }
  1345. .DateInput_input {
  1346. font-weight: 200;
  1347. font-size: 19px;
  1348. line-height: 24px;
  1349. color: #484848;
  1350. background-color: #fff;
  1351. width: 100%;
  1352. padding: 11px 11px 9px;
  1353. border: 0;
  1354. border-top: 0;
  1355. border-right: 0;
  1356. border-bottom: 2px solid transparent;
  1357. border-left: 0;
  1358. border-radius: 0; }
  1359. .DateInput_input__small {
  1360. font-size: 15px;
  1361. line-height: 18px;
  1362. letter-spacing: .2px;
  1363. padding: 7px 7px 5px; }
  1364. .DateInput_input__regular {
  1365. font-weight: auto; }
  1366. .DateInput_input__readOnly {
  1367. -webkit-user-select: none;
  1368. -moz-user-select: none;
  1369. -ms-user-select: none;
  1370. user-select: none; }
  1371. .DateInput_input__focused {
  1372. outline: 0;
  1373. background: #fff;
  1374. border: 0;
  1375. border-top: 0;
  1376. border-right: 0;
  1377. border-bottom: 2px solid #008489;
  1378. border-left: 0; }
  1379. .DateInput_input__disabled {
  1380. background: #f2f2f2;
  1381. font-style: italic; }
  1382. .DateInput_screenReaderMessage {
  1383. border: 0;
  1384. clip: rect(0, 0, 0, 0);
  1385. height: 1px;
  1386. margin: -1px;
  1387. overflow: hidden;
  1388. padding: 0;
  1389. position: absolute;
  1390. width: 1px; }
  1391. .DateInput_fang {
  1392. position: absolute;
  1393. width: 20px;
  1394. height: 10px;
  1395. left: 22px;
  1396. z-index: 2; }
  1397. .DateInput_fangShape {
  1398. fill: #fff; }
  1399. .DateInput_fangStroke {
  1400. stroke: #dbdbdb;
  1401. fill: transparent; }
  1402. .DateRangePickerInput {
  1403. background-color: #fff;
  1404. display: inline-block; }
  1405. .DateRangePickerInput__disabled {
  1406. background: #f2f2f2; }
  1407. .DateRangePickerInput__withBorder {
  1408. border-radius: 2px;
  1409. border: 1px solid #dbdbdb; }
  1410. .DateRangePickerInput__rtl {
  1411. direction: rtl; }
  1412. .DateRangePickerInput__block {
  1413. display: block; }
  1414. .DateRangePickerInput__showClearDates {
  1415. padding-right: 30px; }
  1416. .DateRangePickerInput_arrow {
  1417. display: inline-block;
  1418. vertical-align: middle;
  1419. color: #484848; }
  1420. .DateRangePickerInput_arrow_svg {
  1421. vertical-align: middle;
  1422. fill: #484848;
  1423. height: 24px;
  1424. width: 24px; }
  1425. .DateRangePickerInput_clearDates {
  1426. background: 0 0;
  1427. border: 0;
  1428. color: inherit;
  1429. font: inherit;
  1430. line-height: normal;
  1431. overflow: visible;
  1432. cursor: pointer;
  1433. padding: 10px;
  1434. margin: 0 10px 0 5px;
  1435. position: absolute;
  1436. right: 0;
  1437. top: 50%;
  1438. transform: translateY(-50%); }
  1439. .DateRangePickerInput_clearDates__small {
  1440. padding: 6px; }
  1441. .DateRangePickerInput_clearDates_default:focus,
  1442. .DateRangePickerInput_clearDates_default:hover {
  1443. background: #dbdbdb;
  1444. border-radius: 50%; }
  1445. .DateRangePickerInput_clearDates__hide {
  1446. visibility: hidden; }
  1447. .DateRangePickerInput_clearDates_svg {
  1448. fill: #82888a;
  1449. height: 12px;
  1450. width: 15px;
  1451. vertical-align: middle; }
  1452. .DateRangePickerInput_clearDates_svg__small {
  1453. height: 9px; }
  1454. .DateRangePickerInput_calendarIcon {
  1455. background: 0 0;
  1456. border: 0;
  1457. color: inherit;
  1458. font: inherit;
  1459. line-height: normal;
  1460. overflow: visible;
  1461. cursor: pointer;
  1462. display: inline-block;
  1463. vertical-align: middle;
  1464. padding: 10px;
  1465. margin: 0 5px 0 10px; }
  1466. .DateRangePickerInput_calendarIcon_svg {
  1467. fill: #82888a;
  1468. height: 15px;
  1469. width: 14px;
  1470. vertical-align: middle; }
  1471. .DateRangePicker {
  1472. position: relative;
  1473. display: inline-block; }
  1474. .DateRangePicker__block {
  1475. display: block; }
  1476. .DateRangePicker_picker {
  1477. z-index: 1;
  1478. background-color: #fff;
  1479. position: absolute; }
  1480. .DateRangePicker_picker__rtl {
  1481. direction: rtl; }
  1482. .DateRangePicker_picker__directionLeft {
  1483. left: 0; }
  1484. .DateRangePicker_picker__directionRight {
  1485. right: 0; }
  1486. .DateRangePicker_picker__portal {
  1487. background-color: rgba(0, 0, 0, 0.3);
  1488. position: fixed;
  1489. top: 0;
  1490. left: 0;
  1491. height: 100%;
  1492. width: 100%; }
  1493. .DateRangePicker_picker__fullScreenPortal {
  1494. background-color: #fff; }
  1495. .DateRangePicker_closeButton {
  1496. background: 0 0;
  1497. border: 0;
  1498. color: inherit;
  1499. font: inherit;
  1500. line-height: normal;
  1501. overflow: visible;
  1502. cursor: pointer;
  1503. position: absolute;
  1504. top: 0;
  1505. right: 0;
  1506. padding: 15px;
  1507. z-index: 2; }
  1508. .DateRangePicker_closeButton:focus,
  1509. .DateRangePicker_closeButton:hover {
  1510. color: #b0b3b4;
  1511. text-decoration: none; }
  1512. .DateRangePicker_closeButton_svg {
  1513. height: 15px;
  1514. width: 15px;
  1515. fill: #cacccd; }
  1516. .components-datetime .components-datetime__calendar-help {
  1517. padding: 8px; }
  1518. .components-datetime .components-datetime__calendar-help h4 {
  1519. margin: 0; }
  1520. .components-datetime .components-datetime__date-help-button {
  1521. display: block;
  1522. margin-right: auto;
  1523. margin-left: 8px;
  1524. margin-top: 0.5em; }
  1525. .components-datetime fieldset {
  1526. border: 0;
  1527. padding: 0;
  1528. margin: 0; }
  1529. .components-datetime select,
  1530. .components-datetime input {
  1531. box-sizing: border-box;
  1532. height: 28px;
  1533. vertical-align: middle;
  1534. padding: 0;
  1535. box-shadow: 0 0 0 transparent;
  1536. transition: box-shadow 0.1s linear;
  1537. border-radius: 4px;
  1538. border: 1px solid #7e8993; }
  1539. @media (prefers-reduced-motion: reduce) {
  1540. .components-datetime select,
  1541. .components-datetime input {
  1542. transition-duration: 0s; } }
  1543. .components-datetime__date {
  1544. min-height: 236px;
  1545. border-top: 1px solid #e2e4e7;
  1546. margin-right: -8px;
  1547. margin-left: -8px; }
  1548. .components-datetime__date .CalendarMonth_caption {
  1549. font-size: 13px; }
  1550. .components-datetime__date .CalendarDay {
  1551. font-size: 13px;
  1552. border: 1px solid transparent;
  1553. border-radius: 50%;
  1554. text-align: center; }
  1555. .components-datetime__date .CalendarDay__selected {
  1556. background: #0085ba; }
  1557. body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {
  1558. background: #d1864a; }
  1559. body.admin-color-ocean .components-datetime__date .CalendarDay__selected {
  1560. background: #a3b9a2; }
  1561. body.admin-color-midnight .components-datetime__date .CalendarDay__selected {
  1562. background: #e14d43; }
  1563. body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {
  1564. background: #a7b656; }
  1565. body.admin-color-coffee .components-datetime__date .CalendarDay__selected {
  1566. background: #c2a68c; }
  1567. body.admin-color-blue .components-datetime__date .CalendarDay__selected {
  1568. background: #82b4cb; }
  1569. body.admin-color-light .components-datetime__date .CalendarDay__selected {
  1570. background: #0085ba; }
  1571. .components-datetime__date .CalendarDay__selected:hover {
  1572. background: rgb(0, 113, 158); }
  1573. body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {
  1574. background: rgb(178, 114, 63); }
  1575. body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {
  1576. background: rgb(139, 157, 138); }
  1577. body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {
  1578. background: rgb(191, 65, 57); }
  1579. body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {
  1580. background: rgb(142, 155, 73); }
  1581. body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {
  1582. background: rgb(165, 141, 119); }
  1583. body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {
  1584. background: rgb(111, 153, 173); }
  1585. body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {
  1586. background: rgb(0, 113, 158); }
  1587. .components-datetime__date .DayPickerNavigation_button__horizontalDefault {
  1588. padding: 2px 8px;
  1589. top: 20px; }
  1590. .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
  1591. color: #191e23;
  1592. border-color: #007cba;
  1593. box-shadow: 0 0 0 1px #007cba;
  1594. outline: 2px solid transparent; }
  1595. .components-datetime__date .DayPicker_weekHeader {
  1596. top: 50px; }
  1597. .components-datetime__date.is-description-visible .DayPicker,
  1598. .components-datetime__date.is-description-visible .components-datetime__date-help-button {
  1599. visibility: hidden; }
  1600. .components-datetime__time {
  1601. margin-bottom: 1em; }
  1602. .components-datetime__time fieldset {
  1603. margin-top: 0.5em;
  1604. position: relative; }
  1605. .components-datetime__time .components-datetime__time-field-am-pm fieldset {
  1606. margin-top: 0; }
  1607. .components-datetime__time .components-datetime__time-wrapper {
  1608. display: flex; }
  1609. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
  1610. display: inline-block;
  1611. padding: 0 0 0 3px;
  1612. color: #555d66; }
  1613. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {
  1614. margin-right: 8px;
  1615. margin-left: -1px;
  1616. border-radius: 0 3px 3px 0; }
  1617. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {
  1618. margin-right: -1px;
  1619. border-radius: 3px 0 0 3px; }
  1620. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button:focus,
  1621. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button:focus {
  1622. position: relative;
  1623. z-index: 1; }
  1624. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled,
  1625. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled {
  1626. background: #edeff0;
  1627. border-color: #8f98a1;
  1628. box-shadow: inset 0 2px 5px -3px #555d66; }
  1629. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled:focus,
  1630. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled:focus {
  1631. box-shadow: inset 0 2px 5px -3px #555d66, 0 0 0 1px #fff, 0 0 0 3px #007cba; }
  1632. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
  1633. direction: ltr; }
  1634. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {
  1635. font-size: 11px;
  1636. font-weight: 600; }
  1637. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
  1638. margin-left: 4px; }
  1639. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
  1640. position: relative;
  1641. z-index: 1; }
  1642. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"] {
  1643. padding: 2px;
  1644. margin-left: 4px;
  1645. text-align: center;
  1646. -moz-appearance: textfield; }
  1647. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]:focus {
  1648. position: relative;
  1649. z-index: 1; }
  1650. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]::-webkit-inner-spin-button {
  1651. -webkit-appearance: none;
  1652. margin: 0; }
  1653. .components-datetime__time.is-12-hour .components-datetime__time-field-day input {
  1654. margin: 0 0 0 -4px !important;
  1655. border-radius: 0 4px 4px 0 !important; }
  1656. .components-datetime__time.is-12-hour .components-datetime__time-field-year input {
  1657. border-radius: 4px 0 0 4px !important; }
  1658. .components-datetime__time-legend {
  1659. font-weight: 600;
  1660. margin-top: 0.5em; }
  1661. .components-datetime__time-legend.invisible {
  1662. position: absolute;
  1663. top: -999em;
  1664. right: -999em; }
  1665. .components-datetime__time-field-hours-input,
  1666. .components-datetime__time-field-minutes-input,
  1667. .components-datetime__time-field-day-input {
  1668. width: 35px; }
  1669. .components-datetime__time-field-year-input {
  1670. width: 55px; }
  1671. .components-datetime__time-field-month-select {
  1672. max-width: 145px; }
  1673. .components-popover .components-datetime__date {
  1674. padding-right: 4px; }
  1675. .components-popover.edit-post-post-schedule__dialog.is-bottom.is-left {
  1676. z-index: 100000; }
  1677. .components-disabled {
  1678. position: relative;
  1679. pointer-events: none; }
  1680. .components-disabled::after {
  1681. content: "";
  1682. position: absolute;
  1683. top: 0;
  1684. left: 0;
  1685. bottom: 0;
  1686. right: 0; }
  1687. .components-disabled * {
  1688. pointer-events: none; }
  1689. body.is-dragging-components-draggable {
  1690. cursor: move;
  1691. /* Fallback for IE/Edge < 14 */
  1692. cursor: grabbing !important; }
  1693. .components-draggable__invisible-drag-image {
  1694. position: fixed;
  1695. right: -1000px;
  1696. height: 50px;
  1697. width: 50px; }
  1698. .components-draggable__clone {
  1699. position: fixed;
  1700. padding: 20px;
  1701. background: transparent;
  1702. pointer-events: none;
  1703. z-index: 1000000000;
  1704. opacity: 0.8; }
  1705. .components-drop-zone {
  1706. position: absolute;
  1707. top: 0;
  1708. left: 0;
  1709. bottom: 0;
  1710. right: 0;
  1711. z-index: 40;
  1712. visibility: hidden;
  1713. opacity: 0;
  1714. transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;
  1715. border: 2px solid #0071a1;
  1716. border-radius: 2px; }
  1717. @media (prefers-reduced-motion: reduce) {
  1718. .components-drop-zone {
  1719. transition-duration: 0s; } }
  1720. .components-drop-zone.is-active {
  1721. opacity: 1;
  1722. visibility: visible;
  1723. transition: 0.3s opacity, 0.3s background-color; }
  1724. @media (prefers-reduced-motion: reduce) {
  1725. .components-drop-zone.is-active {
  1726. transition-duration: 0s; } }
  1727. .components-drop-zone.is-dragging-over-element {
  1728. background-color: rgba(0, 113, 161, 0.8); }
  1729. .components-drop-zone__content {
  1730. position: absolute;
  1731. top: 50%;
  1732. right: 0;
  1733. left: 0;
  1734. z-index: 50;
  1735. transform: translateY(-50%);
  1736. width: 100%;
  1737. text-align: center;
  1738. color: #fff;
  1739. transition: transform 0.2s ease-in-out; }
  1740. @media (prefers-reduced-motion: reduce) {
  1741. .components-drop-zone__content {
  1742. transition-duration: 0s; } }
  1743. .components-drop-zone.is-dragging-over-element .components-drop-zone__content {
  1744. transform: translateY(-50%) scale(1.05); }
  1745. .components-drop-zone__content-icon,
  1746. .components-drop-zone__content-text {
  1747. display: block; }
  1748. .components-drop-zone__content-icon {
  1749. margin: 0 auto;
  1750. line-height: 0; }
  1751. .components-drop-zone__content-text {
  1752. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  1753. .components-drop-zone__provider {
  1754. height: 100%; }
  1755. .components-dropdown-menu {
  1756. padding: 3px;
  1757. display: flex; }
  1758. .components-dropdown-menu .components-dropdown-menu__toggle {
  1759. width: auto;
  1760. margin: 0;
  1761. padding: 4px;
  1762. border: 1px solid transparent;
  1763. display: flex;
  1764. flex-direction: row; }
  1765. .components-dropdown-menu .components-dropdown-menu__toggle.is-active, .components-dropdown-menu .components-dropdown-menu__toggle.is-active:hover {
  1766. box-shadow: none;
  1767. background-color: #555d66;
  1768. color: #fff; }
  1769. .components-dropdown-menu .components-dropdown-menu__toggle:focus::before {
  1770. top: -3px;
  1771. left: -3px;
  1772. bottom: -3px;
  1773. right: -3px; }
  1774. .components-dropdown-menu .components-dropdown-menu__toggle:hover, .components-dropdown-menu .components-dropdown-menu__toggle:focus, .components-dropdown-menu .components-dropdown-menu__toggle:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  1775. color: #555d66;
  1776. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  1777. .components-dropdown-menu .components-dropdown-menu__toggle .components-dropdown-menu__indicator::after {
  1778. content: "";
  1779. pointer-events: none;
  1780. display: block;
  1781. width: 0;
  1782. height: 0;
  1783. border-right: 3px solid transparent;
  1784. border-left: 3px solid transparent;
  1785. border-top: 5px solid;
  1786. margin-right: 4px;
  1787. margin-left: 2px; }
  1788. .components-dropdown-menu__popover .components-popover__content {
  1789. width: 200px; }
  1790. .components-dropdown-menu__menu {
  1791. width: 100%;
  1792. padding: 7px 0;
  1793. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1794. font-size: 13px;
  1795. line-height: 1.4; }
  1796. .components-dropdown-menu__menu .components-dropdown-menu__menu-item,
  1797. .components-dropdown-menu__menu .components-menu-item {
  1798. width: 100%;
  1799. padding: 6px;
  1800. outline: none;
  1801. cursor: pointer;
  1802. margin-bottom: 4px; }
  1803. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
  1804. .components-dropdown-menu__menu .components-menu-item.has-separator {
  1805. margin-top: 6px;
  1806. position: relative;
  1807. overflow: visible; }
  1808. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
  1809. .components-dropdown-menu__menu .components-menu-item.has-separator::before {
  1810. display: block;
  1811. content: "";
  1812. box-sizing: content-box;
  1813. background-color: #e2e4e7;
  1814. position: absolute;
  1815. top: -3px;
  1816. right: 0;
  1817. left: 0;
  1818. height: 1px; }
  1819. .components-dropdown-menu__menu .components-dropdown-menu__menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default),
  1820. .components-dropdown-menu__menu .components-menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
  1821. color: #191e23;
  1822. border: none;
  1823. box-shadow: none;
  1824. outline-offset: -2px;
  1825. outline: 1px dotted #555d66; }
  1826. .components-dropdown-menu__menu .components-dropdown-menu__menu-item:hover, .components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover,
  1827. .components-dropdown-menu__menu .components-menu-item:hover,
  1828. .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  1829. color: #191e23;
  1830. border: none;
  1831. box-shadow: none;
  1832. background: #f3f4f5; }
  1833. .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,
  1834. .components-dropdown-menu__menu .components-menu-item > svg {
  1835. border-radius: 4px;
  1836. padding: 2px;
  1837. width: 24px;
  1838. height: 24px;
  1839. margin: -1px 0 -1px 8px; }
  1840. .components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg,
  1841. .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg {
  1842. outline: none;
  1843. color: #fff;
  1844. box-shadow: none;
  1845. background: #555d66; }
  1846. .components-dropdown-menu__menu .components-menu-group:not(:last-child) {
  1847. border-bottom: 1px solid #e2e4e7; }
  1848. .components-dropdown-menu__menu .components-menu-item__button,
  1849. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button {
  1850. padding-right: 2rem; }
  1851. .components-dropdown-menu__menu .components-menu-item__button.has-icon,
  1852. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button.has-icon {
  1853. padding-right: 0.5rem; }
  1854. .components-dropdown-menu__menu .components-menu-item__button .dashicon,
  1855. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button .dashicon {
  1856. margin-left: 4px; }
  1857. .components-external-link__icon {
  1858. width: 1.4em;
  1859. height: 1.4em;
  1860. margin: -0.2em 0.1em 0;
  1861. vertical-align: middle; }
  1862. .components-focal-point-picker-wrapper {
  1863. background-color: transparent;
  1864. border: 1px solid #e2e4e7;
  1865. height: 200px;
  1866. width: 100%;
  1867. padding: 14px; }
  1868. .components-focal-point-picker {
  1869. align-items: center;
  1870. cursor: pointer;
  1871. display: flex;
  1872. height: 100%;
  1873. justify-content: center;
  1874. position: relative;
  1875. width: 100%; }
  1876. .components-focal-point-picker img {
  1877. height: auto;
  1878. max-height: 100%;
  1879. max-width: 100%;
  1880. width: auto;
  1881. -webkit-user-select: none;
  1882. -moz-user-select: none;
  1883. -ms-user-select: none;
  1884. user-select: none; }
  1885. .components-focal-point-picker__icon_container {
  1886. background-color: transparent;
  1887. cursor: grab;
  1888. height: 30px;
  1889. opacity: 0.8;
  1890. position: absolute;
  1891. will-change: transform;
  1892. width: 30px;
  1893. z-index: 10000; }
  1894. .components-focal-point-picker__icon_container.is-dragging {
  1895. cursor: grabbing; }
  1896. .components-focal-point-picker__icon {
  1897. display: block;
  1898. height: 100%;
  1899. right: -15px;
  1900. position: absolute;
  1901. top: -15px;
  1902. width: 100%; }
  1903. .components-focal-point-picker__icon .components-focal-point-picker__icon-outline {
  1904. fill: #fff; }
  1905. .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1906. fill: #0085ba; }
  1907. body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1908. fill: #d1864a; }
  1909. body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1910. fill: #a3b9a2; }
  1911. body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1912. fill: #e14d43; }
  1913. body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1914. fill: #a7b656; }
  1915. body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1916. fill: #c2a68c; }
  1917. body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1918. fill: #82b4cb; }
  1919. body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1920. fill: #0085ba; }
  1921. .components-focal-point-picker_position-display-container {
  1922. margin: 1em 0;
  1923. display: flex; }
  1924. .components-focal-point-picker_position-display-container .components-base-control__field {
  1925. margin: 0 0 0 1em; }
  1926. .components-focal-point-picker_position-display-container input[type="number"].components-text-control__input {
  1927. max-width: 4em;
  1928. padding: 6px 4px; }
  1929. .components-focal-point-picker_position-display-container span {
  1930. margin: 0 0.2em 0 0; }
  1931. .components-font-size-picker__controls {
  1932. max-width: 248px;
  1933. display: flex;
  1934. justify-content: space-between;
  1935. align-items: center;
  1936. margin-bottom: 24px; }
  1937. .components-font-size-picker__controls .components-range-control__number {
  1938. height: 30px;
  1939. margin-right: 0; }
  1940. .components-font-size-picker__controls .components-range-control__number[value=""] + .components-button {
  1941. cursor: default;
  1942. opacity: 0.3;
  1943. pointer-events: none; }
  1944. .components-font-size-picker__select.components-font-size-picker__select.components-font-size-picker__select.components-font-size-picker__select,
  1945. .components-font-size-picker__select .components-base-control__field {
  1946. margin-bottom: 0; }
  1947. .components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
  1948. width: 30px;
  1949. height: 30px; }
  1950. .components-form-file-upload .components-button.is-large {
  1951. padding-right: 6px; }
  1952. .components-form-toggle {
  1953. position: relative;
  1954. display: inline-block; }
  1955. .components-form-toggle .components-form-toggle__on,
  1956. .components-form-toggle .components-form-toggle__off {
  1957. position: absolute;
  1958. top: 6px;
  1959. box-sizing: border-box; }
  1960. .components-form-toggle .components-form-toggle__off {
  1961. color: #6c7781;
  1962. fill: currentColor;
  1963. left: 6px; }
  1964. .components-form-toggle .components-form-toggle__on {
  1965. right: 8px; }
  1966. .components-form-toggle .components-form-toggle__track {
  1967. content: "";
  1968. display: inline-block;
  1969. box-sizing: border-box;
  1970. vertical-align: top;
  1971. background-color: #fff;
  1972. border: 2px solid #6c7781;
  1973. width: 36px;
  1974. height: 18px;
  1975. border-radius: 9px;
  1976. transition: 0.2s background ease; }
  1977. @media (prefers-reduced-motion: reduce) {
  1978. .components-form-toggle .components-form-toggle__track {
  1979. transition-duration: 0s; } }
  1980. .components-form-toggle .components-form-toggle__thumb {
  1981. display: block;
  1982. position: absolute;
  1983. box-sizing: border-box;
  1984. top: 4px;
  1985. right: 4px;
  1986. width: 10px;
  1987. height: 10px;
  1988. border-radius: 50%;
  1989. transition: 0.1s transform ease;
  1990. background-color: #6c7781;
  1991. border: 5px solid #6c7781; }
  1992. @media (prefers-reduced-motion: reduce) {
  1993. .components-form-toggle .components-form-toggle__thumb {
  1994. transition-duration: 0s; } }
  1995. .components-form-toggle:hover .components-form-toggle__track {
  1996. border: 2px solid #555d66; }
  1997. .components-form-toggle:hover .components-form-toggle__thumb {
  1998. background-color: #555d66;
  1999. border: 5px solid #6c7781; }
  2000. .components-form-toggle:hover .components-form-toggle__off {
  2001. color: #555d66; }
  2002. .components-form-toggle.is-checked .components-form-toggle__track {
  2003. background-color: #11a0d2;
  2004. border: 2px solid #11a0d2;
  2005. border: 9px solid transparent; }
  2006. body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {
  2007. background-color: #c8b03c;
  2008. border: 2px solid #c8b03c; }
  2009. body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {
  2010. background-color: #a3b9a2;
  2011. border: 2px solid #a3b9a2; }
  2012. body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {
  2013. background-color: #77a6b9;
  2014. border: 2px solid #77a6b9; }
  2015. body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {
  2016. background-color: #a7b656;
  2017. border: 2px solid #a7b656; }
  2018. body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {
  2019. background-color: #c2a68c;
  2020. border: 2px solid #c2a68c; }
  2021. body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {
  2022. background-color: #82b4cb;
  2023. border: 2px solid #82b4cb; }
  2024. body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {
  2025. background-color: #11a0d2;
  2026. border: 2px solid #11a0d2; }
  2027. .components-form-toggle__input:focus + .components-form-toggle__track {
  2028. box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;
  2029. outline: 2px solid transparent;
  2030. outline-offset: 2px; }
  2031. .components-form-toggle.is-checked .components-form-toggle__thumb {
  2032. background-color: #fff;
  2033. border-width: 0;
  2034. transform: translateX(-18px); }
  2035. .components-form-toggle.is-checked::before {
  2036. background-color: #11a0d2;
  2037. border: 2px solid #11a0d2; }
  2038. body.admin-color-sunrise .components-form-toggle.is-checked::before {
  2039. background-color: #c8b03c;
  2040. border: 2px solid #c8b03c; }
  2041. body.admin-color-ocean .components-form-toggle.is-checked::before {
  2042. background-color: #a3b9a2;
  2043. border: 2px solid #a3b9a2; }
  2044. body.admin-color-midnight .components-form-toggle.is-checked::before {
  2045. background-color: #77a6b9;
  2046. border: 2px solid #77a6b9; }
  2047. body.admin-color-ectoplasm .components-form-toggle.is-checked::before {
  2048. background-color: #a7b656;
  2049. border: 2px solid #a7b656; }
  2050. body.admin-color-coffee .components-form-toggle.is-checked::before {
  2051. background-color: #c2a68c;
  2052. border: 2px solid #c2a68c; }
  2053. body.admin-color-blue .components-form-toggle.is-checked::before {
  2054. background-color: #82b4cb;
  2055. border: 2px solid #82b4cb; }
  2056. body.admin-color-light .components-form-toggle.is-checked::before {
  2057. background-color: #11a0d2;
  2058. border: 2px solid #11a0d2; }
  2059. .components-disabled .components-form-toggle {
  2060. opacity: 0.3; }
  2061. .components-form-toggle input.components-form-toggle__input[type="checkbox"] {
  2062. position: absolute;
  2063. top: 0;
  2064. right: 0;
  2065. width: 100%;
  2066. height: 100%;
  2067. opacity: 0;
  2068. margin: 0;
  2069. padding: 0;
  2070. z-index: 1;
  2071. border: none; }
  2072. .components-form-toggle input.components-form-toggle__input[type="checkbox"]:checked {
  2073. background: none; }
  2074. .components-form-toggle input.components-form-toggle__input[type="checkbox"]::before {
  2075. content: ""; }
  2076. .components-form-toggle .components-form-toggle__on {
  2077. outline: 1px solid transparent;
  2078. outline-offset: -1px;
  2079. border: 1px solid #000;
  2080. filter: invert(100%) contrast(500%); }
  2081. @supports (-ms-high-contrast-adjust: auto) {
  2082. .components-form-toggle .components-form-toggle__on {
  2083. filter: none;
  2084. border: 1px solid #fff; } }
  2085. .components-form-token-field__input-container {
  2086. display: flex;
  2087. flex-wrap: wrap;
  2088. align-items: flex-start;
  2089. width: 100%;
  2090. margin: 0 0 8px 0;
  2091. padding: 4px;
  2092. background-color: #fff;
  2093. border: 1px solid #ccd0d4;
  2094. color: #32373c;
  2095. cursor: text;
  2096. box-shadow: 0 0 0 transparent;
  2097. transition: box-shadow 0.1s linear;
  2098. border-radius: 4px;
  2099. border: 1px solid #7e8993; }
  2100. @media (prefers-reduced-motion: reduce) {
  2101. .components-form-token-field__input-container {
  2102. transition-duration: 0s; } }
  2103. .components-form-token-field__input-container.is-disabled {
  2104. background: #e2e4e7;
  2105. border-color: #ccd0d4; }
  2106. .components-form-token-field__input-container.is-active {
  2107. color: #191e23;
  2108. border-color: #007cba;
  2109. box-shadow: 0 0 0 1px #007cba;
  2110. outline: 2px solid transparent; }
  2111. .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
  2112. display: inline-block;
  2113. width: 100%;
  2114. max-width: 100%;
  2115. margin: 2px 8px 2px 0;
  2116. padding: 0;
  2117. min-height: 24px;
  2118. background: inherit;
  2119. border: 0;
  2120. color: #23282d;
  2121. box-shadow: none; }
  2122. .components-form-token-field__input-container input[type="text"].components-form-token-field__input:focus,
  2123. .components-form-token-field.is-active .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
  2124. outline: none;
  2125. box-shadow: none; }
  2126. .components-form-token-field__input-container .components-form-token-field__token + input[type="text"].components-form-token-field__input {
  2127. width: auto; }
  2128. .components-form-token-field__label {
  2129. display: inline-block;
  2130. margin-bottom: 4px; }
  2131. .components-form-token-field__help {
  2132. font-style: italic; }
  2133. .components-form-token-field__token {
  2134. font-size: 13px;
  2135. display: flex;
  2136. margin: 2px 0 2px 4px;
  2137. color: #32373c;
  2138. overflow: hidden; }
  2139. .components-form-token-field__token.is-success .components-form-token-field__token-text,
  2140. .components-form-token-field__token.is-success .components-form-token-field__remove-token {
  2141. background: #4ab866; }
  2142. .components-form-token-field__token.is-error .components-form-token-field__token-text,
  2143. .components-form-token-field__token.is-error .components-form-token-field__remove-token {
  2144. background: #d94f4f; }
  2145. .components-form-token-field__token.is-validating .components-form-token-field__token-text,
  2146. .components-form-token-field__token.is-validating .components-form-token-field__remove-token {
  2147. color: #555d66; }
  2148. .components-form-token-field__token.is-borderless {
  2149. position: relative;
  2150. padding: 0 0 0 16px; }
  2151. .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2152. background: transparent;
  2153. color: #11a0d2; }
  2154. body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2155. color: #c8b03c; }
  2156. body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2157. color: #a89d8a; }
  2158. body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2159. color: #77a6b9; }
  2160. body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2161. color: #c77430; }
  2162. body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2163. color: #9fa47b; }
  2164. body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2165. color: #d9ab59; }
  2166. body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2167. color: #c75726; }
  2168. .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
  2169. background: transparent;
  2170. color: #555d66;
  2171. position: absolute;
  2172. top: 1px;
  2173. left: 0; }
  2174. .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
  2175. color: #4ab866; }
  2176. .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
  2177. color: #d94f4f;
  2178. border-radius: 0 4px 4px 0;
  2179. padding: 0 6px 0 4px; }
  2180. .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
  2181. color: #23282d; }
  2182. .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
  2183. cursor: default; }
  2184. .components-form-token-field__token-text,
  2185. .components-form-token-field__remove-token.components-icon-button {
  2186. display: inline-block;
  2187. line-height: 24px;
  2188. background: #e2e4e7;
  2189. transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }
  2190. @media (prefers-reduced-motion: reduce) {
  2191. .components-form-token-field__token-text,
  2192. .components-form-token-field__remove-token.components-icon-button {
  2193. transition-duration: 0s;
  2194. animation-duration: 1ms; } }
  2195. .components-form-token-field__token-text {
  2196. border-radius: 0 12px 12px 0;
  2197. padding: 0 8px 0 4px;
  2198. white-space: nowrap;
  2199. overflow: hidden;
  2200. text-overflow: ellipsis; }
  2201. .components-form-token-field__remove-token.components-icon-button {
  2202. cursor: pointer;
  2203. border-radius: 12px 0 0 12px;
  2204. padding: 0 2px;
  2205. color: #555d66;
  2206. line-height: 10px;
  2207. overflow: initial; }
  2208. .components-form-token-field__remove-token.components-icon-button:hover {
  2209. color: #32373c; }
  2210. .components-form-token-field__suggestions-list {
  2211. flex: 1 0 100%;
  2212. min-width: 100%;
  2213. max-height: 9em;
  2214. overflow-y: scroll;
  2215. transition: all 0.15s ease-in-out;
  2216. list-style: none;
  2217. border-top: 1px solid #6c7781;
  2218. margin: 4px -4px -4px;
  2219. padding-top: 3px; }
  2220. @media (prefers-reduced-motion: reduce) {
  2221. .components-form-token-field__suggestions-list {
  2222. transition-duration: 0s; } }
  2223. .components-form-token-field__suggestion {
  2224. color: #555d66;
  2225. display: block;
  2226. font-size: 13px;
  2227. padding: 4px 8px;
  2228. cursor: pointer; }
  2229. .components-form-token-field__suggestion.is-selected {
  2230. background: #0071a1;
  2231. color: #fff; }
  2232. .components-form-token-field__suggestion-match {
  2233. text-decoration: underline; }
  2234. .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
  2235. content: "";
  2236. position: absolute;
  2237. top: 0;
  2238. bottom: 0;
  2239. right: 0;
  2240. left: 0;
  2241. pointer-events: none;
  2242. outline: 4px solid transparent;
  2243. box-shadow: inset 0 0 0 4px #33b3db; }
  2244. @supports (outline-offset: 1px) {
  2245. .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
  2246. content: none; }
  2247. .components-navigate-regions.is-focusing-regions [role="region"]:focus {
  2248. outline-style: solid;
  2249. outline-color: #33b3db;
  2250. outline-width: 4px;
  2251. outline-offset: -4px; } }
  2252. .components-icon-button {
  2253. display: flex;
  2254. align-items: center;
  2255. padding: 8px;
  2256. margin: 0;
  2257. border: none;
  2258. background: none;
  2259. color: #555d66;
  2260. position: relative;
  2261. overflow: hidden;
  2262. border-radius: 4px; }
  2263. .components-icon-button .dashicon {
  2264. display: inline-block;
  2265. flex: 0 0 auto; }
  2266. .components-icon-button svg {
  2267. fill: currentColor;
  2268. outline: none; }
  2269. .components-icon-button.has-text svg {
  2270. margin-left: 4px; }
  2271. .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2272. background-color: #fff;
  2273. color: #191e23;
  2274. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  2275. .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):active {
  2276. outline: none;
  2277. background-color: #fff;
  2278. color: #191e23;
  2279. box-shadow: inset 0 0 0 1px #ccd0d4, inset 0 0 0 2px #fff; }
  2280. .components-icon-button[aria-disabled="true"]:focus, .components-icon-button:disabled:focus {
  2281. box-shadow: none; }
  2282. .components-menu-group {
  2283. width: 100%;
  2284. padding: 7px 0; }
  2285. .components-menu-group__label {
  2286. margin-bottom: 8px;
  2287. color: #6c7781;
  2288. padding: 0 7px; }
  2289. .components-menu-item__button,
  2290. .components-menu-item__button.components-icon-button {
  2291. width: 100%;
  2292. padding: 8px 15px;
  2293. text-align: right;
  2294. color: #40464d;
  2295. border: none;
  2296. box-shadow: none; }
  2297. .components-menu-item__button .dashicon,
  2298. .components-menu-item__button .components-menu-items__item-icon,
  2299. .components-menu-item__button > span > svg,
  2300. .components-menu-item__button.components-icon-button .dashicon,
  2301. .components-menu-item__button.components-icon-button .components-menu-items__item-icon,
  2302. .components-menu-item__button.components-icon-button > span > svg {
  2303. margin-left: 5px; }
  2304. .components-menu-item__button .components-menu-items__item-icon,
  2305. .components-menu-item__button.components-icon-button .components-menu-items__item-icon {
  2306. display: inline-block;
  2307. flex: 0 0 auto; }
  2308. .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]),
  2309. .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) {
  2310. color: #191e23;
  2311. border: none;
  2312. box-shadow: none;
  2313. background: #f3f4f5; }
  2314. .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut,
  2315. .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut {
  2316. color: #40464d; }
  2317. .components-menu-item__button:focus:not(:disabled):not([aria-disabled="true"]),
  2318. .components-menu-item__button.components-icon-button:focus:not(:disabled):not([aria-disabled="true"]) {
  2319. color: #191e23;
  2320. border: none;
  2321. box-shadow: none;
  2322. outline-offset: -2px;
  2323. outline: 1px dotted #555d66; }
  2324. .components-menu-item__info-wrapper {
  2325. display: flex;
  2326. flex-direction: column; }
  2327. .components-menu-item__info {
  2328. margin-top: 4px;
  2329. font-size: 12px;
  2330. color: #6c7781; }
  2331. .components-menu-item__shortcut {
  2332. -ms-grid-row-align: center;
  2333. align-self: center;
  2334. color: #6c7781;
  2335. margin-left: 0;
  2336. margin-right: auto;
  2337. padding-right: 8px;
  2338. display: none; }
  2339. @media (min-width: 480px) {
  2340. .components-menu-item__shortcut {
  2341. display: inline; } }
  2342. .components-modal__screen-overlay {
  2343. position: fixed;
  2344. top: 0;
  2345. left: 0;
  2346. bottom: 0;
  2347. right: 0;
  2348. background-color: rgba(0, 0, 0, 0.7);
  2349. z-index: 100000;
  2350. animation: edit-post__fade-in-animation 0.2s ease-out 0s;
  2351. animation-fill-mode: forwards; }
  2352. @media (prefers-reduced-motion: reduce) {
  2353. .components-modal__screen-overlay {
  2354. animation-duration: 1ms; } }
  2355. .components-modal__frame {
  2356. position: absolute;
  2357. top: 0;
  2358. left: 0;
  2359. bottom: 0;
  2360. right: 0;
  2361. box-sizing: border-box;
  2362. margin: 0;
  2363. border: 1px solid #e2e4e7;
  2364. background: #fff;
  2365. box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);
  2366. overflow: auto; }
  2367. @media (min-width: 600px) {
  2368. .components-modal__frame {
  2369. top: 50%;
  2370. left: auto;
  2371. bottom: auto;
  2372. right: 50%;
  2373. min-width: 360px;
  2374. max-width: calc(100% - 16px - 16px);
  2375. max-height: calc(100% - 56px - 56px);
  2376. transform: translate(50%, -50%);
  2377. animation: components-modal__appear-animation 0.1s ease-out;
  2378. animation-fill-mode: forwards; } }
  2379. @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
  2380. .components-modal__frame {
  2381. animation-duration: 1ms; } }
  2382. @keyframes components-modal__appear-animation {
  2383. from {
  2384. margin-top: 32px; }
  2385. to {
  2386. margin-top: 0; } }
  2387. .components-modal__header {
  2388. box-sizing: border-box;
  2389. border-bottom: 1px solid #e2e4e7;
  2390. padding: 0 24px;
  2391. display: flex;
  2392. flex-direction: row;
  2393. justify-content: space-between;
  2394. background: #fff;
  2395. align-items: center;
  2396. height: 56px;
  2397. position: -webkit-sticky;
  2398. position: sticky;
  2399. top: 0;
  2400. z-index: 10;
  2401. margin: 0 -24px 24px; }
  2402. @supports (-ms-ime-align: auto) {
  2403. .components-modal__header {
  2404. position: fixed;
  2405. width: 100%; } }
  2406. .components-modal__header .components-modal__header-heading {
  2407. font-size: 1rem;
  2408. font-weight: 600; }
  2409. .components-modal__header h1 {
  2410. line-height: 1;
  2411. margin: 0; }
  2412. .components-modal__header .components-icon-button {
  2413. position: relative;
  2414. right: 8px; }
  2415. .components-modal__header-heading-container {
  2416. align-items: center;
  2417. flex-grow: 1;
  2418. display: flex;
  2419. flex-direction: row;
  2420. justify-content: left; }
  2421. .components-modal__header-icon-container {
  2422. display: inline-block; }
  2423. .components-modal__header-icon-container svg {
  2424. max-width: 36px;
  2425. max-height: 36px;
  2426. padding: 8px; }
  2427. .components-modal__content {
  2428. box-sizing: border-box;
  2429. height: 100%;
  2430. padding: 0 24px 24px; }
  2431. @supports (-ms-ime-align: auto) {
  2432. .components-modal__content {
  2433. padding-top: 56px; } }
  2434. .components-notice {
  2435. display: flex;
  2436. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2437. font-size: 13px;
  2438. background-color: #e5f5fa;
  2439. border-right: 4px solid #00a0d2;
  2440. margin: 5px 15px 2px;
  2441. padding: 8px 12px;
  2442. align-items: center; }
  2443. .components-notice.is-dismissible {
  2444. padding-left: 36px;
  2445. position: relative; }
  2446. .components-notice.is-success {
  2447. border-right-color: #4ab866;
  2448. background-color: #eff9f1; }
  2449. .components-notice.is-warning {
  2450. border-right-color: #f0b849;
  2451. background-color: #fef8ee; }
  2452. .components-notice.is-error {
  2453. border-right-color: #d94f4f;
  2454. background-color: #f9e2e2; }
  2455. .components-notice__content {
  2456. flex-grow: 1;
  2457. margin: 4px 0 4px 25px; }
  2458. .components-notice__action.components-button, .components-notice__action.components-button.is-link {
  2459. margin-right: 4px; }
  2460. .components-notice__action.components-button.is-default {
  2461. vertical-align: initial; }
  2462. .components-notice__dismiss {
  2463. color: #6c7781;
  2464. align-self: flex-start;
  2465. flex-shrink: 0; }
  2466. .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):active, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):focus {
  2467. color: #191e23;
  2468. background-color: transparent; }
  2469. .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2470. box-shadow: none; }
  2471. .components-notice-list {
  2472. max-width: 100vw;
  2473. box-sizing: border-box;
  2474. z-index: 29; }
  2475. .components-notice-list .components-notice__content {
  2476. margin-top: 12px;
  2477. margin-bottom: 12px;
  2478. line-height: 1.6; }
  2479. .components-notice-list .components-notice__action.components-button {
  2480. margin-top: -2px;
  2481. margin-bottom: -2px; }
  2482. .components-panel {
  2483. background: #fff;
  2484. border: 1px solid #e2e4e7; }
  2485. .components-panel > .components-panel__header:first-child,
  2486. .components-panel > .components-panel__body:first-child {
  2487. margin-top: -1px; }
  2488. .components-panel > .components-panel__header:last-child,
  2489. .components-panel > .components-panel__body:last-child {
  2490. border-bottom-width: 0; }
  2491. .components-panel + .components-panel {
  2492. margin-top: -1px; }
  2493. .components-panel__body {
  2494. border-top: 1px solid #e2e4e7;
  2495. border-bottom: 1px solid #e2e4e7; }
  2496. .components-panel__body h3 {
  2497. margin: 0 0 0.5em; }
  2498. .components-panel__body.is-opened {
  2499. padding: 16px; }
  2500. .components-panel__body > .components-icon-button {
  2501. color: #191e23; }
  2502. .components-panel__header {
  2503. display: flex;
  2504. justify-content: space-between;
  2505. align-items: center;
  2506. padding: 0 16px;
  2507. height: 50px;
  2508. border-top: 1px solid #e2e4e7;
  2509. border-bottom: 1px solid #e2e4e7; }
  2510. .components-panel__header h2 {
  2511. margin: 0;
  2512. font-size: inherit;
  2513. color: inherit; }
  2514. .components-panel__body + .components-panel__body,
  2515. .components-panel__body + .components-panel__header,
  2516. .components-panel__header + .components-panel__body,
  2517. .components-panel__header + .components-panel__header {
  2518. margin-top: -1px; }
  2519. .components-panel__body > .components-panel__body-title {
  2520. display: block;
  2521. padding: 0;
  2522. font-size: inherit;
  2523. margin-top: 0;
  2524. margin-bottom: 0;
  2525. transition: 0.1s background ease-in-out; }
  2526. @media (prefers-reduced-motion: reduce) {
  2527. .components-panel__body > .components-panel__body-title {
  2528. transition-duration: 0s; } }
  2529. .components-panel__body.is-opened > .components-panel__body-title {
  2530. margin: -16px;
  2531. margin-bottom: 5px; }
  2532. .components-panel__body > .components-panel__body-title:hover,
  2533. .edit-post-last-revision__panel > .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2534. background: #f3f4f5; }
  2535. .components-panel__body-toggle.components-button {
  2536. position: relative;
  2537. padding: 15px;
  2538. outline: none;
  2539. width: 100%;
  2540. font-weight: 600;
  2541. text-align: right;
  2542. color: #191e23;
  2543. border: none;
  2544. box-shadow: none;
  2545. transition: 0.1s background ease-in-out; }
  2546. @media (prefers-reduced-motion: reduce) {
  2547. .components-panel__body-toggle.components-button {
  2548. transition-duration: 0s; } }
  2549. .components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled="true"]) {
  2550. color: #191e23;
  2551. border: none;
  2552. box-shadow: none;
  2553. outline-offset: -2px;
  2554. outline: 1px dotted #555d66; }
  2555. .components-panel__body-toggle.components-button .components-panel__arrow {
  2556. position: absolute;
  2557. left: 10px;
  2558. top: 50%;
  2559. transform: translateY(-50%);
  2560. color: #191e23;
  2561. fill: currentColor;
  2562. transition: 0.1s color ease-in-out; }
  2563. @media (prefers-reduced-motion: reduce) {
  2564. .components-panel__body-toggle.components-button .components-panel__arrow {
  2565. transition-duration: 0s; } }
  2566. body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
  2567. transform: scaleX(-1);
  2568. -ms-filter: fliph;
  2569. filter: FlipH;
  2570. margin-top: -10px; }
  2571. .components-panel__icon {
  2572. color: #555d66;
  2573. margin: -2px 6px -2px 0; }
  2574. .components-panel__body-toggle-icon {
  2575. margin-left: -5px; }
  2576. .components-panel__color-title {
  2577. float: right;
  2578. height: 19px; }
  2579. .components-panel__row {
  2580. display: flex;
  2581. justify-content: space-between;
  2582. align-items: center;
  2583. margin-top: 20px; }
  2584. .components-panel__row select {
  2585. min-width: 0; }
  2586. .components-panel__row label {
  2587. margin-left: 10px;
  2588. flex-shrink: 0;
  2589. max-width: 75%; }
  2590. .components-panel__row:empty, .components-panel__row:first-of-type {
  2591. margin-top: 0; }
  2592. .components-panel .circle-picker {
  2593. padding-bottom: 20px; }
  2594. .components-placeholder {
  2595. margin-bottom: 28px;
  2596. padding: 1em;
  2597. min-height: 200px;
  2598. width: 100%;
  2599. text-align: center;
  2600. background: rgba(139, 139, 150, 0.1); }
  2601. @supports ((position: -webkit-sticky) or (position: sticky)) {
  2602. .components-placeholder {
  2603. display: flex;
  2604. flex-direction: column;
  2605. align-items: center;
  2606. justify-content: center; } }
  2607. .is-dark-theme .components-placeholder {
  2608. background: rgba(255, 255, 255, 0.15); }
  2609. .components-placeholder__instructions,
  2610. .components-placeholder__label,
  2611. .components-placeholder__fieldset {
  2612. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2613. font-size: 13px; }
  2614. .components-placeholder__label {
  2615. display: flex;
  2616. align-items: center;
  2617. justify-content: center;
  2618. font-weight: 600;
  2619. margin-bottom: 1em; }
  2620. .components-placeholder__label .dashicon,
  2621. .components-placeholder__label .block-editor-block-icon {
  2622. fill: currentColor;
  2623. margin-left: 1ch; }
  2624. .components-placeholder__fieldset,
  2625. .components-placeholder__fieldset form {
  2626. display: flex;
  2627. flex-direction: row;
  2628. justify-content: center;
  2629. width: 100%;
  2630. max-width: 400px;
  2631. flex-wrap: wrap;
  2632. z-index: 1; }
  2633. .components-placeholder__fieldset p,
  2634. .components-placeholder__fieldset form p {
  2635. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2636. font-size: 13px; }
  2637. .components-placeholder__fieldset.is-column-layout,
  2638. .components-placeholder__fieldset.is-column-layout form {
  2639. flex-direction: column; }
  2640. .components-placeholder__input {
  2641. margin-top: 0;
  2642. margin-left: 8px;
  2643. flex: 1 1 auto; }
  2644. .components-placeholder__instructions {
  2645. margin-bottom: 1em; }
  2646. .components-placeholder__preview img {
  2647. margin: 3%;
  2648. width: 50%; }
  2649. .components-popover {
  2650. position: fixed;
  2651. z-index: 1000000;
  2652. left: 50%; }
  2653. .components-popover.is-mobile {
  2654. top: 0;
  2655. left: 0;
  2656. right: 0;
  2657. bottom: 0; }
  2658. .components-popover:not(.is-without-arrow):not(.is-mobile) {
  2659. margin-left: 2px; }
  2660. .components-popover:not(.is-without-arrow):not(.is-mobile)::before {
  2661. border: 8px solid #e2e4e7; }
  2662. .components-popover:not(.is-without-arrow):not(.is-mobile)::after {
  2663. border: 8px solid #fff; }
  2664. .components-popover:not(.is-without-arrow):not(.is-mobile)::before, .components-popover:not(.is-without-arrow):not(.is-mobile)::after {
  2665. content: "";
  2666. position: absolute;
  2667. height: 0;
  2668. width: 0;
  2669. line-height: 0; }
  2670. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top {
  2671. margin-top: -8px; }
  2672. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before {
  2673. bottom: -8px; }
  2674. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
  2675. bottom: -6px; }
  2676. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
  2677. border-bottom: none;
  2678. border-left-color: transparent;
  2679. border-right-color: transparent;
  2680. border-top-style: solid;
  2681. margin-left: -10px; }
  2682. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom {
  2683. margin-top: 8px; }
  2684. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before {
  2685. top: -8px; }
  2686. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
  2687. top: -6px; }
  2688. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
  2689. border-bottom-style: solid;
  2690. border-left-color: transparent;
  2691. border-right-color: transparent;
  2692. border-top: none;
  2693. margin-left: -10px; }
  2694. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left {
  2695. margin-left: -8px; }
  2696. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::before {
  2697. right: -8px; }
  2698. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::after {
  2699. right: -6px; }
  2700. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::after {
  2701. border-bottom-color: transparent;
  2702. border-left-style: solid;
  2703. border-right: none;
  2704. border-top-color: transparent; }
  2705. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right {
  2706. margin-left: 8px; }
  2707. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::before {
  2708. left: -8px; }
  2709. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::after {
  2710. left: -6px; }
  2711. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::after {
  2712. border-bottom-color: transparent;
  2713. border-left: none;
  2714. border-right-style: solid;
  2715. border-top-color: transparent; }
  2716. .components-popover:not(.is-mobile).is-top {
  2717. bottom: 100%; }
  2718. .components-popover:not(.is-mobile).is-bottom {
  2719. top: 100%; }
  2720. .components-popover:not(.is-mobile).is-middle {
  2721. align-items: center;
  2722. display: flex; }
  2723. .components-popover__content {
  2724. box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1);
  2725. border: 1px solid #e2e4e7;
  2726. background: #fff;
  2727. height: 100%; }
  2728. .components-popover.is-mobile .components-popover__content {
  2729. height: calc(100% - 50px);
  2730. border-top: 0; }
  2731. .components-popover:not(.is-mobile) .components-popover__content {
  2732. position: absolute;
  2733. height: auto;
  2734. overflow-y: auto;
  2735. min-width: 260px; }
  2736. .components-popover:not(.is-mobile).is-top .components-popover__content {
  2737. bottom: 100%; }
  2738. .components-popover:not(.is-mobile).is-center .components-popover__content {
  2739. left: 50%;
  2740. transform: translateX(-50%); }
  2741. .components-popover:not(.is-mobile).is-right .components-popover__content {
  2742. position: absolute;
  2743. left: 100%; }
  2744. .components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
  2745. margin-left: -24px; }
  2746. .components-popover:not(.is-mobile).is-left .components-popover__content {
  2747. position: absolute;
  2748. right: 100%; }
  2749. .components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
  2750. margin-right: -24px; }
  2751. .components-popover__content > div {
  2752. height: 100%; }
  2753. .components-popover__header {
  2754. align-items: center;
  2755. background: #fff;
  2756. border: 1px solid #e2e4e7;
  2757. display: flex;
  2758. height: 50px;
  2759. justify-content: space-between;
  2760. padding: 0 8px 0 16px; }
  2761. .components-popover__header-title {
  2762. overflow: hidden;
  2763. text-overflow: ellipsis;
  2764. white-space: nowrap;
  2765. width: 100%; }
  2766. .components-popover__close.components-icon-button {
  2767. z-index: 5; }
  2768. .components-radio-control {
  2769. display: flex;
  2770. flex-direction: column; }
  2771. .components-radio-control .components-base-control__help {
  2772. margin-top: 0; }
  2773. .components-radio-control__option:not(:last-child) {
  2774. margin-bottom: 4px; }
  2775. .components-radio-control__input[type="radio"] {
  2776. margin-top: 0;
  2777. margin-left: 6px; }
  2778. .components-range-control .components-base-control__field {
  2779. display: flex;
  2780. justify-content: center;
  2781. flex-wrap: wrap;
  2782. align-items: center; }
  2783. .components-range-control .dashicon {
  2784. flex-shrink: 0;
  2785. margin-left: 10px; }
  2786. .components-range-control .components-base-control__label {
  2787. width: 100%; }
  2788. .components-range-control .components-range-control__slider {
  2789. margin-right: 0;
  2790. flex: 1; }
  2791. .components-range-control__reset {
  2792. margin-right: 8px; }
  2793. .components-range-control__slider {
  2794. width: 100%;
  2795. margin-right: 8px;
  2796. padding: 0;
  2797. -webkit-appearance: none;
  2798. background: transparent;
  2799. /**
  2800. * Thumb
  2801. */
  2802. /**
  2803. * Track
  2804. */ }
  2805. .components-range-control__slider::-webkit-slider-thumb {
  2806. -webkit-appearance: none;
  2807. height: 18px;
  2808. width: 18px;
  2809. border-radius: 50%;
  2810. cursor: pointer;
  2811. background: #555d66;
  2812. border: 4px solid transparent;
  2813. background-clip: padding-box;
  2814. box-sizing: border-box;
  2815. margin-top: -7px; }
  2816. .components-range-control__slider::-moz-range-thumb {
  2817. height: 18px;
  2818. width: 18px;
  2819. border-radius: 50%;
  2820. cursor: pointer;
  2821. background: #555d66;
  2822. border: 4px solid transparent;
  2823. background-clip: padding-box;
  2824. box-sizing: border-box; }
  2825. .components-range-control__slider::-ms-thumb {
  2826. height: 18px;
  2827. width: 18px;
  2828. border-radius: 50%;
  2829. cursor: pointer;
  2830. background: #555d66;
  2831. border: 4px solid transparent;
  2832. background-clip: padding-box;
  2833. box-sizing: border-box;
  2834. margin-top: 0;
  2835. height: 14px;
  2836. width: 14px;
  2837. border: 2px solid transparent; }
  2838. .components-range-control__slider:focus {
  2839. outline: none; }
  2840. .components-range-control__slider:focus::-webkit-slider-thumb {
  2841. background-color: #fff;
  2842. color: #191e23;
  2843. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2844. outline: 2px solid transparent; }
  2845. .components-range-control__slider:focus::-moz-range-thumb {
  2846. background-color: #fff;
  2847. color: #191e23;
  2848. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2849. outline: 2px solid transparent; }
  2850. .components-range-control__slider:focus::-ms-thumb {
  2851. background-color: #fff;
  2852. color: #191e23;
  2853. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2854. outline: 2px solid transparent; }
  2855. .components-range-control__slider::-webkit-slider-runnable-track {
  2856. height: 3px;
  2857. cursor: pointer;
  2858. background: #e2e4e7;
  2859. border-radius: 1.5px;
  2860. margin-top: -4px; }
  2861. .components-range-control__slider::-moz-range-track {
  2862. height: 3px;
  2863. cursor: pointer;
  2864. background: #e2e4e7;
  2865. border-radius: 1.5px; }
  2866. .components-range-control__slider::-ms-track {
  2867. margin-top: -4px;
  2868. background: transparent;
  2869. border-color: transparent;
  2870. color: transparent;
  2871. height: 3px;
  2872. cursor: pointer;
  2873. background: #e2e4e7;
  2874. border-radius: 1.5px; }
  2875. .components-range-control__number {
  2876. display: inline-block;
  2877. margin-right: 8px;
  2878. font-weight: 500;
  2879. width: 54px; }
  2880. .components-resizable-box__handle {
  2881. display: none;
  2882. width: 23px;
  2883. height: 23px; }
  2884. .components-resizable-box__container.is-selected .components-resizable-box__handle {
  2885. display: block; }
  2886. .components-resizable-box__handle::after {
  2887. display: block;
  2888. content: "";
  2889. width: 15px;
  2890. height: 15px;
  2891. border: 2px solid #fff;
  2892. border-radius: 50%;
  2893. background: #0085ba;
  2894. cursor: inherit;
  2895. position: absolute;
  2896. top: calc(50% - 8px);
  2897. left: calc(50% - 8px); }
  2898. body.admin-color-sunrise .components-resizable-box__handle::after {
  2899. background: #d1864a; }
  2900. body.admin-color-ocean .components-resizable-box__handle::after {
  2901. background: #a3b9a2; }
  2902. body.admin-color-midnight .components-resizable-box__handle::after {
  2903. background: #e14d43; }
  2904. body.admin-color-ectoplasm .components-resizable-box__handle::after {
  2905. background: #a7b656; }
  2906. body.admin-color-coffee .components-resizable-box__handle::after {
  2907. background: #c2a68c; }
  2908. body.admin-color-blue .components-resizable-box__handle::after {
  2909. background: #82b4cb; }
  2910. body.admin-color-light .components-resizable-box__handle::after {
  2911. background: #0085ba; }
  2912. .components-resizable-box__side-handle::before {
  2913. display: block;
  2914. content: "";
  2915. width: 7px;
  2916. height: 7px;
  2917. border: 2px solid #fff;
  2918. background: #0085ba;
  2919. cursor: inherit;
  2920. position: absolute;
  2921. top: calc(50% - 4px);
  2922. left: calc(50% - 4px);
  2923. transition: transform 0.1s ease-in;
  2924. opacity: 0; }
  2925. body.admin-color-sunrise .components-resizable-box__side-handle::before {
  2926. background: #d1864a; }
  2927. body.admin-color-ocean .components-resizable-box__side-handle::before {
  2928. background: #a3b9a2; }
  2929. body.admin-color-midnight .components-resizable-box__side-handle::before {
  2930. background: #e14d43; }
  2931. body.admin-color-ectoplasm .components-resizable-box__side-handle::before {
  2932. background: #a7b656; }
  2933. body.admin-color-coffee .components-resizable-box__side-handle::before {
  2934. background: #c2a68c; }
  2935. body.admin-color-blue .components-resizable-box__side-handle::before {
  2936. background: #82b4cb; }
  2937. body.admin-color-light .components-resizable-box__side-handle::before {
  2938. background: #0085ba; }
  2939. @media (prefers-reduced-motion: reduce) {
  2940. .components-resizable-box__side-handle::before {
  2941. transition-duration: 0s; } }
  2942. .is-dark-theme .components-resizable-box__side-handle::before,
  2943. .is-dark-theme .components-resizable-box__handle::after {
  2944. border-color: #d7dade; }
  2945. .components-resizable-box__side-handle {
  2946. z-index: 1; }
  2947. .components-resizable-box__corner-handle {
  2948. z-index: 2; }
  2949. .components-resizable-box__side-handle.components-resizable-box__handle-top,
  2950. .components-resizable-box__side-handle.components-resizable-box__handle-bottom,
  2951. .components-resizable-box__side-handle.components-resizable-box__handle-top::before,
  2952. .components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
  2953. width: 100%;
  2954. right: 0;
  2955. border-right: 0;
  2956. border-left: 0; }
  2957. .components-resizable-box__side-handle.components-resizable-box__handle-left,
  2958. .components-resizable-box__side-handle.components-resizable-box__handle-right,
  2959. .components-resizable-box__side-handle.components-resizable-box__handle-left::before,
  2960. .components-resizable-box__side-handle.components-resizable-box__handle-right::before {
  2961. height: 100%;
  2962. top: 0;
  2963. border-top: 0;
  2964. border-bottom: 0; }
  2965. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  2966. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  2967. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  2968. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  2969. animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
  2970. animation-fill-mode: forwards; }
  2971. @media (prefers-reduced-motion: reduce) {
  2972. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  2973. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  2974. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  2975. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  2976. animation-duration: 1ms; } }
  2977. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  2978. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  2979. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  2980. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  2981. animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
  2982. animation-fill-mode: forwards; }
  2983. @media (prefers-reduced-motion: reduce) {
  2984. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  2985. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  2986. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  2987. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  2988. animation-duration: 1ms; } }
  2989. @keyframes components-resizable-box__top-bottom-animation {
  2990. from {
  2991. transform: scaleX(0);
  2992. opacity: 0; }
  2993. to {
  2994. transform: scaleX(1);
  2995. opacity: 1; } }
  2996. @keyframes components-resizable-box__left-right-animation {
  2997. from {
  2998. transform: scaleY(0);
  2999. opacity: 0; }
  3000. to {
  3001. transform: scaleY(1);
  3002. opacity: 1; } }
  3003. .components-resizable-box__handle-right {
  3004. right: calc(11.5px * -1); }
  3005. .components-resizable-box__handle-left {
  3006. left: calc(11.5px * -1); }
  3007. .components-resizable-box__handle-top {
  3008. top: calc(11.5px * -1); }
  3009. .components-resizable-box__handle-bottom {
  3010. bottom: calc(11.5px * -1); }
  3011. .components-responsive-wrapper {
  3012. position: relative;
  3013. max-width: 100%; }
  3014. .components-responsive-wrapper,
  3015. .components-responsive-wrapper > span {
  3016. display: block; }
  3017. .components-responsive-wrapper__content {
  3018. position: absolute;
  3019. top: 0;
  3020. left: 0;
  3021. bottom: 0;
  3022. right: 0;
  3023. width: 100%;
  3024. height: 100%; }
  3025. .components-sandbox {
  3026. overflow: hidden; }
  3027. iframe.components-sandbox {
  3028. width: 100%; }
  3029. html.lockscroll,
  3030. body.lockscroll {
  3031. overflow: hidden; }
  3032. .components-select-control__input {
  3033. background: #fff;
  3034. height: 36px;
  3035. line-height: 36px;
  3036. margin: 1px;
  3037. outline: 0;
  3038. width: 100%;
  3039. -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
  3040. @media (min-width: 782px) {
  3041. .components-select-control__input {
  3042. height: 28px;
  3043. line-height: 28px; } }
  3044. @media (max-width: 782px) {
  3045. .components-base-control .components-base-control__field .components-select-control__input {
  3046. font-size: 16px; } }
  3047. .components-snackbar {
  3048. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3049. font-size: 13px;
  3050. background-color: #32373c;
  3051. border-radius: 4px;
  3052. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  3053. color: #fff;
  3054. padding: 16px 24px;
  3055. width: 100%;
  3056. max-width: 600px;
  3057. box-sizing: border-box;
  3058. cursor: pointer; }
  3059. @media (min-width: 600px) {
  3060. .components-snackbar {
  3061. width: -webkit-fit-content;
  3062. width: fit-content; } }
  3063. .components-snackbar:hover {
  3064. background-color: #191e23; }
  3065. .components-snackbar:focus {
  3066. background-color: #191e23;
  3067. box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }
  3068. .components-snackbar__action.components-button {
  3069. margin-right: 32px;
  3070. color: #fff;
  3071. height: auto;
  3072. flex-shrink: 0;
  3073. line-height: 1.4;
  3074. padding: 0; }
  3075. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
  3076. text-decoration: underline;
  3077. background-color: transparent; }
  3078. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):focus {
  3079. color: #fff;
  3080. box-shadow: none;
  3081. outline: 1px dotted #fff; }
  3082. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  3083. color: #33b3db; }
  3084. .components-snackbar__content {
  3085. display: flex;
  3086. align-items: baseline;
  3087. justify-content: space-between;
  3088. line-height: 1.4; }
  3089. .components-snackbar-list {
  3090. position: absolute;
  3091. z-index: 100000;
  3092. width: 100%;
  3093. box-sizing: border-box; }
  3094. .components-snackbar-list__notice-container {
  3095. position: relative;
  3096. padding-top: 8px; }
  3097. .components-spinner {
  3098. display: inline-block;
  3099. background-color: #7e8993;
  3100. width: 18px;
  3101. height: 18px;
  3102. opacity: 0.7;
  3103. float: left;
  3104. margin: 5px 11px 0;
  3105. border-radius: 100%;
  3106. position: relative; }
  3107. .components-spinner::before {
  3108. content: "";
  3109. position: absolute;
  3110. background-color: #fff;
  3111. top: 3px;
  3112. left: 3px;
  3113. width: 4px;
  3114. height: 4px;
  3115. border-radius: 100%;
  3116. transform-origin: 6px 6px;
  3117. animation: components-spinner__animation 1s infinite linear; }
  3118. @keyframes components-spinner__animation {
  3119. from {
  3120. transform: rotate(0deg); }
  3121. to {
  3122. transform: rotate(-360deg); } }
  3123. .components-text-control__input {
  3124. width: 100%;
  3125. padding: 6px 8px; }
  3126. .components-textarea-control__input {
  3127. width: 100%;
  3128. padding: 6px 8px; }
  3129. .components-tip {
  3130. display: flex;
  3131. color: #555d66; }
  3132. .components-tip svg {
  3133. -ms-grid-row-align: center;
  3134. align-self: center;
  3135. fill: #f0b849;
  3136. flex-shrink: 0;
  3137. margin-left: 16px; }
  3138. .components-tip p {
  3139. margin: 0; }
  3140. .components-toggle-control .components-base-control__field {
  3141. display: flex;
  3142. margin-bottom: 12px; }
  3143. .components-toggle-control .components-base-control__field .components-form-toggle {
  3144. margin-left: 16px; }
  3145. .components-toggle-control .components-base-control__field .components-toggle-control__label {
  3146. display: block;
  3147. margin-bottom: 4px; }
  3148. .components-toolbar {
  3149. margin: 0;
  3150. border: 1px solid #e2e4e7;
  3151. background-color: #fff;
  3152. display: inline-flex;
  3153. flex-shrink: 0; }
  3154. @supports ((position: -webkit-sticky) or (position: sticky)) {
  3155. .components-toolbar {
  3156. display: flex; } }
  3157. div.components-toolbar > div {
  3158. display: block;
  3159. margin: 0; }
  3160. @supports ((position: -webkit-sticky) or (position: sticky)) {
  3161. div.components-toolbar > div {
  3162. display: flex; } }
  3163. div.components-toolbar > div + div {
  3164. margin-right: -3px; }
  3165. div.components-toolbar > div + div.has-left-divider {
  3166. margin-right: 6px;
  3167. position: relative;
  3168. overflow: visible; }
  3169. div.components-toolbar > div + div.has-left-divider::before {
  3170. display: inline-block;
  3171. content: "";
  3172. box-sizing: content-box;
  3173. background-color: #e2e4e7;
  3174. position: absolute;
  3175. top: 8px;
  3176. right: -3px;
  3177. width: 1px;
  3178. height: 20px; }
  3179. .components-toolbar__control.components-button {
  3180. display: inline-flex;
  3181. align-items: flex-end;
  3182. margin: 0;
  3183. padding: 3px;
  3184. outline: none;
  3185. cursor: pointer;
  3186. position: relative;
  3187. width: 36px;
  3188. height: 36px; }
  3189. .components-toolbar__control.components-button:not([aria-disabled="true"]):not(.is-default):active, .components-toolbar__control.components-button:not([aria-disabled="true"]):hover, .components-toolbar__control.components-button:not([aria-disabled="true"]):focus {
  3190. outline: none;
  3191. box-shadow: none;
  3192. background: none;
  3193. border: none; }
  3194. .components-toolbar__control.components-button:disabled {
  3195. cursor: default; }
  3196. .components-toolbar__control.components-button > svg {
  3197. padding: 5px;
  3198. border-radius: 4px;
  3199. height: 30px;
  3200. width: 30px; }
  3201. .components-toolbar__control.components-button[data-subscript] svg {
  3202. padding: 5px 0 5px 10px; }
  3203. .components-toolbar__control.components-button[data-subscript]::after {
  3204. content: attr(data-subscript);
  3205. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3206. font-size: 13px;
  3207. font-weight: 600;
  3208. line-height: 12px;
  3209. position: absolute;
  3210. left: 8px;
  3211. bottom: 10px; }
  3212. .components-toolbar__control.components-button:not(:disabled):not([aria-disabled="true"]):hover {
  3213. box-shadow: none; }
  3214. .components-toolbar__control.components-button:not(:disabled).is-active > svg,
  3215. .components-toolbar__control.components-button:not(:disabled):hover > svg {
  3216. color: #555d66;
  3217. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  3218. .components-toolbar__control.components-button:not(:disabled).is-active > svg {
  3219. outline: none;
  3220. color: #fff;
  3221. box-shadow: none;
  3222. background: #555d66; }
  3223. .components-toolbar__control.components-button:not(:disabled).is-active[data-subscript]::after {
  3224. color: #fff; }
  3225. .components-toolbar__control.components-button:not(:disabled):focus > svg {
  3226. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff;
  3227. outline: 2px solid transparent;
  3228. outline: 0; }
  3229. .components-toolbar__control.components-button:not(:disabled).is-active {
  3230. outline: 1px dotted transparent;
  3231. outline-offset: -2px; }
  3232. .components-toolbar__control.components-button:not(:disabled):focus {
  3233. outline: 2px solid transparent; }
  3234. .components-toolbar__control .dashicon {
  3235. display: block; }
  3236. .components-tooltip.components-popover {
  3237. z-index: 1000002; }
  3238. .components-tooltip.components-popover::before {
  3239. border-color: transparent; }
  3240. .components-tooltip.components-popover.is-top::after {
  3241. border-top-color: #191e23; }
  3242. .components-tooltip.components-popover.is-bottom::after {
  3243. border-bottom-color: #191e23; }
  3244. .components-tooltip.components-popover:not(.is-mobile) .components-popover__content {
  3245. min-width: 0; }
  3246. .components-tooltip .components-popover__content {
  3247. padding: 4px 12px;
  3248. background: #191e23;
  3249. border-width: 0;
  3250. color: #fff;
  3251. white-space: nowrap;
  3252. text-align: center; }
  3253. .components-tooltip__shortcut {
  3254. display: block;
  3255. color: #7e8993; }