mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
141 lines
2.5 KiB
SCSS
141 lines
2.5 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";
|
|
@import "./common.scss";
|
|
|
|
.sidebar-tab-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sets-section-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: $s-8;
|
|
}
|
|
|
|
.sets-sidebar {
|
|
position: relative;
|
|
}
|
|
|
|
.theme-sidebar {
|
|
padding: $s-12;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.sidebar-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-left: $s-8;
|
|
padding-top: $s-12;
|
|
color: var(--layer-row-foreground-color);
|
|
}
|
|
|
|
.add-set {
|
|
@extend .button-tertiary;
|
|
height: $s-32;
|
|
width: $s-28;
|
|
padding: 0;
|
|
margin-right: $s-12;
|
|
svg {
|
|
@extend .button-icon;
|
|
stroke: var(--icon-foreground);
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
.tokens-section-wrapper {
|
|
flex: 1;
|
|
padding-top: $s-12;
|
|
padding-left: $s-12;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
// TODO Remove once sets are available to public
|
|
.sets-section-wrapper + .tokens-section-wrapper {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.token-pills-wrapper {
|
|
display: flex;
|
|
gap: $s-4;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.token-pill {
|
|
@extend .button-secondary;
|
|
padding: $s-4 $s-8;
|
|
border-radius: $br-6;
|
|
font-size: $fs-14;
|
|
|
|
&.token-pill-highlighted {
|
|
color: var(--button-primary-foreground-color-rest);
|
|
background: var(--button-primary-background-color-rest);
|
|
}
|
|
|
|
&.token-pill-invalid {
|
|
background-color: var(--button-secondary-background-color-rest);
|
|
color: var(--status-color-error-500);
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.section-text-icon {
|
|
font-size: $fs-12;
|
|
width: 16px;
|
|
height: 16px;
|
|
display: flex;
|
|
place-content: center;
|
|
}
|
|
|
|
.section-icon {
|
|
margin-right: $s-4;
|
|
// Align better with the label
|
|
translate: 0px -1px;
|
|
}
|
|
|
|
.download-json-button {
|
|
@extend .button-secondary;
|
|
position: absolute;
|
|
bottom: $s-12;
|
|
right: $s-12;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: $s-6 $s-8;
|
|
text-transform: uppercase;
|
|
gap: $s-8;
|
|
|
|
.download-icon {
|
|
@extend .button-icon;
|
|
stroke: var(--icon-foreground);
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.theme-select-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 0.28fr;
|
|
gap: $s-6;
|
|
}
|
|
|
|
.themes-button {
|
|
@extend .button-secondary;
|
|
width: auto;
|
|
}
|
|
|
|
.themes-header {
|
|
display: block;
|
|
@include headlineSmallTypography;
|
|
margin-bottom: $s-8;
|
|
padding-left: $s-8;
|
|
color: var(--title-foreground-color);
|
|
}
|