mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-12-17 11:57:02 +01:00
First version of the newly restructured repository
This commit is contained in:
152
frontend/beta/css/yui-extensions/tabs.css
Normal file
152
frontend/beta/css/yui-extensions/tabs.css
Normal file
@@ -0,0 +1,152 @@
|
||||
/*
|
||||
|
||||
Copyright 2008-2011 Clipperz Srl
|
||||
|
||||
This file is part of Clipperz's Javascript Crypto Library.
|
||||
Javascript Crypto Library provides web developers with an extensive
|
||||
and efficient set of cryptographic functions. The library aims to
|
||||
obtain maximum execution speed while preserving modularity and
|
||||
reusability.
|
||||
For further information about its features and functionalities please
|
||||
refer to http://www.clipperz.com
|
||||
|
||||
* Javascript Crypto Library is free software: you can redistribute
|
||||
it and/or modify it under the terms of the GNU Affero General Public
|
||||
License as published by the Free Software Foundation, either version
|
||||
3 of the License, or (at your option) any later version.
|
||||
|
||||
* Javascript Crypto Library is distributed in the hope that it will
|
||||
be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the GNU Affero General Public License for more details.
|
||||
|
||||
* You should have received a copy of the GNU Affero General Public
|
||||
License along with Javascript Crypto Library. If not, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
|
||||
.ytab-wrap {
|
||||
border-bottom:1px solid #6593cf;
|
||||
padding-top:2px;
|
||||
}
|
||||
.ytab-strip-wrap{
|
||||
width:100%;
|
||||
}
|
||||
.ytab-wrap table{
|
||||
position:relative;
|
||||
top:0; left:0;
|
||||
}
|
||||
.ytab-strip td{
|
||||
padding:0;
|
||||
padding-left:2px;
|
||||
}
|
||||
.ytab-strip a, .ytab-strip span, .ytab-strip em {
|
||||
display:block;
|
||||
}
|
||||
.ytab-strip a {
|
||||
text-decoration:none !important;
|
||||
-moz-outline: none;
|
||||
outline: none;
|
||||
cursor:pointer;
|
||||
}
|
||||
.ytab-strip .ytab-text {
|
||||
font:bold 11px tahoma,arial,helvetica;
|
||||
color:#666;
|
||||
overflow:hidden;
|
||||
white-space: nowrap;
|
||||
cursor:pointer;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.ytab-strip .on .ytab-text {
|
||||
cursor:default;
|
||||
color:#083772;
|
||||
}
|
||||
.ytab-strip .disabled .ytab-text {
|
||||
cursor:default;
|
||||
color:#aaaaaa;
|
||||
}
|
||||
.ytab-strip .ytab-inner {
|
||||
padding:4px 10px;
|
||||
}
|
||||
|
||||
.ytab-strip .on .ytab-right {
|
||||
background: url(../images/default/tabs/tab-sprite.gif) no-repeat right 0;
|
||||
}
|
||||
.ytab-strip .on .ytab-left {
|
||||
background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -100px;
|
||||
}
|
||||
.ytab-strip .ytab-right {
|
||||
background: url(../images/default/tabs/tab-sprite.gif) no-repeat right -50px;
|
||||
}
|
||||
.ytab-strip .ytab-left {
|
||||
background: url(../images/default/tabs/tab-sprite.gif) no-repeat 0 -150px;
|
||||
}
|
||||
|
||||
.ytab-strip a {
|
||||
position:relative;
|
||||
top:1px; left:0;
|
||||
}
|
||||
.ytab-strip .on a {
|
||||
position:relative;
|
||||
}
|
||||
.ytab-strip .on .ytab-inner {
|
||||
padding-bottom:5px;
|
||||
}
|
||||
/** closable tabs */
|
||||
.ytab-strip .ytab-closable .ytab-inner{
|
||||
padding-right:22px;
|
||||
position:relative;
|
||||
}
|
||||
.ytab-strip .ytab-closable .close-icon{
|
||||
line-height: 1px;
|
||||
font-size:1px;
|
||||
background-image:url(../images/default/layout/layout-sprite.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% -60px;
|
||||
display:block;
|
||||
position:absolute;
|
||||
right:5px;top:4px;
|
||||
width:12px;height:11px;
|
||||
cursor:pointer;
|
||||
}
|
||||
.ytab-strip .on .close-icon{
|
||||
background-image:url(../images/default/layout/layout-sprite.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% -60px;
|
||||
}
|
||||
.ytab-strip .ytab-closable .close-over{
|
||||
background-image:url(../images/default/layout/layout-sprite.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% -72px;
|
||||
}
|
||||
|
||||
.ytabs-bottom .ytab-wrap {
|
||||
border-top:1px solid #6593cf;
|
||||
border-bottom:0 none;
|
||||
padding-top:0;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .ytab-right {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .ytab-left {
|
||||
background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .on .ytab-right {
|
||||
background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .on .ytab-left {
|
||||
background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip a {
|
||||
position:relative;
|
||||
top:0; left:0;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .on a {
|
||||
margin-top:-1px;
|
||||
}
|
||||
.ytabs-bottom .ytab-strip .on .ytab-inner {
|
||||
padding-top:5px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user