Changeset 44302
- Timestamp:
- 12/18/2018 10:23:06 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/5.0 merged: 44192-44193
- Property svn:mergeinfo changed
-
trunk/src/wp-content/themes/twentynineteen/inc/color-patterns.php
r44298 r44302 15 15 $primary_color = 199; 16 16 if ( 'default' !== get_theme_mod( 'primary_color', 'default' ) ) { 17 $primary_color = absint( get_theme_mod( 'primary_color ', 199 ) );17 $primary_color = absint( get_theme_mod( 'primary_color_hue', 199 ) ); 18 18 } 19 19 -
trunk/src/wp-content/themes/twentynineteen/inc/template-functions.php
r44298 r44302 107 107 */ 108 108 function twentynineteen_image_filters_enabled() { 109 return 'inactive'!== get_theme_mod( 'image_filter', 1 );109 return 0 !== get_theme_mod( 'image_filter', 1 ); 110 110 } 111 111 -
trunk/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
r44300 r44302 199 199 &.is-style-outline .wp-block-button__link:focus, 200 200 &.is-style-outline .wp-block-button__link:active { 201 @include button-all-transition; 201 @include button-all-transition; 202 202 border-width: 2px; 203 border-style: solid; 203 border-style: solid; 204 204 205 205 &:not(.has-background) { … … 242 242 text-decoration: none; 243 243 } 244 } 245 } 246 247 .wp-block-archives, 248 .wp-block-categories { 249 250 &.aligncenter { 251 text-align: center; 244 252 } 245 253 } … … 789 797 .has-dark-gray-background-color, 790 798 .has-light-gray-background-color { 791 799 792 800 // Use white text against these backgrounds by default. 793 801 color: $color__background-body; -
trunk/src/wp-content/themes/twentynineteen/style-editor.css
r44300 r44302 615 615 } 616 616 617 /* Remove duplicate rule-line when a separator 618 * is followed by an H1, or H2 */ 619 .wp-block[data-type="core/separator"] + .wp-block[data-type="core/heading"] h1:before, 620 .wp-block[data-type="core/separator"] + .wp-block[data-type="core/heading"] h2:before { 621 display: none; 622 } 623 617 624 /** === Latest Posts, Archives, Categories === */ 618 625 ul.wp-block-archives, -
trunk/src/wp-content/themes/twentynineteen/style-editor.scss
r44300 r44302 599 599 padding-left: calc(2 * #{$size__spacing-unit}); 600 600 } 601 } 602 603 /* Remove duplicate rule-line when a separator 604 * is followed by an H1, or H2 */ 605 .wp-block[data-type="core/separator"] + .wp-block[data-type="core/heading"] h1:before, 606 .wp-block[data-type="core/separator"] + .wp-block[data-type="core/heading"] h2:before { 607 display: none; 601 608 } 602 609 -
trunk/src/wp-content/themes/twentynineteen/style-rtl.css
r44300 r44302 3691 3691 } 3692 3692 3693 .entry .entry-content .wp-block-archives.aligncenter, 3694 .entry .entry-content .wp-block-categories.aligncenter { 3695 text-align: center; 3696 } 3697 3693 3698 .entry .entry-content .wp-block-categories ul { 3694 3699 padding-top: 0.75rem; -
trunk/src/wp-content/themes/twentynineteen/style.css
r44300 r44302 3703 3703 } 3704 3704 3705 .entry .entry-content .wp-block-archives.aligncenter, 3706 .entry .entry-content .wp-block-categories.aligncenter { 3707 text-align: center; 3708 } 3709 3705 3710 .entry .entry-content .wp-block-categories ul { 3706 3711 padding-top: 0.75rem;
Note: See TracChangeset
for help on using the changeset viewer.