-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab-view.css
More file actions
91 lines (66 loc) · 1.83 KB
/
tab-view.css
File metadata and controls
91 lines (66 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
Copyright (C) 2005-2008 Ilya S. Lyubinskiy. All rights reserved.
Technical support: http://www.php-development.ru/
YOU MAY NOT
(1) Remove or modify this copyright notice.
(2) Re-distribute this code or any part of it.
Instead, you may link to the homepage of this code:
http://www.php-development.ru/javascripts/tab-view.php
YOU MAY
(1) Use this code on your website.
(2) Use this code as part of another product.
NO WARRANTY
This code is provided "as is" without warranty of any kind.
You expressly acknowledge and agree that use of this code is at your own risk.
*/
html, body { margin: 0px; padding: 0px; }
div.TabView
{
font-family: Verdana, Sans-Serif;
font-size: 12px;
}
/* ***** Tabs *************************************************************** */
div.TabView div.Tabs
{
height: 22px;
background: url('tab-view.png') repeat-x 0px -72px;
}
div.TabView div.Tabs a
{
display: block;
float: left;
margin-right: 1px;
width: 100px;
text-align: center;
height: 22px;
line-height: 21px;
vertical-align: middle;
background: url('tab-view.png') no-repeat 0px 0px;
text-decoration: none;
font-weight: 900;
color: #004040;
cursor: pointer;
}
div.TabView div.Tabs a:hover
{
background: url('tab-view.png') no-repeat 0px -35px;
}
div.TabView div.Tabs a.Current,
div.TabView div.Tabs a.Current:hover
{
margin-top: 01px;
height: 21px;
background: url('tab-view.png') no-repeat 0px 0px;
cursor: default;
}
/* ***** Pages ************************************************************** */
div.TabView div.Pages
{
clear: both;
border: 1px solid #404040;
border-top: none;
background: #FCFCFC;
}
div.TabView div.Pages { overflow: hidden; }
div.TabView div.Pages div.Page { overflow: auto; }
div.TabView div.Pages div.Page div.Pad { padding: 7px 7px; }