mirror of
https://github.com/documize/community.git
synced 2025-07-24 23:59:47 +02:00
85 lines
1.3 KiB
SCSS
85 lines
1.3 KiB
SCSS
.document-sidebar-view-attachments {
|
|
margin: 0;
|
|
|
|
> .upload-document-files {
|
|
width: 100%;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
color: $color-gray;
|
|
border: 1px solid $color-stroke;
|
|
cursor: pointer;
|
|
font-size: 0.9rem;
|
|
line-height: 1.7rem;
|
|
@include ease-in();
|
|
|
|
&:hover {
|
|
border-color: $color-link;
|
|
color: $color-link;
|
|
}
|
|
|
|
> .dz-preview,
|
|
.dz-processing {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
> .list {
|
|
margin: 0 0 50px;
|
|
padding: 7px 0;
|
|
|
|
> .item {
|
|
color: $color-off-black;
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
font-size: 0.9rem;
|
|
list-style-type: none;
|
|
|
|
&:last-of-type {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
> .icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
> a {
|
|
@extend .truncate;
|
|
width: 200px;
|
|
color: $color-gray;
|
|
|
|
&:hover {
|
|
color: $color-link;
|
|
}
|
|
|
|
> .file {
|
|
@extend .truncate;
|
|
display: inline-block;
|
|
font-size: 0.9rem;
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
> .action {
|
|
float: right;
|
|
margin-top: -2px;
|
|
margin-right: 5px;
|
|
@extend .cursor-pointer;
|
|
@extend .transition-all;
|
|
display: none;
|
|
color: $color-gray;
|
|
}
|
|
|
|
&:hover {
|
|
.action {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.delete-attachment-dialog,
|
|
.delete-page-dialog {
|
|
display: none;
|
|
}
|