Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame^] | 1 | /* tabbed view */ |
| 2 | |
| 3 | #divcfgprttabs { |
| 4 | } |
| 5 | |
| 6 | #divcfgprttabs ul { |
| 7 | list-style: none; |
| 8 | } |
| 9 | |
| 10 | #divcfgprttabs ul li { |
| 11 | display: inline; |
| 12 | background: #fff; |
| 13 | height: 21px; |
| 14 | margin: 0 2px 0 0 ; |
| 15 | border: 1px solid #999; |
| 16 | float: left; |
| 17 | padding: 1px 1px 0 1px |
| 18 | } |
| 19 | |
| 20 | #divcfgprttabs ul li.tabactive { |
| 21 | border-bottom-color: white; |
| 22 | } |
| 23 | |
| 24 | #divcfgprttabs ul li a { |
| 25 | color: #6181A9; |
| 26 | background-color: white; |
| 27 | display: block; |
| 28 | float: left; |
| 29 | height: 100%; |
| 30 | line-height: 2; |
| 31 | padding: 0 10px 0 10px; |
| 32 | cursor: pointer; |
| 33 | } |
| 34 | |
| 35 | #divcfgprttabs ul li a.tabactive { |
| 36 | } |
| 37 | |
| 38 | #divcfgprttabs ul li a:hover { |
| 39 | color: white; |
| 40 | background-color: #6181A9; |
| 41 | } |
| 42 | |
| 43 | .menu { |
| 44 | background: none; |
| 45 | height: 23px; |
| 46 | margin-bottom: 0; |
| 47 | padding-left: 0; |
| 48 | } |
| 49 | .area { |
| 50 | background: #fff; |
| 51 | border: 1px solid #999; |
| 52 | padding: 1px; |
| 53 | } |
| 54 | |
| 55 | /* Contents container of the tabs */ |
| 56 | .tabcont { |
| 57 | background: #fff; |
| 58 | border: 1px solid #999; |
| 59 | border-right: none; |
| 60 | padding: 1px; |
| 61 | } |
| 62 | |
| 63 | /* The actual content of the tabs */ |
| 64 | .space { |
| 65 | padding: 10px; |
| 66 | |
| 67 | /* don't let this area make the display wider */ |
| 68 | width: 100px; |
| 69 | overflow: visible; |
| 70 | } |