Make WordPress Core

Ticket #40843: 40843.diff

File 40843.diff, 1.5 KB (added by xkon, 7 years ago)

Fixes button:hover color on me-js

  • wp-content/themes/twentyseventeen/assets/css/colors-dark.css

     
    284284        color: #bbb;
    285285}
    286286
    287 .colors-dark button:hover,
     287.colors-dark button:hover:not( .mejs-play > button ),
    288288.colors-dark button:focus,
    289289.colors-dark input[type="button"]:hover,
    290290.colors-dark input[type="button"]:focus,
  • wp-content/themes/twentyseventeen/inc/color-patterns.php

     
    302302        color: hsl( ' . $hue . ', ' . $saturation . ', 46% ); /* base: #767676; */
    303303}
    304304
    305 .colors-custom button:hover,
     305.colors-custom button:hover:not( .mejs-play > button ),
    306306.colors-custom button:focus,
    307307.colors-custom input[type="button"]:hover,
    308308.colors-custom input[type="button"]:focus,
  • wp-content/themes/twentyseventeen/style.css

     
    10291029        color: #222;
    10301030}
    10311031
    1032 button:hover,
     1032button:hover:not( .mejs-play > button ),
    10331033button:focus,
    10341034input[type="button"]:hover,
    10351035input[type="button"]:focus,