Skip to content

Commit

Permalink
Coding standards: Use numeric font weights instead of keywords.
Browse files Browse the repository at this point in the history
Fixes #43897.


git-svn-id: https://develop.svn.wordpress.org/trunk@43018 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
afercia committed Apr 29, 2018
1 parent 6eef5a6 commit b383688
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/wp-admin/css/customize-nav-menus.css
Expand Up @@ -794,7 +794,7 @@ body.adding-menu-items #customize-preview iframe {
}

#accordion-section-add_menu .customize-add-menu-button {
font-weight: normal;
font-weight: 400;
}

#create-new-menu-submit {
Expand Down
8 changes: 4 additions & 4 deletions src/wp-admin/css/forms.css
Expand Up @@ -1133,18 +1133,18 @@ table.form-table td .updated p {
}

.status-label {
font-weight: bold;
font-weight: 600;
}

.status-label.status-request-pending {
font-weight: normal;
font-weight: 400;
font-style: italic;
color: #6c7781;
}

.status-label.status-request-failed {
color: #aa0000;
font-weight: bold;
font-weight: 600;
}

.wp-privacy-request-form {
Expand All @@ -1156,7 +1156,7 @@ table.form-table td .updated p {
}

.wp-privacy-request-form label {
font-weight: bold;
font-weight: 600;
line-height: 1.5;
padding-bottom: .5em;
display: block;
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/css/nav-menus.css
Expand Up @@ -203,7 +203,7 @@ ul.add-menu-item-tabs li {
}

#menu-management .menu-add-new abbr {
font-weight:600;
font-weight: 600;
}

#select-nav-menu-container {
Expand Down

0 comments on commit b383688

Please sign in to comment.