Skip to content

Commit

Permalink
Added highlight when hovering over calendar cell
Browse files Browse the repository at this point in the history
  • Loading branch information
kainoaw committed Jun 7, 2024
1 parent 9b0acc0 commit 68d87a6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/calendar/calendar.css
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,12 @@ td .productivity-icon {
left: 0;
}

/* Highlight boxes when hovering over specific calendar cell */
.a-link:hover {
background-color: skyblue;
opacity: 0.3;
}

/* Media query to handle window resizing */
@media (max-height: 500px) {
.task-ul {
Expand Down
6 changes: 6 additions & 0 deletions source/homepage/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,12 @@ td .task-div {
z-index: 10;
}

/* Highlight boxes when hovering over specific calendar cell */
.a-link:hover {
background-color: skyblue;
opacity: 0.3;
}

/* ======== End of Past Week ========== */

/* ******** End of Main Wrap ********** */
Expand Down

0 comments on commit 68d87a6

Please sign in to comment.