From d1c623f4c3d72c859f9ad9cb985be127d6a3eb62 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Sat, 2 Sep 2023 16:28:04 +0100 Subject: feat: Add Download Manager (pause, stop, delete) (#1339) --- src/styles/layout.scss | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/styles') diff --git a/src/styles/layout.scss b/src/styles/layout.scss index 173ca3184..591f7c54b 100644 --- a/src/styles/layout.scss +++ b/src/styles/layout.scss @@ -204,6 +204,27 @@ body.win32:not(.isFullScreen) .app .app__content { } } +@keyframes isDownloadingFade { + 50% { + color: $theme-brand-primary; + } +} + +@keyframes isDownloadingDoneFade { + 50% { + color: green; + } +} + +.sidebar__button--downloading { + animation: isDownloadingFade 1s cubic-bezier(0.755, 0.05, 0.855, 0.06) + infinite; +} + +.sidebar__button--done { + animation: isDownloadingDoneFade 0.2s linear infinite; +} + .grid .grid__row { display: flex; flex-direction: row; -- cgit v1.2.3-70-g09d2