From bccf9567cd24914a7716baed137c3eb0de425172 Mon Sep 17 00:00:00 2001 From: Matthew Holloway Date: Thu, 10 Jul 2025 11:12:12 +1200 Subject: [PATCH] fix: agenda 'show meeting materials' button theme --- client/agenda/AgendaScheduleList.vue | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/client/agenda/AgendaScheduleList.vue b/client/agenda/AgendaScheduleList.vue index d38c7842eb7..fc8b5fd30f7 100644 --- a/client/agenda/AgendaScheduleList.vue +++ b/client/agenda/AgendaScheduleList.vue @@ -302,7 +302,7 @@ const meetingEvents = computed(() => { icon: 'collection', href: undefined, click: () => showMaterials(item.id), - color: 'black' + color: 'darkgray' }) links.push({ id: `lnk-${item.id}-tar`, @@ -1155,7 +1155,7 @@ onBeforeUnmount(() => { .agenda-table-cell-links-buttons { white-space: nowrap; - > a, > i { + > a, > i, > button { margin-left: 3px; color: #666; cursor: pointer; @@ -1197,6 +1197,18 @@ onBeforeUnmount(() => { background-color: rgba($orange-500, .3); } } + &.text-darkgray { + color: $gray-900; + background-color: rgba($gray-700, .1); + + @at-root .theme-dark & { + color: $gray-100; + } + + &:hover, &:focus { + background-color: rgba($gray-700, .3); + } + } &.text-blue { color: $blue-600; background-color: rgba($blue-300, .1);