mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
cdcc5d6174
- Renamed 'stream-item' component to 'user-stream-item' - Replaced generic 'item' class with clearer 'user-stream-item' class - Retained 'item' class for backward compatibility, marked as 'DEPRECATED' - Extracted CSS pertaining 'user-stream-item' component to component CSS files - Removed unnecessary duplication from 'user-stream-item' CSS - Removed unnecessary nesting from 'user-stream-item' CSS
146 lines
2.8 KiB
SCSS
146 lines
2.8 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;
|
|
|
|
&.moderator-action {
|
|
background-color: $highlight-medium;
|
|
}
|
|
|
|
&.deleted {
|
|
opacity: 0.8;
|
|
background-color: dark-light-diff(rgba($danger,.7), $secondary, 50%, -10%);
|
|
}
|
|
|
|
&.hidden {
|
|
display: block;
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
|
|
.type,
|
|
span.name {
|
|
color: $primary;
|
|
}
|
|
|
|
.time,
|
|
.delete-info {
|
|
display: block;
|
|
float: right;
|
|
color: lighten($primary, 40%);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.delete-info i {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.expand-item {
|
|
float: right;
|
|
margin-right: 0.5em;
|
|
color: lighten($primary, 40%);
|
|
}
|
|
|
|
.avatar-link {
|
|
float: left;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.title {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
}
|
|
|
|
.name {
|
|
font-size: 1em;
|
|
max-width: 400px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.edit-reason {
|
|
background-color: dark-light-choose(scale-color($highlight, $lightness: 25%), scale-color($highlight, $lightness: -50%));
|
|
padding: 3px 5px 5px 5px;
|
|
}
|
|
|
|
.remove-bookmark {
|
|
float: right;
|
|
margin-top: -4px;
|
|
}
|
|
|
|
.notification {
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
|
|
p {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
span {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
.time {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
float: none;
|
|
}
|
|
|
|
// common/base/header.scss
|
|
.fa, .icon {
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
font-size: 1.714em;
|
|
}
|
|
}
|
|
|
|
.excerpt {
|
|
margin: 5px 0;
|
|
font-size: 0.929em;
|
|
word-wrap: break-word;
|
|
color: $primary;
|
|
}
|
|
|
|
.group-member-info {
|
|
.name {
|
|
display: inline-block;
|
|
margin-top: 5px;
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
}
|
|
|
|
.title {
|
|
display: inline-block;
|
|
margin-top: 5px;
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-stream .child-actions, // DEPRECATED: '.user-stream .child-actions' selector
|
|
.user-stream-item-actions {
|
|
margin-top: 8px;
|
|
|
|
.avatar-link {
|
|
float: none;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.fa {
|
|
width: 15px;
|
|
display: inline-block;
|
|
color: $primary;
|
|
}
|
|
}
|
|
|