|
|
|
.modal {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
padding: 0 20px;
|
|
|
|
z-index: 100;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
position: relative;
|
|
|
|
max-width: 350px;
|
|
|
|
margin: 100px auto;
|
|
|
|
padding: 1em;
|
|
|
|
background-color: white;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
overflow: auto;
|
|
|
|
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove scroll bars */
|
|
|
|
.loki-dialog .add-moderators-dialog .content {
|
|
|
|
padding: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-modal {
|
|
|
|
.contact-selection-list {
|
|
|
|
width: 100%;
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-group-dialog,
|
|
|
|
.add-moderators-dialog,
|
|
|
|
.remove-moderators-dialog,
|
|
|
|
.invite-friends-dialog {
|
|
|
|
.content {
|
|
|
|
max-width: 100% !important;
|
|
|
|
}
|
|
|
|
.contact-selection-list {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group-name {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleText {
|
|
|
|
font-size: large;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-contacts {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-group-dialog,
|
|
|
|
.add-moderators-dialog,
|
|
|
|
.remove-moderators-dialog,
|
|
|
|
.edit-profile-dialog {
|
|
|
|
.error-message {
|
|
|
|
text-align: center;
|
|
|
|
color: red;
|
|
|
|
display: block;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-faded {
|
|
|
|
opacity: 0;
|
|
|
|
margin-top: -5px;
|
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-shown {
|
|
|
|
opacity: 1;
|
|
|
|
transition: all 250ms linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loki-dialog {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
max-width: 75%;
|
|
|
|
min-width: 60%;
|
|
|
|
padding: 1em;
|
|
|
|
background: white;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
overflow: auto;
|
|
|
|
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO is this being used anywhere? Seems not
|
|
|
|
// button {
|
|
|
|
// float: right;
|
|
|
|
// margin-inline-start: 10px;
|
|
|
|
// background-color: var(--color-session-green-color);
|
|
|
|
// border-radius: 100px;
|
|
|
|
// padding: 5px 15px;
|
|
|
|
// border: 1px solid var(--color-session-green-color);
|
|
|
|
// color: white;
|
|
|
|
// outline: none;
|
|
|
|
// user-select: none;
|
|
|
|
|
|
|
|
// &:hover,
|
|
|
|
// &:disabled {
|
|
|
|
// background-color: var(--color-session-green-color)-dark;
|
|
|
|
// border-color: var(--color-session-green-color)-dark;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// &:disabled {
|
|
|
|
// cursor: not-allowed;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
border: 0;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: var(--color-lighter-gray-color);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.loki-dialog {
|
|
|
|
& ~ .index.inbox {
|
|
|
|
// filter: blur(2px); // FIXME enable back once modals are moved to react
|
|
|
|
// currently it cause an issues with toast being on the foreground when a modal is shown
|
|
|
|
transition: filter 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: var(--color-input-background);
|
|
|
|
color: var(--color-text);
|
|
|
|
border: var(--border-session);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-profile-dialog {
|
|
|
|
.session-modal__header__title {
|
|
|
|
font-size: var(--font-size-lg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-modal {
|
|
|
|
width: $session-modal-size-md;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
height: 68.45px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-center-inner {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.module-avatar {
|
|
|
|
// TODO Theming update
|
|
|
|
box-shadow: 0px 0px 13px 0.5px var(--color-session-shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
.qr-view-button {
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
right: -3px;
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: white;
|
|
|
|
transition: var(--default-duration);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
filter: brightness(90%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-icon-button {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-id-section {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
.session-button {
|
|
|
|
width: 148px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-name {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: var(--margins-lg);
|
|
|
|
|
|
|
|
input {
|
|
|
|
height: 38px;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: $session-font-md;
|
|
|
|
background: var(--color-input-background);
|
|
|
|
color: var(--color-text);
|
|
|
|
border: var(--border-session);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-uneditable {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: $session-font-md;
|
|
|
|
padding: 0px var(--margins-sm);
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-icon-button {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.onion-status-dialog {
|
|
|
|
.session-modal__header__title {
|
|
|
|
font-size: var(--font-size-lg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-modal {
|
|
|
|
width: $session-modal-size-md;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
height: 68.45px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.session-modal__body {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
|
|
|
.onionDescriptionContainer {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.onionPath {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 2em auto;
|
|
|
|
|
|
|
|
.dotContainer:not(:last-child) {
|
|
|
|
padding-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dotContainer {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 2em;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.lineContainer {
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reaction-list-modal {
|
|
|
|
.session-confirm-wrapper {
|
|
|
|
.session-modal__body {
|
|
|
|
width: 376px;
|
|
|
|
padding: 0;
|
|
|
|
.session-modal__centered {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|