Make WordPress Core

Ticket #46643: 46643.patch

File 46643.patch, 4.4 KB (added by kjellr, 5 years ago)
  • src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss

     
    741741        //! Columns
    742742        .wp-block-columns {
    743743
    744                 &.alignfull {
    745                         padding-left: $size__spacing-unit;
    746                         padding-right: $size__spacing-unit;
    747                 }
     744                .wp-block-column > * {
    748745
    749                 @include media(mobile) {
    750                         flex-wrap: nowrap;
     746                        &:first-child {
     747                                margin-top: 0;
     748                        }
     749
     750                        &:last-child {
     751                                margin-bottom: 0;
     752                        }
    751753                }
    752754
    753755                @include media(tablet) {
    754                         .wp-block-column > * {
     756                        flex-wrap: nowrap;
    755757
    756                                 &:first-child {
    757                                         margin-top: 0;
    758                                 }
    759 
    760                                 &:last-child {
    761                                         margin-bottom: 0;
    762                                 }
     758                        .wp-block-column:not(:first-child) {
     759                                margin-left: 32px;
    763760                        }
    764 
    765                         &[class*='has-'] > * {
    766                                 margin-right: $size__spacing-unit;
    767 
    768                                 &:last-child {
    769                                         margin-right: 0;
    770                                 }
    771                         }
    772 
    773                         &.alignfull,
    774                         &.alignfull .wp-block-column {
    775                                 padding-left: calc(2 * #{$size__spacing-unit});
    776                                 padding-right: calc(2 * #{$size__spacing-unit});
    777                         }
    778761                }
    779762        }
    780763
  • src/wp-content/themes/twentynineteen/style-rtl.css

     
    60026002  word-break: break-word;
    60036003}
    60046004
    6005 .entry .entry-content .wp-block-columns.alignfull {
    6006   padding-right: 1rem;
    6007   padding-left: 1rem;
     6005.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
     6006  margin-top: 0;
    60086007}
    60096008
    6010 @media only screen and (min-width: 600px) {
    6011   .entry .entry-content .wp-block-columns {
    6012     flex-wrap: nowrap;
    6013   }
     6009.entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
     6010  margin-bottom: 0;
    60146011}
    60156012
    60166013@media only screen and (min-width: 768px) {
    6017   .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
    6018     margin-top: 0;
     6014  .entry .entry-content .wp-block-columns {
     6015    flex-wrap: nowrap;
    60196016  }
    6020   .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
    6021     margin-bottom: 0;
     6017  .entry .entry-content .wp-block-columns .wp-block-column:not(:first-child) {
     6018    margin-right: 32px;
    60226019  }
    6023   .entry .entry-content .wp-block-columns[class*='has-'] > * {
    6024     margin-left: 1rem;
    6025   }
    6026   .entry .entry-content .wp-block-columns[class*='has-'] > *:last-child {
    6027     margin-left: 0;
    6028   }
    6029   .entry .entry-content .wp-block-columns.alignfull,
    6030   .entry .entry-content .wp-block-columns.alignfull .wp-block-column {
    6031     padding-right: calc(2 * 1rem);
    6032     padding-left: calc(2 * 1rem);
    6033   }
    60346020}
    60356021
    60366022.entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  • src/wp-content/themes/twentynineteen/style.css

     
    60146014  word-break: break-word;
    60156015}
    60166016
    6017 .entry .entry-content .wp-block-columns.alignfull {
    6018   padding-left: 1rem;
    6019   padding-right: 1rem;
     6017.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
     6018  margin-top: 0;
    60206019}
    60216020
    6022 @media only screen and (min-width: 600px) {
    6023   .entry .entry-content .wp-block-columns {
    6024     flex-wrap: nowrap;
    6025   }
     6021.entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
     6022  margin-bottom: 0;
    60266023}
    60276024
    60286025@media only screen and (min-width: 768px) {
    6029   .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
    6030     margin-top: 0;
     6026  .entry .entry-content .wp-block-columns {
     6027    flex-wrap: nowrap;
    60316028  }
    6032   .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
    6033     margin-bottom: 0;
     6029  .entry .entry-content .wp-block-columns .wp-block-column:not(:first-child) {
     6030    margin-left: 32px;
    60346031  }
    6035   .entry .entry-content .wp-block-columns[class*='has-'] > * {
    6036     margin-right: 1rem;
    6037   }
    6038   .entry .entry-content .wp-block-columns[class*='has-'] > *:last-child {
    6039     margin-right: 0;
    6040   }
    6041   .entry .entry-content .wp-block-columns.alignfull,
    6042   .entry .entry-content .wp-block-columns.alignfull .wp-block-column {
    6043     padding-left: calc(2 * 1rem);
    6044     padding-right: calc(2 * 1rem);
    6045   }
    60466032}
    60476033
    60486034.entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta {