Skip to content

Commit 98f19cd

Browse files
authored
fix: agenda 'show meeting materials' button theme (#9119)
1 parent 58bc7c9 commit 98f19cd

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

client/agenda/AgendaScheduleList.vue

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ const meetingEvents = computed(() => {
302302
icon: 'collection',
303303
href: undefined,
304304
click: () => showMaterials(item.id),
305-
color: 'black'
305+
color: 'darkgray'
306306
})
307307
links.push({
308308
id: `lnk-${item.id}-tar`,
@@ -1155,7 +1155,7 @@ onBeforeUnmount(() => {
11551155
.agenda-table-cell-links-buttons {
11561156
white-space: nowrap;
11571157
1158-
> a, > i {
1158+
> a, > i, > button {
11591159
margin-left: 3px;
11601160
color: #666;
11611161
cursor: pointer;
@@ -1197,6 +1197,18 @@ onBeforeUnmount(() => {
11971197
background-color: rgba($orange-500, .3);
11981198
}
11991199
}
1200+
&.text-darkgray {
1201+
color: $gray-900;
1202+
background-color: rgba($gray-700, .1);
1203+
1204+
@at-root .theme-dark & {
1205+
color: $gray-100;
1206+
}
1207+
1208+
&:hover, &:focus {
1209+
background-color: rgba($gray-700, .3);
1210+
}
1211+
}
12001212
&.text-blue {
12011213
color: $blue-600;
12021214
background-color: rgba($blue-300, .1);

0 commit comments

Comments
 (0)