0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-31 03:09:19 -05:00
penpot/frontend/resources/styles/main/partials/workspace.scss
2022-01-12 11:49:03 +01:00

335 lines
5.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) 2015-2016 Andrey Antukh <niwi@niwi.nz>
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
#workspace {
user-select: none;
}
.workspace-context-menu {
background-color: $color-white;
border-radius: $br-small;
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
left: 740px;
position: absolute;
top: 40px;
width: 240px;
z-index: 12;
li {
align-items: center;
font-size: $fs14;
padding: $size-1 $size-4;
cursor: pointer;
display: flex;
justify-content: space-between;
&.separator {
border-top: 1px solid $color-gray-10;
padding: 0px;
margin: 2px;
}
span:first-child {
color: $color-gray-60;
}
span:last-child {
color: $color-gray-20;
font-size: $fs12;
}
&:hover {
background-color: $color-primary-lighter;
}
.submenu-icon {
position: absolute;
right: 1rem;
svg {
width: 10px;
height: 10px;
}
}
}
}
.workspace-loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
svg#loader-pencil {
fill: $color-gray-50;
}
}
.workspace-content {
background-color: $color-canvas;
display: flex;
height: 100%;
width: calc(100% - #{$width-left-toolbar} - 2 * #{$width-settings-bar});
padding: 0;
margin: 0;
position: fixed;
right: $width-settings-bar;
&.scrolling {
cursor: grab;
}
&.no-tool-bar-right {
width: calc(100% - #{$width-left-toolbar} - #{$width-settings-bar});
right: 0;
.coordinates {
right: 10px;
}
}
&.no-tool-bar-left {
width: calc(100% - #{$width-left-toolbar} - #{$width-settings-bar});
&.no-tool-bar-right {
width: 100%;
}
}
.coordinates {
background-color: $color-dark-bg;
border-radius: $br-small;
bottom: -10px;
padding-left: 5px;
position: fixed;
right: calc(#{$width-settings-bar} + 10px);
text-align: center;
width: 125px;
white-space: nowrap;
padding-bottom: 2px;
transition: bottom 0.5s;
z-index: 2;
&.color-palette-open {
bottom: 5rem;
}
span {
color: $color-white;
font-size: $fs12;
padding-right: 5px;
}
}
.cursor-tooltip {
background-color: $color-dark-bg;
border-radius: $br-small;
color: $color-white;
font-size: $fs12;
padding: 3px 8px;
transition: none;
text-align: center;
}
.workspace-viewport {
height: calc(100% - 40px);
overflow: hidden;
transition: none;
width: 100%;
display: grid;
grid-template-rows: 20px 100%;
grid-template-columns: 20px 100%;
}
.viewport {
cursor: none;
grid-column: 1 / span 2;
grid-row: 1 / span 2;
overflow: hidden;
position: relative;
.viewport-overlays {
position: absolute;
width: 100%;
height: 100%;
z-index: 10;
pointer-events: none;
cursor: initial;
.pixel-overlay {
height: 100%;
left: 0;
pointer-events: initial;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
}
.render-shapes {
position: absolute;
}
.viewport-controls {
position: absolute;
}
}
.page-canvas,
.page-layout {
overflow: visible;
}
/* Rules */
.empty-rule-square {
grid-column: 1 / span 1;
grid-row: 1 / span 1;
}
.horizontal-rule {
transition: none;
pointer-events: none;
grid-column: 2 / span 1;
grid-row: 1 / span 1;
z-index: 13;
rect {
fill: $color-canvas;
}
path {
stroke: $color-gray-20;
}
}
.vertical-rule {
transition: none;
pointer-events: none;
grid-column: 1 / span 1;
grid-row: 2 / span 1;
z-index: 13;
rect {
fill: $color-canvas;
}
path {
stroke: $color-gray-20;
}
}
}
.workspace-frame-label {
fill: $color-gray-40;
font-size: $fs12;
}
.multiuser-cursor {
z-index: 10000;
pointer-events: none;
}
.profile-name {
width: fit-content;
font-family: worksans;
padding: 2px 12px;
border-radius: 4px;
display: flex;
align-items: center;
height: 20px;
font-size: 12px;
line-height: 1.5;
}
.viewport-actions {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
margin-left: auto;
margin-top: 2rem;
position: absolute;
width: 100%;
z-index: 12;
pointer-events: initial;
.path-actions {
display: flex;
flex-direction: row;
background: white;
border-radius: 3px;
padding: 0.5rem;
border: 1px solid $color-gray-20;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.viewport-actions-group {
display: flex;
flex-direction: row;
border-right: 1px solid $color-gray-20;
}
.viewport-actions-entry {
width: 28px;
height: 28px;
margin: 0 0.25rem;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
border-radius: 3px;
svg {
pointer-events: none;
width: 20px;
height: 20px;
}
&:hover svg {
fill: $color-primary;
}
&.is-disabled {
cursor: initial;
svg {
fill: $color-gray-20;
}
}
&.is-toggled {
background: $color-black;
svg {
fill: $color-primary;
}
}
}
.viewport-actions-entry-wide {
width: 27px;
height: 20px;
svg {
width: 27px;
height: 20px;
}
}
.path-actions > :first-child .viewport-actions-entry {
margin-left: 0;
}
.path-actions > :last-child {
border: none;
}
.path-actions > :last-child .viewport-actions-entry {
margin-right: 0;
}
}