style(next): recent changes list: tweak timeline connector on item hover

This commit is contained in:
Adorian Doran 2024-12-13 01:45:31 +02:00
parent 1410a6cf7a
commit 556baf2782
2 changed files with 6 additions and 0 deletions

View File

@ -217,6 +217,7 @@
--timeline-bullet-hover-color: black;
--timeline-connector-color: #f1f1f1;
--timeline-connector-active-color: #ddd;
--timeline-connector-hover-blend-mode: multiply;
--tooltip-background-color: rgba(255, 255, 255, 0.85);
--tooltip-foreground-color: #000000ba;
@ -361,6 +362,7 @@
--timeline-bullet-hover-color: white;
--timeline-connector-color: #464646;
--timeline-connector-active-color: #545454;
--timeline-connector-hover-blend-mode: exclusion;
--tooltip-background-color: rgba(67, 67, 67, 0.86);
--tooltip-foreground-color: #ffffffeb;

View File

@ -1140,6 +1140,10 @@ body .calendar-dropdown-widget .calendar-body a:hover {
transition: background-color 400ms ease-in-out;
}
.recent-changes-content ul li:hover:before {
mix-blend-mode: var(--timeline-connector-hover-blend-mode);
}
.recent-changes-content > div:hover {
--timeline-connector-color: var(--timeline-connector-active-color);
}