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
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-07 11:05:31 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-05-07 11:05:31 +0300
commit84f48f29ec45411b92c89289274a704bee6ee9be (patch)
tree00b264af481edc688866226bbfcc0a64e5833319 /css
parent8905be0f4f7e5bedd96b5ed10d74c8fd9b11568a (diff)
Fix vertical position of confirm icon in authenticate page
The server explicitly sets the height of confirm icons inside password inputs, which overrides the height set in Talk for submit inputs in the authenticate page. Therefore, the height set by the server needs to be overriden to honour the height set in Talk (which matches the height of the password input in the authenticate page). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/authenticate.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/css/authenticate.css b/css/authenticate.css
index 51717348d..781d9ea03 100644
--- a/css/authenticate.css
+++ b/css/authenticate.css
@@ -25,6 +25,10 @@ input[type="password"] + .icon-confirm {
position: absolute;
right: 15px;
+ /* Needed to honour the height set below for "input[type='submit']" by
+ * overriding a rule set in the server. */
+ height: 45px;
+
border: none;
/* Needed to override an important rule set in the server. */
background-color: transparent !important;