mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 00:39:33 +01:00
f05f235042
Adds the required infrastructure to render block-based themes. This is sourced from the Gutenberg plugin. Fixes #54335. Props bernhard-reiter, youknowriad, ntsekouras, hellofromtonya. Built from https://develop.svn.wordpress.org/trunk@52062 git-svn-id: http://core.svn.wordpress.org/trunk@51654 1a063a9b-81f0-0310-95a4-ce76da25c4cd
138 lines
3.8 KiB
CSS
138 lines
3.8 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.
|
|
*/
|
|
.wp-block-template-part__placeholder-preview-dropdown-content .components-popover__content,
|
|
.wp-block-template-part__preview-dropdown-content .components-popover__content {
|
|
min-width: 320px;
|
|
padding: 0;
|
|
}
|
|
|
|
.wp-block-template-part__selection-preview-search-form {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.wp-block-template-part__selection-preview-container {
|
|
background: #fff;
|
|
padding-bottom: 16px;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item {
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
margin-top: 16px;
|
|
transition: all 0.05s ease-in-out;
|
|
border: 1px solid #ddd;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item:hover {
|
|
border: 1px solid var(--wp-admin-theme-color);
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item:focus {
|
|
box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
outline: 2px solid transparent;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item.is-placeholder {
|
|
min-height: 100px;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item .block-editor-block-preview__container {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-preview-item-title {
|
|
padding: 4px;
|
|
font-size: 12px;
|
|
text-align: left;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-panel-group-header {
|
|
padding: 16px 16px 0;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-panel-group-content {
|
|
padding: 0 16px;
|
|
}
|
|
.wp-block-template-part__selection-preview-container .wp-block-template-part__selection-panel-group-title {
|
|
color: var(--wp-admin-theme-color);
|
|
text-transform: uppercase;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.wp-block-template-part__placeholder-create-new__title-form .wp-block-template-part__placeholder-create-new__title-form-actions {
|
|
padding-top: 12px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
.wp-block-template-part__placeholder-create-new__title-form .wp-block-template-part__placeholder-create-new__title-form-actions .components-flex-item {
|
|
margin-left: 12px;
|
|
} |