summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-06 09:20:06 +0300
committerAndrew Dolgov <[email protected]>2019-03-06 09:20:06 +0300
commit83650fffa44a8f3eeeb81153835c013348a8c584 (patch)
tree1f9b6d4a11bd2741690d2131354377adf10f3b68 /index.php
parent6d0c9bb7846cee46ccdefae8b040e1981c826b68 (diff)
actions dropdown: use material menu icon
Diffstat (limited to 'index.php')
-rw-r--r--index.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/index.php b/index.php
index e0767eb9f..c35b3d5c6 100644
--- a/index.php
+++ b/index.php
@@ -180,10 +180,11 @@
<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
</select>
- <select title="<?php echo __('Sort articles') ?>"
+ <select title="<?php echo __('Sort articles') ?>"
onchange="App.onViewModeChanged()"
dojoType="dijit.form.Select" name="order_by">
- <option selected="selected" value="default"><?php echo __('Default') ?></option>
+
+ <option selected="selected" value="default"><?php echo __('Default') ?></option>
<option value="feed_dates"><?php echo __('Newest first') ?></option>
<option value="date_reverse"><?php echo __('Oldest first') ?></option>
<option value="title"><?php echo __('Title') ?></option>
@@ -214,8 +215,8 @@
}
?>
- <div dojoType="dijit.form.DropDownButton">
- <span><?php echo __('Actions...') ?></span>
+ <div dojoType="dijit.form.DropDownButton" class="action-button" title="<?php echo __('Actions...') ?>">
+ <span><i class="material-icons">menu</i></span>
<div dojoType="dijit.Menu" style="display: none">
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcPrefs')"><?php echo __('Preferences...') ?></div>
<div dojoType="dijit.MenuItem" onclick="App.onActionSelected('qmcSearch')"><?php echo __('Search...') ?></div>