diff --git a/frontend/public/themes/dark.css b/frontend/public/themes/dark.css
index 5e73e6b0..e3ffdca9 100644
--- a/frontend/public/themes/dark.css
+++ b/frontend/public/themes/dark.css
@@ -56,7 +56,7 @@ header {
color: var(--textPrimary) !important;
}
.action:hover {
- background-color: rgba(255, 255, 255, .1);
+ background-color: rgba(255, 255, 255, .2);
}
.action i {
color: var(--icon) !important;
@@ -77,7 +77,7 @@ nav > div {
color: var(--textPrimary) !important;
}
.breadcrumbs a:hover {
- background-color: rgba(255, 255, 255, .1);
+ background-color: rgba(255, 255, 255, .2);
}
#listing .item {
@@ -211,4 +211,16 @@ table th {
.share__box__element {
border-top-color: var(--divider);
+}
+
+@keyframes pulse {
+ 0% {
+ background-color: rgba(0, 0, 0, 0);
+ }
+ 50% {
+ background-color: rgba(255, 255, 255, .2);
+ }
+ 100% {
+ background-color: rgba(0, 0, 0, 0);
+ }
}
\ No newline at end of file
diff --git a/frontend/src/components/prompts/Archive.vue b/frontend/src/components/prompts/Archive.vue
index ec170f71..810cc3f3 100644
--- a/frontend/src/components/prompts/Archive.vue
+++ b/frontend/src/components/prompts/Archive.vue
@@ -16,7 +16,6 @@
/>
@@ -41,12 +40,12 @@