Skip to content

Commit bd4e5f5

Browse files
Fix: Collection dropdown chevron overlapping Import Document(s) button (#43321)
- Override Combobox grid-template-columns to minmax(0, 1fr) auto to allow input column to shrink below its intrinsic width, preventing chevron overflow - Change topContainer align-items to start for consistent button alignment Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 1fbb362 commit bd4e5f5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.comboboxClass{
22
width: 100%;
33
min-width: 125px !important;
4+
grid-template-columns: minmax(0, 1fr) auto !important;
45
}

src/ContentProcessorWeb/src/Pages/DefaultPage/Panels.styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@
5151
.topContainer {
5252
display: flex;
5353
flex-wrap: nowrap;
54-
align-items: end;
54+
align-items: start;
5555
gap: 10px;
5656
padding: 0px 16px 16px 16px;
5757
}
5858

5959
@media (max-width: 1600px) {
6060
.topContainer {
6161
flex-wrap: wrap;
62-
align-items: center;
62+
align-items: start;
6363
}
6464
}
6565

0 commit comments

Comments
 (0)