blob: 75000de6cd11ad9d6b5e1c2abdea9f4b0b9c8609 [file] [log] [blame]
Felix Meschberger25c62d62009-09-25 20:42:05 +00001/*
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 Meschberger11df4332009-09-15 11:37:08 +000018/* tabbed view */
19
20#divcfgprttabs {
21}
22
Felix Meschberger1ecc6ec2009-09-22 09:54:28 +000023.divcfgprttabshidden {
24 display: none;
25}
26
Felix Meschberger11df4332009-09-15 11:37:08 +000027#divcfgprttabs ul {
28 list-style: none;
29}
30
31#divcfgprttabs ul li {
Felix Meschberger4ad94bf2009-09-22 14:47:33 +000032 display: inline-block;
Felix Meschberger11df4332009-09-15 11:37:08 +000033 background: #fff;
Felix Meschberger11df4332009-09-15 11:37:08 +000034}
35
36#divcfgprttabs ul li.tabactive {
Felix Meschberger11df4332009-09-15 11:37:08 +000037}
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 Meschberger4ad94bf2009-09-22 14:47:33 +000051 background-color: #6181A9;
52 color: white;
Felix Meschberger11df4332009-09-15 11:37:08 +000053}
54
55#divcfgprttabs ul li a:hover {
56 color: white;
57 background-color: #6181A9;
58}
59
60.menu {
61 background: none;
Felix Meschberger11df4332009-09-15 11:37:08 +000062 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 Meschberger1ecc6ec2009-09-22 09:54:28 +000087
88.space div {
89 font-family: monospace;
90 white-space: pre;
91}