Felix Meschberger | 25c62d6 | 2009-09-25 20:42:05 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more |
| 3 | * contributor license agreements. See the NOTICE file distributed with |
| 4 | * this work for additional information regarding copyright ownership. |
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 6 | * (the "License"); you may not use this file except in compliance with |
| 7 | * the License. You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 18 | /* tabbed view */ |
| 19 | |
| 20 | #divcfgprttabs { |
| 21 | } |
| 22 | |
Felix Meschberger | 1ecc6ec | 2009-09-22 09:54:28 +0000 | [diff] [blame] | 23 | .divcfgprttabshidden { |
| 24 | display: none; |
| 25 | } |
| 26 | |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 27 | #divcfgprttabs ul { |
| 28 | list-style: none; |
| 29 | } |
| 30 | |
| 31 | #divcfgprttabs ul li { |
Felix Meschberger | 4ad94bf | 2009-09-22 14:47:33 +0000 | [diff] [blame] | 32 | display: inline-block; |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 33 | background: #fff; |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | #divcfgprttabs ul li.tabactive { |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | #divcfgprttabs ul li a { |
| 40 | color: #6181A9; |
| 41 | background-color: white; |
| 42 | display: block; |
| 43 | float: left; |
| 44 | height: 100%; |
| 45 | line-height: 2; |
| 46 | padding: 0 10px 0 10px; |
| 47 | cursor: pointer; |
| 48 | } |
| 49 | |
| 50 | #divcfgprttabs ul li a.tabactive { |
Felix Meschberger | 4ad94bf | 2009-09-22 14:47:33 +0000 | [diff] [blame] | 51 | background-color: #6181A9; |
| 52 | color: white; |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | #divcfgprttabs ul li a:hover { |
| 56 | color: white; |
| 57 | background-color: #6181A9; |
| 58 | } |
| 59 | |
| 60 | .menu { |
| 61 | background: none; |
Felix Meschberger | 11df433 | 2009-09-15 11:37:08 +0000 | [diff] [blame] | 62 | margin-bottom: 0; |
| 63 | padding-left: 0; |
| 64 | } |
| 65 | .area { |
| 66 | background: #fff; |
| 67 | border: 1px solid #999; |
| 68 | padding: 1px; |
| 69 | } |
| 70 | |
| 71 | /* Contents container of the tabs */ |
| 72 | .tabcont { |
| 73 | background: #fff; |
| 74 | border: 1px solid #999; |
| 75 | border-right: none; |
| 76 | padding: 1px; |
| 77 | } |
| 78 | |
| 79 | /* The actual content of the tabs */ |
| 80 | .space { |
| 81 | padding: 10px; |
| 82 | |
| 83 | /* don't let this area make the display wider */ |
| 84 | width: 100px; |
| 85 | overflow: visible; |
| 86 | } |
Felix Meschberger | 1ecc6ec | 2009-09-22 09:54:28 +0000 | [diff] [blame] | 87 | |
| 88 | .space div { |
| 89 | font-family: monospace; |
| 90 | white-space: pre; |
| 91 | } |