In my current project I would like to have the side menu open over (above) the content.
Ideally the side menu would be transparent and act as a kind of overlay over the main content.
Is this somehow possible with the given directive?
Looking in the directive code it adds a translate x, you want it to be 0.
To have the menu visible the z-index must be increased:
.menu.menu-left {
z-index: 5 !important;
}
Though I don’t think you’ll want to alter Ionic’s core code. You could create your own directive with copying the sideMenuContent directive and alter as pleased.
That CSS move the menu to the front without animations, the things is, how you remplace that directive for new one, without change the core code of ionic? I don’t find any handler for that…