Make WordPress Core

Ticket #28860: 28860.patch

File 28860.patch, 1.8 KB (added by ocean90, 11 years ago)
  • src/wp-admin/css/colors/_admin.scss

     
    439439        border-bottom-color: $menu-background;
    440440}
    441441
    442 body.more-filters-opened .more-filters,
    443 body.more-filters-opened .more-filters:before {
     442body.more-filters-opened .more-filters {
    444443        color: $menu-text;
    445444        background-color: $menu-background;
    446445}
    447446
     447body.more-filters-opened .more-filters:before {
     448        color: $menu-text;
     449}
     450
    448451body.more-filters-opened .more-filters:hover,
    449 body.more-filters-opened .more-filters:focus,
     452body.more-filters-opened .more-filters:focus {
     453        background-color: $menu-highlight-background;
     454        color: $menu-highlight-text;
     455}
     456
    450457body.more-filters-opened .more-filters:hover:before,
    451458body.more-filters-opened .more-filters:focus:before {
    452         background-color: $menu-highlight-background;
    453459        color: $menu-highlight-text;
    454460}
    455461
  • src/wp-admin/css/themes.css

     
    11801180        margin: 0 10px;
    11811181        padding: 4px 6px;
    11821182}
    1183 body.more-filters-opened .more-filters,
    1184 body.more-filters-opened .more-filters:before {
     1183body.more-filters-opened .more-filters {
    11851184        background: #777;
    11861185        -webkit-border-radius: 2px;
    11871186        border-radius: 2px;
     
    11891188        color: #fff;
    11901189}
    11911190
     1191body.more-filters-opened .more-filters:before {
     1192        color: #fff;
     1193}
     1194
    11921195body.more-filters-opened .more-filters:hover,
    1193 body.more-filters-opened .more-filters:focus,
    1194 body.more-filters-opened .more-filters:hover:before,
    1195 body.more-filters-opened .more-filters:focus:before {
     1196body.more-filters-opened .more-filters:focus {
    11961197        background: rgb(46, 162, 204);
    11971198}
    11981199