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.
147 lines
2.3 KiB
SCSS
147 lines
2.3 KiB
SCSS
.message-detail-wrapper {
|
|
height: calc(100% - 48px);
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
z-index: 2;
|
|
}
|
|
|
|
.message-container {
|
|
list-style: none;
|
|
|
|
li {
|
|
margin-bottom: 2px;
|
|
|
|
&::after {
|
|
visibility: hidden;
|
|
display: block;
|
|
font-size: 0;
|
|
content: ' ';
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.module-message__check-box {
|
|
color: rgb(97, 97, 97);
|
|
font-size: 20px;
|
|
padding: 4px;
|
|
user-select: none;
|
|
display: inline;
|
|
}
|
|
|
|
.check-box-container {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.check-box-selected {
|
|
opacity: 1;
|
|
}
|
|
|
|
.public-chat-message-wrapper {
|
|
padding-inline-start: 10px;
|
|
padding-inline-end: 10px;
|
|
}
|
|
|
|
.group-invitation-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.group-invitation {
|
|
@include themify($themes) {
|
|
background: themed('receivedMessageBackground');
|
|
}
|
|
&.invitation-outgoing {
|
|
@include themify($themes) {
|
|
background: themed('sentMessageBackground');
|
|
}
|
|
}
|
|
display: inline-block;
|
|
margin: 4px 16px;
|
|
padding: 4px;
|
|
|
|
border-radius: 15px;
|
|
|
|
align-self: flex-start;
|
|
|
|
box-shadow: none;
|
|
|
|
.title {
|
|
margin: 6px;
|
|
color: darkslategray;
|
|
font-variant-caps: all-small-caps;
|
|
user-select: none;
|
|
}
|
|
|
|
.contents {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 6px;
|
|
|
|
.invite-group-avatar {
|
|
height: 48px;
|
|
width: 48px;
|
|
}
|
|
|
|
.group-details {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
|
|
padding: 0px 12px;
|
|
|
|
.group-name {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.group-address {
|
|
color: grey;
|
|
}
|
|
}
|
|
|
|
.session-icon-button {
|
|
@include themify($themes) {
|
|
background-color: themed('accent');
|
|
box-shadow: none;
|
|
}
|
|
filter: brightness(1.05);
|
|
svg path {
|
|
transition: $session-transition-duration;
|
|
opacity: 0.6;
|
|
@include themify($themes) {
|
|
fill: themed('textColorOpposite');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.dark-theme {
|
|
.group-invitation {
|
|
background-color: #242424;
|
|
border-color: #303030;
|
|
box-shadow: none;
|
|
|
|
.title {
|
|
color: lightgrey;
|
|
}
|
|
}
|
|
}
|
|
|
|
.invitation-outgoing {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.typing-bubble-wrapper {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-detail-pane {
|
|
overflow-y: scroll;
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
}
|