diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-01-27 04:11:15 -0800 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-01-27 04:11:15 -0800 |
commit | 0a1708ba11b5380f9730e8bc0d65ed79a68a7995 (patch) | |
tree | d61520c75252286dd4c914048efbcf6657d50036 /apps/files_sharing/templates | |
parent | 46745895ae6db0efac52461497853d037230bcae (diff) | |
parent | 269f24cf9617397aaf501b27ec1af2c8e3154cf8 (diff) | |
download | nextcloud-server-0a1708ba11b5380f9730e8bc0d65ed79a68a7995.tar.gz nextcloud-server-0a1708ba11b5380f9730e8bc0d65ed79a68a7995.zip |
Merge pull request #6912 from owncloud/replace-webroot-in-css
Remove %webroot% from CSS
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 6b98e6c9f34..928be93fc96 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -9,7 +9,7 @@ <p class="infield"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <input type="password" name="password" id="password" placeholder="" value="" autofocus /> - <input type="submit" value="" class="svg" /> + <input type="submit" value="" class="svg icon icon-confirm" /> </p> </fieldset> </form> diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 8b5e0976412..e1132142eff 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -9,7 +9,7 @@ <input type="hidden" name="sharingToken" value="<?php p($_['sharingToken']) ?>" id="sharingToken"> <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> <input type="hidden" name="mimetype" value="<?php p($_['mimetype']) ?>" id="mimetype"> -<header><div id="header"> +<header><div id="header" class="icon icon-noise"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="<?php p($theme->getName()); ?>" /></a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> |