From 8d603bbfb084d114f6aa7384a2b4253826216725 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Tue, 30 Jun 2015 01:22:19 -0700 Subject: [PATCH] Prevent thread watcher menu from being cut off, by taking top controls out of scrolled region. #418 --- src/General/css/style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/General/css/style.css b/src/General/css/style.css index e772b20be..69b13d02d 100755 --- a/src/General/css/style.css +++ b/src/General/css/style.css @@ -798,11 +798,13 @@ span.hide-announcement { #thread-watcher { padding-bottom: 3px; padding-left: 3px; - overflow: hidden; white-space: nowrap; min-width: 146px; - max-height: 92%; +} +#watched-threads { + overflow-x: hidden; overflow-y: auto; + max-height: calc(100vh - 75px); } #thread-watcher .refresh { padding: 0px 3px; @@ -810,7 +812,7 @@ span.hide-announcement { :root.fixed-watcher #thread-watcher { position: fixed; } -:root:not(.fixed-watcher) #thread-watcher:not(:hover) { +:root:not(.fixed-watcher) #watched-threads:not(:hover) { max-height: 210px; overflow-y: hidden; }