diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d015f..70363c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,18 @@ ### v0.11.0 (wip) +- new: different css entrypoints for different components (tabs, menu, app). - improved: use an svg for the scroll-to-top button. - improved: use a better-matching icon and add transitions to the property layout toggle. +- improved: themes are directly applied to tabs and menu rather than sync-ed between (infinite loading). - bugfix: disable fadein of selected block halo with snappy transitions. - bugfix: increase contrast of `--theme_dark--interactive_hover` in dark+ and dracula. +- bugfix: tabs are focused properly for input. +- bugfix: keyboard shortcut listeners are stricter so they don't conflict. +- bugfix: dots indicating draggability are no longer next to the tabs mod in the menu. +- bugfix: prevent empty hotkeys from triggering every keypress. +- bugfix: don't try loading an empty default page url (infinite loading). +- bugfix: remove `* { z-index: 1}` rule so format dropdowns in table view can be opened. - extension: "topbar icons" = replaces the topbar buttons with icons. - extension: "code line numbers" = adds line numbers to code blocks. - tweak: vertical indentation/relationship lines for lists. diff --git a/mods/core/css/theme.css b/mods/core/css/theme.css index 1e69d31..794da8f 100644 --- a/mods/core/css/theme.css +++ b/mods/core/css/theme.css @@ -91,14 +91,6 @@ height: var(--theme--page_banner-height) !important; } -/* prevent block hover options overlaying topbar */ -.notion-topbar { - background: var(--theme--main); -} -*:not([style*='z-index']) { - z-index: 1; -} - /* colour help button - one of the few specific classes notion does give us */ .notion-help-button { background: var(--theme--interactive_hover) !important;