summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-27 15:21:26 +0300
committerAndrew Dolgov <[email protected]>2019-02-27 15:21:26 +0300
commitb2fcdaee60aaea46b984880ab2bbb9124a43f75c (patch)
tree602fb9bf1441cf9ee96354a8bfaad7fd5433a1b6
parent69260ce229d3a80dfb13f751459ee9f2b32e98da (diff)
minor css update
-rw-r--r--init.css4
-rw-r--r--init.js2
2 files changed, 4 insertions, 2 deletions
diff --git a/init.css b/init.css
index 628756b..7c9bb8d 100644
--- a/init.css
+++ b/init.css
@@ -1,3 +1,5 @@
.time-to-read {
- color : black;
+ font-size : 11px;
+ white-space : nowrap;
+ font-style : italic;
}
diff --git a/init.js b/init.js
index 8188a19..1342d39 100644
--- a/init.js
+++ b/init.js
@@ -11,7 +11,7 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
if (ttr > 1) {
const pr = document.createElement("span");
- pr.className = 'time-to-read label';
+ pr.className = 'time-to-read insensitive';
pr.innerHTML = "Time to read: ~" + ttr + " minutes.";
row.querySelector(".titleWrap").appendChild(pr);