Make WordPress Core

Changeset 47273


Ignore:
Timestamp:
02/11/2020 07:36:56 PM (4 years ago)
Author:
ianbelanger
Message:

Bundled Themes: Twenty Sixteen text color setting in pullquote block not applied.

Fixes the pullquote color setting by moving color from blockquote p to blockquote. Also adds the border-left to the front-end stylesheet to match the editor. Also adds styles for rtl pullquote.

Props kokkieh, desrosj, mukesh27, khushbu19, disillusia, aliveic, abrightclearweb, SergeyBiryukov.
Fixes #47019.

Location:
trunk/src/wp-content/themes/twentysixteen/css
Files:
2 edited

Legend:

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

    r44381 r47273  
    159159
    160160.wp-block-pullquote blockquote {
    161     border-left: 0;
     161    color: #686868;
     162    border-left: 4px solid #1a1a1a;
    162163    margin: 0;
    163     padding: 0;
     164    padding: 0 0 0 24px;
    164165}
    165166
    166167.rtl .wp-block-pullquote blockquote {
    167     border-right: 0;
     168    border-left: none;
     169    border-right: 4px solid #1a1a1a;
     170    padding: 0 24px 0 0;
    168171}
    169172
    170173.wp-block-pullquote p {
    171     color: #686868;
    172174    font-size: 19px;
    173175    font-size: 1.1875rem;
  • trunk/src/wp-content/themes/twentysixteen/css/editor-blocks.css

    r44381 r47273  
    506506
    507507.wp-block-pullquote blockquote > .editor-rich-text p {
    508     color: #686868;
    509508    font-size: 19px;
    510509    font-size: 1.1875rem;
Note: See TracChangeset for help on using the changeset viewer.