session-desktop/stylesheets/_index.scss
William Grant 6cdfa47008 reafctors: converted sass colors in _index.scss
removed unused colors and classes
2022-08-23 15:16:25 +10:00

150 lines
2.3 KiB
SCSS

.inbox {
height: 100%;
overflow: hidden;
transition: none;
}
.inbox.index {
display: flex;
background-color: var(--color-inbox-background);
}
.edit-profile-dialog,
.create-group-dialog,
.user-details-dialog,
.update-group-dialog,
.onion-status-dialog {
.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);
font-size: 12px;
margin-bottom: 16px;
}
.module-avatar {
display: block;
margin-bottom: 1em;
}
.avatar-center {
display: flex;
justify-content: center;
}
.avatar-center-inner {
display: flex;
}
}
.scrollable {
height: 100%;
overflow: auto;
}
.section-conversations-container {
display: flex;
flex-direction: row;
margin-inline-end: 3em;
align-items: center;
h4 {
flex: 1;
}
}
.left-pane-placeholder {
flex-grow: 1;
display: flex;
}
.conversation.placeholder {
height: 100vh;
}
.left-pane-wrapper {
flex: 1;
}
.hint {
margin: 10px;
padding: 1em;
border-radius: $border-radius;
color: white;
border: 2px dashed white;
h3 {
margin-top: 5px;
}
&.firstRun {
position: absolute;
top: 0;
left: 302px;
width: 225px;
&: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 #2eace0 transparent transparent;
left: -30px;
}
}
}
.contact.placeholder {
position: absolute;
top: 50px;
left: 0;
background: transparent;
color: white;
border: 2px dashed white;
overflow: visible;
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 #2eace0 transparent;
top: -30px;
}
}