mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-29 07:24:09 -04:00
Merge pull request #3025 from awesomerobot/master
fixing loading spinner alignment and striping
This commit is contained in:
commit
50b75084bd
3 changed files with 5 additions and 5 deletions
app/assets/stylesheets
|
@ -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…
Add table
Add a link
Reference in a new issue