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/.
|
|
|
|
//
|
2021-04-10 09:43:04 +02:00
|
|
|
// Copyright (c) UXBOX Labs SL
|
2020-09-25 14:51:21 +02:00
|
|
|
|
|
|
|
.dashboard-header {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-white;
|
|
|
|
display: flex;
|
|
|
|
height: 63px;
|
2020-11-03 19:44:01 +01:00
|
|
|
padding: $x-small $medium $x-small $small;
|
2020-09-25 14:51:21 +02:00
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
2020-10-05 18:20:39 +02:00
|
|
|
justify-content: space-between;
|
2020-09-25 14:51:21 +02:00
|
|
|
|
|
|
|
.element-name {
|
|
|
|
margin-right: $small;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
flex-shrink: 0;
|
|
|
|
z-index: 10;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-black;
|
|
|
|
height: 14px;
|
|
|
|
margin-right: $x-small;
|
|
|
|
width: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2020-10-05 18:20:39 +02:00
|
|
|
display: flex;
|
|
|
|
width: 300px;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 1;
|
|
|
|
margin-top: 39px;
|
|
|
|
|
2020-09-25 14:51:21 +02:00
|
|
|
ul {
|
|
|
|
display: flex;
|
2020-10-05 18:20:39 +02:00
|
|
|
align-items: center;
|
2020-09-25 14:51:21 +02:00
|
|
|
font-size: $fs15;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
a {
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
color: $color-gray-30;
|
|
|
|
display: flex;
|
|
|
|
height: 40px;
|
|
|
|
padding: $x-small $big;
|
|
|
|
flex-basis: 140px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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;
|
2020-10-05 18:20:39 +02:00
|
|
|
h1 {
|
|
|
|
color: $color-black;
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
font-size: $fs18;
|
2021-04-16 11:28:22 +02:00
|
|
|
font-weight: 600;
|
2020-10-05 18:20:39 +02:00
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.context-menu.is-open {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: $small;
|
|
|
|
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
|
|
|
|
|
|
|
.pin-icon {
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
svg { fill: $color-gray-50; }
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 14:51:21 +02:00
|
|
|
}
|