session-desktop/stylesheets/_index.scss

150 lines
2.4 KiB
SCSS
Raw Normal View History

.inbox {
height: 100%;
overflow: hidden;
transition: none;
}
2020-11-13 04:29:59 +01:00
.inbox.index {
display: flex;
background-color: var(--color-inbox-background);
2020-11-13 04:29:59 +01:00
}
.edit-profile-dialog,
2020-02-19 01:27:37 +01:00
.create-group-dialog,
2021-05-14 09:13:49 +02:00
.user-details-dialog,
.update-group-dialog,
2021-05-14 09:13:49 +02:00
.onion-status-dialog {
2019-11-18 07:23:27 +01:00
.content {
max-width: 100% !important;
}
.buttons {
margin: 8px;
}
.profile-name {
font-size: larger;
text-align: center;
}
.title-text {
font-size: large;
text-align: center;
}
.message {
font-style: italic;
color: var(--color-gray-color);
2019-11-18 07:23:27 +01:00
font-size: 12px;
margin-bottom: 16px;
}
.module-avatar {
display: block;
margin-bottom: 1em;
}
.avatar-center {
2019-11-18 07:23:27 +01:00
display: flex;
justify-content: center;
}
.avatar-center-inner {
2019-11-18 07:23:27 +01:00
display: flex;
}
}
.scrollable {
height: 100%;
overflow: auto;
}
.section-conversations-container {
display: flex;
flex-direction: row;
margin-inline-end: 3em;
align-items: center;
h4 {
2019-01-16 05:44:13 +01:00
flex: 1;
}
}
2019-01-14 22:49:58 +01:00
.left-pane-placeholder {
flex-grow: 1;
display: flex;
2019-01-14 22:49:58 +01:00
}
2020-11-13 04:29:59 +01:00
.conversation.placeholder {
height: 100vh;
}
2019-01-14 22:49:58 +01:00
.left-pane-wrapper {
flex: 1;
}
.hint {
margin: 10px;
padding: 1em;
2016-04-01 23:24:13 +02:00
border-radius: $border-radius;
color: white;
border: 2px dashed white;
h3 {
margin-top: 5px;
}
&.firstRun {
position: absolute;
top: 0;
left: 302px;
width: 225px;
2018-05-04 22:07:52 +02:00
&:before,
&:after {
content: ' ';
display: block;
position: absolute;
top: 8px;
left: -35px;
width: 0;
height: 0;
border: solid 10px white;
border-color: transparent white transparent transparent;
transform: scaleX(2.5) scaleY(0.75);
}
&:after {
border-color: transparent var(--color-dark-blue-color) transparent transparent;
left: -30px;
}
}
}
2015-11-28 00:43:45 +01:00
.contact.placeholder {
position: absolute;
top: 50px;
left: 0;
background: transparent;
color: white;
border: 2px dashed white;
overflow: visible;
2018-05-04 22:07:52 +02:00
p {
color: white;
}
&:before,
&:after {
content: ' ';
display: block;
position: absolute;
top: -35px;
left: 15px;
width: 0;
height: 0;
border: solid 10px white;
border-color: transparent transparent white transparent;
transform: scaleY(2.5) scaleX(0.75);
}
&:after {
border-color: transparent transparent var(--color-dark-blue-color) transparent;
top: -30px;
}
}