session-desktop/stylesheets/_session_theme_dark.scss

104 lines
1.7 KiB
SCSS
Raw Normal View History

2019-12-09 03:57:18 +01:00
// Messages
2019-12-09 03:48:04 +01:00
.dark-theme {
.conversation {
background: none !important;
}
2019-12-09 03:57:18 +01:00
.module-conversation-header {
2019-12-13 02:02:02 +01:00
border-bottom: none;
background-color: $session-shade-4;
2019-12-09 03:57:18 +01:00
}
2019-12-09 03:48:04 +01:00
2019-12-13 02:02:02 +01:00
.module-message {
&__author,
&__metadata__badge,
&__metadata__date--incoming,
&__metadata__date--outgoing {
@include session-color-subtle($session-color-white);
}
2019-12-13 02:02:02 +01:00
&__container--incoming {
background-color: $session-shade-11;
}
2019-12-09 03:48:04 +01:00
2019-12-13 02:02:02 +01:00
&__container--outgoing {
background-color: $session-shade-5;
}
2019-12-09 03:48:04 +01:00
2019-12-13 02:02:02 +01:00
&__container {
transition: background-color 0.25s;
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.69);
}
2019-12-09 03:57:18 +01:00
}
2019-12-13 02:02:02 +01:00
.message {
&-highlighted {
background-color: $session-shade-5;
border-radius: 0;
}
2019-12-13 02:02:02 +01:00
&-selected {
.module-message {
&__container {
background-image: $session-gradient-green;
box-shadow: $session-dark-shadow;
}
&__author {
color: $session-color-white;
}
}
}
2019-12-13 02:02:02 +01:00
&-read-receipt-container {
margin-left: 5px;
}
}
.inbox {
background-image: $session-gradient-black;
}
}
.conversation {
background: none !important;
}
.discussion-container {
background: none !important;
2019-12-09 03:48:04 +01:00
}
2019-12-19 00:05:34 +01:00
@mixin session-h-title {
font-weight: bold;
}
h1 {
@include session-h-title;
color: $session-shade-16;
2019-12-19 00:05:34 +01:00
font-size: 25px;
margin: 0;
&.active {
color: $session-color-white;
}
2019-12-19 00:05:34 +01:00
}
h2 {
@include session-h-title;
color: $session-color-white;
2019-12-19 00:05:34 +01:00
font-size: 22px;
text-align: center;
}
h3 {
@include session-h-title;
color: $session-color-white;
2019-12-19 00:05:34 +01:00
font-size: 18px;
padding-top: 22px;
}
2019-12-19 01:56:30 +01:00
h4 {
@include session-h-title;
color: $session-color-white;
2019-12-19 01:56:30 +01:00
font-size: 17px;
text-align: center;
}