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:
-rw-r--r--css/style.css12
-rw-r--r--templates/index-public.php26
2 files changed, 16 insertions, 22 deletions
diff --git a/css/style.css b/css/style.css
index 2614d4b7e..65e4f3038 100644
--- a/css/style.css
+++ b/css/style.css
@@ -446,16 +446,6 @@ video {
}
}
-#nextcloud {
- position: absolute;
- top: 0;
- left: 0;
- padding: 5px;
- padding-bottom: 0;
- height: 45px;
- opacity: 1;
-}
-
#guestName {
padding: 7px 30px 6px 10px;
cursor: pointer;
@@ -474,7 +464,7 @@ video {
#guestNameConfirm {
position: relative;
height: 20px;
- right: 12px;
+ right: 16px;
line-height: 14px;
background-color: transparent;
border: none;
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>