aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2018-06-16 12:14:16 -0700
committerAdam Mathes <adam@trenchant.org>2018-06-16 12:14:16 -0700
commita89442e28240af4a4032bcc08e450c7c2a426631 (patch)
treea3d7af7330f3d4140a6adbbbac7488e977104626 /static
parent16df68a5118801472909f63fc48caf16e548060c (diff)
downloadneko-a89442e28240af4a4032bcc08e450c7c2a426631.tar.gz
neko-a89442e28240af4a4032bcc08e450c7c2a426631.tar.bz2
neko-a89442e28240af4a4032bcc08e450c7c2a426631.zip
control style changes
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);