diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_dropzone.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/cobrands/sass/_dropzone.scss b/web/cobrands/sass/_dropzone.scss index 90e53584d..8c482d0cf 100644 --- a/web/cobrands/sass/_dropzone.scss +++ b/web/cobrands/sass/_dropzone.scss @@ -120,6 +120,11 @@ $dropzone-background-color--full: mix($dropzone-border-color--full, $dropzone-ba } } +// If there was an error, we don't want to display the preview image on top of it. +.dz-error .dz-image { + display: none; +} + .dz-progress { position: absolute; top: 0; @@ -148,6 +153,7 @@ $dropzone-background-color--full: mix($dropzone-border-color--full, $dropzone-ba .dz-error-message { color: #881111; + padding-top: 1.5em; } .dz-remove, |