blob: 6bacf31e3ebb2eb1c0035e0c1bfe90b1b8dca0d1 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
@mixin chameleon-progressindicator {
.v-progressindicator-wrapper {
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background: #eee url(../../img/grad-dark-bottom.png) repeat-x left bottom;
overflow: visible;
font-size: 1px;
line-height: 1px;
}
.v-progressindicator-indicator {
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
background: #c9c9c9 url(../../img/grad-light-top.png) repeat-x 0 -10px;
margin: -1px;
height: 7px;
border: 1px solid #b3b3b3;
}
/*******************************************************************************
* Small
******************************************************************************/
.v-progressindicator-small {
width: 110px;
}
.v-progressindicator-small .v-progressindicator-wrapper,
.v-progressindicator-small .v-progressindicator-indicator {
height: 2px;
border-radius: 1px;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
}
/*******************************************************************************
* Big
******************************************************************************/
.v-progressindicator-big {
width: 250px;
}
.v-progressindicator-big .v-progressindicator-wrapper,
.v-progressindicator-big .v-progressindicator-indicator {
height: 14px;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
/*******************************************************************************
* Indeterminates
******************************************************************************/
.v-progressindicator-indeterminate.v-progressindicator-big {
width: 42px;
height: 42px;
background: #fff url(../../../base/common/img/ajax-loader-big.gif) no-repeat 50%;
}
.v-progressindicator-indeterminate.v-disabled {
display: none;
}
.v-progressindicator-indeterminate.v-progressindicator-bar {
display: block;
width: 150px;
height: 9px;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
}
.v-progressindicator-indeterminate.bar.v-progressindicator-small {
width: 110px;
height: 4px;
}
.v-progressindicator-indeterminate.bar.v-progressindicator-big {
width: 200px;
height: 16px;
}
.v-progressindicator-indeterminate.bar .v-progressindicator-wrapper {
display: block;
background: #fff url(../../img/indeterminate-progress.gif);
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
overflow: hidden;
}
.v-progressindicator-indeterminate.bar .v-progressindicator-indicator {
display: block;
background: transparent url(../../img/grad-light-top.png) repeat-x;
border: none;
margin: 0;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
overflow: hidden;
}
.v-progressindicator-indeterminate.bar.v-progressindicator-small .v-progressindicator-indicator {
background: transparent;
}
.v-progressindicator-indeterminate.bar.v-disabled .v-progressindicator-indicator {
background: #fff;
}
}
|