1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/windows/devtools/floating-scrollbars.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 1.5 + 1.6 +scrollbar { 1.7 + -moz-appearance: none !important; 1.8 + position: relative; 1.9 + background-color: transparent; 1.10 + background-image: none; 1.11 + z-index: 2147483647; 1.12 + padding: 2px; 1.13 +} 1.14 + 1.15 +scrollbar[orient="vertical"] { 1.16 + -moz-margin-start: -10px; 1.17 + min-width: 10px; 1.18 + max-width: 10px; 1.19 +} 1.20 + 1.21 +scrollbar[orient="horizontal"] { 1.22 + margin-top: -10px; 1.23 + min-height: 10px; 1.24 + max-height: 10px; 1.25 +} 1.26 + 1.27 +scrollbar thumb { 1.28 + -moz-appearance: none !important; 1.29 + border-width: 0px !important; 1.30 + background-color: rgba(170,170,170,0.2) !important; 1.31 + border-radius: 3px !important; 1.32 +} 1.33 + 1.34 +scrollbar scrollbarbutton, scrollbar gripper { 1.35 + display: none; 1.36 +}