Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function dispatchAction(action: DevframeMessageAction) {
<div
v-for="toast of toasts"
:key="toast.id"
class="bg-glass:80 border color-base border-base shadow-xl cursor-pointer hover:bg-active transition-colors rounded"
class="bg-toast-glass border color-base border-base shadow-xl cursor-pointer transition-colors rounded"
@click="openMessages(toast.id)"
>
<MessageItem :entry="toast.entry" compact class="px-3 py-2.5">
Expand Down
2 changes: 2 additions & 0 deletions packages/hub-ui/uno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export default mergeConfigs([
shortcuts: {
/** Use the lighter glass in light mode while retaining dark-mode contrast. */
'bg-dock-glass': 'bg-glass dark:bg-[#111]/80',
/** Match dock glass at rest, then strengthen each theme slightly on hover. */
'bg-toast-glass': 'bg-dock-glass hover:bg-white/78 dark:hover:bg-[#111]/90',
// Dock-shell z-layers (named — the design preset blocks plain
// `z-<number>`). The floating shell layers sit at the very top of the
// host page's stacking order, mirroring the upstream dock.
Expand Down
Loading