aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/style.css9
-rw-r--r--static/ui.html2
-rw-r--r--static/ui.js1
3 files changed, 9 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css
index 4fce014..8956e97 100644
--- a/static/style.css
+++ b/static/style.css
@@ -58,8 +58,12 @@ h1, h2, h3, h4, h5, #controls {
}
#controls li {
+ width: 100%;
list-style: none;
margin-left: 0;
+ text-align: center;
+ margin-top: 10px;
+ background-color: whitesmoke;
}
h2 {
@@ -205,10 +209,11 @@ button {
font-family: 'Helvetica Neue';
font-size: 16px;
padding: 3px 10px;
- background: white;
+ background: whitesmoke;
color: blue;
font-weight: bold;
- border: solid 1px #ccc;
+ border: none;
+ width: 100%;
}
diff --git a/static/ui.html b/static/ui.html
index 5fa7005..bf533df 100644
--- a/static/ui.html
+++ b/static/ui.html
@@ -95,7 +95,7 @@
class="starred_filter">★ starred</a>
</li>
<li>
- <button class="new_feed"> + </button>
+ <button class="new_feed"> + new </button>
</li>
<li>
<input id="search" type="search" /><button class="search_go">search</button>
diff --git a/static/ui.js b/static/ui.js
index 65c833b..b35e948 100644
--- a/static/ui.js
+++ b/static/ui.js
@@ -76,6 +76,7 @@ var AppModel = Backbone.Model.extend({
},
filterToAll: function() {
+ this.set('searchFilter', undefined);
this.set('starredFilter', false);
this.set('allFilter', true);
this.set('unreadFilter', false);