mirror of https://github.com/zulip/zulip.git
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:
parent
b1fce36214
commit
b837221e05
|
@ -41,6 +41,7 @@
|
|||
#stream-filters-container {
|
||||
overflow-y: hidden;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#stream-filters-container .ps-scrollbar-y-rail {
|
||||
|
|
Loading…
Reference in New Issue