Themes: After [37742], fix the color of the "Upload Theme" button to match other page title actions.
Props afercia. Fixes #35457. Built from https://develop.svn.wordpress.org/trunk@37968 git-svn-id: http://core.svn.wordpress.org/trunk@37909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bcf027eda1
commit
c50abe823f
|
@ -602,6 +602,7 @@ code {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||||
|
color: #0073aa; /* some of these controls are button elements and don't inherit from links */
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
@ -613,6 +614,11 @@ code {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* lower specificity: color needs to be overridden by :hover and :active */
|
||||||
|
.page-title-action:focus {
|
||||||
|
color: #124964;
|
||||||
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #5b9dd9;
|
border-color: #5b9dd9;
|
||||||
-webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
|
-webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -602,6 +602,7 @@ code {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: normal; /* IE8-IE11 need this for buttons */
|
line-height: normal; /* IE8-IE11 need this for buttons */
|
||||||
|
color: #0073aa; /* some of these controls are button elements and don't inherit from links */
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
@ -613,6 +614,11 @@ code {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* lower specificity: color needs to be overridden by :hover and :active */
|
||||||
|
.page-title-action:focus {
|
||||||
|
color: #124964;
|
||||||
|
}
|
||||||
|
|
||||||
.wrap .page-title-action:focus {
|
.wrap .page-title-action:focus {
|
||||||
border-color: #5b9dd9;
|
border-color: #5b9dd9;
|
||||||
-webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
|
-webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
|
||||||
|
|
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 = '4.6-beta1-37967';
|
$wp_version = '4.6-beta1-37968';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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