aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/progressindicator/progressindicator.scss
blob: 7af1ba1f0e750b18f920ecdf3e06f35a1db53414 (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
@mixin base-progressindicator($name : v-progressindicator) {

.#{$name} {
	width: 150px;
}
.#{$name}-wrapper {
	height: 7px;
	border: 1px solid #ddd;
}
.#{$name}-indicator {
	height: 7px;
	background: #ddd;
}
div.#{$name}-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 */
.#{$name}-indeterminate .#{$name}-wrapper,
.#{$name}-indeterminate .#{$name}-indicator,
.#{$name}-indeterminate-disabled .#{$name}-wrapper,
.#{$name}-indeterminate-disabled .#{$name}-indicator {
	display: none;
}
div.#{$name}-indeterminate-disabled {
	height: 20px;
	width: 20px;
	background: transparent;
}

}