Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix layout regression in session dropdown #10999

Merged
merged 2 commits into from
May 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions res/css/views/elements/_Dropdown.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ limitations under the License.
.mx_Dropdown_option {
height: 35px;
line-height: $font-35px;
padding-left: 8px;
padding-right: 8px;
// Overwrites the default padding for any li elements
padding: 0 8px;
}

.mx_Dropdown_input > .mx_Dropdown_option {
Expand Down Expand Up @@ -121,6 +121,10 @@ input.mx_Dropdown_option:focus {
min-height: 35px;
}

ul.mx_Dropdown_menu li.mx_Dropdown_option {
list-style: none;
}

.mx_Dropdown_menu .mx_Dropdown_option_highlight {
background-color: $focus-bg-color;
}
Expand Down