mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-20 09:58:04 +02:00
Et2Button: Fix disabled was still hiding the event even if hideonreadonly was false
This commit is contained in:
parent
bea34ad403
commit
91bd7d5a43
@ -62,9 +62,14 @@ export const ButtonMixin = <T extends Constructor>(superclass : T) => class exte
|
|||||||
max-width: 125px;
|
max-width: 125px;
|
||||||
min-width: fit-content;
|
min-width: fit-content;
|
||||||
}
|
}
|
||||||
|
/* Override general disabled=hide from Et2Widget */
|
||||||
|
:host([disabled]) {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
:host([hideonreadonly][disabled]) {
|
:host([hideonreadonly][disabled]) {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set size for icon */
|
/* Set size for icon */
|
||||||
::slotted(img.imageOnly) {
|
::slotted(img.imageOnly) {
|
||||||
padding-right: 0px !important;
|
padding-right: 0px !important;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user