summaryrefslogtreecommitdiff
path: root/frontend/beta/css/yui-extensions/tabs.css
Unidiff
Diffstat (limited to 'frontend/beta/css/yui-extensions/tabs.css') (more/less context) (show whitespace changes)
-rw-r--r--frontend/beta/css/yui-extensions/tabs.css152
1 files changed, 152 insertions, 0 deletions
diff --git a/frontend/beta/css/yui-extensions/tabs.css b/frontend/beta/css/yui-extensions/tabs.css
new file mode 100644
index 0000000..8eb81e0
--- a/dev/null
+++ b/frontend/beta/css/yui-extensions/tabs.css
@@ -0,0 +1,152 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29.ytab-wrap {
30 border-bottom:1px solid #6593cf;
31 padding-top:2px;
32}
33.ytab-strip-wrap{
34 width:100%;
35}
36.ytab-wrap table{
37 position:relative;
38 top:0; left:0;
39}
40.ytab-strip td{
41 padding:0;
42 padding-left:2px;
43}
44.ytab-strip a, .ytab-strip span, .ytab-strip em {
45 display:block;
46}
47.ytab-strip a {
48 text-decoration:none !important;
49 -moz-outline: none;
50 outline: none;
51 cursor:pointer;
52}
53.ytab-strip .ytab-text {
54 font:bold 11px tahoma,arial,helvetica;
55 color:#666;
56 overflow:hidden;
57 white-space: nowrap;
58 cursor:pointer;
59 text-overflow: ellipsis;
60}
61.ytab-strip .on .ytab-text {
62 cursor:default;
63 color:#083772;
64}
65.ytab-strip .disabled .ytab-text {
66 cursor:default;
67 color:#aaaaaa;
68}
69.ytab-strip .ytab-inner {
70 padding:4px 10px;
71}
72
73.ytab-strip .on .ytab-right {
74 background: url(../images/default/tabs/tab-sprite.gif) no-repeat right 0;
75}
76.ytab-strip .on .ytab-left {
77 background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -100px;
78}
79.ytab-strip .ytab-right {
80 background: url(../images/default/tabs/tab-sprite.gif) no-repeat right -50px;
81}
82.ytab-strip .ytab-left {
83 background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -150px;
84}
85
86.ytab-strip a {
87 position:relative;
88 top:1px; left:0;
89}
90.ytab-strip .on a {
91 position:relative;
92}
93.ytab-strip .on .ytab-inner {
94 padding-bottom:5px;
95}
96/** closable tabs */
97.ytab-strip .ytab-closable .ytab-inner{
98 padding-right:22px;
99 position:relative;
100}
101.ytab-strip .ytab-closable .close-icon{
102 line-height: 1px;
103 font-size:1px;
104 background-image:url(../images/default/layout/layout-sprite.gif);
105 background-repeat: no-repeat;
106 background-position: 50% -60px;
107 display:block;
108 position:absolute;
109 right:5px;top:4px;
110 width:12px;height:11px;
111 cursor:pointer;
112}
113.ytab-strip .on .close-icon{
114 background-image:url(../images/default/layout/layout-sprite.gif);
115 background-repeat: no-repeat;
116 background-position: 50% -60px;
117}
118.ytab-strip .ytab-closable .close-over{
119 background-image:url(../images/default/layout/layout-sprite.gif);
120 background-repeat: no-repeat;
121 background-position: 50% -72px;
122}
123
124.ytabs-bottom .ytab-wrap {
125 border-top:1px solid #6593cf;
126 border-bottom:0 none;
127 padding-top:0;
128 padding-bottom:2px;
129}
130.ytabs-bottom .ytab-strip .ytab-right {
131 background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom left;
132}
133.ytabs-bottom .ytab-strip .ytab-left {
134 background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom right;
135}
136.ytabs-bottom .ytab-strip .on .ytab-right {
137 background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
138}
139.ytabs-bottom .ytab-strip .on .ytab-left {
140 background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
141}
142.ytabs-bottom .ytab-strip a {
143 position:relative;
144 top:0; left:0;
145}
146.ytabs-bottom .ytab-strip .on a {
147 margin-top:-1px;
148}
149.ytabs-bottom .ytab-strip .on .ytab-inner {
150 padding-top:5px;
151}
152