mirror of
https://github.com/documize/community.git
synced 2025-07-22 22:59:43 +02:00
82 lines
1.2 KiB
SCSS
82 lines
1.2 KiB
SCSS
.document-files {
|
|
margin: 0;
|
|
|
|
> .upload-document-files {
|
|
width: 50%;
|
|
padding: 20px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
color: $color-gray;
|
|
border: 2px dotted $color-gray;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
line-height: 1.7rem;
|
|
@include border-radius(10px);
|
|
@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-top: 10px;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
border-bottom: 1px solid $color-border;
|
|
padding-bottom: 10px;
|
|
|
|
&:last-of-type {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
> .icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
> a {
|
|
color: $color-gray;
|
|
|
|
&:hover {
|
|
color: $color-link;
|
|
}
|
|
|
|
> .file {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
> .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;
|
|
}
|