aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/progress.reel/progress.css
blob: 32afa1421350f4dadc888777d2a0523cd0a327e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */

.montage-progress {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 10px;
    border-radius: 3px;
    border: 1px solid #b3b3b3;
    background-color: #d9d9d9;
}

.montage-progress > .montage-progress-bar {
    position: absolute;
    height: inherit;
    border-radius: 2px;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    -webkit-transition: width .3s cubic-bezier(.25,.1,.3,.9);
       -moz-transition: width .3s cubic-bezier(.25,.1,.3,.9);
        -ms-transition: width .3s cubic-bezier(.25,.1,.3,.9);
         -o-transition: width .3s cubic-bezier(.25,.1,.3,.9);
            transition: width .3s cubic-bezier(.25,.1,.3,.9);
}