From 09f2874784e1e5e5bbbacce445a08e16e95ecae2 Mon Sep 17 00:00:00 2001 From: Fabian Posenau <19673098+kellhogs@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:18:05 +0100 Subject: [PATCH] Fix Visual bug on rundown (#678) * fix: bug with draw order on past rundown items --------- Co-authored-by: Fabian Posenau --- .../rundown/event-block/EventBlock.module.scss | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/rundown/event-block/EventBlock.module.scss b/apps/client/src/features/rundown/event-block/EventBlock.module.scss index 7365f74fd..50686409c 100644 --- a/apps/client/src/features/rundown/event-block/EventBlock.module.scss +++ b/apps/client/src/features/rundown/event-block/EventBlock.module.scss @@ -53,8 +53,18 @@ $skip-opacity: 0.1; outline: 1px solid $block-cursor-color; } + /* we stop the eventActions from having opacity to fix issue with dropdown drawing order */ &.past:not(.skip) { - opacity: 0.6; + .delayNote, + .statusElements, + .eventTitle, + .eventNote, + .eventTimers, + .eventStatus, + .playbackActions, + .binder { + opacity: 0.4; + } } &.skip {