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:
authorIvan Sein <ivan@struktur.de>2017-02-01 20:28:56 +0300
committerIvan Sein <ivan@struktur.de>2017-02-01 20:28:56 +0300
commitb60c44452e2b1b1cb1f712dccc332432e013f264 (patch)
treefedee3c0cf2e83f30658377508645bfccaaf4f25 /templates
parent02d8deb21edacd7b14ac323ba35916afb65b74a4 (diff)
Fix normal and public header.
Signed-off-by: Ivan Sein <ivan@nextcloud.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index-public.php26
1 files changed, 15 insertions, 11 deletions
diff --git a/templates/index-public.php b/templates/index-public.php
index 2fae950f8..04503b66f 100644
--- a/templates/index-public.php
+++ b/templates/index-public.php
@@ -29,18 +29,22 @@ script(
<header>
<div id="header" class="spreed-public">
- <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="nextcloud">
- <div class="logo-icon svg"></div>
- </a>
- <div class="header-appname-container">
- <h1 class="header-appname">
- <?php p($theme->getName()); ?>
- </h1>
+ <div id="header-left">
+ <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="nextcloud">
+ <div class="logo-icon svg"></div>
+ </a>
+ <div class="header-appname-container">
+ <h1 class="header-appname">
+ <?php p($theme->getName()); ?>
+ </h1>
+ </div>
</div>
- <div id="settings">
- <div id="guestName"><?php p($l->t('Guest')) ?></div>
- <input id="guestNameInput" class="hidden" type="text" maxlength="20" placeholder="<?php p($l->t('Guest')) ?>">
- <button id="guestNameConfirm" class="icon-confirm hidden"></button>
+ <div id="header-right">
+ <div id="settings">
+ <div id="guestName"><?php p($l->t('Guest')) ?></div>
+ <input id="guestNameInput" class="hidden" type="text" maxlength="20" placeholder="<?php p($l->t('Guest')) ?>">
+ <button id="guestNameConfirm" class="icon-confirm hidden"></button>
+ </div>
</div>
</div>
</header>