Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #25076, comment 8


Ignore:
Timestamp:
02/26/2014 11:59:44 PM (10 years ago)
Author:
caseypatrickdriscoll
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25076, comment 8

    initial v1  
    22
    33It's the theme that controls the html5 player's color, so it will almost always be different from the flash player, which cannot be controlled by css.
     4
     5Edit: 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
     26These defaults are an awkward orange over blue and we should just change them to be white over blue.
     27
     28If I were to fix this issue right now I would just change
     29
     30d54e21 to efefef and
     3121759b to 3cacc8
     32
     33to match the flash player's colors (white over blue).