Fix for possible webkit painting bug.

The left sidebar will overflow its bounds (even when set to overflow:
hidden) and go behind other text on the sidebar above. By setting the
z-index to 0 we seem to solve the problem.

This is probably actually a webkit bug, but this makes it no longer
affect us.

Fixes #1899.
This commit is contained in:
Brock Whittaker 2016-11-29 11:11:29 -08:00 committed by Tim Abbott
parent b1fce36214
commit b837221e05
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@
#stream-filters-container {
overflow-y: hidden;
position: relative;
z-index: 0;
}
#stream-filters-container .ps-scrollbar-y-rail {