Skip to content
Snippets Groups Projects
Commit 7ad1b150 authored by Daniel Calviño Sánchez's avatar Daniel Calviño Sánchez
Browse files

Remove extra margin from warning messages in authenticate page


In the public share authentication page the form elements appear inside
a container that uses the "warning" CSS class. When the given password
is wrong a warning message is shown inside that container; this message
uses the "warning" CSS class too, so the top margin set for ".warning"
elements need to be removed in that case.

Signed-off-by: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>
parent c60f6716
No related branches found
No related tags found
No related merge requests found
......@@ -26,3 +26,8 @@ input[type='submit'].icon-confirm {
height: 45px;
background-color: transparent !important;
}
.warning > .warning {
/* Do not use a top margin for warning messages in the warning container. */
margin-top: 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment