Add hover states for ghost and danger buttons

This commit is contained in:
2026-02-04 14:57:12 +01:00
parent f0ea1fb957
commit a3284601ad

View File

@@ -201,12 +201,21 @@ button.danger {
border-color: #c54740; border-color: #c54740;
color: #fffaf3; color: #fffaf3;
} }
button.danger:hover {
background: #c9473f;
border-color: #a83a35;
}
button.ghost { button.ghost {
background: transparent; background: transparent;
border-color: #d5c7b5; border-color: #d5c7b5;
color: #2c1c0d; color: #2c1c0d;
} }
button.ghost:hover {
background: linear-gradient(-5deg, #e7f5ff, #cbeaff);
border-color: #b4d9f3;
color: #1a3d64;
}
.label { .label {
color: #6c5a42; color: #6c5a42;