blob: 4037802cf2308cea995498b5cc613e69a68161e0 (
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
|
.v-progressindicator {
width: 150px;
}
.v-progressindicator-wrapper {
height: 7px;
border: 1px solid #ddd;
}
.v-progressindicator-indicator {
height: 7px;
background: #ddd;
}
div.v-progressindicator-indeterminate {
height: 20px;
width: 20px;
background: #fff url(../common/img/ajax-loader-medium.gif) no-repeat 50%;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
/* Hide obsolete elements in indeterminate mode */
.v-progressindicator-indeterminate .v-progressindicator-wrapper,
.v-progressindicator-indeterminate .v-progressindicator-indicator,
.v-progressindicator-indeterminate-disabled .v-progressindicator-wrapper,
.v-progressindicator-indeterminate-disabled .v-progressindicator-indicator {
display: none;
}
div.v-progressindicator-indeterminate-disabled {
height: 20px;
width: 20px;
background: transparent;
}
|