Skip to content

Commit 0195db6

Browse files
committed
bug #7231 Fix colors not applied on button disable state (Julien Richarte)
This PR was squashed before being merged into the 4.x branch. Discussion ---------- Fix colors not applied on button disable state Hi, fix this issue : #7217 Commits ------- 2ad0932 Fix colors not applied on button disable state
2 parents 8c04f35 + 2ad0932 commit 0195db6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

assets/css/easyadmin-theme/buttons.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@
210210
/* Disabled state */
211211
.btn.disabled,
212212
.btn:disabled {
213+
background: var(--button-active-bg, var(--button-bg));
214+
border-color: var(--button-active-border-color, var(--button-border-color));
215+
color: var(--button-active-color, var(--button-color));
213216
box-shadow: none;
214217
cursor: not-allowed;
215218
opacity: var(--button-disabled-opacity);

0 commit comments

Comments
 (0)