Skip to content

Commit

Permalink
Fix for Open issue Automattic#768 (Site title color in the Customizer)
Browse files Browse the repository at this point in the history
updated the customizer selectors to match the custom-header.php line 61 & 70

matched the css selectors from line 30 as per David Kennedy's recommendation
  • Loading branch information
cralberto11 committed Nov 11, 2015
1 parent 13f5705 commit 28b95ef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@
'position': 'absolute'
} );
} else {
$( '.site-title a, .site-description' ).css( {
$( '.site-title, .site-description' ).css( {
'clip': 'auto',
'color': to,
'position': 'relative'
} );
$( '.site-title a, .site-description' ).css( {
'color': to
} );
}
} );
} );
Expand Down

0 comments on commit 28b95ef

Please sign in to comment.