Lightning Advanced Unit - Version 1.3.5

Version Description

Download this release

Release Info

Developer kurudrive
Plugin Icon wp plugin Lightning Advanced Unit
Version 1.3.5
Comparing to
See all releases

Code changes from version 1.3.4 to 1.3.5

inc/navigation/_scss/navigation.scss CHANGED
@@ -17,9 +17,7 @@ body { overflow-x:hidden; }
17
  @media (max-width: 767px){
18
  .menuBtn { position: fixed;top:inherit; }
19
  .navSection { overflow:scroll; display: none;position: fixed;height:100%;
20
- .searchform { margin:10px;overflow:hidden;padding: 0 3em;
21
- input#s { width:65%; }
22
- input[type=submit] { width:30%; }
23
  }
24
  &.navSection_open_left .searchform,
25
  &.navSection_open_right .searchform { display: block; }
@@ -29,4 +27,3 @@ body { overflow-x:hidden; }
29
  .navSection_open_right { border-left:$border_primary; }
30
  // .navSection_open_right .searchform { padding-right:4em }
31
  } // @media (max-width: 767px){
32
-
17
  @media (max-width: 767px){
18
  .menuBtn { position: fixed;top:inherit; }
19
  .navSection { overflow:scroll; display: none;position: fixed;height:100%;
20
+ .searchform { margin:10px;overflow:hidden;padding: 0 3em 0;
 
 
21
  }
22
  &.navSection_open_left .searchform,
23
  &.navSection_open_right .searchform { display: block; }
27
  .navSection_open_right { border-left:$border_primary; }
28
  // .navSection_open_right .searchform { padding-right:4em }
29
  } // @media (max-width: 767px){
 
inc/navigation/config.rb CHANGED
@@ -6,4 +6,5 @@ javascripts_dir = "js"
6
  # output_style = :compact
7
  output_style = :compressed
8
  line_comments = false
 
9
  # sass_options = {:debug_info => false}
6
  # output_style = :compact
7
  output_style = :compressed
8
  line_comments = false
9
+ cache = false
10
  # sass_options = {:debug_info => false}
inc/navigation/css/navigation.css CHANGED
@@ -1 +1 @@
1
- body{overflow-x:hidden}#bodyInner{display:block;overflow:hidden}#wrap{z-index:auto}.navSection .searchform{display:none}@media (max-width: 767px){.menuBtn{position:fixed;top:inherit}.navSection{overflow:scroll;display:none;position:fixed;height:100%}.navSection .searchform{margin:10px;overflow:hidden;padding:0 3em}.navSection .searchform input#s{width:65%}.navSection .searchform input[type=submit]{width:30%}.navSection.navSection_open_left .searchform,.navSection.navSection_open_right .searchform{display:block}.navSection_open_left{border-right:1px solid #e5e5e5}.navSection_open_right{border-left:1px solid #e5e5e5}}
1
+ body{overflow-x:hidden}#bodyInner{display:block;overflow:hidden}#wrap{z-index:auto}.navSection .searchform{display:none}@media (max-width: 767px){.menuBtn{position:fixed;top:inherit}.navSection{overflow:scroll;display:none;position:fixed;height:100%}.navSection .searchform{margin:10px;overflow:hidden;padding:0 3em 0}.navSection.navSection_open_left .searchform,.navSection.navSection_open_right .searchform{display:block}.navSection_open_left{border-right:1px solid #e5e5e5}.navSection_open_right{border-left:1px solid #e5e5e5}}
inc/navigation/navigation.php CHANGED
@@ -15,7 +15,8 @@ function lightning_adv_unit_customize_register_menu_type($wp_customize) {
15
  'side_slide' => __('Side Slide', LIGHTNING_ADVANCED_TEXTDOMAIN),
16
  'vertical_show_hide' => __('Vertical Show Hide (Lightning default)', LIGHTNING_ADVANCED_TEXTDOMAIN),
17
  );
18
- $choices_array = apply_filters( 'ligthning_menu_choices_array_custom', $choices_array );
 
19
  $wp_customize->add_control( 'lightning_theme_options[menu_type]',array(
20
  'label' => __('Menu Type ( Mobile mode )', LIGHTNING_ADVANCED_TEXTDOMAIN),
21
  'section' => 'lightning_design',
15
  'side_slide' => __('Side Slide', LIGHTNING_ADVANCED_TEXTDOMAIN),
16
  'vertical_show_hide' => __('Vertical Show Hide (Lightning default)', LIGHTNING_ADVANCED_TEXTDOMAIN),
17
  );
18
+ $choices_array = apply_filters( 'ligthning_menu_choices_array_custom', $choices_array ); // 2017年3月になったら削除
19
+ $choices_array = apply_filters( 'lightning_menu_choices_array_custom', $choices_array );
20
  $wp_customize->add_control( 'lightning_theme_options[menu_type]',array(
21
  'label' => __('Menu Type ( Mobile mode )', LIGHTNING_ADVANCED_TEXTDOMAIN),
22
  'section' => 'lightning_design',
lightning_advanced_unit.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Lightning Advanced Unit
4
  * Plugin URI: http://lightning.vektor-inc.co.jp/
5
- * Version: 1.3.4
6
  * Author: Vektor,Inc.
7
  * Author URI: http://www.vektor-inc.co.jp
8
  * Description: This is a plug-ins that extend the functionality of the theme "Lightning".
2
  /**
3
  * Plugin Name: Lightning Advanced Unit
4
  * Plugin URI: http://lightning.vektor-inc.co.jp/
5
+ * Version: 1.3.5
6
  * Author: Vektor,Inc.
7
  * Author URI: http://www.vektor-inc.co.jp
8
  * Description: This is a plug-ins that extend the functionality of the theme "Lightning".
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Lightning,
5
  Requires at least: 4.2
6
  Tested up to: 4.6.0
7
- Stable tag: 1.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: Lightning,
5
  Requires at least: 4.2
6
  Tested up to: 4.6.0
7
+ Stable tag: 1.3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10