Coding standards: Use numeric font weights instead of keywords.
Fixes #43897. Built from https://develop.svn.wordpress.org/trunk@43018 git-svn-id: http://core.svn.wordpress.org/trunk@42847 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2719c4e90
commit
26e91765eb
|
@ -794,7 +794,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||||
}
|
}
|
||||||
|
|
||||||
#accordion-section-add_menu .customize-add-menu-button {
|
#accordion-section-add_menu .customize-add-menu-button {
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
#create-new-menu-submit {
|
#create-new-menu-submit {
|
||||||
|
|
|
@ -794,7 +794,7 @@ body.adding-menu-items #customize-preview iframe {
|
||||||
}
|
}
|
||||||
|
|
||||||
#accordion-section-add_menu .customize-add-menu-button {
|
#accordion-section-add_menu .customize-add-menu-button {
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
#create-new-menu-submit {
|
#create-new-menu-submit {
|
||||||
|
|
|
@ -1133,18 +1133,18 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label {
|
.status-label {
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label.status-request-pending {
|
.status-label.status-request-pending {
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: #6c7781;
|
color: #6c7781;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label.status-request-failed {
|
.status-label.status-request-failed {
|
||||||
color: #aa0000;
|
color: #aa0000;
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-privacy-request-form {
|
.wp-privacy-request-form {
|
||||||
|
@ -1156,7 +1156,7 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-privacy-request-form label {
|
.wp-privacy-request-form label {
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
padding-bottom: .5em;
|
padding-bottom: .5em;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1133,18 +1133,18 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label {
|
.status-label {
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label.status-request-pending {
|
.status-label.status-request-pending {
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: #6c7781;
|
color: #6c7781;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-label.status-request-failed {
|
.status-label.status-request-failed {
|
||||||
color: #aa0000;
|
color: #aa0000;
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-privacy-request-form {
|
.wp-privacy-request-form {
|
||||||
|
@ -1156,7 +1156,7 @@ table.form-table td .updated p {
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-privacy-request-form label {
|
.wp-privacy-request-form label {
|
||||||
font-weight: bold;
|
font-weight: 600;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
padding-bottom: .5em;
|
padding-bottom: .5em;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-43017';
|
$wp_version = '5.0-alpha-43018';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue