From 8546a5ac5a703696c9b4880397e90c8a39d6abf0 Mon Sep 17 00:00:00 2001 From: Curtis Parfitt-Ford Date: Sun, 23 Aug 2020 00:03:32 +0100 Subject: [PATCH 1/2] Dark timeline entries for the dark Nextcloud theme Signed-off-by: Curtis Parfitt-Ford --- src/components/TimelineEntry.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue index 66876a90..7f89cf54 100644 --- a/src/components/TimelineEntry.vue +++ b/src/components/TimelineEntry.vue @@ -138,6 +138,9 @@ export default { .timeline-entry:hover { background-color: #F5F5F5; } + body.dark .timeline-entry:hover { + background-color: #202020; + } .container-icon-boost { display: inline-block; From a3c1a4ca0f5d604e14ade719f817f7f2e5211659 Mon Sep 17 00:00:00 2001 From: Curtis Parfitt-Ford Date: Mon, 24 Aug 2020 17:50:49 +0100 Subject: [PATCH 2/2] Standard hover background colour Signed-off-by: Curtis Parfitt-Ford --- src/components/TimelineEntry.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue index 7f89cf54..d6815280 100644 --- a/src/components/TimelineEntry.vue +++ b/src/components/TimelineEntry.vue @@ -134,12 +134,9 @@ export default { .timeline-entry { padding: 10px; margin-bottom: 10px; - } - .timeline-entry:hover { - background-color: #F5F5F5; - } - body.dark .timeline-entry:hover { - background-color: #202020; + &:hover { + background-color: var(--color-background-hover); + } } .container-icon-boost {