Make WordPress Core

Ticket #47811: 47811.patch

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

     
    674674                        height: inherit;
    675675                        text-align: center;
    676676
     677                        // Only apply the default dot color if there's no separator color specified.
     678                        &:not(.has-text-color):not(.has-background) {
     679                                color: $color__text-light;
     680                        }
     681
    677682                        &:before {
    678                                 color: $color__text-light;
    679683                                font-size: $font__size-lg;
    680684                                letter-spacing: $font__size-sm;
    681685                                padding-left: $font__size-sm;
  • src/wp-content/themes/twentynineteen/style-editor.css

     
    11351135
    11361136/** === Separator === */
    11371137.wp-block-separator:not(.is-style-dots) {
    1138   border-bottom: 2px solid #767676;
     1138  background-color: #767676;
     1139  height: 2px;
    11391140}
    11401141
    11411142.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
     
    11431144  margin-left: 0;
    11441145}
    11451146
     1147.wp-block-separator.is-style-dots {
     1148  color: #767676;
     1149}
     1150
    11461151.wp-block-separator.is-style-dots:before {
    1147   color: #767676;
    11481152  font-size: 1.6875em;
    11491153  letter-spacing: calc(2 * 1rem);
    11501154  padding-left: calc(2 * 1rem);
  • src/wp-content/themes/twentynineteen/style-editor.scss

     
    588588.wp-block-separator {
    589589
    590590        &:not(.is-style-dots) {
    591                 border-bottom: 2px solid $color__text-light;
     591                background-color: $color__text-light;
     592                height: 2px;
    592593        }
    593594
    594595        &:not(.is-style-wide):not(.is-style-dots) {
     
    596597                margin-left: 0;
    597598        }
    598599
     600        &.is-style-dots {
     601                color: $color__text-light;
     602        }
     603
    599604        &.is-style-dots:before {
    600                 color: $color__text-light;
    601605                font-size: $font__size-lg;
    602606                letter-spacing: calc(2 * #{$size__spacing-unit});
    603607                padding-left: calc(2 * #{$size__spacing-unit});
  • src/wp-content/themes/twentynineteen/style-rtl.css

     
    60006000  }
    60016001}
    60026002
     6003.entry .entry-content .wp-block-separator.is-style-dots:not(.has-text-color):not(.has-background),
     6004.entry .entry-content hr.is-style-dots:not(.has-text-color):not(.has-background) {
     6005  color: #767676;
     6006}
     6007
    60036008.entry .entry-content .wp-block-separator.is-style-dots:before,
    60046009.entry .entry-content hr.is-style-dots:before {
    6005   color: #767676;
    60066010  font-size: 1.6875em;
    60076011  letter-spacing: 0.88889em;
    60086012  padding-right: 0.88889em;
  • src/wp-content/themes/twentynineteen/style.css

     
    60126012  }
    60136013}
    60146014
     6015.entry .entry-content .wp-block-separator.is-style-dots:not(.has-text-color):not(.has-background),
     6016.entry .entry-content hr.is-style-dots:not(.has-text-color):not(.has-background) {
     6017  color: #767676;
     6018}
     6019
    60156020.entry .entry-content .wp-block-separator.is-style-dots:before,
    60166021.entry .entry-content hr.is-style-dots:before {
    6017   color: #767676;
    60186022  font-size: 1.6875em;
    60196023  letter-spacing: 0.88889em;
    60206024  padding-left: 0.88889em;