ensure footer bar icon links use header link color, to match header bg:

- move footer bar override css rule after default footer link color rule
- use exact same specificity/not selectors so it's clear it's intended to override
This commit is contained in:
haszari 2020-04-21 10:59:34 +12:00
parent 334b6a7e38
commit 7b5c202a52

View file

@ -650,7 +650,6 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
.site-title a,
ul.menu li a,
.site-branding h1 a,
.site-footer .storefront-handheld-footer-bar a:not(.button),
button.menu-toggle,
button.menu-toggle:hover,
.handheld-navigation .dropdown-toggle {
@ -790,6 +789,10 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
color: ' . $storefront_theme_mods['footer_link_color'] . ';
}
.site-footer .storefront-handheld-footer-bar a:not(.button):not(.components-button) {
color: ' . $storefront_theme_mods['header_link_color'] . ';
}
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6, .site-footer .widget .widget-title, .site-footer .widget .widgettitle {
color: ' . $storefront_theme_mods['footer_heading_color'] . ';
}