summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css5
-rw-r--r--static/js/show.js18
2 files changed, 19 insertions, 4 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 26973a7..81a563a 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -71,6 +71,11 @@ img.right {
margin-left: 15px;
}
+div.detail > .heading {
+ font-weight: bold;
+}
+
+
/* Header */
#header {
diff --git a/static/js/show.js b/static/js/show.js
index 0c2fd8a..2c43015 100644
--- a/static/js/show.js
+++ b/static/js/show.js
@@ -1,7 +1,17 @@
$(document).ready(function(){
- $(".details_heading").click(function() {
- $(this).next().next().toggle()
- })
+ $(".detail > .heading").click(function() {
+ $(this).prevAll(".mark:last").click();
+ });
- $(".details").hide()
+ $(".detail > .mark").toggle(
+ function() {
+ this.src = this.src.replace("closed", "open");
+ $(this).nextAll(".details:first").toggle();
+ },
+ function() {
+ this.src = this.src.replace("open", "closed");
+ $(this).nextAll(".details:first").toggle();
+ });
+
+ $(".details").hide();
})