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:
Sergey Biryukov 2019-12-11 23:03:03 +00:00
parent c87fccd74f
commit db18e7d50b
5 changed files with 23 additions and 5 deletions

View File

@ -324,13 +324,22 @@ body.language-chooser {
width: 100%;
display: block;
border: 1px solid #ddd;
background-color: #fff;
background: #fff;
color: #32373c;
font-size: 16px;
font-family: Arial, sans-serif;
font-weight: 400;
}
.language-chooser select:focus {
color: #32373c;
}
.language-chooser select option:hover,
.language-chooser select option:focus {
color: #016087;
}
.language-chooser p {
text-align: left;
}

File diff suppressed because one or more lines are too long

View File

@ -323,13 +323,22 @@ body.language-chooser {
width: 100%;
display: block;
border: 1px solid #ddd;
background-color: #fff;
background: #fff;
color: #32373c;
font-size: 16px;
font-family: Arial, sans-serif;
font-weight: 400;
}
.language-chooser select:focus {
color: #32373c;
}
.language-chooser select option:hover,
.language-chooser select option:focus {
color: #016087;
}
.language-chooser p {
text-align: right;
}

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @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.