Changeset 57637
- Timestamp:
- 02/15/2024 10:16:59 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentynineteen/inc/color-patterns.php
r57300 r57637 215 215 * - buttons 216 216 */ 217 .editor- block-list__layout .editor-block-list__block a,218 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color),219 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:hover .wp-block-button__link:not(.has-text-color),220 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:focus .wp-block-button__link:not(.has-text-color),221 .editor- block-list__layout .editor-block-list__block .wp-block-button.is-style-outline:active .wp-block-button__link:not(.has-text-color),222 .editor- block-list__layout .editor-block-list__block .wp-block-file .wp-block-file__textlink {217 .editor-styles-wrapper .wp-block a, 218 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color), 219 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline:hover .wp-block-button__link:not(.has-text-color), 220 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline:focus .wp-block-button__link:not(.has-text-color), 221 .editor-styles-wrapper .wp-block .wp-block-button.is-style-outline:active .wp-block-button__link:not(.has-text-color), 222 .editor-styles-wrapper .wp-block .wp-block-file .wp-block-file__textlink { 223 223 color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 224 224 } 225 225 226 .editor- block-list__layout .editor-block-list__block.wp-block-quote:not(.is-large):not(.is-style-large),227 .editor-styles-wrapper . editor-block-list__layout.wp-block-freeform blockquote {226 .editor-styles-wrapper .wp-block.wp-block-quote:not(.is-large):not(.is-style-large), 227 .editor-styles-wrapper .wp-block .wp-block-freeform blockquote { 228 228 border-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 229 229 } 230 230 231 .editor- block-list__layout .editor-block-list__block.wp-block-pullquote.is-style-solid-color:not(.has-background-color) {231 .editor-styles-wrapper .wp-block.wp-block-pullquote.is-style-solid-color:not(.has-background-color) { 232 232 background-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 233 233 } 234 234 235 .editor- block-list__layout .editor-block-list__block.wp-block-file .wp-block-file__button,236 .editor- block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link,237 .editor- block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:active,238 .editor- block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus,239 .editor- block-list__layout .editor-block-list__block .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {235 .editor-styles-wrapper .wp-block.wp-block-file .wp-block-file__button, 236 .editor-styles-wrapper .wp-block .wp-block-button:not(.is-style-outline) .wp-block-button__link, 237 .editor-styles-wrapper .wp-block .wp-block-button:not(.is-style-outline) .wp-block-button__link:active, 238 .editor-styles-wrapper .wp-block .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus, 239 .editor-styles-wrapper .wp-block .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover { 240 240 background-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ 241 241 } 242 242 243 243 /* Hover colors */ 244 .editor- block-list__layout .editor-block-list__block a:hover,245 .editor- block-list__layout .editor-block-list__block a:active,246 .editor- block-list__layout .editor-block-list__block.wp-block-file .wp-block-file__textlink:hover {244 .editor-styles-wrapper .wp-block a:hover, 245 .editor-styles-wrapper .wp-block a:active, 246 .editor-styles-wrapper .wp-block.wp-block-file .wp-block-file__textlink:hover { 247 247 color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness_hover . ' ); /* base: #005177; */ 248 248 } 249 249 250 250 /* Do not overwrite solid color pullquote or cover links */ 251 .editor- block-list__layout .editor-block-list__block.wp-block-pullquote.is-style-solid-color a,252 .editor- block-list__layout .editor-block-list__block.wp-block-cover a {251 .editor-styles-wrapper .wp-block.wp-block-pullquote.is-style-solid-color a, 252 .editor-styles-wrapper .wp-block.wp-block-cover a { 253 253 color: inherit; 254 254 }
Note: See TracChangeset
for help on using the changeset viewer.