Skip to content

Commit 7259c34

Browse files
authored
fix(dropdown): fix rounded corners on scrolling menu
On a filtered dropdown menu the bottom corners are not round. This PR makes all corners of the dropdown menu round.
1 parent 6dae584 commit 7259c34

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/definitions/modules/dropdown.less

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,7 @@ select.ui.dropdown {
13351335
overflow-y: auto;
13361336
border: none;
13371337
box-shadow: none !important;
1338-
border-radius: 0 !important;
1338+
border-radius: 0 0 @floatingMenuBorderRadius @floatingMenuBorderRadius !important;
13391339
margin: 0 !important;
13401340
min-width: 100% !important;
13411341
width: auto !important;
@@ -1550,9 +1550,6 @@ select.ui.dropdown {
15501550
box-shadow: @floatingMenuBoxShadow !important;
15511551
border-radius: @floatingMenuBorderRadius !important;
15521552
}
1553-
.ui.floating.dropdown > .menu {
1554-
border-radius: @floatingMenuBorderRadius !important;
1555-
}
15561553
.ui:not(.upward).floating.dropdown > .menu {
15571554
margin-top: @floatingMenuDistance;
15581555
}

0 commit comments

Comments
 (0)