Fix styling of readonly selectbox

This commit is contained in:
hadi 2023-09-19 14:03:26 +02:00
parent f75567a863
commit e72671bc20

View File

@ -197,6 +197,11 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
max-height: 8em;
overflow-y: auto;
}
:host([readonly])::part(combobox) {
background: none;
opacity: 1;
border: none;
}
`
];
}