notion-enhancer/src/extensions/titlebar/client.css
dragonwocky 3601680c24
fix(topbar): custom topbar icons + window dragging in peek view
i have discovered that extra topbar icons e.g. window min/max/close are not accessible in peek mode. this is probably fine?
2024-02-05 12:59:58 +11:00

20 lines
536 B
CSS

/**
* notion-enhancer: titlebar
* (c) 2024 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
.notion-tabs,
.notion-topbar {
user-select: none;
-webkit-app-region: drag;
}
.notion-tabs :is([aria-label], [draggable], .notion-enhancer--topbar-button),
.notion-peek-renderer [style*="height: 44px;"] > div,
.notion-topbar > div > * {
-webkit-app-region: no-drag;
}
.notion-tabs .notion-enhancer--topbar-button:last-child {
margin-right: 12px;
}