Skip to content

Commit

Permalink
Handle notes. Red/green checkboxes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ranbo committed Nov 14, 2024
1 parent 94d3aab commit 048c3de
Show file tree
Hide file tree
Showing 2 changed files with 721 additions and 63 deletions.
19 changes: 19 additions & 0 deletions split/time-machine.css
Original file line number Diff line number Diff line change
Expand Up @@ -483,3 +483,22 @@ a:hover {
height: 1em;
width: auto;
}

.current-value-checkbox:checked {
accent-color: green;
}
.current-value-checkbox:not(:checked) {
display: none;
}
.current-value-checkbox:not(:checked) + label::before {
display: inline-block;
position: relative;
content: ' ';
width: 11px; /* make it the size of normal checkboxes */
height: 11px;
border: 1px solid red;
background-color: lightpink;
border-radius: 3px;
margin-left: 4px; /* line it up with normal checkboxes */
margin-right: 3px;
}
Loading

0 comments on commit 048c3de

Please sign in to comment.