Hello, I have users requesting the ability to collapse columns. Specifically the div.sidebar column where the list of various overviews is contained. I tried using a sidebar.css file in the app/assets/stylesheets/custom/
directory, followed by a rake and restart to no-avail. Is it possible to get an update where we can collapse columns down? I realize this is a low priority concern but I have multiple users stating that it is impeding their personal workflow so I wanted to bring it up. Thank you in advance.
Hey @anoel2 i found it
I made my own .scss in /app/assets/stylesheets/custom and added these lines:
@media screen and (max-width: 9999px) {
.overview-header {
display:flex !important;
}
}
@media screen and (max-width: 9999px) {
.overviews .sidebar {
display:none !important;
}
}
Tried it out for a few hours, doesn’t seem to impact anything else except the sidebar, so far so good, try it at your own risk, worst case, just revert.
And yes, you got to generate new files by rake precompile and restart zammad-web
1 Like