persistent-workspaces in ext/workspaces not working in mangowc #4693
Unanswered
Estherenne
asked this question in
Q&A
Replies: 1 comment
|
Same issue here :( I came up with this CSS hack in the meantime that hides all buttons after the 5th one: #workspaces button.hidden label { color: rgba(241, 241, 241, 0.4); }
#workspaces button.active { background-color: rgba(255, 255, 255, 0.25); }
#workspaces button:hover { background-color: rgba(255, 255, 255, 0.15); }
#workspaces button:hover:active { background-color: rgba(255, 255, 255, 0.25); }
#workspaces button:nth-child(n+6) {
min-width: 0;
min-height: 0;
padding: 0;
margin: 0;
border: 0;
opacity: 0;
background: transparent;
font-size: 0;
}I would prefer using CSS features like |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have this in my config:
However, the
persistent-workspacesoption just doesn't work. No matter what I try, only the active/occupied workspaces are shown.Posting these here because this is still probably a mistake on my part.
Any help is appreciated.
Thanks in advance.
All reactions