Merge pull request #3025 from awesomerobot/master
fixing loading spinner alignment and striping
This commit is contained in:
commit
50b75084bd
|
@ -201,7 +201,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.spinner {
|
.spinner {
|
||||||
margin: 30px auto 0 auto;
|
margin: 20px auto 20px auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
-webkit-animation: rotate-forever 1s infinite linear;
|
-webkit-animation: rotate-forever 1s infinite linear;
|
||||||
animation: rotate-forever 1s infinite linear;
|
animation: rotate-forever 1s infinite linear;
|
||||||
|
|
|
@ -61,10 +61,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
> tbody > tr {
|
> tbody > tr {
|
||||||
&:nth-child(even) {
|
&:nth-child(odd) {
|
||||||
background-color: darken($secondary, 3%);
|
background-color: darken($secondary, 3%);
|
||||||
}
|
}
|
||||||
&:nth-child(odd) {
|
&:nth-child(even) {
|
||||||
background-color: $secondary;
|
background-color: $secondary;
|
||||||
}
|
}
|
||||||
&.highlighted {
|
&.highlighted {
|
||||||
|
|
|
@ -30,10 +30,10 @@
|
||||||
.topic-list {
|
.topic-list {
|
||||||
|
|
||||||
> tbody > tr {
|
> tbody > tr {
|
||||||
&:nth-child(odd) {
|
&:nth-child(even) {
|
||||||
background-color: darken($secondary, 3%);
|
background-color: darken($secondary, 3%);
|
||||||
}
|
}
|
||||||
&:nth-child(even) {
|
&:nth-child(odd) {
|
||||||
background-color: $secondary;
|
background-color: $secondary;
|
||||||
}
|
}
|
||||||
&.highlighted {
|
&.highlighted {
|
||||||
|
|
Loading…
Reference in New Issue