blob: 2c5fdd896ca5299c640b7246eca883859ca195a6 [file] [log] [blame]
Felix Meschberger11df4332009-09-15 11:37:08 +00001/* tabbed view */
2
3#divcfgprttabs {
4}
5
Felix Meschberger1ecc6ec2009-09-22 09:54:28 +00006.divcfgprttabshidden {
7 display: none;
8}
9
Felix Meschberger11df4332009-09-15 11:37:08 +000010#divcfgprttabs ul {
11 list-style: none;
12}
13
14#divcfgprttabs ul li {
Felix Meschberger4ad94bf2009-09-22 14:47:33 +000015 display: inline-block;
Felix Meschberger11df4332009-09-15 11:37:08 +000016 background: #fff;
Felix Meschberger11df4332009-09-15 11:37:08 +000017}
18
19#divcfgprttabs ul li.tabactive {
Felix Meschberger11df4332009-09-15 11:37:08 +000020}
21
22#divcfgprttabs ul li a {
23 color: #6181A9;
24 background-color: white;
25 display: block;
26 float: left;
27 height: 100%;
28 line-height: 2;
29 padding: 0 10px 0 10px;
30 cursor: pointer;
31}
32
33#divcfgprttabs ul li a.tabactive {
Felix Meschberger4ad94bf2009-09-22 14:47:33 +000034 background-color: #6181A9;
35 color: white;
Felix Meschberger11df4332009-09-15 11:37:08 +000036}
37
38#divcfgprttabs ul li a:hover {
39 color: white;
40 background-color: #6181A9;
41}
42
43.menu {
44 background: none;
Felix Meschberger11df4332009-09-15 11:37:08 +000045 margin-bottom: 0;
46 padding-left: 0;
47}
48.area {
49 background: #fff;
50 border: 1px solid #999;
51 padding: 1px;
52}
53
54/* Contents container of the tabs */
55.tabcont {
56 background: #fff;
57 border: 1px solid #999;
58 border-right: none;
59 padding: 1px;
60}
61
62/* The actual content of the tabs */
63.space {
64 padding: 10px;
65
66 /* don't let this area make the display wider */
67 width: 100px;
68 overflow: visible;
69}
Felix Meschberger1ecc6ec2009-09-22 09:54:28 +000070
71.space div {
72 font-family: monospace;
73 white-space: pre;
74}