lib/right_chimp/templates/default.css in right_chimp-2.1.10 vs lib/right_chimp/templates/default.css in right_chimp-2.1.12
- old
+ new
@@ -77,5 +77,30 @@
}
a:hover, ol a:hover {
text-decoration: underline;
}
+
+
+/* Checkbox Hack */
+li {
+ list-style-type: none;
+}
+input[type=checkbox] {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+}
+label {
+ display: inline-block;
+ cursor: pointer;
+}
+
+/* Default State */
+span div.job_details {
+ display: none;
+}
+
+/* Toggled State */
+input[type=checkbox]:checked ~ span div.job_details {
+ display: block;
+}