RM 1.2 Delete the nav tab of the RM in the responsive view too.

rafass

Well-known member
I've deleted with CSS the tab with:
Code:
li.navTab.resources {
    display: none!important;
}
fine in normal view, but in responsive view, it always show me the tab. in the hidden menu:
Screen Shot 2016-02-17 at 3.34.50 PM.webp
I also would like to reduce the width of that menu removing that part in the right. but with CSS has been impossible edit anything of that menu.
I've tried with conditionals:
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth){
#NavigationHiddenMenu.li.navTab.resources {
    display: none!important;
}
}
</xen:if>
but nothing work. any idea? thanks!
 
Still stuck with this. I just want to delete the tab of the resource manager on mobile devices. appreciate if there are some way to do this, editing some file of the addon or something. thanks.
 
Top Bottom