UI - Watch list - Dont hide buttons on mobile, set light opacity on desktop

This commit is contained in:
dgtlmoon
2026-09-09 16:47:29 +02:00
parent 821b538ae6
commit 9657ff4bf9
2 changed files with 6 additions and 4 deletions
@@ -279,9 +279,11 @@ body.watch-selection-active #checkbox-operations {
display: inline-flex;
align-items: center;
gap: 6px;
> * {
opacity: 0;
transition: opacity 0.12s ease;
@media (min-width: 767px) {
> * {
opacity: 0.2;
transition: opacity 0.12s ease;
}
}
}
}
File diff suppressed because one or more lines are too long