Changeset 414457
- Timestamp:
- 07/24/2011 11:17:33 AM (15 years ago)
- Location:
- thepath-tabbed-widget/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
thepath-tabbed-widget.php (modified) (2 diffs)
-
thepath.css (modified) (2 diffs)
-
thepath.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
thepath-tabbed-widget/trunk/readme.txt
r410724 r414457 4 4 Plugin Name: ThePath Tabbed Widget 5 5 Plugin URI: http://www.thepathwebdesign.com/articles/thepath-tabbed-widget-plugin/205/ 6 Tags: wp, tabbed widget, featured, popular, recent 6 Tags: wp, tabbed widget, featured, popular, recent, jquery ui, tabs, tabbed content, wordpress 7 7 Author URI: http://www.thepathwebdesign.com/ 8 8 Author: The Path Web Design 9 9 Requires at least: 2.8 10 10 Tested up to: 3.2.1 11 Stable tag: 1. 012 Version: 1. 011 Stable tag: 1.1 12 Version: 1.1 13 13 14 14 == Description == … … 19 19 20 20 == Upgrade Notice == 21 No Upgrades planned, it does what it needs to do on WP 3.2.1 and younger. If it ever breaksI'll fix it.21 I will be upgrading this plugin when I need to or if it ever breaks, I'll fix it. 22 22 23 23 == Screenshots == 24  24 25 25 26 == Changelog == 27 1.1 - Fixed some dodgy CSS and added some CSS3. Added latest stable version of Jquery UI. Widget now fits all 3 tabs in the Twenty Eleven theme from WP. 26 28 27 29 == Frequently Asked Questions == -
thepath-tabbed-widget/trunk/thepath-tabbed-widget.php
r410724 r414457 2 2 /** 3 3 * @package ThePath_Tabbed_Widget 4 * @version 1. 04 * @version 1.1 5 5 */ 6 6 /* 7 7 Plugin Name: ThePath Tabbed Widget 8 Plugin URI: http://www.thepathwebdesign.com 9 Description: Plugin for displaying Recent Posts, Popular Posts and Featured Posts. Requires WordPress.com Popular Posts and Yet Another Featured Posts Plugin to display the Popular and Featured posts respectively.8 Plugin URI: http://www.thepathwebdesign.com/articles/thepath-tabbed-widget-plugin/205/ 9 Description: Plugin for displaying Recent Posts, Popular Posts and Featured Posts. This plugin is great if you have limited space in your sidebar (or widget area). Requires WordPress.com Popular Posts and Yet Another Featured Posts Plugin to display the Popular and Featured posts respectively. 10 10 Author: ThePath 11 Version: 1. 011 Version: 1.1 12 12 Author URI: http://www.thepathwebdesign.com 13 13 */ … … 61 61 wp_register_script('thepathjs', WP_PLUGIN_URL . '/thepath-tabbed-widget/thepath.js'); 62 62 wp_enqueue_script('thepathjs'); 63 wp_register_script('jquery-ui', WP_PLUGIN_URL . '/thepath-tabbed-widget/jquery-ui -1.8.6.custom.min.js');63 wp_register_script('jquery-ui', WP_PLUGIN_URL . '/thepath-tabbed-widget/jquery-ui.min-1.8.14'); 64 64 wp_enqueue_script('jquery-ui'); 65 65 wp_register_style('thepathcss', WP_PLUGIN_URL . '/thepath-tabbed-widget/thepath.css'); -
thepath-tabbed-widget/trunk/thepath.css
r410724 r414457 1 1 /* 2 2 Plugin Name: ThePath Tabbed Widget 3 Plugin URI: http://www.thepathwebdesign.com 3 Plugin URI: http://www.thepathwebdesign.com/articles/thepath-tabbed-widget-plugin/205/ 4 4 Author: ThePath 5 5 Author URI: http://www.thepathwebdesign.com 6 */ 6 */ 7 8 /* Wrapper */ 7 9 #thepathtab { 8 padding: 0 px;10 padding: 0; 9 11 margin: 10px 0 0; 10 12 height: auto; 13 width: 100%; 11 14 } 12 #thepathtab .tabnav {height:25px; list-style:none;} 13 #thepathtab .tabnav li { 14 display: block; 15 float:left; 16 list-style:none; 17 padding:0; 18 margin:0; 19 line-height:25px; 20 } 21 #thepathtab .tabnav li a { 22 background: #EEEEEE; 23 border-left: 1px #CCCCCC solid; 24 border-right: 1px #CCCCCC solid; 25 border-top: 1px #CCCCCC solid; 26 text-decoration: none; 27 font-size: 15px; 28 font-weight: normal; 29 color: #333333; 30 letter-spacing: -1px; 31 line-height:25px; 32 font-weight: normal; 33 padding: 5px 15px; 34 margin:0; 35 } 36 #thepathtab .tabnav li a.active, #thepathtab .tabnav li a.over, #thepathtab .tabnav li.ui-tabs-selected a, #thepathtab .tabnav li a.ui-tabs-selected { 37 background: #BBBBBB; 38 color: #333333; 39 text-decoration: none; 40 border-left: 1px #CCCCCC solid; 41 border-right: 1px #CCCCCC solid; 42 border-top: 1px #CCCCCC solid; 43 } 44 #thepathtab .tabnav li a:hover { 45 background: #EEEEEE; 46 color: #0099FF; 47 text-decoration: none; 48 } 15 /* Tabs */ 16 #thepathtab ul.tabnav { height:25px; list-style:none; padding:0; margin:0; overflow:hidden; } 17 #thepathtab ul.tabnav li { display: block; float:left; line-height:25px; } 18 #thepathtab ul.tabnav li a { 19 background: #EEE; 20 border-left: 1px #CCC solid; 21 border-right: 1px #CCC solid; 22 border-top: 1px #CCC solid; 23 -moz-border-radius: 0 5px 0 0; 24 -moz-border-radius-topright: 5px; 25 -webkit-border-top-right-radius: 5px; 26 border-radius: 0 5px 0 0; 27 text-decoration: none; 28 font-size: 14px; 29 font-weight: normal; 30 color: #333333; 31 letter-spacing: -1px; 32 line-height:25px; 33 padding: 0 9px; 34 margin:0; 35 display:block; 36 } 37 #thepathtab ul.tabnav li a:hover { 38 color: #0099FF; 39 text-decoration: none; 40 } 41 #thepathtab ul.tabnav li a.active, #thepathtab ul.tabnav li a.over, #thepathtab ul.tabnav li.ui-tabs-selected a, #thepathtab ul.tabnav li a.ui-tabs-selected { 42 background: #BCBCBB; 43 color: #333333; 44 text-decoration: none; 45 border-left: 1px #CCCCCC solid; 46 border-right: 1px #CCCCCC solid; 47 border-top: 1px #CCCCCC solid; 48 } 49 /* Tab content */ 49 50 #thepathtab .tabdiv { 50 51 background: #fff; … … 53 54 width:100%; 54 55 } 55 #thepathtab .tabdiv ul{ 56 padding:0; 57 margin:0; 58 list-style:none; 59 } 60 #thepathtab .tabdiv ul li{ 61 padding:0; 62 margin:0; 63 list-style:none; 64 } 65 #thepathtab .tabdiv ul li a { 66 font-size: 9pt; 67 color:#333333; 68 display: block; 69 border-top: dotted #BBBBBB 1px; 70 padding: 0.7em; 71 } 72 #thepathtab .tabdiv ul li a:hover { 73 color: #0099FF; 74 text-decoration: none; 75 background-color: #EEEEEE; 76 } 77 #thepathtab .tabdiv a { 78 font-size: 9pt; 79 color:#333333; 80 display: block; 81 border-top: dotted #BBBBBB 1px; 82 padding: 0.7em; 83 } 56 #thepathtab .tabdiv ul{ 57 padding:0; 58 margin:0; 59 list-style:none; 60 } 61 #thepathtab .tabdiv ul li{ 62 padding:0; 63 margin:0; 64 list-style:none; 65 } 66 #thepathtab .tabdiv ul li a { 67 font-size: 9pt; 68 color:#333333; 69 display: block; 70 border-top: dotted #BBBBBB 1px; 71 padding: 0.7em; 72 } 73 #thepathtab .tabdiv ul li a:hover { 74 color: #0099FF; 75 text-decoration: none; 76 background-color: #EEEEEE; 77 } 84 78 .ui-tabs .ui-tabs-panel 85 79 { -
thepath-tabbed-widget/trunk/thepath.js
r410724 r414457 2 2 { 3 3 jQuery("#thepathtab").tabs({ fx: { height: 'toggle', opacity: 'toggle' } }); 4 4 5 });
Note: See TracChangeset
for help on using the changeset viewer.