session-desktop/stylesheets/_conversation.scss

80 lines
1.4 KiB
SCSS
Raw Normal View History

.message-detail-wrapper {
height: calc(100% - 48px);
width: 100%;
overflow-y: auto;
z-index: 2;
}
.public-chat-message-wrapper {
padding-inline-start: 10px;
padding-inline-end: 10px;
}
2019-11-22 06:16:43 +01:00
.group-invitation-container {
display: flex;
flex-direction: column;
}
.group-invitation {
background-color: var(--message-bubbles-received-background-color);
2021-05-07 08:52:10 +02:00
&.invitation-outgoing {
background-color: var(--message-bubbles-sent-background-color);
align-self: flex-end;
.contents {
.session-icon-button {
background-color: var(--transparent-color);
}
}
2021-05-07 08:52:10 +02:00
}
2019-11-22 06:16:43 +01:00
display: inline-block;
margin: 4px 16px;
padding: 4px;
border-radius: var(--border-radius-message-box);
2019-11-22 06:16:43 +01:00
align-self: flex-start;
2020-02-05 04:19:01 +01:00
box-shadow: none;
2019-11-22 06:16:43 +01:00
.contents {
display: flex;
align-items: center;
margin: 6px;
.invite-group-avatar {
height: 48px;
width: 48px;
}
.group-details {
display: inline-flex;
flex-direction: column;
2021-05-07 06:49:38 +02:00
padding: 0px 12px;
2019-11-22 06:16:43 +01:00
.group-name {
2021-05-07 06:49:38 +02:00
font-weight: bold;
font-size: 18px;
2019-11-22 06:16:43 +01:00
}
}
2021-05-07 06:49:38 +02:00
.session-icon-button {
background-color: var(--primary-color);
2019-11-22 06:16:43 +01:00
}
}
}
2022-04-14 07:42:22 +02:00
.group-invitation {
.group-details {
color: var(--message-bubbles-received-text-color);
2022-04-14 07:42:22 +02:00
}
}
.group-invitation.invitation-outgoing {
.group-details {
color: var(--message-bubbles-sent-text-color);
2022-04-14 07:42:22 +02:00
}
}