summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2012-01-11 01:53:37 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2012-01-11 01:53:37 +0100
commitecf1527951881fefa55738eb6a6fc668680ef681 (patch)
treeb5e75ac9c0fc46b5e84d8a17dec6d1b9f616ebf3 /static
parentd49358409d9e02ce258a6c52b700dbfbcc48a67e (diff)
downloadkosten-ecf1527951881fefa55738eb6a6fc668680ef681.tar.gz
kosten-ecf1527951881fefa55738eb6a6fc668680ef681.tar.bz2
kosten-ecf1527951881fefa55738eb6a6fc668680ef681.zip
Make the 'In Summa' clickable again -- also it is now possible to click on the category expenses to unroll the details
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css2
-rw-r--r--static/js/show.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 9731684..d308227 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -95,7 +95,7 @@ img {
font-weight: bold;
}
-div.detail > .heading {
+div.detail .heading {
font-weight: bold;
cursor: pointer;
}
diff --git a/static/js/show.js b/static/js/show.js
index 333ce17..b40c9fe 100644
--- a/static/js/show.js
+++ b/static/js/show.js
@@ -1,6 +1,6 @@
$(document).ready(function(){
- $(".detail > .heading").click(function() {
+ $(".detail span").click(function() {
$(this).prevAll(".mark:last").click();
});