Version Description
- Fix: Self closing div tag in toggle blocks
- Fix: Mobile Menu Background / Conflict with MaxButtons
Download this release
Release Info
Developer | megamenu |
Plugin | Max Mega Menu |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.2.1
- classes/toggle-blocks.class.php +1 -1
- css/admin/settings.css +1 -3
- css/megamenu.scss +1 -1
- megamenu.php +2 -2
- readme.txt +6 -1
classes/toggle-blocks.class.php
CHANGED
@@ -142,7 +142,7 @@ class Mega_Menu_Toggle_Blocks {
|
|
142 |
$blocks_html .= " " . $attribute . "='" . esc_attr( $val ) . "'";
|
143 |
}
|
144 |
|
145 |
-
$blocks_html .= "
|
146 |
$blocks_html .= apply_filters("megamenu_output_public_toggle_block_{$block['type']}", "", $block);
|
147 |
$blocks_html .= "</div>";
|
148 |
}
|
142 |
$blocks_html .= " " . $attribute . "='" . esc_attr( $val ) . "'";
|
143 |
}
|
144 |
|
145 |
+
$blocks_html .= ">";
|
146 |
$blocks_html .= apply_filters("megamenu_output_public_toggle_block_{$block['type']}", "", $block);
|
147 |
$blocks_html .= "</div>";
|
148 |
}
|
css/admin/settings.css
CHANGED
@@ -73,9 +73,7 @@
|
|
73 |
.megamenu_outer_wrap .megamenu_right h3.first {
|
74 |
margin-top: 0;
|
75 |
}
|
76 |
-
|
77 |
-
.toplevel_page_maxmegamenu .menu_settings h3,
|
78 |
-
.mega-menu_page_maxmegamenu_menu_locations .menu_settings h3 {
|
79 |
border-bottom: 1px solid #CAC4C4;
|
80 |
padding: 0 0 10px 0;
|
81 |
}
|
73 |
.megamenu_outer_wrap .megamenu_right h3.first {
|
74 |
margin-top: 0;
|
75 |
}
|
76 |
+
body[class*='mega-menu_page_maxmegamenu_'] .menu_settings h3 {
|
|
|
|
|
77 |
border-bottom: 1px solid #CAC4C4;
|
78 |
padding: 0 0 10px 0;
|
79 |
}
|
css/megamenu.scss
CHANGED
@@ -66,7 +66,7 @@
|
|
66 |
text-align: $menu_item_align;
|
67 |
padding: $container_padding_top $container_padding_right $container_padding_bottom $container_padding_left;
|
68 |
|
69 |
-
@if $container_background_from != $mobile_background_from
|
70 |
@include mobile {
|
71 |
@include background($mobile_background_from, $mobile_background_to);
|
72 |
}
|
66 |
text-align: $menu_item_align;
|
67 |
padding: $container_padding_top $container_padding_right $container_padding_bottom $container_padding_left;
|
68 |
|
69 |
+
@if $container_background_from != $mobile_background_from {
|
70 |
@include mobile {
|
71 |
@include background($mobile_background_from, $mobile_background_to);
|
72 |
}
|
megamenu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.maxmegamenu.com
|
6 |
* Description: Mega Menu for WordPress.
|
7 |
-
* Version: 2.2
|
8 |
* Author: Tom Hemsley
|
9 |
* Author URI: https://www.maxmegamenu.com
|
10 |
* License: GPL-2.0+
|
@@ -26,7 +26,7 @@ final class Mega_Menu {
|
|
26 |
/**
|
27 |
* @var string
|
28 |
*/
|
29 |
-
public $version = '2.2';
|
30 |
|
31 |
|
32 |
/**
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.maxmegamenu.com
|
6 |
* Description: Mega Menu for WordPress.
|
7 |
+
* Version: 2.2.1
|
8 |
* Author: Tom Hemsley
|
9 |
* Author URI: https://www.maxmegamenu.com
|
10 |
* License: GPL-2.0+
|
26 |
/**
|
27 |
* @var string
|
28 |
*/
|
29 |
+
public $version = '2.2.1';
|
30 |
|
31 |
|
32 |
/**
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: megamenu
|
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5
|
6 |
-
Stable tag: 2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -92,6 +92,11 @@ See https://www.maxmegamenu.com for more screenshots
|
|
92 |
|
93 |
== Changelog ==
|
94 |
|
|
|
|
|
|
|
|
|
|
|
95 |
= 2.2 =
|
96 |
|
97 |
* New feature: CSS3 dropdown animations
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5
|
6 |
+
Stable tag: 2.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
92 |
|
93 |
== Changelog ==
|
94 |
|
95 |
+
= 2.2.1 =
|
96 |
+
|
97 |
+
* Fix: Self closing div tag in toggle blocks
|
98 |
+
* Fix: Mobile Menu Background / Conflict with MaxButtons
|
99 |
+
|
100 |
= 2.2 =
|
101 |
|
102 |
* New feature: CSS3 dropdown animations
|