Hey everyone,
I have been trying to hide all the scrollbars only while in the Zen-plus mode of the Zen-plus package. This mode is entered after a combination of keys is pressed.
Adding these lines to my Stylesheet file hides them effectively:
atom-text-editor[with-minimap] .vertical-scrollbar {
display: none;
}
However, I want this to rule to be applied on condition that the Zen-plus mode is enabled. There has to be a way, since I also use this as suggested by the minimap package documentation to hide the editor’s scrollbar while the minimap is enabled:
atom-text-editor[with-minimap] .vertical-scrollbar {
display: none;
}
How can I find a similar rule to [with-minimap]
but for the Zen-plus package?
Thank you!