forked from mirror/_s
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:
commit
666dbada97
|
@ -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
|
||||
} );
|
||||
}
|
||||
} );
|
||||
} );
|
||||
|
|
Reference in New Issue