Plugin Directory

Changeset 577351


Ignore:
Timestamp:
07/25/2012 08:36:41 PM (14 years ago)
Author:
GhostToast
Message:

improved styles, new screenshots

Location:
fancytabs/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • fancytabs/trunk/README

    r577253 r577351  
    4242
    4343== Changelog ==
    44 = 1.01 =
     44= 1.0.2 =
     45* Improve appearance (CSS)
     46
     47= 1.0.1 =
    4548* Added screenshots
    4649
     
    4952
    5053== Upgrade Notice ==
    51 FIrst version
     54Initial version
     55
     56== Coming Soon ==
     57* Options page for setting colors/styles
  • fancytabs/trunk/fancytabs.css

    r577225 r577351  
    44#fancy-tabs {
    55    display: block;
    6     height:49px;
    7     border-bottom: #CCC solid 2px;
     6    line-height: 22px;
     7    background: #D8D8D8;
     8    padding: 5px 10px 3px 10px;
     9    border-bottom: #999 1px solid; 
     10    border-top-right-radius: 8px;
     11    border-top-left-radius: 8px;
     12    -moz-border-radius-topleft: 8px;
     13    -moz-border-radius-topright: 8px;
    814}
    915#fancy-tabs ul {
    10     text-align:center;
    11     list-style:none;
     16    text-align: left;
     17    list-style: none;
    1218    padding: 0;
    1319    margin: 0;
     
    1622    padding: 0;
    1723    margin: 0;
    18     display:inline-block;
     24    display: inline-block;
    1925}
    2026#fancy-tabs ul li a {
    21     display:block;
     27    font-family:Tahoma, Geneva, sans-serif;
     28    display: block;
    2229    cursor: pointer;
    23     text-decoration:none;
     30    text-decoration: none;
    2431    padding: 5px 25px;
    25     margin:15px 5px;
    26     color:#222;
    27     font-size:14px;
    28     text-transform:uppercase;   
    29     background:#DDD;
    30     border-top-right-radius: 8px;
    31     border-top-left-radius: 8px;
    32     -moz-border-radius-topleft: 8px;
    33     -moz-border-radius-topright: 8px;
     32    margin: 5px 2px 0 2px;
     33    color: #000;
     34    font-size: 14px;
     35    background: #DDD;
     36    border:#999 1px solid;
     37    border-radius: 8px;
     38    border-radius: 8px;
     39    -moz-border-radius: 8px;
     40    -moz-border-radius: 8px;
    3441}
    35 #fancy-tabs ul li a:hover {
     42#fancy-tabs ul li a:hover { 
    3643    color: #FFF;
    37     background:#F1AA3F !important;
     44    background: #333 !important;
    3845}
    39 
  • fancytabs/trunk/fancytabs.php

    r577225 r577351  
    3131    if( is_array( $GLOBALS['tabs'] ) ){
    3232        $int = 1;
    33         $color_on = '#F1AA3F';
     33        $color_on = '#AAA';
    3434        $color_off = '#DDD';
    3535        foreach( $GLOBALS['tabs'] as $tab ){
  • fancytabs/trunk/readme.txt

    r577253 r577351  
    4242
    4343== Changelog ==
    44 = 1.01 =
     44= 1.0.2 =
     45* Improve appearance (CSS)
     46
     47= 1.0.1 =
    4548* Added screenshots
    4649
     
    4952
    5053== Upgrade Notice ==
    51 FIrst version
     54Initial version
     55
     56== Coming Soon ==
     57* Options page for setting colors/styles
Note: See TracChangeset for help on using the changeset viewer.