aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/scroll-bars.reel/scroll-bars.css
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-20 15:16:30 -0700
committerArmen Kesablyan2012-06-20 15:16:30 -0700
commit65b989c7759af923fb9456d34bff89f91831ea1e (patch)
treee408be732a3eee71229bfc7dbf7cace998ce18de /node_modules/montage/ui/scroll-bars.reel/scroll-bars.css
parent38f571d1fdf02d36c3816637af7b2ca2493809da (diff)
parentfc818d31de267d2b77fda3b3029ad38d48698be8 (diff)
downloadninja-65b989c7759af923fb9456d34bff89f91831ea1e.tar.gz
Merge branch 'refs/heads/master' into binding
Conflicts: node_modules/montage/ui/application.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/scroll-bars.reel/scroll-bars.css')
-rw-r--r--node_modules/montage/ui/scroll-bars.reel/scroll-bars.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/node_modules/montage/ui/scroll-bars.reel/scroll-bars.css b/node_modules/montage/ui/scroll-bars.reel/scroll-bars.css
new file mode 100644
index 00000000..637d9cde
--- /dev/null
+++ b/node_modules/montage/ui/scroll-bars.reel/scroll-bars.css
@@ -0,0 +1,67 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.montage-scroll-bars {
8 position: absolute;
9 left: 0;
10 top: 0;
11 right: 0;
12 bottom: 0;
13 z-index: 9999;
14 pointer-events: none;
15}
16.montage-scroll-bars .top {
17 position: absolute;
18 right: 2px;
19 background: black;
20 -webkit-box-shadow: 0 0 0 1px rgba(255,255,255,.27);
21 width: 5px;
22 height: 3px;
23 border-radius: 4px 4px 0 0;
24 opacity: 0;
25 clip: rect(-1px, 6px, 3px, -1px);
26 -webkit-transform: translateZ(0);
27}
28.montage-scroll-bars .bottom {
29 background: black;
30 -webkit-box-shadow: 0 0 0 1px rgba(255,255,255,.27);
31 width: 5px;
32 border-radius: 0 0 4px 4px;
33 opacity: 0;
34 -webkit-transform: translateZ(0);
35}
36.montage-scroll-bars .bottom-clip {
37 position: absolute;
38 right: 2px;
39 width: 5px;
40 -webkit-transform: translateZ(0);
41}
42.montage-scroll-bars .left {
43 position: absolute;
44 bottom: 2px;
45 background: black;
46 -webkit-box-shadow: 0 0 0 1px rgba(255,255,255,.27);
47 width: 3px;
48 height: 5px;
49 border-radius: 4px 0 0 4px;
50 opacity: 0;
51 clip: rect(-1px, 3px, 6px, -1px);
52 -webkit-transform: translateZ(0);
53}
54.montage-scroll-bars .right {
55 background: black;
56 -webkit-box-shadow: 0 0 0 1px rgba(255,255,255,.27);
57 height: 5px;
58 border-radius: 0 4px 4px 0;
59 opacity: 0;
60 -webkit-transform: translateZ(0);
61}
62.montage-scroll-bars .right-clip {
63 position: absolute;
64 bottom: 2px;
65 height: 5px;
66 -webkit-transform: translateZ(0);
67} \ No newline at end of file