mirror of
https://github.com/penpot/penpot.git
synced 2025-08-04 07:18:26 +02:00
🔥 Remove a lot of obsolete code
This commit is contained in:
parent
b1b3ad61a5
commit
d349e46cd8
43 changed files with 174 additions and 3689 deletions
|
@ -1,360 +0,0 @@
|
|||
.library-page {
|
||||
height: 100%;
|
||||
display: grid;
|
||||
grid-template-rows: 40px 1fr;
|
||||
grid-template-columns: 14.5rem 1fr;
|
||||
grid-template-areas: "header header" "sidebar content";
|
||||
border-right: 1px solid $color-gray-30;
|
||||
|
||||
& .main-bar {
|
||||
grid-area: header;
|
||||
}
|
||||
|
||||
& .library-sidebar {
|
||||
grid-area: sidebar;
|
||||
}
|
||||
|
||||
& .library-content {
|
||||
grid-area: content;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.library-content-empty {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.library-content-empty-text {
|
||||
color: #7C7C7C;
|
||||
border: 1px dashed #AFB2BF;
|
||||
text-align: center;
|
||||
padding: 5rem;
|
||||
margin: 2rem;
|
||||
}
|
||||
|
||||
.library-page #main-bar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.library-header-navigation {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.library-header-navigation-item {
|
||||
margin: 0 $size-6;
|
||||
color: $color-gray-30;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid transparent;
|
||||
|
||||
&:hover {
|
||||
color: $color-black;
|
||||
}
|
||||
|
||||
&.current {
|
||||
color: $color-black;
|
||||
border-bottom: 1px solid $color-primary;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
.library-sidebar {
|
||||
background-color: $color-white;
|
||||
padding: $size-2;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.library-sidebar-list {
|
||||
margin-top: $size-4;
|
||||
overflow: scroll;
|
||||
height: 100%;
|
||||
padding-bottom: 4rem;
|
||||
}
|
||||
|
||||
.library-sidebar-list-element {
|
||||
color: $color-black;
|
||||
cursor: pointer;
|
||||
font-size: $fs14;
|
||||
overflow: hidden;
|
||||
padding: $size-2;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
|
||||
&:hover {
|
||||
background-color: $color-primary-lighter;
|
||||
}
|
||||
|
||||
&.current {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.library-top-menu {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border-bottom: 1px solid #e3e3e3;
|
||||
justify-content: space-between;
|
||||
padding: $size-2 1.5rem;
|
||||
|
||||
svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
fill: #7C7C7C;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
fill: $color-primary;
|
||||
}
|
||||
}
|
||||
|
||||
& > * {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.library-top-menu-current-element {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.library-top-menu-current-element-name {
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
color: $color-black;
|
||||
font-weight: normal;
|
||||
margin-right: $size-2;
|
||||
}
|
||||
|
||||
.library-top-menu-current-action {
|
||||
& svg {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.library-top-menu-actions {
|
||||
display: flex;
|
||||
|
||||
.btn-secondary {
|
||||
margin-left: $size-2;
|
||||
}
|
||||
}
|
||||
|
||||
.library-top-menu-actions-delete {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
&:hover {
|
||||
svg {
|
||||
fill: $color-danger;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.library-page-cards-container {
|
||||
align-content: flex-start;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
height: 100%;
|
||||
overflow: scroll;
|
||||
padding: $size-2;
|
||||
padding-bottom: 4rem;
|
||||
}
|
||||
|
||||
.library-card {
|
||||
margin: $size-2;
|
||||
background: $color-white;
|
||||
border: 2px solid transparent;
|
||||
|
||||
&.library-icon, &.library-color {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
&.library-image {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
height: 200px;
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 4px;
|
||||
position: relative;
|
||||
|
||||
& .library-card-footer-menu {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border: 2px solid $color-primary;
|
||||
}
|
||||
|
||||
&:hover .library-card-footer-menu {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.library-card .input-checkbox {
|
||||
margin: 0;
|
||||
top: $size-2;
|
||||
right: $size-2;
|
||||
position: absolute;
|
||||
|
||||
& label {
|
||||
margin: 0;
|
||||
|
||||
&:before {
|
||||
margin: 0;
|
||||
background-color: white;
|
||||
border: 1px solid #AFB2BF;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.library-card-image {
|
||||
height: 136px;
|
||||
|
||||
.library-color & {
|
||||
height: 104px;
|
||||
}
|
||||
|
||||
padding: $size-2;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
|
||||
& object, & svg, & img {
|
||||
margin: auto;
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-height: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
& svg {
|
||||
height: 50%;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
.library-card-footer {
|
||||
border-top: 1px solid $color-gray-10;
|
||||
padding: $size-2 $size-2 $size-2 $size-4;
|
||||
display: grid;
|
||||
grid-template-rows: 50% 50%;
|
||||
grid-template-columns: 1fr 16px 1px;
|
||||
grid-template-areas: "name . ." "timestamp menu options";
|
||||
|
||||
.library-card.library-color & {
|
||||
height: 50%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.library-card-footer-name {
|
||||
color: $color-black;
|
||||
grid-area: name;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.library-card-footer-timestamp {
|
||||
font-size: 12px;
|
||||
grid-area: timestamp;
|
||||
}
|
||||
|
||||
.library-card-footer-color {
|
||||
font-size: 15px;
|
||||
grid-area: timestamp;
|
||||
}
|
||||
|
||||
.library-card-footer-color-label {
|
||||
color: $color-gray-30;
|
||||
margin-right: 0.25rem;
|
||||
}
|
||||
|
||||
.library-card-footer-color-rgb {
|
||||
color: $color-black;
|
||||
}
|
||||
|
||||
.library-card-footer-menu {
|
||||
grid-area: menu;
|
||||
cursor: pointer;
|
||||
|
||||
& svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.library-card-footer .context-menu {
|
||||
grid-area: options;
|
||||
& .context-menu-items {
|
||||
top: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.modal-create-color {
|
||||
position: relative;
|
||||
background-color: $color-white;
|
||||
padding: 4rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
& .sketch-picker, .chrome-picker {
|
||||
box-shadow: none !important;
|
||||
border: 1px solid $color-gray-10 !important;
|
||||
border-radius: 0 !important;
|
||||
|
||||
& input {
|
||||
background-color: $color-white;
|
||||
}
|
||||
}
|
||||
|
||||
& .close {
|
||||
position: absolute;
|
||||
right: 1rem;
|
||||
transform: rotate(45deg);
|
||||
top: 1rem;
|
||||
|
||||
svg {
|
||||
fill: $color-black;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
|
||||
&:hover {
|
||||
fill: $color-danger;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
& .btn-primary {
|
||||
width: 10rem;
|
||||
padding: 0.5rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-create-color-title {
|
||||
color: $color-black;
|
||||
font-size: 24px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
grid-template-columns: 40px 180px 1fr;
|
||||
height: 100vh;
|
||||
|
||||
& .library-bar {
|
||||
& .dashboard-sidebar {
|
||||
grid-row: 2;
|
||||
grid-column: 1 / span 2;
|
||||
overflow: hidden;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue