Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 8efedd8

Browse files
committed
fix(plugins/plugin-client-common): PatternFly DropDown rendering glitches
small shift in Input row Fixes #4649 z-index issues Fixes #4651
1 parent 0ade4f7 commit 8efedd8

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

plugins/plugin-client-common/web/scss/components/DropDown/PatternFly.scss

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,19 @@
1414
* limitations under the License.
1515
*/
1616

17-
.pf-c-dropdown__toggle:focus {
18-
outline: none;
17+
body[kui-theme-style] {
18+
.pf-c-dropdown__toggle {
19+
/* see https://github.com/IBM/kui/issues/4649 */
20+
padding-top: 0;
21+
padding-bottom: 0;
22+
23+
&:focus {
24+
outline: none;
25+
}
26+
}
27+
28+
.pf-c-dropdown__menu {
29+
/* see https://github.com/IBM/kui/issues/4651 */
30+
z-index: 1;
31+
}
1932
}

0 commit comments

Comments
 (0)