• Fabrik4.5.3 for J!5.3.0 and J!4.2+is out

    You must update from Fabrik4.5.1 if you are running Joomla!5.3.0

    See Announcements

Fixed Fabrik 4.5 new css hides Cassiopeia menu

EricWebsite

Member
Hi,

in /media/com_fabrik/css/fabrik.css there are some new lines starting at line 7:
Code:
.collapse:not(.show) {
    display: none !important;
}
The default Cassiopeia menu module, set to "Collapsible dropdown" has a class "collapse" and so it is hidden on pages where a Fabrik list, form or module is present:
Schermafbeelding-2024-12-09 160704.jpg

I suggest to make this more Fabrik specific, like the other classes in the file: .fabrikHide, .fabrikShow,. etc
 
Change in:
Code:
body.admin.com_fabrik .collapse:not(.show) {
    display: none !important;
}

Temporarily change the code as above. I am aware of this, and I am testing another solution. (This happened because now the Fabrik admin menu is accessible even from smartphones.)
Sorry
 
Hi,

Same problem here, elmarra please, where do we have ti introduce that code?

I've tried in /media/com_fabrik/css/fabrik.css and does not work.

Thanks
 
Remove this from fabrik.css:

Code:
.collapse:not(.show) {
    display: none !important;
}

And replace it with this:

Code:
body.admin.com_fabrik .collapse:not(.show) {
    display: none !important;
}

After doing that, remember to clear the cache.
 
Remove this from fabrik.css:

Code:
.collapse:not(.show) {
    display: none !important;
}

And replace it with this:

Code:
body.admin.com_fabrik .collapse:not(.show) {
    display: none !important;
}

After doing that, remember to clear the cache.
@elmarra Thanks for this. Is it going to be included in the next Fabrik version?
 
@elmarra Thanks for this. Is it going to be included in the next Fabrik version?
Yes, it will be included.I apologize for this.It was to have the Fabrik back-end menu, also usable by smaller devices.so smartphones and tablets.That class already solves the problem. Before making it final, I would like to look for another method to avoid any kind of conflict like this.
 
Yes, as I was saying, I have isolated the problem. In the next release of Fabrik, it will be automatically fixed. For now, you just need to replace that CSS as mentioned above. Thank you all.
 

Members online

No members online now.
Back
Top