Make WordPress Core

Changeset 45189


Ignore:
Timestamp:
04/13/2019 04:36:01 AM (6 years ago)
Author:
SergeyBiryukov
Message:

CSS Coding Standards: Use unitless values for line-height in wp-admin/css/customize-controls.css.

Props ianbelanger, audrasjb, pbiron, afercia.
Fixes #46494. See #44643.

File:
1 edited

Legend:

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

    r44796 r45189  
    431431#customize-controls .customize-info .preview-notice {
    432432    font-size: 13px;
    433     line-height: 24px;
     433    line-height: 1.9;
    434434}
    435435
     
    919919.customize-control input[type="radio"],
    920920.customize-control input[type="checkbox"] {
    921     line-height: 28px;
     921    line-height: 2;
    922922}
    923923
     
    930930.customize-control input[type="url"] {
    931931    width: 100%;
    932     line-height: 18px;
     932    line-height: 1.3;
    933933    margin: 0;
    934934}
     
    946946    width: 100%;
    947947    height: 28px;
    948     line-height: 28px;
     948    line-height: 2;
    949949}
    950950
     
    956956    display: block;
    957957    font-size: 14px;
    958     line-height: 24px;
     958    line-height: 1.75;
    959959    font-weight: 600;
    960960    margin-bottom: 4px;
     
    964964    display: block;
    965965    font-style: italic;
    966     line-height: 18px;
     966    line-height: 1.4;
    967967    margin-top: 0;
    968968    margin-bottom: 5px;
     
    985985
    986986.customize-control .customize-inside-control-row {
    987     line-height: 20px;
     987    line-height: 1.6;
    988988    display: block;
    989989    margin-left: 24px;
     
    10051005.customize-control-radio .customize-control-title {
    10061006    margin-bottom: 0;
    1007     line-height: 22px;
     1007    line-height: 1.6;
    10081008}
    10091009
     
    10991099    margin-left: 1px;
    11001100    font-weight: 600;
    1101     line-height: 28px;
     1101    line-height: 2.2;
    11021102}
    11031103
     
    13891389    box-sizing: border-box;
    13901390    padding: 9px 0;
    1391     line-height: 20px;
     1391    line-height: 1.6;
    13921392}
    13931393
     
    18601860    position: relative;
    18611861    float: right;
    1862     line-height: 34px;
     1862    line-height: 2.6;
    18631863}
    18641864
     
    20892089
    20902090.themes-filter-bar .wp-filter-search {
    2091     line-height: 25px;
     2091    line-height: 1.8;
    20922092    padding: 6px 10px 6px 30px;
    20932093    max-width: 100%;
     
    22172217        width: 26px;
    22182218        display: block;
    2219         line-height: 46px;
     2219        line-height: 2.3;
    22202220        padding: 0 8px 0 8px;
    22212221        border-right: 1px solid #ddd;
     
    26132613    width: 30px;
    26142614    height: 30px;
    2615     line-height: 28px;
     2615    line-height: 2.1;
    26162616    text-align: center;
    26172617    color: #72777c;
     
    27642764    .customize-control input[type="radio"] + label + br,
    27652765    .customize-control input[type="checkbox"] + label + br {
    2766         line-height: 32px; /* For widgets checkboxes */
     2766        line-height: 2.5; /* For widgets checkboxes */
    27672767    }
    27682768
     
    28332833        top: 0;
    28342834        left: 48px;
    2835         line-height: 45px;
     2835        line-height: 3.2;
    28362836        font-size: 14px;
    28372837        padding: 0 12px;
Note: See TracChangeset for help on using the changeset viewer.