Make WordPress Core


Ignore:
Timestamp:
07/06/2020 09:23:04 AM (5 years ago)
Author:
youknowriad
Message:

Administration: Fix link colors for admin schemes that personalize it using the $link SASS variable.

The new "moderne" admin scheme color personalizes the link color using the $link SASS variable.
The link color doesn't apply consistently in the admin to all links, especiall button links.

Fixes #50536.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/colors/_admin.scss

    r47771 r48332  
    3232}
    3333
     34.wp-core-ui .button-link {
     35    color: $link;
     36
     37    &:hover,
     38    &:active,
     39    &:focus {
     40        color: $link-focus;
     41    }
     42}
     43
     44.wp-core-ui .button-link {
     45    color: $link;
     46
     47    &:hover,
     48    &:active,
     49    &:focus {
     50        color: $link-focus;
     51    }
     52}
    3453
    3554/* Forms */
Note: See TracChangeset for help on using the changeset viewer.