summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/resources/css/ext.translate.loader.css
blob: 07d6dc1818c8b757f121d0fe5b0bca3800f51d3e (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
/* Loading indicator: */

@-webkit-keyframes tux-loading-indicator-spin {
	from {
		-webkit-transform: rotate( 0deg );
	}

	to {
		-webkit-transform: rotate( 360deg );
	}
}

@keyframes tux-loading-indicator-spin {
	from {
		transform: rotate( 0deg );
	}

	to {
		transform: rotate( 360deg );
	}
}

.tux-loading-indicator {
	float: left;
	background: transparent url( ../images/loading.gif ) right bottom no-repeat;
	/* @embed */
	background-image: linear-gradient( transparent, transparent ), url( ../images/loading.svg );
	background-size: 100%;
	-webkit-animation-name: tux-loading-indicator-spin;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-name: tux-loading-indicator-spin;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	height: 34px;
	width: 34px;
	backface-visibility: hidden;
}

.tux-loading-indicator--centered {
	top: 50%;
	left: 50%;
	position: absolute;
}

.tux-loading-indicator--stopped {
	-webkit-animation: none;
	animation: none;
}