summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-03 14:38:15 +0300
committerAndrew Dolgov <[email protected]>2019-03-03 14:38:15 +0300
commitee83cd78c05e39f2f55228da8a3196cb9b4bea64 (patch)
tree35a49854aef86b7e56b878f4e67bea51670e14d1 /index.php
parent95541541e43683055d9d568abb081846377785a0 (diff)
hide service toolbar button prompts on -sm devices
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.php b/index.php
index ab8c945..a1b2794 100644
--- a/index.php
+++ b/index.php
@@ -113,16 +113,16 @@
<ul class="nav navbar-nav navbar-right">
<li><a href="#" title="Refresh script cache" onclick="return cache_refresh(true)">
- <span class="glyphicon glyphicon-refresh"></span> <span class='hidden-md hidden-lg'>Refresh script cache</span></a></li>
+ <span class="glyphicon glyphicon-refresh"></span> <span class='hidden-sm hidden-md hidden-lg'>Refresh script cache</span></a></li>
</li>
<?php if ($mode !== "favorites") { ?>
<li><a href="logout.php" title="Log out">
- <span class="glyphicon glyphicon-log-out"></span> <span class='hidden-md hidden-lg'>Log out</span>
+ <span class="glyphicon glyphicon-log-out"></span> <span class='hidden-sm hidden-md hidden-lg'>Log out</span>
</a></li>
<?php } ?>
<?php if ($mode == "favorites") { ?>
<li><a href="#" onclick="offline_get_all()" title="Download all">
- <span class="glyphicon glyphicon-download-alt text-primary"></span> <span class='hidden-md hidden-lg'>Download all</span>
+ <span class="glyphicon glyphicon-download-alt text-primary"></span> <span class='hidden-sm hidden-md hidden-lg'>Download all</span>
</a></li>
<?php } ?>
</ul>