mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
Merge pull request #2683 from awesomerobot/master
adding highlight back to topic-list
This commit is contained in:
commit
f422e5c8c4
5 changed files with 16 additions and 13 deletions
|
@ -29,9 +29,6 @@
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
&.highlighted {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 85%);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
th,
|
th,
|
||||||
|
|
|
@ -185,3 +185,13 @@ body {
|
||||||
background: $success;
|
background: $success;
|
||||||
&.badge-notification[href] {color: $secondary;}
|
&.badge-notification[href] {color: $secondary;}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fade {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: opacity 0.15s linear;
|
||||||
|
transition: opacity 0.15s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade.in {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
|
@ -68,6 +68,9 @@
|
||||||
&:nth-child(odd) {
|
&:nth-child(odd) {
|
||||||
background-color: $secondary;
|
background-color: $secondary;
|
||||||
}
|
}
|
||||||
|
&.highlighted {
|
||||||
|
background-color: scale-color($tertiary, $lightness: 85%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
button.bulk-select {
|
button.bulk-select {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -879,16 +879,6 @@ $topic-avatar-width: 45px;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fade {
|
|
||||||
opacity: 0;
|
|
||||||
-webkit-transition: opacity 0.15s linear;
|
|
||||||
transition: opacity 0.15s linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fade.in {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#selected-posts {
|
#selected-posts {
|
||||||
|
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
|
|
|
@ -36,6 +36,9 @@
|
||||||
&:nth-child(even) {
|
&:nth-child(even) {
|
||||||
background-color: $secondary;
|
background-color: $secondary;
|
||||||
}
|
}
|
||||||
|
&.highlighted {
|
||||||
|
background-color: scale-color($tertiary, $lightness: 85%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
th,
|
th,
|
||||||
|
|
Loading…
Reference in a new issue