100 lines
2 KiB
CSS
100 lines
2 KiB
CSS
/*
|
|
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-list-header{
|
|
background: repeat-x 0 bottom;
|
|
cursor:default;
|
|
zoom:1;
|
|
height:22px;
|
|
}
|
|
|
|
.x-list-header-inner div {
|
|
display:block;
|
|
float:left;
|
|
overflow:hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.x-list-header-inner div em {
|
|
display:block;
|
|
border-left:1px solid;
|
|
padding:4px 4px;
|
|
overflow:hidden;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
line-height:14px;
|
|
}
|
|
|
|
.x-list-body {
|
|
overflow:auto;
|
|
overflow-x:hidden;
|
|
overflow-y:auto;
|
|
zoom:1;
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
|
|
.x-list-body dl {
|
|
zoom:1;
|
|
}
|
|
|
|
.x-list-body dt {
|
|
display:block;
|
|
float:left;
|
|
overflow:hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
cursor:pointer;
|
|
zoom:1;
|
|
}
|
|
|
|
.x-list-body dt em {
|
|
display:block;
|
|
padding:3px 4px;
|
|
overflow:hidden;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
}
|
|
|
|
.x-list-resizer {
|
|
border-left:1px solid;
|
|
border-right:1px solid;
|
|
position:absolute;
|
|
left:0;
|
|
top:0;
|
|
}
|
|
|
|
.x-list-header-inner em.sort-asc {
|
|
background: transparent no-repeat center 0;
|
|
border-style:solid;
|
|
border-width: 0 1px 1px;
|
|
padding-bottom:3px;
|
|
}
|
|
|
|
.x-list-header-inner em.sort-desc {
|
|
background: transparent no-repeat center -23px;
|
|
border-style:solid;
|
|
border-width: 0 1px 1px;
|
|
padding-bottom:3px;
|
|
}
|
|
|