| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- 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-dd-drag-proxy{
- position:absolute;
- left:0;
- top:0;
- visibility:hidden;
- z-index:15000;
- }
- .x-dd-drag-ghost{
- -moz-opacity: 0.85;
- opacity:.85;
- filter: alpha(opacity=85);
- border: 1px solid;
- padding:3px;
- padding-left:20px;
- white-space:nowrap;
- }
- .x-dd-drag-repair .x-dd-drag-ghost{
- -moz-opacity: 0.4;
- opacity:.4;
- filter: alpha(opacity=40);
- border:0 none;
- padding:0;
- background-color:transparent;
- }
- .x-dd-drag-repair .x-dd-drop-icon{
- visibility:hidden;
- }
- .x-dd-drop-icon{
- position:absolute;
- top:3px;
- left:3px;
- display:block;
- width:16px;
- height:16px;
- background-color:transparent;
- background-position: center;
- background-repeat: no-repeat;
- z-index:1;
- }
- .x-view-selector {
- position:absolute;
- left:0;
- top:0;
- width:0;
- border:1px dotted;
- opacity: .5;
- -moz-opacity: .5;
- filter:alpha(opacity=50);
- zoom:1;
- }
|