2020-08-05 12:35:09 +02:00
|
|
|
.modal-wrapper {}
|
|
|
|
|
|
|
|
.modal-overlay {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-dark-bg;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
|
|
&.transparent {
|
|
|
|
background-color: rgba($color-white, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal,
|
2020-05-22 13:48:21 +02:00
|
|
|
.generic-modal {
|
|
|
|
background-color: $color-white;
|
|
|
|
width: 565px;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.close {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
top: 16px;
|
|
|
|
svg {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-direction: column;
|
2020-09-25 14:51:21 +02:00
|
|
|
padding: 60px 100px;
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
font-size: $fs13;
|
|
|
|
}
|
|
|
|
> button:not(:first-child) {
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
// NEW GEN MODALS
|
|
|
|
|
|
|
|
.modal-container {
|
2020-11-13 09:51:53 +01:00
|
|
|
border-radius: $br-medium;
|
2020-10-05 18:20:39 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 448px;
|
|
|
|
background-color: $color-dashboard;
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-white;
|
|
|
|
border-radius: 8px 8px 0px 0px;
|
|
|
|
color: $color-black;
|
|
|
|
display: flex;
|
|
|
|
height: 63px;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-11-13 09:51:53 +01:00
|
|
|
font-size: $fs18;
|
2020-10-05 18:20:39 +02:00
|
|
|
padding-left: 16px;
|
|
|
|
|
|
|
|
h2 {
|
2020-11-13 09:51:53 +01:00
|
|
|
font-size: $fs18;
|
|
|
|
font-weight: 400;
|
2020-10-05 18:20:39 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-close-button {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
height: 30px;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 16px;
|
|
|
|
width: 30px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.modal-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 32px;
|
|
|
|
border-top: 1px solid $color-gray-10;
|
|
|
|
h3 {
|
|
|
|
color: $color-gray-40;
|
|
|
|
font-size: $fs16;
|
2020-10-20 11:48:17 +02:00
|
|
|
font-weight: 400;
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
display: flex;
|
|
|
|
height: 63px;
|
|
|
|
padding: 0px 16px;
|
|
|
|
border-top: 1px solid $color-gray-10;
|
2020-05-22 13:48:21 +02:00
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.action-buttons {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: flex-end;
|
|
|
|
// border: 1px solid red;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2021-04-26 12:30:12 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-disabled {
|
|
|
|
opacity: 0.5;
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.change-email-modal {
|
|
|
|
h2 {
|
|
|
|
font-size: $fs18
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer .action-buttons {
|
|
|
|
justify-content: space-around;
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2021-08-31 16:10:42 +02:00
|
|
|
|
|
|
|
.fields-container {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2020-05-22 13:48:21 +02:00
|
|
|
}
|
2020-08-05 12:35:09 +02:00
|
|
|
|
|
|
|
.confirm-dialog {
|
|
|
|
background-color: $color-white;
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
p {
|
|
|
|
font-size: $fs14;
|
|
|
|
color: $color-gray-40;
|
2020-08-05 12:35:09 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.action-buttons {
|
2020-08-05 12:35:09 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
2020-10-05 18:20:39 +02:00
|
|
|
font-size: $fs14;
|
2020-08-05 12:35:09 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.cancel-button {
|
2020-08-05 12:35:09 +02:00
|
|
|
border: 1px solid $color-gray-30;
|
|
|
|
background: $color-canvas;
|
2020-10-05 18:20:39 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
padding: 0.5rem 1rem;
|
2020-08-05 12:35:09 +02:00
|
|
|
cursor: pointer;
|
2020-10-05 18:20:39 +02:00
|
|
|
margin-right: 8px;
|
2020-08-05 12:35:09 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-gray-20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.accept-button {
|
|
|
|
border-radius: 3px;
|
2020-08-05 12:35:09 +02:00
|
|
|
cursor: pointer;
|
2020-10-05 18:20:39 +02:00
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
2020-10-14 08:59:44 +02:00
|
|
|
&.danger {
|
|
|
|
background: $color-danger;
|
|
|
|
border: 1px solid $color-danger;
|
|
|
|
color: $color-white;
|
|
|
|
&:hover {
|
|
|
|
background: $color-danger-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.primary {
|
|
|
|
background: $color-primary;
|
|
|
|
border: 1px solid $color-primary;
|
|
|
|
color: $color-black;
|
2021-07-01 17:47:32 +02:00
|
|
|
|
2020-10-14 08:59:44 +02:00
|
|
|
&:hover {
|
|
|
|
background: $color-primary-dark;
|
|
|
|
}
|
2020-08-05 12:35:09 +02:00
|
|
|
}
|
|
|
|
}
|
2021-07-01 17:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.import-dialog,
|
|
|
|
.export-dialog {
|
|
|
|
background-color: $color-white;
|
|
|
|
border: 1px solid $color-gray-20;
|
|
|
|
width: 30rem;
|
2021-07-06 18:04:49 +02:00
|
|
|
min-height: 14rem;
|
2021-07-01 17:47:32 +02:00
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: $fs14;
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detail {
|
|
|
|
font-size: $fs12;
|
|
|
|
}
|
|
|
|
|
|
|
|
.detail, .explain {
|
|
|
|
padding: 0 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cancel-button {
|
|
|
|
border: 1px solid $color-gray-20;
|
|
|
|
background: $color-white;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 0.3rem 1.25rem;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-gray-20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.accept-button {
|
|
|
|
background: $color-primary;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid $color-primary;
|
|
|
|
color: $color-black;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0.3rem 1.25rem;
|
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
border: 1px solid #E3E3E3;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-primary-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: calc(65vh);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header-title {
|
|
|
|
padding-left: 2rem;
|
2020-10-05 18:20:39 +02:00
|
|
|
|
2021-07-01 17:47:32 +02:00
|
|
|
h2 {
|
|
|
|
font-size: $fs14;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
max-width: 18px;
|
|
|
|
max-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-entry {
|
|
|
|
margin: 0.75rem 1rem;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
&.editable:hover {
|
|
|
|
.file-name-label {
|
|
|
|
background-color: $color-primary-lighter;
|
|
|
|
}
|
|
|
|
.edit-entry-buttons {
|
|
|
|
display: flex;
|
|
|
|
background-color: $color-primary-lighter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-icon {
|
|
|
|
width: 18px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loader-pencil {
|
|
|
|
fill: $color-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-tick {
|
|
|
|
fill: $color-success;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-close {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
fill: $color-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: $color-black;
|
|
|
|
|
|
|
|
.file-name-label {
|
|
|
|
flex: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 2rem;
|
|
|
|
margin-left: -0.25rem;
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
|
|
|
|
.icon-library {
|
|
|
|
width: 14px;
|
|
|
|
fill: $color-gray-20;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
padding-top: 1px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-name-edit {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid $color-gray-20;
|
|
|
|
height: 2rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feedback-banner {
|
|
|
|
color: $color-black;
|
|
|
|
background: $color-success-lighter;
|
|
|
|
height: 40px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0 1rem;
|
|
|
|
|
|
|
|
.message {
|
|
|
|
padding: 0 1rem;
|
|
|
|
font-size: $fs12;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
background: $color-success;
|
|
|
|
height: 40px;
|
|
|
|
width: 40px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
fill: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
margin: 0 2rem;
|
|
|
|
color: $color-danger;
|
|
|
|
font-size: $fs12;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2021-09-30 11:10:48 +02:00
|
|
|
.progress-message {
|
|
|
|
margin: 0 2rem;
|
|
|
|
color: $color-info;
|
|
|
|
font-size: $fs12;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2021-07-01 17:47:32 +02:00
|
|
|
.linked-libraries {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: 2rem;
|
|
|
|
|
|
|
|
.icon-chain, .icon-unchain {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.linked-library-tag {
|
|
|
|
font-size: $fs10;
|
|
|
|
color: $color-black;
|
|
|
|
background: #d8f7fe;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0.25rem;
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
background-color: $color-danger-lighter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-entry-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
font-size: $fs14;
|
|
|
|
height: 2rem;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
button {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover svg {
|
|
|
|
fill: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.export-dialog {
|
|
|
|
.export-option {
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $color-gray-10;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3, p {
|
|
|
|
font-size: $fs12;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin: 0;
|
|
|
|
color: $color-black;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
border: 1px solid $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-container {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
padding-left: 40px;
|
|
|
|
padding-right: 1rem;
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
input {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-radio-check {
|
|
|
|
position: absolute;
|
|
|
|
top: 1rem;
|
|
|
|
left: 12px;
|
|
|
|
height: 18px;
|
|
|
|
width: 18px;
|
|
|
|
background-color: $color-white;
|
|
|
|
border: 1px solid $color-gray-10;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover input ~ .option-radio-check {
|
|
|
|
border-color: $color-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked ~ .option-radio-check {
|
|
|
|
border-color: $color-primary;
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-radio-check:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked ~ .option-radio-check:after {
|
|
|
|
display: block;
|
|
|
|
background-color: $color-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-radio-check:after {
|
|
|
|
top: 3px;
|
|
|
|
left: 3px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 12:35:09 +02:00
|
|
|
}
|
|
|
|
|
2020-08-05 13:30:26 +02:00
|
|
|
.libraries-dialog {
|
2020-11-13 09:51:53 +01:00
|
|
|
border-radius: $br-medium;
|
2020-08-05 13:30:26 +02:00
|
|
|
height: 664px;
|
2020-11-13 09:51:53 +01:00
|
|
|
width: 920px;
|
2020-08-05 13:30:26 +02:00
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.libraries-header {
|
|
|
|
border-bottom: 1px solid $color-gray-20;
|
|
|
|
padding: 2rem 1rem 0.5rem 1rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.header-item {
|
|
|
|
cursor: pointer;
|
|
|
|
color: $color-gray-40;
|
|
|
|
font-size: $fs15;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $color-gray-60;
|
|
|
|
border-bottom: 2px solid $color-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.libraries-content {
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
|
|
|
align-items: stretch;
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 0 $size-4;
|
|
|
|
color: $color-gray-40;
|
|
|
|
|
|
|
|
.section {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: $size-4 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
border-left: 1px solid $color-gray-20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
2020-11-13 12:47:14 +01:00
|
|
|
color: $color-black;
|
2020-08-05 13:30:26 +02:00
|
|
|
font-size: $fs15;
|
|
|
|
padding: 0 $size-4;
|
2020-11-13 12:47:14 +01:00
|
|
|
font-weight: 500;
|
2020-08-05 13:30:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-list {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
padding: 0 $size-4;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
.section-list-item {
|
|
|
|
padding: $size-4 0;
|
|
|
|
border-bottom: 1px solid $color-gray-20;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.item-name {
|
|
|
|
color: $color-gray-60;
|
|
|
|
font-size: $fs14;
|
2021-02-01 10:59:36 +01:00
|
|
|
margin-right: calc(4.5rem + 1rem);
|
2020-08-05 13:30:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.item-contents {
|
|
|
|
color: $color-gray-40;
|
|
|
|
font-size: $fs12;
|
2021-02-01 10:59:36 +01:00
|
|
|
margin-right: calc(4.5rem + 1rem);
|
2020-08-05 13:30:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.item-button {
|
2020-08-19 13:08:16 +02:00
|
|
|
cursor: pointer;
|
2020-08-05 13:30:26 +02:00
|
|
|
position: absolute;
|
|
|
|
top: $size-4;
|
|
|
|
right: 0;
|
|
|
|
border: 1px solid $color-primary;
|
|
|
|
border-radius: 2px;
|
|
|
|
width: 4.5rem;
|
|
|
|
background: $color-primary;
|
|
|
|
color: $color-black;
|
|
|
|
padding: $size-2;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-primary;
|
|
|
|
background: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-list-empty {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 $size-4;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
& svg {
|
|
|
|
fill: $color-gray-20;
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
margin-bottom: $size-4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.libraries-search {
|
2020-11-13 09:51:53 +01:00
|
|
|
border: 1px solid $color-gray-20;
|
2020-08-05 13:30:26 +02:00
|
|
|
margin: $size-4;
|
2020-11-13 09:51:53 +01:00
|
|
|
padding: $x-small $small;
|
2020-08-05 13:30:26 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:focus-within {
|
|
|
|
border-color: $color-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .search-input {
|
|
|
|
border: none;
|
|
|
|
color: $color-gray-60;
|
|
|
|
font-size: $fs12;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .search-icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-30;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.search-close {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-09 17:25:49 +01:00
|
|
|
//- ONBOARDING
|
|
|
|
.onboarding {
|
|
|
|
background-color: $color-white;
|
|
|
|
box-shadow: 0 10px 10px rgba(0,0,0,.2);
|
|
|
|
display: flex;
|
2021-03-24 11:32:18 +01:00
|
|
|
min-height: 370px;
|
2020-12-09 17:25:49 +01:00
|
|
|
flex-direction: row;
|
|
|
|
font-family: "sourcesanspro", sans-serif;
|
|
|
|
min-width: 620px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.modal-left {
|
|
|
|
align-items: center;
|
2021-05-20 09:44:11 +02:00
|
|
|
background-color: $color-pink;
|
2020-12-09 17:25:49 +01:00
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
justify-content: center;
|
2021-03-24 11:32:18 +01:00
|
|
|
overflow: hidden;
|
2020-12-09 17:25:49 +01:00
|
|
|
padding: $x-big;
|
|
|
|
width: 230px;
|
2021-05-20 09:44:11 +02:00
|
|
|
|
|
|
|
&.welcome {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-12-09 17:25:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-right {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: $x-big;
|
|
|
|
|
|
|
|
.modal-title h2 {
|
|
|
|
color: $color-black;
|
|
|
|
font-size: $fs28;
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
.release {
|
|
|
|
background-color: $color-primary;
|
|
|
|
color: $color-black;
|
|
|
|
font-size: $fs12;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: $small;
|
|
|
|
padding: 2px $x-small;
|
|
|
|
width: max-content;
|
|
|
|
}
|
2020-12-10 12:23:43 +01:00
|
|
|
|
2020-12-09 17:25:49 +01:00
|
|
|
.modal-content {
|
|
|
|
border: none;
|
|
|
|
padding: $big 0;
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $color-black;
|
|
|
|
font-size: 16px;
|
|
|
|
margin-top: $small;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-navigation {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-top: auto;
|
|
|
|
|
|
|
|
.skip {
|
|
|
|
cursor: pointer;
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
font-size: $fs13;
|
|
|
|
margin-left: $big;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.step-dots {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
li {
|
|
|
|
background-color: $color-gray-10;
|
|
|
|
border-radius: 50%;
|
2020-12-10 12:23:43 +01:00
|
|
|
cursor: pointer;
|
2020-12-09 17:25:49 +01:00
|
|
|
height: $small;
|
|
|
|
margin-left: $small;
|
|
|
|
width: $small;
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
background-color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.black {
|
|
|
|
.modal-left {
|
|
|
|
background-color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.feature {
|
|
|
|
.modal-left {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
img {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2021-03-24 11:32:18 +01:00
|
|
|
height: 100%;
|
2021-09-07 19:41:22 +02:00
|
|
|
width: 115%;
|
2020-12-09 17:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.final {
|
|
|
|
padding: $big 0 0 0;
|
|
|
|
|
|
|
|
.modal-left,
|
|
|
|
.modal-right {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-white;
|
|
|
|
color: $color-black;
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: column;
|
2021-05-20 09:44:11 +02:00
|
|
|
overflow: visible;
|
2020-12-09 17:25:49 +01:00
|
|
|
padding: $x-big 40px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-weight: 900;
|
|
|
|
margin-bottom: $big;
|
|
|
|
font-size: $fs24;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: $fs14;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: auto;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
|
|
|
|
border-radius: $br-medium;
|
|
|
|
margin-bottom: $x-big;
|
|
|
|
margin-top: -90px;
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-left {
|
|
|
|
border-right: 1px solid $color-gray-10;
|
|
|
|
|
|
|
|
form {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-top: auto;
|
|
|
|
|
|
|
|
.custom-input {
|
|
|
|
margin-bottom: $medium;
|
|
|
|
|
|
|
|
input {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.deco {
|
|
|
|
left: -10px;
|
|
|
|
position: absolute;
|
|
|
|
top: -18px;
|
|
|
|
width: 60px;
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
left: 590px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-07-13 15:31:02 +02:00
|
|
|
|
|
|
|
.relnotes .onboarding {
|
|
|
|
height: 420px;
|
|
|
|
}
|