blob: d97f57903e26fee2935499c3b9d66ebb48f2ecfd (
plain)
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
|
/* Skin for jQuery Tools tabs.
*
* Based on <https://github.com/jquerytools/jquerytools.github.com/blob/master/media/css/tabs-no-images.css>.
*
* Documentation on tabs: <http://jquerytools.github.io/documentation/tabs/index.html>
*/
$tabs-tab-height: 15px;
$tabs-tab-vpad: 2px;
$tabs-tab-hpad: 10px;
$tabs-border-width: 1px;
$tabs-border-style: solid #666;
$tabs-background-primary: #ddd;
$tabs-background-secondary: #efefef;
/* root element for tab bar */
ul.css-tabs {
margin: 0;
padding: 0;
height: $tabs-tab-height;
border-bottom: $tabs-border-width $tabs-border-style;
/* single tab */
li {
float: left;
margin: 0;
padding: 0;
list-style-type: none;
/* link inside the tab */
a {
display:block;
height: $tabs-tab-height; /* $tabs-tab-height - 2*($tabs-tab-vpad+$tabs-border-width) */
padding: $tabs-tab-vpad $tabs-tab-hpad;
border: $tabs-border-width $tabs-border-style;
border-bottom: 0;
margin-right: 2px;
border-radius: 4px 4px 0 0;
text-decoration: none;
background: $tabs-background-secondary;
color: #777;
&:hover {
background-color: #F7F7F7;
color: #333;
}
/* selected tab */
&.current {
background: $tabs-background-primary;
border-bottom: $tabs-border-width solid $tabs-background-primary;
color: #000;
cursor:default;
}
}
}
}
/* tab pane */
.css-panes > div {
display: none;
border: $tabs-border-width $tabs-border-style;
border-top: 0;
background: $tabs-background-primary;
padding: 15px 20px;
}
|