Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can I hide the marked menus? If yes how?
I hope this trial theme should work. You can import and test.
After the update to the November 2022 version in the Enterprise environment, the trick with the CSS no longer works. Which entry do we have to use now?
Hi,
I can't answer at the moment because we're not using this version yet.
Hi I have a similar problem after upgrading from Sep-22 version.
All the menus items on the QS app have inconsistent clases names since Nov-22 version. Since the css class definition is changing from app to app and from server to server (even for the same app/server when opened on different browsers), it is not possible to use CSS or Theme customization to achieve this or any other modification on the menus.
For example, to hide the 'hidden selections applied' I previously used this css to hide it:
but on the new version, the css clases are 'random' and I cannot find any constant value to be used
none of the previous classes remains the same on other apps, or even on the same app when open on another browser.
@Patric_Nordstrom Any suggestion how can we achieve this from now on?
Thanks
C
P.S: For the specific case of the Stories, the css class is random, but it seems the 'id' is consistent and you can use that on the css/theme
Replying to my self.
In order to hide the 'Hidden selections applied' i was able to solve it again with css. I think it is not super stable since it might stop working on newer releases, but it works for Feb-23 version.
Bassically i went on the htlm tree to a parent where the is a well define css Class. Then I use that class and navigate to the corresponding child item I want to control.
Something similar can be used for the items in the menu.
The top bar has changed since then, this works for me
div[data-testid='tab-nav-data'],
div[data-testid='tab-nav-analysis'],
div[data-testid='tab-nav-story'] {
display: none! important;
}