mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-29 23:09:44 +01:00
1765de0770
Sets `font-weight: 700` for these elements in the editor, in order to match the front end styles. It overrides the default admin `font-weight` of `600` for these HTML elements. Props nkeller15, audrasjb, sabernhardt, pavanpatil1, iamfarhan09, poena. Fixes #58383. Built from https://develop.svn.wordpress.org/trunk@56172 git-svn-id: http://core.svn.wordpress.org/trunk@55684 1a063a9b-81f0-0310-95a4-ce76da25c4cd
28 lines
539 B
SCSS
28 lines
539 B
SCSS
/**
|
|
* These styles should be loaded by the Block Editor only
|
|
*/
|
|
@import "01-settings/fonts";
|
|
@import "01-settings/global";
|
|
|
|
@import "02-tools/mixins";
|
|
@import "02-tools/functions";
|
|
|
|
@import "03-generic/breakpoints";
|
|
|
|
// Add relevant styles from "04-elements/misc"
|
|
b,
|
|
strong {
|
|
font-weight: 700;
|
|
}
|
|
|
|
@import "04-elements/blockquote";
|
|
@import "04-elements/media";
|
|
@import "04-elements/forms-editor";
|
|
@import "04-elements/links";
|
|
|
|
@import "05-blocks/blocks-editor";
|
|
|
|
@import "06-components/editor";
|
|
|
|
@import "07-utilities/color-palette";
|