mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-02-23 07:01:24 +01:00
Fixed files thumbnail size to 150x150
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
* Editor link button doesn't prefix links with `http://` anymore [#813](https://github.com/getgrav/grav-plugin-admin/issues/813)
|
||||
* Dashboard Charts now always refresh no matter what [#753](https://github.com/getgrav/grav-plugin-admin/issues/753)
|
||||
* Use rawRoute for parent too when saving [#843](https://github.com/getgrav/grav-plugin-admin/issues/843)
|
||||
* Fixed files thumbnail size to 150x150
|
||||
|
||||
# v1.2.4
|
||||
## 10/22/2016
|
||||
|
||||
@@ -48,7 +48,7 @@ Dropzone.confirm = (question, accepted, rejected) => {
|
||||
const DropzoneMediaConfig = {
|
||||
createImageThumbnails: { },
|
||||
thumbnailWidth: 150,
|
||||
thumbnailHeight: 100,
|
||||
thumbnailHeight: 150,
|
||||
addRemoveLinks: false,
|
||||
dictDefaultMessage: translations.PLUGIN_ADMIN.DROP_FILES_HERE_TO_UPLOAD,
|
||||
dictRemoveFileConfirmation: '[placeholder]',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* The MIT License */
|
||||
|
||||
$preview-width: 150px;
|
||||
$preview-height: 100px;
|
||||
$preview-height: 150px;
|
||||
|
||||
.dropzone {
|
||||
position: relative;
|
||||
|
||||
Reference in New Issue
Block a user