discourse/app/assets/stylesheets/common/components/user-stream-item.scss
Penar Musaraj c937afc75e
FEATURE: automatic dark mode (#10341)
A first step to adding automatic dark mode color scheme switching. Adds a new SCSS file at `color_definitions.scss` that serves to output all SCSS color variables as CSS custom properties. And replaces all SCSS color variables with the new CSS custom properties throughout the stylesheets. 

This is an alpha feature at this point, can only be enabled via console using the `default_dark_mode_color_scheme_id` site setting.
2020-08-03 22:57:10 -04:00

147 lines
2.5 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: var(--secondary);
border-bottom: 1px solid var(--primary-low);
padding: 1em 0.53em;
&.moderator-action {
background-color: var(--highlight-medium);
}
&.deleted {
background-color: var(--danger-low-mid);
}
&.hidden {
display: block;
opacity: 0.4;
}
}
.type,
span.name {
color: var(--primary);
}
.time,
.delete-info,
.draft-type {
float: right;
color: var(--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: var(--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: var(--highlight-medium);
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: var(--primary);
}
}
// common/base/header.scss
.fa,
.icon {
color: var(--primary-med-or-secondary-med);
font-size: $font-up-4;
}
}
.excerpt {
margin: 1em 0 0 0;
font-size: $font-0;
word-wrap: break-word;
color: var(--primary);
&:empty {
display: none;
}
details.disabled {
color: var(--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: var(--primary);
&.d-icon-heart {
color: var(--love);
}
}
}