From aff399413acfc9ffc38f4144a63f9cb71ab9f307 Mon Sep 17 00:00:00 2001 From: Eugeny Galkovskiy Date: Wed, 19 Oct 2016 18:29:49 +0300 Subject: [PATCH] 123 --- frontend/web/css/style.css | 4 ++++ frontend/web/js/script.js | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css index 0fbddec..a1022e0 100755 --- a/frontend/web/css/style.css +++ b/frontend/web/css/style.css @@ -2121,6 +2121,10 @@ p.right{text-align: right;} @media (max-width: 991px) { .menu .container { padding: 0px; + display: none; + } + .menu .container.showed{ + display: block; } .menu .container ul { padding: 13px 0px; diff --git a/frontend/web/js/script.js b/frontend/web/js/script.js index cfc984f..55cd588 100755 --- a/frontend/web/js/script.js +++ b/frontend/web/js/script.js @@ -114,6 +114,7 @@ $(document).ready( ); $(".hidemenu").click(function(){ $(this).toggleClass("show"); + $(this).parent().findClass(".container").toggleClass("showed"); }); } ); \ No newline at end of file -- libgit2 0.21.4