Make WordPress Core

Ticket #33061: 33061.4.patch

File 33061.4.patch, 1.8 KB (added by afercia, 10 years ago)
  • src/wp-admin/css/colors/_admin.scss

     
    9292}
    9393
    9494.view-switch a.current:before {
    95         color: $menu-background;
     95        color: $highlight-color;
    9696}
    9797
    98 .view-switch a:hover:before {
    99         color: $menu-bubble-background;
     98.column-comments .post-com-count-approved:hover .comment-count-approved,
     99.column-comments .post-com-count-approved:focus .comment-count-approved {
     100        color: $text-color;
     101        background-color: $highlight-color;
    100102}
    101103
    102 .post-com-count:hover:after {
    103         border-top-color: $menu-background;
     104.column-comments .post-com-count-approved:hover:after,
     105.column-comments .post-com-count-approved:focus:after {
     106        border-top-color: $highlight-color;
    104107}
    105 .post-com-count:hover span {
    106         color: $menu-text;
    107         background-color: $menu-background;
    108 }
    109108
    110 strong .post-com-count:after {
    111         border-top-color: $menu-bubble-background;
     109.column-comments .post-com-count-pending {
     110        color: $text-color;
     111        background-color: $notification-color;
    112112}
    113 strong .post-com-count span {
    114         background-color: $menu-bubble-background;
    115 }
    116113
    117114
    118115/* Admin Menu */
  • src/wp-admin/css/colors/light/colors.scss

     
    3636.theme-filter.current {
    3737        border-bottom-color: $highlight-color;
    3838}
     39
     40/* Override the comments bubble text color for this scheme */
     41.column-comments .post-com-count-approved:hover .comment-count-approved,
     42.column-comments .post-com-count-approved:focus .comment-count-approved,
     43.column-comments .post-com-count-pending {
     44        color: $menu-highlight-text;
     45}