From 6d7b8a71c094764de1b2a74b0a6956e61c454fcf Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Tue, 15 Sep 2020 09:38:06 -0400 Subject: [PATCH] FIX: topic progress wrapper positioning regression Followup to 94ed54a616302675e3dc5b3ea7fa6e0a7c23ef84 --- app/assets/stylesheets/desktop/topic.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/desktop/topic.scss b/app/assets/stylesheets/desktop/topic.scss index c3728ec50cb..101bef0910f 100644 --- a/app/assets/stylesheets/desktop/topic.scss +++ b/app/assets/stylesheets/desktop/topic.scss @@ -85,6 +85,14 @@ display: flex; justify-content: flex-end; z-index: z("timeline"); + // max-width + bottom + left/right makes this element take up the whole width + // albeit as a transparent row, but we disable pointer-events to allow user to + // interact with visible elements at bottom of viewport + pointer-events: none; + > * { + // and then we reset for its children + pointer-events: auto; + } &.docked { position: absolute; bottom: -70px;