mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 00:39:33 +01:00
28a12c8bce
Update packages to include these bug fixes from Gutenberg: - Site Logo: Add option to set site icon from Site Logo block - Navigation: Enable even more compact setup state. - Remove template parts from post content inserter an __unstable filter - Template Editor Mode: Hide editor mode switcher - Avoid using CSS variables for block gap styles - Try to fix auto resizing in template part focus mode - Lower the specificity of font size CSS Custom Properties in the editor - Site icon: Fix site icon styling to display non-square site icons within a square button - [Site Editor]: Register block editor shortcuts - Update regex to handle 404 template slug - Site Editor: Remove dead code - [Block Editor]: Restrict delete multi selected blocks shortcut - Fix: Gradients are not being applied by class - Update: Make the global styles subtitles font smaller - Post Content/Title: Reflect changes when previewing post - ServerSideRender: Fix loading state - [Block Library]: Fix editable post blocks in Query Loop with zero queryId - Post Excerpt: Fix previews - WP59: Contextualize "Export" string to differentiate it from other occurrences in WP Core - Tools Panel: Fix race conditions caused by conditionally displayed ToolsPanelItems - ToolsPanel: Allow items to register when panelId is null - Font Size Picker: Allow non-integers as simple CSS values and in hints - [Components - FontSizePicker]: Use incremental sequence of numbers as labels for the available font-sizes at the segmented control (conditionally) See #54487. Built from https://develop.svn.wordpress.org/trunk@52434 git-svn-id: http://core.svn.wordpress.org/trunk@52026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
496 lines
12 KiB
CSS
496 lines
12 KiB
CSS
/**
|
|
* Colors
|
|
*/
|
|
/**
|
|
* Breakpoints & Media Queries
|
|
*/
|
|
/**
|
|
* SCSS Variables.
|
|
*
|
|
* Please use variables from this sheet to ensure consistency across the UI.
|
|
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
|
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
|
*/
|
|
/**
|
|
* Colors
|
|
*/
|
|
/**
|
|
* Fonts & basic variables.
|
|
*/
|
|
/**
|
|
* Grid System.
|
|
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
|
*/
|
|
/**
|
|
* Dimensions.
|
|
*/
|
|
/**
|
|
* Shadows.
|
|
*/
|
|
/**
|
|
* Editor widths.
|
|
*/
|
|
/**
|
|
* Block & Editor UI.
|
|
*/
|
|
/**
|
|
* Block paddings.
|
|
*/
|
|
/**
|
|
* React Native specific.
|
|
* These variables do not appear to be used anywhere else.
|
|
*/
|
|
/**
|
|
* Converts a hex value into the rgb equivalent.
|
|
*
|
|
* @param {string} hex - the hexadecimal value to convert
|
|
* @return {string} comma separated rgb values
|
|
*/
|
|
/**
|
|
* Breakpoint mixins
|
|
*/
|
|
/**
|
|
* Long content fade mixin
|
|
*
|
|
* Creates a fading overlay to signify that the content is longer
|
|
* than the space allows.
|
|
*/
|
|
/**
|
|
* Focus styles.
|
|
*/
|
|
/**
|
|
* Applies editor left position to the selector passed as argument
|
|
*/
|
|
/**
|
|
* Styles that are reused verbatim in a few places
|
|
*/
|
|
/**
|
|
* Allows users to opt-out of animations via OS-level preferences.
|
|
*/
|
|
/**
|
|
* Reset default styles for JavaScript UI based pages.
|
|
* This is a WP-admin agnostic reset
|
|
*/
|
|
/**
|
|
* Reset the WP Admin page styles for Gutenberg-like pages.
|
|
*/
|
|
/**
|
|
* Editor only CSS.
|
|
*/
|
|
.editor-styles-wrapper .wp-block-navigation ul {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
}
|
|
.editor-styles-wrapper .wp-block-navigation .wp-block-navigation-item.wp-block {
|
|
margin-left: revert;
|
|
margin-right: revert;
|
|
}
|
|
|
|
.wp-block-navigation-item__label {
|
|
display: inline;
|
|
}
|
|
|
|
/**
|
|
* Submenus.
|
|
*/
|
|
.wp-block-navigation__container.is-parent-of-selected-block {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
overflow: visible;
|
|
}
|
|
|
|
.wp-block-navigation__container,
|
|
.wp-block-navigation-item {
|
|
background-color: inherit;
|
|
}
|
|
|
|
.wp-block-navigation:not(.is-selected):not(.has-child-selected) .has-child:hover > .wp-block-navigation__submenu-container {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.has-child.is-selected > .wp-block-navigation__submenu-container, .has-child.has-child-selected > .wp-block-navigation__submenu-container {
|
|
display: flex;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.is-dragging-components-draggable .has-child.is-dragging-within > .wp-block-navigation__submenu-container {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.is-editing > .wp-block-navigation__container {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container {
|
|
opacity: 1;
|
|
visibility: hidden;
|
|
}
|
|
.is-dragging-components-draggable .wp-block-navigation-link > .wp-block-navigation__container .block-editor-block-draggable-chip-wrapper {
|
|
visibility: visible;
|
|
}
|
|
|
|
.is-editing > .wp-block-navigation__submenu-container > .block-list-appender {
|
|
display: block;
|
|
position: static;
|
|
width: 100%;
|
|
}
|
|
|
|
.wp-block-navigation__submenu-container .block-list-appender {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Colors Selector component
|
|
*/
|
|
.block-library-colors-selector {
|
|
width: auto;
|
|
}
|
|
.block-library-colors-selector .block-library-colors-selector__toggle {
|
|
display: block;
|
|
margin: 0 auto;
|
|
padding: 3px;
|
|
width: auto;
|
|
}
|
|
.block-library-colors-selector .block-library-colors-selector__icon-container {
|
|
height: 30px;
|
|
position: relative;
|
|
margin: 0 auto;
|
|
padding: 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 4px;
|
|
}
|
|
.block-library-colors-selector .block-library-colors-selector__state-selection {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border-radius: 11px;
|
|
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
|
|
width: 22px;
|
|
min-width: 22px;
|
|
height: 22px;
|
|
min-height: 22px;
|
|
line-height: 20px;
|
|
padding: 2px;
|
|
}
|
|
.block-library-colors-selector .block-library-colors-selector__state-selection > svg {
|
|
min-width: auto !important;
|
|
}
|
|
.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg,
|
|
.block-library-colors-selector .block-library-colors-selector__state-selection.has-text-color > svg path {
|
|
color: inherit;
|
|
}
|
|
|
|
.block-library-colors-selector__popover .color-palette-controller-container {
|
|
padding: 16px;
|
|
}
|
|
.block-library-colors-selector__popover .components-base-control__label {
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
.block-library-colors-selector__popover .component-color-indicator {
|
|
float: right;
|
|
margin-top: 2px;
|
|
}
|
|
.block-library-colors-selector__popover .components-panel__body-title {
|
|
display: none;
|
|
}
|
|
|
|
.wp-block-navigation .block-editor-button-block-appender {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
/**
|
|
* Setup state
|
|
*/
|
|
.components-placeholder.wp-block-navigation-placeholder {
|
|
outline: none;
|
|
padding: 0;
|
|
box-shadow: none;
|
|
background: none;
|
|
min-height: 0;
|
|
color: inherit;
|
|
}
|
|
.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset {
|
|
font-size: inherit;
|
|
}
|
|
.components-placeholder.wp-block-navigation-placeholder .components-placeholder__fieldset .components-button {
|
|
margin-bottom: 0;
|
|
}
|
|
.is-selected .components-placeholder.wp-block-navigation-placeholder {
|
|
color: #1e1e1e;
|
|
}
|
|
|
|
.wp-block-navigation-placeholder .components-spinner {
|
|
margin-top: -4px;
|
|
margin-left: 4px;
|
|
vertical-align: middle;
|
|
margin-right: 7px;
|
|
}
|
|
|
|
@keyframes loadingpulse {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.wp-block-navigation-placeholder__preview {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
.wp-block-navigation-placeholder__preview.is-loading {
|
|
animation: loadingpulse 1s linear infinite;
|
|
animation-delay: 0.5s;
|
|
}
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-item.wp-block-navigation-item {
|
|
position: relative;
|
|
min-width: 72px;
|
|
}
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-item.wp-block-navigation-item::before {
|
|
display: block;
|
|
content: "";
|
|
border-radius: 2px;
|
|
background: currentColor;
|
|
height: 16px;
|
|
width: 100%;
|
|
}
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-placeholder__preview-search-icon {
|
|
height: 24px;
|
|
}
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-placeholder__preview-search-icon svg {
|
|
fill: currentColor;
|
|
}
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-item.wp-block-navigation-item,
|
|
.wp-block-navigation-placeholder__preview .wp-block-navigation-placeholder__preview-search-icon {
|
|
opacity: 0.3;
|
|
}
|
|
.wp-block-navigation.is-selected .wp-block-navigation-placeholder__preview:not(.is-loading) {
|
|
display: flex;
|
|
opacity: 0;
|
|
width: 0;
|
|
overflow: hidden;
|
|
flex-wrap: nowrap;
|
|
flex: 0;
|
|
}
|
|
.wp-block-navigation.is-selected .is-small .wp-block-navigation-placeholder__preview:not(.is-loading), .wp-block-navigation.is-selected .is-medium .wp-block-navigation-placeholder__preview:not(.is-loading) {
|
|
display: none;
|
|
}
|
|
|
|
.wp-block-navigation-placeholder__controls {
|
|
border-radius: 2px;
|
|
background-color: #fff;
|
|
box-shadow: inset 0 0 0 1px #1e1e1e;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
display: none;
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 4px 8px;
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.wp-block-navigation.is-selected .wp-block-navigation-placeholder__controls {
|
|
display: flex;
|
|
}
|
|
.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator,
|
|
.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator + hr,
|
|
.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions > :nth-last-child(3),
|
|
.is-medium .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions > :nth-last-child(2) {
|
|
display: none;
|
|
}
|
|
.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions {
|
|
flex-direction: column;
|
|
}
|
|
.is-small .wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions hr {
|
|
display: none;
|
|
}
|
|
.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__icon {
|
|
margin-right: 12px;
|
|
height: 36px;
|
|
}
|
|
.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator {
|
|
display: flex;
|
|
padding: 0 6px 0 0;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
line-height: 0;
|
|
min-height: 36px;
|
|
margin-left: 4px;
|
|
}
|
|
.wp-block-navigation-placeholder__controls .wp-block-navigation-placeholder__actions__indicator svg {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.wp-block-navigation .components-placeholder.is-medium .components-placeholder__fieldset {
|
|
flex-direction: row !important;
|
|
}
|
|
|
|
.wp-block-navigation-placeholder__actions {
|
|
display: flex;
|
|
font-size: 13px;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
gap: 6px;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
.wp-block-navigation-placeholder__actions .components-dropdown,
|
|
.wp-block-navigation-placeholder__actions > .components-button {
|
|
margin-right: 0;
|
|
}
|
|
.wp-block-navigation-placeholder__actions.wp-block-navigation-placeholder__actions hr {
|
|
border: 0;
|
|
min-height: 1px;
|
|
min-width: 1px;
|
|
background-color: #1e1e1e;
|
|
margin: auto 0;
|
|
height: 100%;
|
|
max-height: 16px;
|
|
}
|
|
|
|
/**
|
|
* Mobile menu.
|
|
*/
|
|
@media (min-width: 600px) {
|
|
.wp-block-navigation__responsive-container:not(.is-menu-open) .components-button.wp-block-navigation__responsive-container-close {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.wp-block-navigation__responsive-container.is-menu-open {
|
|
position: fixed;
|
|
top: 155px;
|
|
}
|
|
@media (min-width: 782px) {
|
|
.wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 93px;
|
|
}
|
|
}
|
|
@media (min-width: 782px) {
|
|
.wp-block-navigation__responsive-container.is-menu-open {
|
|
left: 36px;
|
|
}
|
|
}
|
|
@media (min-width: 960px) {
|
|
.wp-block-navigation__responsive-container.is-menu-open {
|
|
left: 160px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 782px) {
|
|
.has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 141px;
|
|
}
|
|
}
|
|
|
|
.is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
|
|
.is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 141px;
|
|
}
|
|
|
|
.is-sidebar-opened .wp-block-navigation__responsive-container.is-menu-open {
|
|
right: 280px;
|
|
}
|
|
|
|
.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
|
|
left: 0;
|
|
top: 155px;
|
|
}
|
|
@media (min-width: 782px) {
|
|
.is-fullscreen-mode .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 61px;
|
|
}
|
|
}
|
|
@media (min-width: 782px) {
|
|
.is-fullscreen-mode .has-fixed-toolbar .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 109px;
|
|
}
|
|
}
|
|
.is-fullscreen-mode .is-mobile-preview .wp-block-navigation__responsive-container.is-menu-open,
|
|
.is-fullscreen-mode .is-tablet-preview .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 109px;
|
|
}
|
|
|
|
body.editor-styles-wrapper .wp-block-navigation__responsive-container.is-menu-open {
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.wp-block-navigation__responsive-close {
|
|
pointer-events: none;
|
|
}
|
|
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-container-close,
|
|
.wp-block-navigation__responsive-close .block-editor-block-list__layout * {
|
|
pointer-events: all;
|
|
}
|
|
}
|
|
.wp-block-navigation__responsive-close .wp-block-pages-list__item__link {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.components-button.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open,
|
|
.components-button.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
|
|
padding: 0;
|
|
height: auto;
|
|
color: inherit;
|
|
}
|
|
|
|
.is-menu-open .wp-block-navigation__responsive-container-content * .block-list-appender {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
@keyframes fadein {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.wp-block-navigation__unsaved-changes {
|
|
position: relative;
|
|
}
|
|
.wp-block-navigation__unsaved-changes .components-spinner {
|
|
position: absolute;
|
|
top: calc(50% - 18px / 2);
|
|
left: calc(50% - 18px / 2);
|
|
opacity: 0;
|
|
animation: 0.5s linear 2s normal forwards fadein;
|
|
}
|
|
|
|
@keyframes fadeouthalf {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
.wp-block-navigation__unsaved-changes-overlay.is-saving {
|
|
opacity: 1;
|
|
animation: 0.5s linear 2s normal forwards fadeouthalf;
|
|
}
|
|
|
|
.wp-block-navigation-delete-menu-button {
|
|
width: 100%;
|
|
justify-content: center;
|
|
margin-bottom: 16px;
|
|
} |