mirror of
https://github.com/penpot/penpot.git
synced 2025-05-17 21:26:10 +02:00
✨ Information panels
This commit is contained in:
parent
04f620ec00
commit
1e48221d7b
10 changed files with 713 additions and 18 deletions
|
@ -3360,5 +3360,73 @@
|
|||
"ru" : "Кликни чтобы закончить фигуру",
|
||||
"es" : "Pulsar para cerrar la ruta"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
"handoff.tabs.info": "Info",
|
||||
"handoff.tabs.code": "Code",
|
||||
|
||||
"handoff.attributes.color.hex": "HEX",
|
||||
"handoff.attributes.color.rgba": "RGBA",
|
||||
"handoff.attributes.color.hsla": "HSLA",
|
||||
|
||||
"handoff.attributes.layout": "Layout",
|
||||
|
||||
"handoff.attributes.layout.width": "Width",
|
||||
"handoff.attributes.layout.height": "Height",
|
||||
"handoff.attributes.layout.left": "Left",
|
||||
"handoff.attributes.layout.top": "Top",
|
||||
"handoff.attributes.layout.rotation": "Rotation",
|
||||
|
||||
"handoff.attributes.fill": "Fill",
|
||||
|
||||
"handoff.attributes.stroke": "Stroke",
|
||||
"handoff.attributes.stroke.width": "Width",
|
||||
|
||||
"handoff.attributes.stroke.style.solid": "Solid",
|
||||
"handoff.attributes.stroke.style.dotted": "Dotted",
|
||||
"handoff.attributes.stroke.style.dashed": "Dashed",
|
||||
"handoff.attributes.stroke.style.mixed": "Mixed",
|
||||
"handoff.attributes.stroke.style.none": "None",
|
||||
|
||||
"handoff.attributes.stroke.alignment.center": "Center",
|
||||
"handoff.attributes.stroke.alignment.inner": "Inner",
|
||||
"handoff.attributes.stroke.alignment.outer": "Outer",
|
||||
|
||||
"handoff.attributes.shadow": "Shadow",
|
||||
|
||||
"handoff.attributes.shadow.shorthand.offset-x": "X",
|
||||
"handoff.attributes.shadow.shorthand.offset-y": "Y",
|
||||
"handoff.attributes.shadow.shorthand.blur": "B",
|
||||
"handoff.attributes.shadow.shorthand.spread": "S",
|
||||
|
||||
"handoff.attributes.shadow.style.inner-shadow": "Inner",
|
||||
"handoff.attributes.shadow.style.drop-shadow": "Drop",
|
||||
|
||||
"handoff.attributes.blur": "Blur",
|
||||
"handoff.attributes.blur.value": "Value",
|
||||
|
||||
"handoff.attributes.image.width": "Width",
|
||||
"handoff.attributes.image.height": "Height",
|
||||
"handoff.attributes.image.download": "Dowload source image",
|
||||
|
||||
"handoff.attributes.typography": "Typography",
|
||||
"handoff.attributes.typography.font-family": "Font Family",
|
||||
"handoff.attributes.typography.font-style": "Font Style",
|
||||
"handoff.attributes.typography.font-size": "Font Size",
|
||||
"handoff.attributes.typography.line-height": "Line Height",
|
||||
"handoff.attributes.typography.letter-spacing": "Letter Spacing",
|
||||
"handoff.attributes.typography.text-decoration": "Text Decoration",
|
||||
"handoff.attributes.typography.text-transform": "Text Transform",
|
||||
|
||||
"handoff.attributes.content": "Content",
|
||||
|
||||
"handoff.attributes.typography.text-decoration.none": "None",
|
||||
"handoff.attributes.typography.text-decoration.underline": "Underline",
|
||||
"handoff.attributes.typography.text-decoration.strikethrough": "Strikethrough",
|
||||
|
||||
"handoff.attributes.typography.text-transform.none": "None",
|
||||
"handoff.attributes.typography.text-transform.uppercase": "Upper Case",
|
||||
"handoff.attributes.typography.text-transform.lowercase": "Lower Case",
|
||||
"handoff.attributes.typography.text-transform.titlecase": "Title Case"
|
||||
}
|
||||
|
|
|
@ -14,3 +14,213 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.attributes-block {
|
||||
user-select: text;
|
||||
|
||||
border-bottom: 1px solid $color-gray-60;
|
||||
padding-bottom: 0.5rem;
|
||||
font-size: $fs12;
|
||||
|
||||
.attributes-copy-button {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.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;
|
||||
|
||||
.attributes-copy-button {
|
||||
padding: 0.5rem;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
.attributes-unit-row {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding: 1rem 0.5rem;
|
||||
|
||||
.attributes-label,
|
||||
.attributes-value {
|
||||
width: 50%;
|
||||
}
|
||||
.attributes-copy-button {
|
||||
padding: 1rem 0.5rem;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
.attributes-color-row {
|
||||
display: flex;
|
||||
padding: 1rem 0;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
|
||||
.attributes-color-display {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.color-bullet {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
.attributes-copy-button {
|
||||
padding: 1rem 0.5rem;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
& > * {
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
|
||||
& :last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
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: 10rem;
|
||||
background: $color-gray-60;
|
||||
border-radius: 4px;
|
||||
padding: 1rem 0.5rem;
|
||||
color: $color-gray-10;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.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: 4px;
|
||||
|
||||
width: calc(100% - 1rem);
|
||||
min-height: 5rem;
|
||||
img {
|
||||
max-height: 8rem;
|
||||
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;
|
||||
|
||||
.attributes-label {
|
||||
margin-right: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.attributes-stroke-row {
|
||||
position: relative;
|
||||
display: flex;
|
||||
margin: 0.5rem;
|
||||
padding-right: 2rem;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.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: 4px;
|
||||
margin: 0.5rem;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
background-color: $color-primary;
|
||||
color: $color-black;
|
||||
}
|
||||
}
|
||||
|
||||
.attributes-block-title,
|
||||
.attributes-unit-row,
|
||||
.attributes-color-row,
|
||||
.attributes-shadow-row,
|
||||
.attributes-stroke-row {
|
||||
&:hover .attributes-copy-button {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue