Avoid scrollbars in RTL

This commit is contained in:
Niklas Laxström
2016-06-02 10:55:51 +03:00
parent 20eea5de9f
commit fb12b5e25d

View File

@@ -9,7 +9,10 @@
/* Language list */ /* Language list */
.uls-language-list { .uls-language-list {
height: 20em; 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; width: auto;
background: #FCFCFC; background: #FCFCFC;
} }