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.
133 lines
2.4 KiB
SCSS
133 lines
2.4 KiB
SCSS
5 years ago
|
// Messages
|
||
5 years ago
|
.dark-theme {
|
||
5 years ago
|
.conversation {
|
||
|
background: none !important;
|
||
|
}
|
||
5 years ago
|
.module-conversation-header {
|
||
5 years ago
|
border-bottom: none;
|
||
5 years ago
|
|
||
|
@at-root .light-theme #{&} {
|
||
|
background-color: $session-color-white;
|
||
|
}
|
||
|
@at-root .dark-theme #{&} {
|
||
|
background-color: $session-shade-4;
|
||
|
}
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
5 years ago
|
.module-message {
|
||
|
&__author,
|
||
|
&__metadata__badge,
|
||
|
&__metadata__date--incoming,
|
||
|
&__metadata__date--outgoing {
|
||
5 years ago
|
|
||
|
@at-root .light-theme #{&} {
|
||
|
@include session-color-subtle($session-color-black);
|
||
|
}
|
||
|
@at-root .dark-theme #{&} {
|
||
|
@include session-color-subtle($session-color-white);
|
||
|
}
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&__container--incoming {
|
||
5 years ago
|
@at-root .light-theme #{&} {
|
||
|
@include session-color-subtle($session-color-white);
|
||
|
}
|
||
|
@at-root .dark-theme #{&} {
|
||
|
background-color: $session-shade-11;
|
||
|
}
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&__container--outgoing {
|
||
5 years ago
|
@at-root .light-theme #{&} {
|
||
|
background-color: $session-color-white;
|
||
|
}
|
||
|
@at-root .dark-theme #{&} {
|
||
|
background-color: $session-shade-11;
|
||
|
}
|
||
|
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&__container {
|
||
|
transition: background-color 0.25s;
|
||
|
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.69);
|
||
|
}
|
||
5 years ago
|
}
|
||
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
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&-selected {
|
||
|
.module-message {
|
||
|
&__container {
|
||
|
background-image: $session-gradient-green;
|
||
|
box-shadow: $session-dark-shadow;
|
||
|
}
|
||
|
|
||
|
&__author {
|
||
|
color: $session-color-white;
|
||
|
}
|
||
|
}
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
&-read-receipt-container {
|
||
|
margin-left: 5px;
|
||
5 years ago
|
}
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
|
.inbox {
|
||
|
background-image: $session-gradient-black;
|
||
|
}
|
||
|
}
|
||
|
.conversation {
|
||
|
background: none !important;
|
||
|
}
|
||
|
|
||
|
.discussion-container {
|
||
|
background: none !important;
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
|
@mixin session-h-title {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
@include session-h-title;
|
||
5 years ago
|
color: $session-shade-16;
|
||
5 years ago
|
font-size: 25px;
|
||
|
margin: 0;
|
||
5 years ago
|
|
||
|
&.active {
|
||
|
color: $session-color-white;
|
||
|
}
|
||
5 years ago
|
}
|
||
|
|
||
|
h2 {
|
||
|
@include session-h-title;
|
||
5 years ago
|
color: $session-color-white;
|
||
5 years ago
|
font-size: 22px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
@include session-h-title;
|
||
5 years ago
|
color: $session-color-white;
|
||
5 years ago
|
font-size: 18px;
|
||
|
padding-top: 22px;
|
||
|
}
|
||
5 years ago
|
|
||
|
h4 {
|
||
|
@include session-h-title;
|
||
5 years ago
|
color: $session-color-white;
|
||
5 years ago
|
font-size: 17px;
|
||
|
text-align: center;
|
||
|
}
|