Changeset 44202
- Timestamp:
- 12/14/2018 10:28:18 PM (6 years ago)
- Location:
- branches/5.0/src/wp-content/themes/twentynineteen
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/functions.php
r44196 r44202 247 247 ?> 248 248 <script> 249 249 /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); 250 250 </script> 251 251 <?php -
branches/5.0/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
r44201 r44202 429 429 &.alignright, 430 430 &.alignleft { 431 431 432 @include media(tablet) { 432 433 padding: $size__spacing-unit calc(2 * #{$size__spacing-unit}); -
branches/5.0/src/wp-content/themes/twentynineteen/style-editor.css
r44201 r44202 333 333 width: 100%; 334 334 max-width: 100%; 335 padding: calc(1.375 * 1rem); 336 } 337 338 .wp-block[data-type="core/cover"][data-align="left"] .wp-block-cover p, 339 .wp-block[data-type="core/cover"][data-align="right"] .wp-block-cover p { 340 padding-left: 0; 341 padding-right: 0; 335 342 } 336 343 … … 338 345 .wp-block[data-type="core/cover"][data-align="left"] .wp-block-cover, 339 346 .wp-block[data-type="core/cover"][data-align="right"] .wp-block-cover { 340 padding: 1rem;347 padding: calc(2.75 * 1rem) calc(2.75 * 1rem) calc(3.125 * 1rem); 341 348 } 342 349 } -
branches/5.0/src/wp-content/themes/twentynineteen/style-editor.scss
r44193 r44202 295 295 width: 100%; 296 296 max-width: 100%; 297 } 298 299 @include media(tablet) { 300 301 .wp-block-cover { 302 padding: $size__spacing-unit; 297 padding: calc(1.375 * #{$size__spacing-unit}); 298 299 p { 300 padding-left: 0; 301 padding-right: 0; 302 } 303 304 @include media(tablet) { 305 padding: calc(2.75 * #{$size__spacing-unit}) calc(2.75 * #{$size__spacing-unit}) calc(3.125 * #{$size__spacing-unit}); 303 306 } 304 307 } -
branches/5.0/src/wp-content/themes/twentynineteen/template-parts/post/author-bio.php
r44199 r44202 14 14 <?php 15 15 printf( 16 /* translators: %s: post author */16 /* translators: %s: post author */ 17 17 __( 'Published by %s', 'twentynineteen' ), 18 18 esc_html( get_the_author() )
Note: See TracChangeset
for help on using the changeset viewer.