Upgrade/Install: Improve the appearance of language selection on install:
* Remove a stray chevron. * Improve focus and hover styles. Props garrett-eclipse, audrasjb. Fixes #48927. Built from https://develop.svn.wordpress.org/trunk@46887 git-svn-id: http://core.svn.wordpress.org/trunk@46687 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c87fccd74f
commit
db18e7d50b
|
@ -324,13 +324,22 @@ body.language-chooser {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
background-color: #fff;
|
background: #fff;
|
||||||
color: #32373c;
|
color: #32373c;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.language-chooser select:focus {
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.language-chooser select option:hover,
|
||||||
|
.language-chooser select option:focus {
|
||||||
|
color: #016087;
|
||||||
|
}
|
||||||
|
|
||||||
.language-chooser p {
|
.language-chooser p {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -323,13 +323,22 @@ body.language-chooser {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
background-color: #fff;
|
background: #fff;
|
||||||
color: #32373c;
|
color: #32373c;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.language-chooser select:focus {
|
||||||
|
color: #32373c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.language-chooser select option:hover,
|
||||||
|
.language-chooser select option:focus {
|
||||||
|
color: #016087;
|
||||||
|
}
|
||||||
|
|
||||||
.language-chooser p {
|
.language-chooser p {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.4-alpha-46885';
|
$wp_version = '5.4-alpha-46887';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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