Plugin Directory

Changeset 218127


Ignore:
Timestamp:
03/16/2010 12:51:14 AM (16 years ago)
Author:
nghorta
Message:
 
Location:
sidebartabs/tags/2.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sidebartabs/tags/2.2/sidebarTabs.php

    r217502 r218127  
    130130        $op .= "      </ul>\n";
    131131        $op .= "   </div>\n";
    132         $op .= "   <a class='next'></a>\n";
     132        if ($options['layout'] == 3 || $options['layout'] == 4) {
     133            $op .= "   <a class='next'></a>\n";
     134        }
    133135        $op .= '   <div class="sidebarTabs_divs sidebarTabs_panes sidebarTabs_divs'.$widget_id.'">'."\n";
    134136    } else {
     
    348350        }
    349351        if ($options_script['layout'] == 3 || $options_script['layout'] == 4) {
    350     ?> 
    351         var tabInicial<?php echo $id_w; ?> = jQuery("ul.sidebarTabs<?php echo $id_w; ?> li a:eq(0)").offset().left
    352 <?php
     352        $gss .= '      var tabInicial'.$id_w.' = jQuery("ul.sidebarTabs'.$id_w.' li a:eq(0)").offset().left;';
    353353        $gss .= '      jQuery("ul.sidebarTabs'.$id_w.'").tabs("div.sidebarTabs_divs'.$id_w.' > .tb");';
    354354       
  • sidebartabs/tags/2.2/styleSidebar.php

    r217502 r218127  
    1616    $tam_scrollable = '78%';
    1717 } else {
    18     $tam_scrollable = '90%';
     18    $tam_scrollable = '100%';
    1919 }         
    2020    $unit = '%';
     
    2424    $tam_scrollable = ($opsbt["width_sidebar"] - 42)."px";
    2525 } else {
    26     $tam_scrollable = ($opsbt["width_sidebar"] - 13)."px";
     26    $tam_scrollable = $opsbt["width_sidebar"]."px";
    2727 } 
    2828    $unit = $opsbt['unit'];
     
    205205div.sb_container a.next {
    206206    float: right;
    207     background:url(images/right.png) 0 -18px no-repeat;
     207    background:url(images/right.png) 0 -18px no-repeat !important;
    208208    clear:right;   
    209209}
     
    220220}
    221221div.sb_container a.next.disabled {
    222     background:url(images/right.png) 0 0 no-repeat;
     222    background:url(images/right.png) 0 0 no-repeat !important;
    223223    cursor: default;
    224224}
     
    241241<?php } ?>     
    242242}
    243 div.sb_container a.next {
    244     margin-left: 3px;
    245     background: none !important;
    246 }   
    247243<?php } ?>
    248244
Note: See TracChangeset for help on using the changeset viewer.