| 4 | |
| 5 | Edit: sorta changed my mind on this on further review. The file wp-includes/js/mediaelement/wp-mediaelement.css does contain the four default color lines. |
| 6 | |
| 7 | |
| 8 | {{{ |
| 9 | .mejs-container, .mejs-embed, .mejs-embed body { |
| 10 | background: #464646; |
| 11 | } |
| 12 | |
| 13 | .mejs-controls .mejs-time-rail .mejs-time-loaded { |
| 14 | background: #21759b; |
| 15 | } |
| 16 | |
| 17 | .mejs-controls .mejs-time-rail .mejs-time-current { |
| 18 | background: #d54e21; |
| 19 | } |
| 20 | |
| 21 | .me-cannotplay { |
| 22 | width: auto !important; |
| 23 | } |
| 24 | }}} |
| 25 | |
| 26 | These defaults are an awkward orange over blue and we should just change them to be white over blue. |
| 27 | |
| 28 | If I were to fix this issue right now I would just change |
| 29 | |
| 30 | d54e21 to efefef and |
| 31 | 21759b to 3cacc8 |
| 32 | |
| 33 | to match the flash player's colors (white over blue). |