| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /*
- 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-toolbar{
- border-color:#a9bfd3;
- background-color:#d0def0;
- background-image:url(../images/default/toolbar/bg.gif);
- }
- .x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
- font:normal 11px arial,tahoma, helvetica, sans-serif;
- }
- .x-toolbar .x-item-disabled {
- color:gray;
- }
- .x-toolbar .x-item-disabled * {
- color:gray;
- }
- .x-toolbar .x-btn-mc em.x-btn-split {
- background-image:url(../images/default/button/s-arrow-noline.gif);
- }
- .x-toolbar .x-btn-over .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split,
- .x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split
- {
- background-image:url(../images/default/button/s-arrow-o.gif);
- }
- .x-toolbar .x-btn-mc em.x-btn-split-bottom {
- background-image:url(../images/default/button/s-arrow-b-noline.gif);
- }
- .x-toolbar .x-btn-over .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split-bottom,
- .x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split-bottom
- {
- background-image:url(../images/default/button/s-arrow-bo.gif);
- }
- .x-toolbar .xtb-sep {
- background-image: url(../images/default/grid/grid-blue-split.gif);
- }
- .x-tbar-page-first{
- background-image: url(../images/default/grid/page-first.gif) !important;
- }
- .x-tbar-loading{
- background-image: url(../images/default/grid/refresh.gif) !important;
- }
- .x-tbar-page-last{
- background-image: url(../images/default/grid/page-last.gif) !important;
- }
- .x-tbar-page-next{
- background-image: url(../images/default/grid/page-next.gif) !important;
- }
- .x-tbar-page-prev{
- background-image: url(../images/default/grid/page-prev.gif) !important;
- }
- .x-item-disabled .x-tbar-loading{
- background-image: url(../images/default/grid/refresh-disabled.gif) !important;
- }
- .x-item-disabled .x-tbar-page-first{
- background-image: url(../images/default/grid/page-first-disabled.gif) !important;
- }
- .x-item-disabled .x-tbar-page-last{
- background-image: url(../images/default/grid/page-last-disabled.gif) !important;
- }
- .x-item-disabled .x-tbar-page-next{
- background-image: url(../images/default/grid/page-next-disabled.gif) !important;
- }
- .x-item-disabled .x-tbar-page-prev{
- background-image: url(../images/default/grid/page-prev-disabled.gif) !important;
- }
- .x-paging-info {
- color:#444;
- }
- .x-toolbar-more-icon {
- background-image: url(../images/default/toolbar/more.gif) !important;
- }
|