Commit 540232f5 by Brian Talbot Committed by Carlos Andrés Rocha

revised minor syntax/line indents on faq scss and js

parent 2f99d38e
...@@ -3,8 +3,8 @@ $(document).ready(function() { ...@@ -3,8 +3,8 @@ $(document).ready(function() {
var question_id; var question_id;
$('.response').click(function(){ $('.response').click(function(){
$(this).toggleClass('opened'); $(this).toggleClass('opened');
answer = $(this).find(".answer"); answer = $(this).find(".answer");
answer.slideToggle('fast'); answer.slideToggle('fast');
}); });
}); });
...@@ -197,8 +197,8 @@ ...@@ -197,8 +197,8 @@
background: url('/static/images/bullet-closed.png') no-repeat left 0.25em; background: url('/static/images/bullet-closed.png') no-repeat left 0.25em;
font-family: $sans-serif; font-family: $sans-serif;
font-weight: 700; font-weight: 700;
margin-bottom: 15px; margin-bottom: 10px;
padding-left: 16px; padding-left: 20px;
cursor: pointer; cursor: pointer;
} }
...@@ -210,12 +210,15 @@ ...@@ -210,12 +210,15 @@
li { li {
line-height: 1.6em; line-height: 1.6em;
} }
} }
}
.opened h3 { // opened states
background: url('/static/images/bullet-open.png') no-repeat left 0.25em; &.opened {
h3 {
background: url('/static/images/bullet-open.png') no-repeat left 0.25em;
}
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment