Skip to content

Error message positioned incorrectly #127

@oldskool73

Description

@oldskool73

Because the default thumbnail width/height = 200px, while the original DZ ones are 120px, and the css for the error message hasn't been change, the error message is positioned incorrectly.

screen shot 2017-06-29 at 5 48 32 pm

To fix...

.dropzone .dz-preview .dz-error-message {
...
    top: 210px;
    left: 30px;
...
}

...or could even use something like...

.dropzone .dz-preview .dz-error-message {
...
    top: calc(100% + 10px);
    left: calc(50% - 70px);
...
}

... to allow for the thumbnail sizes to change dynamically?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions