sindrets / atom-title-bar-replacer

Adds an alternative, theme-aware title bar and application menu that is more inline with Atom's UI design.
Other
85 stars 5 forks source link

Sidebar won't open #45

Closed e-luo closed 3 years ago

e-luo commented 5 years ago

Before removing the frame, a mouseover on the left side will allow me to open the projects sidebar. After removing the frame, it becomes very difficult for the sidebar button to show up.

The menus also don't have highlights on hover.

The title would be better if it was darker when active, and lighter when the window is not active/selected. If I could click the title to copy the file directory path that would be great.

Other than that, it's been great, thanks!

reseto commented 4 years ago

Before removing the frame, a mouseover on the left side will allow me to open the projects sidebar. After removing the frame, it becomes very difficult for the sidebar button to show up.

I can confirm this is broken with plugin version 1.8.3 It's possible to open projects sidebar with Ctrl+\ and then to collapse it by clicking the sidebar button (on-hover arrow). After collapsing the button is gone.

The rest is not an issue for me. Thanks!

Wolff-H commented 3 years ago

Same here. It's been a pain that I must toggle the panel dock with hotkey. Anyone know a way to fix this?

Wolff-H commented 3 years ago

My friend just helped me out by a hack lol. Add the following to your custom style:

.atom-dock-inner.left:not(.atom-dock-open) {
    >.atom-dock-mask {
        width: 8px !important;
        pointer-events: none;
        opacity: 0;
    }
    >.atom-dock-toggle-button.left {
        margin-left: -8px;
    }
}
sindrets commented 3 years ago

Fixed in v2.0.0. @Wolff-H thank you to you and your friend for investigating.