diff --git a/src/wp-content/themes/twentyseventeen/assets/css/colors-dark.css b/src/wp-content/themes/twentyseventeen/assets/css/colors-dark.css
index 449f0623a2..f7b977dca0 100644
a
|
b
|
body.colors-dark, |
289 | 289 | color: #bbb; |
290 | 290 | } |
291 | 291 | |
292 | | .colors-dark button:hover:not( .mejs-container > button ), |
293 | | .colors-dark button:focus, |
| 292 | .colors-dark :not( .mejs-button ) > button:hover, |
| 293 | .colors-dark :not( .mejs-button ) > button:focus, |
294 | 294 | .colors-dark input[type="button"]:hover, |
295 | 295 | .colors-dark input[type="button"]:focus, |
296 | 296 | .colors-dark input[type="submit"]:hover, |
diff --git a/src/wp-content/themes/twentyseventeen/inc/color-patterns.php b/src/wp-content/themes/twentyseventeen/inc/color-patterns.php
index cfd243f67a..38e4257ef2 100644
a
|
b
|
body.colors-custom, |
307 | 307 | color: hsl( ' . $hue . ', ' . $saturation . ', 46% ); /* base: #767676; */ |
308 | 308 | } |
309 | 309 | |
310 | | .colors-custom button:hover:not( .mejs-container > button ), |
311 | | .colors-custom button:focus, |
| 310 | .colors-custom :not( .mejs-button ) > button:hover, |
| 311 | .colors-custom :not( .mejs-button ) > button:focus, |
312 | 312 | .colors-custom input[type="button"]:hover, |
313 | 313 | .colors-custom input[type="button"]:focus, |
314 | 314 | .colors-custom input[type="submit"]:hover, |
diff --git a/src/wp-content/themes/twentyseventeen/style.css b/src/wp-content/themes/twentyseventeen/style.css
index 7ca4f6c950..c41165947f 100644
a
|
b
|
input[type="submit"].secondary { |
1034 | 1034 | color: #222; |
1035 | 1035 | } |
1036 | 1036 | |
1037 | | button:hover:not( .mejs-container > button ), |
1038 | | button:focus, |
| 1037 | :not( .mejs-button ) > button:hover, |
| 1038 | :not( .mejs-button ) > button:focus, |
1039 | 1039 | input[type="button"]:hover, |
1040 | 1040 | input[type="button"]:focus, |
1041 | 1041 | input[type="submit"]:hover, |