Version Description
- Fixed: Template tag hotfix. Fixes displaying vertical instead of horizontal.
Download this release
Release Info
Developer | mattsay |
Plugin | Dropdown Menu Widget |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7 to 1.7.1
- readme.txt +4 -1
- shailan.DropDownMenu.php +6 -6
- themes/aqua.css +1 -0
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://shailan.com/donate
|
|
4 |
Tags: css, dropdown, menu, widget, pages, categories, multi, jquery, navigation, category list, themes, custom-styles, options-page, animations, effects
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.1
|
7 |
-
Stable tag: 1.7
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of Pages, Categories or Custom navigation menus of your blog.
|
10 |
|
@@ -47,6 +47,9 @@ You can submit errors and bugs using the [online form](http://shailan.com/contac
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.7 =
|
51 |
* Added: brand new options page.
|
52 |
* Added: Web2.0 Theme.
|
4 |
Tags: css, dropdown, menu, widget, pages, categories, multi, jquery, navigation, category list, themes, custom-styles, options-page, animations, effects
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.1
|
7 |
+
Stable tag: 1.7.1
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of Pages, Categories or Custom navigation menus of your blog.
|
10 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.7.1 =
|
51 |
+
* Fixed: Template tag hotfix. Fixes displaying vertical instead of horizontal.
|
52 |
+
|
53 |
= 1.7 =
|
54 |
* Added: brand new options page.
|
55 |
* Added: Web2.0 Theme.
|
shailan.DropDownMenu.php
CHANGED
@@ -4,13 +4,13 @@ Plugin Name: Dropdown Menu Widget
|
|
4 |
Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
|
5 |
Description: A multi widget to generate drop-down menus from your pages, categories & navigation menus. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
|
6 |
Tags: dropdown, menu, css, css-dropdown, navigation, widget, dropdown-menu, customization, theme, jquery, template, multi-color, theme
|
7 |
-
Version: 1.7
|
8 |
Author: Matt Say
|
9 |
Author URI: http://shailan.com
|
10 |
Text Domain: shailan-dropdown-menu
|
11 |
*/
|
12 |
|
13 |
-
define('VERSION', '1.7');
|
14 |
|
15 |
class shailan_DropdownWidget extends WP_Widget {
|
16 |
|
@@ -773,10 +773,10 @@ function shailan_dropdown_menu( $args = array() ){
|
|
773 |
$type = get_dropdown_setting('shailan_dm_type');
|
774 |
$exclude = get_dropdown_setting('shailan_dm_exclude');
|
775 |
$inline_style = get_dropdown_setting('shailan_dm_style');
|
776 |
-
$login = (bool) get_dropdown_setting('shailan_dm_login');
|
777 |
-
$admin = (bool) get_dropdown_setting('shailan_dm_admin');
|
778 |
-
$vertical = (bool) get_dropdown_setting('shailan_dm_vertical');
|
779 |
-
$home = (bool) get_dropdown_setting('shailan_dm_home');
|
780 |
$align = get_dropdown_setting('shailan_dm_align');
|
781 |
$width = get_dropdown_setting('shailan_dm_width');
|
782 |
|
4 |
Plugin URI: http://shailan.com/wordpress/plugins/dropdown-menu
|
5 |
Description: A multi widget to generate drop-down menus from your pages, categories & navigation menus. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
|
6 |
Tags: dropdown, menu, css, css-dropdown, navigation, widget, dropdown-menu, customization, theme, jquery, template, multi-color, theme
|
7 |
+
Version: 1.7.1
|
8 |
Author: Matt Say
|
9 |
Author URI: http://shailan.com
|
10 |
Text Domain: shailan-dropdown-menu
|
11 |
*/
|
12 |
|
13 |
+
define('VERSION', '1.7.1');
|
14 |
|
15 |
class shailan_DropdownWidget extends WP_Widget {
|
16 |
|
773 |
$type = get_dropdown_setting('shailan_dm_type');
|
774 |
$exclude = get_dropdown_setting('shailan_dm_exclude');
|
775 |
$inline_style = get_dropdown_setting('shailan_dm_style');
|
776 |
+
$login = (bool) ( 'on' == get_dropdown_setting('shailan_dm_login') );
|
777 |
+
$admin = (bool) ( 'on' == get_dropdown_setting('shailan_dm_admin') );
|
778 |
+
$vertical = (bool) ( 'on' == get_dropdown_setting('shailan_dm_vertical') );
|
779 |
+
$home = (bool) ( 'on' == get_dropdown_setting('shailan_dm_home') );
|
780 |
$align = get_dropdown_setting('shailan_dm_align');
|
781 |
$width = get_dropdown_setting('shailan_dm_width');
|
782 |
|
themes/aqua.css
CHANGED
@@ -17,6 +17,7 @@ ul.dropdown-align-right li+li{ border-width: 0px 0px 0px 1px; }
|
|
17 |
ul.dropdown li.hover, ul.dropdown li:hover { z-index: 98; cursor: default; background:transparent url(images/trans-white.png); color: #000; }
|
18 |
|
19 |
/** Link colors */
|
|
|
20 |
ul.dropdown a:link,
|
21 |
ul.dropdown a:visited { color: #333; font-weight:bold; text-decoration: none; display:block; }
|
22 |
ul.dropdown a:hover { color: #000; font-weight:bold; }
|
17 |
ul.dropdown li.hover, ul.dropdown li:hover { z-index: 98; cursor: default; background:transparent url(images/trans-white.png); color: #000; }
|
18 |
|
19 |
/** Link colors */
|
20 |
+
ul.dropdown a,
|
21 |
ul.dropdown a:link,
|
22 |
ul.dropdown a:visited { color: #333; font-weight:bold; text-decoration: none; display:block; }
|
23 |
ul.dropdown a:hover { color: #000; font-weight:bold; }
|