| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /*
- This file is part of Ext JS 3.4
- Copyright (c) 2011-2013 Sencha Inc
- Contact: http://www.sencha.com/contact
- GNU General Public License Usage
- This file may be used under the terms of the GNU General Public License version 3.0 as
- published by the Free Software Foundation and appearing in the file LICENSE included in the
- packaging of this file.
- Please review the following information to ensure the GNU General Public License version 3.0
- requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- If you are unsure which license is appropriate for your use, please contact the sales department
- at http://www.sencha.com/contact.
- Build date: 2013-04-03 15:07:25
- */
- .x-tab-panel-header, .x-tab-panel-footer {
- background-color: #deecfd;
- border-color:#8db2e3;
- overflow:hidden;
- zoom:1;
- }
- .x-tab-panel-header, .x-tab-panel-footer {
- border-color:#8db2e3;
- }
- ul.x-tab-strip-top{
- background-color:#cedff5;
- background-image: url(../images/default/tabs/tab-strip-bg.gif);
- border-bottom-color:#8db2e3;
- }
- ul.x-tab-strip-bottom{
- background-color:#cedff5;
- background-image: url(../images/default/tabs/tab-strip-btm-bg.gif);
- border-top-color:#8db2e3;
- }
- .x-tab-panel-header-plain .x-tab-strip-spacer,
- .x-tab-panel-footer-plain .x-tab-strip-spacer {
- border-color:#8db2e3;
- background-color: #deecfd;
- }
- .x-tab-strip span.x-tab-strip-text {
- font:normal 11px tahoma,arial,helvetica;
- color:#416aa3;
- }
- .x-tab-strip-over span.x-tab-strip-text {
- color:#15428b;
- }
- .x-tab-strip-active span.x-tab-strip-text {
- color:#15428b;
- font-weight:bold;
- }
- .x-tab-strip-disabled .x-tabs-text {
- color:#aaaaaa;
- }
- .x-tab-strip-top .x-tab-right, .x-tab-strip-top .x-tab-left, .x-tab-strip-top .x-tab-strip-inner{
- background-image: url(../images/default/tabs/tabs-sprite.gif);
- }
- .x-tab-strip-bottom .x-tab-right {
- background-image: url(../images/default/tabs/tab-btm-inactive-right-bg.gif);
- }
- .x-tab-strip-bottom .x-tab-left {
- background-image: url(../images/default/tabs/tab-btm-inactive-left-bg.gif);
- }
- .x-tab-strip-bottom .x-tab-strip-over .x-tab-right {
- background-image: url(../images/default/tabs/tab-btm-over-right-bg.gif);
- }
- .x-tab-strip-bottom .x-tab-strip-over .x-tab-left {
- background-image: url(../images/default/tabs/tab-btm-over-left-bg.gif);
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
- background-image: url(../images/default/tabs/tab-btm-right-bg.gif);
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
- background-image: url(../images/default/tabs/tab-btm-left-bg.gif);
- }
- .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
- background-image:url(../images/default/tabs/tab-close.gif);
- }
- .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
- background-image:url(../images/default/tabs/tab-close.gif);
- }
- .x-tab-panel-body {
- border-color:#8db2e3;
- background-color:#fff;
- }
- .x-tab-panel-body-top {
- border-top: 0 none;
- }
- .x-tab-panel-body-bottom {
- border-bottom: 0 none;
- }
- .x-tab-scroller-left {
- background-image:url(../images/default/tabs/scroll-left.gif);
- border-bottom-color:#8db2e3;
- }
- .x-tab-scroller-left-over {
- background-position: 0 0;
- }
- .x-tab-scroller-left-disabled {
- background-position: -18px 0;
- opacity:.5;
- -moz-opacity:.5;
- filter:alpha(opacity=50);
- cursor:default;
- }
- .x-tab-scroller-right {
- background-image:url(../images/default/tabs/scroll-right.gif);
- border-bottom-color:#8db2e3;
- }
- .x-tab-panel-bbar .x-toolbar, .x-tab-panel-tbar .x-toolbar {
- border-color:#99bbe8;
- }
|