summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-10 11:54:19 +0300
committerAndrew Dolgov <[email protected]>2018-12-10 11:54:19 +0300
commit7915706946f2881f5ba82651cb58bbabf15728a8 (patch)
tree705cf6d3ecc7cfcb2d3160b6895104300ab115cf /index.php
parent7e5c99914683620348e4a91ab2d6692749f198f4 (diff)
move all status icons like net-alert together on the toolbar
Diffstat (limited to 'index.php')
-rw-r--r--index.php19
1 files changed, 7 insertions, 12 deletions
diff --git a/index.php b/index.php
index a8b3c7849..435965d02 100644
--- a/index.php
+++ b/index.php
@@ -161,15 +161,14 @@
<div id="toolbar-frame" dojoType="dijit.layout.ContentPane" region="top">
<div id="toolbar" dojoType="dijit.Toolbar">
- <div class="net-alert" style="display : none"
- title="<?php echo __("Communication problem with server.") ?>">
- <i class="material-icons">error_outline</i>
- </div>
+ <i class="material-icons net-alert" style="display : none"
+ title="<?php echo __("Communication problem with server.") ?>">error_outline</i>
- <div class="log-alert" style="display : none"
- title="<?php echo __("Recent entries found in event log.") ?>">
- <i class="material-icons">warning</i>
- </div>
+ <i class="material-icons log-alert" style="display : none"
+ title="<?php echo __("Recent entries found in event log.") ?>">warning</i>
+
+ <i id="updates-available" class="material-icons icon-new-version" style="display : none"
+ title="<?php echo __('Updates are available from Git.') ?>">new_releases</i>
<?php
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_MAIN_TOOLBAR_BUTTON) as $p) {
@@ -257,10 +256,6 @@
<?php } ?>
</div>
</div>
-
- <i id="updates-available" class="material-icons icon-new-version"
- style="display : none" title="<?php echo __('Updates are available from Git.') ?>">new_releases</i>
-
</div>
</div> <!-- toolbar -->
</div> <!-- toolbar pane -->