mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 16:56:38 +02:00
93 lines
2.1 KiB
SCSS
93 lines
2.1 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";
|
|
|
|
.element-options {
|
|
.attributes-block {
|
|
.download-button {
|
|
@extend .button-secondary;
|
|
@include tabTitleTipography;
|
|
height: $s-32;
|
|
width: 100%;
|
|
margin: $s-8 0;
|
|
}
|
|
}
|
|
.code-block {
|
|
padding: 0 $s-4 $s-8 0;
|
|
.code-row-lang {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: $s-4;
|
|
width: 100%;
|
|
.code-lang {
|
|
@include tabTitleTipography;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.action-btns {
|
|
display: flex;
|
|
gap: $s-4;
|
|
flex: 1;
|
|
justify-content: end;
|
|
.expand-button {
|
|
@extend .button-tertiary;
|
|
height: $s-32;
|
|
width: $s-28;
|
|
svg {
|
|
@extend .button-icon;
|
|
stroke: var(--icon-foreground);
|
|
}
|
|
}
|
|
}
|
|
|
|
.code-lang-select {
|
|
@include tabTitleTipography;
|
|
width: $s-92;
|
|
border: $s-1 solid transparent;
|
|
background-color: transparent;
|
|
color: var(--menu-foreground-color-disabled);
|
|
}
|
|
}
|
|
|
|
.code-row-display {
|
|
margin-bottom: $s-8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.toggle-btn {
|
|
@include buttonStyle;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
color: var(--title-foreground-color);
|
|
stroke: var(--title-foreground-color);
|
|
.collapsabled-icon {
|
|
@include flexCenter;
|
|
height: $s-24;
|
|
border-radius: $br-8;
|
|
svg {
|
|
@extend .button-icon-small;
|
|
transform: rotate(90deg);
|
|
stroke: var(--icon-foreground);
|
|
}
|
|
&.rotated svg {
|
|
transform: rotate(0deg);
|
|
}
|
|
}
|
|
&:hover {
|
|
color: var(--title-foreground-color-hover);
|
|
stroke: var(--title-foreground-color-hover);
|
|
.title {
|
|
color: var(--title-foreground-color-hover);
|
|
stroke: var(--title-foreground-color-hover);
|
|
}
|
|
.collapsabled-icon svg {
|
|
stroke: var(--title-foreground-color-hover);
|
|
}
|
|
}
|
|
}
|