Make WordPress Core

Changeset 39398


Ignore:
Timestamp:
12/01/2016 12:11:26 AM (8 years ago)
Author:
helen
Message:

Twenty Seventeen: Make sure header text color is applied when color schemes are active.

Props laurelfulford, ocean90.

Merges [39397] to the 4.7 branch.
Fixes #38980 for 4.7.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/src/wp-content/themes/twentyseventeen/inc/custom-header.php

    r39300 r39398  
    8585    ?>
    8686        .site-title a,
    87          body.has-header-image .site-title a,
     87        .colors-dark .site-title a,
     88        .colors-custom .site-title a,
     89        body.has-header-image .site-title a,
     90        body.has-header-image.colors-dark .site-title a,
     91        body.has-header-image.colors-custom .site-title a,
    8892        .site-description,
    89         body.has-header-image .site-description {
     93        .colors-dark .site-description,
     94        .colors-custom .site-description,
     95        body.has-header-image .site-description,
     96        body.has-header-image.colors-dark .site-description,
     97        body.has-header-image.colors-custom .site-description {
    9098            color: #<?php echo esc_attr( $header_text_color ); ?>;
    9199        }
Note: See TracChangeset for help on using the changeset viewer.