mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 23:18:48 -05:00
480 lines
8.7 KiB
SCSS
480 lines
8.7 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
|
|
|
|
.inspect-svg-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.expand-button,
|
|
.copy-button {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
position: absolute;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
fill: $color-gray-20;
|
|
transition: fill 0.3s;
|
|
|
|
&:hover {
|
|
fill: $color-primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
.expand-button {
|
|
right: 24px;
|
|
top: -1px;
|
|
|
|
svg {
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
.copy-button {
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.attributes-block {
|
|
user-select: text;
|
|
|
|
border-bottom: 1px solid $color-gray-60;
|
|
padding-bottom: 0.5rem;
|
|
font-size: $fs12;
|
|
|
|
.attributes-text-block {
|
|
border-bottom: 1px solid $color-gray-60;
|
|
}
|
|
|
|
& :last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.attributes-label {
|
|
color: $color-gray-20;
|
|
}
|
|
|
|
.attributes-value {
|
|
color: $color-white;
|
|
}
|
|
|
|
.attributes-block-title {
|
|
position: relative;
|
|
color: $color-gray-10;
|
|
padding: 0.5rem;
|
|
font-size: $fs14;
|
|
|
|
.copy-button {
|
|
padding: 0.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
}
|
|
|
|
.attributes-unit-row {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 0.6rem 1.6rem 0.6rem 0.5rem;
|
|
|
|
.attributes-label,
|
|
.attributes-value {
|
|
margin-right: 0.5rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 50%;
|
|
.items {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
.copy-button {
|
|
padding: 0.6rem 0.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
}
|
|
|
|
.attributes-color-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem 0;
|
|
position: relative;
|
|
|
|
.attributes-color-id {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
& > * {
|
|
margin: 0 0.5rem;
|
|
}
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.attributes-color-value {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
& > * {
|
|
margin: 0 0.5rem;
|
|
}
|
|
|
|
& :last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.color-text {
|
|
width: 3rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.attributes-color-display {
|
|
display: flex;
|
|
}
|
|
|
|
.color-bullet {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
border: 1px solid $color-gray-30;
|
|
}
|
|
|
|
.hide-color .color-bullet {
|
|
visibility: hidden;
|
|
}
|
|
.copy-button {
|
|
padding: 1rem 0.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
select {
|
|
font-size: $fs12;
|
|
margin: 0;
|
|
background: none;
|
|
color: $color-gray-20;
|
|
border: none;
|
|
border-bottom: 1px solid $color-gray-30;
|
|
padding: 0 1rem 0.25rem 0.25rem;
|
|
margin-top: 2px;
|
|
background-image: url("/images/icons/arrow-down-white.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: 95% 48%;
|
|
background-size: 10px;
|
|
cursor: pointer;
|
|
outline: none;
|
|
&:focus,
|
|
&:focus-within {
|
|
border: 1px solid $color-primary;
|
|
}
|
|
|
|
option {
|
|
padding: 1rem;
|
|
background-color: $color-gray-50;
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.attributes-content-row {
|
|
position: relative;
|
|
margin: 0.5rem;
|
|
width: calc(100% - 1rem);
|
|
|
|
.attributes-content {
|
|
overflow-y: auto;
|
|
max-height: 5rem;
|
|
background: $color-gray-60;
|
|
border-radius: $br4;
|
|
padding: 1rem 0.5rem;
|
|
color: $color-gray-10;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.copy-button {
|
|
padding: 0.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
}
|
|
|
|
.attributes-image-row {
|
|
position: relative;
|
|
display: flex;
|
|
padding: 0.25rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0.5rem;
|
|
background: $color-gray-60;
|
|
border-radius: $br4;
|
|
|
|
width: calc(100% - 1rem);
|
|
min-height: 5rem;
|
|
|
|
img {
|
|
max-height: 8rem;
|
|
max-width: 100%;
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
.attributes-shadow-row {
|
|
position: relative;
|
|
display: flex;
|
|
margin: 0.5rem;
|
|
padding-right: 2rem;
|
|
justify-content: space-between;
|
|
|
|
& > :first-child {
|
|
color: $color-gray-10;
|
|
}
|
|
|
|
.attributes-shadow {
|
|
display: flex;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
|
|
.attributes-stroke-row {
|
|
position: relative;
|
|
display: flex;
|
|
margin: 0.5rem;
|
|
padding-right: 2rem;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.attributes-typography-name-row {
|
|
position: relative;
|
|
margin-top: 0.5rem;
|
|
border: 1px solid $color-black;
|
|
border-radius: $br4;
|
|
margin: 0.5rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.copy-button {
|
|
padding: 0.5rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
}
|
|
|
|
.attributes-typography-row {
|
|
position: relative;
|
|
margin: 0.5rem;
|
|
padding-right: 2rem;
|
|
|
|
.typography-sample {
|
|
font-size: $fs16;
|
|
}
|
|
}
|
|
|
|
.download-button {
|
|
display: block;
|
|
text-align: center;
|
|
border: 1px solid $color-gray-60;
|
|
background-color: $color-gray-60;
|
|
padding: 0.5rem 1rem;
|
|
color: $color-gray-10;
|
|
width: calc(100% - 1rem);
|
|
border-radius: $br4;
|
|
margin: 0.5rem;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
background-color: $color-primary;
|
|
color: $color-black;
|
|
}
|
|
}
|
|
|
|
.attributes-block-title,
|
|
.attributes-unit-row,
|
|
.attributes-color-row,
|
|
.attributes-shadow-row,
|
|
.attributes-stroke-row,
|
|
.attributes-typography-row,
|
|
.attributes-content-row,
|
|
.attributes-typography-name-row {
|
|
&:hover {
|
|
.expand-button,
|
|
.copy-button {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.attributes-shadow-block,
|
|
.attributes-stroke-block,
|
|
.attributes-fill-block {
|
|
border-top: 1px solid $color-gray-60;
|
|
}
|
|
|
|
.attributes-shadow-blocks :first-child,
|
|
.attributes-stroke-blocks :first-child,
|
|
.attributes-fill-blocks :first-child {
|
|
border-top: none;
|
|
}
|
|
}
|
|
|
|
.code-block {
|
|
position: relative;
|
|
margin-top: 0.5rem;
|
|
border-top: 1px solid $color-gray-60;
|
|
|
|
&:last-child {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
&:hover {
|
|
.code-row-lang {
|
|
.expand-button,
|
|
.copy-button {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.code-row-lang {
|
|
color: $color-gray-10;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: $fs14;
|
|
margin: 0.5rem;
|
|
|
|
.expand-button,
|
|
.copy-button {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.custom-select {
|
|
border: 1px solid $color-gray-40;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
padding: 0.25rem 1.5rem 0.25rem 0.25rem;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
.dropdown-button {
|
|
position: absolute;
|
|
right: 0.25rem;
|
|
top: 7px;
|
|
|
|
svg {
|
|
fill: $color-gray-40;
|
|
height: 10px;
|
|
width: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.custom-select-dropdown {
|
|
background-color: $color-white;
|
|
border-radius: 3px;
|
|
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
|
|
left: 0;
|
|
max-height: 30rem;
|
|
min-width: 7rem;
|
|
position: absolute;
|
|
overflow-y: auto;
|
|
top: 30px;
|
|
z-index: 12;
|
|
|
|
li {
|
|
color: $color-gray-60;
|
|
cursor: pointer;
|
|
font-size: 0.875rem;
|
|
display: flex;
|
|
gap: 0 10px;
|
|
justify-content: flex-start;
|
|
padding: 0.5rem;
|
|
|
|
.checked-element {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
visibility: hidden;
|
|
width: 8px;
|
|
height: 8px;
|
|
background: none;
|
|
margin: 0.25rem;
|
|
fill: $color-black;
|
|
}
|
|
|
|
.is-selected svg {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
|
|
.code-row-display {
|
|
line-height: 1;
|
|
margin: 0.5rem;
|
|
font-size: $fs14;
|
|
max-height: var(--code-height, 400px);
|
|
overflow: auto;
|
|
|
|
.code-display {
|
|
font-family: monospace;
|
|
border-radius: $br4;
|
|
padding: 0.5rem 1rem;
|
|
overflow: hidden;
|
|
white-space: pre;
|
|
min-width: fit-content;
|
|
background: $color-gray-60;
|
|
user-select: text;
|
|
|
|
.hljs-attr {
|
|
color: #a6e22e;
|
|
}
|
|
.hljs-comment {
|
|
color: $color-gray-30;
|
|
}
|
|
.hljs-string {
|
|
color: #66d9ef;
|
|
}
|
|
}
|
|
}
|
|
.resize-area {
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: -15px;
|
|
left: 0;
|
|
height: 18px;
|
|
z-index: 1;
|
|
cursor: ns-resize;
|
|
}
|
|
}
|
|
|
|
.element-options > :first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.inspect-annotation {
|
|
.content {
|
|
background-color: $color-gray-60;
|
|
color: $color-white;
|
|
margin: 0 10px;
|
|
padding: 10px;
|
|
font-size: $fs14;
|
|
overflow-wrap: anywhere;
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|