Skip to content

Commit

Permalink
Merge pull request #120 from vektor-inc/develop
Browse files Browse the repository at this point in the history
3.0.5
  • Loading branch information
kurudrive authored May 8, 2017
2 parents 7c11018 + 93b1e8c commit 388ad0a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion design_skin/origin/_scss/_outer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ ul.gMenu {
.gMenu_description { display:block; overflow:hidden;font-size:10px; line-height: 14px; }

@media (max-width: 991px){
.gMenu_outer { overflow:hidden;display: none; }
.gMenu_outer { overflow:scroll;display: none; height: 20em;}
.gMenu_outer.itemOpen { display: block; }
.gMenu_outer.itemClose { display: none; }
.gMenu_description { display: none; }
Expand Down
2 changes: 1 addition & 1 deletion design_skin/origin/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2761,7 +2761,7 @@ ul.gMenu ul li li li li a { padding-left: 5em; }

.gMenu_description { display: block; overflow: hidden; font-size: 10px; line-height: 14px; }

@media (max-width: 991px) { .gMenu_outer { overflow: hidden; display: none; }
@media (max-width: 991px) { .gMenu_outer { overflow: scroll; display: none; height: 20em; }
.gMenu_outer.itemOpen { display: block; }
.gMenu_outer.itemClose { display: none; }
.gMenu_description { display: none; }
Expand Down
6 changes: 4 additions & 2 deletions js/_master.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@
// jQuery('.menuBtn').each(function(){
jQuery('.menuBtn').click(function(){
if ( !jQuery('.menuBtn').hasClass('menuOpen') ) {
jQuery('body').removeClass('headerMenuClose').addClass('headerMenuOpen');
jQuery('body').removeClass('headerMenuClose').addClass('headerMenuOpen'); // 今後廃止
jQuery('body').removeClass('header-menu-close').addClass('header-menu-open');
jQuery('.menuBtn').removeClass('menuClose').addClass('menuOpen');
jQuery('#gMenu_outer').removeClass('itemClose').addClass('itemOpen');
jQuery('#menuBtn i').removeClass('fa-bars').addClass('fa-times');
} else {
jQuery('body').removeClass('headerMenuOpen');
jQuery('body').removeClass('headerMenuOpen'); // 今後廃止
jQuery('body').removeClass('header-menu-open');
jQuery('.menuBtn').removeClass('menuOpen').addClass('menuClose');
jQuery('#gMenu_outer').removeClass('itemOpen').addClass('itemClose');
jQuery('#menuBtn i').removeClass('fa-times').addClass('fa-bars');
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ http://www.vektor-inc.co.jp/inquiry/

== Changelog ==

v3.0.5
* [ Bug fix ][ Header menu vertical ]

v3.0.4
* [ Bug fix ][ breadcrumb ]

Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://lightning.nagoya
Description: Lightning is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.
Author: Vektor,Inc.
Author URI: http://www.vektor-inc.co.jp
Version:3.0.4
Version:3.0.5
Tags: two-columns, one-column, right-sidebar, custom-colors, custom-menu, editor-style, theme-options
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down

0 comments on commit 388ad0a

Please sign in to comment.