This commit is contained in:
Ross
2021-09-09 13:41:51 +01:00
parent 755215c08c
commit 27b020f097
3 changed files with 13 additions and 2 deletions
+6
View File
@@ -732,3 +732,9 @@ input {
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
} }
.hide-show{
float: right;
transform: rotate(90deg) translateX(60px);
color: blueviolet;
}
+1 -2
View File
@@ -57,8 +57,7 @@
<script> <script>
$(document).ready(function () { $(document).ready(function () {
$(".hide-show").click((evt, el) => { $(".hide-show").click((evt, el) => {
console.log("evt", evt); $(evt.target.parentElement).toggle();
console.log("el", el);
}) })
+6
View File
@@ -732,3 +732,9 @@ input {
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
} }
.hide-show{
float: right;
transform: rotate(90deg) translateX(60px);
color: blueviolet;
}