Skip to content

Commit

Permalink
fix: fix Material combo box overlay sizing (#8619) (#8626)
Browse files Browse the repository at this point in the history
Co-authored-by: Sascha Ißbrücker <[email protected]>
  • Loading branch information
vaadin-bot and sissbruecker authored Feb 3, 2025
1 parent 9b776e6 commit f9e801a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themab
const comboBoxOverlay = css`
[part='overlay'] {
position: relative;
overflow: visible;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
/* Overflow needs to be auto by default to make overlay sizing logic work */
/* When loading, overflow needs to be visible to make loading indicator visible */
:host([loading]) [part='overlay'] {
overflow: visible;
}
[part='content'] {
padding: 0;
}
Expand Down

0 comments on commit f9e801a

Please sign in to comment.