Changeset 44193
- Timestamp:
- 12/14/2018 08:41:25 PM (6 years ago)
- Location:
- branches/5.0/src/wp-content/themes/twentynineteen
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/inc/template-functions.php
r44187 r44193 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 -
branches/5.0/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
r44189 r44193 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; -
branches/5.0/src/wp-content/themes/twentynineteen/style-editor.css
r44189 r44193 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, -
branches/5.0/src/wp-content/themes/twentynineteen/style-editor.scss
r44189 r44193 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 -
branches/5.0/src/wp-content/themes/twentynineteen/style-rtl.css
r44189 r44193 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; -
branches/5.0/src/wp-content/themes/twentynineteen/style.css
r44189 r44193 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.