Browse Source

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: Daniel Calviño Sánchez <danxuliu@gmail.com>
tags/v17.0.0beta1
Daniel Calviño Sánchez 5 years ago
parent
commit
7ad1b150ab
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      core/css/publicshareauth.css

+ 5
- 0
core/css/publicshareauth.css View File

@@ -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;
}

Loading…
Cancel
Save