Revision f66d5dd8 snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_machines.scss

b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_machines.scss
1 1
/* Machines (VMs)  related styles  */
2 2

  
3 3
.build-progress {
4
	animation: progress_animation 5s infinite;
5
	-webkit-animation: progress_animation 5s infinite;
4
	animation:
5
		progress_animation 5s infinite,
6
		pulse 1s infinite;
7
	-webkit-animation:
8
		progress_animation 5s infinite,
9
		pulse 1s infinite;
6 10
}
7 11

  
8
@keyframes progress_animation
9
{
10
from {width: 0%}
11
to {width: 100%}
12
@include keyframes( progress_animation) {
13
	from {
14
		width: 0%
15
	}
16
	to {
17
		width: 100%
18
	}
12 19
}
13 20

  
14
@-webkit-keyframes progress_animation /* Safari and Chrome */
15
{
16
from {width: 0%}
17
to {width: 100%}
21
@include keyframes( pulse) {
22
	from {
23
		color: $secondary-color
24
	}
25
	to {
26
		color: darken($secondary-color,10%)
27
	}
18 28
}
29

  
19 30
.vms .items-list {
20 31
	.img-wrap {
21 32
		width: 60px;

Also available in: Unified diff