]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove extra margin from warning messages in authenticate page 15407/head
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Tue, 7 May 2019 08:56:01 +0000 (10:56 +0200)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Tue, 7 May 2019 08:56:01 +0000 (10:56 +0200)
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>
core/css/publicshareauth.css

index 2206f21dff67e5a2dd71d8562c2679ea2947f198..c3713ff0e8bf3817d2208e8cf98d0d34b2f72ea1 100644 (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;
+}