diff options
author | Richard Worth <rdworth@gmail.com> | 2010-02-16 01:38:23 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-02-16 01:38:23 +0000 |
commit | 828bcdd2f0befbf450dcd1d7c387388acd7a191b (patch) | |
tree | c0b4c2cbbf17047a2ba101cd50e2ced4532dbdd8 /themes/base/jquery.ui.tabs.css | |
parent | d4154562ea663926bbd5bbc3bc345c27250aaeb9 (diff) | |
download | jquery-ui-828bcdd2f0befbf450dcd1d7c387388acd7a191b.tar.gz jquery-ui-828bcdd2f0befbf450dcd1d7c387388acd7a191b.zip |
fixed #5163 - themes: css files need to be renamed to be consistent with js file renames in 1.8a1
Diffstat (limited to 'themes/base/jquery.ui.tabs.css')
-rw-r--r-- | themes/base/jquery.ui.tabs.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/themes/base/jquery.ui.tabs.css b/themes/base/jquery.ui.tabs.css new file mode 100644 index 000000000..729758fec --- /dev/null +++ b/themes/base/jquery.ui.tabs.css @@ -0,0 +1,11 @@ +/* Tabs +----------------------------------*/ +.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ +.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } +.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } +.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } +.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs .ui-tabs-panel { display: block; border: 0; padding: 1em 1.4em; background: none; } +.ui-tabs .ui-tabs-hide { display: none !important; } |