12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * These styles should be loaded by the Block Editor only
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- @import "../../varia/sass/abstracts/imports";
- /**
- * Child Theme Name
- */
- @import "config-child-theme-deep";
- /**
- * Base
- * - Reset the browser
- */
- @import "../../varia/sass/base/editor";
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- @import "../../varia/sass/elements/editor";
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides
- */
- @import "../../varia/sass/blocks/editor";
- /**
- * Extras
- */
- .editor-post-title__block .editor-post-title__input {
- font-weight: 600;
- }
- .wp-block-media-text {
- background: #{map-deep-get($config-global, "color", "secondary", "default")};
- color: #{map-deep-get($config-global, "color", "background", "default")};
- &.is-style-inset-borders:before {
- border-color: #{map-deep-get($config-global, "color", "background", "default")};
- }
- }
|