Merge pull request #785 from carl-alberto/fixCustomizerHeaderTextColor

Fix Customizer header text color, applying the color change to the `a`, not the parent element.
This commit is contained in:
David A. Kennedy 2015-11-12 18:56:33 -05:00
commit 666dbada97
1 changed files with 3 additions and 1 deletions

View File

@ -29,9 +29,11 @@
} else {
$( '.site-title a, .site-description' ).css( {
'clip': 'auto',
'color': to,
'position': 'relative'
} );
$( '.site-title a, .site-description' ).css( {
'color': to
} );
}
} );
} );