mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
adding highlight back to topic-list
This commit is contained in:
parent
fd0a0aafb4
commit
a8e6e1e3d5
|
@ -29,9 +29,6 @@
|
|||
vertical-align: top;
|
||||
margin-top: 2px;
|
||||
}
|
||||
&.highlighted {
|
||||
background-color: scale-color($tertiary, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
|
||||
th,
|
||||
|
|
|
@ -185,3 +185,13 @@ body {
|
|||
background: $success;
|
||||
&.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) {
|
||||
background-color: $secondary;
|
||||
}
|
||||
&.highlighted {
|
||||
background-color: scale-color($tertiary, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
button.bulk-select {
|
||||
padding: 0;
|
||||
|
|
|
@ -879,16 +879,6 @@ $topic-avatar-width: 45px;
|
|||
clear: both;
|
||||
}
|
||||
|
||||
.fade {
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.15s linear;
|
||||
transition: opacity 0.15s linear;
|
||||
}
|
||||
|
||||
.fade.in {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#selected-posts {
|
||||
|
||||
padding-left: 20px;
|
||||
|
|
|
@ -36,6 +36,9 @@
|
|||
&:nth-child(even) {
|
||||
background-color: $secondary;
|
||||
}
|
||||
&.highlighted {
|
||||
background-color: scale-color($tertiary, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
|
||||
th,
|
||||
|
|
Loading…
Reference in New Issue
Block a user