| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025 |
- /**
- * Colors
- */
- /**
- * Breakpoints & Media Queries
- */
- /**
- * SCSS Variables.
- *
- * Please use variables from this sheet to ensure consistency across the UI.
- * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
- * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
- */
- /**
- * Colors
- */
- /**
- * Fonts & basic variables.
- */
- /**
- * Grid System.
- * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
- */
- /**
- * Dimensions.
- */
- /**
- * Shadows.
- */
- /**
- * Editor widths.
- */
- /**
- * Block & Editor UI.
- */
- /**
- * Block paddings.
- */
- /**
- * React Native specific.
- * These variables do not appear to be used anywhere else.
- */
- /**
- * Breakpoint mixins
- */
- /**
- * Long content fade mixin
- *
- * Creates a fading overlay to signify that the content is longer
- * than the space allows.
- */
- /**
- * Focus styles.
- */
- /**
- * Applies editor left position to the selector passed as argument
- */
- /**
- * Styles that are reused verbatim in a few places
- */
- /**
- * Allows users to opt-out of animations via OS-level preferences.
- */
- /**
- * Reset default styles for JavaScript UI based pages.
- * This is a WP-admin agnostic reset
- */
- /**
- * Reset the WP Admin page styles for Gutenberg-like pages.
- */
- :root {
- --wp-admin-theme-color: #007cba;
- --wp-admin-theme-color-darker-10: #006ba1;
- --wp-admin-theme-color-darker-20: #005a87;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- :root {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- .components-panel__header.interface-complementary-area-header__small {
- background: #fff;
- padding-left: 4px;
- }
- .components-panel__header.interface-complementary-area-header__small .interface-complementary-area-header__small-title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 100%;
- }
- @media (min-width: 782px) {
- .components-panel__header.interface-complementary-area-header__small {
- display: none;
- }
- }
- .interface-complementary-area-header {
- background: #fff;
- padding-left: 4px;
- }
- .interface-complementary-area-header .components-button.has-icon {
- display: none;
- margin-right: auto;
- }
- .interface-complementary-area-header .components-button.has-icon ~ .components-button {
- margin-right: 0;
- }
- @media (min-width: 782px) {
- .interface-complementary-area-header .components-button.has-icon {
- display: flex;
- }
- }
- .interface-complementary-area {
- background: #fff;
- color: #1e1e1e;
- }
- @media (min-width: 600px) {
- .interface-complementary-area {
- -webkit-overflow-scrolling: touch;
- }
- }
- @media (min-width: 782px) {
- .interface-complementary-area {
- width: 280px;
- }
- }
- .interface-complementary-area .components-panel {
- border: none;
- position: relative;
- z-index: 0;
- }
- .interface-complementary-area .components-panel__header {
- position: sticky;
- top: 0;
- z-index: 1;
- }
- .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
- top: 48px;
- }
- @media (min-width: 782px) {
- .interface-complementary-area .components-panel__header.edit-post-sidebar__panel-tabs {
- top: 0;
- }
- }
- .interface-complementary-area p {
- margin-top: 0;
- }
- .interface-complementary-area h2,
- .interface-complementary-area h3 {
- font-size: 13px;
- color: #1e1e1e;
- margin-bottom: 1.5em;
- }
- .interface-complementary-area hr {
- border-top: none;
- border-bottom: 1px solid #f0f0f0;
- margin: 1.5em 0;
- }
- .interface-complementary-area div.components-toolbar-group,
- .interface-complementary-area div.components-toolbar {
- box-shadow: none;
- margin-bottom: 1.5em;
- }
- .interface-complementary-area div.components-toolbar-group:last-child,
- .interface-complementary-area div.components-toolbar:last-child {
- margin-bottom: 0;
- }
- .interface-complementary-area .block-editor-skip-to-selected-block:focus {
- top: auto;
- left: 10px;
- bottom: 10px;
- right: auto;
- }
- @media (min-width: 782px) {
- body.js.is-fullscreen-mode {
- margin-top: -32px;
- height: calc(100% + 32px);
- }
- body.js.is-fullscreen-mode #adminmenumain,
- body.js.is-fullscreen-mode #wpadminbar {
- display: none;
- }
- body.js.is-fullscreen-mode #wpcontent,
- body.js.is-fullscreen-mode #wpfooter {
- margin-right: 0;
- }
- }
- html.interface-interface-skeleton__html-container {
- position: fixed;
- width: 100%;
- }
- @media (min-width: 782px) {
- html.interface-interface-skeleton__html-container {
- position: initial;
- width: initial;
- }
- }
- .interface-interface-skeleton {
- display: flex;
- flex-direction: row;
- height: auto;
- max-height: 100%;
- position: fixed;
- top: 46px;
- right: 0;
- left: 0;
- bottom: 0;
- }
- @media (min-width: 783px) {
- .interface-interface-skeleton {
- top: 32px;
- }
- .is-fullscreen-mode .interface-interface-skeleton {
- top: 0;
- }
- }
- .interface-interface-skeleton__editor {
- display: flex;
- flex-direction: column;
- flex: 0 1 100%;
- overflow: hidden;
- }
- .interface-interface-skeleton {
- /* Set left position when auto-fold is not on the body element. */
- right: 0;
- }
- @media (min-width: 783px) {
- .interface-interface-skeleton {
- right: 160px;
- }
- }
- .auto-fold .interface-interface-skeleton {
- /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
- }
- @media (min-width: 783px) {
- .auto-fold .interface-interface-skeleton {
- right: 36px;
- }
- }
- @media (min-width: 961px) {
- .auto-fold .interface-interface-skeleton {
- right: 160px;
- }
- }
- /* Sidebar manually collapsed. */
- .folded .interface-interface-skeleton {
- right: 0;
- }
- @media (min-width: 783px) {
- .folded .interface-interface-skeleton {
- right: 36px;
- }
- }
- body.is-fullscreen-mode .interface-interface-skeleton {
- right: 0 !important;
- }
- .interface-interface-skeleton__body {
- flex-grow: 1;
- display: flex;
- overflow: auto;
- overscroll-behavior-y: none;
- }
- @media (min-width: 782px) {
- .has-footer .interface-interface-skeleton__body {
- padding-bottom: 25px;
- }
- }
- .interface-interface-skeleton__content {
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- overflow: auto;
- z-index: 20;
- }
- .interface-interface-skeleton__secondary-sidebar,
- .interface-interface-skeleton__sidebar {
- display: block;
- flex-shrink: 0;
- position: absolute;
- z-index: 100000;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: #fff;
- color: #1e1e1e;
- }
- @media (min-width: 782px) {
- .interface-interface-skeleton__secondary-sidebar,
- .interface-interface-skeleton__sidebar {
- position: relative !important;
- z-index: 90;
- width: auto;
- }
- }
- .interface-interface-skeleton__sidebar {
- overflow: auto;
- }
- @media (min-width: 782px) {
- .interface-interface-skeleton__sidebar {
- border-right: 1px solid #e0e0e0;
- }
- }
- @media (min-width: 782px) {
- .interface-interface-skeleton__secondary-sidebar {
- border-left: 1px solid #e0e0e0;
- }
- }
- .interface-interface-skeleton__header {
- flex-shrink: 0;
- height: auto;
- border-bottom: 1px solid #e0e0e0;
- z-index: 30;
- color: #1e1e1e;
- }
- .interface-interface-skeleton__footer {
- height: auto;
- flex-shrink: 0;
- border-top: 1px solid #e0e0e0;
- color: #1e1e1e;
- position: absolute;
- bottom: 0;
- right: 0;
- width: 100%;
- background-color: #fff;
- z-index: 90;
- display: none;
- }
- @media (min-width: 782px) {
- .interface-interface-skeleton__footer {
- display: flex;
- }
- }
- .interface-interface-skeleton__footer .block-editor-block-breadcrumb {
- z-index: 30;
- display: flex;
- background: #fff;
- height: 24px;
- align-items: center;
- font-size: 13px;
- padding: 0 18px;
- }
- .interface-interface-skeleton__actions {
- z-index: 100000;
- position: fixed !important;
- top: -9999em;
- bottom: auto;
- right: auto;
- left: 0;
- width: 280px;
- color: #1e1e1e;
- }
- .interface-interface-skeleton__actions:focus {
- top: auto;
- bottom: 0;
- }
- .interface-pinned-items {
- display: flex;
- }
- .interface-pinned-items .components-button:not(:first-child) {
- display: none;
- }
- @media (min-width: 600px) {
- .interface-pinned-items .components-button:not(:first-child) {
- display: flex;
- }
- }
- .interface-pinned-items .components-button {
- margin-right: 4px;
- }
- .interface-pinned-items .components-button svg {
- max-width: 24px;
- max-height: 24px;
- }
- .edit-post-header {
- height: 60px;
- background: #fff;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- max-width: 100vw;
- }
- @media (min-width: 280px) {
- .edit-post-header {
- flex-wrap: nowrap;
- }
- }
- .edit-post-header > .edit-post-header__settings {
- order: 1;
- }
- @supports (position: sticky) {
- .edit-post-header > .edit-post-header__settings {
- order: initial;
- }
- }
- .edit-post-header__toolbar {
- display: flex;
- flex-grow: 1;
- }
- .edit-post-header__toolbar .table-of-contents {
- display: none;
- }
- @media (min-width: 600px) {
- .edit-post-header__toolbar .table-of-contents {
- display: block;
- }
- }
- .edit-post-header__settings {
- display: inline-flex;
- align-items: center;
- flex-wrap: wrap;
- padding-left: 4px;
- /**
- * Buttons in the Toolbar
- */
- }
- @media (min-width: 600px) {
- .edit-post-header__settings {
- padding-left: 16px;
- }
- }
- .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header__settings .components-button.components-button {
- margin-left: 4px;
- }
- @media (min-width: 600px) {
- .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header__settings .components-button.components-button {
- margin-left: 12px;
- }
- }
- .edit-post-header__settings .editor-post-saved-state,
- .edit-post-header__settings .components-button.is-tertiary {
- padding: 0 6px;
- }
- .edit-post-header__settings .edit-post-more-menu .components-button,
- .edit-post-header__settings .interface-pinned-items .components-button {
- margin-left: 0;
- }
- .edit-post-header-preview__grouping-external {
- display: flex;
- position: relative;
- padding-bottom: 0;
- }
- .edit-post-header-preview__button-external {
- padding-right: 8px;
- margin-left: auto;
- width: 100%;
- display: flex;
- justify-content: flex-start;
- }
- .edit-post-header-preview__button-external svg {
- margin-right: auto;
- }
- .edit-post-post-preview-dropdown .components-popover__content > div {
- padding-bottom: 0;
- }
- .show-icon-labels.interface-pinned-items .components-button.has-icon,
- .show-icon-labels .edit-post-header .components-button.has-icon,
- .edit-post-header__dropdown .components-button.has-icon {
- width: auto;
- }
- .show-icon-labels.interface-pinned-items .components-button.has-icon svg,
- .show-icon-labels .edit-post-header .components-button.has-icon svg,
- .edit-post-header__dropdown .components-button.has-icon svg {
- display: none;
- }
- .show-icon-labels.interface-pinned-items .components-button.has-icon::after,
- .show-icon-labels .edit-post-header .components-button.has-icon::after,
- .edit-post-header__dropdown .components-button.has-icon::after {
- content: attr(aria-label);
- }
- .show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true],
- .show-icon-labels .edit-post-header .components-button.has-icon[aria-disabled=true],
- .edit-post-header__dropdown .components-button.has-icon[aria-disabled=true] {
- background-color: transparent;
- }
- .show-icon-labels.interface-pinned-items .is-tertiary:active,
- .show-icon-labels .edit-post-header .is-tertiary:active,
- .edit-post-header__dropdown .is-tertiary:active {
- box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color);
- background-color: transparent;
- }
- .show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon svg,
- .show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg,
- .show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon svg,
- .show-icon-labels .edit-post-header .components-button.has-icon.button-toggle svg,
- .edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon svg,
- .edit-post-header__dropdown .components-button.has-icon.button-toggle svg {
- display: block;
- }
- .show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon::after,
- .show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle::after,
- .show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon::after,
- .show-icon-labels .edit-post-header .components-button.has-icon.button-toggle::after,
- .edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon::after,
- .edit-post-header__dropdown .components-button.has-icon.button-toggle::after {
- content: none;
- }
- .show-icon-labels.interface-pinned-items .edit-post-fullscreen-mode-close.has-icon,
- .show-icon-labels .edit-post-header .edit-post-fullscreen-mode-close.has-icon,
- .edit-post-header__dropdown .edit-post-fullscreen-mode-close.has-icon {
- width: 60px;
- }
- .show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
- .show-icon-labels .edit-post-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
- .edit-post-header__dropdown .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon {
- display: block;
- }
- .show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
- .show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .show-icon-labels .edit-post-header .interface-pinned-items .components-button,
- .edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .edit-post-header__dropdown .interface-pinned-items .components-button {
- padding-right: 8px;
- padding-left: 8px;
- }
- @media (min-width: 600px) {
- .show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .show-icon-labels.interface-pinned-items .interface-pinned-items .components-button,
- .show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .show-icon-labels .edit-post-header .interface-pinned-items .components-button,
- .edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle,
- .edit-post-header__dropdown .interface-pinned-items .components-button {
- padding-right: 12px;
- padding-left: 12px;
- }
- }
- .show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
- .show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
- .edit-post-header__dropdown .components-dropdown-menu__toggle {
- margin-right: 8px;
- padding-right: 8px;
- padding-left: 8px;
- }
- @media (min-width: 600px) {
- .show-icon-labels.interface-pinned-items .components-dropdown-menu__toggle,
- .show-icon-labels .edit-post-header .components-dropdown-menu__toggle,
- .edit-post-header__dropdown .components-dropdown-menu__toggle {
- margin-right: 12px;
- padding-right: 12px;
- padding-left: 12px;
- }
- }
- .show-icon-labels.interface-pinned-items .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
- .show-icon-labels .edit-post-header .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after,
- .edit-post-header__dropdown .edit-post-header-toolbar__inserter-toggle.edit-post-header-toolbar__inserter-toggle::after {
- content: none;
- }
- .show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
- .show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
- .edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
- content: none;
- }
- @media (min-width: 600px) {
- .show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft::after,
- .show-icon-labels .edit-post-header .editor-post-save-draft.editor-post-save-draft::after,
- .edit-post-header__dropdown .editor-post-save-draft.editor-post-save-draft::after {
- content: attr(aria-label);
- }
- }
- .edit-post-header__dropdown .components-menu-item__button.components-menu-item__button,
- .edit-post-header__dropdown .components-button.editor-history__undo,
- .edit-post-header__dropdown .components-button.editor-history__redo,
- .edit-post-header__dropdown .table-of-contents .components-button,
- .edit-post-header__dropdown .components-button.block-editor-block-navigation {
- margin: 0;
- padding: 6px 40px 6px 6px;
- width: 14.625rem;
- text-align: right;
- justify-content: flex-start;
- }
- .show-icon-labels.interface-pinned-items {
- padding: 6px 12px 12px;
- margin-top: 0;
- margin-bottom: 0;
- margin-right: -12px;
- margin-left: -12px;
- border-bottom: 1px solid #ccc;
- display: block;
- }
- .show-icon-labels.interface-pinned-items > .components-button.has-icon {
- margin: 0;
- padding: 6px 8px 6px 6px;
- width: 14.625rem;
- justify-content: flex-start;
- }
- .show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=true] svg {
- display: block;
- max-width: 24px;
- }
- .show-icon-labels.interface-pinned-items > .components-button.has-icon[aria-expanded=false] {
- padding-right: 40px;
- }
- .show-icon-labels.interface-pinned-items > .components-button.has-icon svg {
- margin-left: 8px;
- }
- .edit-post-fullscreen-mode-close.has-icon {
- display: none;
- }
- @media (min-width: 782px) {
- .edit-post-fullscreen-mode-close.has-icon {
- display: flex;
- align-items: center;
- align-self: stretch;
- border: none;
- background: #23282e;
- color: #fff;
- border-radius: 0;
- height: 61px;
- width: 60px;
- position: relative;
- margin-bottom: -1px;
- }
- .edit-post-fullscreen-mode-close.has-icon:active {
- color: #fff;
- }
- .edit-post-fullscreen-mode-close.has-icon:focus {
- box-shadow: none;
- }
- .edit-post-fullscreen-mode-close.has-icon::before {
- transition: box-shadow 0.1s ease;
- content: "";
- display: block;
- position: absolute;
- top: 9px;
- left: 9px;
- bottom: 9px;
- right: 9px;
- border-radius: 4px;
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #23282e;
- }
- }
- @media (min-width: 782px) and (prefers-reduced-motion: reduce) {
- .edit-post-fullscreen-mode-close.has-icon::before {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 782px) {
- .edit-post-fullscreen-mode-close.has-icon:hover::before {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #757575;
- }
- }
- @media (min-width: 782px) {
- .edit-post-fullscreen-mode-close.has-icon:focus::before {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) rgba(255, 255, 255, 0.1), inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- }
- .edit-post-fullscreen-mode-close_site-icon {
- width: 36px;
- border-radius: 2px;
- }
- .edit-post-header-toolbar {
- display: inline-flex;
- flex-grow: 1;
- align-items: center;
- border: none;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
- display: none;
- }
- @media (min-width: 600px) {
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button {
- display: inline-flex;
- }
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle {
- display: inline-flex;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
- transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
- }
- @media (prefers-reduced-motion: reduce) {
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle svg {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.is-pressed svg {
- transform: rotate(-45deg);
- }
- .edit-post-header-toolbar .block-editor-block-navigation {
- display: none;
- }
- @media (min-width: 600px) {
- .edit-post-header-toolbar .block-editor-block-navigation {
- display: flex;
- }
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon,
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon {
- height: 36px;
- min-width: 36px;
- padding: 6px;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon.is-pressed,
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon.is-pressed {
- background: #1e1e1e;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon:focus:not(:disabled),
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon:focus:not(:disabled) {
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
- outline: 1px solid transparent;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-button.has-icon::before,
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .components-dropdown > .components-button.has-icon::before {
- display: none;
- }
- @media (min-width: 600px) {
- .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
- .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
- transition: opacity 0.1s linear;
- }
- }
- @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
- .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-button,
- .edit-post-header.has-reduced-ui .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
- transition-duration: 0s;
- transition-delay: 0s;
- }
- }
- @media (min-width: 600px) {
- .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-button, .edit-post-header.has-reduced-ui:not(:hover) .edit-post-header-toolbar__left > * + .components-dropdown > [aria-expanded=false] {
- opacity: 0;
- }
- }
- .edit-post-header-toolbar__left {
- display: inline-flex;
- align-items: center;
- padding-right: 8px;
- }
- @media (min-width: 600px) {
- .edit-post-header-toolbar__left {
- padding-right: 24px;
- }
- }
- @media (min-width: 1280px) {
- .edit-post-header-toolbar__left {
- padding-left: 8px;
- }
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
- margin-left: 8px;
- min-width: 32px;
- width: 32px;
- height: 32px;
- padding: 0;
- }
- .show-icon-labels .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-icon {
- height: 36px;
- }
- .edit-post-header-toolbar .edit-post-header-toolbar__left > .edit-post-header-toolbar__inserter-toggle.has-text.has-icon {
- width: auto;
- padding: 0 8px;
- }
- .show-icon-labels .edit-post-header-toolbar__left > * + * {
- margin-right: 8px;
- }
- .edit-post-more-menu {
- margin-right: -4px;
- }
- .edit-post-more-menu .components-button {
- width: auto;
- padding: 0 2px;
- }
- @media (min-width: 600px) {
- .edit-post-more-menu {
- margin-right: 0;
- }
- .edit-post-more-menu .components-button {
- padding: 0 4px;
- }
- }
- .edit-post-more-menu__content .components-popover__content {
- min-width: 280px;
- }
- @media (min-width: 480px) {
- .edit-post-more-menu__content .components-popover__content {
- width: auto;
- max-width: 480px;
- }
- }
- .edit-post-more-menu__content .components-popover__content .components-dropdown-menu__menu {
- padding: 0;
- }
- .components-popover.edit-post-more-menu__content {
- z-index: 99998;
- }
- .edit-post-template-top-area {
- display: flex;
- flex-direction: column;
- align-content: space-between;
- width: 100%;
- align-items: center;
- }
- .edit-post-template-top-area .edit-post-template-title,
- .edit-post-template-top-area .edit-post-template-post-title {
- padding: 0;
- text-decoration: none;
- height: auto;
- }
- .edit-post-template-top-area .edit-post-template-title::before,
- .edit-post-template-top-area .edit-post-template-post-title::before {
- height: 100%;
- }
- .edit-post-template-top-area .edit-post-template-title.has-icon svg,
- .edit-post-template-top-area .edit-post-template-post-title.has-icon svg {
- order: 1;
- margin-left: 0;
- }
- .edit-post-template-top-area .edit-post-template-title {
- color: #1e1e1e;
- }
- .edit-post-template-top-area .edit-post-template-post-title {
- margin-top: 4px;
- max-width: 160px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: block;
- }
- .edit-post-template-top-area .edit-post-template-post-title::before {
- right: 0;
- left: 0;
- }
- @media (min-width: 1080px) {
- .edit-post-template-top-area .edit-post-template-post-title {
- max-width: none;
- }
- }
- .edit-post-template-top-area__popover .components-popover__content {
- min-width: 280px;
- }
- .edit-post-template-top-area__second-menu-group {
- margin-right: -12px;
- margin-left: -12px;
- padding: 12px;
- padding-bottom: 0;
- border-top: 1px solid #ddd;
- }
- .edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button {
- display: flex;
- justify-content: center;
- }
- .edit-post-template-top-area__second-menu-group .edit-post-template-top-area__delete-template-button .components-menu-item__item {
- margin-left: 0;
- }
- .edit-post-keyboard-shortcut-help-modal__section {
- margin: 0 0 2rem 0;
- }
- .edit-post-keyboard-shortcut-help-modal__main-shortcuts .edit-post-keyboard-shortcut-help-modal__shortcut-list {
- margin-top: -25px;
- }
- .edit-post-keyboard-shortcut-help-modal__section-title {
- font-size: 0.9rem;
- font-weight: 600;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut {
- display: flex;
- align-items: baseline;
- padding: 0.6rem 0;
- border-top: 1px solid #ddd;
- margin-bottom: 0;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut:last-child {
- border-bottom: 1px solid #ddd;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut:empty {
- display: none;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-term {
- font-weight: 600;
- margin: 0 1rem 0 0;
- text-align: left;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-description {
- flex: 1;
- margin: 0;
- flex-basis: auto;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
- display: block;
- background: none;
- margin: 0;
- padding: 0;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination + .edit-post-keyboard-shortcut-help-modal__shortcut-key-combination {
- margin-top: 10px;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-key {
- padding: 0.25rem 0.5rem;
- border-radius: 8%;
- margin: 0 0.2rem 0 0.2rem;
- }
- .edit-post-keyboard-shortcut-help-modal__shortcut-key:last-child {
- margin: 0 0.2rem 0 0;
- }
- .edit-post-layout__metaboxes {
- flex-shrink: 0;
- }
- .edit-post-layout__metaboxes:not(:empty) {
- border-top: 1px solid #ddd;
- padding: 10px 0 10px;
- clear: both;
- }
- .edit-post-layout__metaboxes:not(:empty) .edit-post-meta-boxes-area {
- margin: auto 20px;
- }
- .edit-post-layout .components-editor-notices__snackbar {
- position: fixed;
- left: 0;
- bottom: 40px;
- padding-right: 16px;
- padding-left: 16px;
- }
- .edit-post-layout .components-editor-notices__snackbar {
- /* Set left position when auto-fold is not on the body element. */
- right: 0;
- }
- @media (min-width: 783px) {
- .edit-post-layout .components-editor-notices__snackbar {
- right: 160px;
- }
- }
- .auto-fold .edit-post-layout .components-editor-notices__snackbar {
- /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */
- }
- @media (min-width: 783px) {
- .auto-fold .edit-post-layout .components-editor-notices__snackbar {
- right: 36px;
- }
- }
- @media (min-width: 961px) {
- .auto-fold .edit-post-layout .components-editor-notices__snackbar {
- right: 160px;
- }
- }
- /* Sidebar manually collapsed. */
- .folded .edit-post-layout .components-editor-notices__snackbar {
- right: 0;
- }
- @media (min-width: 783px) {
- .folded .edit-post-layout .components-editor-notices__snackbar {
- right: 36px;
- }
- }
- body.is-fullscreen-mode .edit-post-layout .components-editor-notices__snackbar {
- right: 0 !important;
- }
- .edit-post-layout .editor-post-publish-panel {
- position: fixed;
- z-index: 100001;
- top: 46px;
- bottom: 0;
- left: 0;
- right: 0;
- overflow: auto;
- }
- @media (min-width: 782px) {
- .edit-post-layout .editor-post-publish-panel {
- z-index: 99998;
- top: 32px;
- right: auto;
- width: 281px;
- border-right: 1px solid #ddd;
- transform: translateX(-100%);
- animation: edit-post-post-publish-panel__slide-in-animation 0.1s forwards;
- }
- }
- @media (min-width: 782px) and (prefers-reduced-motion: reduce) {
- .edit-post-layout .editor-post-publish-panel {
- animation-duration: 1ms;
- animation-delay: 0s;
- }
- }
- @media (min-width: 782px) {
- body.is-fullscreen-mode .edit-post-layout .editor-post-publish-panel {
- top: 0;
- }
- }
- @media (min-width: 782px) {
- [role=region]:focus .edit-post-layout .editor-post-publish-panel {
- transform: translateX(0%);
- }
- }
- @keyframes edit-post-post-publish-panel__slide-in-animation {
- 100% {
- transform: translateX(0%);
- }
- }
- .edit-post-layout .editor-post-publish-panel__header-publish-button {
- justify-content: center;
- }
- .edit-post-layout__toggle-publish-panel,
- .edit-post-layout__toggle-sidebar-panel,
- .edit-post-layout__toggle-entities-saved-states-panel {
- z-index: 100000;
- position: fixed !important;
- top: -9999em;
- bottom: auto;
- right: auto;
- left: 0;
- width: 280px;
- background-color: #fff;
- border: 1px dotted #ddd;
- height: auto !important;
- padding: 24px;
- display: flex;
- justify-content: center;
- }
- .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-publish-panel, .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-publish-panel,
- .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-sidebar-panel,
- .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-sidebar-panel,
- .interface-interface-skeleton__actions:focus .edit-post-layout__toggle-entities-saved-states-panel,
- .interface-interface-skeleton__actions:focus-within .edit-post-layout__toggle-entities-saved-states-panel {
- top: auto;
- bottom: 0;
- }
- @media (min-width: 600px) {
- .edit-post-manage-blocks-modal {
- height: calc(100% - 60px - 60px);
- }
- }
- .edit-post-manage-blocks-modal .components-modal__content {
- padding-bottom: 0;
- display: flex;
- flex-direction: column;
- }
- .edit-post-manage-blocks-modal .components-modal__header {
- flex-shrink: 0;
- margin-bottom: 0;
- }
- .edit-post-manage-blocks-modal__content {
- display: flex;
- flex-direction: column;
- flex: 0 1 100%;
- min-height: 0;
- }
- .edit-post-manage-blocks-modal__no-results {
- font-style: italic;
- padding: 24px 0;
- text-align: center;
- }
- .edit-post-manage-blocks-modal__search {
- margin: 16px 0;
- }
- .edit-post-manage-blocks-modal__search .components-base-control__field {
- margin-bottom: 0;
- }
- .edit-post-manage-blocks-modal__search .components-base-control__label {
- margin-top: -4px;
- }
- .edit-post-manage-blocks-modal__search input[type=search].components-text-control__input {
- padding: 8px;
- border-radius: 2px;
- }
- .edit-post-manage-blocks-modal__disabled-blocks-count {
- border-top: 1px solid #ddd;
- margin-right: -24px;
- margin-left: -24px;
- padding-top: 0.6rem;
- padding-bottom: 0.6rem;
- padding-right: 24px;
- padding-left: 24px;
- background-color: #f0f0f0;
- }
- .edit-post-manage-blocks-modal__category {
- margin: 0 0 2rem 0;
- }
- .edit-post-manage-blocks-modal__category-title {
- position: sticky;
- top: 0;
- padding: 16px 0;
- background-color: #fff;
- z-index: 1;
- }
- .edit-post-manage-blocks-modal__category-title .components-base-control__field {
- margin-bottom: 0;
- }
- .edit-post-manage-blocks-modal__category-title .components-checkbox-control__label {
- font-size: 0.9rem;
- font-weight: 600;
- }
- .edit-post-manage-blocks-modal__show-all {
- margin-left: 8px;
- }
- .edit-post-manage-blocks-modal__checklist {
- margin-top: 0;
- }
- .edit-post-manage-blocks-modal__checklist-item {
- margin-bottom: 0;
- padding-right: 16px;
- border-top: 1px solid #ddd;
- }
- .edit-post-manage-blocks-modal__checklist-item:last-child {
- border-bottom: 1px solid #ddd;
- }
- .edit-post-manage-blocks-modal__checklist-item .components-base-control__field {
- align-items: center;
- display: flex;
- margin: 0;
- }
- .components-modal__content .edit-post-manage-blocks-modal__checklist-item.components-checkbox-control__input-container {
- margin: 0 8px;
- }
- .edit-post-manage-blocks-modal__checklist-item .components-checkbox-control__label {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-grow: 1;
- padding: 0.6rem 10px 0.6rem 0;
- }
- .edit-post-manage-blocks-modal__checklist-item .block-editor-block-icon {
- margin-left: 10px;
- fill: #1e1e1e;
- }
- .edit-post-manage-blocks-modal__results {
- height: 100%;
- overflow: auto;
- margin-right: -32px;
- margin-left: -32px;
- padding-right: 32px;
- padding-left: 32px;
- border-top: 1px solid #ddd;
- }
- .edit-post-meta-boxes-area {
- position: relative;
- /**
- * The wordpress default for most meta-box elements is content-box. Some
- * elements such as textarea and input are set to border-box in forms.css.
- * These elements therefore specifically set back to border-box here, while
- * other elements (such as .button) are unaffected by Gutenberg's style
- * because of their higher specificity.
- */
- /* Match width and positioning of the meta boxes. Override default styles. */
- /* Override Default meta box stylings */
- }
- .edit-post-meta-boxes-area__container,
- .edit-post-meta-boxes-area .inside {
- box-sizing: content-box;
- }
- .edit-post-meta-boxes-area textarea,
- .edit-post-meta-boxes-area input {
- box-sizing: border-box;
- }
- .edit-post-meta-boxes-area #poststuff {
- margin: 0 auto;
- padding-top: 0;
- min-width: auto;
- }
- .edit-post-meta-boxes-area #poststuff h3.hndle,
- .edit-post-meta-boxes-area #poststuff .stuffbox > h3,
- .edit-post-meta-boxes-area #poststuff h2.hndle {
- /* WordPress selectors yolo */
- box-sizing: border-box;
- color: inherit;
- font-weight: 600;
- outline: none;
- padding: 15px;
- position: relative;
- width: 100%;
- }
- .edit-post-meta-boxes-area .postbox {
- border: 0;
- color: inherit;
- margin-bottom: 0;
- }
- .edit-post-meta-boxes-area .postbox > .inside {
- border-bottom: 1px solid #ddd;
- color: inherit;
- padding: 0 14px 14px;
- margin: 0;
- }
- .edit-post-meta-boxes-area .postbox .handlediv {
- height: 44px;
- width: 44px;
- }
- .edit-post-meta-boxes-area.is-loading::before {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- content: "";
- background: transparent;
- z-index: 1;
- }
- .edit-post-meta-boxes-area .components-spinner {
- position: absolute;
- top: 10px;
- left: 20px;
- z-index: 5;
- }
- .edit-post-meta-boxes-area .is-hidden {
- display: none;
- }
- .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox] {
- border: 1px solid #757575;
- }
- .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]:checked {
- background: #fff;
- border-color: #757575;
- }
- .edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox]::before {
- margin: -3px -4px;
- }
- .edit-post-meta-boxes-area__clear {
- clear: both;
- }
- .edit-post-preferences-modal {
- min-width: 360px;
- width: 100%;
- }
- @media (min-width: 782px) {
- .edit-post-preferences-modal {
- width: auto;
- }
- }
- @media (min-width: 600px) {
- .edit-post-preferences-modal {
- height: calc(100% - 60px - 60px);
- }
- }
- .edit-post-preferences-modal .components-navigation {
- background-color: #fff;
- margin: -8px;
- padding: 8px;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu {
- margin: 0;
- color: #1e1e1e;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__item {
- color: #1e1e1e;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__item > button {
- color: inherit;
- padding: 3px 16px;
- height: 48px;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__item > button:focus {
- background: #f0f0f0;
- font-weight: 500;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__item > button:hover {
- color: var(--wp-admin-theme-color);
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__item .components-toggle-control__label {
- color: inherit;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__menu-title-heading {
- color: inherit;
- border-bottom: 1px solid #ddd;
- padding-right: 0;
- padding-left: 0;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__back-button {
- color: inherit;
- padding-right: 0;
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .components-navigation__back-button:hover {
- color: var(--wp-admin-theme-color);
- }
- .edit-post-preferences-modal .components-navigation .components-navigation__menu .edit-post-preferences-modal__custom-fields-confirmation-button {
- width: auto;
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs {
- display: flex;
- flex-direction: row;
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs .components-tab-panel__tabs {
- width: 160px;
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item {
- border-radius: 2px;
- font-weight: 400;
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item.is-active {
- background: #f0f0f0;
- box-shadow: none;
- font-weight: 500;
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs .components-tab-panel__tabs .components-tab-panel__tabs-item:focus:not(:disabled) {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- .edit-post-preferences-modal .edit-post-preferences__tabs .components-tab-panel__tab-content {
- width: 500px;
- padding-right: 24px;
- }
- .edit-post-preferences-modal__section {
- margin: 0 0 2.5rem 0;
- }
- .edit-post-preferences-modal__section-title {
- font-size: 0.9rem;
- font-weight: 600;
- }
- .edit-post-preferences-modal__option .components-base-control .components-base-control__field {
- align-items: center;
- display: flex;
- margin-bottom: 0;
- }
- .edit-post-preferences-modal__option .components-base-control .components-base-control__field > label {
- flex-grow: 1;
- padding: 0.6rem 10px 0.6rem 0;
- }
- .edit-post-preferences-modal__custom-fields-confirmation-message, .edit-post-preferences-modal__custom-fields-confirmation-button {
- margin: 0 48px 0.6rem 0;
- }
- @media (min-width: 782px) {
- .edit-post-preferences-modal__custom-fields-confirmation-message, .edit-post-preferences-modal__custom-fields-confirmation-button {
- margin-right: 38px;
- }
- }
- @media (min-width: 600px) {
- .edit-post-preferences-modal__custom-fields-confirmation-message, .edit-post-preferences-modal__custom-fields-confirmation-button {
- max-width: 300px;
- }
- }
- .edit-post-preferences-modal .components-base-control__help {
- margin: -8px 58px 8px 0;
- font-size: 12px;
- font-style: normal;
- color: #757575;
- }
- .edit-post-preferences-modal .edit-post-preferences-modal__section-description {
- margin: -8px 0 8px 0;
- font-size: 12px;
- font-style: normal;
- color: #757575;
- }
- .edit-post-editor__inserter-panel,
- .edit-post-editor__list-view-panel {
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .edit-post-editor__list-view-panel {
- min-width: 350px;
- }
- .edit-post-editor__inserter-panel-header {
- padding-top: 8px;
- padding-left: 8px;
- display: flex;
- justify-content: flex-end;
- }
- @media (min-width: 782px) {
- .edit-post-editor__inserter-panel-header {
- display: none;
- }
- }
- .edit-post-editor__inserter-panel-content,
- .edit-post-editor__list-view-panel-content {
- height: calc(100% - 36px - 8px);
- }
- @media (min-width: 782px) {
- .edit-post-editor__inserter-panel-content {
- height: 100%;
- }
- }
- .edit-post-editor__list-view-panel-header {
- align-items: center;
- border-bottom: 1px solid #ddd;
- display: flex;
- justify-content: space-between;
- height: 48px;
- padding-right: 16px;
- padding-left: 4px;
- }
- .edit-post-editor__list-view-panel-content {
- overflow-y: auto;
- padding: 8px;
- }
- .components-panel__header.edit-post-sidebar__panel-tabs {
- justify-content: flex-start;
- padding-right: 0;
- padding-left: 16px;
- border-top: 0;
- margin-top: 0;
- }
- .components-panel__header.edit-post-sidebar__panel-tabs ul {
- display: flex;
- }
- .components-panel__header.edit-post-sidebar__panel-tabs li {
- margin: 0;
- }
- .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
- display: none;
- margin: 0 auto 0 0;
- padding: 0;
- min-width: 24px;
- height: 24px;
- }
- @media (min-width: 782px) {
- .components-panel__header.edit-post-sidebar__panel-tabs .components-button.has-icon {
- display: flex;
- }
- }
- .components-panel__body.is-opened.edit-post-last-revision__panel {
- padding: 0;
- height: 48px;
- }
- .editor-post-last-revision__title.components-button {
- padding: 16px;
- }
- .editor-post-author__select {
- margin: -5px 0;
- width: 100%;
- }
- @supports (position: sticky) {
- .editor-post-author__select {
- width: auto;
- }
- }
- .edit-post-post-link__link-post-name {
- font-weight: 600;
- }
- .edit-post-post-link__preview-label {
- font-weight: 400;
- margin: 0;
- }
- .edit-post-post-link__link {
- text-align: right;
- word-wrap: break-word;
- display: block;
- }
- .edit-post-post-link__preview-link-container {
- direction: ltr;
- }
- .edit-post-post-schedule {
- width: 100%;
- position: relative;
- justify-content: left;
- }
- .edit-post-post-schedule span {
- display: block;
- width: 45%;
- }
- .components-button.edit-post-post-schedule__toggle {
- text-align: left;
- }
- .edit-post-post-schedule__dialog .components-popover__content > div {
- padding: 0;
- }
- .editor-post-slug__input {
- margin: -5px 0;
- padding: 2px;
- }
- .edit-post-post-status .edit-post-post-publish-dropdown__switch-to-draft {
- margin-top: 15px;
- width: 100%;
- text-align: center;
- }
- .edit-post-post-visibility {
- width: 100%;
- justify-content: left;
- }
- .edit-post-post-visibility span {
- display: block;
- width: 45%;
- }
- @media (min-width: 782px) {
- .edit-post-post-visibility__dialog .components-popover__content {
- width: 257px;
- }
- }
- .edit-post-post-visibility__dialog-legend {
- font-weight: 600;
- }
- .edit-post-post-visibility__choice {
- margin: 10px 0;
- }
- .edit-post-post-visibility__dialog-radio,
- .edit-post-post-visibility__dialog-label {
- vertical-align: top;
- }
- .edit-post-post-visibility__dialog-password-input {
- width: calc(100% - 20px);
- margin-right: 20px;
- }
- .edit-post-post-visibility__dialog-info {
- color: #757575;
- padding-right: 20px;
- font-style: italic;
- margin: 4px 0 0;
- line-height: 1.4;
- }
- .components-button.edit-post-sidebar__panel-tab {
- border-radius: 0;
- height: 48px;
- background: transparent;
- border: none;
- box-shadow: none;
- cursor: pointer;
- display: inline-block;
- padding: 3px 15px;
- margin-right: 0;
- font-weight: 500;
- }
- .components-button.edit-post-sidebar__panel-tab::after {
- content: attr(data-label);
- display: block;
- font-weight: 600;
- height: 0;
- overflow: hidden;
- speak: none;
- visibility: hidden;
- }
- .components-button.edit-post-sidebar__panel-tab.is-active {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) transparent, inset 0 -4px 0 0 var(--wp-admin-theme-color);
- position: relative;
- z-index: 1;
- }
- .components-button.edit-post-sidebar__panel-tab.is-active::before {
- content: "";
- position: absolute;
- top: 0;
- bottom: 1px;
- left: 0;
- right: 0;
- border-bottom: 4px solid transparent;
- }
- .components-button.edit-post-sidebar__panel-tab:focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- position: relative;
- z-index: 1;
- }
- .components-button.edit-post-sidebar__panel-tab.is-active:focus {
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 -4px 0 0 var(--wp-admin-theme-color);
- }
- @media (min-width: 782px) {
- .edit-post-template__modal .components-base-control {
- width: 320px;
- }
- }
- .edit-post-template__modal .components-modal__header {
- border-bottom: none;
- }
- .edit-post-template__modal .components-modal__content::before {
- margin-bottom: 4px;
- }
- .edit-post-template__modal-actions {
- margin-top: 12px;
- }
- .edit-post-template-modal__tip {
- padding: 16px 24px;
- background: #f0f0f0;
- border-radius: 2px;
- }
- @media (min-width: 782px) {
- .edit-post-template-modal__tip {
- width: 240px;
- }
- }
- .edit-post-template__actions button:not(:last-child) {
- margin-left: 8px;
- }
- h2.edit-post-template-summary__title {
- margin: 0;
- line-height: 24px;
- }
- .edit-post-text-editor {
- position: relative;
- width: 100%;
- background-color: #fff;
- flex-grow: 1;
- }
- .edit-post-text-editor .editor-post-title.editor-post-title__block {
- max-width: none;
- line-height: 1.4;
- }
- .edit-post-text-editor .editor-post-title.editor-post-title__block .editor-post-title__input.editor-post-title__input.editor-post-title__input {
- font-family: Menlo, Consolas, monaco, monospace;
- font-size: 2.5em;
- font-weight: normal;
- }
- .edit-post-text-editor .editor-post-title.editor-post-title__block .editor-post-title__input {
- border: 1px solid #949494;
- margin-bottom: -1px;
- padding: 16px;
- }
- @media (min-width: 600px) {
- .edit-post-text-editor .editor-post-title.editor-post-title__block .editor-post-title__input {
- padding: 24px;
- }
- }
- .edit-post-text-editor .editor-post-title.editor-post-title__block .editor-post-title__input:focus {
- border-color: var(--wp-admin-theme-color);
- box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
- }
- @media (min-width: 600px) {
- .edit-post-text-editor .editor-post-title.editor-post-title__block {
- padding: 0;
- }
- }
- .edit-post-text-editor__body {
- width: 100%;
- padding: 0 12px 12px 12px;
- max-width: 1080px;
- margin-right: auto;
- margin-left: auto;
- }
- @media (min-width: 960px) {
- .edit-post-text-editor__body {
- padding: 16px 24px 96px 24px;
- padding: 0 24px 24px 24px;
- }
- }
- .edit-post-text-editor__toolbar {
- position: sticky;
- z-index: 1;
- top: 0;
- right: 0;
- left: 0;
- display: flex;
- background: rgba(255, 255, 255, 0.8);
- padding: 4px 12px;
- }
- @media (min-width: 600px) {
- .edit-post-text-editor__toolbar {
- padding: 12px;
- }
- }
- @media (min-width: 960px) {
- .edit-post-text-editor__toolbar {
- padding: 12px 24px;
- }
- }
- .edit-post-text-editor__toolbar h2 {
- line-height: 36px;
- margin: 0 0 0 auto;
- font-size: 13px;
- color: #1e1e1e;
- }
- .edit-post-text-editor__toolbar .components-button svg {
- order: 1;
- }
- .edit-post-visual-editor {
- position: relative;
- display: flex;
- flex-flow: column;
- background-color: #2f2f2f;
- flex: 1 1 auto;
- }
- .edit-post-visual-editor .components-button {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- padding: 6px 12px;
- }
- .edit-post-visual-editor .components-button.is-tertiary, .edit-post-visual-editor .components-button.has-icon {
- padding: 6px;
- }
- @supports (position: sticky) {
- .edit-post-visual-editor {
- flex-basis: 100%;
- }
- }
- .edit-post-visual-editor__post-title-wrapper .editor-post-title {
- margin-top: 2em;
- margin-right: auto;
- margin-left: auto;
- margin-bottom: 0;
- }
- .edit-post-visual-editor__exit-template-mode {
- position: absolute;
- top: 8px;
- right: 8px;
- color: #fff;
- }
- .edit-post-visual-editor__exit-template-mode:active:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:focus:not([aria-disabled=true]), .edit-post-visual-editor__exit-template-mode:hover {
- color: #f0f0f0;
- }
- .edit-post-visual-editor__content-area {
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- }
- .edit-post-welcome-guide {
- width: 312px;
- }
- .edit-post-welcome-guide__image {
- background: #00a0d2;
- margin: 0 0 16px;
- }
- .edit-post-welcome-guide__heading {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 24px;
- line-height: 1.4;
- margin: 16px 0 16px 0;
- padding: 0 32px;
- }
- .edit-post-welcome-guide__text {
- font-size: 13px;
- line-height: 1.4;
- margin: 0 0 24px 0;
- padding: 0 32px;
- }
- .edit-post-welcome-guide__inserter-icon {
- margin: 0 4px;
- vertical-align: text-top;
- }
- /**
- * Animations
- */
- @keyframes edit-post__fade-in-animation {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- html.wp-toolbar {
- background: #fff;
- }
- body.block-editor-page {
- background: #fff;
- /* We hide legacy notices in Gutenberg Based Pages, because they were not designed in a way that scaled well.
- Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
- }
- body.block-editor-page #wpcontent {
- padding-right: 0;
- }
- body.block-editor-page #wpbody-content {
- padding-bottom: 0;
- }
- body.block-editor-page #wpbody-content > div:not(.block-editor):not(#screen-meta) {
- display: none;
- }
- body.block-editor-page #wpfooter {
- display: none;
- }
- body.block-editor-page .a11y-speak-region {
- right: -1px;
- top: -1px;
- }
- body.block-editor-page ul#adminmenu a.wp-has-current-submenu::after,
- body.block-editor-page ul#adminmenu > li.current > a.current::after {
- border-left-color: #fff;
- }
- body.block-editor-page .media-frame select.attachment-filters:last-of-type {
- width: auto;
- max-width: 100%;
- }
- .block-editor-page #wpwrap {
- overflow-y: auto;
- }
- @media (min-width: 782px) {
- .block-editor-page #wpwrap {
- overflow-y: initial;
- }
- }
- .edit-post-header,
- .edit-post-visual-editor,
- .edit-post-text-editor,
- .edit-post-sidebar,
- .editor-post-publish-panel,
- .components-popover,
- .components-modal__frame,
- .edit-post-editor__inserter-panel {
- box-sizing: border-box;
- }
- .edit-post-header *,
- .edit-post-header *::before,
- .edit-post-header *::after,
- .edit-post-visual-editor *,
- .edit-post-visual-editor *::before,
- .edit-post-visual-editor *::after,
- .edit-post-text-editor *,
- .edit-post-text-editor *::before,
- .edit-post-text-editor *::after,
- .edit-post-sidebar *,
- .edit-post-sidebar *::before,
- .edit-post-sidebar *::after,
- .editor-post-publish-panel *,
- .editor-post-publish-panel *::before,
- .editor-post-publish-panel *::after,
- .components-popover *,
- .components-popover *::before,
- .components-popover *::after,
- .components-modal__frame *,
- .components-modal__frame *::before,
- .components-modal__frame *::after,
- .edit-post-editor__inserter-panel *,
- .edit-post-editor__inserter-panel *::before,
- .edit-post-editor__inserter-panel *::after {
- box-sizing: inherit;
- }
- @media (min-width: 600px) {
- .block-editor__container {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- min-height: calc(100vh - 46px);
- }
- }
- @media (min-width: 782px) {
- .block-editor__container {
- min-height: calc(100vh - 32px);
- }
- body.is-fullscreen-mode .block-editor__container {
- min-height: 100vh;
- }
- }
- .block-editor__container img {
- max-width: 100%;
- height: auto;
- }
- .block-editor__container iframe {
- width: 100%;
- }
- body.admin-color-light {
- --wp-admin-theme-color: #0085ba;
- --wp-admin-theme-color-darker-10: #0073a1;
- --wp-admin-theme-color-darker-20: #006187;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-light {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-modern {
- --wp-admin-theme-color: #3858e9;
- --wp-admin-theme-color-darker-10: #2145e6;
- --wp-admin-theme-color-darker-20: #183ad6;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-modern {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-blue {
- --wp-admin-theme-color: #096484;
- --wp-admin-theme-color-darker-10: #07526c;
- --wp-admin-theme-color-darker-20: #064054;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-blue {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-coffee {
- --wp-admin-theme-color: #46403c;
- --wp-admin-theme-color-darker-10: #383330;
- --wp-admin-theme-color-darker-20: #2b2724;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-coffee {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-ectoplasm {
- --wp-admin-theme-color: #523f6d;
- --wp-admin-theme-color-darker-10: #46365d;
- --wp-admin-theme-color-darker-20: #3a2c4d;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-ectoplasm {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-midnight {
- --wp-admin-theme-color: #e14d43;
- --wp-admin-theme-color-darker-10: #dd382d;
- --wp-admin-theme-color-darker-20: #d02c21;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-midnight {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-ocean {
- --wp-admin-theme-color: #627c83;
- --wp-admin-theme-color-darker-10: #576e74;
- --wp-admin-theme-color-darker-20: #4c6066;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-ocean {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
- body.admin-color-sunrise {
- --wp-admin-theme-color: #dd823b;
- --wp-admin-theme-color-darker-10: #d97426;
- --wp-admin-theme-color-darker-20: #c36922;
- --wp-admin-border-width-focus: 2px;
- }
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
- body.admin-color-sunrise {
- --wp-admin-border-width-focus: 1.5px;
- }
- }
|