mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 23:45:33 +08:00
34 lines
735 B
SCSS
34 lines
735 B
SCSS
![]() |
// Mobile styles for "user-stream-item" component
|
||
|
.user-stream {
|
||
|
|
||
|
// DEPRECATION:
|
||
|
// The ".item" class should be eventually removed because it's too generic.
|
||
|
// Once ".item" has been removed, ".user-stream-item" can replace
|
||
|
// ".user-stream" as the top-level selector on this file as all other
|
||
|
// selectors below are its children
|
||
|
.item,
|
||
|
.user-stream-item {
|
||
|
padding: 20px 0 15px 0;
|
||
|
}
|
||
|
|
||
|
.name {
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.notification {
|
||
|
&.unread {
|
||
|
background-color: dark-light-choose(scale-color($tertiary, $lightness: 85%), srgb-scale($tertiary, $secondary, 15%));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.group-member-info {
|
||
|
.name {
|
||
|
vertical-align: inherit;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.topic-statuses {
|
||
|
float: left;
|
||
|
}
|
||
|
}
|