Changeset 577351
- Timestamp:
- 07/25/2012 08:36:41 PM (14 years ago)
- Location:
- fancytabs/trunk
- Files:
-
- 7 edited
-
README (modified) (2 diffs)
-
fancytabs.css (modified) (2 diffs)
-
fancytabs.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
screenshot-1.jpg (modified) (previous)
-
screenshot-2.jpg (modified) (previous)
-
screenshot-3.jpg (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
fancytabs/trunk/README
r577253 r577351 42 42 43 43 == Changelog == 44 = 1.01 = 44 = 1.0.2 = 45 * Improve appearance (CSS) 46 47 = 1.0.1 = 45 48 * Added screenshots 46 49 … … 49 52 50 53 == Upgrade Notice == 51 FIrst version 54 Initial version 55 56 == Coming Soon == 57 * Options page for setting colors/styles -
fancytabs/trunk/fancytabs.css
r577225 r577351 4 4 #fancy-tabs { 5 5 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; 8 14 } 9 15 #fancy-tabs ul { 10 text-align: center;11 list-style: none;16 text-align: left; 17 list-style: none; 12 18 padding: 0; 13 19 margin: 0; … … 16 22 padding: 0; 17 23 margin: 0; 18 display: inline-block;24 display: inline-block; 19 25 } 20 26 #fancy-tabs ul li a { 21 display:block; 27 font-family:Tahoma, Geneva, sans-serif; 28 display: block; 22 29 cursor: pointer; 23 text-decoration: none;30 text-decoration: none; 24 31 padding: 5px 25px; 25 margin: 15px 5px;26 color: #222;27 font-size: 14px;28 text-transform:uppercase;29 b ackground:#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; 34 41 } 35 #fancy-tabs ul li a:hover { 42 #fancy-tabs ul li a:hover { 36 43 color: #FFF; 37 background: #F1AA3F!important;44 background: #333 !important; 38 45 } 39 -
fancytabs/trunk/fancytabs.php
r577225 r577351 31 31 if( is_array( $GLOBALS['tabs'] ) ){ 32 32 $int = 1; 33 $color_on = '# F1AA3F';33 $color_on = '#AAA'; 34 34 $color_off = '#DDD'; 35 35 foreach( $GLOBALS['tabs'] as $tab ){ -
fancytabs/trunk/readme.txt
r577253 r577351 42 42 43 43 == Changelog == 44 = 1.01 = 44 = 1.0.2 = 45 * Improve appearance (CSS) 46 47 = 1.0.1 = 45 48 * Added screenshots 46 49 … … 49 52 50 53 == Upgrade Notice == 51 FIrst version 54 Initial version 55 56 == Coming Soon == 57 * Options page for setting colors/styles
Note: See TracChangeset
for help on using the changeset viewer.