blob: c0f063b1ceb24a05a18ece4a4a71d130aa446084 [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 {
15 display: inline;
16 background: #fff;
17 height: 21px;
18 margin: 0 2px 0 0 ;
19 border: 1px solid #999;
20 float: left;
21 padding: 1px 1px 0 1px
22}
23
24#divcfgprttabs ul li.tabactive {
25 border-bottom-color: white;
26}
27
28#divcfgprttabs ul li a {
29 color: #6181A9;
30 background-color: white;
31 display: block;
32 float: left;
33 height: 100%;
34 line-height: 2;
35 padding: 0 10px 0 10px;
36 cursor: pointer;
37}
38
39#divcfgprttabs ul li a.tabactive {
40}
41
42#divcfgprttabs ul li a:hover {
43 color: white;
44 background-color: #6181A9;
45}
46
47.menu {
48 background: none;
49 height: 23px;
50 margin-bottom: 0;
51 padding-left: 0;
52}
53.area {
54 background: #fff;
55 border: 1px solid #999;
56 padding: 1px;
57}
58
59/* Contents container of the tabs */
60.tabcont {
61 background: #fff;
62 border: 1px solid #999;
63 border-right: none;
64 padding: 1px;
65}
66
67/* The actual content of the tabs */
68.space {
69 padding: 10px;
70
71 /* don't let this area make the display wider */
72 width: 100px;
73 overflow: visible;
74}
Felix Meschberger1ecc6ec2009-09-22 09:54:28 +000075
76.space div {
77 font-family: monospace;
78 white-space: pre;
79}