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
|
|
|
|
|
|
|
.dashboard-header {
|
2022-02-17 11:57:25 +01:00
|
|
|
display: flex;
|
2020-09-25 14:51:21 +02:00
|
|
|
align-items: center;
|
2022-02-17 11:57:25 +01:00
|
|
|
justify-content: space-between;
|
2020-09-25 14:51:21 +02:00
|
|
|
background-color: $color-white;
|
|
|
|
height: 63px;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-1 $size-4 $size-1 $size-2;
|
2020-09-25 14:51:21 +02:00
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
2023-01-09 14:26:24 +01:00
|
|
|
user-select: none;
|
2022-02-17 11:57:25 +01:00
|
|
|
&.team {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 20% 1fr 20%;
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
|
|
|
|
.element-name {
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-2;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
flex-shrink: 0;
|
|
|
|
z-index: 10;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-black;
|
|
|
|
height: 14px;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-1;
|
2020-09-25 14:51:21 +02:00
|
|
|
width: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2020-10-05 18:20:39 +02:00
|
|
|
display: flex;
|
2022-02-17 11:57:25 +01:00
|
|
|
align-items: flex-end;
|
2020-10-05 18:20:39 +02:00
|
|
|
justify-content: center;
|
|
|
|
z-index: 1;
|
|
|
|
|
2020-09-25 14:51:21 +02:00
|
|
|
ul {
|
|
|
|
display: flex;
|
2021-10-05 12:59:00 +02:00
|
|
|
font-size: $fs14;
|
2020-09-25 14:51:21 +02:00
|
|
|
justify-content: center;
|
2022-02-17 11:57:25 +01:00
|
|
|
margin: 0;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
a {
|
2022-02-17 11:57:25 +01:00
|
|
|
display: flex;
|
2020-09-25 14:51:21 +02:00
|
|
|
align-items: center;
|
2022-02-17 11:57:25 +01:00
|
|
|
flex-basis: 140px;
|
2020-09-25 14:51:21 +02:00
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
color: $color-gray-30;
|
|
|
|
height: 40px;
|
2021-10-05 10:16:44 +02:00
|
|
|
padding: $size-1 $size-5;
|
2023-02-22 13:52:45 +01:00
|
|
|
font-weight: $fw400;
|
2020-09-25 14:51:21 +02:00
|
|
|
&:hover {
|
|
|
|
color: $color-black;
|
2023-01-02 09:34:19 +01:00
|
|
|
text-decoration: none;
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
&.active {
|
2020-09-25 14:51:21 +02:00
|
|
|
a {
|
|
|
|
color: $color-black;
|
|
|
|
border-color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-title {
|
|
|
|
display: flex;
|
2022-02-17 11:57:25 +01:00
|
|
|
align-items: center;
|
2022-11-28 08:44:19 +01:00
|
|
|
margin-left: 13px;
|
2022-02-17 11:57:25 +01:00
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
h1 {
|
|
|
|
color: $color-black;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
2022-07-13 09:26:22 +02:00
|
|
|
font-size: $fs22;
|
2023-02-22 13:52:45 +01:00
|
|
|
font-weight: $fw600;
|
2020-10-05 18:20:39 +02:00
|
|
|
z-index: 10;
|
2023-01-09 14:26:24 +01:00
|
|
|
user-select: all;
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu.is-open {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-left: $size-2;
|
2020-09-25 14:51:21 +02:00
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-40;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
fill: $color-primary-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-23 12:27:46 +01:00
|
|
|
|
2022-02-17 11:57:25 +01:00
|
|
|
.dashboard-buttons {
|
|
|
|
display: flex;
|
2022-02-22 18:06:48 +01:00
|
|
|
justify-content: flex-end;
|
2022-02-17 11:57:25 +01:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-06-15 09:55:38 +02:00
|
|
|
.dashboard-header-actions {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2021-02-23 12:27:46 +01:00
|
|
|
.pin-icon {
|
2021-10-05 10:16:44 +02:00
|
|
|
margin: 0 $size-2 0 $size-5;
|
2023-01-10 14:26:52 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
2021-02-23 12:27:46 +01:00
|
|
|
svg {
|
|
|
|
fill: $color-gray-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2022-01-12 11:27:43 +01:00
|
|
|
svg {
|
|
|
|
fill: $color-gray-50;
|
|
|
|
}
|
2021-02-23 12:27:46 +01:00
|
|
|
}
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|