General: Use regular core button styles for page header actions.
Props emailjoey, melchoyce, afercia, michaelarestad, danieltj, helen. Fixes #41986. Built from https://develop.svn.wordpress.org/trunk@56458 git-svn-id: http://core.svn.wordpress.org/trunk@55970 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8bd5d74be2
commit
9af3c92a4e
|
@ -625,20 +625,26 @@ code {
|
||||||
.wrap .add-new-h2:active, /* deprecated */
|
.wrap .add-new-h2:active, /* deprecated */
|
||||||
.wrap .page-title-action,
|
.wrap .page-title-action,
|
||||||
.wrap .page-title-action:active {
|
.wrap .page-title-action:active {
|
||||||
margin-right: 4px;
|
display: inline-block;
|
||||||
padding: 4px 8px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -3px;
|
box-sizing: border-box;
|
||||||
text-decoration: none;
|
|
||||||
border: 1px solid #2271b1;
|
|
||||||
border-radius: 2px;
|
|
||||||
text-shadow: none;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
|
||||||
color: #2271b1; /* use the standard color used for buttons */
|
|
||||||
background: #f6f7f7;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-decoration: none;
|
||||||
|
text-shadow: none;
|
||||||
|
top: -3px;
|
||||||
|
margin-right: 4px;
|
||||||
|
border: 1px solid #2271b1;
|
||||||
|
border-radius: 3px;
|
||||||
|
background: #f6f7f7;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 2.15384615;
|
||||||
|
color: #2271b1; /* use the standard color used for buttons */
|
||||||
|
padding: 0 10px;
|
||||||
|
min-height: 30px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .wp-heading-inline + .page-title-action {
|
.wrap .wp-heading-inline + .page-title-action {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -624,20 +624,26 @@ code {
|
||||||
.wrap .add-new-h2:active, /* deprecated */
|
.wrap .add-new-h2:active, /* deprecated */
|
||||||
.wrap .page-title-action,
|
.wrap .page-title-action,
|
||||||
.wrap .page-title-action:active {
|
.wrap .page-title-action:active {
|
||||||
margin-left: 4px;
|
display: inline-block;
|
||||||
padding: 4px 8px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -3px;
|
box-sizing: border-box;
|
||||||
text-decoration: none;
|
|
||||||
border: 1px solid #2271b1;
|
|
||||||
border-radius: 2px;
|
|
||||||
text-shadow: none;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
|
||||||
color: #2271b1; /* use the standard color used for buttons */
|
|
||||||
background: #f6f7f7;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-decoration: none;
|
||||||
|
text-shadow: none;
|
||||||
|
top: -3px;
|
||||||
|
margin-left: 4px;
|
||||||
|
border: 1px solid #2271b1;
|
||||||
|
border-radius: 3px;
|
||||||
|
background: #f6f7f7;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 2.15384615;
|
||||||
|
color: #2271b1; /* use the standard color used for buttons */
|
||||||
|
padding: 0 10px;
|
||||||
|
min-height: 30px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap .wp-heading-inline + .page-title-action {
|
.wrap .wp-heading-inline + .page-title-action {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56457';
|
$wp_version = '6.4-alpha-56458';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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