Skip to content

Commit

Permalink
Improve active state color for selected year in timeline (refs #301)
Browse files Browse the repository at this point in the history
  • Loading branch information
ut committed May 29, 2024
1 parent 63299f1 commit 6fde030
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/assets/stylesheets/6_timeline.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ table#timeline-list {
#timeline-wrapper.dark #timeline-content div.active
{
color: hsl(60, 100%, 29%);
color: #cc0000;
cursor: pointer;
border-color: #c6c600;
border-color: #cc0000;
text-shadow: 0 0 4px white;
filter: drop-shadow(0 0 0.2em white);
transition: 0.3s all;
Expand All @@ -133,6 +135,11 @@ table#timeline-list {
color: #c6c600;
border-color: #c6c600;
}
#timeline-wrapper.dark #timeline-content div.active:hover
{
color: #e90202;
border-color: #e90202;
}
#scroll-left,
#scroll-right {
position: absolute;
Expand Down

0 comments on commit 6fde030

Please sign in to comment.