Display a tooltip on days without events

This commit is contained in:
Matthias Jentsch 2014-09-18 09:20:13 +02:00
parent dc6562b97e
commit 4ce71ef2f2
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ class HistoryColorGrid extends AbstractWidget {
'>&nbsp;</a>'; '>&nbsp;</a>';
} else { } else {
return '<a ' . return '<a ' .
'style="background-color:' . $this->calculateColor(0) . '; ' . ' opacity: ' . $this->opacity . ';' . 'style="background-color:' . $this->calculateColor(0) . '; ' . ' opacity: ' . $this->opacity . ';" ' .
'title="No entries for ' . $day . '" ' . 'title="No entries for ' . $day . '" ' .
'></a>'; '></a>';
} }

View File

@ -19,7 +19,7 @@ table.historycolorgrid td {
margin: 1em; margin: 1em;
} }
table.historycolorgrid td.hover { table.historycolorgrid td:hover {
opacity: 0.5; opacity: 0.5;
} }