mirror of
https://github.com/penpot/penpot.git
synced 2025-01-26 16:39:49 -05:00
175 lines
3.3 KiB
SCSS
175 lines
3.3 KiB
SCSS
// 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/.
|
|
//
|
|
// Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
|
|
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
.dashboard-sidebar {
|
|
background-color: $color-white;
|
|
|
|
.sidebar-team {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: $size-4 0;
|
|
border-top: 1px solid $color-gray-10;
|
|
height: 100%;
|
|
padding-bottom: 2.8rem;
|
|
}
|
|
|
|
.dashboard-sidebar-inside {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
border-right: 1px solid $color-gray-10;
|
|
|
|
.dashboard-elements {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
margin: 0;
|
|
|
|
&.dashboard-common {
|
|
overflow: unset;
|
|
}
|
|
|
|
li {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
padding: $size-2;
|
|
|
|
svg {
|
|
border-radius: 3px;
|
|
fill: $color-black;
|
|
margin-right: 8px;
|
|
height: $size-3;
|
|
width: $size-3;
|
|
}
|
|
|
|
span.element-title {
|
|
color: $color-gray-60;
|
|
font-size: $fs14;
|
|
overflow-x: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&.recent-projects {
|
|
svg {
|
|
fill: $color-white;
|
|
}
|
|
}
|
|
|
|
& .edit-wrapper {
|
|
display: flex;
|
|
}
|
|
|
|
input.element-title {
|
|
border: 0;
|
|
height: 30px;
|
|
padding: 5px;
|
|
margin: 0;
|
|
width: 100%;
|
|
background-color: $color-white;
|
|
}
|
|
|
|
.close {
|
|
background-color: $color-white;
|
|
cursor: pointer;
|
|
padding: 3px 5px;
|
|
|
|
svg {
|
|
fill: $color-gray-30;
|
|
height: 15px;
|
|
transform: rotate(45deg) translateY(7px);
|
|
width: 15px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.element-subtitle {
|
|
color: $color-gray-20;
|
|
font-style: italic;
|
|
}
|
|
|
|
&:hover,
|
|
&.current {
|
|
background-color: $color-primary-lighter;
|
|
color: $color-gray-60;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.profile-bar {
|
|
background-color: $color-gray-10;
|
|
|
|
.dashboard-sidebar-inside {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.projects-row {
|
|
align-items: center;
|
|
display: flex;
|
|
margin-top: 1rem;
|
|
padding: $size-2;
|
|
|
|
span {
|
|
color: $color-gray-30;
|
|
font-size: $fs14;
|
|
}
|
|
|
|
.btn-icon-light {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.dashboard-search {
|
|
align-items: center;
|
|
border: 1px solid $color-gray-10;
|
|
display: flex;
|
|
margin: $size-2;
|
|
|
|
.input-text {
|
|
background: $color-white;
|
|
border: 0;
|
|
color: $color-gray-60;
|
|
font-size: $fs14;
|
|
padding: 4px 8px;
|
|
margin: 0;
|
|
max-width: 170px;
|
|
width: 100%;
|
|
}
|
|
|
|
&:focus,
|
|
&:focus-within {
|
|
border-color: $color-black;
|
|
}
|
|
|
|
.clear-search {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
height: 22px;
|
|
padding: 0 5px;
|
|
width: 22px;
|
|
|
|
svg {
|
|
fill: $color-gray-30;
|
|
height: 15px;
|
|
transform: rotate(45deg);
|
|
width: 15px;
|
|
|
|
&:hover {
|
|
fill: $color-danger;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|