diff options
| author | Thomas Hackl <hackl@data-quest.de> | 2024-12-17 11:22:47 +0000 |
|---|---|---|
| committer | Thomas Hackl <hackl@data-quest.de> | 2024-12-17 11:22:47 +0000 |
| commit | c2d4d9141e4c7facfb2c6933224c3446d79a04a1 (patch) | |
| tree | 7ddce9ade97eb326354e6e67b67658dbf88739c6 /resources | |
| parent | d4261d9a8ea627d6cf3cf2dad48f86e418ef9309 (diff) | |
Resolve "Notifications haben keinen Timeout-Balken mehr"issue-2484
Closes #5034
Merge request studip/studip!3771
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/assets/stylesheets/scss/system-notifications.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/resources/assets/stylesheets/scss/system-notifications.scss b/resources/assets/stylesheets/scss/system-notifications.scss index 9e817c1..65a0f5d 100644 --- a/resources/assets/stylesheets/scss/system-notifications.scss +++ b/resources/assets/stylesheets/scss/system-notifications.scss @@ -6,13 +6,13 @@ right: 15px; .system-notification { - &.system-notification-slide-enter, + &.system-notification-slide-enter-from, &.system-notification-slide-leave-to { opacity: 0; transform: translateX(100%); } - &.system-notification-slide-leave, + &.system-notification-slide-leave-from, &.system-notification-slide-enter-to { opacity: 1; transform: translateX(0); @@ -36,13 +36,13 @@ top: 40px; .system-notification { - &.system-notification-slide-enter, + &.system-notification-slide-enter-from, &.system-notification-slide-leave-to { opacity: 0; transform: translateY(-100%); } - &.system-notification-slide-leave, + &.system-notification-slide-leave-from, &.system-notification-slide-enter-to { opacity: 1; transform: translateY(0); @@ -121,11 +121,11 @@ transition: width 5s linear; } - &.system-notification-timeout-enter { + &.system-notification-timeout-enter-from { width: 100%; } - &.system-notification-timeout-leave { + &.system-notification-timeout-leave-from { width: 0; } |
