Skip to content

Commit

Permalink
Update index.php
Browse files Browse the repository at this point in the history
I propose changing the gear icon to a user icon. While I know the user icon is also used in the subsequent drop down, that gear never made sense to me as this is a user menu. There's nothing in that menu that's NOT user related (unless you argue that a log out option isn't user related).

In many other systems, that sort of menu is denoted by a user or head icon. This would just bring a bit more clarity to that menu.

To test the change, log into the admin and see if the cog icon is now a user icon.
  • Loading branch information
brianpeat committed Apr 21, 2016
1 parent 7305716 commit f58e1f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/templates/isis/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function colorIsLight($color)
<jdoc:include type="modules" name="menu" style="none" />
<ul class="nav nav-user<?php echo ($this->direction == 'rtl') ? ' pull-left' : ' pull-right'; ?>">
<li class="dropdown">
<a class="<?php echo ($hidden ? ' disabled' : 'dropdown-toggle'); ?>" data-toggle="<?php echo ($hidden ? '' : 'dropdown'); ?>" <?php echo ($hidden ? '' : 'href="#"'); ?>><span class="icon-cog"></span>
<a class="<?php echo ($hidden ? ' disabled' : 'dropdown-toggle'); ?>" data-toggle="<?php echo ($hidden ? '' : 'dropdown'); ?>" <?php echo ($hidden ? '' : 'href="#"'); ?>><span class="icon-user"></span>
<span class="caret"></span></a>
<ul class="dropdown-menu">
<?php if (!$hidden) : ?>
Expand Down Expand Up @@ -316,4 +316,4 @@ function colorIsLight($color)
<?php endif; ?>
<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
</html>

0 comments on commit f58e1f4

Please sign in to comment.