Skip to content

Commit b404346

Browse files
update test fixtures
1 parent 9c31507 commit b404346

File tree

7 files changed

+50
-255
lines changed

7 files changed

+50
-255
lines changed

tests/shared-fixtures/compass/app.scss

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import "compass/reset";
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@import "../compass";
2+
@import "../scss/layout";
3+
@import "../sass/layout-loading-animation";
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
.loading-animation
2+
position: relative
3+
width: 57px
4+
5+
span
6+
animation: loading-animation 1.5s infinite ease-in-out
7+
background: #9b59b6
8+
bottom: 0
9+
display: block
10+
height: 5px
11+
position: absolute
12+
width: 9px
13+
14+
&:nth-child(2)
15+
animation-delay: .2s
16+
left: 11px
17+
18+
&:nth-child(3)
19+
animation-delay: .4s
20+
left: 22px
21+
22+
&:nth-child(4)
23+
animation-delay: .6s
24+
left: 33px
25+
26+
&:nth-child(5)
27+
animation-delay: .8s
28+
left: 44px
29+
30+
@keyframes loading-animation
31+
0%
32+
height: 5px
33+
transform: translateY(0px)
34+
background: #9b59b6
35+
25%
36+
height: 30px
37+
transform: translateY(15px)
38+
background: #3498db
39+
50%
40+
height: 5px
41+
transform: translateY(0px)
42+
background: #9b59b6
43+
100%
44+
height: 5px
45+
transform: translateY(0px)
46+
background: #9b59b6

tests/shared-fixtures/sass/layout-loading-animation.scss

Lines changed: 0 additions & 58 deletions
This file was deleted.

tests/shared-fixtures/sass/layout.scss

Lines changed: 0 additions & 181 deletions
This file was deleted.

0 commit comments

Comments
 (0)