mirror of
https://github.com/docmost/docmost.git
synced 2026-05-10 16:24:05 +08:00
879aa2c3d8
* feat: watchers notification and email preferences * fix: email copy * digests * clean up * fix * clean up * move backlinks queue-up to history processor * fix * fix keys * feat: group notifications * filter * adjust email digest window
17 lines
309 B
CSS
17 lines
309 B
CSS
.notificationItem {
|
|
display: block;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.notificationItem:hover {
|
|
background-color: var(--mantine-color-default-hover);
|
|
}
|
|
|
|
.divider {
|
|
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
|
|
}
|
|
|