2020-09-25 14:51:21 +02:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
2022-09-20 23:23:22 +02:00
|
|
|
// Copyright (c) KALEIDOS INC
|
2020-09-25 14:51:21 +02:00
|
|
|
|
2022-08-09 15:07:43 +02:00
|
|
|
.team-hero {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
border: 2px solid $color-gray-10;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 0 1rem 0 21px;
|
|
|
|
height: 154px;
|
|
|
|
|
|
|
|
.text {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding-left: 20px;
|
|
|
|
.title {
|
|
|
|
font-size: $fs24;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
span {
|
|
|
|
color: $color-gray-30;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.invite {
|
|
|
|
align-self: flex-end;
|
2022-09-28 15:54:58 +02:00
|
|
|
height: 40px;
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
width: 180px;
|
2022-08-09 15:07:43 +02:00
|
|
|
}
|
|
|
|
img {
|
|
|
|
width: 274px;
|
|
|
|
margin-bottom: -41px;
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
display: none;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-11 14:48:15 +02:00
|
|
|
.hero-projects {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-gap: 30px;
|
|
|
|
margin: 0 1rem 1rem 1.2rem;
|
|
|
|
.tutorial,
|
|
|
|
.walkthrough {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
position: relative;
|
|
|
|
border: 2px solid $color-gray-10;
|
|
|
|
border-radius: 8px;
|
|
|
|
min-height: 211px;
|
|
|
|
|
|
|
|
.img {
|
|
|
|
border-top-left-radius: 6px;
|
|
|
|
border-bottom-left-radius: 6px;
|
|
|
|
padding: 30px;
|
|
|
|
display: block;
|
|
|
|
background-color: #e0e4e9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
padding: 30px;
|
|
|
|
.title {
|
|
|
|
color: $color-black;
|
|
|
|
font-size: $fs24;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
color: $color-gray-30;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-size: $fs16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.action {
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
width: 180px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: $size-5;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
margin: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
.icon {
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-30;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
&:hover {
|
|
|
|
fill: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1846px) {
|
|
|
|
grid-template-columns: 190px 1fr;
|
|
|
|
}
|
|
|
|
@media (max-width: 1526px) {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
.img {
|
|
|
|
display: none;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
.info {
|
|
|
|
// font-size: $fs12;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.walkthrough {
|
|
|
|
.img {
|
|
|
|
background-image: url("/images/walkthrough-cover.png");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.tutorial {
|
|
|
|
.img {
|
|
|
|
background-image: url("/images/hands-on-tutorial.png");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
.loader {
|
|
|
|
display: flex;
|
|
|
|
svg#loader-pencil {
|
|
|
|
width: 31px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.dashboard-container {
|
2020-09-25 14:51:21 +02:00
|
|
|
background-color: $color-dashboard;
|
|
|
|
flex: 1 0 0;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-4;
|
2020-09-25 14:51:21 +02:00
|
|
|
overflow-y: auto;
|
2021-03-09 09:13:17 +01:00
|
|
|
user-select: none;
|
2022-08-03 13:38:17 +02:00
|
|
|
width: 100%;
|
2022-07-13 09:26:22 +02:00
|
|
|
&.no-bg {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2020-09-25 14:51:21 +02:00
|
|
|
&.search {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-project-row {
|
2022-07-13 09:26:22 +02:00
|
|
|
margin-bottom: $size-5;
|
2020-09-25 14:51:21 +02:00
|
|
|
|
|
|
|
.project {
|
|
|
|
align-items: center;
|
|
|
|
background: $color-white;
|
|
|
|
border-radius: $br-small;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-07-13 09:26:22 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-top: $size-4;
|
2022-09-18 23:57:57 +05:30
|
|
|
padding: $size-2 $size-2 $size-2 $size-4;
|
2022-08-03 13:38:17 +02:00
|
|
|
width: 99%;
|
2022-09-18 23:57:57 +05:30
|
|
|
max-height: 40px;
|
|
|
|
gap: $size-2;
|
2022-07-13 09:26:22 +02:00
|
|
|
.project-name-wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
min-height: 32px;
|
2022-09-28 15:54:58 +02:00
|
|
|
margin-left: $size-2;
|
2022-07-13 09:26:22 +02:00
|
|
|
}
|
|
|
|
.show-more {
|
|
|
|
align-items: center;
|
|
|
|
color: $color-gray-30;
|
|
|
|
display: flex;
|
|
|
|
font-size: $fs14;
|
|
|
|
justify-content: space-between;
|
|
|
|
cursor: pointer;
|
|
|
|
.placeholder-icon {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
margin-left: 10px;
|
|
|
|
svg {
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
fill: $color-gray-30;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: $color-primary-dark;
|
|
|
|
svg {
|
|
|
|
fill: $color-primary-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
|
|
|
|
.btn-secondary {
|
2021-06-15 09:55:38 +02:00
|
|
|
border: none;
|
2022-09-18 23:57:57 +05:30
|
|
|
padding: $size-2;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
cursor: pointer;
|
2022-07-13 09:26:22 +02:00
|
|
|
font-size: $fs18;
|
2020-09-25 14:51:21 +02:00
|
|
|
line-height: 1rem;
|
2022-07-13 09:26:22 +02:00
|
|
|
font-weight: 600;
|
2020-09-25 14:51:21 +02:00
|
|
|
color: $color-black;
|
2022-09-18 23:57:57 +05:30
|
|
|
margin-right: $size-1;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
2021-03-03 16:04:51 +01:00
|
|
|
.edit-wrapper {
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-4;
|
2021-03-03 16:04:51 +01:00
|
|
|
}
|
|
|
|
|
2020-09-25 14:51:21 +02:00
|
|
|
.info {
|
2022-09-28 15:54:58 +02:00
|
|
|
font-size: $fs14;
|
2020-09-25 14:51:21 +02:00
|
|
|
line-height: 1rem;
|
2022-09-28 15:54:58 +02:00
|
|
|
font-weight: 400;
|
|
|
|
color: $color-gray-60;
|
|
|
|
margin-left: .75rem;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
2022-07-13 09:26:22 +02:00
|
|
|
.project-actions {
|
|
|
|
display: none;
|
|
|
|
margin-left: $size-6;
|
|
|
|
|
|
|
|
.btn-small {
|
2022-09-28 15:54:58 +02:00
|
|
|
height: 32px;
|
2022-07-13 09:26:22 +02:00
|
|
|
margin: 0 $size-2;
|
2022-09-28 15:54:58 +02:00
|
|
|
width: 32px;
|
2022-07-13 09:26:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 14:51:21 +02:00
|
|
|
.pin-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-07-13 09:26:22 +02:00
|
|
|
margin-right: 14px;
|
2020-09-25 14:51:21 +02:00
|
|
|
svg {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
fill: $color-gray-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2022-01-12 11:27:43 +01:00
|
|
|
svg {
|
|
|
|
fill: $color-gray-50;
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-13 09:26:22 +02:00
|
|
|
&:hover {
|
|
|
|
.project-actions {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
2020-10-05 18:20:39 +02:00
|
|
|
|
2020-10-19 13:19:30 +02:00
|
|
|
.recent-files-row-title-info {
|
2022-09-28 15:54:58 +02:00
|
|
|
color: $color-gray-60;
|
2022-07-13 09:26:22 +02:00
|
|
|
line-height: 1rem;
|
2022-09-28 15:54:58 +02:00
|
|
|
font-size: $fs14;
|
|
|
|
font-weight: 400;
|
2020-10-19 13:19:30 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.dashboard-table {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
font-size: $fs16;
|
|
|
|
|
2022-02-17 11:57:25 +01:00
|
|
|
&.team-members {
|
|
|
|
margin-bottom: 52px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.invitations {
|
|
|
|
.table-row {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 43% 1fr 109px 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.table-header {
|
2022-02-17 11:57:25 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 43% 1fr 109px 12px;
|
2020-10-05 18:20:39 +02:00
|
|
|
max-width: 1040px;
|
|
|
|
background-color: $color-white;
|
|
|
|
color: $color-gray-30;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-rows {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 1040px;
|
|
|
|
width: 100%;
|
2022-02-14 09:46:59 +01:00
|
|
|
margin-top: 16px;
|
2020-10-05 18:20:39 +02:00
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-row {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 45px;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-field {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
padding-left: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
fill: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-wrapper {
|
|
|
|
border: 1px solid $color-gray-10;
|
|
|
|
border-radius: $br-small;
|
|
|
|
display: flex;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding-right: $size-5;
|
2020-10-05 18:20:39 +02:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
input.element-title {
|
|
|
|
border: 0;
|
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
top: 1px;
|
|
|
|
right: 2px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-30;
|
|
|
|
height: 15px;
|
|
|
|
transform: rotate(45deg) translateY(7px);
|
|
|
|
width: 15px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-02 16:09:50 +02:00
|
|
|
|
|
|
|
.import-file-btn {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 2rem;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 4px;
|
|
|
|
width: 2rem;
|
|
|
|
|
|
|
|
background: none;
|
|
|
|
border: 1px solid $color-gray-20;
|
|
|
|
border-radius: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.4s;
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
}
|
2022-08-05 13:18:30 +02:00
|
|
|
|
|
|
|
.dashboard-templates-section {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 285px;
|
|
|
|
transition: bottom 300ms;
|
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
bottom: -228px;
|
|
|
|
transition: bottom 300ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
width: 100%;
|
|
|
|
text-align: right;
|
|
|
|
height: 56px;
|
|
|
|
div {
|
2022-08-11 14:48:15 +02:00
|
|
|
cursor: pointer;
|
2022-08-05 13:18:30 +02:00
|
|
|
height: 58px;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 58px;
|
|
|
|
text-align: center;
|
|
|
|
border-top: 2px solid #e4e4e4;
|
|
|
|
border-left: 2px solid #e4e4e4;
|
|
|
|
border-right: 2px solid #e4e4e4;
|
|
|
|
border-top-left-radius: 10px;
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
margin-right: 30px;
|
|
|
|
background-color: $color-white;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: $color-black;
|
2022-09-28 15:54:58 +02:00
|
|
|
margin-left: 18px;
|
2022-08-05 13:18:30 +02:00
|
|
|
margin-right: 10px;
|
2022-09-28 15:54:58 +02:00
|
|
|
&.icon {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
2022-08-05 13:18:30 +02:00
|
|
|
}
|
|
|
|
svg {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
position: absolute;
|
|
|
|
top: 133px;
|
|
|
|
border: 2px solid #e0e4e9;
|
|
|
|
border-radius: 50%;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 35px;
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: $color-white;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
left: 0;
|
|
|
|
margin-left: 43px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
right: 0;
|
|
|
|
margin-right: 43px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: 2px solid $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
background-color: $color-white;
|
|
|
|
width: 200%;
|
|
|
|
height: 229px;
|
|
|
|
border-top: 2px solid #e4e4e4;
|
|
|
|
border-left: 2px solid #e4e4e4;
|
|
|
|
margin-left: 5px;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
.card-container {
|
|
|
|
width: 275px;
|
|
|
|
height: 100%;
|
|
|
|
margin-top: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-card {
|
|
|
|
display: inline-block;
|
|
|
|
width: 255px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #181a22;
|
|
|
|
cursor: pointer;
|
|
|
|
.img-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 135px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 2px solid #e0e4e9;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-name {
|
|
|
|
padding: 0 5px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 23px;
|
|
|
|
svg {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-link {
|
|
|
|
border: 2px solid transparent;
|
|
|
|
margin: 30px;
|
|
|
|
padding: 32px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-link-title {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: $color-gray-60;
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-link-text {
|
|
|
|
font-size: 12px;
|
|
|
|
color: $color-gray-30;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.img-container {
|
|
|
|
border: 2px solid $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|