mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
i have discovered that extra topbar icons e.g. window min/max/close are not accessible in peek mode. this is probably fine?
20 lines
536 B
CSS
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;
|
|
}
|