style.css 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642
  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 left; }
  49. .components-animate__appear.is-from-top.is-from-right {
  50. transform-origin: top right; }
  51. .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
  52. transform-origin: bottom left; }
  53. .components-animate__appear.is-from-bottom.is-from-right {
  54. transform-origin: bottom right; }
  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-left: -3px;
  101. margin-right: -3px;
  102. text-align: left; }
  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-left: -1px; }
  136. .components-button-group .components-button.is-button:first-child {
  137. border-radius: 3px 0 0 3px; }
  138. .components-button-group .components-button.is-button:last-child {
  139. border-radius: 0 3px 3px 0; }
  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: left;
  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 4px 0 0;
  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-right: 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. left: -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. left: -3px; } }
  613. .component-color-indicator {
  614. width: 25px;
  615. height: 16px;
  616. margin-left: 0.8rem;
  617. border: 1px solid #dadada;
  618. display: inline-block; }
  619. .component-color-indicator + .component-color-indicator {
  620. margin-left: 0.5rem; }
  621. .components-color-palette {
  622. margin-right: -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-right: 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. left: 4px;
  666. top: 4px; }
  667. .components-color-palette__item::after {
  668. content: "";
  669. position: absolute;
  670. top: -1px;
  671. left: -1px;
  672. bottom: -1px;
  673. right: -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. left: -2px;
  687. border-radius: 50%;
  688. box-shadow: inset 0 0 0 2px #fff; }
  689. .components-color-palette__custom-color {
  690. margin-right: 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-right: 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: 0 0, 0 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. left: 0;
  757. right: 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. left: 0;
  769. right: 0;
  770. bottom: 0; }
  771. .components-color-picker__saturation-color {
  772. overflow: hidden; }
  773. .components-color-picker__saturation-white {
  774. /*rtl:ignore*/
  775. background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }
  776. .components-color-picker__saturation-black {
  777. background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }
  778. .components-color-picker__saturation-pointer {
  779. width: 8px;
  780. height: 8px;
  781. 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);
  782. border-radius: 50%;
  783. background-color: transparent;
  784. transform: translate(-4px, -4px); }
  785. /* HUE & ALPHA BARS */
  786. .components-color-picker__toggles {
  787. flex: 1; }
  788. .components-color-picker__alpha {
  789. 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%);
  790. background-size: 10px 10px;
  791. background-position: 0 0, 0 5px, 5px -5px, -5px 0; }
  792. .components-color-picker__hue-gradient,
  793. .components-color-picker__alpha-gradient {
  794. position: absolute;
  795. top: 0;
  796. left: 0;
  797. right: 0;
  798. bottom: 0; }
  799. .components-color-picker__hue,
  800. .components-color-picker__alpha {
  801. height: 12px;
  802. position: relative; }
  803. .is-alpha-enabled .components-color-picker__hue {
  804. margin-bottom: 8px; }
  805. .components-color-picker__hue-bar,
  806. .components-color-picker__alpha-bar {
  807. position: relative;
  808. margin: 0 3px;
  809. height: 100%;
  810. padding: 0 2px; }
  811. .components-color-picker__hue-gradient {
  812. /*rtl:ignore*/
  813. background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }
  814. .components-color-picker__hue-pointer,
  815. .components-color-picker__alpha-pointer {
  816. /*rtl:ignore*/
  817. left: 0;
  818. width: 14px;
  819. height: 14px;
  820. border-radius: 50%;
  821. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  822. background: #fff;
  823. transform: translate(-7px, -1px); }
  824. .components-color-picker__hue-pointer,
  825. .components-color-picker__saturation-pointer {
  826. transition: box-shadow 0.1s linear; }
  827. @media (prefers-reduced-motion: reduce) {
  828. .components-color-picker__hue-pointer,
  829. .components-color-picker__saturation-pointer {
  830. transition-duration: 0s; } }
  831. .components-color-picker__saturation-pointer:focus {
  832. 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); }
  833. .components-color-picker__hue-pointer:focus,
  834. .components-color-picker__alpha-pointer:focus {
  835. border-color: #00a0d2;
  836. box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;
  837. outline: 2px solid transparent;
  838. outline-offset: -2px; }
  839. /* INPUTS COMPONENT */
  840. .components-color-picker__inputs-wrapper {
  841. margin: 0 -4px;
  842. padding-top: 16px;
  843. display: flex;
  844. align-items: flex-end; }
  845. .components-color-picker__inputs-wrapper fieldset {
  846. flex: 1; }
  847. .components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type="number"] {
  848. padding: 2px; }
  849. .components-color-picker__inputs-fields {
  850. display: flex;
  851. /*rtl:ignore*/
  852. direction: ltr; }
  853. .components-color-picker__inputs-fields .components-base-control__field {
  854. margin: 0 4px; }
  855. svg.dashicon {
  856. fill: currentColor;
  857. outline: none; }
  858. /*rtl:begin:ignore*/
  859. .PresetDateRangePicker_panel {
  860. padding: 0 22px 11px; }
  861. .PresetDateRangePicker_button {
  862. position: relative;
  863. height: 100%;
  864. text-align: center;
  865. background: 0 0;
  866. border: 2px solid #00a699;
  867. color: #00a699;
  868. padding: 4px 12px;
  869. margin-right: 8px;
  870. font: inherit;
  871. font-weight: 700;
  872. line-height: normal;
  873. overflow: visible;
  874. box-sizing: border-box;
  875. cursor: pointer; }
  876. .PresetDateRangePicker_button:active {
  877. outline: 0; }
  878. .PresetDateRangePicker_button__selected {
  879. color: #fff;
  880. background: #00a699; }
  881. .SingleDatePickerInput {
  882. display: inline-block;
  883. background-color: #fff; }
  884. .SingleDatePickerInput__withBorder {
  885. border-radius: 2px;
  886. border: 1px solid #dbdbdb; }
  887. .SingleDatePickerInput__rtl {
  888. direction: rtl; }
  889. .SingleDatePickerInput__disabled {
  890. background-color: #f2f2f2; }
  891. .SingleDatePickerInput__block {
  892. display: block; }
  893. .SingleDatePickerInput__showClearDate {
  894. padding-right: 30px; }
  895. .SingleDatePickerInput_clearDate {
  896. background: 0 0;
  897. border: 0;
  898. color: inherit;
  899. font: inherit;
  900. line-height: normal;
  901. overflow: visible;
  902. cursor: pointer;
  903. padding: 10px;
  904. margin: 0 10px 0 5px;
  905. position: absolute;
  906. right: 0;
  907. top: 50%;
  908. transform: translateY(-50%); }
  909. .SingleDatePickerInput_clearDate__default:focus,
  910. .SingleDatePickerInput_clearDate__default:hover {
  911. background: #dbdbdb;
  912. border-radius: 50%; }
  913. .SingleDatePickerInput_clearDate__small {
  914. padding: 6px; }
  915. .SingleDatePickerInput_clearDate__hide {
  916. visibility: hidden; }
  917. .SingleDatePickerInput_clearDate_svg {
  918. fill: #82888a;
  919. height: 12px;
  920. width: 15px;
  921. vertical-align: middle; }
  922. .SingleDatePickerInput_clearDate_svg__small {
  923. height: 9px; }
  924. .SingleDatePickerInput_calendarIcon {
  925. background: 0 0;
  926. border: 0;
  927. color: inherit;
  928. font: inherit;
  929. line-height: normal;
  930. overflow: visible;
  931. cursor: pointer;
  932. display: inline-block;
  933. vertical-align: middle;
  934. padding: 10px;
  935. margin: 0 5px 0 10px; }
  936. .SingleDatePickerInput_calendarIcon_svg {
  937. fill: #82888a;
  938. height: 15px;
  939. width: 14px;
  940. vertical-align: middle; }
  941. .SingleDatePicker {
  942. position: relative;
  943. display: inline-block; }
  944. .SingleDatePicker__block {
  945. display: block; }
  946. .SingleDatePicker_picker {
  947. z-index: 1;
  948. background-color: #fff;
  949. position: absolute; }
  950. .SingleDatePicker_picker__rtl {
  951. direction: rtl; }
  952. .SingleDatePicker_picker__directionLeft {
  953. left: 0; }
  954. .SingleDatePicker_picker__directionRight {
  955. right: 0; }
  956. .SingleDatePicker_picker__portal {
  957. background-color: rgba(0, 0, 0, 0.3);
  958. position: fixed;
  959. top: 0;
  960. left: 0;
  961. height: 100%;
  962. width: 100%; }
  963. .SingleDatePicker_picker__fullScreenPortal {
  964. background-color: #fff; }
  965. .SingleDatePicker_closeButton {
  966. background: 0 0;
  967. border: 0;
  968. color: inherit;
  969. font: inherit;
  970. line-height: normal;
  971. overflow: visible;
  972. cursor: pointer;
  973. position: absolute;
  974. top: 0;
  975. right: 0;
  976. padding: 15px;
  977. z-index: 2; }
  978. .SingleDatePicker_closeButton:focus,
  979. .SingleDatePicker_closeButton:hover {
  980. color: #b0b3b4;
  981. text-decoration: none; }
  982. .SingleDatePicker_closeButton_svg {
  983. height: 15px;
  984. width: 15px;
  985. fill: #cacccd; }
  986. .DayPickerKeyboardShortcuts_buttonReset {
  987. background: 0 0;
  988. border: 0;
  989. border-radius: 0;
  990. color: inherit;
  991. font: inherit;
  992. line-height: normal;
  993. overflow: visible;
  994. padding: 0;
  995. cursor: pointer;
  996. font-size: 14px; }
  997. .DayPickerKeyboardShortcuts_buttonReset:active {
  998. outline: 0; }
  999. .DayPickerKeyboardShortcuts_show {
  1000. width: 22px;
  1001. position: absolute;
  1002. z-index: 2; }
  1003. .DayPickerKeyboardShortcuts_show__bottomRight {
  1004. border-top: 26px solid transparent;
  1005. border-right: 33px solid #00a699;
  1006. bottom: 0;
  1007. right: 0; }
  1008. .DayPickerKeyboardShortcuts_show__bottomRight:hover {
  1009. border-right: 33px solid #008489; }
  1010. .DayPickerKeyboardShortcuts_show__topRight {
  1011. border-bottom: 26px solid transparent;
  1012. border-right: 33px solid #00a699;
  1013. top: 0;
  1014. right: 0; }
  1015. .DayPickerKeyboardShortcuts_show__topRight:hover {
  1016. border-right: 33px solid #008489; }
  1017. .DayPickerKeyboardShortcuts_show__topLeft {
  1018. border-bottom: 26px solid transparent;
  1019. border-left: 33px solid #00a699;
  1020. top: 0;
  1021. left: 0; }
  1022. .DayPickerKeyboardShortcuts_show__topLeft:hover {
  1023. border-left: 33px solid #008489; }
  1024. .DayPickerKeyboardShortcuts_showSpan {
  1025. color: #fff;
  1026. position: absolute; }
  1027. .DayPickerKeyboardShortcuts_showSpan__bottomRight {
  1028. bottom: 0;
  1029. right: -28px; }
  1030. .DayPickerKeyboardShortcuts_showSpan__topRight {
  1031. top: 1px;
  1032. right: -28px; }
  1033. .DayPickerKeyboardShortcuts_showSpan__topLeft {
  1034. top: 1px;
  1035. left: -28px; }
  1036. .DayPickerKeyboardShortcuts_panel {
  1037. overflow: auto;
  1038. background: #fff;
  1039. border: 1px solid #dbdbdb;
  1040. border-radius: 2px;
  1041. position: absolute;
  1042. top: 0;
  1043. bottom: 0;
  1044. right: 0;
  1045. left: 0;
  1046. z-index: 2;
  1047. padding: 22px;
  1048. margin: 33px; }
  1049. .DayPickerKeyboardShortcuts_title {
  1050. font-size: 16px;
  1051. font-weight: 700;
  1052. margin: 0; }
  1053. .DayPickerKeyboardShortcuts_list {
  1054. list-style: none;
  1055. padding: 0;
  1056. font-size: 14px; }
  1057. .DayPickerKeyboardShortcuts_close {
  1058. position: absolute;
  1059. right: 22px;
  1060. top: 22px;
  1061. z-index: 2; }
  1062. .DayPickerKeyboardShortcuts_close:active {
  1063. outline: 0; }
  1064. .DayPickerKeyboardShortcuts_closeSvg {
  1065. height: 15px;
  1066. width: 15px;
  1067. fill: #cacccd; }
  1068. .DayPickerKeyboardShortcuts_closeSvg:focus,
  1069. .DayPickerKeyboardShortcuts_closeSvg:hover {
  1070. fill: #82888a; }
  1071. .CalendarDay {
  1072. box-sizing: border-box;
  1073. cursor: pointer;
  1074. font-size: 14px;
  1075. text-align: center; }
  1076. .CalendarDay:active {
  1077. outline: 0; }
  1078. .CalendarDay__defaultCursor {
  1079. cursor: default; }
  1080. .CalendarDay__default {
  1081. border: 1px solid #e4e7e7;
  1082. color: #484848;
  1083. background: #fff; }
  1084. .CalendarDay__default:hover {
  1085. background: #e4e7e7;
  1086. border: 1px double #e4e7e7;
  1087. color: inherit; }
  1088. .CalendarDay__hovered_offset {
  1089. background: #f4f5f5;
  1090. border: 1px double #e4e7e7;
  1091. color: inherit; }
  1092. .CalendarDay__outside {
  1093. border: 0;
  1094. background: #fff;
  1095. color: #484848; }
  1096. .CalendarDay__outside:hover {
  1097. border: 0; }
  1098. .CalendarDay__blocked_minimum_nights {
  1099. background: #fff;
  1100. border: 1px solid #eceeee;
  1101. color: #cacccd; }
  1102. .CalendarDay__blocked_minimum_nights:active,
  1103. .CalendarDay__blocked_minimum_nights:hover {
  1104. background: #fff;
  1105. color: #cacccd; }
  1106. .CalendarDay__highlighted_calendar {
  1107. background: #ffe8bc;
  1108. color: #484848; }
  1109. .CalendarDay__highlighted_calendar:active,
  1110. .CalendarDay__highlighted_calendar:hover {
  1111. background: #ffce71;
  1112. color: #484848; }
  1113. .CalendarDay__selected_span {
  1114. background: #66e2da;
  1115. border: 1px solid #33dacd;
  1116. color: #fff; }
  1117. .CalendarDay__selected_span:active,
  1118. .CalendarDay__selected_span:hover {
  1119. background: #33dacd;
  1120. border: 1px solid #33dacd;
  1121. color: #fff; }
  1122. .CalendarDay__last_in_range {
  1123. border-right: #00a699; }
  1124. .CalendarDay__selected,
  1125. .CalendarDay__selected:active,
  1126. .CalendarDay__selected:hover {
  1127. background: #00a699;
  1128. border: 1px solid #00a699;
  1129. color: #fff; }
  1130. .CalendarDay__hovered_span,
  1131. .CalendarDay__hovered_span:hover {
  1132. background: #b2f1ec;
  1133. border: 1px solid #80e8e0;
  1134. color: #007a87; }
  1135. .CalendarDay__hovered_span:active {
  1136. background: #80e8e0;
  1137. border: 1px solid #80e8e0;
  1138. color: #007a87; }
  1139. .CalendarDay__blocked_calendar,
  1140. .CalendarDay__blocked_calendar:active,
  1141. .CalendarDay__blocked_calendar:hover {
  1142. background: #cacccd;
  1143. border: 1px solid #cacccd;
  1144. color: #82888a; }
  1145. .CalendarDay__blocked_out_of_range,
  1146. .CalendarDay__blocked_out_of_range:active,
  1147. .CalendarDay__blocked_out_of_range:hover {
  1148. background: #fff;
  1149. border: 1px solid #e4e7e7;
  1150. color: #cacccd; }
  1151. .CalendarMonth {
  1152. background: #fff;
  1153. text-align: center;
  1154. vertical-align: top;
  1155. -webkit-user-select: none;
  1156. -moz-user-select: none;
  1157. -ms-user-select: none;
  1158. user-select: none; }
  1159. .CalendarMonth_table {
  1160. border-collapse: collapse;
  1161. border-spacing: 0; }
  1162. .CalendarMonth_verticalSpacing {
  1163. border-collapse: separate; }
  1164. .CalendarMonth_caption {
  1165. color: #484848;
  1166. font-size: 18px;
  1167. text-align: center;
  1168. padding-top: 22px;
  1169. padding-bottom: 37px;
  1170. caption-side: initial; }
  1171. .CalendarMonth_caption__verticalScrollable {
  1172. padding-top: 12px;
  1173. padding-bottom: 7px; }
  1174. .CalendarMonthGrid {
  1175. background: #fff;
  1176. text-align: left;
  1177. z-index: 0; }
  1178. .CalendarMonthGrid__animating {
  1179. z-index: 1; }
  1180. .CalendarMonthGrid__horizontal {
  1181. position: absolute;
  1182. left: 9px; }
  1183. .CalendarMonthGrid__vertical {
  1184. margin: 0 auto; }
  1185. .CalendarMonthGrid__vertical_scrollable {
  1186. margin: 0 auto;
  1187. overflow-y: scroll; }
  1188. .CalendarMonthGrid_month__horizontal {
  1189. display: inline-block;
  1190. vertical-align: top;
  1191. min-height: 100%; }
  1192. .CalendarMonthGrid_month__hideForAnimation {
  1193. position: absolute;
  1194. z-index: -1;
  1195. opacity: 0;
  1196. pointer-events: none; }
  1197. .CalendarMonthGrid_month__hidden {
  1198. visibility: hidden; }
  1199. .DayPickerNavigation {
  1200. position: relative;
  1201. z-index: 2; }
  1202. .DayPickerNavigation__horizontal {
  1203. height: 0; }
  1204. .DayPickerNavigation__verticalDefault {
  1205. position: absolute;
  1206. width: 100%;
  1207. height: 52px;
  1208. bottom: 0;
  1209. left: 0; }
  1210. .DayPickerNavigation__verticalScrollableDefault {
  1211. position: relative; }
  1212. .DayPickerNavigation_button {
  1213. cursor: pointer;
  1214. -webkit-user-select: none;
  1215. -moz-user-select: none;
  1216. -ms-user-select: none;
  1217. user-select: none;
  1218. border: 0;
  1219. padding: 0;
  1220. margin: 0; }
  1221. .DayPickerNavigation_button__default {
  1222. border: 1px solid #e4e7e7;
  1223. background-color: #fff;
  1224. color: #757575; }
  1225. .DayPickerNavigation_button__default:focus,
  1226. .DayPickerNavigation_button__default:hover {
  1227. border: 1px solid #c4c4c4; }
  1228. .DayPickerNavigation_button__default:active {
  1229. background: #f2f2f2; }
  1230. .DayPickerNavigation_button__horizontalDefault {
  1231. position: absolute;
  1232. top: 18px;
  1233. line-height: .78;
  1234. border-radius: 3px;
  1235. padding: 6px 9px; }
  1236. .DayPickerNavigation_leftButton__horizontalDefault {
  1237. left: 22px; }
  1238. .DayPickerNavigation_rightButton__horizontalDefault {
  1239. right: 22px; }
  1240. .DayPickerNavigation_button__verticalDefault {
  1241. padding: 5px;
  1242. background: #fff;
  1243. box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  1244. position: relative;
  1245. display: inline-block;
  1246. height: 100%;
  1247. width: 50%; }
  1248. .DayPickerNavigation_nextButton__verticalDefault {
  1249. border-left: 0; }
  1250. .DayPickerNavigation_nextButton__verticalScrollableDefault {
  1251. width: 100%; }
  1252. .DayPickerNavigation_svg__horizontal {
  1253. height: 19px;
  1254. width: 19px;
  1255. fill: #82888a;
  1256. display: block; }
  1257. .DayPickerNavigation_svg__vertical {
  1258. height: 42px;
  1259. width: 42px;
  1260. fill: #484848;
  1261. display: block; }
  1262. .DayPicker {
  1263. background: #fff;
  1264. position: relative;
  1265. text-align: left; }
  1266. .DayPicker__horizontal {
  1267. background: #fff; }
  1268. .DayPicker__verticalScrollable {
  1269. height: 100%; }
  1270. .DayPicker__hidden {
  1271. visibility: hidden; }
  1272. .DayPicker__withBorder {
  1273. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  1274. border-radius: 3px; }
  1275. .DayPicker_portal__horizontal {
  1276. box-shadow: none;
  1277. position: absolute;
  1278. left: 50%;
  1279. top: 50%; }
  1280. .DayPicker_portal__vertical {
  1281. position: initial; }
  1282. .DayPicker_focusRegion {
  1283. outline: 0; }
  1284. .DayPicker_calendarInfo__horizontal,
  1285. .DayPicker_wrapper__horizontal {
  1286. display: inline-block;
  1287. vertical-align: top; }
  1288. .DayPicker_weekHeaders {
  1289. position: relative; }
  1290. .DayPicker_weekHeaders__horizontal {
  1291. margin-left: 9px; }
  1292. .DayPicker_weekHeader {
  1293. color: #757575;
  1294. position: absolute;
  1295. top: 62px;
  1296. z-index: 2;
  1297. text-align: left; }
  1298. .DayPicker_weekHeader__vertical {
  1299. left: 50%; }
  1300. .DayPicker_weekHeader__verticalScrollable {
  1301. top: 0;
  1302. display: table-row;
  1303. border-bottom: 1px solid #dbdbdb;
  1304. background: #fff;
  1305. margin-left: 0;
  1306. left: 0;
  1307. width: 100%;
  1308. text-align: center; }
  1309. .DayPicker_weekHeader_ul {
  1310. list-style: none;
  1311. margin: 1px 0;
  1312. padding-left: 0;
  1313. padding-right: 0;
  1314. font-size: 14px; }
  1315. .DayPicker_weekHeader_li {
  1316. display: inline-block;
  1317. text-align: center; }
  1318. .DayPicker_transitionContainer {
  1319. position: relative;
  1320. overflow: hidden;
  1321. border-radius: 3px; }
  1322. .DayPicker_transitionContainer__horizontal {
  1323. transition: height .2s ease-in-out; }
  1324. .DayPicker_transitionContainer__vertical {
  1325. width: 100%; }
  1326. .DayPicker_transitionContainer__verticalScrollable {
  1327. padding-top: 20px;
  1328. height: 100%;
  1329. position: absolute;
  1330. top: 0;
  1331. bottom: 0;
  1332. right: 0;
  1333. left: 0;
  1334. overflow-y: scroll; }
  1335. .DateInput {
  1336. margin: 0;
  1337. padding: 0;
  1338. background: #fff;
  1339. position: relative;
  1340. display: inline-block;
  1341. width: 130px;
  1342. vertical-align: middle; }
  1343. .DateInput__small {
  1344. width: 97px; }
  1345. .DateInput__block {
  1346. width: 100%; }
  1347. .DateInput__disabled {
  1348. background: #f2f2f2;
  1349. color: #dbdbdb; }
  1350. .DateInput_input {
  1351. font-weight: 200;
  1352. font-size: 19px;
  1353. line-height: 24px;
  1354. color: #484848;
  1355. background-color: #fff;
  1356. width: 100%;
  1357. padding: 11px 11px 9px;
  1358. border: 0;
  1359. border-top: 0;
  1360. border-right: 0;
  1361. border-bottom: 2px solid transparent;
  1362. border-left: 0;
  1363. border-radius: 0; }
  1364. .DateInput_input__small {
  1365. font-size: 15px;
  1366. line-height: 18px;
  1367. letter-spacing: .2px;
  1368. padding: 7px 7px 5px; }
  1369. .DateInput_input__regular {
  1370. font-weight: auto; }
  1371. .DateInput_input__readOnly {
  1372. -webkit-user-select: none;
  1373. -moz-user-select: none;
  1374. -ms-user-select: none;
  1375. user-select: none; }
  1376. .DateInput_input__focused {
  1377. outline: 0;
  1378. background: #fff;
  1379. border: 0;
  1380. border-top: 0;
  1381. border-right: 0;
  1382. border-bottom: 2px solid #008489;
  1383. border-left: 0; }
  1384. .DateInput_input__disabled {
  1385. background: #f2f2f2;
  1386. font-style: italic; }
  1387. .DateInput_screenReaderMessage {
  1388. border: 0;
  1389. clip: rect(0, 0, 0, 0);
  1390. height: 1px;
  1391. margin: -1px;
  1392. overflow: hidden;
  1393. padding: 0;
  1394. position: absolute;
  1395. width: 1px; }
  1396. .DateInput_fang {
  1397. position: absolute;
  1398. width: 20px;
  1399. height: 10px;
  1400. left: 22px;
  1401. z-index: 2; }
  1402. .DateInput_fangShape {
  1403. fill: #fff; }
  1404. .DateInput_fangStroke {
  1405. stroke: #dbdbdb;
  1406. fill: transparent; }
  1407. .DateRangePickerInput {
  1408. background-color: #fff;
  1409. display: inline-block; }
  1410. .DateRangePickerInput__disabled {
  1411. background: #f2f2f2; }
  1412. .DateRangePickerInput__withBorder {
  1413. border-radius: 2px;
  1414. border: 1px solid #dbdbdb; }
  1415. .DateRangePickerInput__rtl {
  1416. direction: rtl; }
  1417. .DateRangePickerInput__block {
  1418. display: block; }
  1419. .DateRangePickerInput__showClearDates {
  1420. padding-right: 30px; }
  1421. .DateRangePickerInput_arrow {
  1422. display: inline-block;
  1423. vertical-align: middle;
  1424. color: #484848; }
  1425. .DateRangePickerInput_arrow_svg {
  1426. vertical-align: middle;
  1427. fill: #484848;
  1428. height: 24px;
  1429. width: 24px; }
  1430. .DateRangePickerInput_clearDates {
  1431. background: 0 0;
  1432. border: 0;
  1433. color: inherit;
  1434. font: inherit;
  1435. line-height: normal;
  1436. overflow: visible;
  1437. cursor: pointer;
  1438. padding: 10px;
  1439. margin: 0 10px 0 5px;
  1440. position: absolute;
  1441. right: 0;
  1442. top: 50%;
  1443. transform: translateY(-50%); }
  1444. .DateRangePickerInput_clearDates__small {
  1445. padding: 6px; }
  1446. .DateRangePickerInput_clearDates_default:focus,
  1447. .DateRangePickerInput_clearDates_default:hover {
  1448. background: #dbdbdb;
  1449. border-radius: 50%; }
  1450. .DateRangePickerInput_clearDates__hide {
  1451. visibility: hidden; }
  1452. .DateRangePickerInput_clearDates_svg {
  1453. fill: #82888a;
  1454. height: 12px;
  1455. width: 15px;
  1456. vertical-align: middle; }
  1457. .DateRangePickerInput_clearDates_svg__small {
  1458. height: 9px; }
  1459. .DateRangePickerInput_calendarIcon {
  1460. background: 0 0;
  1461. border: 0;
  1462. color: inherit;
  1463. font: inherit;
  1464. line-height: normal;
  1465. overflow: visible;
  1466. cursor: pointer;
  1467. display: inline-block;
  1468. vertical-align: middle;
  1469. padding: 10px;
  1470. margin: 0 5px 0 10px; }
  1471. .DateRangePickerInput_calendarIcon_svg {
  1472. fill: #82888a;
  1473. height: 15px;
  1474. width: 14px;
  1475. vertical-align: middle; }
  1476. .DateRangePicker {
  1477. position: relative;
  1478. display: inline-block; }
  1479. .DateRangePicker__block {
  1480. display: block; }
  1481. .DateRangePicker_picker {
  1482. z-index: 1;
  1483. background-color: #fff;
  1484. position: absolute; }
  1485. .DateRangePicker_picker__rtl {
  1486. direction: rtl; }
  1487. .DateRangePicker_picker__directionLeft {
  1488. left: 0; }
  1489. .DateRangePicker_picker__directionRight {
  1490. right: 0; }
  1491. .DateRangePicker_picker__portal {
  1492. background-color: rgba(0, 0, 0, 0.3);
  1493. position: fixed;
  1494. top: 0;
  1495. left: 0;
  1496. height: 100%;
  1497. width: 100%; }
  1498. .DateRangePicker_picker__fullScreenPortal {
  1499. background-color: #fff; }
  1500. .DateRangePicker_closeButton {
  1501. background: 0 0;
  1502. border: 0;
  1503. color: inherit;
  1504. font: inherit;
  1505. line-height: normal;
  1506. overflow: visible;
  1507. cursor: pointer;
  1508. position: absolute;
  1509. top: 0;
  1510. right: 0;
  1511. padding: 15px;
  1512. z-index: 2; }
  1513. .DateRangePicker_closeButton:focus,
  1514. .DateRangePicker_closeButton:hover {
  1515. color: #b0b3b4;
  1516. text-decoration: none; }
  1517. .DateRangePicker_closeButton_svg {
  1518. height: 15px;
  1519. width: 15px;
  1520. fill: #cacccd; }
  1521. /*rtl:end:ignore*/
  1522. .components-datetime .components-datetime__calendar-help {
  1523. padding: 8px; }
  1524. .components-datetime .components-datetime__calendar-help h4 {
  1525. margin: 0; }
  1526. .components-datetime .components-datetime__date-help-button {
  1527. display: block;
  1528. margin-left: auto;
  1529. margin-right: 8px;
  1530. margin-top: 0.5em; }
  1531. .components-datetime fieldset {
  1532. border: 0;
  1533. padding: 0;
  1534. margin: 0; }
  1535. .components-datetime select,
  1536. .components-datetime input {
  1537. box-sizing: border-box;
  1538. height: 28px;
  1539. vertical-align: middle;
  1540. padding: 0;
  1541. box-shadow: 0 0 0 transparent;
  1542. transition: box-shadow 0.1s linear;
  1543. border-radius: 4px;
  1544. border: 1px solid #7e8993; }
  1545. @media (prefers-reduced-motion: reduce) {
  1546. .components-datetime select,
  1547. .components-datetime input {
  1548. transition-duration: 0s; } }
  1549. .components-datetime__date {
  1550. min-height: 236px;
  1551. border-top: 1px solid #e2e4e7;
  1552. margin-left: -8px;
  1553. margin-right: -8px; }
  1554. .components-datetime__date .CalendarMonth_caption {
  1555. font-size: 13px; }
  1556. .components-datetime__date .CalendarDay {
  1557. font-size: 13px;
  1558. border: 1px solid transparent;
  1559. border-radius: 50%;
  1560. text-align: center; }
  1561. .components-datetime__date .CalendarDay__selected {
  1562. background: #0085ba; }
  1563. body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {
  1564. background: #d1864a; }
  1565. body.admin-color-ocean .components-datetime__date .CalendarDay__selected {
  1566. background: #a3b9a2; }
  1567. body.admin-color-midnight .components-datetime__date .CalendarDay__selected {
  1568. background: #e14d43; }
  1569. body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {
  1570. background: #a7b656; }
  1571. body.admin-color-coffee .components-datetime__date .CalendarDay__selected {
  1572. background: #c2a68c; }
  1573. body.admin-color-blue .components-datetime__date .CalendarDay__selected {
  1574. background: #82b4cb; }
  1575. body.admin-color-light .components-datetime__date .CalendarDay__selected {
  1576. background: #0085ba; }
  1577. .components-datetime__date .CalendarDay__selected:hover {
  1578. background: rgb(0, 113, 158); }
  1579. body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {
  1580. background: rgb(178, 114, 63); }
  1581. body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {
  1582. background: rgb(139, 157, 138); }
  1583. body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {
  1584. background: rgb(191, 65, 57); }
  1585. body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {
  1586. background: rgb(142, 155, 73); }
  1587. body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {
  1588. background: rgb(165, 141, 119); }
  1589. body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {
  1590. background: rgb(111, 153, 173); }
  1591. body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {
  1592. background: rgb(0, 113, 158); }
  1593. .components-datetime__date .DayPickerNavigation_button__horizontalDefault {
  1594. padding: 2px 8px;
  1595. top: 20px; }
  1596. .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
  1597. color: #191e23;
  1598. border-color: #007cba;
  1599. box-shadow: 0 0 0 1px #007cba;
  1600. outline: 2px solid transparent; }
  1601. .components-datetime__date .DayPicker_weekHeader {
  1602. top: 50px; }
  1603. .components-datetime__date.is-description-visible .DayPicker,
  1604. .components-datetime__date.is-description-visible .components-datetime__date-help-button {
  1605. visibility: hidden; }
  1606. .components-datetime__time {
  1607. margin-bottom: 1em; }
  1608. .components-datetime__time fieldset {
  1609. margin-top: 0.5em;
  1610. position: relative; }
  1611. .components-datetime__time .components-datetime__time-field-am-pm fieldset {
  1612. margin-top: 0; }
  1613. .components-datetime__time .components-datetime__time-wrapper {
  1614. display: flex; }
  1615. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
  1616. display: inline-block;
  1617. padding: 0 3px 0 0;
  1618. color: #555d66; }
  1619. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {
  1620. margin-left: 8px;
  1621. margin-right: -1px;
  1622. border-radius: 3px 0 0 3px; }
  1623. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {
  1624. margin-left: -1px;
  1625. border-radius: 0 3px 3px 0; }
  1626. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button:focus,
  1627. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button:focus {
  1628. position: relative;
  1629. z-index: 1; }
  1630. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled,
  1631. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled {
  1632. background: #edeff0;
  1633. border-color: #8f98a1;
  1634. box-shadow: inset 0 2px 5px -3px #555d66; }
  1635. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled:focus,
  1636. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled:focus {
  1637. box-shadow: inset 0 2px 5px -3px #555d66, 0 0 0 1px #fff, 0 0 0 3px #007cba; }
  1638. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
  1639. /*rtl:ignore*/
  1640. direction: ltr; }
  1641. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {
  1642. font-size: 11px;
  1643. font-weight: 600; }
  1644. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
  1645. margin-right: 4px; }
  1646. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
  1647. position: relative;
  1648. z-index: 1; }
  1649. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"] {
  1650. padding: 2px;
  1651. margin-right: 4px;
  1652. text-align: center;
  1653. -moz-appearance: textfield; }
  1654. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]:focus {
  1655. position: relative;
  1656. z-index: 1; }
  1657. .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]::-webkit-inner-spin-button {
  1658. -webkit-appearance: none;
  1659. margin: 0; }
  1660. .components-datetime__time.is-12-hour .components-datetime__time-field-day input {
  1661. margin: 0 -4px 0 0 !important;
  1662. border-radius: 4px 0 0 4px !important; }
  1663. .components-datetime__time.is-12-hour .components-datetime__time-field-year input {
  1664. border-radius: 0 4px 4px 0 !important; }
  1665. .components-datetime__time-legend {
  1666. font-weight: 600;
  1667. margin-top: 0.5em; }
  1668. .components-datetime__time-legend.invisible {
  1669. position: absolute;
  1670. top: -999em;
  1671. left: -999em; }
  1672. .components-datetime__time-field-hours-input,
  1673. .components-datetime__time-field-minutes-input,
  1674. .components-datetime__time-field-day-input {
  1675. width: 35px; }
  1676. .components-datetime__time-field-year-input {
  1677. width: 55px; }
  1678. .components-datetime__time-field-month-select {
  1679. max-width: 145px; }
  1680. .components-popover .components-datetime__date {
  1681. padding-left: 4px; }
  1682. .components-popover.edit-post-post-schedule__dialog.is-bottom.is-left {
  1683. z-index: 100000; }
  1684. .components-disabled {
  1685. position: relative;
  1686. pointer-events: none; }
  1687. .components-disabled::after {
  1688. content: "";
  1689. position: absolute;
  1690. top: 0;
  1691. right: 0;
  1692. bottom: 0;
  1693. left: 0; }
  1694. .components-disabled * {
  1695. pointer-events: none; }
  1696. body.is-dragging-components-draggable {
  1697. cursor: move;
  1698. /* Fallback for IE/Edge < 14 */
  1699. cursor: grabbing !important; }
  1700. .components-draggable__invisible-drag-image {
  1701. position: fixed;
  1702. left: -1000px;
  1703. height: 50px;
  1704. width: 50px; }
  1705. .components-draggable__clone {
  1706. position: fixed;
  1707. padding: 20px;
  1708. background: transparent;
  1709. pointer-events: none;
  1710. z-index: 1000000000;
  1711. opacity: 0.8; }
  1712. .components-drop-zone {
  1713. position: absolute;
  1714. top: 0;
  1715. right: 0;
  1716. bottom: 0;
  1717. left: 0;
  1718. z-index: 40;
  1719. visibility: hidden;
  1720. opacity: 0;
  1721. transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;
  1722. border: 2px solid #0071a1;
  1723. border-radius: 2px; }
  1724. @media (prefers-reduced-motion: reduce) {
  1725. .components-drop-zone {
  1726. transition-duration: 0s; } }
  1727. .components-drop-zone.is-active {
  1728. opacity: 1;
  1729. visibility: visible;
  1730. transition: 0.3s opacity, 0.3s background-color; }
  1731. @media (prefers-reduced-motion: reduce) {
  1732. .components-drop-zone.is-active {
  1733. transition-duration: 0s; } }
  1734. .components-drop-zone.is-dragging-over-element {
  1735. background-color: rgba(0, 113, 161, 0.8); }
  1736. .components-drop-zone__content {
  1737. position: absolute;
  1738. top: 50%;
  1739. left: 0;
  1740. right: 0;
  1741. z-index: 50;
  1742. transform: translateY(-50%);
  1743. width: 100%;
  1744. text-align: center;
  1745. color: #fff;
  1746. transition: transform 0.2s ease-in-out; }
  1747. @media (prefers-reduced-motion: reduce) {
  1748. .components-drop-zone__content {
  1749. transition-duration: 0s; } }
  1750. .components-drop-zone.is-dragging-over-element .components-drop-zone__content {
  1751. transform: translateY(-50%) scale(1.05); }
  1752. .components-drop-zone__content-icon,
  1753. .components-drop-zone__content-text {
  1754. display: block; }
  1755. .components-drop-zone__content-icon {
  1756. margin: 0 auto;
  1757. line-height: 0; }
  1758. .components-drop-zone__content-text {
  1759. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  1760. .components-drop-zone__provider {
  1761. height: 100%; }
  1762. .components-dropdown-menu {
  1763. padding: 3px;
  1764. display: flex; }
  1765. .components-dropdown-menu .components-dropdown-menu__toggle {
  1766. width: auto;
  1767. margin: 0;
  1768. padding: 4px;
  1769. border: 1px solid transparent;
  1770. display: flex;
  1771. flex-direction: row; }
  1772. .components-dropdown-menu .components-dropdown-menu__toggle.is-active, .components-dropdown-menu .components-dropdown-menu__toggle.is-active:hover {
  1773. box-shadow: none;
  1774. background-color: #555d66;
  1775. color: #fff; }
  1776. .components-dropdown-menu .components-dropdown-menu__toggle:focus::before {
  1777. top: -3px;
  1778. right: -3px;
  1779. bottom: -3px;
  1780. left: -3px; }
  1781. .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 {
  1782. color: #555d66;
  1783. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  1784. .components-dropdown-menu .components-dropdown-menu__toggle .components-dropdown-menu__indicator::after {
  1785. content: "";
  1786. pointer-events: none;
  1787. display: block;
  1788. width: 0;
  1789. height: 0;
  1790. border-left: 3px solid transparent;
  1791. border-right: 3px solid transparent;
  1792. border-top: 5px solid;
  1793. margin-left: 4px;
  1794. margin-right: 2px; }
  1795. .components-dropdown-menu__popover .components-popover__content {
  1796. width: 200px; }
  1797. .components-dropdown-menu__menu {
  1798. width: 100%;
  1799. padding: 7px 0;
  1800. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1801. font-size: 13px;
  1802. line-height: 1.4; }
  1803. .components-dropdown-menu__menu .components-dropdown-menu__menu-item,
  1804. .components-dropdown-menu__menu .components-menu-item {
  1805. width: 100%;
  1806. padding: 6px;
  1807. outline: none;
  1808. cursor: pointer;
  1809. margin-bottom: 4px; }
  1810. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
  1811. .components-dropdown-menu__menu .components-menu-item.has-separator {
  1812. margin-top: 6px;
  1813. position: relative;
  1814. overflow: visible; }
  1815. .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
  1816. .components-dropdown-menu__menu .components-menu-item.has-separator::before {
  1817. display: block;
  1818. content: "";
  1819. box-sizing: content-box;
  1820. background-color: #e2e4e7;
  1821. position: absolute;
  1822. top: -3px;
  1823. left: 0;
  1824. right: 0;
  1825. height: 1px; }
  1826. .components-dropdown-menu__menu .components-dropdown-menu__menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default),
  1827. .components-dropdown-menu__menu .components-menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
  1828. color: #191e23;
  1829. border: none;
  1830. box-shadow: none;
  1831. outline-offset: -2px;
  1832. outline: 1px dotted #555d66; }
  1833. .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,
  1834. .components-dropdown-menu__menu .components-menu-item:hover,
  1835. .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  1836. color: #191e23;
  1837. border: none;
  1838. box-shadow: none;
  1839. background: #f3f4f5; }
  1840. .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,
  1841. .components-dropdown-menu__menu .components-menu-item > svg {
  1842. border-radius: 4px;
  1843. padding: 2px;
  1844. width: 24px;
  1845. height: 24px;
  1846. margin: -1px 8px -1px 0; }
  1847. .components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg,
  1848. .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg {
  1849. outline: none;
  1850. color: #fff;
  1851. box-shadow: none;
  1852. background: #555d66; }
  1853. .components-dropdown-menu__menu .components-menu-group:not(:last-child) {
  1854. border-bottom: 1px solid #e2e4e7; }
  1855. .components-dropdown-menu__menu .components-menu-item__button,
  1856. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button {
  1857. padding-left: 2rem; }
  1858. .components-dropdown-menu__menu .components-menu-item__button.has-icon,
  1859. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button.has-icon {
  1860. padding-left: 0.5rem; }
  1861. .components-dropdown-menu__menu .components-menu-item__button .dashicon,
  1862. .components-dropdown-menu__menu .components-menu-item__button.components-icon-button .dashicon {
  1863. margin-right: 4px; }
  1864. .components-external-link__icon {
  1865. width: 1.4em;
  1866. height: 1.4em;
  1867. margin: -0.2em 0.1em 0;
  1868. vertical-align: middle; }
  1869. .components-focal-point-picker-wrapper {
  1870. background-color: transparent;
  1871. border: 1px solid #e2e4e7;
  1872. height: 200px;
  1873. width: 100%;
  1874. padding: 14px; }
  1875. .components-focal-point-picker {
  1876. align-items: center;
  1877. cursor: pointer;
  1878. display: flex;
  1879. height: 100%;
  1880. justify-content: center;
  1881. position: relative;
  1882. width: 100%; }
  1883. .components-focal-point-picker img {
  1884. height: auto;
  1885. max-height: 100%;
  1886. max-width: 100%;
  1887. width: auto;
  1888. -webkit-user-select: none;
  1889. -moz-user-select: none;
  1890. -ms-user-select: none;
  1891. user-select: none; }
  1892. .components-focal-point-picker__icon_container {
  1893. background-color: transparent;
  1894. cursor: grab;
  1895. height: 30px;
  1896. opacity: 0.8;
  1897. position: absolute;
  1898. will-change: transform;
  1899. width: 30px;
  1900. z-index: 10000; }
  1901. .components-focal-point-picker__icon_container.is-dragging {
  1902. cursor: grabbing; }
  1903. .components-focal-point-picker__icon {
  1904. display: block;
  1905. height: 100%;
  1906. left: -15px;
  1907. position: absolute;
  1908. top: -15px;
  1909. width: 100%; }
  1910. .components-focal-point-picker__icon .components-focal-point-picker__icon-outline {
  1911. fill: #fff; }
  1912. .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1913. fill: #0085ba; }
  1914. body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1915. fill: #d1864a; }
  1916. body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1917. fill: #a3b9a2; }
  1918. body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1919. fill: #e14d43; }
  1920. body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1921. fill: #a7b656; }
  1922. body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1923. fill: #c2a68c; }
  1924. body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1925. fill: #82b4cb; }
  1926. body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
  1927. fill: #0085ba; }
  1928. .components-focal-point-picker_position-display-container {
  1929. margin: 1em 0;
  1930. display: flex; }
  1931. .components-focal-point-picker_position-display-container .components-base-control__field {
  1932. margin: 0 1em 0 0; }
  1933. .components-focal-point-picker_position-display-container input[type="number"].components-text-control__input {
  1934. max-width: 4em;
  1935. padding: 6px 4px; }
  1936. .components-focal-point-picker_position-display-container span {
  1937. margin: 0 0 0 0.2em; }
  1938. .components-font-size-picker__controls {
  1939. max-width: 248px;
  1940. display: flex;
  1941. justify-content: space-between;
  1942. align-items: center;
  1943. margin-bottom: 24px; }
  1944. .components-font-size-picker__controls .components-range-control__number {
  1945. height: 30px;
  1946. margin-left: 0; }
  1947. .components-font-size-picker__controls .components-range-control__number[value=""] + .components-button {
  1948. cursor: default;
  1949. opacity: 0.3;
  1950. pointer-events: none; }
  1951. .components-font-size-picker__select.components-font-size-picker__select.components-font-size-picker__select.components-font-size-picker__select,
  1952. .components-font-size-picker__select .components-base-control__field {
  1953. margin-bottom: 0; }
  1954. .components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
  1955. width: 30px;
  1956. height: 30px; }
  1957. .components-form-file-upload .components-button.is-large {
  1958. padding-left: 6px; }
  1959. .components-form-toggle {
  1960. position: relative;
  1961. display: inline-block; }
  1962. .components-form-toggle .components-form-toggle__on,
  1963. .components-form-toggle .components-form-toggle__off {
  1964. position: absolute;
  1965. top: 6px;
  1966. box-sizing: border-box; }
  1967. .components-form-toggle .components-form-toggle__off {
  1968. color: #6c7781;
  1969. fill: currentColor;
  1970. right: 6px; }
  1971. .components-form-toggle .components-form-toggle__on {
  1972. left: 8px; }
  1973. .components-form-toggle .components-form-toggle__track {
  1974. content: "";
  1975. display: inline-block;
  1976. box-sizing: border-box;
  1977. vertical-align: top;
  1978. background-color: #fff;
  1979. border: 2px solid #6c7781;
  1980. width: 36px;
  1981. height: 18px;
  1982. border-radius: 9px;
  1983. transition: 0.2s background ease; }
  1984. @media (prefers-reduced-motion: reduce) {
  1985. .components-form-toggle .components-form-toggle__track {
  1986. transition-duration: 0s; } }
  1987. .components-form-toggle .components-form-toggle__thumb {
  1988. display: block;
  1989. position: absolute;
  1990. box-sizing: border-box;
  1991. top: 4px;
  1992. left: 4px;
  1993. width: 10px;
  1994. height: 10px;
  1995. border-radius: 50%;
  1996. transition: 0.1s transform ease;
  1997. background-color: #6c7781;
  1998. border: 5px solid #6c7781; }
  1999. @media (prefers-reduced-motion: reduce) {
  2000. .components-form-toggle .components-form-toggle__thumb {
  2001. transition-duration: 0s; } }
  2002. .components-form-toggle:hover .components-form-toggle__track {
  2003. border: 2px solid #555d66; }
  2004. .components-form-toggle:hover .components-form-toggle__thumb {
  2005. background-color: #555d66;
  2006. border: 5px solid #6c7781; }
  2007. .components-form-toggle:hover .components-form-toggle__off {
  2008. color: #555d66; }
  2009. .components-form-toggle.is-checked .components-form-toggle__track {
  2010. background-color: #11a0d2;
  2011. border: 2px solid #11a0d2;
  2012. border: 9px solid transparent; }
  2013. body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {
  2014. background-color: #c8b03c;
  2015. border: 2px solid #c8b03c; }
  2016. body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {
  2017. background-color: #a3b9a2;
  2018. border: 2px solid #a3b9a2; }
  2019. body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {
  2020. background-color: #77a6b9;
  2021. border: 2px solid #77a6b9; }
  2022. body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {
  2023. background-color: #a7b656;
  2024. border: 2px solid #a7b656; }
  2025. body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {
  2026. background-color: #c2a68c;
  2027. border: 2px solid #c2a68c; }
  2028. body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {
  2029. background-color: #82b4cb;
  2030. border: 2px solid #82b4cb; }
  2031. body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {
  2032. background-color: #11a0d2;
  2033. border: 2px solid #11a0d2; }
  2034. .components-form-toggle__input:focus + .components-form-toggle__track {
  2035. box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;
  2036. outline: 2px solid transparent;
  2037. outline-offset: 2px; }
  2038. .components-form-toggle.is-checked .components-form-toggle__thumb {
  2039. background-color: #fff;
  2040. border-width: 0;
  2041. transform: translateX(18px); }
  2042. .components-form-toggle.is-checked::before {
  2043. background-color: #11a0d2;
  2044. border: 2px solid #11a0d2; }
  2045. body.admin-color-sunrise .components-form-toggle.is-checked::before {
  2046. background-color: #c8b03c;
  2047. border: 2px solid #c8b03c; }
  2048. body.admin-color-ocean .components-form-toggle.is-checked::before {
  2049. background-color: #a3b9a2;
  2050. border: 2px solid #a3b9a2; }
  2051. body.admin-color-midnight .components-form-toggle.is-checked::before {
  2052. background-color: #77a6b9;
  2053. border: 2px solid #77a6b9; }
  2054. body.admin-color-ectoplasm .components-form-toggle.is-checked::before {
  2055. background-color: #a7b656;
  2056. border: 2px solid #a7b656; }
  2057. body.admin-color-coffee .components-form-toggle.is-checked::before {
  2058. background-color: #c2a68c;
  2059. border: 2px solid #c2a68c; }
  2060. body.admin-color-blue .components-form-toggle.is-checked::before {
  2061. background-color: #82b4cb;
  2062. border: 2px solid #82b4cb; }
  2063. body.admin-color-light .components-form-toggle.is-checked::before {
  2064. background-color: #11a0d2;
  2065. border: 2px solid #11a0d2; }
  2066. .components-disabled .components-form-toggle {
  2067. opacity: 0.3; }
  2068. .components-form-toggle input.components-form-toggle__input[type="checkbox"] {
  2069. position: absolute;
  2070. top: 0;
  2071. left: 0;
  2072. width: 100%;
  2073. height: 100%;
  2074. opacity: 0;
  2075. margin: 0;
  2076. padding: 0;
  2077. z-index: 1;
  2078. border: none; }
  2079. .components-form-toggle input.components-form-toggle__input[type="checkbox"]:checked {
  2080. background: none; }
  2081. .components-form-toggle input.components-form-toggle__input[type="checkbox"]::before {
  2082. content: ""; }
  2083. .components-form-toggle .components-form-toggle__on {
  2084. outline: 1px solid transparent;
  2085. outline-offset: -1px;
  2086. border: 1px solid #000;
  2087. filter: invert(100%) contrast(500%); }
  2088. @supports (-ms-high-contrast-adjust: auto) {
  2089. .components-form-toggle .components-form-toggle__on {
  2090. filter: none;
  2091. border: 1px solid #fff; } }
  2092. .components-form-token-field__input-container {
  2093. display: flex;
  2094. flex-wrap: wrap;
  2095. align-items: flex-start;
  2096. width: 100%;
  2097. margin: 0 0 8px 0;
  2098. padding: 4px;
  2099. background-color: #fff;
  2100. border: 1px solid #ccd0d4;
  2101. color: #32373c;
  2102. cursor: text;
  2103. box-shadow: 0 0 0 transparent;
  2104. transition: box-shadow 0.1s linear;
  2105. border-radius: 4px;
  2106. border: 1px solid #7e8993; }
  2107. @media (prefers-reduced-motion: reduce) {
  2108. .components-form-token-field__input-container {
  2109. transition-duration: 0s; } }
  2110. .components-form-token-field__input-container.is-disabled {
  2111. background: #e2e4e7;
  2112. border-color: #ccd0d4; }
  2113. .components-form-token-field__input-container.is-active {
  2114. color: #191e23;
  2115. border-color: #007cba;
  2116. box-shadow: 0 0 0 1px #007cba;
  2117. outline: 2px solid transparent; }
  2118. .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
  2119. display: inline-block;
  2120. width: 100%;
  2121. max-width: 100%;
  2122. margin: 2px 0 2px 8px;
  2123. padding: 0;
  2124. min-height: 24px;
  2125. background: inherit;
  2126. border: 0;
  2127. color: #23282d;
  2128. box-shadow: none; }
  2129. .components-form-token-field__input-container input[type="text"].components-form-token-field__input:focus,
  2130. .components-form-token-field.is-active .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
  2131. outline: none;
  2132. box-shadow: none; }
  2133. .components-form-token-field__input-container .components-form-token-field__token + input[type="text"].components-form-token-field__input {
  2134. width: auto; }
  2135. .components-form-token-field__label {
  2136. display: inline-block;
  2137. margin-bottom: 4px; }
  2138. .components-form-token-field__help {
  2139. font-style: italic; }
  2140. .components-form-token-field__token {
  2141. font-size: 13px;
  2142. display: flex;
  2143. margin: 2px 4px 2px 0;
  2144. color: #32373c;
  2145. overflow: hidden; }
  2146. .components-form-token-field__token.is-success .components-form-token-field__token-text,
  2147. .components-form-token-field__token.is-success .components-form-token-field__remove-token {
  2148. background: #4ab866; }
  2149. .components-form-token-field__token.is-error .components-form-token-field__token-text,
  2150. .components-form-token-field__token.is-error .components-form-token-field__remove-token {
  2151. background: #d94f4f; }
  2152. .components-form-token-field__token.is-validating .components-form-token-field__token-text,
  2153. .components-form-token-field__token.is-validating .components-form-token-field__remove-token {
  2154. color: #555d66; }
  2155. .components-form-token-field__token.is-borderless {
  2156. position: relative;
  2157. padding: 0 16px 0 0; }
  2158. .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2159. background: transparent;
  2160. color: #11a0d2; }
  2161. body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2162. color: #c8b03c; }
  2163. body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2164. color: #a89d8a; }
  2165. body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2166. color: #77a6b9; }
  2167. body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2168. color: #c77430; }
  2169. body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2170. color: #9fa47b; }
  2171. body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2172. color: #d9ab59; }
  2173. body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  2174. color: #c75726; }
  2175. .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
  2176. background: transparent;
  2177. color: #555d66;
  2178. position: absolute;
  2179. top: 1px;
  2180. right: 0; }
  2181. .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
  2182. color: #4ab866; }
  2183. .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
  2184. color: #d94f4f;
  2185. border-radius: 4px 0 0 4px;
  2186. padding: 0 4px 0 6px; }
  2187. .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
  2188. color: #23282d; }
  2189. .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
  2190. cursor: default; }
  2191. .components-form-token-field__token-text,
  2192. .components-form-token-field__remove-token.components-icon-button {
  2193. display: inline-block;
  2194. line-height: 24px;
  2195. background: #e2e4e7;
  2196. transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }
  2197. @media (prefers-reduced-motion: reduce) {
  2198. .components-form-token-field__token-text,
  2199. .components-form-token-field__remove-token.components-icon-button {
  2200. transition-duration: 0s;
  2201. animation-duration: 1ms; } }
  2202. .components-form-token-field__token-text {
  2203. border-radius: 12px 0 0 12px;
  2204. padding: 0 4px 0 8px;
  2205. white-space: nowrap;
  2206. overflow: hidden;
  2207. text-overflow: ellipsis; }
  2208. .components-form-token-field__remove-token.components-icon-button {
  2209. cursor: pointer;
  2210. border-radius: 0 12px 12px 0;
  2211. padding: 0 2px;
  2212. color: #555d66;
  2213. line-height: 10px;
  2214. overflow: initial; }
  2215. .components-form-token-field__remove-token.components-icon-button:hover {
  2216. color: #32373c; }
  2217. .components-form-token-field__suggestions-list {
  2218. flex: 1 0 100%;
  2219. min-width: 100%;
  2220. max-height: 9em;
  2221. overflow-y: scroll;
  2222. transition: all 0.15s ease-in-out;
  2223. list-style: none;
  2224. border-top: 1px solid #6c7781;
  2225. margin: 4px -4px -4px;
  2226. padding-top: 3px; }
  2227. @media (prefers-reduced-motion: reduce) {
  2228. .components-form-token-field__suggestions-list {
  2229. transition-duration: 0s; } }
  2230. .components-form-token-field__suggestion {
  2231. color: #555d66;
  2232. display: block;
  2233. font-size: 13px;
  2234. padding: 4px 8px;
  2235. cursor: pointer; }
  2236. .components-form-token-field__suggestion.is-selected {
  2237. background: #0071a1;
  2238. color: #fff; }
  2239. .components-form-token-field__suggestion-match {
  2240. text-decoration: underline; }
  2241. .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
  2242. content: "";
  2243. position: absolute;
  2244. top: 0;
  2245. bottom: 0;
  2246. left: 0;
  2247. right: 0;
  2248. pointer-events: none;
  2249. outline: 4px solid transparent;
  2250. box-shadow: inset 0 0 0 4px #33b3db; }
  2251. @supports (outline-offset: 1px) {
  2252. .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
  2253. content: none; }
  2254. .components-navigate-regions.is-focusing-regions [role="region"]:focus {
  2255. outline-style: solid;
  2256. outline-color: #33b3db;
  2257. outline-width: 4px;
  2258. outline-offset: -4px; } }
  2259. .components-icon-button {
  2260. display: flex;
  2261. align-items: center;
  2262. padding: 8px;
  2263. margin: 0;
  2264. border: none;
  2265. background: none;
  2266. color: #555d66;
  2267. position: relative;
  2268. overflow: hidden;
  2269. border-radius: 4px; }
  2270. .components-icon-button .dashicon {
  2271. display: inline-block;
  2272. flex: 0 0 auto; }
  2273. .components-icon-button svg {
  2274. fill: currentColor;
  2275. outline: none; }
  2276. .components-icon-button.has-text svg {
  2277. margin-right: 4px; }
  2278. .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2279. background-color: #fff;
  2280. color: #191e23;
  2281. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  2282. .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):active {
  2283. outline: none;
  2284. background-color: #fff;
  2285. color: #191e23;
  2286. box-shadow: inset 0 0 0 1px #ccd0d4, inset 0 0 0 2px #fff; }
  2287. .components-icon-button[aria-disabled="true"]:focus, .components-icon-button:disabled:focus {
  2288. box-shadow: none; }
  2289. .components-menu-group {
  2290. width: 100%;
  2291. padding: 7px 0; }
  2292. .components-menu-group__label {
  2293. margin-bottom: 8px;
  2294. color: #6c7781;
  2295. padding: 0 7px; }
  2296. .components-menu-item__button,
  2297. .components-menu-item__button.components-icon-button {
  2298. width: 100%;
  2299. padding: 8px 15px;
  2300. text-align: left;
  2301. color: #40464d;
  2302. border: none;
  2303. box-shadow: none; }
  2304. .components-menu-item__button .dashicon,
  2305. .components-menu-item__button .components-menu-items__item-icon,
  2306. .components-menu-item__button > span > svg,
  2307. .components-menu-item__button.components-icon-button .dashicon,
  2308. .components-menu-item__button.components-icon-button .components-menu-items__item-icon,
  2309. .components-menu-item__button.components-icon-button > span > svg {
  2310. margin-right: 5px; }
  2311. .components-menu-item__button .components-menu-items__item-icon,
  2312. .components-menu-item__button.components-icon-button .components-menu-items__item-icon {
  2313. display: inline-block;
  2314. flex: 0 0 auto; }
  2315. .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]),
  2316. .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) {
  2317. color: #191e23;
  2318. border: none;
  2319. box-shadow: none;
  2320. background: #f3f4f5; }
  2321. .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut,
  2322. .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut {
  2323. color: #40464d; }
  2324. .components-menu-item__button:focus:not(:disabled):not([aria-disabled="true"]),
  2325. .components-menu-item__button.components-icon-button:focus:not(:disabled):not([aria-disabled="true"]) {
  2326. color: #191e23;
  2327. border: none;
  2328. box-shadow: none;
  2329. outline-offset: -2px;
  2330. outline: 1px dotted #555d66; }
  2331. .components-menu-item__info-wrapper {
  2332. display: flex;
  2333. flex-direction: column; }
  2334. .components-menu-item__info {
  2335. margin-top: 4px;
  2336. font-size: 12px;
  2337. color: #6c7781; }
  2338. .components-menu-item__shortcut {
  2339. -ms-grid-row-align: center;
  2340. align-self: center;
  2341. color: #6c7781;
  2342. margin-right: 0;
  2343. margin-left: auto;
  2344. padding-left: 8px;
  2345. display: none; }
  2346. @media (min-width: 480px) {
  2347. .components-menu-item__shortcut {
  2348. display: inline; } }
  2349. .components-modal__screen-overlay {
  2350. position: fixed;
  2351. top: 0;
  2352. right: 0;
  2353. bottom: 0;
  2354. left: 0;
  2355. background-color: rgba(0, 0, 0, 0.7);
  2356. z-index: 100000;
  2357. animation: edit-post__fade-in-animation 0.2s ease-out 0s;
  2358. animation-fill-mode: forwards; }
  2359. @media (prefers-reduced-motion: reduce) {
  2360. .components-modal__screen-overlay {
  2361. animation-duration: 1ms; } }
  2362. .components-modal__frame {
  2363. position: absolute;
  2364. top: 0;
  2365. right: 0;
  2366. bottom: 0;
  2367. left: 0;
  2368. box-sizing: border-box;
  2369. margin: 0;
  2370. border: 1px solid #e2e4e7;
  2371. background: #fff;
  2372. box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);
  2373. overflow: auto; }
  2374. @media (min-width: 600px) {
  2375. .components-modal__frame {
  2376. top: 50%;
  2377. right: auto;
  2378. bottom: auto;
  2379. left: 50%;
  2380. min-width: 360px;
  2381. max-width: calc(100% - 16px - 16px);
  2382. max-height: calc(100% - 56px - 56px);
  2383. transform: translate(-50%, -50%);
  2384. animation: components-modal__appear-animation 0.1s ease-out;
  2385. animation-fill-mode: forwards; } }
  2386. @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
  2387. .components-modal__frame {
  2388. animation-duration: 1ms; } }
  2389. @keyframes components-modal__appear-animation {
  2390. from {
  2391. margin-top: 32px; }
  2392. to {
  2393. margin-top: 0; } }
  2394. .components-modal__header {
  2395. box-sizing: border-box;
  2396. border-bottom: 1px solid #e2e4e7;
  2397. padding: 0 24px;
  2398. display: flex;
  2399. flex-direction: row;
  2400. justify-content: space-between;
  2401. background: #fff;
  2402. align-items: center;
  2403. height: 56px;
  2404. position: -webkit-sticky;
  2405. position: sticky;
  2406. top: 0;
  2407. z-index: 10;
  2408. margin: 0 -24px 24px; }
  2409. @supports (-ms-ime-align: auto) {
  2410. .components-modal__header {
  2411. position: fixed;
  2412. width: 100%; } }
  2413. .components-modal__header .components-modal__header-heading {
  2414. font-size: 1rem;
  2415. font-weight: 600; }
  2416. .components-modal__header h1 {
  2417. line-height: 1;
  2418. margin: 0; }
  2419. .components-modal__header .components-icon-button {
  2420. position: relative;
  2421. left: 8px; }
  2422. .components-modal__header-heading-container {
  2423. align-items: center;
  2424. flex-grow: 1;
  2425. display: flex;
  2426. flex-direction: row;
  2427. justify-content: left; }
  2428. .components-modal__header-icon-container {
  2429. display: inline-block; }
  2430. .components-modal__header-icon-container svg {
  2431. max-width: 36px;
  2432. max-height: 36px;
  2433. padding: 8px; }
  2434. .components-modal__content {
  2435. box-sizing: border-box;
  2436. height: 100%;
  2437. padding: 0 24px 24px; }
  2438. @supports (-ms-ime-align: auto) {
  2439. .components-modal__content {
  2440. padding-top: 56px; } }
  2441. .components-notice {
  2442. display: flex;
  2443. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2444. font-size: 13px;
  2445. background-color: #e5f5fa;
  2446. border-left: 4px solid #00a0d2;
  2447. margin: 5px 15px 2px;
  2448. padding: 8px 12px;
  2449. align-items: center; }
  2450. .components-notice.is-dismissible {
  2451. padding-right: 36px;
  2452. position: relative; }
  2453. .components-notice.is-success {
  2454. border-left-color: #4ab866;
  2455. background-color: #eff9f1; }
  2456. .components-notice.is-warning {
  2457. border-left-color: #f0b849;
  2458. background-color: #fef8ee; }
  2459. .components-notice.is-error {
  2460. border-left-color: #d94f4f;
  2461. background-color: #f9e2e2; }
  2462. .components-notice__content {
  2463. flex-grow: 1;
  2464. margin: 4px 25px 4px 0; }
  2465. .components-notice__action.components-button, .components-notice__action.components-button.is-link {
  2466. margin-left: 4px; }
  2467. .components-notice__action.components-button.is-default {
  2468. vertical-align: initial; }
  2469. .components-notice__dismiss {
  2470. color: #6c7781;
  2471. align-self: flex-start;
  2472. flex-shrink: 0; }
  2473. .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 {
  2474. color: #191e23;
  2475. background-color: transparent; }
  2476. .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2477. box-shadow: none; }
  2478. .components-notice-list {
  2479. max-width: 100vw;
  2480. box-sizing: border-box;
  2481. z-index: 29; }
  2482. .components-notice-list .components-notice__content {
  2483. margin-top: 12px;
  2484. margin-bottom: 12px;
  2485. line-height: 1.6; }
  2486. .components-notice-list .components-notice__action.components-button {
  2487. margin-top: -2px;
  2488. margin-bottom: -2px; }
  2489. .components-panel {
  2490. background: #fff;
  2491. border: 1px solid #e2e4e7; }
  2492. .components-panel > .components-panel__header:first-child,
  2493. .components-panel > .components-panel__body:first-child {
  2494. margin-top: -1px; }
  2495. .components-panel > .components-panel__header:last-child,
  2496. .components-panel > .components-panel__body:last-child {
  2497. border-bottom-width: 0; }
  2498. .components-panel + .components-panel {
  2499. margin-top: -1px; }
  2500. .components-panel__body {
  2501. border-top: 1px solid #e2e4e7;
  2502. border-bottom: 1px solid #e2e4e7; }
  2503. .components-panel__body h3 {
  2504. margin: 0 0 0.5em; }
  2505. .components-panel__body.is-opened {
  2506. padding: 16px; }
  2507. .components-panel__body > .components-icon-button {
  2508. color: #191e23; }
  2509. .components-panel__header {
  2510. display: flex;
  2511. justify-content: space-between;
  2512. align-items: center;
  2513. padding: 0 16px;
  2514. height: 50px;
  2515. border-top: 1px solid #e2e4e7;
  2516. border-bottom: 1px solid #e2e4e7; }
  2517. .components-panel__header h2 {
  2518. margin: 0;
  2519. font-size: inherit;
  2520. color: inherit; }
  2521. .components-panel__body + .components-panel__body,
  2522. .components-panel__body + .components-panel__header,
  2523. .components-panel__header + .components-panel__body,
  2524. .components-panel__header + .components-panel__header {
  2525. margin-top: -1px; }
  2526. .components-panel__body > .components-panel__body-title {
  2527. display: block;
  2528. padding: 0;
  2529. font-size: inherit;
  2530. margin-top: 0;
  2531. margin-bottom: 0;
  2532. transition: 0.1s background ease-in-out; }
  2533. @media (prefers-reduced-motion: reduce) {
  2534. .components-panel__body > .components-panel__body-title {
  2535. transition-duration: 0s; } }
  2536. .components-panel__body.is-opened > .components-panel__body-title {
  2537. margin: -16px;
  2538. margin-bottom: 5px; }
  2539. .components-panel__body > .components-panel__body-title:hover,
  2540. .edit-post-last-revision__panel > .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  2541. background: #f3f4f5; }
  2542. .components-panel__body-toggle.components-button {
  2543. position: relative;
  2544. padding: 15px;
  2545. outline: none;
  2546. width: 100%;
  2547. font-weight: 600;
  2548. text-align: left;
  2549. color: #191e23;
  2550. border: none;
  2551. box-shadow: none;
  2552. transition: 0.1s background ease-in-out;
  2553. /* rtl:begin:ignore */
  2554. /* rtl:end:ignore */ }
  2555. @media (prefers-reduced-motion: reduce) {
  2556. .components-panel__body-toggle.components-button {
  2557. transition-duration: 0s; } }
  2558. .components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled="true"]) {
  2559. color: #191e23;
  2560. border: none;
  2561. box-shadow: none;
  2562. outline-offset: -2px;
  2563. outline: 1px dotted #555d66; }
  2564. .components-panel__body-toggle.components-button .components-panel__arrow {
  2565. position: absolute;
  2566. right: 10px;
  2567. top: 50%;
  2568. transform: translateY(-50%);
  2569. color: #191e23;
  2570. fill: currentColor;
  2571. transition: 0.1s color ease-in-out; }
  2572. @media (prefers-reduced-motion: reduce) {
  2573. .components-panel__body-toggle.components-button .components-panel__arrow {
  2574. transition-duration: 0s; } }
  2575. body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
  2576. transform: scaleX(-1);
  2577. -ms-filter: fliph;
  2578. filter: FlipH;
  2579. margin-top: -10px; }
  2580. .components-panel__icon {
  2581. color: #555d66;
  2582. margin: -2px 0 -2px 6px; }
  2583. .components-panel__body-toggle-icon {
  2584. margin-right: -5px; }
  2585. .components-panel__color-title {
  2586. float: left;
  2587. height: 19px; }
  2588. .components-panel__row {
  2589. display: flex;
  2590. justify-content: space-between;
  2591. align-items: center;
  2592. margin-top: 20px; }
  2593. .components-panel__row select {
  2594. min-width: 0; }
  2595. .components-panel__row label {
  2596. margin-right: 10px;
  2597. flex-shrink: 0;
  2598. max-width: 75%; }
  2599. .components-panel__row:empty, .components-panel__row:first-of-type {
  2600. margin-top: 0; }
  2601. .components-panel .circle-picker {
  2602. padding-bottom: 20px; }
  2603. .components-placeholder {
  2604. margin-bottom: 28px;
  2605. padding: 1em;
  2606. min-height: 200px;
  2607. width: 100%;
  2608. text-align: center;
  2609. background: rgba(139, 139, 150, 0.1); }
  2610. @supports ((position: -webkit-sticky) or (position: sticky)) {
  2611. .components-placeholder {
  2612. display: flex;
  2613. flex-direction: column;
  2614. align-items: center;
  2615. justify-content: center; } }
  2616. .is-dark-theme .components-placeholder {
  2617. background: rgba(255, 255, 255, 0.15); }
  2618. .components-placeholder__instructions,
  2619. .components-placeholder__label,
  2620. .components-placeholder__fieldset {
  2621. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2622. font-size: 13px; }
  2623. .components-placeholder__label {
  2624. display: flex;
  2625. align-items: center;
  2626. justify-content: center;
  2627. font-weight: 600;
  2628. margin-bottom: 1em; }
  2629. .components-placeholder__label .dashicon,
  2630. .components-placeholder__label .block-editor-block-icon {
  2631. fill: currentColor;
  2632. margin-right: 1ch; }
  2633. .components-placeholder__fieldset,
  2634. .components-placeholder__fieldset form {
  2635. display: flex;
  2636. flex-direction: row;
  2637. justify-content: center;
  2638. width: 100%;
  2639. max-width: 400px;
  2640. flex-wrap: wrap;
  2641. z-index: 1; }
  2642. .components-placeholder__fieldset p,
  2643. .components-placeholder__fieldset form p {
  2644. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2645. font-size: 13px; }
  2646. .components-placeholder__fieldset.is-column-layout,
  2647. .components-placeholder__fieldset.is-column-layout form {
  2648. flex-direction: column; }
  2649. .components-placeholder__input {
  2650. margin-top: 0;
  2651. margin-right: 8px;
  2652. flex: 1 1 auto; }
  2653. .components-placeholder__instructions {
  2654. margin-bottom: 1em; }
  2655. .components-placeholder__preview img {
  2656. margin: 3%;
  2657. width: 50%; }
  2658. /*!rtl:begin:ignore*/
  2659. .components-popover {
  2660. position: fixed;
  2661. z-index: 1000000;
  2662. left: 50%; }
  2663. .components-popover.is-mobile {
  2664. top: 0;
  2665. left: 0;
  2666. right: 0;
  2667. bottom: 0; }
  2668. .components-popover:not(.is-without-arrow):not(.is-mobile) {
  2669. margin-left: 2px; }
  2670. .components-popover:not(.is-without-arrow):not(.is-mobile)::before {
  2671. border: 8px solid #e2e4e7; }
  2672. .components-popover:not(.is-without-arrow):not(.is-mobile)::after {
  2673. border: 8px solid #fff; }
  2674. .components-popover:not(.is-without-arrow):not(.is-mobile)::before, .components-popover:not(.is-without-arrow):not(.is-mobile)::after {
  2675. content: "";
  2676. position: absolute;
  2677. height: 0;
  2678. width: 0;
  2679. line-height: 0; }
  2680. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top {
  2681. margin-top: -8px; }
  2682. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before {
  2683. bottom: -8px; }
  2684. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
  2685. bottom: -6px; }
  2686. .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-top::after {
  2687. border-bottom: none;
  2688. border-left-color: transparent;
  2689. border-right-color: transparent;
  2690. border-top-style: solid;
  2691. margin-left: -10px; }
  2692. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom {
  2693. margin-top: 8px; }
  2694. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before {
  2695. top: -8px; }
  2696. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
  2697. top: -6px; }
  2698. .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::before, .components-popover:not(.is-without-arrow):not(.is-mobile).is-bottom::after {
  2699. border-bottom-style: solid;
  2700. border-left-color: transparent;
  2701. border-right-color: transparent;
  2702. border-top: none;
  2703. margin-left: -10px; }
  2704. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left {
  2705. margin-left: -8px; }
  2706. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::before {
  2707. right: -8px; }
  2708. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-left::after {
  2709. right: -6px; }
  2710. .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 {
  2711. border-bottom-color: transparent;
  2712. border-left-style: solid;
  2713. border-right: none;
  2714. border-top-color: transparent; }
  2715. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right {
  2716. margin-left: 8px; }
  2717. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::before {
  2718. left: -8px; }
  2719. .components-popover:not(.is-without-arrow):not(.is-mobile).is-middle.is-right::after {
  2720. left: -6px; }
  2721. .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 {
  2722. border-bottom-color: transparent;
  2723. border-left: none;
  2724. border-right-style: solid;
  2725. border-top-color: transparent; }
  2726. .components-popover:not(.is-mobile).is-top {
  2727. bottom: 100%; }
  2728. .components-popover:not(.is-mobile).is-bottom {
  2729. top: 100%; }
  2730. .components-popover:not(.is-mobile).is-middle {
  2731. align-items: center;
  2732. display: flex; }
  2733. .components-popover__content {
  2734. box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1);
  2735. border: 1px solid #e2e4e7;
  2736. background: #fff;
  2737. height: 100%; }
  2738. .components-popover.is-mobile .components-popover__content {
  2739. height: calc(100% - 50px);
  2740. border-top: 0; }
  2741. .components-popover:not(.is-mobile) .components-popover__content {
  2742. position: absolute;
  2743. height: auto;
  2744. overflow-y: auto;
  2745. min-width: 260px; }
  2746. .components-popover:not(.is-mobile).is-top .components-popover__content {
  2747. bottom: 100%; }
  2748. .components-popover:not(.is-mobile).is-center .components-popover__content {
  2749. left: 50%;
  2750. transform: translateX(-50%); }
  2751. .components-popover:not(.is-mobile).is-right .components-popover__content {
  2752. position: absolute;
  2753. left: 100%; }
  2754. .components-popover:not(.is-mobile):not(.is-middle).is-right .components-popover__content {
  2755. margin-left: -24px; }
  2756. .components-popover:not(.is-mobile).is-left .components-popover__content {
  2757. position: absolute;
  2758. right: 100%; }
  2759. .components-popover:not(.is-mobile):not(.is-middle).is-left .components-popover__content {
  2760. margin-right: -24px; }
  2761. .components-popover__content > div {
  2762. height: 100%; }
  2763. .components-popover__header {
  2764. align-items: center;
  2765. background: #fff;
  2766. border: 1px solid #e2e4e7;
  2767. display: flex;
  2768. height: 50px;
  2769. justify-content: space-between;
  2770. padding: 0 8px 0 16px; }
  2771. .components-popover__header-title {
  2772. overflow: hidden;
  2773. text-overflow: ellipsis;
  2774. white-space: nowrap;
  2775. width: 100%; }
  2776. .components-popover__close.components-icon-button {
  2777. z-index: 5; }
  2778. /*!rtl:end:ignore*/
  2779. .components-radio-control {
  2780. display: flex;
  2781. flex-direction: column; }
  2782. .components-radio-control .components-base-control__help {
  2783. margin-top: 0; }
  2784. .components-radio-control__option:not(:last-child) {
  2785. margin-bottom: 4px; }
  2786. .components-radio-control__input[type="radio"] {
  2787. margin-top: 0;
  2788. margin-right: 6px; }
  2789. .components-range-control .components-base-control__field {
  2790. display: flex;
  2791. justify-content: center;
  2792. flex-wrap: wrap;
  2793. align-items: center; }
  2794. .components-range-control .dashicon {
  2795. flex-shrink: 0;
  2796. margin-right: 10px; }
  2797. .components-range-control .components-base-control__label {
  2798. width: 100%; }
  2799. .components-range-control .components-range-control__slider {
  2800. margin-left: 0;
  2801. flex: 1; }
  2802. .components-range-control__reset {
  2803. margin-left: 8px; }
  2804. .components-range-control__slider {
  2805. width: 100%;
  2806. margin-left: 8px;
  2807. padding: 0;
  2808. -webkit-appearance: none;
  2809. background: transparent;
  2810. /**
  2811. * Thumb
  2812. */
  2813. /**
  2814. * Track
  2815. */ }
  2816. .components-range-control__slider::-webkit-slider-thumb {
  2817. -webkit-appearance: none;
  2818. height: 18px;
  2819. width: 18px;
  2820. border-radius: 50%;
  2821. cursor: pointer;
  2822. background: #555d66;
  2823. border: 4px solid transparent;
  2824. background-clip: padding-box;
  2825. box-sizing: border-box;
  2826. margin-top: -7px; }
  2827. .components-range-control__slider::-moz-range-thumb {
  2828. height: 18px;
  2829. width: 18px;
  2830. border-radius: 50%;
  2831. cursor: pointer;
  2832. background: #555d66;
  2833. border: 4px solid transparent;
  2834. background-clip: padding-box;
  2835. box-sizing: border-box; }
  2836. .components-range-control__slider::-ms-thumb {
  2837. height: 18px;
  2838. width: 18px;
  2839. border-radius: 50%;
  2840. cursor: pointer;
  2841. background: #555d66;
  2842. border: 4px solid transparent;
  2843. background-clip: padding-box;
  2844. box-sizing: border-box;
  2845. margin-top: 0;
  2846. height: 14px;
  2847. width: 14px;
  2848. border: 2px solid transparent; }
  2849. .components-range-control__slider:focus {
  2850. outline: none; }
  2851. .components-range-control__slider:focus::-webkit-slider-thumb {
  2852. background-color: #fff;
  2853. color: #191e23;
  2854. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2855. outline: 2px solid transparent; }
  2856. .components-range-control__slider:focus::-moz-range-thumb {
  2857. background-color: #fff;
  2858. color: #191e23;
  2859. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2860. outline: 2px solid transparent; }
  2861. .components-range-control__slider:focus::-ms-thumb {
  2862. background-color: #fff;
  2863. color: #191e23;
  2864. box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
  2865. outline: 2px solid transparent; }
  2866. .components-range-control__slider::-webkit-slider-runnable-track {
  2867. height: 3px;
  2868. cursor: pointer;
  2869. background: #e2e4e7;
  2870. border-radius: 1.5px;
  2871. margin-top: -4px; }
  2872. .components-range-control__slider::-moz-range-track {
  2873. height: 3px;
  2874. cursor: pointer;
  2875. background: #e2e4e7;
  2876. border-radius: 1.5px; }
  2877. .components-range-control__slider::-ms-track {
  2878. margin-top: -4px;
  2879. background: transparent;
  2880. border-color: transparent;
  2881. color: transparent;
  2882. height: 3px;
  2883. cursor: pointer;
  2884. background: #e2e4e7;
  2885. border-radius: 1.5px; }
  2886. .components-range-control__number {
  2887. display: inline-block;
  2888. margin-left: 8px;
  2889. font-weight: 500;
  2890. width: 54px; }
  2891. .components-resizable-box__handle {
  2892. display: none;
  2893. width: 23px;
  2894. height: 23px; }
  2895. .components-resizable-box__container.is-selected .components-resizable-box__handle {
  2896. display: block; }
  2897. .components-resizable-box__handle::after {
  2898. display: block;
  2899. content: "";
  2900. width: 15px;
  2901. height: 15px;
  2902. border: 2px solid #fff;
  2903. border-radius: 50%;
  2904. background: #0085ba;
  2905. cursor: inherit;
  2906. position: absolute;
  2907. top: calc(50% - 8px);
  2908. right: calc(50% - 8px); }
  2909. body.admin-color-sunrise .components-resizable-box__handle::after {
  2910. background: #d1864a; }
  2911. body.admin-color-ocean .components-resizable-box__handle::after {
  2912. background: #a3b9a2; }
  2913. body.admin-color-midnight .components-resizable-box__handle::after {
  2914. background: #e14d43; }
  2915. body.admin-color-ectoplasm .components-resizable-box__handle::after {
  2916. background: #a7b656; }
  2917. body.admin-color-coffee .components-resizable-box__handle::after {
  2918. background: #c2a68c; }
  2919. body.admin-color-blue .components-resizable-box__handle::after {
  2920. background: #82b4cb; }
  2921. body.admin-color-light .components-resizable-box__handle::after {
  2922. background: #0085ba; }
  2923. .components-resizable-box__side-handle::before {
  2924. display: block;
  2925. content: "";
  2926. width: 7px;
  2927. height: 7px;
  2928. border: 2px solid #fff;
  2929. background: #0085ba;
  2930. cursor: inherit;
  2931. position: absolute;
  2932. top: calc(50% - 4px);
  2933. right: calc(50% - 4px);
  2934. transition: transform 0.1s ease-in;
  2935. opacity: 0; }
  2936. body.admin-color-sunrise .components-resizable-box__side-handle::before {
  2937. background: #d1864a; }
  2938. body.admin-color-ocean .components-resizable-box__side-handle::before {
  2939. background: #a3b9a2; }
  2940. body.admin-color-midnight .components-resizable-box__side-handle::before {
  2941. background: #e14d43; }
  2942. body.admin-color-ectoplasm .components-resizable-box__side-handle::before {
  2943. background: #a7b656; }
  2944. body.admin-color-coffee .components-resizable-box__side-handle::before {
  2945. background: #c2a68c; }
  2946. body.admin-color-blue .components-resizable-box__side-handle::before {
  2947. background: #82b4cb; }
  2948. body.admin-color-light .components-resizable-box__side-handle::before {
  2949. background: #0085ba; }
  2950. @media (prefers-reduced-motion: reduce) {
  2951. .components-resizable-box__side-handle::before {
  2952. transition-duration: 0s; } }
  2953. .is-dark-theme .components-resizable-box__side-handle::before,
  2954. .is-dark-theme .components-resizable-box__handle::after {
  2955. border-color: #d7dade; }
  2956. .components-resizable-box__side-handle {
  2957. z-index: 1; }
  2958. .components-resizable-box__corner-handle {
  2959. z-index: 2; }
  2960. .components-resizable-box__side-handle.components-resizable-box__handle-top,
  2961. .components-resizable-box__side-handle.components-resizable-box__handle-bottom,
  2962. .components-resizable-box__side-handle.components-resizable-box__handle-top::before,
  2963. .components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
  2964. width: 100%;
  2965. left: 0;
  2966. border-left: 0;
  2967. border-right: 0; }
  2968. .components-resizable-box__side-handle.components-resizable-box__handle-left,
  2969. .components-resizable-box__side-handle.components-resizable-box__handle-right,
  2970. .components-resizable-box__side-handle.components-resizable-box__handle-left::before,
  2971. .components-resizable-box__side-handle.components-resizable-box__handle-right::before {
  2972. height: 100%;
  2973. top: 0;
  2974. border-top: 0;
  2975. border-bottom: 0; }
  2976. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  2977. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  2978. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  2979. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  2980. animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
  2981. animation-fill-mode: forwards; }
  2982. @media (prefers-reduced-motion: reduce) {
  2983. .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
  2984. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
  2985. .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
  2986. .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  2987. animation-duration: 1ms; } }
  2988. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  2989. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  2990. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  2991. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  2992. animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
  2993. animation-fill-mode: forwards; }
  2994. @media (prefers-reduced-motion: reduce) {
  2995. .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
  2996. .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
  2997. .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
  2998. .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  2999. animation-duration: 1ms; } }
  3000. @keyframes components-resizable-box__top-bottom-animation {
  3001. from {
  3002. transform: scaleX(0);
  3003. opacity: 0; }
  3004. to {
  3005. transform: scaleX(1);
  3006. opacity: 1; } }
  3007. @keyframes components-resizable-box__left-right-animation {
  3008. from {
  3009. transform: scaleY(0);
  3010. opacity: 0; }
  3011. to {
  3012. transform: scaleY(1);
  3013. opacity: 1; } }
  3014. /*!rtl:begin:ignore*/
  3015. .components-resizable-box__handle-right {
  3016. right: calc(11.5px * -1); }
  3017. .components-resizable-box__handle-left {
  3018. left: calc(11.5px * -1); }
  3019. .components-resizable-box__handle-top {
  3020. top: calc(11.5px * -1); }
  3021. .components-resizable-box__handle-bottom {
  3022. bottom: calc(11.5px * -1); }
  3023. /*!rtl:end:ignore*/
  3024. .components-responsive-wrapper {
  3025. position: relative;
  3026. max-width: 100%; }
  3027. .components-responsive-wrapper,
  3028. .components-responsive-wrapper > span {
  3029. display: block; }
  3030. .components-responsive-wrapper__content {
  3031. position: absolute;
  3032. top: 0;
  3033. right: 0;
  3034. bottom: 0;
  3035. left: 0;
  3036. width: 100%;
  3037. height: 100%; }
  3038. .components-sandbox {
  3039. overflow: hidden; }
  3040. iframe.components-sandbox {
  3041. width: 100%; }
  3042. html.lockscroll,
  3043. body.lockscroll {
  3044. overflow: hidden; }
  3045. .components-select-control__input {
  3046. background: #fff;
  3047. height: 36px;
  3048. line-height: 36px;
  3049. margin: 1px;
  3050. outline: 0;
  3051. width: 100%;
  3052. -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
  3053. @media (min-width: 782px) {
  3054. .components-select-control__input {
  3055. height: 28px;
  3056. line-height: 28px; } }
  3057. @media (max-width: 782px) {
  3058. .components-base-control .components-base-control__field .components-select-control__input {
  3059. font-size: 16px; } }
  3060. .components-snackbar {
  3061. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3062. font-size: 13px;
  3063. background-color: #32373c;
  3064. border-radius: 4px;
  3065. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  3066. color: #fff;
  3067. padding: 16px 24px;
  3068. width: 100%;
  3069. max-width: 600px;
  3070. box-sizing: border-box;
  3071. cursor: pointer; }
  3072. @media (min-width: 600px) {
  3073. .components-snackbar {
  3074. width: -webkit-fit-content;
  3075. width: fit-content; } }
  3076. .components-snackbar:hover {
  3077. background-color: #191e23; }
  3078. .components-snackbar:focus {
  3079. background-color: #191e23;
  3080. box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }
  3081. .components-snackbar__action.components-button {
  3082. margin-left: 32px;
  3083. color: #fff;
  3084. height: auto;
  3085. flex-shrink: 0;
  3086. line-height: 1.4;
  3087. padding: 0; }
  3088. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
  3089. text-decoration: underline;
  3090. background-color: transparent; }
  3091. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):focus {
  3092. color: #fff;
  3093. box-shadow: none;
  3094. outline: 1px dotted #fff; }
  3095. .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  3096. color: #33b3db; }
  3097. .components-snackbar__content {
  3098. display: flex;
  3099. align-items: baseline;
  3100. justify-content: space-between;
  3101. line-height: 1.4; }
  3102. .components-snackbar-list {
  3103. position: absolute;
  3104. z-index: 100000;
  3105. width: 100%;
  3106. box-sizing: border-box; }
  3107. .components-snackbar-list__notice-container {
  3108. position: relative;
  3109. padding-top: 8px; }
  3110. .components-spinner {
  3111. display: inline-block;
  3112. background-color: #7e8993;
  3113. width: 18px;
  3114. height: 18px;
  3115. opacity: 0.7;
  3116. float: right;
  3117. margin: 5px 11px 0;
  3118. border-radius: 100%;
  3119. position: relative; }
  3120. .components-spinner::before {
  3121. /* rtl:begin:ignore */
  3122. content: "";
  3123. position: absolute;
  3124. background-color: #fff;
  3125. top: 3px;
  3126. left: 3px;
  3127. width: 4px;
  3128. height: 4px;
  3129. border-radius: 100%;
  3130. transform-origin: 6px 6px;
  3131. animation: components-spinner__animation 1s infinite linear;
  3132. /* rtl:end:ignore */ }
  3133. @keyframes components-spinner__animation {
  3134. from {
  3135. transform: rotate(0deg); }
  3136. to {
  3137. transform: rotate(360deg); } }
  3138. .components-text-control__input {
  3139. width: 100%;
  3140. padding: 6px 8px; }
  3141. .components-textarea-control__input {
  3142. width: 100%;
  3143. padding: 6px 8px; }
  3144. .components-tip {
  3145. display: flex;
  3146. color: #555d66; }
  3147. .components-tip svg {
  3148. -ms-grid-row-align: center;
  3149. align-self: center;
  3150. fill: #f0b849;
  3151. flex-shrink: 0;
  3152. margin-right: 16px; }
  3153. .components-tip p {
  3154. margin: 0; }
  3155. .components-toggle-control .components-base-control__field {
  3156. display: flex;
  3157. margin-bottom: 12px; }
  3158. .components-toggle-control .components-base-control__field .components-form-toggle {
  3159. margin-right: 16px; }
  3160. .components-toggle-control .components-base-control__field .components-toggle-control__label {
  3161. display: block;
  3162. margin-bottom: 4px; }
  3163. .components-toolbar {
  3164. margin: 0;
  3165. border: 1px solid #e2e4e7;
  3166. background-color: #fff;
  3167. display: inline-flex;
  3168. flex-shrink: 0; }
  3169. @supports ((position: -webkit-sticky) or (position: sticky)) {
  3170. .components-toolbar {
  3171. display: flex; } }
  3172. div.components-toolbar > div {
  3173. display: block;
  3174. margin: 0; }
  3175. @supports ((position: -webkit-sticky) or (position: sticky)) {
  3176. div.components-toolbar > div {
  3177. display: flex; } }
  3178. div.components-toolbar > div + div {
  3179. margin-left: -3px; }
  3180. div.components-toolbar > div + div.has-left-divider {
  3181. margin-left: 6px;
  3182. position: relative;
  3183. overflow: visible; }
  3184. div.components-toolbar > div + div.has-left-divider::before {
  3185. display: inline-block;
  3186. content: "";
  3187. box-sizing: content-box;
  3188. background-color: #e2e4e7;
  3189. position: absolute;
  3190. top: 8px;
  3191. left: -3px;
  3192. width: 1px;
  3193. height: 20px; }
  3194. .components-toolbar__control.components-button {
  3195. display: inline-flex;
  3196. align-items: flex-end;
  3197. margin: 0;
  3198. padding: 3px;
  3199. outline: none;
  3200. cursor: pointer;
  3201. position: relative;
  3202. width: 36px;
  3203. height: 36px; }
  3204. .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 {
  3205. outline: none;
  3206. box-shadow: none;
  3207. background: none;
  3208. border: none; }
  3209. .components-toolbar__control.components-button:disabled {
  3210. cursor: default; }
  3211. .components-toolbar__control.components-button > svg {
  3212. padding: 5px;
  3213. border-radius: 4px;
  3214. height: 30px;
  3215. width: 30px; }
  3216. .components-toolbar__control.components-button[data-subscript] svg {
  3217. padding: 5px 10px 5px 0; }
  3218. .components-toolbar__control.components-button[data-subscript]::after {
  3219. content: attr(data-subscript);
  3220. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  3221. font-size: 13px;
  3222. font-weight: 600;
  3223. line-height: 12px;
  3224. position: absolute;
  3225. right: 8px;
  3226. bottom: 10px; }
  3227. .components-toolbar__control.components-button:not(:disabled):not([aria-disabled="true"]):hover {
  3228. box-shadow: none; }
  3229. .components-toolbar__control.components-button:not(:disabled).is-active > svg,
  3230. .components-toolbar__control.components-button:not(:disabled):hover > svg {
  3231. color: #555d66;
  3232. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  3233. .components-toolbar__control.components-button:not(:disabled).is-active > svg {
  3234. outline: none;
  3235. color: #fff;
  3236. box-shadow: none;
  3237. background: #555d66; }
  3238. .components-toolbar__control.components-button:not(:disabled).is-active[data-subscript]::after {
  3239. color: #fff; }
  3240. .components-toolbar__control.components-button:not(:disabled):focus > svg {
  3241. box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff;
  3242. outline: 2px solid transparent;
  3243. outline: 0; }
  3244. .components-toolbar__control.components-button:not(:disabled).is-active {
  3245. outline: 1px dotted transparent;
  3246. outline-offset: -2px; }
  3247. .components-toolbar__control.components-button:not(:disabled):focus {
  3248. outline: 2px solid transparent; }
  3249. .components-toolbar__control .dashicon {
  3250. display: block; }
  3251. .components-tooltip.components-popover {
  3252. z-index: 1000002; }
  3253. .components-tooltip.components-popover::before {
  3254. border-color: transparent; }
  3255. .components-tooltip.components-popover.is-top::after {
  3256. border-top-color: #191e23; }
  3257. .components-tooltip.components-popover.is-bottom::after {
  3258. border-bottom-color: #191e23; }
  3259. .components-tooltip.components-popover:not(.is-mobile) .components-popover__content {
  3260. min-width: 0; }
  3261. .components-tooltip .components-popover__content {
  3262. padding: 4px 12px;
  3263. background: #191e23;
  3264. border-width: 0;
  3265. color: #fff;
  3266. white-space: nowrap;
  3267. text-align: center; }
  3268. .components-tooltip__shortcut {
  3269. display: block;
  3270. color: #7e8993; }