Bug 896443: Followup for Windows: Fix the z-ordering of overlay scrollbars to make them appear on top of content with z-index > 0. r=roc

This commit is contained in:
Stephen Pohl 2013-07-26 11:46:19 -04:00
parent 1a73eee360
commit 73d48d6e3b

View File

@ -18,6 +18,11 @@ scrollbar {
background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar;
}
scrollbar[root="true"] {
position: relative;
z-index: 2147483647; /* largest positive value of a signed 32-bit integer */
}
scrollbar[orient="vertical"]
{
-moz-appearance: scrollbartrack-vertical;