Changeset 13727

Show
Ignore:
Timestamp:
05/13/08 10:27:46 (3 months ago)
Author:
nonken
Message:

Took away padding and spacing between tabs - for padding in contentwrapper please refer to #6742, fixes #6455

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/themes/tundra/layout/TabContainer.css

    r13465 r13727  
    1212.tundra .dijitTab { 
    1313        line-height:normal; 
    14         margin-right:5px;       /* space between one tab and the next in top/bottom mode */ 
     14        margin-right:4px;       /* space between one tab and the next in top/bottom mode */ 
    1515        padding:0px; 
    1616        border:1px solid #ccc; 
     
    2121.tundra .dijitAlignRight .dijitTab { 
    2222        margin-right:0px; 
    23         margin-bottom:5px;      /* space between one tab and the next in left/right mode */ 
     23        margin-bottom:4px;      /* space between one tab and the next in left/right mode */ 
    2424} 
    2525 
    2626.tundra .dijitTabInnerDiv { 
    27         padding:6px 10px 4px 10px; 
     27        padding:6px 7px 4px 7px; 
    2828} 
    2929 
    3030.tundra .dijitTabChecked .dijitTabInnerDiv { 
    31         padding: 6px 10px 3px 10px; 
     31        padding: 6px 7px 3px 7px; 
    3232        border-bottom: 1px solid #fff; 
     33} 
     34 
     35.tundra .dijitTabChecked, 
     36.tundra .dijitTabCloseButtonChecked 
     37{ 
     38        /* the selected tab (with or without hover) */ 
     39        background-color:#fff; 
     40        border-color: #ccc; 
     41        background-image:none; 
    3342} 
    3443 
     
    4756} 
    4857 
    49 .tundra .dijitTabChecked, 
    50 .tundra .dijitTabCloseButtonChecked 
    51 { 
    52         /* the selected tab (with or without hover) */ 
     58.dj_ie6 .tundra .dijitTabChecked .dijitTabHover, 
     59.dj_ie6 .tundra .dijitTabChecked .dijitTabCloseButtonHover { 
    5360        background-color:#fff; 
    5461        border-color: #ccc; 
     
    8794.tundra .dijitTab .dijitClosable { 
    8895        position: relative; 
    89         padding:6px 20px 4px 10px; 
     96        padding:6px 20px 4px 7px; 
     97} 
     98 
     99.tundra .dijitTabChecked .dijitClosable { 
     100        padding: 6px 20px 3px 7px; 
     101        border-bottom: 1px solid #fff; 
    90102} 
    91103 
    92104.tundra .dijitTab .dijitClosable .closeImage { 
    93105        position:absolute; 
    94         top: 7px; 
     106        top: 5px; 
    95107        right: 3px; 
    96108        height: 12px; 
     
    132144.tundra .dijitAlignBottom .dijitTab .dijitClosable .closeImage { 
    133145        top: auto; 
    134         bottom: 7px; 
     146        bottom: 4px; 
    135147        right: 3px; 
    136148} 
    137149 
    138150.tundra .dijitAlignLeft .dijitTab .dijitClosable .closeImage { 
    139         top: 7px; 
     151        top: 5px; 
    140152        left: 3px; 
    141153} 
     154 
     155.tundra .dijitAlignRight .dijitTab .dijitClosable .closeImage { 
     156        top: 5px; 
     157        right: 3px; 
     158}