diff --git a/core/static/core/components/card.scss b/core/static/core/components/card.scss index 941b32a5..2fe346a2 100644 --- a/core/static/core/components/card.scss +++ b/core/static/core/components/card.scss @@ -29,7 +29,12 @@ align-items: center; gap: 20px; - &.clickable:hover { + &:disabled { + background-color: darken($primary-neutral-light-color, 5%); + opacity: 65%; + } + + &.clickable:not(:disabled):hover { background-color: darken($primary-neutral-light-color, 5%); } diff --git a/core/static/core/forms.scss b/core/static/core/forms.scss index 2abffbba..0982b3d0 100644 --- a/core/static/core/forms.scss +++ b/core/static/core/forms.scss @@ -23,7 +23,7 @@ border-radius: 5px; color: black; - &:hover { + &:not(.link-like):not(:disabled):hover { background: hsl(0, 0%, 83%); } } diff --git a/core/templates/core/base/notifications.jinja b/core/templates/core/base/notifications.jinja index 6eb7b749..fd365391 100644 --- a/core/templates/core/base/notifications.jinja +++ b/core/templates/core/base/notifications.jinja @@ -10,7 +10,7 @@