Log in

View Full Version : Resolved [solved] jQuery Mobile Panel box-shadow



CChawps
11-16-2013, 09:56 PM
I'm currently working on a project to create an application, it has two panels on each side which is toggled by clicking the links in the header or by swiping on the page. If you try to open the panel in the left side, you will see that the box-shadow overlays the unordered list, but in the right panel I have no idea to which class I should overwrite in the jQuery Mobile stylesheet. For the left panel it goes as follows:


.ui-panel-display-reveal {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

.ui-panel-content-fixed-toolbar-position-left.ui-panel-content-fixed-toolbar-open,
.ui-panel-content-wrap-position-left.ui-panel-content-wrap-open {
-webkit-box-shadow: -5px 0 5px rgba(0,0,0,.10);
-moz-box-shadow: -5px 0 5px rgba(0,0,0,.10);
box-shadow: -5px 0 5px rgba(0,0,0,.10);
}

I tried to exchange "left" in the class naming with "right", but it had no effect. I've got the prototype here: group28.netne.net (http://group28.netne.net/).