Plugin Directory

Changeset 414457


Ignore:
Timestamp:
07/24/2011 11:17:33 AM (15 years ago)
Author:
the1path
Message:


Location:
thepath-tabbed-widget/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • thepath-tabbed-widget/trunk/readme.txt

    r410724 r414457  
    44Plugin Name: ThePath Tabbed Widget
    55Plugin URI: http://www.thepathwebdesign.com/articles/thepath-tabbed-widget-plugin/205/
    6 Tags: wp, tabbed widget, featured, popular, recent
     6Tags: wp, tabbed widget, featured, popular, recent, jquery ui, tabs, tabbed content, wordpress
    77Author URI: http://www.thepathwebdesign.com/
    88Author: The Path Web Design
    99Requires at least: 2.8
    1010Tested up to: 3.2.1
    11 Stable tag: 1.0
    12 Version: 1.0
     11Stable tag: 1.1
     12Version: 1.1
    1313
    1414== Description ==
     
    1919
    2020== Upgrade Notice ==
    21 No Upgrades planned, it does what it needs to do on WP 3.2.1 and younger. If it ever breaks I'll fix it.
     21I will be upgrading this plugin when I need to or if it ever breaks, I'll fix it.
    2222
    2323== Screenshots ==
     24![ThePath Tabbed Widget](http://www.thepathwebdesign.com/wp-content/uploads/2011/07/tabbed-widget.jpg)
    2425
    2526== Changelog ==
     271.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.
    2628
    2729== Frequently Asked Questions ==
  • thepath-tabbed-widget/trunk/thepath-tabbed-widget.php

    r410724 r414457  
    22/**
    33 * @package ThePath_Tabbed_Widget
    4  * @version 1.0
     4 * @version 1.1
    55 */
    66    /*
    77    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.
    1010    Author: ThePath
    11     Version: 1.0
     11    Version: 1.1
    1212    Author URI: http://www.thepathwebdesign.com
    1313    */ 
     
    6161        wp_register_script('thepathjs', WP_PLUGIN_URL . '/thepath-tabbed-widget/thepath.js');
    6262        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');
    6464        wp_enqueue_script('jquery-ui');
    6565        wp_register_style('thepathcss', WP_PLUGIN_URL . '/thepath-tabbed-widget/thepath.css');
  • thepath-tabbed-widget/trunk/thepath.css

    r410724 r414457  
    11/*
    22    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/
    44    Author: ThePath
    55    Author URI: http://www.thepathwebdesign.com
    6     */ 
     6    */
     7   
     8/* Wrapper */
    79#thepathtab {
    8     padding: 0px;
     10    padding: 0;
    911    margin: 10px 0 0;
    1012    height: auto;
     13    width: 100%;
    1114}
    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 */
    4950#thepathtab .tabdiv {
    5051    background: #fff;
     
    5354    width:100%;
    5455}
    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        }
    8478.ui-tabs .ui-tabs-panel
    8579{
  • thepath-tabbed-widget/trunk/thepath.js

    r410724 r414457  
    22{
    33    jQuery("#thepathtab").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
     4
    45});
Note: See TracChangeset for help on using the changeset viewer.