Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-01-28 11:57:19 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-01-28 13:09:11 +0300
commit219a6eb446612c9326641e2076b699a192d1fc5e (patch)
treea7708fd31ce2734fd079042ed1250613d531129a /css/publicshareauth.scss
parentf00030192b3d83d7aa7ae76ce2d092c49f291396 (diff)
Fix vertical position of submit button in public share auth page
The submit button in the chat view is positioned using its "bottom" property to align it with the bottom of the new message form even when there are several lines and the form grows vertically. "publicshareauth.css" (core) sets the "top" property of submit buttons, which causes the submit button in the chat view to be aligned to the top of the new message form, and thus needs to be overriden. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css/publicshareauth.scss')
-rw-r--r--css/publicshareauth.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/css/publicshareauth.scss b/css/publicshareauth.scss
index 9d2772fac..af75f4385 100644
--- a/css/publicshareauth.scss
+++ b/css/publicshareauth.scss
@@ -226,3 +226,9 @@ input#request-password-button:disabled ~ .icon {
width: unset;
margin: 0;
}
+
+/* Unset conflicting rules from publicshareauth.css (core) for the sidebar */
+#talk-sidebar input[type="submit"],
+#talk-sidebar input.icon-confirm[type="submit"] {
+ top: unset;
+}