diff options
Diffstat (limited to 'templates/web/zurich/admin/header.html')
-rw-r--r-- | templates/web/zurich/admin/header.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/web/zurich/admin/header.html b/templates/web/zurich/admin/header.html index 41cb520f5..d3cc9bda7 100644 --- a/templates/web/zurich/admin/header.html +++ b/templates/web/zurich/admin/header.html @@ -14,9 +14,19 @@ %] <style type="text/css"> .adminhidden { color: #666666; } + .active { background-color: #ffffee; cursor: pointer; } .error { color: red; } .overdue { background-color: #ffcccc; } select { width: auto; } </style> +<script> +$(function(){ + $('.row-link').hover(function(){ + $(this).toggleClass("active"); + }).click(function(){ + window.location = this.getElementsByTagName('a')[0]; + }); +}); +</script> <h1 style="clear:both;">[% title %]</h1> |