summaryrefslogtreecommitdiff
path: root/prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-06 07:54:28 +0300
committerAndrew Dolgov <[email protected]>2018-12-06 07:54:28 +0300
commit6142e153478509fa8505fb86755ecd21291d8a59 (patch)
tree88e95c242cb407ebe190b0a3b538cce6f4aa5df7 /prefs.php
parentf5973404042a74c8f9b23f9eb5fe057cbc2d9dc9 (diff)
exp: icons on pref tabs
Diffstat (limited to 'prefs.php')
-rw-r--r--prefs.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/prefs.php b/prefs.php
index ccab0ed36..968082f9a 100644
--- a/prefs.php
+++ b/prefs.php
@@ -124,23 +124,23 @@
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-prefs"
- title="<?php echo __('Preferences') ?>"></div>
+ title="<i class='material-icons'>settings</i> <?php echo __('Preferences') ?>"></div>
<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-feeds"
- title="<?php echo __('Feeds') ?>"></div>
+ title="<i class='material-icons'>rss_feed</i> <?php echo __('Feeds') ?>"></div>
<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-filters"
- title="<?php echo __('Filters') ?>"></div>
+ title="<i class='material-icons'>filter_list1</i> <?php echo __('Filters') ?>"></div>
<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-labels"
- title="<?php echo __('Labels') ?>"></div>
+ title="<i class='material-icons'>label_outline1</i> <?php echo __('Labels') ?>"></div>
<?php if ($_SESSION["access_level"] >= 10) { ?>
<div id="userConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-users"
- title="<?php echo __('Users') ?>"></div>
+ title="<i class='material-icons'>person</i> <?php echo __('Users') ?>"></div>
<div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-system"
- title="<?php echo __('System') ?>"></div>
+ title="<i class='material-icons'>info_outline</i> <?php echo __('System') ?>"></div>
<?php } ?>
<?php
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,