mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-07 11:20:28 +01:00
0705b9daed
This brings a new version of the Gutenberg code from the [https://github.com/WordPress/gutenberg/tree/wp/6.0 wp/6.0 branch] into core. The following packages were updated: * `@wordpress/block-directory` to `3.4.12` * `@wordpress/block-editor` to `8.5.9` * `@wordpress/block-library` to `7.3.12` * `@wordpress/components` to `19.8.5` * `@wordpress/customize-widgets` to `3.3.12` * `@wordpress/edit-post` to `6.3.12` * `@wordpress/edit-site` to `4.3.12` * `@wordpress/edit-widgets` to `4.3.12` * `@wordpress/editor` to `12.5.9` * `@wordpress/format-library` to `3.4.9` * `@wordpress/icons` to `8.2.3` * `@wordpress/interface` to `4.5.6` * `@wordpress/list-reusable-blocks` to `3.4.5` * `@wordpress/nux` to `5.4.5` * `@wordpress/plugins` to `4.4.3` * `@wordpress/preferences` to `1.2.5` * `@wordpress/reusable-blocks` to `3.4.9` * `@wordpress/server-side-render` to `3.4.6` * `@wordpress/widgets` to `2.4.9` Props zieladam. See #56058. Built from https://develop.svn.wordpress.org/trunk@53644 git-svn-id: http://core.svn.wordpress.org/trunk@53203 1a063a9b-81f0-0310-95a4-ce76da25c4cd
82 lines
1.6 KiB
CSS
82 lines
1.6 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-post-comments-form * {
|
|
pointer-events: none;
|
|
}
|
|
.wp-block-post-comments-form *.block-editor-warning * {
|
|
pointer-events: auto;
|
|
} |