feat(toast): surface toasts bottom-left by the bell, brighter dark rim
Toasts rose top-right, far from the notification bell which now lives bottom-left. Anchor them bottom-left inside the content column (clears the sidebar at any width), newest nearest the bell. Add a ~50% white border in dark mode so they stand out off the conventional top-right spot.
This commit is contained in:
parent
7a5f52a89b
commit
d94f41cb56
2 changed files with 8 additions and 2 deletions
|
|
@ -93,6 +93,12 @@ html[data-theme="dark"] .glass-menu {
|
|||
backdrop-filter: blur(30px) saturate(1.7) brightness(1.4);
|
||||
-webkit-backdrop-filter: blur(30px) saturate(1.7) brightness(1.4);
|
||||
}
|
||||
/* Toasts surface bottom-left (by the nav's notification bell), off the conventional
|
||||
top-right; a brighter rim draws the eye there. Most needed in dark mode, where the
|
||||
default glass border (dark navy) all but vanishes against the backdrop. */
|
||||
html[data-theme="dark"] .toast-card {
|
||||
border-color: color-mix(in srgb, #fff 50%, transparent);
|
||||
}
|
||||
|
||||
/* Performance mode (Settings → Appearance) drops the expensive blur + soft shadows. */
|
||||
html[data-perf="1"] .glass,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue