From a9173bb481daa96e66be8b77f3609ff3b808df88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Mon, 6 Sep 2021 09:09:05 +0200 Subject: [PATCH] css: Put small L/R margins on speed scale GTK does weird glitches when scale slider inside popover is dragged to the very end. Avoid that by putting small margins on both sides. It also looks better when its shorter a little bit. --- css/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/styles.css b/css/styles.css index 34d0220e..cbdb7547 100644 --- a/css/styles.css +++ b/css/styles.css @@ -277,6 +277,10 @@ scale trough slider { .elapsedpopover contents { padding-bottom: 0px; } +.speedscale { + margin-left: 4px; + margin-right: 4px; +} .speedscale trough highlight { min-height: 4px; }