aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/progress.reel/progress.css
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/progress.reel/progress.css')
-rwxr-xr-xnode_modules/montage/ui/progress.reel/progress.css51
1 files changed, 0 insertions, 51 deletions
diff --git a/node_modules/montage/ui/progress.reel/progress.css b/node_modules/montage/ui/progress.reel/progress.css
deleted file mode 100755
index cf9e6543..00000000
--- a/node_modules/montage/ui/progress.reel/progress.css
+++ /dev/null
@@ -1,51 +0,0 @@
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.montage-progress {
7 height: 7px;
8 padding: 1px;
9 border-radius: 5px / 4px;
10 overflow: hidden;
11 background: #ccc url(rule.png);
12 -webkit-box-shadow: inset rgba(0,0,0,.2) 0 0 0 1px, rgba(255,255,255,.5) 0 1px 1px, rgba(0,0,0,.1) 0 -1px 0px;
13}
14
15.montage-progress .bar {
16 height: 7px;
17 border-radius: inherit;
18
19 background-repeat: no-repeat;
20 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%,
21 color-stop(12%, #35c9ff), color-stop(12%, #0cbeff),
22 color-stop(85%, #0aa5dd), color-stop(85%, #0996c9) );
23
24 -webkit-transition: width .3s cubic-bezier(0.25, 0.1, 0.3, 0.9);
25}
26
27.montage-progress.dark {
28 background: url(rule.png), -webkit-gradient(linear, 0% 0%, 0% 100%,
29 color-stop(0%, #303030), color-stop(100%, #3f3f3f) );
30
31 -webkit-box-shadow: rgba(255,255,255,.1) 0 1px 0, rgba(0,0,0,.1) 0 -1px 0px;
32}
33
34@-webkit-keyframes montage-progress-scroll {
35 from {
36 background-position: 0px top;
37 }
38 to {
39 background-position: -8px top;
40 }
41}
42
43.montage-progress .bar.scrolling {
44 background-image: url("scroll.png");
45 background-repeat: repeat-x;
46 background-position: 10px top;
47 -webkit-animation-name: montage-progress-scroll;
48 -webkit-animation-duration: 1s;
49 -webkit-animation-timing-function: linear;
50 -webkit-animation-iteration-count: infinite;
51}