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 {
|
||||
margin: 30px auto 0 auto;
|
||||
margin: 20px auto 20px auto;
|
||||
position: relative;
|
||||
-webkit-animation: rotate-forever 1s infinite linear;
|
||||
animation: rotate-forever 1s infinite linear;
|
||||
|
|
|
@ -61,10 +61,10 @@
|
|||
}
|
||||
|
||||
> tbody > tr {
|
||||
&:nth-child(even) {
|
||||
&:nth-child(odd) {
|
||||
background-color: darken($secondary, 3%);
|
||||
}
|
||||
&:nth-child(odd) {
|
||||
&:nth-child(even) {
|
||||
background-color: $secondary;
|
||||
}
|
||||
&.highlighted {
|
||||
|
|
|
@ -30,10 +30,10 @@
|
|||
.topic-list {
|
||||
|
||||
> tbody > tr {
|
||||
&:nth-child(odd) {
|
||||
&:nth-child(even) {
|
||||
background-color: darken($secondary, 3%);
|
||||
}
|
||||
&:nth-child(even) {
|
||||
&:nth-child(odd) {
|
||||
background-color: $secondary;
|
||||
}
|
||||
&.highlighted {
|
||||
|
|
Loading…
Reference in New Issue