From fb12b5e25df081cdef811a4df395b9af8902791a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Laxstr=C3=B6m?= Date: Thu, 2 Jun 2016 10:55:51 +0300 Subject: [PATCH] Avoid scrollbars in RTL --- css/jquery.uls.lcd.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/css/jquery.uls.lcd.css b/css/jquery.uls.lcd.css index 2a46526..ff09b29 100644 --- a/css/jquery.uls.lcd.css +++ b/css/jquery.uls.lcd.css @@ -9,7 +9,10 @@ /* Language list */ .uls-language-list { height: 20em; - overflow: auto; + /* Work around Chrome bug where it places scrollbar on the left in + * in RTL mode but actually reserves the place on the right side */ + overflow-x: hidden; + overflow-y: auto; width: auto; background: #FCFCFC; }