diff options
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -34,8 +34,7 @@ header('Content-Type: text/html; charset=utf-8'); ?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<!DOCTYPE html> <html> <head> <title>Tiny Tiny RSS</title> @@ -181,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> @@ -215,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> |