Make WordPress Core

Changeset 39397


Ignore:
Timestamp:
12/01/2016 12:03:27 AM (8 years ago)
Author:
davidakennedy
Message:

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

Props laurelfulford, ocean90.

Fixes #38980.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyseventeen/inc/custom-header.php

    r39300 r39397  
    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.