Make WordPress Core

Changeset 45276


Ignore:
Timestamp:
05/02/2019 10:36:02 AM (6 years ago)
Author:
desrosj
Message:

Help/About: Fix tab display issues.

This change restores About page tab heights and fixes bugs with the tab bottom border caused by [44905] and [45243].

Reviewed by SergeyBiryukov and desrosj.

Props ixkaito, ianbelanger, afercia, SergeyBiryukov.
See #46901.
Fixes #47075.

Location:
trunk/src/wp-admin/css
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/about.css

    r45271 r45276  
    112112    padding-left: 15px;
    113113    font-size: 18px;
     114    line-height: 1.33333333;
    114115}
    115116
  • trunk/src/wp-admin/css/colors/_admin.scss

    r45117 r45276  
    131131/* Active tabs use a bottom border color that matches the page background color. */
    132132
    133 .about-wrap h2 .nav-tab-active,
     133.about-wrap .nav-tab-active,
    134134.nav-tab-active,
    135135.nav-tab-active:hover {
  • trunk/src/wp-admin/css/common.css

    r45243 r45276  
    21722172    padding: 5px 10px;
    21732173    font-size: 14px;
    2174     line-height: 1.8;
     2174    line-height: 1.71428571;
    21752175    font-weight: 600;
    21762176    background: #e5e5e5;
     
    40004000    h1 .nav-tab,
    40014001    h2 .nav-tab,
    4002     h3 .nav-tab {
     4002    h3 .nav-tab,
     4003    nav .nav-tab {
    40034004        margin: 10px 10px 0 0;
     4005        border-bottom: 1px solid #ccc;
     4006    }
     4007
     4008    .nav-tab-active:hover,
     4009    .nav-tab-active:focus,
     4010    .nav-tab-active:focus:active {
    40044011        border-bottom: 1px solid #ccc;
    40054012    }
Note: See TracChangeset for help on using the changeset viewer.