Ensure country dropdown uses light styling on auth

If the dark theme is activated, the country dropdown defaults to those colors
where it doesn't fit in with the always-light auth flow. This restyles its
colors to be light.
This commit is contained in:
J. Ryan Stinnett 2019-03-06 16:43:04 +00:00
parent 8beab58918
commit 6441b2ed98
2 changed files with 13 additions and 0 deletions

View file

@ -75,6 +75,18 @@ limitations under the License.
width: 100%;
box-sizing: border-box;
}
.mx_Dropdown_arrow {
background: $authpage-primary-color;
}
.mx_Dropdown_menu {
background-color: $authpage-body-bg-color;
.mx_Dropdown_option_highlight {
background-color: $authpage-focus-bg-color;
}
}
}
.mx_AuthBody_editServerDetails {