You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/stylesheets/_session_theme.scss

182 lines
3.3 KiB
SCSS

5 years ago
// Messages
@import 'themes.scss';
5 years ago
.discussion-container {
@include themify($themes) {
background: none;
5 years ago
}
}
.conversation {
background: none !important;
}
.module-conversation-header {
@include themify($themes) {
background: themed('cellBackground');
}
5 years ago
}
5 years ago
.module-message {
&__text-error {
font-style: italic;
5 years ago
}
5 years ago
&__container--incoming {
@include themify($themes) {
background: themed('receivedMessageBackground');
}
.module-message__text {
@include themify($themes) {
color: themed('receivedMessageText');
}
a {
text-decoration: underline;
@include themify($themes) {
color: themed('receivedMessageText');
}
}
}
.module-message__author,
.module-message__metadata,
.module-message__metadata__date,
.module-message__metadata__badge,
.module-message__metadata__badge--separator {
@include themify($themes) {
@include session-color-subtle(themed('receivedMessageText'));
}
}
5 years ago
}
5 years ago
&__container--outgoing {
@include themify($themes) {
background: themed('sentMessageBackground');
}
.module-message__text {
@include themify($themes) {
color: themed('sentMessageText');
}
a {
text-decoration: underline;
@include themify($themes) {
color: themed('sentMessageText');
}
}
}
.module-message__author,
.module-message__metadata,
.module-message__metadata__date,
.module-message__metadata__badge,
.module-message__metadata__badge--separator {
@include themify($themes) {
@include session-color-subtle(themed('sentMessageText'));
}
}
5 years ago
}
5 years ago
&__container {
transition: background-color $session-transition-duration;
5 years ago
}
}
5 years ago
.message {
&-highlighted {
border-radius: 0;
5 years ago
@at-root .light-theme #{&} {
background-color: $session-shade-5;
}
@at-root .dark-theme #{&} {
background-color: $session-color-white;
}
}
5 years ago
&-selected {
.module-message {
&__container {
@include themify($themes) {
background-image: themed('messageSelected');
}
5 years ago
box-shadow: $session-dark-shadow;
}
5 years ago
&__author {
color: $session-color-white;
}
}
}
5 years ago
&-read-receipt-container {
margin-left: 5px;
}
}
5 years ago
.inbox {
@include themify($themes) {
background: themed('inboxBackground');
}
5 years ago
}
.conversation {
background: none !important;
}
.discussion-container {
background-color: #141414;
}
@mixin session-h-title {
@include fontAccentBold();
}
h1 {
@include session-h-title;
color: $session-shade-16;
font-size: 25px;
margin: 0;
&.active {
@include themify($themes) {
color: themed('textColor');
}
}
}
h2 {
@include session-h-title;
@include themify($themes) {
color: themed('textColor');
}
font-size: 22px;
text-align: center;
}
h3 {
@include session-h-title;
@include themify($themes) {
color: themed('textColor');
}
font-size: 18px;
padding-top: 22px;
}
h4 {
@include session-h-title;
@include themify($themes) {
color: themed('textColor');
}
font-size: 17px;
text-align: center;
}
.dark-theme .network-status-container .network-status {
background-color: rgba($session-color-green, 0.6);
.network-status-message {
color: $session-color-white;
}
}