Skip to content

Commit 0b2905b

Browse files
mturleyjeff-phillips-18
authored andcommitted
fix(TypeAheadSelect): Fix input height overflow issue without breaking IE11 compatibility (#1369)
Fixes #1362 (replaces original fix for #413)
1 parent e7c70e5 commit 0b2905b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/patternfly-3/patternfly-react/less/type-ahead-select.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
padding: 2px 6px;
55
}
66

7-
.rbt-input-multi {
8-
height: fit-content;
7+
.form-control.rbt-input-multi {
8+
height: auto;
99
}
1010

1111
.rbt-menu.dropdown-menu {

packages/patternfly-3/patternfly-react/sass/patternfly-react/_type-ahead-select.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
padding: 2px 6px;
55
}
66

7-
.rbt-input-multi {
8-
height: fit-content;
7+
.form-control.rbt-input-multi {
8+
height: auto;
99
}
1010

1111
.rbt-menu.dropdown-menu {

0 commit comments

Comments
 (0)