summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/css
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-09-18 07:22:25 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2017-09-19 18:19:47 +0200
commit4faa5624030e7b8b74aae74534f4cd818da4fa0b (patch)
treec7edadeb2415d98a234a76a180f8c07a60f2da1d /apps/files_sharing/css
parent23a08c501ac5d0311507dc18630fad595b1d9728 (diff)
downloadnextcloud-server-4faa5624030e7b8b74aae74534f4cd818da4fa0b.tar.gz
nextcloud-server-4faa5624030e7b8b74aae74534f4cd818da4fa0b.zip
Fix browser width compatibility
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r--apps/files_sharing/css/authenticate.css13
1 files changed, 10 insertions, 3 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css
index 89bdafa7734..9b2d6769289 100644
--- a/apps/files_sharing/css/authenticate.css
+++ b/apps/files_sharing/css/authenticate.css
@@ -1,7 +1,16 @@
+form fieldset {
+ display: flex !important;
+ flex-direction: column;
+}
+
#password {
margin-right: 0 !important;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
+ height: 45px;
+ flex: 1 1 auto;
+ width: 100% !important;
+ min-width: 0; /* FF hack for to override default value */
}
input[type='submit'] {
@@ -13,7 +22,5 @@ input[type='submit'] {
}
fieldset > p {
- position: relative;
- display: flex;
- align-items: center;
+ display: inline-flex;
}