Fix layout regression in session dropdown (#10999)

* Fix layout regression in session dropdown

* Fix layout regression in session dropdown
This commit is contained in:
Michael Telatynski 2023-05-30 08:59:00 +01:00 committed by GitHub
parent e6cddcbfe1
commit aa5a2e1363
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,8 +58,8 @@ limitations under the License.
.mx_Dropdown_option { .mx_Dropdown_option {
height: 35px; height: 35px;
line-height: $font-35px; line-height: $font-35px;
padding-left: 8px; // Overwrites the default padding for any li elements
padding-right: 8px; padding: 0 8px;
} }
.mx_Dropdown_input > .mx_Dropdown_option { .mx_Dropdown_input > .mx_Dropdown_option {
@ -121,6 +121,10 @@ input.mx_Dropdown_option:focus {
min-height: 35px; min-height: 35px;
} }
ul.mx_Dropdown_menu li.mx_Dropdown_option {
list-style: none;
}
.mx_Dropdown_menu .mx_Dropdown_option_highlight { .mx_Dropdown_menu .mx_Dropdown_option_highlight {
background-color: $focus-bg-color; background-color: $focus-bg-color;
} }