Version Description
- Added "Blue gradient" theme.
Download this release
Release Info
Developer | mattsay |
Plugin | Dropdown Menu Widget |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- readme.txt +4 -1
- shailan.DropDownMenu.php +3 -2
- themes/images/blue_menu_bg.gif +0 -0
- themes/images/blue_menu_sep.gif +0 -0
- themes/simple-blue.css +57 -0
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://shailan.com/donate
|
|
4 |
Tags: css, dropdown, menu, widget, pages, categories
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.9
|
7 |
-
Stable tag: 1.3.
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories 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.3.0 =
|
51 |
* Fixed "Home" link bug for the template tag. Thanks to Jeff.
|
52 |
|
4 |
Tags: css, dropdown, menu, widget, pages, categories
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.9
|
7 |
+
Stable tag: 1.3.1
|
8 |
|
9 |
This widget adds a beatiful vertical/horizontal CSS only dropdown menu of pages OR categories of your blog.
|
10 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 1.3.1 =
|
51 |
+
* Added "Blue gradient" theme.
|
52 |
+
|
53 |
= 1.3.0 =
|
54 |
* Fixed "Home" link bug for the template tag. Thanks to Jeff.
|
55 |
|
shailan.DropDownMenu.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Shailan 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 and categories. This widget is best used in <a href="http://shailan.com">Shailan.com</a> themes. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
|
6 |
-
Version: 1.3.
|
7 |
Author: Matt Say
|
8 |
Author URI: http://shailan.com
|
9 |
Text Domain: shailan-dropdown-menu
|
10 |
*/
|
11 |
|
12 |
-
define('SHAILAN_DM_VERSION','1.3.
|
13 |
define('SHAILAN_DM_TITLE', 'Dropdown Menu');
|
14 |
define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
|
15 |
|
@@ -95,6 +95,7 @@ class shailan_DropdownWidget extends WP_Widget {
|
|
95 |
'Wordpress Default'=>'wpdefault',
|
96 |
'Grayscale'=>'grayscale',
|
97 |
'Aqua'=>'aqua',
|
|
|
98 |
'Tabs Blue'=> 'tabs-blue',
|
99 |
'Shiny Black'=> 'shiny-black',
|
100 |
'Flickr theme'=>'flickr.com/default.ultimate',
|
3 |
Plugin Name: Shailan 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 and categories. This widget is best used in <a href="http://shailan.com">Shailan.com</a> themes. You can find more widgets, plugins and themes at <a href="http://shailan.com">shailan.com</a>.
|
6 |
+
Version: 1.3.1
|
7 |
Author: Matt Say
|
8 |
Author URI: http://shailan.com
|
9 |
Text Domain: shailan-dropdown-menu
|
10 |
*/
|
11 |
|
12 |
+
define('SHAILAN_DM_VERSION','1.3.1');
|
13 |
define('SHAILAN_DM_TITLE', 'Dropdown Menu');
|
14 |
define('SHAILAN_DM_FOLDER', 'dropdown-menu-widget');
|
15 |
|
95 |
'Wordpress Default'=>'wpdefault',
|
96 |
'Grayscale'=>'grayscale',
|
97 |
'Aqua'=>'aqua',
|
98 |
+
'Blue gradient'=>'simple-blue',
|
99 |
'Tabs Blue'=> 'tabs-blue',
|
100 |
'Shiny Black'=> 'shiny-black',
|
101 |
'Flickr theme'=>'flickr.com/default.ultimate',
|
themes/images/blue_menu_bg.gif
ADDED
Binary file
|
themes/images/blue_menu_sep.gif
ADDED
Binary file
|
themes/simple-blue.css
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* --- Dropdown background --- */
|
2 |
+
.shailan-dropdown-menu{
|
3 |
+
background:#006 url(images/blue_menu_bg.gif) repeat-x;
|
4 |
+
width:1000px; height:47px;
|
5 |
+
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
|
6 |
+
font-size:14px;}
|
7 |
+
ul.dropdown{padding-left:20px;}
|
8 |
+
/* --- Dropdown basics ---*/
|
9 |
+
ul.dropdown a {
|
10 |
+
display:block;
|
11 |
+
vertical-align:middle;
|
12 |
+
text-align:center;
|
13 |
+
padding:12px 10px 10px 12px;
|
14 |
+
color: #000;
|
15 |
+
text-decoration:none;
|
16 |
+
text-transform:uppercase;}
|
17 |
+
/*--- Top level ---*/
|
18 |
+
ul.dropdown li a{
|
19 |
+
height:100%;
|
20 |
+
color:#fff;
|
21 |
+
}
|
22 |
+
ul.dropdown li+li a{
|
23 |
+
background:url(images/blue_menu_sep.gif) left center no-repeat;
|
24 |
+
}
|
25 |
+
ul.dropdown li a:hover{
|
26 |
+
text-decoration:underline;
|
27 |
+
color:#eee;
|
28 |
+
}
|
29 |
+
/*--- Sub level ---*/
|
30 |
+
ul.dropdown ul {
|
31 |
+
margin:0px;
|
32 |
+
list-style:none;
|
33 |
+
padding:0px;
|
34 |
+
background:#002055;
|
35 |
+
border:1px solid #000047;
|
36 |
+
text-align:left;
|
37 |
+
}
|
38 |
+
|
39 |
+
ul.dropdown ul li a{
|
40 |
+
color:#fff;
|
41 |
+
width:auto;
|
42 |
+
min-width:100px;
|
43 |
+
padding:2px 5px 3px 5px;
|
44 |
+
margin:0px;
|
45 |
+
height:auto;
|
46 |
+
text-align:left;
|
47 |
+
background:transparent;
|
48 |
+
}
|
49 |
+
|
50 |
+
ul.dropdown ul li a:hover{
|
51 |
+
position:relative;
|
52 |
+
background-color:#002f6a;
|
53 |
+
border-style:solid;
|
54 |
+
color: #fff;
|
55 |
+
text-decoration:none;
|
56 |
+
}
|
57 |
+
ul.dropdown li.current_page_item>a, ul.dropdown li.current-cat>a { font-weight:bold; }
|