diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-03 14:18:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 14:18:17 +0100 |
commit | ee0653d68b117ac586841465840e629a7c1a487f (patch) | |
tree | d7cbf8d0fc5a80397247e0181f23326b74239022 /apps | |
parent | fa34b53b504106650bd176760f202bb56a056f09 (diff) | |
parent | aed7052a38df32f284f5cbabab5a99cfb3836804 (diff) | |
download | nextcloud-server-ee0653d68b117ac586841465840e629a7c1a487f.tar.gz nextcloud-server-ee0653d68b117ac586841465840e629a7c1a487f.zip |
Merge pull request #7678 from nextcloud/fix-share-logo
Use guest css on sharing authentication page
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/authenticate.css | 1 | ||||
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css index 9b2d6769289..7f83e0b41e7 100644 --- a/apps/files_sharing/css/authenticate.css +++ b/apps/files_sharing/css/authenticate.css @@ -8,6 +8,7 @@ form fieldset { border-top-right-radius: 0; border-bottom-right-radius: 0; height: 45px; + box-sizing: border-box; flex: 1 1 auto; width: 100% !important; min-width: 0; /* FF hack for to override default value */ diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 20e200ef1ca..6f270c2851a 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,6 +1,7 @@ <?php /** @var $_ array */ /** @var $l \OCP\IL10N */ + style('core', 'guest'); style('files_sharing', 'authenticate'); script('files_sharing', 'authenticate'); ?> |