Skip to content

Commit

Permalink
Merge pull request #1624 from laf/nav-shrink
Browse files Browse the repository at this point in the history
For smaller windows, the logo will be hidden and Plugins text also
  • Loading branch information
f0o committed Aug 6, 2015
2 parents 02a36b8 + 323e247 commit 0169c22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions html/includes/print-menubar.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
<?php

if ($config['title_image']) {
echo('<a class="navbar-brand" href=""><img src="' . $config['title_image'] . '" /></a>');
echo('<a class="hidden-md hidden-sm navbar-brand" href=""><img src="' . $config['title_image'] . '" /></a>');
}
else {
echo('<a class="navbar-brand" href="">'.$config['project_name'].'</a>');
echo('<a class="hidden-md hidden-sm navbar-brand" href="">'.$config['project_name'].'</a>');
}

?>
Expand Down Expand Up @@ -430,7 +430,7 @@
?>

<li class="dropdown">
<a href="#" class="dropdown-toggle" data-hover="dropdown" data-toggle="dropdown"><i class="fa fa-plug fa-fw fa-lg fa-nav-icons"></i> Plugins</a>
<a href="#" class="dropdown-toggle" data-hover="dropdown" data-toggle="dropdown"><i class="fa fa-plug fa-fw fa-lg fa-nav-icons"></i> <span class="hidden-md hidden-sm">Plugins</span></a>
<ul class="dropdown-menu">
<?php
Plugins::call('menu');
Expand Down

0 comments on commit 0169c22

Please sign in to comment.