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')
-rw-r--r--node_modules/montage/ui/progress.reel/progress.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/node_modules/montage/ui/progress.reel/progress.css b/node_modules/montage/ui/progress.reel/progress.css
new file mode 100644
index 00000000..32afa142
--- /dev/null
+++ b/node_modules/montage/ui/progress.reel/progress.css
@@ -0,0 +1,29 @@
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-progress {
8 display: inline-block;
9 position: relative;
10 width: 100px;
11 height: 10px;
12 border-radius: 3px;
13 border: 1px solid #b3b3b3;
14 background-color: #d9d9d9;
15}
16
17.montage-progress > .montage-progress-bar {
18 position: absolute;
19 height: inherit;
20 border-radius: 2px;
21 top: 0;
22 left: 0;
23 background-color: #f2f2f2;
24 -webkit-transition: width .3s cubic-bezier(.25,.1,.3,.9);
25 -moz-transition: width .3s cubic-bezier(.25,.1,.3,.9);
26 -ms-transition: width .3s cubic-bezier(.25,.1,.3,.9);
27 -o-transition: width .3s cubic-bezier(.25,.1,.3,.9);
28 transition: width .3s cubic-bezier(.25,.1,.3,.9);
29} \ No newline at end of file