Make WordPress Core

Changeset 48332


Ignore:
Timestamp:
07/06/2020 09:23:04 AM (4 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.

Location:
trunk/src/wp-admin/css
Files:
2 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 */
  • trunk/src/wp-admin/css/customize-controls.css

    r48293 r48332  
    908908.section-description-buttons {
    909909    text-align: right;
    910 }
    911 
    912 .section-description-buttons button.button-link {
    913     color: #0073aa;
    914     text-decoration: underline;
    915910}
    916911
Note: See TracChangeset for help on using the changeset viewer.