mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
156 lines
2.6 KiB
SCSS
156 lines
2.6 KiB
SCSS
// Common styles for "user-stream-item" component
|
|
.user-stream {
|
|
// DEPRECATED:
|
|
// The ".item" class should be 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 {
|
|
background-color: $secondary;
|
|
border-bottom: 1px solid $primary-low;
|
|
padding: 1em 0.53em;
|
|
|
|
&.moderator-action {
|
|
background-color: $highlight-medium;
|
|
}
|
|
|
|
&.deleted {
|
|
opacity: 0.8;
|
|
background-color: dark-light-diff(
|
|
rgba($danger, 0.7),
|
|
$secondary,
|
|
50%,
|
|
-10%
|
|
);
|
|
}
|
|
|
|
&.hidden {
|
|
display: block;
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
|
|
.type,
|
|
span.name {
|
|
color: $primary;
|
|
}
|
|
|
|
.time,
|
|
.delete-info,
|
|
.draft-type {
|
|
float: right;
|
|
color: $primary-medium;
|
|
font-size: $font-down-2;
|
|
}
|
|
|
|
.notification .time {
|
|
margin-left: auto;
|
|
float: none;
|
|
}
|
|
|
|
.draft-type {
|
|
clear: right;
|
|
}
|
|
|
|
.delete-info .d-icon {
|
|
font-size: $font-0;
|
|
}
|
|
|
|
.expand-item,
|
|
.collapse-item {
|
|
float: right;
|
|
margin-right: 0.5em;
|
|
line-height: $line-height-small;
|
|
color: $primary-medium;
|
|
}
|
|
|
|
.avatar-link {
|
|
float: left;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.title {
|
|
@include ellipsis;
|
|
display: block;
|
|
}
|
|
|
|
.name {
|
|
font-size: $font-0;
|
|
max-width: 400px;
|
|
@include ellipsis;
|
|
}
|
|
|
|
.edit-reason {
|
|
background-color: dark-light-choose(
|
|
$highlight-medium,
|
|
scale-color($highlight, $lightness: -50%)
|
|
);
|
|
padding: 3px 5px 5px 5px;
|
|
}
|
|
|
|
.remove-bookmark,
|
|
.remove-draft {
|
|
float: right;
|
|
margin-top: -4px;
|
|
}
|
|
|
|
.notification {
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
|
|
p {
|
|
display: inline-block;
|
|
|
|
span:first-child {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
// common/base/header.scss
|
|
.fa,
|
|
.icon {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
font-size: $font-up-4;
|
|
}
|
|
}
|
|
|
|
.excerpt {
|
|
margin: 1em 0 0 0;
|
|
font-size: $font-0;
|
|
word-wrap: break-word;
|
|
color: $primary;
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
details.disabled {
|
|
color: $primary-medium;
|
|
}
|
|
}
|
|
|
|
.group-member-info {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.user-stream .child-actions, /* DEPRECATED: '.user-stream .child-actions' selector*/
|
|
.user-stream-item-actions,
|
|
.user-stream-item-draft-actions {
|
|
margin-top: 8px;
|
|
|
|
.avatar-link {
|
|
float: none;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.fa {
|
|
width: 15px;
|
|
display: inline-block;
|
|
color: $primary;
|
|
&.d-icon-heart {
|
|
color: $love;
|
|
}
|
|
}
|
|
}
|