| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- /*
- 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-window {
- zoom:1;
- }
- .x-window .x-window-handle {
- opacity:0;
- -moz-opacity:0;
- filter:alpha(opacity=0);
- }
- .x-window-proxy {
- border:1px solid;
- z-index:12000;
- overflow:hidden;
- position:absolute;
- left:0;top:0;
- display:none;
- opacity:.5;
- -moz-opacity:.5;
- filter:alpha(opacity=50);
- }
- .x-window-header {
- overflow:hidden;
- zoom:1;
- }
- .x-window-bwrap {
- z-index:1;
- position:relative;
- zoom:1;
- left:0;top:0;
- }
- .x-window-tl .x-window-header {
- padding:5px 0 4px 0;
- }
- .x-window-header-text {
- cursor:pointer;
- }
- .x-window-tc {
- background: transparent repeat-x 0 0;
- overflow:hidden;
- zoom:1;
- }
- .x-window-tl {
- background: transparent no-repeat 0 0;
- padding-left:6px;
- zoom:1;
- z-index:1;
- position:relative;
- }
- .x-window-tr {
- background: transparent no-repeat right 0;
- padding-right:6px;
- }
- .x-window-bc {
- background: transparent repeat-x 0 bottom;
- zoom:1;
- }
- .x-window-bc .x-window-footer {
- padding-bottom:6px;
- zoom:1;
- font-size:0;
- line-height:0;
- }
- .x-window-bl {
- background: transparent no-repeat 0 bottom;
- padding-left:6px;
- zoom:1;
- }
- .x-window-br {
- background: transparent no-repeat right bottom;
- padding-right:6px;
- zoom:1;
- }
- .x-window-mc {
- border:1px solid;
- padding:0;
- margin:0;
- }
- .x-window-ml {
- background: transparent repeat-y 0 0;
- padding-left:6px;
- zoom:1;
- }
- .x-window-mr {
- background: transparent repeat-y right 0;
- padding-right:6px;
- zoom:1;
- }
- .x-window-body {
- overflow:hidden;
- }
- .x-window-bwrap {
- overflow:hidden;
- }
- .x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
- .x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
- .x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
- padding:0;
- }
- .x-window-maximized .x-window-footer {
- padding-bottom:0;
- }
- .x-window-maximized .x-window-tc {
- padding-left:3px;
- padding-right:3px;
- }
- .x-window-maximized .x-window-mc {
- border-left:0 none;
- border-right:0 none;
- }
- .x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
- border-left:0 none;
- border-right: 0 none;
- }
- .x-window-bbar .x-toolbar {
- border-top:1px solid;
- border-bottom:0 none;
- }
- .x-window-draggable, .x-window-draggable .x-window-header-text {
- cursor:move;
- }
- .x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
- cursor:default;
- }
- .x-window-body {
- background-color:transparent;
- }
- .x-panel-ghost .x-window-tl {
- border-bottom:1px solid;
- }
- .x-panel-collapsed .x-window-tl {
- border-bottom:1px solid;
- }
- .x-window-maximized-ct {
- overflow:hidden;
- }
- .x-window-maximized .x-window-handle {
- display:none;
- }
- .x-window-sizing-ghost ul {
- border:0 none !important;
- }
- .x-dlg-focus{
- -moz-outline:0 none;
- outline:0 none;
- width:0;
- height:0;
- overflow:hidden;
- position:absolute;
- top:0;
- left:0;
- }
- .ext-webkit .x-dlg-focus{
- width: 1px;
- height: 1px;
- }
- .x-dlg-mask{
- z-index:10000;
- display:none;
- position:absolute;
- top:0;
- left:0;
- -moz-opacity: 0.5;
- opacity:.50;
- filter: alpha(opacity=50);
- }
- body.ext-ie6.x-body-masked select {
- visibility:hidden;
- }
- body.ext-ie6.x-body-masked .x-window select {
- visibility:visible;
- }
- .x-window-plain .x-window-mc {
- border: 1px solid;
- }
- .x-window-plain .x-window-body {
- border: 1px solid;
- background:transparent !important;
- }
|