mirror of
https://github.com/penpot/penpot.git
synced 2025-08-03 15:48:23 +02:00
93 lines
1.8 KiB
SCSS
93 lines
1.8 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) KALEIDOS INC
|
|
|
|
@import "refactor/common-refactor.scss";
|
|
|
|
$width-settings-bar: $s-276;
|
|
$width-settings-bar-max: $s-500;
|
|
|
|
.left-settings-bar {
|
|
display: grid;
|
|
grid-template-areas:
|
|
"header header"
|
|
"content resize";
|
|
grid-template-rows: $s-52 1fr;
|
|
grid-template-columns: 1fr 0;
|
|
position: relative;
|
|
grid-area: left-sidebar;
|
|
min-width: $width-settings-bar;
|
|
max-width: $width-settings-bar-max;
|
|
width: var(--width, $width-settings-bar);
|
|
background-color: var(--panel-background-color);
|
|
height: 100vh;
|
|
max-height: 100vh;
|
|
|
|
.resize-area {
|
|
grid-area: resize;
|
|
}
|
|
}
|
|
|
|
.layers-tab {
|
|
padding-top: $s-4;
|
|
}
|
|
|
|
.left-header {
|
|
grid-area: header;
|
|
}
|
|
|
|
.settings-bar-content {
|
|
grid-area: content;
|
|
right: calc(-1 * $s-8);
|
|
}
|
|
|
|
.resize-area {
|
|
position: absolute;
|
|
top: 0;
|
|
left: unset;
|
|
z-index: $z-index-4;
|
|
width: $s-8;
|
|
cursor: ew-resize;
|
|
height: 100%;
|
|
}
|
|
|
|
.tab-spacing {
|
|
margin-inline: $s-12;
|
|
}
|
|
|
|
.right-settings-bar {
|
|
grid-area: right-sidebar;
|
|
width: $width-settings-bar;
|
|
background-color: var(--panel-background-color);
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 0;
|
|
&.not-expand {
|
|
max-width: $width-settings-bar;
|
|
}
|
|
&.expanded {
|
|
width: var(--width, $width-settings-bar);
|
|
}
|
|
|
|
.settings-bar-inside {
|
|
display: grid;
|
|
grid-template-columns: 100%;
|
|
grid-template-rows: 100%;
|
|
|
|
height: calc(100vh - $s-52);
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.resize-area-horiz {
|
|
position: absolute;
|
|
// top: calc($s-88 + var(--height, 200px));
|
|
left: 0;
|
|
width: 100%;
|
|
// height: $s-8;
|
|
border-bottom: $s-2 solid var(--resize-area-border-color);
|
|
cursor: ns-resize;
|
|
}
|