|
1
|
1 |
/* ----------------------------------------------------------------------- |
|
|
2 |
Taken from: |
|
|
3 |
|
|
|
4 |
Tabs Plugin 0.2 for the Blueprint CSS Framework |
|
|
5 |
http://blueprintcss.org |
|
|
6 |
|
|
|
7 |
* Copyright (c) 2008-Present. Refer to the main Blueprint license. |
|
|
8 |
* See README for instructions on how to use this plugin. |
|
|
9 |
* For credits and origins, see AUTHORS. |
|
|
10 |
|
|
|
11 |
----------------------------------------------------------------------- */ |
|
|
12 |
@charset "UTF-8"; |
|
|
13 |
|
|
|
14 |
.tabs { |
|
|
15 |
height:auto; |
|
|
16 |
margin:0; |
|
|
17 |
overflow:hidden; |
|
|
18 |
padding-left:0; |
|
|
19 |
} |
|
|
20 |
* html .tabs { height:1%; /* fixing IE 6 */ } |
|
|
21 |
.tabs li { |
|
|
22 |
background: #707070 url("../img/tabsright_normal.png") no-repeat right center; |
|
|
23 |
border-bottom:none; |
|
|
24 |
float:left; |
|
|
25 |
line-height:1.5; |
|
|
26 |
list-style-type:none; |
|
|
27 |
margin:0 ; |
|
|
28 |
padding: 0 9px 0 0; |
|
|
29 |
height: 29px; |
|
|
30 |
|
|
|
31 |
} |
|
|
32 |
.tabs li a { |
|
|
33 |
border-bottom:none; |
|
|
34 |
color: #ffffff; |
|
|
35 |
cursor:pointer; |
|
|
36 |
display:block; |
|
|
37 |
float:left; |
|
|
38 |
margin: .5em 2em .5em 2em; |
|
|
39 |
text-transform: capitalize; |
|
|
40 |
font-weight: lighter; |
|
|
41 |
} |
|
|
42 |
|
|
|
43 |
.tabs li.active { |
|
|
44 |
background:#29aae3 url("../img/tabsright_active.png") no-repeat right center; |
|
|
45 |
} |
|
|
46 |
|
|
|
47 |
|
|
|
48 |
.tabs li a.selected { |
|
|
49 |
background:#666; |
|
|
50 |
border:1px solid #666; |
|
|
51 |
border-bottom:none; |
|
|
52 |
color:#fff; |
|
|
53 |
cursor:default; |
|
|
54 |
} |
|
|
55 |
.tabs li a, .tabs li a:focus, .tabs li a:hover { |
|
|
56 |
text-decoration:none; |
|
|
57 |
} |
|
|
58 |
.tabs li a:focus, .tabs li a:hover { |
|
|
59 |
color:#555; |
|
|
60 |
outline:none; |
|
|
61 |
} |
|
|
62 |
.tabs li a.selected:focus, .tabs li a.selected:hover { |
|
|
63 |
color:#fafafa; |
|
|
64 |
} |
|
|
65 |
.tabs li.label { |
|
|
66 |
border:none; |
|
|
67 |
font-weight:bold; |
|
|
68 |
line-height:1.5; |
|
|
69 |
margin-right:.5em; |
|
|
70 |
padding:.25em .33em .25em .33em; |
|
|
71 |
} |
|
|
72 |
|