Fix disabled buttons had different styling than normal buttons

This commit is contained in:
nathan 2022-12-01 13:03:39 -07:00
parent dc5e0b528e
commit c81ff8b444

View File

@ -61,10 +61,11 @@ export const ButtonMixin = <T extends Constructor>(superclass : T) => class exte
/* These should probably come from somewhere else */
max-width: 125px;
min-width: fit-content;
display: block;
}
/* Override general disabled=hide from Et2Widget */
:host([disabled]) {
display: initial;
display: block;
}
:host([hideonreadonly][disabled]) {
display:none !important;