mirror of
https://github.com/woocommerce/storefront.git
synced 2025-08-21 04:11:59 +08:00
Add focus color override to all input methods
This commit is contained in:
parent
40282b5afc
commit
fecce20640
1 changed files with 10 additions and 4 deletions
|
@ -730,17 +730,23 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
|
|||
color: ' . storefront_adjust_color_brightness( $storefront_theme_mods['text_color'], 5 ) . ';
|
||||
}
|
||||
|
||||
a {
|
||||
a {
|
||||
color: ' . $storefront_theme_mods['accent_color'] . ';
|
||||
}
|
||||
|
||||
a:focus,
|
||||
.button:focus,
|
||||
.button.alt:focus,
|
||||
button:focus,
|
||||
.button.alt:focus,
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:focus {
|
||||
input[type="submit"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="tel"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus {
|
||||
outline-color: ' . $storefront_theme_mods['accent_color'] . ';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue