Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
UI Loading
3
***/
4
 
5
.loading-message {
6
    display: inline-block;
7
    min-width: 125px;
8
    margin-left: -60px;
9
    padding: 10px;
10
    margin: 0 auto;
11
    color: #000 !important;
12
    font-size: 13px;
13
    font-weight: 400;
14
    text-align: center;
15
    vertical-align: middle;
16
 
17
    &.loading-message-boxed {
18
        border: 1px solid #ddd;
19
        background-color: #eee;
20
 
21
        @include border-radius($general-border-radius);
22
 
23
        -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
24
        -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
25
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
26
    }
27
 
28
    > span {
29
        line-height:20px;
30
        vertical-align: middle;
31
    }
32
}
33
 
34
.page-loading {
35
    @include border-radius($general-border-radius);
36
 
37
    position: fixed;
38
    top: 50%;
39
    left: 50%;
40
    min-width: 125px;
41
    margin-left: -60px;
42
    margin-top: -30px;
43
    padding: 7px;
44
    text-align: center;
45
    color: #333;
46
    font-size: 13px;
47
    border: 1px solid #ddd;
48
    background-color: #eee;
49
    vertical-align: middle;
50
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
51
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
52
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
53
 
54
    > span {
55
        line-height:20px;
56
        vertical-align: middle;
57
    }
58
}
59
 
60
.page-spinner-bar {
61
    position: fixed;
62
    z-index: $zindex-modal + 1;
63
    width: 100px;
64
    top: 40%;
65
    left: 50%;
66
    margin-left: -55px;
67
    text-align: center;
68
 
69
    > div {
70
        margin: 0 5px;
71
        width: 18px;
72
        height: 18px;
73
        background: #eee;
74
 
75
        border-radius: 100% !important;
76
        display: inline-block;
77
 
78
        -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
79
          animation: bounceDelay 1.4s infinite ease-in-out;
80
 
81
         /* Prevent first frame from flickering when animation starts */
82
        -webkit-animation-fill-mode: both;
83
        animation-fill-mode: both;
84
    }
85
 
86
    .bounce1 {
87
        -webkit-animation-delay: -0.32s;
88
        animation-delay: -0.32s;
89
    }
90
 
91
    .bounce2 {
92
        -webkit-animation-delay: -0.16s;
93
         animation-delay: -0.16s;
94
    }
95
}
96
 
97
.block-spinner-bar {
98
    display: inline-block;
99
    width: 80px;
100
    text-align: center;
101
 
102
    > div {
103
        margin: 0 2px;
104
        width: 15px;
105
        height: 15px;
106
        background: #eee;
107
        border-radius: 100% !important;
108
        display: inline-block;
109
 
110
        -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
111
          animation: bounceDelay 1.4s infinite ease-in-out;
112
 
113
         /* Prevent first frame from flickering when animation starts */
114
        -webkit-animation-fill-mode: both;
115
        animation-fill-mode: both;
116
    }
117
 
118
    .bounce1 {
119
        -webkit-animation-delay: -0.32s;
120
        animation-delay: -0.32s;
121
    }
122
 
123
    .bounce2 {
124
        -webkit-animation-delay: -0.16s;
125
         animation-delay: -0.16s;
126
    }
127
}