1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Dropzone: Polished image manager elements

- Added file placeholder for non-image uploads.
- Added use of upload limits.
- Removed upload timeout variable.
- Added pass-through and usage of filetypes.
- Extracted some view text to language files and made use of existing
  text.
This commit is contained in:
Dan Brown
2023-04-25 16:41:39 +01:00
parent b21a9007c5
commit 61d2ea6ac7
6 changed files with 43 additions and 36 deletions

View File

@@ -145,6 +145,7 @@
box-shadow: none;
color: #FFF;
padding: $-xs $-m;
cursor: pointer;
}
.popup-header button:not(.popup-header-close) {
@@ -292,6 +293,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
.dropzone-file-item-image-wrap {
width: 80px;
position: relative;
background-color: var(--color-primary-light);
img {
object-fit: cover;
width: 100%;
@@ -322,7 +324,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
}
.dropzone-file-item-status[data-status] {
display: flex;
font-size: .8rem;
font-size: .6rem;
font-weight: 500;
line-height: 1.2;
}
@@ -407,7 +409,7 @@ body.flexbox-support #entity-selector-wrap .popup-body .form-group {
min-height: auto;
padding: $-m;
}
img {
.image-manager-viewer img {
max-width: 100%;
max-height: 180px;
display: block;