WordPress build repository browser

Changeset 58091

Timestamp:
07/08/2024 03:44:16 PM (3 weeks ago)
Author:
karmatosed
Message:

Twenty Sixteen: Fixes pullquote issues with border spacing.

Pullquote spacings wasn't reflected on front when using border settings. This caused double borders which was due to styling but this was done before optional borders were implemented. The pull request chosen presumes when you have an external border you no longer want the internal one but does look visually better.

Props nidhidhandhukiya, huzaifaalmesbah, poena, sabernhardt.
Fixes #59754.

Built from https://develop.svn.wordpress.org/trunk@58689

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentysixteen/css/blocks.css

    r56806 r58091  
    172172.wp-block-pullquote blockquote {
    173173    color: #686868;
    174     border-left: 4px solid #1a1a1a;
     174    border;
    175175    margin: 0;
    176     padding: 0 0 0 24px;
    177 }
    178 
    179 .rtl .wp-block-pullquote blockquote {
    180     border-left: none;
    181     border-right: 4px solid #1a1a1a;
    182     padding: 0 24px 0 0;
     176    padding: 0;
     177}
     178
     179.entry-content .wp-block-pullquote blockquote:not(.alignleft):not(.alignright) {
     180    margin-left: 0;
     181    margin-right: 0;
     182}
     183
     184.wp-block-pullquote:where([style*="border-width"]) blockquote {
     185    padding-left: 1rem;
     186    padding-right: 1rem;
    183187}
    184188
     
    391395}
    392396
     397
     398
     399
     400
    393401.has-medium-gray-color {
    394402    color: #686868;
     
    399407}
    400408
     409
     410
     411
     412
    401413.has-light-gray-color {
    402414    color: #e5e5e5;
     
    407419}
    408420
     421
     422
     423
     424
    409425.has-white-color {
    410426    color: #fff;
     
    415431}
    416432
     433
     434
     435
     436
    417437.has-blue-gray-color {
    418438    color: #4d545c;
     
    423443}
    424444
     445
     446
     447
     448
    425449.has-bright-blue-color {
    426450    color: #007acc;
     
    431455}
    432456
     457
     458
     459
     460
    433461.has-light-blue-color {
    434462    color: #9adffd;
     
    439467}
    440468
     469
     470
     471
     472
    441473.has-dark-brown-color {
    442474    color: #402b30;
     
    447479}
    448480
     481
     482
     483
     484
    449485.has-medium-brown-color {
    450486    color: #774e24;
     
    455491}
    456492
     493
     494
     495
     496
    457497.has-dark-red-color {
    458498    color: #640c1f;
     
    463503}
    464504
     505
     506
     507
     508
    465509.has-bright-red-color {
    466510    color: #ff675f;
     
    471515}
    472516
     517
     518
     519
     520
    473521.has-yellow-color {
    474522    color: #ffef8e;
     
    478526    background-color: #ffef8e;
    479527}
     528
     529
     530
     531
  • trunk/wp-content/themes/twentysixteen/css/editor-blocks.css

    r58064 r58091  
    500500/* Pullquote */
    501501
    502 .editor-block-list__block .wp-block-pullquote blockquote {
     502.editor- .wp-block-pullquote blockquote {
    503503    border: 0;
    504504    margin: 0;
    505505    padding: 0;
     506
     507
     508
     509
     510
    506511}
    507512
  • trunk/wp-includes/version.php

    r58090 r58091  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.7-alpha-58688';
     19$wp_version = '6.7-alpha-5868';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.