From a871114124ad8b2f587eedf1c5336575d207bff0 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Tue, 26 Nov 2013 13:19:12 -0500 Subject: [PATCH] Bold the timer title. --- hermes/js/hermes.js | 2 +- hermes/themes/default/dynamic/screen.css | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/hermes/js/hermes.js b/hermes/js/hermes.js index 28b0bd512b5..5f9e7fa7c57 100644 --- a/hermes/js/hermes.js +++ b/hermes/js/hermes.js @@ -1401,7 +1401,7 @@ HermesCore = { */ insertTimer: function(r, d) { - var title = new Element('div').update(d + ' (' + r.elapsed + ' ' + Hermes.text['hours'] + ')'), + var title = new Element('div', { 'class': 'timer-title' }).update(d + ' (' + r.elapsed + ' ' + Hermes.text['hours'] + ')'), controls = new Element('span', { 'class': 'timerControls' }), stop = new Element('span', { 'class': 'timerControls timer-saveable' }), timer = new Element('div', { 'class': 'horde-resource-none' }).store('tid', r.id), diff --git a/hermes/themes/default/dynamic/screen.css b/hermes/themes/default/dynamic/screen.css index 57935178e7c..64036752f24 100644 --- a/hermes/themes/default/dynamic/screen.css +++ b/hermes/themes/default/dynamic/screen.css @@ -92,6 +92,9 @@ html, body { .timer-saveable { background-image: url("../graphics/stop.png"); } +.timer-title { + font-weight: bold; +} #hermesMenuTimers .active-timer { background-color: #7EAA42; font-weight: bold;