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.

git-svn-id: https://develop.svn.wordpress.org/trunk@46887 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-12-11 23:01:23 +00:00
parent 3778b1eb82
commit 2830c6869c
1 changed files with 10 additions and 1 deletions

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;
}