| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- 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-combo-list {
- border:1px solid;
- zoom:1;
- overflow:hidden;
- }
- .x-combo-list-inner {
- overflow:auto;
- position:relative; /* for calculating scroll offsets */
- zoom:1;
- overflow-x:hidden;
- }
- .x-combo-list-hd {
- border-bottom:1px solid;
- padding:3px;
- }
- .x-resizable-pinned .x-combo-list-inner {
- border-bottom:1px solid;
- }
- .x-combo-list-item {
- padding:2px;
- border:1px solid;
- white-space: nowrap;
- overflow:hidden;
- text-overflow: ellipsis;
- }
- .x-combo-list .x-combo-selected{
- border:1px dotted !important;
- cursor:pointer;
- }
- .x-combo-list .x-toolbar {
- border-top:1px solid;
- border-bottom:0 none;
- }
|