Commit c63d541f8279c96775a6a15044f2874a51c3157c
1 parent
9564dd30
123
Showing
2 changed files
with
7 additions
and
1 deletions
Show diff stats
frontend/web/css/style.css
@@ -2282,11 +2282,14 @@ p.right{text-align: right;} | @@ -2282,11 +2282,14 @@ p.right{text-align: right;} | ||
2282 | width: 100%; | 2282 | width: 100%; |
2283 | } | 2283 | } |
2284 | .dropd_menu{ | 2284 | .dropd_menu{ |
2285 | - display: block; | ||
2286 | position: inherit; | 2285 | position: inherit; |
2287 | width: 100%!important; | 2286 | width: 100%!important; |
2288 | z-index: 30; | 2287 | z-index: 30; |
2289 | padding: 0!important; | 2288 | padding: 0!important; |
2289 | + box-shadow:none; | ||
2290 | + } | ||
2291 | + .dropd_menu.showmob{ | ||
2292 | + display:block; | ||
2290 | } | 2293 | } |
2291 | .inline_dropb, .dropd_menu{ | 2294 | .inline_dropb, .dropd_menu{ |
2292 | padding:0;margin:0; | 2295 | padding:0;margin:0; |
frontend/web/js/script.js
@@ -126,5 +126,8 @@ $(document).ready( | @@ -126,5 +126,8 @@ $(document).ready( | ||
126 | $(this).toggleClass("show"); | 126 | $(this).toggleClass("show"); |
127 | $(this).parent().find(".container").toggleClass("showed"); | 127 | $(this).parent().find(".container").toggleClass("showed"); |
128 | }); | 128 | }); |
129 | + $(".menu a").click(function(){ | ||
130 | + $(this).toggleClass("showmob"); | ||
131 | + }); | ||
129 | } | 132 | } |
130 | ); | 133 | ); |
131 | \ No newline at end of file | 134 | \ No newline at end of file |