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