From 86ee79d1724cc132b02ea9b54214cf389bb7583d Mon Sep 17 00:00:00 2001 From: "Ricardo Constantino (:RiCON)" Date: Thu, 2 Jun 2016 17:41:10 +0100 Subject: [PATCH] Move status below buttons again --- css/options.css | 4 ++++ options.html | 2 +- options.js | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/css/options.css b/css/options.css index 13b69f6..6cd8ad1 100644 --- a/css/options.css +++ b/css/options.css @@ -88,3 +88,7 @@ label.radio { cursor: pointer; color: #000; } +#status { + display: block; + height: 1.5em; +} diff --git a/options.html b/options.html index 43ca95c..b4842b9 100644 --- a/options.html +++ b/options.html @@ -38,8 +38,8 @@

WaniKani Notifier

-
 
+
diff --git a/options.js b/options.js index 8ea0eaf..e82f7dd 100644 --- a/options.js +++ b/options.js @@ -111,7 +111,7 @@ function show_status(status) { var statusEl = document.getElementById('status'); statusEl.textContent = status.toString(); setTimeout(function() { - statusEl.textContent = ' '; + statusEl.textContent = ''; }, 4000); }