Skip to content

Commit 16dfb7e

Browse files
authored
fix(segment, dropdown): specificity and wrong selector
Hotfixes for #2683 and #2678
1 parent 6d98ed1 commit 16dfb7e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/definitions/elements/segment.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,11 +761,11 @@
761761
.ui.tab.segment[class*="bottom attached"]:last-child {
762762
margin-bottom: @verticalMargin;
763763
}
764-
.ui[class*="left attached"].segment {
764+
.ui.ui[class*="left attached"].segment {
765765
border-left: none;
766766
margin-left: 0;
767767
}
768-
.ui[class*="right attached"].segment {
768+
.ui.ui[class*="right attached"].segment {
769769
border-right: none;
770770
margin-right: 0;
771771
}

src/definitions/modules/dropdown.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,9 @@ select.ui.dropdown {
427427
min-width: 0;
428428
& > .menu {
429429
width: auto;
430-
}
431-
&:not(.multiline) {
432-
width: max-content;
430+
&:not(.multiline) {
431+
width: max-content;
432+
}
433433
}
434434
}
435435
}

0 commit comments

Comments
 (0)