Skip to content

Commit

Permalink
Bold the timer title.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Nov 26, 2013
1 parent 205f566 commit a871114
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hermes/js/hermes.js
Expand Up @@ -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),
Expand Down
3 changes: 3 additions & 0 deletions hermes/themes/default/dynamic/screen.css
Expand Up @@ -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;
Expand Down

0 comments on commit a871114

Please sign in to comment.