From 6bab2b76037ec83bcbf6414d2df3809786d38966 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 17 Jun 2015 12:55:26 +0200 Subject: [PATCH] Fix some weird video scaling issues By making scrollbar 1px wider, thus squeezing the video element into proper scaling. http://pasteboard.co/1hTZGeda.png --- static/css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index cd8d94e6..24903c19 100755 --- a/static/css/style.css +++ b/static/css/style.css @@ -13,19 +13,19 @@ ::-webkit-scrollbar-track { - background-color: rgba(255,255,255,0.3); + background-color: rgba(255,255,255,0.3); border-radius:0px; } ::-webkit-scrollbar { - width: 4px; + width: 5px; border-radius:0px; } ::-webkit-scrollbar-thumb { - background-color: #3E3E3E; + background-color: #3E3E3E; border-radius:0px; }