frex
1
Use case or problem
Under default setting(window frame style=hidden), click and drag these area has no effect in macOS app:
- empty area of app ribbon
- area around traffic light button
Proposed solution
Under default setting(window frame style=hidden), click and drag these area should move the window:
- empty area of app ribbon
- area around traffic light button
Current workaround (optional)
Change window frame style to other values but it’s ugly not optimal visually.
Related feature requests (optional)
It was reported previous multiple times. e.g.
And an alternative suggestion is Moving the Obsidian window using ALT+Drag
I posted this in another thread, but maybe it could be of use to you as well:
1 Like
frex
3
Thank you. That’s very helpful!
I don’t use ribbon so ended up using status bar like this:
body:not(.is-popout-window) div.status-bar:after {
content: "\2723";
font-size: 18px;
-webkit-app-region: drag;
text-align: center;
margin-top: -2px;
cursor: move;
}
Hopefully Obsidian can fix this one day.