fix not hidden expand-icon for readonly multiple

This commit is contained in:
ralf 2023-11-28 20:30:21 +02:00
parent 0788718d7c
commit 9d5af96dad

View File

@ -143,7 +143,7 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
/* Hide dropdown trigger when multiple & readonly */
:host([readonly][multiple]):not([rows="1"])::part(expand-icon) {
:host([readonly][multiple]:not([rows='1']))::part(expand-icon) {
display: none;
}