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