Commit 2effa038edee39c5970b7feb8aa724555712f9f9
1 parent
4ac4683b
KTS-3831
"Upgrade ExtJS to 2.2" Adding Resources Folder Committed By: Tohir Solomons Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9762 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
28 changed files
with
5915 additions
and
0 deletions
thirdpartyjs/extjs/resources/css/README.txt
0 โ 100644
thirdpartyjs/extjs/resources/css/borders.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-panel-noborder .x-panel-body-noborder { | |
| 10 | + border-width:0; | |
| 11 | +} | |
| 12 | + | |
| 13 | +.x-panel-noborder .x-panel-header-noborder { | |
| 14 | + border-width:0; | |
| 15 | + border-bottom:1px solid #99bbe8; | |
| 16 | +} | |
| 17 | + | |
| 18 | +.x-panel-noborder .x-panel-tbar-noborder .x-toolbar { | |
| 19 | + border-width:0; | |
| 20 | + border-bottom:1px solid #99bbe8; | |
| 21 | +} | |
| 22 | + | |
| 23 | +.x-panel-noborder .x-panel-bbar-noborder .x-toolbar { | |
| 24 | + border-width:0; | |
| 25 | + border-top:1px solid #99bbe8; | |
| 26 | +} | |
| 27 | + | |
| 28 | +.x-window-noborder .x-window-mc { | |
| 29 | + border-width:0; | |
| 30 | +} | |
| 31 | + | |
| 32 | +.x-window-plain .x-window-body-noborder { | |
| 33 | + border-width:0; | |
| 34 | +} | |
| 35 | + | |
| 36 | +.x-tab-panel-noborder .x-tab-panel-body-noborder { | |
| 37 | + border-width:0; | |
| 38 | +} | |
| 39 | + | |
| 40 | +.x-tab-panel-noborder .x-tab-panel-header-noborder { | |
| 41 | + border-top-width:0; | |
| 42 | + border-left-width:0; | |
| 43 | + border-right-width:0; | |
| 44 | +} | |
| 45 | + | |
| 46 | +.x-tab-panel-noborder .x-tab-panel-footer-noborder { | |
| 47 | + border-bottom-width:0; | |
| 48 | + border-left-width:0; | |
| 49 | + border-right-width:0; | |
| 50 | +} | |
| 51 | + | |
| 52 | + | |
| 53 | +.x-tab-panel-bbar-noborder .x-toolbar { | |
| 54 | + border-width:0; | |
| 55 | + border-top:1px solid #99bbe8; | |
| 56 | +} | |
| 57 | + | |
| 58 | +.x-tab-panel-tbar-noborder .x-toolbar { | |
| 59 | + border-width:0; | |
| 60 | + border-bottom:1px solid #99bbe8; | |
| 61 | +} | |
| 0 | 62 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/box.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +/* | |
| 10 | + Creates rounded, raised boxes like on the Ext website - the markup isn't pretty: | |
| 11 | + <div class="x-box-blue"> | |
| 12 | + <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div> | |
| 13 | + <div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc"> | |
| 14 | + <h3>YOUR TITLE HERE (optional)</h3> | |
| 15 | + <div>YOUR CONTENT HERE</div> | |
| 16 | + </div></div></div> | |
| 17 | + <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div> | |
| 18 | + </div> | |
| 19 | + */ | |
| 20 | + | |
| 21 | +.x-box-tl { | |
| 22 | + background: transparent url(../images/default/box/corners.gif) no-repeat 0 0; | |
| 23 | + zoom:1; | |
| 24 | +} | |
| 25 | + | |
| 26 | +.x-box-tc { | |
| 27 | + height: 8px; | |
| 28 | + background: transparent url(../images/default/box/tb.gif) repeat-x 0 0; | |
| 29 | + overflow: hidden; | |
| 30 | +} | |
| 31 | + | |
| 32 | +.x-box-tr { | |
| 33 | + background: transparent url(../images/default/box/corners.gif) no-repeat right -8px; | |
| 34 | +} | |
| 35 | + | |
| 36 | +.x-box-ml { | |
| 37 | + background: transparent url(../images/default/box/l.gif) repeat-y 0; | |
| 38 | + padding-left: 4px; | |
| 39 | + overflow: hidden; | |
| 40 | + zoom:1; | |
| 41 | +} | |
| 42 | + | |
| 43 | +.x-box-mc { | |
| 44 | + background: #eee url(../images/default/box/tb.gif) repeat-x 0 -16px; | |
| 45 | + padding: 4px 10px; | |
| 46 | + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; | |
| 47 | + color: #393939; | |
| 48 | + font-size: 12px; | |
| 49 | +} | |
| 50 | + | |
| 51 | +.x-box-mc h3 { | |
| 52 | + font-size: 14px; | |
| 53 | + font-weight: bold; | |
| 54 | + margin: 0 0 4px 0; | |
| 55 | + zoom:1; | |
| 56 | +} | |
| 57 | + | |
| 58 | +.x-box-mr { | |
| 59 | + background: transparent url(../images/default/box/r.gif) repeat-y right; | |
| 60 | + padding-right: 4px; | |
| 61 | + overflow: hidden; | |
| 62 | +} | |
| 63 | + | |
| 64 | +.x-box-bl { | |
| 65 | + background: transparent url(../images/default/box/corners.gif) no-repeat 0 -16px; | |
| 66 | + zoom:1; | |
| 67 | +} | |
| 68 | + | |
| 69 | +.x-box-bc { | |
| 70 | + background: transparent url(../images/default/box/tb.gif) repeat-x 0 -8px; | |
| 71 | + height: 8px; | |
| 72 | + overflow: hidden; | |
| 73 | +} | |
| 74 | + | |
| 75 | +.x-box-br { | |
| 76 | + background: transparent url(../images/default/box/corners.gif) no-repeat right -24px; | |
| 77 | +} | |
| 78 | + | |
| 79 | +.x-box-tl, .x-box-bl { | |
| 80 | + padding-left: 8px; | |
| 81 | + overflow: hidden; | |
| 82 | +} | |
| 83 | + | |
| 84 | +.x-box-tr, .x-box-br { | |
| 85 | + padding-right: 8px; | |
| 86 | + overflow: hidden; | |
| 87 | +} | |
| 88 | + | |
| 89 | +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { | |
| 90 | + background-image: url(../images/default/box/corners-blue.gif); | |
| 91 | +} | |
| 92 | + | |
| 93 | +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { | |
| 94 | + background-image: url(../images/default/box/tb-blue.gif); | |
| 95 | +} | |
| 96 | + | |
| 97 | +.x-box-blue .x-box-mc { | |
| 98 | + background-color: #c3daf9; | |
| 99 | +} | |
| 100 | + | |
| 101 | +.x-box-blue .x-box-mc h3 { | |
| 102 | + color: #17385b; | |
| 103 | +} | |
| 104 | + | |
| 105 | +.x-box-blue .x-box-ml { | |
| 106 | + background-image: url(../images/default/box/l-blue.gif); | |
| 107 | +} | |
| 108 | + | |
| 109 | +.x-box-blue .x-box-mr { | |
| 110 | + background-image: url(../images/default/box/r-blue.gif); | |
| 111 | +} | |
| 0 | 112 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/button.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-btn{ | |
| 10 | + font:normal 11px tahoma, verdana, helvetica; | |
| 11 | + cursor:pointer; | |
| 12 | + white-space: nowrap; | |
| 13 | +} | |
| 14 | +.x-btn button{ | |
| 15 | + border:0 none; | |
| 16 | + background:transparent; | |
| 17 | + font:normal 11px tahoma,verdana,helvetica; | |
| 18 | + padding-left:3px; | |
| 19 | + padding-right:3px; | |
| 20 | + cursor:pointer; | |
| 21 | + margin:0; | |
| 22 | + overflow:visible; | |
| 23 | + width:auto; | |
| 24 | + -moz-outline:0 none; | |
| 25 | + outline:0 none; | |
| 26 | +} | |
| 27 | +* html .ext-ie .x-btn button { | |
| 28 | + width:1px; | |
| 29 | +} | |
| 30 | +.ext-gecko .x-btn button { | |
| 31 | + padding-left:0; | |
| 32 | + padding-right:0; | |
| 33 | +} | |
| 34 | +.ext-ie .x-btn button { | |
| 35 | + padding-top:2px; | |
| 36 | +} | |
| 37 | +/* | |
| 38 | + Predefined css class for buttons with only icon. Add this class (x-btn-icon) and a class with a background-image | |
| 39 | + to your button for a button with just an icon. | |
| 40 | + e.g. | |
| 41 | + .my-class .x-btn-text { background-image: url(foo.gif); } | |
| 42 | + */ | |
| 43 | + | |
| 44 | +.x-btn-icon .x-btn-center .x-btn-text{ | |
| 45 | + background-position: center; | |
| 46 | + background-repeat: no-repeat; | |
| 47 | + height: 16px; | |
| 48 | + width: 16px; | |
| 49 | + cursor:pointer; | |
| 50 | + white-space: nowrap; | |
| 51 | + padding:0; | |
| 52 | +} | |
| 53 | +.x-btn-icon .x-btn-center{ | |
| 54 | + padding:1px; | |
| 55 | +} | |
| 56 | +.x-btn em { | |
| 57 | + font-style:normal; | |
| 58 | + font-weight:normal; | |
| 59 | +} | |
| 60 | +/* | |
| 61 | + Button class for icon and text. Add this class (x-btn-text-icon) and a class with a background-image | |
| 62 | + to your button for both text and icon. | |
| 63 | +*/ | |
| 64 | + | |
| 65 | +.x-btn-text-icon .x-btn-center .x-btn-text{ | |
| 66 | + background-position: 0 2px; | |
| 67 | + background-repeat: no-repeat; | |
| 68 | + padding-left:18px; | |
| 69 | + padding-top:3px; | |
| 70 | + padding-bottom:2px; | |
| 71 | + padding-right:0; | |
| 72 | +} | |
| 73 | +.ext-gecko3 .x-btn-text-icon .x-btn-center .x-btn-text { | |
| 74 | + padding-top:2px; | |
| 75 | +} | |
| 76 | +.x-btn-left, .x-btn-right{ | |
| 77 | + font-size:1px; | |
| 78 | + line-height:1px; | |
| 79 | +} | |
| 80 | +.x-btn-left{ | |
| 81 | + width:3px; | |
| 82 | + height:21px; | |
| 83 | + background:url(../images/default/button/btn-sprite.gif) no-repeat 0 0; | |
| 84 | +} | |
| 85 | +.x-btn-right{ | |
| 86 | + width:3px; | |
| 87 | + height:21px; | |
| 88 | + background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -21px; | |
| 89 | +} | |
| 90 | +.x-btn-left i, .x-btn-right i{ | |
| 91 | + display:block; | |
| 92 | + width:3px; | |
| 93 | + overflow:hidden; | |
| 94 | + font-size:1px; | |
| 95 | + line-height:1px; | |
| 96 | +} | |
| 97 | +.x-btn-center{ | |
| 98 | + background:url(../images/default/button/btn-sprite.gif) repeat-x 0 -42px; | |
| 99 | + vertical-align: middle; | |
| 100 | + text-align:center; | |
| 101 | + padding:0 5px; | |
| 102 | + cursor:pointer; | |
| 103 | + white-space:nowrap; | |
| 104 | +} | |
| 105 | +.x-btn-over .x-btn-left{ | |
| 106 | + background-position:0 -63px; | |
| 107 | +} | |
| 108 | +.x-btn-over .x-btn-right{ | |
| 109 | + background-position:0 -84px; | |
| 110 | +} | |
| 111 | +.x-btn-over .x-btn-center{ | |
| 112 | + background-position:0 -105px; | |
| 113 | +} | |
| 114 | +.x-btn-click .x-btn-center, .x-btn-menu-active .x-btn-center{ | |
| 115 | + background-position:0 -126px; | |
| 116 | +} | |
| 117 | +.x-btn-disabled *{ | |
| 118 | + color:gray !important; | |
| 119 | + cursor:default !important; | |
| 120 | +} | |
| 121 | +.x-btn-menu-text-wrap .x-btn-center { | |
| 122 | + padding:0 3px; | |
| 123 | +} | |
| 124 | +.ext-gecko .x-btn-menu-text-wrap .x-btn-center { | |
| 125 | + padding:0 1px; | |
| 126 | +} | |
| 127 | +.x-btn-menu-arrow-wrap .x-btn-center { | |
| 128 | + padding:0; | |
| 129 | +} | |
| 130 | +.x-btn-menu-arrow-wrap .x-btn-center button { | |
| 131 | + width:12px !important; | |
| 132 | + height:21px; | |
| 133 | + padding:0 !important; | |
| 134 | + display:block; | |
| 135 | + background:transparent url(../images/default/button/btn-arrow.gif) no-repeat left 3px; | |
| 136 | +} | |
| 137 | +.x-btn-with-menu .x-btn-center { | |
| 138 | + padding-right:2px !important; | |
| 139 | +} | |
| 140 | +.x-btn-with-menu .x-btn-center em { | |
| 141 | + display:block; | |
| 142 | + background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 0; | |
| 143 | + padding-right:10px; | |
| 144 | +} | |
| 145 | + | |
| 146 | +.x-btn-text-icon .x-btn-with-menu .x-btn-center em { | |
| 147 | + display:block; | |
| 148 | + background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 3px; | |
| 149 | + padding-right:10px; | |
| 150 | +} | |
| 151 | + | |
| 152 | +/* Toggle button styles */ | |
| 153 | +.x-btn-pressed .x-btn-left{ | |
| 154 | + background: url(../images/default/button/btn-sprite.gif) no-repeat 0 -63px; | |
| 155 | +} | |
| 156 | +.x-btn-pressed .x-btn-right{ | |
| 157 | + background: url(../images/default/button/btn-sprite.gif) no-repeat 0 -84px; | |
| 158 | +} | |
| 159 | +.x-btn-pressed .x-btn-center{ | |
| 160 | + background: url(../images/default/button/btn-sprite.gif) repeat-x 0 -126px; | |
| 161 | +} | |
| 0 | 162 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/combo.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-combo-list { | |
| 10 | + border:1px solid #98c0f4; | |
| 11 | + background:#ddecfe; | |
| 12 | + zoom:1; | |
| 13 | + overflow:hidden; | |
| 14 | +} | |
| 15 | +.x-combo-list-inner { | |
| 16 | + overflow:auto; | |
| 17 | + background:white; | |
| 18 | + position:relative; /* for calculating scroll offsets */ | |
| 19 | + zoom:1; | |
| 20 | + overflow-x:hidden; | |
| 21 | +} | |
| 22 | +.x-combo-list-hd { | |
| 23 | + font:bold 11px tahoma, arial, helvetica, sans-serif; | |
| 24 | + color:#15428b; | |
| 25 | + background-image: url(../images/default/layout/panel-title-light-bg.gif); | |
| 26 | + border-bottom:1px solid #98c0f4; | |
| 27 | + padding:3px; | |
| 28 | +} | |
| 29 | +.x-resizable-pinned .x-combo-list-inner { | |
| 30 | + border-bottom:1px solid #98c0f4; | |
| 31 | +} | |
| 32 | +.x-combo-list-item { | |
| 33 | + font:normal 12px tahoma, arial, helvetica, sans-serif; | |
| 34 | + padding:2px; | |
| 35 | + border:1px solid #fff; | |
| 36 | + white-space: nowrap; | |
| 37 | + overflow:hidden; | |
| 38 | + text-overflow: ellipsis; | |
| 39 | +} | |
| 40 | +.x-combo-list .x-combo-selected{ | |
| 41 | + border:1px dotted #a3bae9 !important; | |
| 42 | + background:#DFE8F6; | |
| 43 | + cursor:pointer; | |
| 44 | +} | |
| 45 | +.x-combo-noedit{ | |
| 46 | + cursor:pointer; | |
| 47 | +} | |
| 48 | +.x-combo-list .x-toolbar { | |
| 49 | + border-top:1px solid #98c0f4; | |
| 50 | + border-bottom:0 none; | |
| 51 | +} | |
| 52 | + | |
| 53 | +.x-combo-list-small .x-combo-list-item { | |
| 54 | + font:normal 11px tahoma, arial, helvetica, sans-serif; | |
| 55 | +} | |
| 0 | 56 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/core.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.ext-el-mask { | |
| 10 | + z-index: 20000; | |
| 11 | + position: absolute; | |
| 12 | + top:0; | |
| 13 | + left:0; | |
| 14 | + -moz-opacity: 0.5; | |
| 15 | + opacity: .50; | |
| 16 | + filter: alpha(opacity=50); | |
| 17 | + background-color: #CCC; | |
| 18 | + width: 100%; | |
| 19 | + height: 100%; | |
| 20 | + zoom: 1; | |
| 21 | +} | |
| 22 | +.ext-el-mask-msg { | |
| 23 | + z-index: 20001; | |
| 24 | + position: absolute; | |
| 25 | + top: 0; | |
| 26 | + left: 0; | |
| 27 | + border:1px solid #6593cf; | |
| 28 | + background: #c3daf9 url(../images/default/box/tb-blue.gif) repeat-x 0 -16px; | |
| 29 | + padding:2px; | |
| 30 | +} | |
| 31 | +.ext-el-mask-msg div { | |
| 32 | + padding:5px 10px 5px 10px; | |
| 33 | + background: #eee; | |
| 34 | + border:1px solid #a3bad9; | |
| 35 | + color:#222; | |
| 36 | + font:normal 11px tahoma, arial, helvetica, sans-serif; | |
| 37 | + cursor:wait; | |
| 38 | +} | |
| 39 | + | |
| 40 | +.ext-shim { | |
| 41 | + position:absolute; | |
| 42 | + visibility:hidden; | |
| 43 | + left:0; | |
| 44 | + top:0; | |
| 45 | + overflow:hidden; | |
| 46 | +} | |
| 47 | +.ext-ie .ext-shim { | |
| 48 | + filter: alpha(opacity=0); | |
| 49 | +} | |
| 50 | +.ext-ie6 .ext-shim { | |
| 51 | + margin-left: 5px; | |
| 52 | + margin-top: 3px; | |
| 53 | +} | |
| 54 | + | |
| 55 | +.x-mask-loading div { | |
| 56 | + padding:5px 10px 5px 25px; | |
| 57 | + background: #fbfbfb url( '../images/default/grid/loading.gif' ) no-repeat 5px 5px; | |
| 58 | + line-height: 16px; | |
| 59 | +} | |
| 60 | +/* class for hiding elements without using display:none */ | |
| 61 | +.x-hidden, .x-hide-offsets { | |
| 62 | + position:absolute; | |
| 63 | + left:-10000px; | |
| 64 | + top:-10000px; | |
| 65 | + visibility:hidden; | |
| 66 | +} | |
| 67 | +.x-hide-display { | |
| 68 | + display:none !important; | |
| 69 | +} | |
| 70 | + | |
| 71 | +.x-hide-visibility { | |
| 72 | + visibility:hidden !important; | |
| 73 | +} | |
| 74 | + | |
| 75 | +.x-masked { | |
| 76 | + overflow: hidden !important; | |
| 77 | +} | |
| 78 | + | |
| 79 | +.x-masked select, .x-masked object, .x-masked embed { | |
| 80 | + visibility: hidden; | |
| 81 | +} | |
| 82 | + | |
| 83 | +.x-layer { | |
| 84 | + visibility: hidden; | |
| 85 | +} | |
| 86 | + | |
| 87 | +.x-unselectable, .x-unselectable * { | |
| 88 | + -moz-user-select: none; | |
| 89 | + -khtml-user-select: none; | |
| 90 | +} | |
| 91 | + | |
| 92 | +.x-repaint { | |
| 93 | + zoom: 1; | |
| 94 | + background-color: transparent; | |
| 95 | + -moz-outline: none; | |
| 96 | +} | |
| 97 | + | |
| 98 | +.x-item-disabled { | |
| 99 | + color: gray; | |
| 100 | + cursor: default; | |
| 101 | + opacity: .6; | |
| 102 | + -moz-opacity: .6; | |
| 103 | + filter: alpha(opacity=60); | |
| 104 | +} | |
| 105 | + | |
| 106 | +.x-item-disabled * { | |
| 107 | + color: gray !important; | |
| 108 | + cursor: default !important; | |
| 109 | +} | |
| 110 | + | |
| 111 | +.x-splitbar-proxy { | |
| 112 | + position: absolute; | |
| 113 | + visibility: hidden; | |
| 114 | + z-index: 20001; | |
| 115 | + background: #aaa; | |
| 116 | + zoom: 1; | |
| 117 | + line-height: 1px; | |
| 118 | + font-size: 1px; | |
| 119 | + overflow: hidden; | |
| 120 | +} | |
| 121 | + | |
| 122 | +.x-splitbar-h, .x-splitbar-proxy-h { | |
| 123 | + cursor: e-resize; | |
| 124 | + cursor: col-resize; | |
| 125 | +} | |
| 126 | + | |
| 127 | +.x-splitbar-v, .x-splitbar-proxy-v { | |
| 128 | + cursor: s-resize; | |
| 129 | + cursor: row-resize; | |
| 130 | +} | |
| 131 | + | |
| 132 | +.x-color-palette { | |
| 133 | + width: 150px; | |
| 134 | + height: 92px; | |
| 135 | + cursor: pointer; | |
| 136 | +} | |
| 137 | + | |
| 138 | +.x-color-palette a { | |
| 139 | + border: 1px solid #fff; | |
| 140 | + float: left; | |
| 141 | + padding: 2px; | |
| 142 | + text-decoration: none; | |
| 143 | + -moz-outline: 0 none; | |
| 144 | + outline: 0 none; | |
| 145 | + cursor: pointer; | |
| 146 | +} | |
| 147 | + | |
| 148 | +.x-color-palette a:hover, .x-color-palette a.x-color-palette-sel { | |
| 149 | + border: 1px solid #8BB8F3; | |
| 150 | + background: #deecfd; | |
| 151 | +} | |
| 152 | + | |
| 153 | +.x-color-palette em { | |
| 154 | + display: block; | |
| 155 | + border: 1px solid #ACA899; | |
| 156 | +} | |
| 157 | + | |
| 158 | +.x-color-palette em span { | |
| 159 | + cursor: pointer; | |
| 160 | + display: block; | |
| 161 | + height: 10px; | |
| 162 | + line-height: 10px; | |
| 163 | + width: 10px; | |
| 164 | +} | |
| 165 | + | |
| 166 | +.x-ie-shadow { | |
| 167 | + display: none; | |
| 168 | + position: absolute; | |
| 169 | + overflow: hidden; | |
| 170 | + left:0; | |
| 171 | + top:0; | |
| 172 | + background:#777; | |
| 173 | + zoom:1; | |
| 174 | +} | |
| 175 | + | |
| 176 | +.x-shadow { | |
| 177 | + display: none; | |
| 178 | + position: absolute; | |
| 179 | + overflow: hidden; | |
| 180 | + left:0; | |
| 181 | + top:0; | |
| 182 | +} | |
| 183 | + | |
| 184 | +.x-shadow * { | |
| 185 | + overflow: hidden; | |
| 186 | +} | |
| 187 | + | |
| 188 | +.x-shadow * { | |
| 189 | + padding: 0; | |
| 190 | + border: 0; | |
| 191 | + margin: 0; | |
| 192 | + clear: none; | |
| 193 | + zoom: 1; | |
| 194 | +} | |
| 195 | + | |
| 196 | +/* top bottom */ | |
| 197 | +.x-shadow .xstc, .x-shadow .xsbc { | |
| 198 | + height: 6px; | |
| 199 | + float: left; | |
| 200 | +} | |
| 201 | + | |
| 202 | +/* corners */ | |
| 203 | +.x-shadow .xstl, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbr { | |
| 204 | + width: 6px; | |
| 205 | + height: 6px; | |
| 206 | + float: left; | |
| 207 | +} | |
| 208 | + | |
| 209 | +/* sides */ | |
| 210 | +.x-shadow .xsc { | |
| 211 | + width: 100%; | |
| 212 | +} | |
| 213 | + | |
| 214 | +.x-shadow .xsml, .x-shadow .xsmr { | |
| 215 | + width: 6px; | |
| 216 | + float: left; | |
| 217 | + height: 100%; | |
| 218 | +} | |
| 219 | + | |
| 220 | +.x-shadow .xsmc { | |
| 221 | + float: left; | |
| 222 | + height: 100%; | |
| 223 | + background: transparent url( ../images/default/shadow-c.png ); | |
| 224 | +} | |
| 225 | + | |
| 226 | +.x-shadow .xst, .x-shadow .xsb { | |
| 227 | + height: 6px; | |
| 228 | + overflow: hidden; | |
| 229 | + width: 100%; | |
| 230 | +} | |
| 231 | + | |
| 232 | +.x-shadow .xsml { | |
| 233 | + background: transparent url( ../images/default/shadow-lr.png ) repeat-y 0 0; | |
| 234 | +} | |
| 235 | + | |
| 236 | +.x-shadow .xsmr { | |
| 237 | + background: transparent url( ../images/default/shadow-lr.png ) repeat-y -6px 0; | |
| 238 | +} | |
| 239 | + | |
| 240 | +.x-shadow .xstl { | |
| 241 | + background: transparent url( ../images/default/shadow.png ) no-repeat 0 0; | |
| 242 | +} | |
| 243 | + | |
| 244 | +.x-shadow .xstc { | |
| 245 | + background: transparent url( ../images/default/shadow.png ) repeat-x 0 -30px; | |
| 246 | +} | |
| 247 | + | |
| 248 | +.x-shadow .xstr { | |
| 249 | + background: transparent url( ../images/default/shadow.png ) repeat-x 0 -18px; | |
| 250 | +} | |
| 251 | + | |
| 252 | +.x-shadow .xsbl { | |
| 253 | + background: transparent url( ../images/default/shadow.png ) no-repeat 0 -12px; | |
| 254 | +} | |
| 255 | + | |
| 256 | +.x-shadow .xsbc { | |
| 257 | + background: transparent url( ../images/default/shadow.png ) repeat-x 0 -36px; | |
| 258 | +} | |
| 259 | + | |
| 260 | +.x-shadow .xsbr { | |
| 261 | + background: transparent url( ../images/default/shadow.png ) repeat-x 0 -6px; | |
| 262 | +} | |
| 263 | + | |
| 264 | +.loading-indicator { | |
| 265 | + font-size: 11px; | |
| 266 | + background-image: url(../images/default/grid/loading.gif); | |
| 267 | + background-repeat: no-repeat; | |
| 268 | + background-position: left; | |
| 269 | + padding-left: 20px; | |
| 270 | + line-height: 16px; | |
| 271 | + margin: 3px; | |
| 272 | +} | |
| 273 | + | |
| 274 | +.x-text-resize { | |
| 275 | + position: absolute; | |
| 276 | + left: -1000px; | |
| 277 | + top: -1000px; | |
| 278 | + visibility: hidden; | |
| 279 | + zoom: 1; | |
| 280 | +} | |
| 281 | + | |
| 282 | +.x-drag-overlay { | |
| 283 | + width: 100%; | |
| 284 | + height: 100%; | |
| 285 | + display: none; | |
| 286 | + position: absolute; | |
| 287 | + left: 0; | |
| 288 | + top: 0; | |
| 289 | + background-image:url(../images/default/s.gif); | |
| 290 | + z-index: 20000; | |
| 291 | +} | |
| 292 | + | |
| 293 | +.x-clear { | |
| 294 | + clear:both; | |
| 295 | + height:0; | |
| 296 | + overflow:hidden; | |
| 297 | + line-height:0; | |
| 298 | + font-size:0; | |
| 299 | +} | |
| 300 | + | |
| 301 | + | |
| 302 | +.x-spotlight { | |
| 303 | + z-index: 8999; | |
| 304 | + position: absolute; | |
| 305 | + top:0; | |
| 306 | + left:0; | |
| 307 | + -moz-opacity: 0.5; | |
| 308 | + opacity: .50; | |
| 309 | + filter: alpha(opacity=50); | |
| 310 | + background-color: #CCC; | |
| 311 | + width:0; | |
| 312 | + height:0; | |
| 313 | + zoom: 1; | |
| 314 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/date-picker.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-date-picker { | |
| 10 | + border: 1px solid #1b376c; | |
| 11 | + border-top:0 none; | |
| 12 | + background:#fff; | |
| 13 | + position:relative; | |
| 14 | +} | |
| 15 | +.x-date-picker a { | |
| 16 | + -moz-outline:0 none; | |
| 17 | + outline:0 none; | |
| 18 | +} | |
| 19 | +.x-date-inner, .x-date-inner td, .x-date-inner th{ | |
| 20 | + border-collapse:separate; | |
| 21 | +} | |
| 22 | +.x-date-middle,.x-date-left,.x-date-right { | |
| 23 | + background: url(../images/default/shared/hd-sprite.gif) repeat-x 0 -83px; | |
| 24 | + color:#FFF; | |
| 25 | + font:bold 11px "sans serif", tahoma, verdana, helvetica; | |
| 26 | + overflow:hidden; | |
| 27 | +} | |
| 28 | + | |
| 29 | +.x-date-middle .x-btn-left,.x-date-middle .x-btn-center,.x-date-middle .x-btn-right{ | |
| 30 | + background:transparent !important; | |
| 31 | + vertical-align:middle; | |
| 32 | +} | |
| 33 | +.x-date-middle .x-btn .x-btn-text { | |
| 34 | + color:#fff; | |
| 35 | +} | |
| 36 | +.x-date-middle .x-btn-with-menu .x-btn-center em { | |
| 37 | + background:transparent url(../images/default/toolbar/btn-arrow-light.gif) no-repeat right 0; | |
| 38 | +} | |
| 39 | +.x-date-right, .x-date-left { | |
| 40 | + width:18px; | |
| 41 | +} | |
| 42 | +.x-date-right{ | |
| 43 | + text-align:right; | |
| 44 | +} | |
| 45 | +.x-date-middle { | |
| 46 | + padding-top:2px;padding-bottom:2px; | |
| 47 | + width:130px; /* FF3 */ | |
| 48 | +} | |
| 49 | +.x-date-right a, .x-date-left a{ | |
| 50 | + display:block; | |
| 51 | + width:16px; | |
| 52 | + height:16px; | |
| 53 | + background-position: center; | |
| 54 | + background-repeat: no-repeat; | |
| 55 | + cursor:pointer; | |
| 56 | + -moz-opacity: 0.6; | |
| 57 | + opacity:.6; | |
| 58 | + filter: alpha(opacity=60); | |
| 59 | +} | |
| 60 | +.x-date-right a:hover, .x-date-left a:hover{ | |
| 61 | + -moz-opacity: 1; | |
| 62 | + opacity:1; | |
| 63 | + filter: alpha(opacity=100); | |
| 64 | +} | |
| 65 | +.x-date-right a { | |
| 66 | + background-image: url(../images/default/shared/right-btn.gif); | |
| 67 | + margin-right:2px; | |
| 68 | + text-decoration:none !important; | |
| 69 | +} | |
| 70 | +.x-date-left a{ | |
| 71 | + background-image: url(../images/default/shared/left-btn.gif); | |
| 72 | + margin-left:2px; | |
| 73 | + text-decoration:none !important; | |
| 74 | +} | |
| 75 | +table.x-date-inner { | |
| 76 | + width:100%; | |
| 77 | + table-layout:fixed; | |
| 78 | +} | |
| 79 | +.x-date-inner th { | |
| 80 | + width:25px; | |
| 81 | +} | |
| 82 | +.x-date-inner th { | |
| 83 | + background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top; | |
| 84 | + text-align:right !important; | |
| 85 | + border-bottom: 1px solid #a3bad9; | |
| 86 | + font:normal 10px arial, helvetica,tahoma,sans-serif; | |
| 87 | + color:#233d6d; | |
| 88 | + cursor:default; | |
| 89 | + padding:0; | |
| 90 | + border-collapse:separate; | |
| 91 | +} | |
| 92 | +.x-date-inner th span { | |
| 93 | + display:block; | |
| 94 | + padding:2px; | |
| 95 | + padding-right:7px; | |
| 96 | +} | |
| 97 | +.x-date-inner td { | |
| 98 | + border: 1px solid #fff; | |
| 99 | + text-align:right; | |
| 100 | + padding:0; | |
| 101 | +} | |
| 102 | +.x-date-inner a { | |
| 103 | + padding:2px 5px; | |
| 104 | + display:block; | |
| 105 | + font:normal 11px arial, helvetica,tahoma,sans-serif; | |
| 106 | + text-decoration:none; | |
| 107 | + color:black; | |
| 108 | + text-align:right; | |
| 109 | + zoom:1; | |
| 110 | +} | |
| 111 | +.x-date-inner .x-date-active{ | |
| 112 | + cursor:pointer; | |
| 113 | + color:black; | |
| 114 | +} | |
| 115 | +.x-date-inner .x-date-selected a{ | |
| 116 | + background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top; | |
| 117 | + border:1px solid #8db2e3; | |
| 118 | + padding:1px 4px; | |
| 119 | +} | |
| 120 | +.x-date-inner .x-date-today a{ | |
| 121 | + border: 1px solid darkred; | |
| 122 | + padding:1px 4px; | |
| 123 | +} | |
| 124 | +.x-date-inner .x-date-selected span{ | |
| 125 | + font-weight:bold; | |
| 126 | +} | |
| 127 | +.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a { | |
| 128 | + color:#aaaaaa; | |
| 129 | + text-decoration:none !important; | |
| 130 | +} | |
| 131 | +.x-date-bottom { | |
| 132 | + padding:4px; | |
| 133 | + border-top: 1px solid #a3bad9; | |
| 134 | + background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top; | |
| 135 | +} | |
| 136 | + | |
| 137 | +.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{ | |
| 138 | + text-decoration:none !important; | |
| 139 | + color:black; | |
| 140 | + background: #ddecfe; | |
| 141 | +} | |
| 142 | + | |
| 143 | +.x-date-inner .x-date-disabled a { | |
| 144 | + cursor:default; | |
| 145 | + background:#eeeeee; | |
| 146 | + color:#bbbbbb; | |
| 147 | +} | |
| 148 | +.x-date-mmenu{ | |
| 149 | + background:#eeeeee !important; | |
| 150 | +} | |
| 151 | +.x-date-mmenu .x-menu-item { | |
| 152 | + font-size:10px; | |
| 153 | + padding:1px 24px 1px 4px; | |
| 154 | + white-space: nowrap; | |
| 155 | + color:#000; | |
| 156 | +} | |
| 157 | +.x-date-mmenu .x-menu-item .x-menu-item-icon { | |
| 158 | + width:10px;height:10px;margin-right:5px; | |
| 159 | + background-position:center -4px !important; | |
| 160 | +} | |
| 161 | + | |
| 162 | +.x-date-mp { | |
| 163 | + position:absolute; | |
| 164 | + left:0; | |
| 165 | + top:0; | |
| 166 | + background:white; | |
| 167 | + display:none; | |
| 168 | +} | |
| 169 | +.x-date-mp td { | |
| 170 | + padding:2px; | |
| 171 | + font:normal 11px arial, helvetica,tahoma,sans-serif; | |
| 172 | +} | |
| 173 | +td.x-date-mp-month,td.x-date-mp-year,td.x-date-mp-ybtn { | |
| 174 | + border: 0 none; | |
| 175 | + text-align:center; | |
| 176 | + vertical-align: middle; | |
| 177 | + width:25%; | |
| 178 | +} | |
| 179 | +.x-date-mp-ok { | |
| 180 | + margin-right:3px; | |
| 181 | +} | |
| 182 | +.x-date-mp-btns button { | |
| 183 | + text-decoration:none; | |
| 184 | + text-align:center; | |
| 185 | + text-decoration:none !important; | |
| 186 | + background:#083772; | |
| 187 | + color:white; | |
| 188 | + border:1px solid; | |
| 189 | + border-color: #3366cc #000055 #000055 #3366cc; | |
| 190 | + padding:1px 3px 1px; | |
| 191 | + font:normal 11px arial, helvetica,tahoma,sans-serif; | |
| 192 | + cursor:pointer; | |
| 193 | +} | |
| 194 | +.x-date-mp-btns { | |
| 195 | + background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top; | |
| 196 | +} | |
| 197 | +.x-date-mp-btns td { | |
| 198 | + border-top: 1px solid #c5d2df; | |
| 199 | + text-align:center; | |
| 200 | +} | |
| 201 | +td.x-date-mp-month a,td.x-date-mp-year a { | |
| 202 | + display:block; | |
| 203 | + padding:2px 4px; | |
| 204 | + text-decoration:none; | |
| 205 | + text-align:center; | |
| 206 | + color:#15428b; | |
| 207 | +} | |
| 208 | + | |
| 209 | +td.x-date-mp-month a:hover,td.x-date-mp-year a:hover { | |
| 210 | + color:#15428b; | |
| 211 | + text-decoration:none; | |
| 212 | + cursor:pointer; | |
| 213 | + background: #ddecfe; | |
| 214 | +} | |
| 215 | + | |
| 216 | +td.x-date-mp-sel a { | |
| 217 | + padding:1px 3px; | |
| 218 | + background: #dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top; | |
| 219 | + border:1px solid #8db2e3; | |
| 220 | +} | |
| 221 | +.x-date-mp-ybtn a { | |
| 222 | + overflow:hidden; | |
| 223 | + width:15px; | |
| 224 | + height:15px; | |
| 225 | + cursor:pointer; | |
| 226 | + background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat; | |
| 227 | + display:block; | |
| 228 | + margin:0 auto; | |
| 229 | +} | |
| 230 | +.x-date-mp-ybtn a.x-date-mp-next { | |
| 231 | + background-position:0 -120px; | |
| 232 | +} | |
| 233 | +.x-date-mp-ybtn a.x-date-mp-next:hover { | |
| 234 | + background-position:-15px -120px; | |
| 235 | +} | |
| 236 | +.x-date-mp-ybtn a.x-date-mp-prev { | |
| 237 | + background-position:0 -105px; | |
| 238 | +} | |
| 239 | +.x-date-mp-ybtn a.x-date-mp-prev:hover { | |
| 240 | + background-position:-15px -105px; | |
| 241 | +} | |
| 242 | +.x-date-mp-ybtn { | |
| 243 | + text-align:center; | |
| 244 | +} | |
| 245 | +td.x-date-mp-sep { | |
| 246 | + border-right:1px solid #c5d2df; | |
| 247 | +} | |
| 0 | 248 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/dd.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-dd-drag-proxy{ | |
| 10 | + position:absolute; | |
| 11 | + left:0;top:0; | |
| 12 | + visibility:hidden; | |
| 13 | + z-index:15000; | |
| 14 | +} | |
| 15 | +.x-dd-drag-ghost{ | |
| 16 | + color: black; | |
| 17 | + font: normal 11px arial, helvetica, sans-serif; | |
| 18 | + -moz-opacity: 0.85; | |
| 19 | + opacity:.85; | |
| 20 | + filter: alpha(opacity=85); | |
| 21 | + border-top:1px solid #dddddd; | |
| 22 | + border-left:1px solid #dddddd; | |
| 23 | + border-right:1px solid #bbbbbb; | |
| 24 | + border-bottom:1px solid #bbbbbb; | |
| 25 | + padding:3px; | |
| 26 | + padding-left:20px; | |
| 27 | + background-color:white; | |
| 28 | + white-space:nowrap; | |
| 29 | +} | |
| 30 | +.x-dd-drag-repair .x-dd-drag-ghost{ | |
| 31 | + -moz-opacity: 0.4; | |
| 32 | + opacity:.4; | |
| 33 | + filter: alpha(opacity=40); | |
| 34 | + border:0 none; | |
| 35 | + padding:0; | |
| 36 | + background-color:transparent; | |
| 37 | +} | |
| 38 | +.x-dd-drag-repair .x-dd-drop-icon{ | |
| 39 | + visibility:hidden; | |
| 40 | +} | |
| 41 | +.x-dd-drop-icon{ | |
| 42 | + position:absolute; | |
| 43 | + top:3px; | |
| 44 | + left:3px; | |
| 45 | + display:block; | |
| 46 | + width:16px; | |
| 47 | + height:16px; | |
| 48 | + background-color:transparent; | |
| 49 | + background-position: center; | |
| 50 | + background-repeat: no-repeat; | |
| 51 | + z-index:1; | |
| 52 | +} | |
| 53 | +.x-dd-drop-nodrop .x-dd-drop-icon{ | |
| 54 | + background-image: url(../images/default/dd/drop-no.gif); | |
| 55 | +} | |
| 56 | +.x-dd-drop-ok .x-dd-drop-icon{ | |
| 57 | + background-image: url(../images/default/dd/drop-yes.gif); | |
| 58 | +} | |
| 59 | +.x-dd-drop-ok-add .x-dd-drop-icon{ | |
| 60 | + background-image: url(../images/default/dd/drop-add.gif); | |
| 61 | +} | |
| 62 | + | |
| 63 | + | |
| 64 | +.x-view-selector { | |
| 65 | + position:absolute; | |
| 66 | + left:0; | |
| 67 | + top:0; | |
| 68 | + width:0; | |
| 69 | + background:#c3daf9; | |
| 70 | + border:1px dotted #3399bb; | |
| 71 | + opacity: .5; | |
| 72 | + -moz-opacity: .5; | |
| 73 | + filter:alpha(opacity=50); | |
| 74 | + zoom:1; | |
| 75 | +} | |
| 0 | 76 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/debug.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +#x-debug-browser .x-tree .x-tree-node a span { | |
| 10 | + color:#222297; | |
| 11 | + font-size:11px; | |
| 12 | + padding-top:2px; | |
| 13 | + font-family:"monotype","courier new",sans-serif; | |
| 14 | + line-height:18px; | |
| 15 | +} | |
| 16 | +#x-debug-browser .x-tree a i { | |
| 17 | + color:#FF4545; | |
| 18 | + font-style:normal; | |
| 19 | +} | |
| 20 | +#x-debug-browser .x-tree a em { | |
| 21 | + color:#999; | |
| 22 | +} | |
| 23 | +#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{ | |
| 24 | + background:#c3daf9; | |
| 25 | +} | |
| 26 | +#x-debug-browser .x-tool-toggle { | |
| 27 | + background-position:0 -75px; | |
| 28 | +} | |
| 29 | +#x-debug-browser .x-tool-toggle-over { | |
| 30 | + background-position:-15px -75px; | |
| 31 | +} | |
| 32 | +#x-debug-browser.x-panel-collapsed .x-tool-toggle { | |
| 33 | + background-position:0 -60px; | |
| 34 | +} | |
| 35 | +#x-debug-browser.x-panel-collapsed .x-tool-toggle-over { | |
| 36 | + background-position:-15px -60px; | |
| 37 | +} | |
| 0 | 38 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/dialog.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-window-dlg .x-window-body { | |
| 10 | + border:0 none !important; | |
| 11 | + padding:5px 10px; | |
| 12 | + overflow:hidden !important; | |
| 13 | +} | |
| 14 | +.x-window-dlg .x-window-mc { | |
| 15 | + border:0 none !important; | |
| 16 | +} | |
| 17 | +.x-window-dlg .ext-mb-text, | |
| 18 | +.x-window-dlg .x-window-header-text { | |
| 19 | + font-size:12px; | |
| 20 | +} | |
| 21 | +.x-window-dlg .ext-mb-input { | |
| 22 | + margin-top:4px; | |
| 23 | + width:95%; | |
| 24 | +} | |
| 25 | +.x-window-dlg .ext-mb-textarea { | |
| 26 | + margin-top:4px; | |
| 27 | + font:normal 12px tahoma,arial,helvetica,sans-serif; | |
| 28 | +} | |
| 29 | +.x-window-dlg .x-progress-wrap { | |
| 30 | + margin-top:4px; | |
| 31 | +} | |
| 32 | +.ext-ie .x-window-dlg .x-progress-wrap { | |
| 33 | + margin-top:6px; | |
| 34 | +} | |
| 35 | +.x-window-dlg .x-msg-box-wait { | |
| 36 | + background: transparent url(../images/default/grid/loading.gif) no-repeat left; | |
| 37 | + display:block; | |
| 38 | + width:300px; | |
| 39 | + padding-left:18px; | |
| 40 | + line-height:18px; | |
| 41 | +} | |
| 42 | +.x-window-dlg .ext-mb-icon { | |
| 43 | + float:left; | |
| 44 | + width:47px; | |
| 45 | + height:32px; | |
| 46 | +} | |
| 47 | +.x-window-dlg .ext-mb-icon { | |
| 48 | + float:left; | |
| 49 | + width:47px; | |
| 50 | + height:32px; | |
| 51 | +} | |
| 52 | +.ext-ie .x-window-dlg .ext-mb-icon { | |
| 53 | + width:44px; /* 3px IE margin issue */ | |
| 54 | +} | |
| 55 | +.x-window-dlg .ext-mb-info { | |
| 56 | + background:transparent url(../images/default/window/icon-info.gif) no-repeat top left; | |
| 57 | +} | |
| 58 | +.x-window-dlg .ext-mb-warning { | |
| 59 | + background:transparent url(../images/default/window/icon-warning.gif) no-repeat top left; | |
| 60 | +} | |
| 61 | +.x-window-dlg .ext-mb-question { | |
| 62 | + background:transparent url(../images/default/window/icon-question.gif) no-repeat top left; | |
| 63 | +} | |
| 64 | +.x-window-dlg .ext-mb-error { | |
| 65 | + background:transparent url(../images/default/window/icon-error.gif) no-repeat top left; | |
| 66 | +} | |
| 67 | +.ext-gecko2 .ext-mb-fix-cursor { | |
| 68 | + overflow:auto; | |
| 69 | +} | |
| 0 | 70 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/editor.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-html-editor-wrap { | |
| 10 | + border:1px solid #a9bfd3; | |
| 11 | + background:white; | |
| 12 | +} | |
| 13 | +.x-html-editor-tb .x-btn-text { | |
| 14 | + background:transparent url(../images/default/editor/tb-sprite.gif) no-repeat; | |
| 15 | +} | |
| 16 | +.x-html-editor-tb .x-edit-bold .x-btn-text { | |
| 17 | + background-position:0 0; | |
| 18 | +} | |
| 19 | +.x-html-editor-tb .x-edit-italic .x-btn-text { | |
| 20 | + background-position:-16px 0; | |
| 21 | +} | |
| 22 | +.x-html-editor-tb .x-edit-underline .x-btn-text { | |
| 23 | + background-position:-32px 0; | |
| 24 | +} | |
| 25 | +.x-html-editor-tb .x-edit-forecolor .x-btn-text { | |
| 26 | + background-position:-160px 0; | |
| 27 | +} | |
| 28 | +.x-html-editor-tb .x-edit-backcolor .x-btn-text { | |
| 29 | + background-position:-176px 0; | |
| 30 | +} | |
| 31 | +.x-html-editor-tb .x-edit-justifyleft .x-btn-text { | |
| 32 | + background-position:-112px 0; | |
| 33 | +} | |
| 34 | +.x-html-editor-tb .x-edit-justifycenter .x-btn-text { | |
| 35 | + background-position:-128px 0; | |
| 36 | +} | |
| 37 | +.x-html-editor-tb .x-edit-justifyright .x-btn-text { | |
| 38 | + background-position:-144px 0; | |
| 39 | +} | |
| 40 | +.x-html-editor-tb .x-edit-insertorderedlist .x-btn-text { | |
| 41 | + background-position:-80px 0; | |
| 42 | +} | |
| 43 | +.x-html-editor-tb .x-edit-insertunorderedlist .x-btn-text { | |
| 44 | + background-position:-96px 0; | |
| 45 | +} | |
| 46 | +.x-html-editor-tb .x-edit-increasefontsize .x-btn-text { | |
| 47 | + background-position:-48px 0; | |
| 48 | +} | |
| 49 | +.x-html-editor-tb .x-edit-decreasefontsize .x-btn-text { | |
| 50 | + background-position:-64px 0; | |
| 51 | +} | |
| 52 | +.x-html-editor-tb .x-edit-sourceedit .x-btn-text { | |
| 53 | + background-position:-192px 0; | |
| 54 | +} | |
| 55 | +.x-html-editor-tb .x-edit-createlink .x-btn-text { | |
| 56 | + background-position:-208px 0; | |
| 57 | +} | |
| 58 | + | |
| 59 | +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { | |
| 60 | + padding:5px; | |
| 61 | + padding-bottom:1px; | |
| 62 | +} | |
| 63 | + | |
| 64 | +.x-html-editor-tb .x-toolbar { | |
| 65 | + position:static !important; | |
| 66 | +} | |
| 0 | 67 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/ext-all.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;} | |
| 10 | +img,body,html{border:0;} | |
| 11 | +address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;} | |
| 12 | +ol,ul{list-style:none;} | |
| 13 | +caption,th{text-align:left;} | |
| 14 | +h1,h2,h3,h4,h5,h6{font-size:100%;} | |
| 15 | +q:before,q:after{content:'';} | |
| 16 | + | |
| 17 | +.ext-el-mask{z-index:20000;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:.50;filter:alpha(opacity=50);background-color:#CCC;width:100%;height:100%;zoom:1;} | |
| 18 | +.ext-el-mask-msg{z-index:20001;position:absolute;top:0;left:0;border:1px solid #6593cf;background:#c3daf9 url(../images/default/box/tb-blue.gif) repeat-x 0 -16px;padding:2px;} | |
| 19 | +.ext-el-mask-msg div{padding:5px 10px 5px 10px;background:#eee;border:1px solid #a3bad9;color:#222;font:normal 11px tahoma,arial,helvetica,sans-serif;cursor:wait;} | |
| 20 | +.ext-shim{position:absolute;visibility:hidden;left:0;top:0;overflow:hidden;} | |
| 21 | +.ext-ie .ext-shim{filter:alpha(opacity=0);} | |
| 22 | +.ext-ie6 .ext-shim{margin-left:5px;margin-top:3px;} | |
| 23 | +.x-mask-loading div{padding:5px 10px 5px 25px;background:#fbfbfb url( '../images/default/grid/loading.gif' ) no-repeat 5px 5px;line-height:16px;} | |
| 24 | +.x-hidden,.x-hide-offsets{position:absolute;left:-10000px;top:-10000px;visibility:hidden;} | |
| 25 | +.x-hide-display{display:none!important;} | |
| 26 | +.x-hide-visibility{visibility:hidden!important;} | |
| 27 | +.x-masked{overflow:hidden!important;} | |
| 28 | +.x-masked select,.x-masked object,.x-masked embed{visibility:hidden;} | |
| 29 | +.x-layer{visibility:hidden;} | |
| 30 | +.x-unselectable,.x-unselectable *{-moz-user-select:none;-khtml-user-select:none;} | |
| 31 | +.x-repaint{zoom:1;background-color:transparent;-moz-outline:none;} | |
| 32 | +.x-item-disabled{color:gray;cursor:default;opacity:.6;-moz-opacity:.6;filter:alpha(opacity=60);} | |
| 33 | +.x-item-disabled *{color:gray!important;cursor:default!important;} | |
| 34 | +.x-splitbar-proxy{position:absolute;visibility:hidden;z-index:20001;background:#aaa;zoom:1;line-height:1px;font-size:1px;overflow:hidden;} | |
| 35 | +.x-splitbar-h,.x-splitbar-proxy-h{cursor:e-resize;cursor:col-resize;} | |
| 36 | +.x-splitbar-v,.x-splitbar-proxy-v{cursor:s-resize;cursor:row-resize;} | |
| 37 | +.x-color-palette{width:150px;height:92px;cursor:pointer;} | |
| 38 | +.x-color-palette a{border:1px solid #fff;float:left;padding:2px;text-decoration:none;-moz-outline:0 none;outline:0 none;cursor:pointer;} | |
| 39 | +.x-color-palette a:hover,.x-color-palette a.x-color-palette-sel{border:1px solid #8BB8F3;background:#deecfd;} | |
| 40 | +.x-color-palette em{display:block;border:1px solid #ACA899;} | |
| 41 | +.x-color-palette em span{cursor:pointer;display:block;height:10px;line-height:10px;width:10px;} | |
| 42 | +.x-ie-shadow{display:none;position:absolute;overflow:hidden;left:0;top:0;background:#777;zoom:1;} | |
| 43 | +.x-shadow{display:none;position:absolute;overflow:hidden;left:0;top:0;} | |
| 44 | +.x-shadow *{overflow:hidden;} | |
| 45 | +.x-shadow *{padding:0;border:0;margin:0;clear:none;zoom:1;} | |
| 46 | +.x-shadow .xstc,.x-shadow .xsbc{height:6px;float:left;} | |
| 47 | +.x-shadow .xstl,.x-shadow .xstr,.x-shadow .xsbl,.x-shadow .xsbr{width:6px;height:6px;float:left;} | |
| 48 | +.x-shadow .xsc{width:100%;} | |
| 49 | +.x-shadow .xsml,.x-shadow .xsmr{width:6px;float:left;height:100%;} | |
| 50 | +.x-shadow .xsmc{float:left;height:100%;background:transparent url( ../images/default/shadow-c.png );} | |
| 51 | +.x-shadow .xst,.x-shadow .xsb{height:6px;overflow:hidden;width:100%;} | |
| 52 | +.x-shadow .xsml{background:transparent url( ../images/default/shadow-lr.png ) repeat-y 0 0;} | |
| 53 | +.x-shadow .xsmr{background:transparent url( ../images/default/shadow-lr.png ) repeat-y -6px 0;} | |
| 54 | +.x-shadow .xstl{background:transparent url( ../images/default/shadow.png ) no-repeat 0 0;} | |
| 55 | +.x-shadow .xstc{background:transparent url( ../images/default/shadow.png ) repeat-x 0 -30px;} | |
| 56 | +.x-shadow .xstr{background:transparent url( ../images/default/shadow.png ) repeat-x 0 -18px;} | |
| 57 | +.x-shadow .xsbl{background:transparent url( ../images/default/shadow.png ) no-repeat 0 -12px;} | |
| 58 | +.x-shadow .xsbc{background:transparent url( ../images/default/shadow.png ) repeat-x 0 -36px;} | |
| 59 | +.x-shadow .xsbr{background:transparent url( ../images/default/shadow.png ) repeat-x 0 -6px;} | |
| 60 | +.loading-indicator{font-size:11px;background-image:url(../images/default/grid/loading.gif);background-repeat:no-repeat;background-position:left;padding-left:20px;line-height:16px;margin:3px;} | |
| 61 | +.x-text-resize{position:absolute;left:-1000px;top:-1000px;visibility:hidden;zoom:1;} | |
| 62 | +.x-drag-overlay{width:100%;height:100%;display:none;position:absolute;left:0;top:0;background-image:url(../images/default/s.gif);z-index:20000;} | |
| 63 | +.x-clear{clear:both;height:0;overflow:hidden;line-height:0;font-size:0;} | |
| 64 | +.x-spotlight{z-index:8999;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:.50;filter:alpha(opacity=50);background-color:#CCC;width:0;height:0;zoom:1;} | |
| 65 | + | |
| 66 | +.x-tab-panel{overflow:hidden;} | |
| 67 | +.x-tab-panel-header,.x-tab-panel-footer{background:#deecfd;border:1px solid #8db2e3;overflow:hidden;zoom:1;} | |
| 68 | +.x-tab-panel-header{border:1px solid #8db2e3;padding-bottom:2px;} | |
| 69 | +.x-tab-panel-footer{border:1px solid #8db2e3;padding-top:2px;} | |
| 70 | +.x-tab-strip-wrap{width:100%;overflow:hidden;position:relative;zoom:1;} | |
| 71 | +ul.x-tab-strip{display:block;width:5000px;zoom:1;} | |
| 72 | +ul.x-tab-strip-top{padding-top:1px;background:url(../images/default/tabs/tab-strip-bg.gif) #cedff5 repeat-x bottom;border-bottom:1px solid #8db2e3;} | |
| 73 | +ul.x-tab-strip-bottom{padding-bottom:1px;background:url(../images/default/tabs/tab-strip-btm-bg.gif) #cedff5 repeat-x top;border-top:1px solid #8db2e3;border-bottom:0 none;} | |
| 74 | +.x-tab-panel-header-plain .x-tab-strip-top{background:transparent!important;padding-top:0!important;} | |
| 75 | +.x-tab-panel-header-plain{background:transparent!important;border-width:0!important;padding-bottom:0!important;} | |
| 76 | +.x-tab-panel-header-plain .x-tab-strip-spacer,.x-tab-panel-footer-plain .x-tab-strip-spacer{border:1px solid #8db2e3;height:2px;background:#deecfd;font-size:1px;line-height:1px;} | |
| 77 | +.x-tab-panel-header-plain .x-tab-strip-spacer{border-top:0 none;} | |
| 78 | +.x-tab-panel-footer-plain .x-tab-strip-spacer{border-bottom:0 none;} | |
| 79 | +.x-tab-panel-footer-plain .x-tab-strip-bottom{background:transparent!important;padding-bottom:0!important;} | |
| 80 | +.x-tab-panel-footer-plain{background:transparent!important;border-width:0!important;padding-top:0!important;} | |
| 81 | +.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer,.ext-border-box .x-tab-panel-footer-plain .x-tab-strip-spacer{height:3px;} | |
| 82 | +ul.x-tab-strip li{float:left;margin-left:2px;} | |
| 83 | +ul.x-tab-strip li.x-tab-edge{float:left;margin:0!important;padding:0!important;border:0 none!important;font-size:1px!important;line-height:1px!important;overflow:hidden;zoom:1;background:transparent!important;width:1px;} | |
| 84 | +.x-tab-strip a,.x-tab-strip span,.x-tab-strip em{display:block;} | |
| 85 | +.x-tab-strip a{text-decoration:none!important;-moz-outline:none;outline:none;cursor:pointer;} | |
| 86 | +.x-tab-strip-inner{overflow:hidden;text-overflow:ellipsis;} | |
| 87 | +.x-tab-strip span.x-tab-strip-text{font:normal 11px tahoma,arial,helvetica;color:#416aa3;white-space:nowrap;cursor:pointer;padding:4px 0;} | |
| 88 | +.x-tab-strip-top .x-tab-with-icon .x-tab-right{padding-left:6px;} | |
| 89 | +.x-tab-strip .x-tab-with-icon span.x-tab-strip-text{padding-left:20px;background-position:0 3px;background-repeat:no-repeat;} | |
| 90 | +.x-tab-strip-over span.x-tab-strip-text{color:#15428b;} | |
| 91 | +.x-tab-strip-active,.x-tab-strip-active a.x-tab-right{cursor:default;} | |
| 92 | +.x-tab-strip-active span.x-tab-strip-text{cursor:default;color:#15428b;font-weight:bold;} | |
| 93 | +.x-tab-strip-disabled .x-tabs-text{cursor:default;color:#aaa;} | |
| 94 | +.x-tab-panel-body{overflow:hidden;} | |
| 95 | +.x-tab-panel-bwrap{overflow:hidden;} | |
| 96 | +.ext-ie .x-tab-strip .x-tab-right{position:relative;} | |
| 97 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right{margin-bottom:-1px;} | |
| 98 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text{padding-bottom:5px;} | |
| 99 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right{margin-top:-1px;} | |
| 100 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text{padding-top:5px;} | |
| 101 | +.x-tab-strip-top .x-tab-right{background:transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat 0 -51px;padding-left:10px;} | |
| 102 | +.x-tab-strip-top .x-tab-left{background:transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat right -351px;padding-right:10px;} | |
| 103 | +.x-tab-strip-top .x-tab-strip-inner{background:transparent url(../images/default/tabs/tabs-sprite.gif) repeat-x 0 -201px;} | |
| 104 | +.x-tab-strip-top .x-tab-strip-over .x-tab-right{background-position:0 -101px;} | |
| 105 | +.x-tab-strip-top .x-tab-strip-over .x-tab-left{background-position:right -401px;} | |
| 106 | +.x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner{background-position:0 -251px;} | |
| 107 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right{background-position:0 0;} | |
| 108 | +.x-tab-strip-top .x-tab-strip-active .x-tab-left{background-position:right -301px;} | |
| 109 | +.x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner{background-position:0 -151px;} | |
| 110 | +.x-tab-strip-bottom .x-tab-right{background:url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom right;} | |
| 111 | +.x-tab-strip-bottom .x-tab-left{background:url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom left;} | |
| 112 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right{background:url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left;} | |
| 113 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-left{background:url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right;} | |
| 114 | +.x-tab-strip-bottom .x-tab-left{padding:0 10px;} | |
| 115 | +.x-tab-strip-bottom .x-tab-right{padding:0;} | |
| 116 | +.x-tab-strip .x-tab-strip-close{display:none;} | |
| 117 | +.x-tab-strip-closable{position:relative;} | |
| 118 | +.x-tab-strip-closable .x-tab-left{padding-right:19px;} | |
| 119 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close{background-image:url(../images/default/tabs/tab-close.gif);opacity:.6;-moz-opacity:.6;background-repeat:no-repeat;display:block;width:11px;height:11px;position:absolute;top:3px;right:3px;cursor:pointer;z-index:2;} | |
| 120 | +.x-tab-strip .x-tab-strip-active a.x-tab-strip-close{opacity:.8;-moz-opacity:.8;} | |
| 121 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{background-image:url(../images/default/tabs/tab-close.gif);opacity:1;-moz-opacity:1;} | |
| 122 | +.x-tab-panel-body{border:1px solid #8db2e3;background:#fff;} | |
| 123 | +.x-tab-panel-body-top{border-top:0 none;} | |
| 124 | +.x-tab-panel-body-bottom{border-bottom:0 none;} | |
| 125 | +.x-tab-scroller-left{background:transparent url(../images/default/tabs/scroll-left.gif) no-repeat -18px 0;border-bottom:1px solid #8db2e3;width:18px;position:absolute;left:0;top:0;z-index:10;cursor:pointer;} | |
| 126 | +.x-tab-scroller-left-over{background-position:0 0;} | |
| 127 | +.x-tab-scroller-left-disabled{background-position:-18px 0;opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);cursor:default;} | |
| 128 | +.x-tab-scroller-right{background:transparent url(../images/default/tabs/scroll-right.gif) no-repeat 0 0;border-bottom:1px solid #8db2e3;width:18px;position:absolute;right:0;top:0;z-index:10;cursor:pointer;} | |
| 129 | +.x-tab-scroller-right-over{background-position:-18px 0;} | |
| 130 | +.x-tab-scroller-right-disabled{background-position:0 0;opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);cursor:default;} | |
| 131 | +.x-tab-scrolling .x-tab-strip-wrap{margin-left:18px;margin-right:18px;} | |
| 132 | +.x-tab-scrolling{position:relative;} | |
| 133 | +.x-tab-panel-bbar .x-toolbar{border:1px solid #99bbe8;border-top:0 none;overflow:hidden;padding:2px;} | |
| 134 | +.x-tab-panel-tbar .x-toolbar{border:1px solid #99bbe8;border-top:0 none;overflow:hidden;padding:2px;} | |
| 135 | + | |
| 136 | + .x-form-field{margin:0;font:normal 12px tahoma,arial,helvetica,sans-serif;} | |
| 137 | +.x-form-text,textarea.x-form-field{padding:1px 3px;background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0;border:1px solid #B5B8C8;} | |
| 138 | +textarea.x-form-field{padding:2px 3px;} | |
| 139 | +.x-form-text{height:22px;line-height:18px;vertical-align:middle;} | |
| 140 | +.ext-ie .x-form-text{margin:-1px 0;height:22px;line-height:18px;} | |
| 141 | +.ext-ie textarea.x-form-field{margin:-1px 0;} | |
| 142 | +.ext-strict .x-form-text{height:18px;} | |
| 143 | +.ext-safari .x-form-text{height:20px;padding:0 3px;} | |
| 144 | +.ext-safari.ext-mac textarea.x-form-field{margin-bottom:-2px;} | |
| 145 | +.ext-gecko .x-form-text{padding-top:2px;padding-bottom:0;} | |
| 146 | +textarea{resize:none;} | |
| 147 | +.x-form-select-one{height:20px;line-height:18px;vertical-align:middle;background-color:#fff;border:1px solid #B5B8C8;} | |
| 148 | +.x-form-check-group,.x-form-radio-group{margin-bottom:0;} | |
| 149 | +.x-form-check-group .x-form-invalid .x-panel-body,.x-form-radio-group .x-form-invalid .x-panel-body{background-color:transparent;} | |
| 150 | +.x-form-check-wrap,.x-form-radio-wrap{padding:3px 0 0 0;line-height:18px;} | |
| 151 | +.x-form-check-group .x-form-check-wrap,.x-form-radio-group .x-form-radio-wrap{height:18px;} | |
| 152 | +.ext-ie .x-form-check-group .x-form-check-wrap,.ext-ie .x-form-radio-group .x-form-radio-wrap{height:21px;} | |
| 153 | +.ext-ie .x-form-check-wrap input,.ext-ie .x-form-radio-wrap input{width:15px;height:15px;} | |
| 154 | +.x-form-check,.x-form-radio{height:13px;width:13px;vertical-align:bottom;} | |
| 155 | +.x-form-radio{margin-bottom:3px;} | |
| 156 | +.x-form-check,.ext-ie .x-form-radio{margin-bottom:2px;} | |
| 157 | +.x-form-check-wrap-inner,.x-form-radio-wrap-inner{display:inline;padding:3px 0 0 0;} | |
| 158 | +.x-form-check{background:url('../images/default/form/checkbox.gif') no-repeat 0 0;} | |
| 159 | +.x-form-radio{background:url('../images/default/form/radio.gif') no-repeat 0 0;} | |
| 160 | +.x-form-check-focus .x-form-check,.x-form-check-over .x-form-check,.x-form-check-focus .x-form-radio,.x-form-check-over .x-form-radio{background-position:-13px 0;} | |
| 161 | +.x-form-check-down .x-form-check,.x-form-check-down .x-form-radio{background-position:-26px 0;} | |
| 162 | +.x-form-check-checked .x-form-check-focus .x-form-check,.x-form-check-checked .x-form-check-over .x-form-check{background-position:-13px -13px;} | |
| 163 | +.x-form-check-checked .x-form-check-down .x-form-check{background-position:-26px -13px;} | |
| 164 | +.x-form-check-checked .x-form-check,.x-form-check-checked .x-form-radio{background-position:0 -13px;} | |
| 165 | +.x-form-check-group-label{border-bottom:1px solid #99BBE8;color:#15428B;margin-bottom:5px;padding-left:3px!important;float:none!important;} | |
| 166 | +.x-form-field-wrap{position:relative;zoom:1;white-space:nowrap;} | |
| 167 | +.x-form-field-wrap .x-form-trigger{width:17px;height:21px;border:0;background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0;cursor:pointer;border-bottom:1px solid #B5B8C8;position:absolute;top:0;} | |
| 168 | +.ext-safari .x-form-field-wrap .x-form-trigger{height:21px;} | |
| 169 | +.x-form-field-wrap .x-form-date-trigger{background-image:url(../images/default/form/date-trigger.gif);cursor:pointer;} | |
| 170 | +.x-form-field-wrap .x-form-clear-trigger{background-image:url(../images/default/form/clear-trigger.gif);cursor:pointer;} | |
| 171 | +.x-form-field-wrap .x-form-search-trigger{background-image:url(../images/default/form/search-trigger.gif);cursor:pointer;} | |
| 172 | +.ext-safari .x-form-field-wrap .x-form-trigger{right:0;} | |
| 173 | +.x-form-field-wrap .x-form-twin-triggers .x-form-trigger{position:static;top:auto;vertical-align:top;} | |
| 174 | +.x-form-field-wrap .x-form-trigger-over{background-position:-17px 0;} | |
| 175 | +.x-form-field-wrap .x-form-trigger-click{background-position:-34px 0;} | |
| 176 | +.x-trigger-wrap-focus .x-form-trigger{background-position:-51px 0;} | |
| 177 | +.x-trigger-wrap-focus .x-form-trigger-over{background-position:-68px 0;} | |
| 178 | +.x-trigger-wrap-focus .x-form-trigger-click{background-position:-85px 0;} | |
| 179 | +.x-trigger-wrap-focus .x-form-trigger{border-bottom:1px solid #7eadd9;} | |
| 180 | +.x-item-disabled .x-form-trigger-over{background-position:0 0!important;border-bottom:1px solid #B5B8C8;} | |
| 181 | +.x-item-disabled .x-form-trigger-click{background-position:0 0!important;border-bottom:1px solid #B5B8C8;} | |
| 182 | +.x-form-focus,textarea.x-form-focus{border:1px solid #7eadd9;} | |
| 183 | +.x-form-invalid,textarea.x-form-invalid{background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom;border:1px solid #dd7870;} | |
| 184 | +.ext-safari .x-form-invalid{background-color:#fee;border:1px solid #ff7870;} | |
| 185 | +.x-editor{visibility:hidden;padding:0;margin:0;} | |
| 186 | +.x-editor .x-form-check-wrap,.x-editor .x-form-radio-wrap{background:#fff;padding:3px;} | |
| 187 | +.x-editor .x-form-checkbox{height:13px;} | |
| 188 | +.x-form-grow-sizer{font:normal 12px tahoma,arial,helvetica,sans-serif;left:-10000px;padding:8px 3px;position:absolute;visibility:hidden;top:-10000px;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;zoom:1;} | |
| 189 | +.x-form-grow-sizer p{margin:0!important;border:0 none!important;padding:0!important;} | |
| 190 | +.x-form-item{font:normal 12px tahoma,arial,helvetica,sans-serif;display:block;margin-bottom:4px;zoom:1;} | |
| 191 | +.x-form-item label{display:block;float:left;width:100px;padding:3px;padding-left:0;clear:left;z-index:2;position:relative;} | |
| 192 | +.x-form-element{padding-left:105px;position:relative;} | |
| 193 | +.x-form-invalid-msg{color:#e00;padding:2px;padding-left:18px;font:normal 11px tahoma,arial,helvetica,sans-serif;background:transparent url(../images/default/shared/warning.gif) no-repeat 0 2px;line-height:16px;width:200px;} | |
| 194 | +.x-form-label-right label{text-align:right;} | |
| 195 | +.x-form-label-left label{text-align:left;} | |
| 196 | +.x-form-label-top .x-form-item label{width:auto;float:none;clear:none;display:inline;margin-bottom:4px;position:static;} | |
| 197 | +.x-form-label-top .x-form-element{padding-left:0;padding-top:4px;} | |
| 198 | +.x-form-label-top .x-form-item{padding-bottom:4px;} | |
| 199 | +.x-form-empty-field{color:gray;} | |
| 200 | +.x-small-editor .x-form-field{font:normal 11px arial,tahoma,helvetica,sans-serif;} | |
| 201 | +.x-small-editor .x-form-text{height:20px;line-height:16px;vertical-align:middle;} | |
| 202 | +.ext-ie .x-small-editor .x-form-text{margin-top:-1px!important;margin-bottom:-1px!important;height:20px!important;line-height:16px!important;} | |
| 203 | +.ext-strict .x-small-editor .x-form-text{height:16px!important;} | |
| 204 | +.ext-safari .x-small-editor .x-form-field{font:normal 12px arial,tahoma,helvetica,sans-serif;} | |
| 205 | +.ext-ie .x-small-editor .x-form-text{height:20px;line-height:16px;} | |
| 206 | +.ext-border-box .x-small-editor .x-form-text{height:20px;} | |
| 207 | +.x-small-editor .x-form-select-one{height:20px;line-height:16px;vertical-align:middle;} | |
| 208 | +.x-small-editor .x-form-num-field{text-align:right;} | |
| 209 | +.x-small-editor .x-form-field-wrap .x-form-trigger{height:19px;} | |
| 210 | +.x-form-clear{clear:both;height:0;overflow:hidden;line-height:0;font-size:0;} | |
| 211 | +.x-form-clear-left{clear:left;height:0;overflow:hidden;line-height:0;font-size:0;} | |
| 212 | +.x-form-cb-label{width:'auto'!important;float:none!important;clear:none!important;display:inline!important;margin-left:4px;} | |
| 213 | +.x-form-column{float:left;padding:0;margin:0;width:48%;overflow:hidden;zoom:1;} | |
| 214 | +.x-form .x-form-btns-ct .x-btn{float:right;clear:none;} | |
| 215 | +.x-form .x-form-btns-ct .x-form-btns td{border:0;padding:0;} | |
| 216 | +.x-form .x-form-btns-ct .x-form-btns-right table{float:right;clear:none;} | |
| 217 | +.x-form .x-form-btns-ct .x-form-btns-left table{float:left;clear:none;} | |
| 218 | +.x-form .x-form-btns-ct .x-form-btns-center{text-align:center;} | |
| 219 | +.x-form .x-form-btns-ct .x-form-btns-center table{margin:0 auto;} | |
| 220 | +.x-form .x-form-btns-ct table td.x-form-btn-td{padding:3px;} | |
| 221 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-left{background-position:0 -147px;} | |
| 222 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-right{background-position:0 -168px;} | |
| 223 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-center{background-position:0 -189px;} | |
| 224 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-center{background-position:0 -126px;} | |
| 225 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-right{background-position:0 -84px;} | |
| 226 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-left{background-position:0 -63px;} | |
| 227 | +.x-form-invalid-icon{width:16px;height:18px;visibility:hidden;position:absolute;left:0;top:0;display:block;background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px;} | |
| 228 | +.x-fieldset{border:1px solid #B5B8C8;padding:10px;margin-bottom:10px;display:block;} | |
| 229 | +.x-fieldset legend{font:bold 11px tahoma,arial,helvetica,sans-serif;color:#15428b;} | |
| 230 | +.ext-ie .x-fieldset legend{margin-bottom:10px;} | |
| 231 | +.ext-ie .x-fieldset{padding-top:0;padding-bottom:10px;} | |
| 232 | +.x-fieldset legend .x-tool-toggle{margin-right:3px;margin-left:0;float:left!important;} | |
| 233 | +.x-fieldset legend input{margin-right:3px;float:left!important;height:13px;width:13px;} | |
| 234 | +fieldset.x-panel-collapsed{padding-bottom:0!important;border-width:1px 0 0 0!important;} | |
| 235 | +fieldset.x-panel-collapsed .x-fieldset-bwrap{visibility:hidden;position:absolute;left:-1000px;top:-1000px;} | |
| 236 | +.ext-ie .x-fieldset-bwrap{zoom:1;} | |
| 237 | +.ext-ie td .x-form-text{position:relative;top:-1px;} | |
| 238 | +.x-fieldset-noborder{border:0 none transparent;} | |
| 239 | +.x-fieldset-noborder legend{margin-left:-3px;} | |
| 240 | +.ext-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px;} | |
| 241 | +.ext-ie .x-fieldset-noborder legend span{position:absolute;left:-5px;} | |
| 242 | +.ext-gecko .x-window-body .x-form-item{-moz-outline:none;overflow:auto;} | |
| 243 | +.ext-gecko .x-form-item{-moz-outline:none;} | |
| 244 | +.x-hide-label label.x-form-item-label{display:none;} | |
| 245 | +.x-hide-label .x-form-element{padding-left:0!important;} | |
| 246 | +.x-fieldset{overflow:hidden;} | |
| 247 | +.x-fieldset-bwrap{overflow:hidden;zoom:1;} | |
| 248 | +.x-fieldset-body{overflow:hidden;} | |
| 249 | + | |
| 250 | +.x-btn{font:normal 11px tahoma,verdana,helvetica;cursor:pointer;white-space:nowrap;} | |
| 251 | +.x-btn button{border:0 none;background:transparent;font:normal 11px tahoma,verdana,helvetica;padding-left:3px;padding-right:3px;cursor:pointer;margin:0;overflow:visible;width:auto;-moz-outline:0 none;outline:0 none;} | |
| 252 | +* html .ext-ie .x-btn button{width:1px;} | |
| 253 | +.ext-gecko .x-btn button{padding-left:0;padding-right:0;} | |
| 254 | +.ext-ie .x-btn button{padding-top:2px;} | |
| 255 | +.x-btn-icon .x-btn-center .x-btn-text{background-position:center;background-repeat:no-repeat;height:16px;width:16px;cursor:pointer;white-space:nowrap;padding:0;} | |
| 256 | +.x-btn-icon .x-btn-center{padding:1px;} | |
| 257 | +.x-btn em{font-style:normal;font-weight:normal;} | |
| 258 | +.x-btn-text-icon .x-btn-center .x-btn-text{background-position:0 2px;background-repeat:no-repeat;padding-left:18px;padding-top:3px;padding-bottom:2px;padding-right:0;} | |
| 259 | +.ext-gecko3 .x-btn-text-icon .x-btn-center .x-btn-text{padding-top:2px;} | |
| 260 | +.x-btn-left,.x-btn-right{font-size:1px;line-height:1px;} | |
| 261 | +.x-btn-left{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 0;} | |
| 262 | +.x-btn-right{width:3px;height:21px;background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -21px;} | |
| 263 | +.x-btn-left i,.x-btn-right i{display:block;width:3px;overflow:hidden;font-size:1px;line-height:1px;} | |
| 264 | +.x-btn-center{background:url(../images/default/button/btn-sprite.gif) repeat-x 0 -42px;vertical-align:middle;text-align:center;padding:0 5px;cursor:pointer;white-space:nowrap;} | |
| 265 | +.x-btn-over .x-btn-left{background-position:0 -63px;} | |
| 266 | +.x-btn-over .x-btn-right{background-position:0 -84px;} | |
| 267 | +.x-btn-over .x-btn-center{background-position:0 -105px;} | |
| 268 | +.x-btn-click .x-btn-center,.x-btn-menu-active .x-btn-center{background-position:0 -126px;} | |
| 269 | +.x-btn-disabled *{color:gray!important;cursor:default!important;} | |
| 270 | +.x-btn-menu-text-wrap .x-btn-center{padding:0 3px;} | |
| 271 | +.ext-gecko .x-btn-menu-text-wrap .x-btn-center{padding:0 1px;} | |
| 272 | +.x-btn-menu-arrow-wrap .x-btn-center{padding:0;} | |
| 273 | +.x-btn-menu-arrow-wrap .x-btn-center button{width:12px!important;height:21px;padding:0!important;display:block;background:transparent url(../images/default/button/btn-arrow.gif) no-repeat left 3px;} | |
| 274 | +.x-btn-with-menu .x-btn-center{padding-right:2px!important;} | |
| 275 | +.x-btn-with-menu .x-btn-center em{display:block;background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 0;padding-right:10px;} | |
| 276 | +.x-btn-text-icon .x-btn-with-menu .x-btn-center em{display:block;background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 3px;padding-right:10px;} | |
| 277 | +.x-btn-pressed .x-btn-left{background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -63px;} | |
| 278 | +.x-btn-pressed .x-btn-right{background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -84px;} | |
| 279 | +.x-btn-pressed .x-btn-center{background:url(../images/default/button/btn-sprite.gif) repeat-x 0 -126px;} | |
| 280 | + | |
| 281 | +.x-toolbar{border-color:#a9bfd3;border-style:solid;border-width:0 0 1px 0;display:block;padding:2px;background:#d0def0 url(../images/default/toolbar/bg.gif) repeat-x top left;position:relative;zoom:1;} | |
| 282 | +.x-toolbar .x-item-disabled .x-btn-icon{opacity:.35;-moz-opacity:.35;filter:alpha(opacity=35);} | |
| 283 | +.x-toolbar td{vertical-align:middle;} | |
| 284 | +.mso .x-toolbar,.x-grid-mso .x-toolbar{border:0 none;background:url(../images/default/grid/mso-hd.gif);} | |
| 285 | +.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{white-space:nowrap;font:normal 11px tahoma,arial,helvetica,sans-serif;} | |
| 286 | +.x-toolbar .x-item-disabled{color:gray;cursor:default;opacity:.6;-moz-opacity:.6;filter:alpha(opacity=60);} | |
| 287 | +.x-toolbar .x-item-disabled *{color:gray;cursor:default;} | |
| 288 | +.x-toolbar .x-btn-left{background:none;} | |
| 289 | +.x-toolbar .x-btn-right{background:none;} | |
| 290 | +.x-toolbar .x-btn-center{background:none;padding:0;} | |
| 291 | +.x-toolbar .x-btn-menu-text-wrap .x-btn-center button{padding-right:2px;} | |
| 292 | +.ext-gecko .x-toolbar .x-btn-menu-text-wrap .x-btn-center button{padding-right:0;} | |
| 293 | +.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button{padding:0 2px;} | |
| 294 | +.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button{width:12px;background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;} | |
| 295 | +.x-toolbar .x-btn-text-icon .x-btn-menu-arrow-wrap .x-btn-center button{width:12px;background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;} | |
| 296 | +.x-toolbar .x-btn-over .x-btn-menu-arrow-wrap .x-btn-center button{background-position:0 -47px;} | |
| 297 | +.x-toolbar .x-btn-over .x-btn-left{background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 0;} | |
| 298 | +.x-toolbar .x-btn-over .x-btn-right{background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -21px;} | |
| 299 | +.x-toolbar .x-btn-over .x-btn-center{background:url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -42px;} | |
| 300 | +.x-toolbar .x-btn-click .x-btn-left,.x-toolbar .x-btn-pressed .x-btn-left,.x-toolbar .x-btn-menu-active .x-btn-left{background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -63px;} | |
| 301 | +.x-toolbar .x-btn-click .x-btn-right,.x-toolbar .x-btn-pressed .x-btn-right,.x-toolbar .x-btn-menu-active .x-btn-right{background:url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -84px;} | |
| 302 | +.x-toolbar .x-btn-click .x-btn-center,.x-toolbar .x-btn-pressed .x-btn-center,.x-toolbar .x-btn-menu-active .x-btn-center{background:url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -105px;} | |
| 303 | +.x-toolbar .x-btn-with-menu .x-btn-center em{padding-right:8px;} | |
| 304 | +.x-toolbar .ytb-text{padding:2px;} | |
| 305 | +.x-toolbar .ytb-sep{background-image:url(../images/default/grid/grid-blue-split.gif);background-position:center;background-repeat:no-repeat;display:block;font-size:1px;height:16px;width:4px;overflow:hidden;cursor:default;margin:0 2px 0;border:0;} | |
| 306 | +.x-toolbar .ytb-spacer{width:2px;} | |
| 307 | +.x-tbar-page-number{width:24px;height:14px;} | |
| 308 | +.x-tbar-page-first{background-image:url(../images/default/grid/page-first.gif)!important;} | |
| 309 | +.x-tbar-loading{background-image:url(../images/default/grid/refresh.gif)!important;} | |
| 310 | +.x-tbar-page-last{background-image:url(../images/default/grid/page-last.gif)!important;} | |
| 311 | +.x-tbar-page-next{background-image:url(../images/default/grid/page-next.gif)!important;} | |
| 312 | +.x-tbar-page-prev{background-image:url(../images/default/grid/page-prev.gif)!important;} | |
| 313 | +.x-item-disabled .x-tbar-loading{background-image:url(../images/default/grid/loading.gif)!important;} | |
| 314 | +.x-item-disabled .x-tbar-page-first{background-image:url(../images/default/grid/page-first-disabled.gif)!important;} | |
| 315 | +.x-item-disabled .x-tbar-page-last{background-image:url(../images/default/grid/page-last-disabled.gif)!important;} | |
| 316 | +.x-item-disabled .x-tbar-page-next{background-image:url(../images/default/grid/page-next-disabled.gif)!important;} | |
| 317 | +.x-item-disabled .x-tbar-page-prev{background-image:url(../images/default/grid/page-prev-disabled.gif)!important;} | |
| 318 | +.x-paging-info{position:absolute;top:5px;right:8px;color:#444;} | |
| 319 | +.x-statusbar .x-status-text{height:21px;line-height:21px;padding:0 4px;cursor:default;} | |
| 320 | +.x-statusbar .x-status-busy{padding-left:25px;background:transparent url(../images/default/grid/loading.gif) no-repeat 3px 3px;} | |
| 321 | +.x-statusbar .x-status-text-panel{border-top:1px solid #99BBE8;border-right:1px solid #fff;border-bottom:1px solid #fff;border-left:1px solid #99BBE8;padding:2px 8px 2px 5px;} | |
| 322 | + | |
| 323 | +.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;background:white;filter:alpha(opacity=0);opacity:0;zoom:1;} | |
| 324 | +.x-resizable-handle-east{width:6px;cursor:e-resize;right:0;top:0;height:100%;} | |
| 325 | +.ext-ie .x-resizable-handle-east{margin-right:-1px;} | |
| 326 | +.x-resizable-handle-south{width:100%;cursor:s-resize;left:0;bottom:0;height:6px;} | |
| 327 | +.ext-ie .x-resizable-handle-south{margin-bottom:-1px;} | |
| 328 | +.x-resizable-handle-west{width:6px;cursor:w-resize;left:0;top:0;height:100%;} | |
| 329 | +.x-resizable-handle-north{width:100%;cursor:n-resize;left:0;top:0;height:6px;} | |
| 330 | +.x-resizable-handle-southeast{width:6px;cursor:se-resize;right:0;bottom:0;height:6px;z-index:101;} | |
| 331 | +.x-resizable-handle-northwest{width:6px;cursor:nw-resize;left:0;top:0;height:6px;z-index:101;} | |
| 332 | +.x-resizable-handle-northeast{width:6px;cursor:ne-resize;right:0;top:0;height:6px;z-index:101;} | |
| 333 | +.x-resizable-handle-southwest{width:6px;cursor:sw-resize;left:0;bottom:0;height:6px;z-index:101;} | |
| 334 | +.x-resizable-over .x-resizable-handle,.x-resizable-pinned .x-resizable-handle{filter:alpha(opacity=100);opacity:1;} | |
| 335 | +.x-resizable-over .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-east{background:url(../images/default/sizer/e-handle.gif);background-position:left;} | |
| 336 | +.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-west{background:url(../images/default/sizer/e-handle.gif);background-position:left;} | |
| 337 | +.x-resizable-over .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-south{background:url(../images/default/sizer/s-handle.gif);background-position:top;} | |
| 338 | +.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-north{background:url(../images/default/sizer/s-handle.gif);background-position:top;} | |
| 339 | +.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background:url(../images/default/sizer/se-handle.gif);background-position:top left;} | |
| 340 | +.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background:url(../images/default/sizer/nw-handle.gif);background-position:bottom right;} | |
| 341 | +.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background:url(../images/default/sizer/ne-handle.gif);background-position:bottom left;} | |
| 342 | +.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background:url(../images/default/sizer/sw-handle.gif);background-position:top right;} | |
| 343 | +.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;display:none;left:0;top:0;z-index:50000;} | |
| 344 | +.x-resizable-overlay{width:100%;height:100%;display:none;position:absolute;left:0;top:0;background:white;z-index:200000;-moz-opacity:0;opacity:0;filter:alpha(opacity=0);} | |
| 345 | + | |
| 346 | + .x-grid3{position:relative;overflow:hidden;background-color:#fff;} | |
| 347 | +.x-grid-panel .x-panel-body{overflow:hidden!important;} | |
| 348 | +.x-grid-panel .x-panel-mc .x-panel-body{border:1px solid #99bbe8;} | |
| 349 | +.x-grid3 table{table-layout:fixed;} | |
| 350 | +.x-grid3-viewport{overflow:hidden;} | |
| 351 | +.x-grid3-hd-row td,.x-grid3-row td,.x-grid3-summary-row td{font:normal 11px arial,tahoma,helvetica,sans-serif;-moz-outline:none;-moz-user-focus:normal;} | |
| 352 | +.x-grid3-row td,.x-grid3-summary-row td{line-height:13px;vertical-align:top;padding-left:1px;padding-right:1px;-moz-user-select:none;} | |
| 353 | +.x-grid3-hd-row td{line-height:15px;vertical-align:middle;border-left:1px solid #eee;border-right:1px solid #d0d0d0;} | |
| 354 | +.x-grid3-hd-row .x-grid3-marker-hd{padding:3px;} | |
| 355 | +.x-grid3-row .x-grid3-marker{padding:3px;} | |
| 356 | +.x-grid3-cell-inner,.x-grid3-hd-inner{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;padding:3px 3px 3px 5px;white-space:nowrap;} | |
| 357 | +.x-grid3-hd-inner{position:relative;cursor:inherit;padding:4px 3px 4px 5px;} | |
| 358 | +.x-grid3-row-body{white-space:normal;} | |
| 359 | +.x-grid3-body-cell{-moz-outline:0 none;outline:0 none;} | |
| 360 | +.ext-ie .x-grid3-cell-inner,.ext-ie .x-grid3-hd-inner{width:100%;} | |
| 361 | +.ext-strict .x-grid3-cell-inner,.ext-strict .x-grid3-hd-inner{width:auto;} | |
| 362 | +.x-grid-row-loading{background:#fff url(../images/default/shared/loading-balls.gif) no-repeat center center;} | |
| 363 | +.x-grid-page{overflow:hidden;} | |
| 364 | +.x-grid3-row{cursor:default;border:1px solid #ededed;border-top-color:#fff;width:100%;} | |
| 365 | +.x-grid3-row-alt{background-color:#fafafa;} | |
| 366 | +.x-grid3-row-over{border:1px solid #ddd;background:#efefef url(../images/default/grid/row-over.gif) repeat-x left top;} | |
| 367 | +.x-grid3-resize-proxy{width:1px;left:0;background-color:#777;cursor:e-resize;cursor:col-resize;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;} | |
| 368 | +.x-grid3-resize-marker{width:1px;left:0;background-color:#777;position:absolute;top:0;height:100px;overflow:hidden;visibility:hidden;border:0 none;z-index:7;} | |
| 369 | +.x-grid3-focus{position:absolute;left:0;top:0;width:1px;height:1px;line-height:1px;font-size:1px;-moz-outline:0 none;outline:0 none;-moz-user-select:text;-khtml-user-select:text;} | |
| 370 | +.x-grid3-header{background:#f9f9f9 url(../images/default/grid/grid3-hrow.gif) repeat-x 0 bottom;cursor:default;zoom:1;padding:1px 0 0 0;} | |
| 371 | +.x-grid3-header-pop{border-left:1px solid #d0d0d0;float:right;clear:none;} | |
| 372 | +.x-grid3-header-pop-inner{border-left:1px solid #eee;width:14px;height:19px;background:transparent url(../images/default/grid/hd-pop.gif) no-repeat center center;} | |
| 373 | +.ext-ie .x-grid3-header-pop-inner{width:15px;} | |
| 374 | +.ext-strict .x-grid3-header-pop-inner{width:14px;} | |
| 375 | +.x-grid3-header-inner{overflow:hidden;zoom:1;float:left;} | |
| 376 | +.x-grid3-header-offset{padding-left:1px;width:10000px;} | |
| 377 | +td.x-grid3-hd-over,td.sort-desc,td.sort-asc,td.x-grid3-hd-menu-open{border-left:1px solid #aaccf6;border-right:1px solid #aaccf6;} | |
| 378 | +td.x-grid3-hd-over .x-grid3-hd-inner,td.sort-desc .x-grid3-hd-inner,td.sort-asc .x-grid3-hd-inner,td.x-grid3-hd-menu-open .x-grid3-hd-inner{background:#ebf3fd url(../images/default/grid/grid3-hrow-over.gif) repeat-x left bottom;} | |
| 379 | +.x-grid3-sort-icon{background-repeat:no-repeat;display:none;height:4px;width:13px;margin-left:3px;vertical-align:middle;} | |
| 380 | +.sort-asc .x-grid3-sort-icon{background-image:url(../images/default/grid/sort_asc.gif);display:inline;} | |
| 381 | +.sort-desc .x-grid3-sort-icon{background-image:url(../images/default/grid/sort_desc.gif);display:inline;} | |
| 382 | +.ext-strict .ext-ie .x-grid3-header-inner{position:relative;} | |
| 383 | +.ext-strict .ext-ie6 .x-grid3-hd{position:relative;} | |
| 384 | +.ext-strict .ext-ie6 .x-grid3-hd-inner{position:static;} | |
| 385 | +.x-grid3-body{zoom:1;} | |
| 386 | +.x-grid3-scroller{overflow:auto;zoom:1;position:relative;} | |
| 387 | +.x-grid3-cell-text,.x-grid3-hd-text{display:block;padding:3px 5px 3px 5px;-moz-user-select:none;-khtml-user-select:none;color:black;} | |
| 388 | +.x-grid3-split{background-image:url(../images/default/grid/grid-split.gif);background-position:center;background-repeat:no-repeat;cursor:e-resize;cursor:col-resize;display:block;font-size:1px;height:16px;overflow:hidden;position:absolute;top:2px;width:6px;z-index:3;} | |
| 389 | +.x-grid3-hd-text{color:#15428b;} | |
| 390 | +.x-dd-drag-proxy .x-grid3-hd-inner{background:#ebf3fd url(../images/default/grid/grid3-hrow-over.gif) repeat-x left bottom;width:120px;padding:3px;border:1px solid #aaccf6;overflow:hidden;} | |
| 391 | +.col-move-top,.col-move-bottom{width:9px;height:9px;position:absolute;top:0;line-height:1px;font-size:1px;overflow:hidden;visibility:hidden;z-index:20000;} | |
| 392 | +.col-move-top{background:transparent url(../images/default/grid/col-move-top.gif) no-repeat left top;} | |
| 393 | +.col-move-bottom{background:transparent url(../images/default/grid/col-move-bottom.gif) no-repeat left top;} | |
| 394 | +.x-grid3-row-selected{background:#DFE8F6!important;border:1px dotted #a3bae9;} | |
| 395 | +.x-grid3-cell-selected{background-color:#B8CFEE!important;color:black;} | |
| 396 | +.x-grid3-cell-selected span{color:black!important;} | |
| 397 | +.x-grid3-cell-selected .x-grid3-cell-text{color:black;} | |
| 398 | +.x-grid3-locked td.x-grid3-row-marker,.x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{background:#ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x 0 bottom!important;vertical-align:middle!important;color:black;padding:0;border-top:1px solid white;border-bottom:none!important;border-right:1px solid #6fa0df!important;text-align:center;} | |
| 399 | +.x-grid3-locked td.x-grid3-row-marker div,.x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div{padding:0 4px;color:#15428b!important;text-align:center;} | |
| 400 | +.x-grid3-dirty-cell{background:transparent url(../images/default/grid/dirty.gif) no-repeat 0 0;} | |
| 401 | +.x-grid3-topbar,.x-grid3-bottombar{font:normal 11px arial,tahoma,helvetica,sans-serif;overflow:hidden;display:none;zoom:1;position:relative;} | |
| 402 | +.x-grid3-topbar .x-toolbar{border-right:0 none;} | |
| 403 | +.x-grid3-bottombar .x-toolbar{border-right:0 none;border-bottom:0 none;border-top:1px solid #a9bfd3;} | |
| 404 | +.x-props-grid .x-grid3-cell{padding:1px;} | |
| 405 | +.x-props-grid .x-grid3-td-name .x-grid3-cell-inner{background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y -16px!important;padding-left:12px;color:black!important;} | |
| 406 | +.x-props-grid .x-grid3-body .x-grid3-td-name{padding:1px;padding-right:0;background:white!important;border:0 none;border-right:1px solid #eee;} | |
| 407 | +.xg-hmenu-sort-asc .x-menu-item-icon{background-image:url(../images/default/grid/hmenu-asc.gif);} | |
| 408 | +.xg-hmenu-sort-desc .x-menu-item-icon{background-image:url(../images/default/grid/hmenu-desc.gif);} | |
| 409 | +.xg-hmenu-lock .x-menu-item-icon{background-image:url(../images/default/grid/hmenu-lock.gif);} | |
| 410 | +.xg-hmenu-unlock .x-menu-item-icon{background-image:url(../images/default/grid/hmenu-unlock.gif);} | |
| 411 | +.x-grid3-col-dd{border:0 none;padding:0;background:transparent;} | |
| 412 | +.x-dd-drag-ghost .x-grid3-dd-wrap{padding:1px 3px 3px 1px;} | |
| 413 | +.x-grid3-hd{-moz-user-select:none;} | |
| 414 | +.x-grid3-hd-btn{display:none;position:absolute;width:14px;background:#c3daf9 url(../images/default/grid/grid3-hd-btn.gif) no-repeat left center;right:0;top:0;z-index:2;cursor:pointer;} | |
| 415 | +.x-grid3-hd-over .x-grid3-hd-btn,.x-grid3-hd-menu-open .x-grid3-hd-btn{display:block;} | |
| 416 | +a.x-grid3-hd-btn:hover{background-position:-14px center;} | |
| 417 | +.x-grid3-body .x-grid3-td-expander{background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right;} | |
| 418 | +.x-grid3-body .x-grid3-td-expander .x-grid3-cell-inner{padding:0!important;height:100%;} | |
| 419 | +.x-grid3-row-expander{width:100%;height:18px;background-position:4px 2px;background-repeat:no-repeat;background-color:transparent;background-image:url(../images/default/grid/row-expand-sprite.gif);} | |
| 420 | +.x-grid3-row-collapsed .x-grid3-row-expander{background-position:4px 2px;} | |
| 421 | +.x-grid3-row-expanded .x-grid3-row-expander{background-position:-21px 2px;} | |
| 422 | +.x-grid3-row-collapsed .x-grid3-row-body{display:none!important;} | |
| 423 | +.x-grid3-row-expanded .x-grid3-row-body{display:block!important;} | |
| 424 | +.x-grid3-body .x-grid3-td-checker{background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right;} | |
| 425 | +.x-grid3-body .x-grid3-td-checker .x-grid3-cell-inner,.x-grid3-header .x-grid3-td-checker .x-grid3-hd-inner{padding:0!important;height:100%;} | |
| 426 | +.x-grid3-row-checker,.x-grid3-hd-checker{width:100%;height:18px;background-position:2px 2px;background-repeat:no-repeat;background-color:transparent;background-image:url(../images/default/grid/row-check-sprite.gif);} | |
| 427 | +.x-grid3-row .x-grid3-row-checker{background-position:2px 2px;} | |
| 428 | +.x-grid3-row-selected .x-grid3-row-checker,.x-grid3-hd-checker-on .x-grid3-hd-checker{background-position:-23px 2px;} | |
| 429 | +.x-grid3-hd-checker{background-position:2px 3px;} | |
| 430 | +.x-grid3-hd-checker-on .x-grid3-hd-checker{background-position:-23px 3px;} | |
| 431 | +.x-grid3-body .x-grid3-td-numberer{background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right;} | |
| 432 | +.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner{padding:3px 5px 0 0!important;text-align:right;color:#444;} | |
| 433 | +.x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer,.x-grid3-body .x-grid3-row-selected .x-grid3-td-checker,.x-grid3-body .x-grid3-row-selected .x-grid3-td-expander{background:transparent url(../images/default/grid/grid3-special-col-sel-bg.gif) repeat-y right;} | |
| 434 | +.x-grid3-body .x-grid3-check-col-td .x-grid3-cell-inner{padding:1px 0 0 0!important;} | |
| 435 | +.x-grid3-check-col{width:100%;height:16px;background-position:center center;background-repeat:no-repeat;background-color:transparent;background-image:url(../images/default/menu/unchecked.gif);} | |
| 436 | +.x-grid3-check-col-on{width:100%;height:16px;background-position:center center;background-repeat:no-repeat;background-color:transparent;background-image:url(../images/default/menu/checked.gif);} | |
| 437 | +.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1;} | |
| 438 | +.x-grid-group-hd{border-bottom:2px solid #99bbe8;cursor:pointer;padding-top:6px;} | |
| 439 | +.x-grid-group-hd div{background:transparent url(../images/default/grid/group-expand-sprite.gif) no-repeat 3px -47px;padding:4px 4px 4px 17px;color:#3764a0;font:bold 11px tahoma,arial,helvetica,sans-serif;} | |
| 440 | +.x-grid-group-collapsed .x-grid-group-hd div{background-position:3px 3px;} | |
| 441 | +.x-grid-group-collapsed .x-grid-group-body{display:none;} | |
| 442 | +.x-group-by-icon{background-image:url(../images/default/grid/group-by.gif);} | |
| 443 | +.x-cols-icon{background-image:url(../images/default/grid/columns.gif);} | |
| 444 | +.x-show-groups-icon{background-image:url(../images/default/grid/group-by.gif);} | |
| 445 | +.ext-ie .x-grid3 .x-editor .x-form-text{position:relative;top:-1px;} | |
| 446 | +.ext-ie .x-props-grid .x-editor .x-form-text{position:static;top:0;} | |
| 447 | +.x-grid-empty{padding:10px;color:gray;font:normal 11px tahoma,arial,helvetica,sans-serif;} | |
| 448 | +.ext-ie7 .x-grid-panel .x-panel-bbar{position:relative;} | |
| 449 | + | |
| 450 | +.x-dd-drag-proxy{position:absolute;left:0;top:0;visibility:hidden;z-index:15000;} | |
| 451 | +.x-dd-drag-ghost{color:black;font:normal 11px arial,helvetica,sans-serif;-moz-opacity:0.85;opacity:.85;filter:alpha(opacity=85);border-top:1px solid #ddd;border-left:1px solid #ddd;border-right:1px solid #bbb;border-bottom:1px solid #bbb;padding:3px;padding-left:20px;background-color:white;white-space:nowrap;} | |
| 452 | +.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;} | |
| 453 | +.x-dd-drag-repair .x-dd-drop-icon{visibility:hidden;} | |
| 454 | +.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;} | |
| 455 | +.x-dd-drop-nodrop .x-dd-drop-icon{background-image:url(../images/default/dd/drop-no.gif);} | |
| 456 | +.x-dd-drop-ok .x-dd-drop-icon{background-image:url(../images/default/dd/drop-yes.gif);} | |
| 457 | +.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(../images/default/dd/drop-add.gif);} | |
| 458 | +.x-view-selector{position:absolute;left:0;top:0;width:0;background:#c3daf9;border:1px dotted #39b;opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);zoom:1;} | |
| 459 | + | |
| 460 | +.x-tree .x-panel-body{background-color:#fff;} | |
| 461 | +.ext-strict .ext-ie .x-tree .x-panel-bwrap{position:relative;overflow:hidden;} | |
| 462 | +.x-tree-icon,.x-tree-ec-icon,.x-tree-elbow-line,.x-tree-elbow,.x-tree-elbow-end,.x-tree-elbow-plus,.x-tree-elbow-minus,.x-tree-elbow-end-plus,.x-tree-elbow-end-minus{border:0 none;height:18px;margin:0;padding:0;vertical-align:top;width:16px;background-repeat:no-repeat;} | |
| 463 | +.x-tree-node-collapsed .x-tree-node-icon,.x-tree-node-expanded .x-tree-node-icon,.x-tree-node-leaf .x-tree-node-icon{border:0 none;height:18px;margin:0;padding:0;vertical-align:top;width:16px;background-position:center;background-repeat:no-repeat;} | |
| 464 | +.ext-ie .x-tree-node-indent img,.ext-ie .x-tree-node-icon,.ext-ie .x-tree-ec-icon{vertical-align:middle!important;} | |
| 465 | +.x-tree-node-expanded .x-tree-node-icon{background-image:url(../images/default/tree/folder-open.gif);} | |
| 466 | +.x-tree-node-leaf .x-tree-node-icon{background-image:url(../images/default/tree/leaf.gif);} | |
| 467 | +.x-tree-node-collapsed .x-tree-node-icon{background-image:url(../images/default/tree/folder.gif);} | |
| 468 | +.ext-ie input.x-tree-node-cb{width:15px;height:15px;} | |
| 469 | +input.x-tree-node-cb{margin-left:1px;} | |
| 470 | +.ext-ie input.x-tree-node-cb{margin-left:0;} | |
| 471 | +.x-tree-noicon .x-tree-node-icon{width:0;height:0;} | |
| 472 | +.x-tree-node-loading .x-tree-node-icon{background-image:url(../images/default/tree/loading.gif)!important;} | |
| 473 | +.x-tree-node-loading a span{font-style:italic;color:#444;} | |
| 474 | +.ext-ie .x-tree-node-el input{width:15px;height:15px;} | |
| 475 | +.x-tree-lines .x-tree-elbow{background-image:url(../images/default/tree/elbow.gif);} | |
| 476 | +.x-tree-lines .x-tree-elbow-plus{background-image:url(../images/default/tree/elbow-plus.gif);} | |
| 477 | +.x-tree-lines .x-tree-elbow-minus{background-image:url(../images/default/tree/elbow-minus.gif);} | |
| 478 | +.x-tree-lines .x-tree-elbow-end{background-image:url(../images/default/tree/elbow-end.gif);} | |
| 479 | +.x-tree-lines .x-tree-elbow-end-plus{background-image:url(../images/default/tree/elbow-end-plus.gif);} | |
| 480 | +.x-tree-lines .x-tree-elbow-end-minus{background-image:url(../images/default/tree/elbow-end-minus.gif);} | |
| 481 | +.x-tree-lines .x-tree-elbow-line{background-image:url(../images/default/tree/elbow-line.gif);} | |
| 482 | +.x-tree-no-lines .x-tree-elbow{background:transparent;} | |
| 483 | +.x-tree-no-lines .x-tree-elbow-plus{background-image:url(../images/default/tree/elbow-plus-nl.gif);} | |
| 484 | +.x-tree-no-lines .x-tree-elbow-minus{background-image:url(../images/default/tree/elbow-minus-nl.gif);} | |
| 485 | +.x-tree-no-lines .x-tree-elbow-end{background:transparent;} | |
| 486 | +.x-tree-no-lines .x-tree-elbow-end-plus{background-image:url(../images/default/tree/elbow-end-plus-nl.gif);} | |
| 487 | +.x-tree-no-lines .x-tree-elbow-end-minus{background-image:url(../images/default/tree/elbow-end-minus-nl.gif);} | |
| 488 | +.x-tree-no-lines .x-tree-elbow-line{background:transparent;} | |
| 489 | +.x-tree-arrows .x-tree-elbow{background:transparent;} | |
| 490 | +.x-tree-arrows .x-tree-elbow-plus{background:transparent url(../images/default/tree/arrows.gif) no-repeat 0 0;} | |
| 491 | +.x-tree-arrows .x-tree-elbow-minus{background:transparent url(../images/default/tree/arrows.gif) no-repeat -16px 0;} | |
| 492 | +.x-tree-arrows .x-tree-elbow-end{background:transparent;} | |
| 493 | +.x-tree-arrows .x-tree-elbow-end-plus{background:transparent url(../images/default/tree/arrows.gif) no-repeat 0 0;} | |
| 494 | +.x-tree-arrows .x-tree-elbow-end-minus{background:transparent url(../images/default/tree/arrows.gif) no-repeat -16px 0;} | |
| 495 | +.x-tree-arrows .x-tree-elbow-line{background:transparent;} | |
| 496 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus{background-position:-32px 0;} | |
| 497 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-minus{background-position:-48px 0;} | |
| 498 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-plus{background-position:-32px 0;} | |
| 499 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-minus{background-position:-48px 0;} | |
| 500 | +.x-tree-elbow-plus,.x-tree-elbow-minus,.x-tree-elbow-end-plus,.x-tree-elbow-end-minus{cursor:pointer;} | |
| 501 | +.ext-ie ul.x-tree-node-ct{font-size:0;line-height:0;zoom:1;} | |
| 502 | +.x-tree-node{color:black;font:normal 11px arial,tahoma,helvetica,sans-serif;white-space:nowrap;} | |
| 503 | +.x-tree-node-el{line-height:18px;cursor:pointer;} | |
| 504 | +.x-tree-node a,.x-dd-drag-ghost a{text-decoration:none;color:black;-khtml-user-select:none;-moz-user-select:none;-kthml-user-focus:normal;-moz-user-focus:normal;-moz-outline:0 none;outline:0 none;} | |
| 505 | +.x-tree-node a span,.x-dd-drag-ghost a span{text-decoration:none;color:black;padding:1px 3px 1px 2px;} | |
| 506 | +.x-tree-node .x-tree-node-disabled a span{color:gray!important;} | |
| 507 | +.x-tree-node .x-tree-node-disabled .x-tree-node-icon{-moz-opacity:0.5;opacity:.5;filter:alpha(opacity=50);} | |
| 508 | +.x-tree-node .x-tree-node-inline-icon{background:transparent;} | |
| 509 | +.x-tree-node a:hover,.x-dd-drag-ghost a:hover{text-decoration:none;} | |
| 510 | +.x-tree-node div.x-tree-drag-insert-below{border-bottom:1px dotted #36c;} | |
| 511 | +.x-tree-node div.x-tree-drag-insert-above{border-top:1px dotted #36c;} | |
| 512 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below{border-bottom:0 none;} | |
| 513 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above{border-top:0 none;} | |
| 514 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{border-bottom:2px solid #36c;} | |
| 515 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{border-top:2px solid #36c;} | |
| 516 | +.x-tree-node .x-tree-drag-append a span{background:#ddd;border:1px dotted gray;} | |
| 517 | +.x-tree-node .x-tree-node-over{background-color:#eee;} | |
| 518 | +.x-tree-node .x-tree-selected{background-color:#d9e8fb;} | |
| 519 | +.x-dd-drag-ghost .x-tree-node-indent,.x-dd-drag-ghost .x-tree-ec-icon{display:none!important;} | |
| 520 | +.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(../images/default/tree/drop-add.gif);} | |
| 521 | +.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(../images/default/tree/drop-over.gif);} | |
| 522 | +.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(../images/default/tree/drop-under.gif);} | |
| 523 | +.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(../images/default/tree/drop-between.gif);} | |
| 524 | +.x-tree-root-ct{zoom:1;} | |
| 525 | + | |
| 526 | +.x-date-picker{border:1px solid #1b376c;border-top:0 none;background:#fff;position:relative;} | |
| 527 | +.x-date-picker a{-moz-outline:0 none;outline:0 none;} | |
| 528 | +.x-date-inner,.x-date-inner td,.x-date-inner th{border-collapse:separate;} | |
| 529 | +.x-date-middle,.x-date-left,.x-date-right{background:url(../images/default/shared/hd-sprite.gif) repeat-x 0 -83px;color:#FFF;font:bold 11px "sans serif",tahoma,verdana,helvetica;overflow:hidden;} | |
| 530 | +.x-date-middle .x-btn-left,.x-date-middle .x-btn-center,.x-date-middle .x-btn-right{background:transparent!important;vertical-align:middle;} | |
| 531 | +.x-date-middle .x-btn .x-btn-text{color:#fff;} | |
| 532 | +.x-date-middle .x-btn-with-menu .x-btn-center em{background:transparent url(../images/default/toolbar/btn-arrow-light.gif) no-repeat right 0;} | |
| 533 | +.x-date-right,.x-date-left{width:18px;} | |
| 534 | +.x-date-right{text-align:right;} | |
| 535 | +.x-date-middle{padding-top:2px;padding-bottom:2px;width:130px;} | |
| 536 | +.x-date-right a,.x-date-left a{display:block;width:16px;height:16px;background-position:center;background-repeat:no-repeat;cursor:pointer;-moz-opacity:0.6;opacity:.6;filter:alpha(opacity=60);} | |
| 537 | +.x-date-right a:hover,.x-date-left a:hover{-moz-opacity:1;opacity:1;filter:alpha(opacity=100);} | |
| 538 | +.x-date-right a{background-image:url(../images/default/shared/right-btn.gif);margin-right:2px;text-decoration:none!important;} | |
| 539 | +.x-date-left a{background-image:url(../images/default/shared/left-btn.gif);margin-left:2px;text-decoration:none!important;} | |
| 540 | +table.x-date-inner{width:100%;table-layout:fixed;} | |
| 541 | +.x-date-inner th{width:25px;} | |
| 542 | +.x-date-inner th{background:#dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;text-align:right!important;border-bottom:1px solid #a3bad9;font:normal 10px arial,helvetica,tahoma,sans-serif;color:#233d6d;cursor:default;padding:0;border-collapse:separate;} | |
| 543 | +.x-date-inner th span{display:block;padding:2px;padding-right:7px;} | |
| 544 | +.x-date-inner td{border:1px solid #fff;text-align:right;padding:0;} | |
| 545 | +.x-date-inner a{padding:2px 5px;display:block;font:normal 11px arial,helvetica,tahoma,sans-serif;text-decoration:none;color:black;text-align:right;zoom:1;} | |
| 546 | +.x-date-inner .x-date-active{cursor:pointer;color:black;} | |
| 547 | +.x-date-inner .x-date-selected a{background:#dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;border:1px solid #8db2e3;padding:1px 4px;} | |
| 548 | +.x-date-inner .x-date-today a{border:1px solid darkred;padding:1px 4px;} | |
| 549 | +.x-date-inner .x-date-selected span{font-weight:bold;} | |
| 550 | +.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a{color:#aaa;text-decoration:none!important;} | |
| 551 | +.x-date-bottom{padding:4px;border-top:1px solid #a3bad9;background:#dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;} | |
| 552 | +.x-date-inner a:hover,.x-date-inner .x-date-disabled a:hover{text-decoration:none!important;color:black;background:#ddecfe;} | |
| 553 | +.x-date-inner .x-date-disabled a{cursor:default;background:#eee;color:#bbb;} | |
| 554 | +.x-date-mmenu{background:#eee!important;} | |
| 555 | +.x-date-mmenu .x-menu-item{font-size:10px;padding:1px 24px 1px 4px;white-space:nowrap;color:#000;} | |
| 556 | +.x-date-mmenu .x-menu-item .x-menu-item-icon{width:10px;height:10px;margin-right:5px;background-position:center -4px!important;} | |
| 557 | +.x-date-mp{position:absolute;left:0;top:0;background:white;display:none;} | |
| 558 | +.x-date-mp td{padding:2px;font:normal 11px arial,helvetica,tahoma,sans-serif;} | |
| 559 | +td.x-date-mp-month,td.x-date-mp-year,td.x-date-mp-ybtn{border:0 none;text-align:center;vertical-align:middle;width:25%;} | |
| 560 | +.x-date-mp-ok{margin-right:3px;} | |
| 561 | +.x-date-mp-btns button{text-decoration:none;text-align:center;text-decoration:none!important;background:#083772;color:white;border:1px solid;border-color:#36c #005 #005 #36c;padding:1px 3px 1px;font:normal 11px arial,helvetica,tahoma,sans-serif;cursor:pointer;} | |
| 562 | +.x-date-mp-btns{background:#dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;} | |
| 563 | +.x-date-mp-btns td{border-top:1px solid #c5d2df;text-align:center;} | |
| 564 | +td.x-date-mp-month a,td.x-date-mp-year a{display:block;padding:2px 4px;text-decoration:none;text-align:center;color:#15428b;} | |
| 565 | +td.x-date-mp-month a:hover,td.x-date-mp-year a:hover{color:#15428b;text-decoration:none;cursor:pointer;background:#ddecfe;} | |
| 566 | +td.x-date-mp-sel a{padding:1px 3px;background:#dfecfb url(../images/default/shared/glass-bg.gif) repeat-x left top;border:1px solid #8db2e3;} | |
| 567 | +.x-date-mp-ybtn a{overflow:hidden;width:15px;height:15px;cursor:pointer;background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;display:block;margin:0 auto;} | |
| 568 | +.x-date-mp-ybtn a.x-date-mp-next{background-position:0 -120px;} | |
| 569 | +.x-date-mp-ybtn a.x-date-mp-next:hover{background-position:-15px -120px;} | |
| 570 | +.x-date-mp-ybtn a.x-date-mp-prev{background-position:0 -105px;} | |
| 571 | +.x-date-mp-ybtn a.x-date-mp-prev:hover{background-position:-15px -105px;} | |
| 572 | +.x-date-mp-ybtn{text-align:center;} | |
| 573 | +td.x-date-mp-sep{border-right:1px solid #c5d2df;} | |
| 574 | + | |
| 575 | +.x-tip{position:absolute;top:0;left:0;visibility:hidden;z-index:20000;border:0 none;} | |
| 576 | +.x-tip .x-tip-close{background-image:url(../images/default/qtip/close.gif);height:15px;float:right;width:15px;margin:0 0 2px 2px;cursor:pointer;display:none;} | |
| 577 | +.x-tip .x-tip-tc{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -62px;padding-top:3px;overflow:hidden;zoom:1;} | |
| 578 | +.x-tip .x-tip-tl{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 0;padding-left:6px;overflow:hidden;zoom:1;} | |
| 579 | +.x-tip .x-tip-tr{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right 0;padding-right:6px;overflow:hidden;zoom:1;} | |
| 580 | +.x-tip .x-tip-bc{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -121px;height:3px;overflow:hidden;} | |
| 581 | +.x-tip .x-tip-bl{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -59px;padding-left:6px;zoom:1;} | |
| 582 | +.x-tip .x-tip-br{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -59px;padding-right:6px;zoom:1;} | |
| 583 | +.x-tip .x-tip-mc{border:0 none;font:normal 11px tahoma,arial,helvetica,sans-serif;} | |
| 584 | +.x-tip .x-tip-ml{background:#fff url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -124px;padding-left:6px;zoom:1;} | |
| 585 | +.x-tip .x-tip-mr{background:transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -124px;padding-right:6px;zoom:1;} | |
| 586 | +.ext-ie .x-tip .x-tip-header,.ext-ie .x-tip .x-tip-tc{font-size:0;line-height:0;} | |
| 587 | +.x-tip .x-tip-header-text{font:bold 11px tahoma,arial,helvetica,sans-serif;padding:0;margin:0 0 2px 0;color:#444;} | |
| 588 | +.x-tip .x-tip-body{font:normal 11px tahoma,arial,helvetica,sans-serif;margin:0!important;line-height:14px;color:#444;padding:0;} | |
| 589 | +.x-tip .x-tip-body .loading-indicator{margin:0;} | |
| 590 | +.x-tip-draggable .x-tip-header,.x-tip-draggable .x-tip-header-text{cursor:move;} | |
| 591 | +.x-form-invalid-tip .x-tip-tc{background:url(../images/default/form/error-tip-corners.gif) repeat-x 0 -12px;padding-top:6px;} | |
| 592 | +.x-form-invalid-tip .x-tip-tl{background-image:url(../images/default/form/error-tip-corners.gif);} | |
| 593 | +.x-form-invalid-tip .x-tip-tr{background-image:url(../images/default/form/error-tip-corners.gif);} | |
| 594 | +.x-form-invalid-tip .x-tip-bc{background:url(../images/default/form/error-tip-corners.gif) repeat-x 0 -18px;height:6px;} | |
| 595 | +.x-form-invalid-tip .x-tip-bl{background:url(../images/default/form/error-tip-corners.gif) no-repeat 0 -6px;} | |
| 596 | +.x-form-invalid-tip .x-tip-br{background:url(../images/default/form/error-tip-corners.gif) no-repeat right -6px;} | |
| 597 | +.x-form-invalid-tip .x-tip-ml{background-image:url(../images/default/form/error-tip-corners.gif);} | |
| 598 | +.x-form-invalid-tip .x-tip-mr{background-image:url(../images/default/form/error-tip-corners.gif);} | |
| 599 | +.x-form-invalid-tip .x-tip-body{padding:2px;} | |
| 600 | +.x-form-invalid-tip .x-tip-body{padding-left:24px;background:transparent url(../images/default/form/exclamation.gif) no-repeat 2px 2px;} | |
| 601 | + | |
| 602 | +.x-menu{border:1px solid #718bb7;z-index:15000;zoom:1;background:#f0f0f0 url(../images/default/menu/menu.gif) repeat-y;padding:2px;} | |
| 603 | +.x-menu a{text-decoration:none!important;} | |
| 604 | +.ext-ie .x-menu{zoom:1;overflow:hidden;} | |
| 605 | +.x-menu-list{background:transparent;border:0 none;} | |
| 606 | +.x-menu li{line-height:100%;} | |
| 607 | +.x-menu li.x-menu-sep-li{font-size:1px;line-height:1px;} | |
| 608 | +.x-menu-list-item{font:normal 11px tahoma,arial,sans-serif;white-space:nowrap;-moz-user-select:none;-khtml-user-select:none;display:block;padding:1px;} | |
| 609 | +.x-menu-item-arrow{background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right;} | |
| 610 | +.x-menu-sep{display:block;font-size:1px;line-height:1px;margin:2px 3px;background-color:#e0e0e0;border-bottom:1px solid #fff;overflow:hidden;} | |
| 611 | +.x-menu-focus{position:absolute;left:-1px;top:-1px;width:1px;height:1px;line-height:1px;font-size:1px;-moz-outline:0 none;outline:0 none;-moz-user-select:text;-khtml-user-select:text;overflow:hidden;display:block;} | |
| 612 | +.x-menu a.x-menu-item{display:block;line-height:16px;padding:3px 21px 3px 3px;white-space:nowrap;text-decoration:none;color:#222;-moz-outline:0 none;outline:0 none;cursor:pointer;} | |
| 613 | +.x-menu-item-active{background:#ebf3fd url(../images/default/menu/item-over.gif) repeat-x left bottom;border:1px solid #aaccf6;padding:0;} | |
| 614 | +.x-menu-item-active a.x-menu-item{color:#233d6d;} | |
| 615 | +.x-menu-item-icon{border:0 none;height:16px;padding:0;vertical-align:top;width:16px;margin:0 8px 0 0;background-position:center;} | |
| 616 | +.x-menu-check-item .x-menu-item-icon{background:transparent url(../images/default/menu/unchecked.gif) no-repeat center;} | |
| 617 | +.x-menu-item-checked .x-menu-item-icon{background-image:url(../images/default/menu/checked.gif);} | |
| 618 | +.x-menu-group-item .x-menu-item-icon{background:transparent;} | |
| 619 | +.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{background:transparent url(../images/default/menu/group-checked.gif) no-repeat center;} | |
| 620 | +.x-menu-plain{background:#fff!important;} | |
| 621 | +.x-menu-date-item{padding:0;} | |
| 622 | +.x-menu .x-color-palette,.x-menu .x-date-picker{margin-left:26px;margin-right:4px;} | |
| 623 | +.x-menu .x-date-picker{border:1px solid #a3bad9;margin-top:2px;margin-bottom:2px;} | |
| 624 | +.x-menu-plain .x-color-palette,.x-menu-plain .x-date-picker{margin:0;border:0 none;} | |
| 625 | +.x-date-menu{padding:0!important;} | |
| 626 | +.x-cycle-menu .x-menu-item-checked{border:1px dotted #a3bae9!important;background:#DFE8F6;padding:0;} | |
| 627 | + | |
| 628 | + .x-box-tl{background:transparent url(../images/default/box/corners.gif) no-repeat 0 0;zoom:1;} | |
| 629 | +.x-box-tc{height:8px;background:transparent url(../images/default/box/tb.gif) repeat-x 0 0;overflow:hidden;} | |
| 630 | +.x-box-tr{background:transparent url(../images/default/box/corners.gif) no-repeat right -8px;} | |
| 631 | +.x-box-ml{background:transparent url(../images/default/box/l.gif) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;} | |
| 632 | +.x-box-mc{background:#eee url(../images/default/box/tb.gif) repeat-x 0 -16px;padding:4px 10px;font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;} | |
| 633 | +.x-box-mc h3{font-size:14px;font-weight:bold;margin:0 0 4px 0;zoom:1;} | |
| 634 | +.x-box-mr{background:transparent url(../images/default/box/r.gif) repeat-y right;padding-right:4px;overflow:hidden;} | |
| 635 | +.x-box-bl{background:transparent url(../images/default/box/corners.gif) no-repeat 0 -16px;zoom:1;} | |
| 636 | +.x-box-bc{background:transparent url(../images/default/box/tb.gif) repeat-x 0 -8px;height:8px;overflow:hidden;} | |
| 637 | +.x-box-br{background:transparent url(../images/default/box/corners.gif) no-repeat right -24px;} | |
| 638 | +.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden;} | |
| 639 | +.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden;} | |
| 640 | +.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(../images/default/box/corners-blue.gif);} | |
| 641 | +.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(../images/default/box/tb-blue.gif);} | |
| 642 | +.x-box-blue .x-box-mc{background-color:#c3daf9;} | |
| 643 | +.x-box-blue .x-box-mc h3{color:#17385b;} | |
| 644 | +.x-box-blue .x-box-ml{background-image:url(../images/default/box/l-blue.gif);} | |
| 645 | +.x-box-blue .x-box-mr{background-image:url(../images/default/box/r-blue.gif);} | |
| 646 | + | |
| 647 | +#x-debug-browser .x-tree .x-tree-node a span{color:#222297;font-size:11px;padding-top:2px;font-family:"monotype","courier new",sans-serif;line-height:18px;} | |
| 648 | +#x-debug-browser .x-tree a i{color:#FF4545;font-style:normal;} | |
| 649 | +#x-debug-browser .x-tree a em{color:#999;} | |
| 650 | +#x-debug-browser .x-tree .x-tree-node .x-tree-selected a span{background:#c3daf9;} | |
| 651 | +#x-debug-browser .x-tool-toggle{background-position:0 -75px;} | |
| 652 | +#x-debug-browser .x-tool-toggle-over{background-position:-15px -75px;} | |
| 653 | +#x-debug-browser.x-panel-collapsed .x-tool-toggle{background-position:0 -60px;} | |
| 654 | +#x-debug-browser.x-panel-collapsed .x-tool-toggle-over{background-position:-15px -60px;} | |
| 655 | + | |
| 656 | +.x-combo-list{border:1px solid #98c0f4;background:#ddecfe;zoom:1;overflow:hidden;} | |
| 657 | +.x-combo-list-inner{overflow:auto;background:white;position:relative;zoom:1;overflow-x:hidden;} | |
| 658 | +.x-combo-list-hd{font:bold 11px tahoma,arial,helvetica,sans-serif;color:#15428b;background-image:url(../images/default/layout/panel-title-light-bg.gif);border-bottom:1px solid #98c0f4;padding:3px;} | |
| 659 | +.x-resizable-pinned .x-combo-list-inner{border-bottom:1px solid #98c0f4;} | |
| 660 | +.x-combo-list-item{font:normal 12px tahoma,arial,helvetica,sans-serif;padding:2px;border:1px solid #fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} | |
| 661 | +.x-combo-list .x-combo-selected{border:1px dotted #a3bae9!important;background:#DFE8F6;cursor:pointer;} | |
| 662 | +.x-combo-noedit{cursor:pointer;} | |
| 663 | +.x-combo-list .x-toolbar{border-top:1px solid #98c0f4;border-bottom:0 none;} | |
| 664 | +.x-combo-list-small .x-combo-list-item{font:normal 11px tahoma,arial,helvetica,sans-serif;} | |
| 665 | + | |
| 666 | +.x-panel{border-style:solid;border-color:#99bbe8;border-width:0;} | |
| 667 | +.x-panel-header{overflow:hidden;zoom:1;color:#15428b;font:bold 11px tahoma,arial,verdana,sans-serif;padding:5px 3px 4px 5px;border:1px solid #99bbe8;line-height:15px;background:transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 -1px;} | |
| 668 | +.x-panel-body{border:1px solid #99bbe8;border-top:0 none;overflow:hidden;background:white;position:relative;} | |
| 669 | +.x-panel-bbar .x-toolbar{border:1px solid #99bbe8;border-top:0 none;overflow:hidden;padding:2px;} | |
| 670 | +.x-panel-tbar .x-toolbar{border:1px solid #99bbe8;border-top:0 none;overflow:hidden;padding:2px;} | |
| 671 | +.x-panel-tbar-noheader .x-toolbar,.x-panel-mc .x-panel-tbar .x-toolbar{border-top:1px solid #99bbe8;border-bottom:0 none;} | |
| 672 | +.x-panel-body-noheader,.x-panel-mc .x-panel-body{border-top:1px solid #99bbe8;} | |
| 673 | +.x-panel-header{overflow:hidden;zoom:1;} | |
| 674 | +.x-panel-tl .x-panel-header{color:#15428b;font:bold 11px tahoma,arial,verdana,sans-serif;padding:5px 0 4px 0;border:0 none;background:transparent;} | |
| 675 | +.x-panel-tl .x-panel-icon,.x-window-tl .x-panel-icon{padding-left:20px!important;background-repeat:no-repeat;background-position:0 4px;zoom:1;} | |
| 676 | +.x-panel-inline-icon{width:16px;height:16px;background-repeat:no-repeat;background-position:0 0;vertical-align:middle;margin-right:4px;margin-top:-1px;margin-bottom:-1px;} | |
| 677 | +.x-panel-tc{background:transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 0;overflow:hidden;} | |
| 678 | +.ext-strict .ext-ie7 .x-panel-tc{overflow:visible;} | |
| 679 | +.x-panel-tl{background:transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 0;padding-left:6px;zoom:1;border-bottom:1px solid #99bbe8;} | |
| 680 | +.x-panel-tr{background:transparent url(../images/default/panel/corners-sprite.gif) no-repeat right 0;zoom:1;padding-right:6px;} | |
| 681 | +.x-panel-bc{background:transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 bottom;zoom:1;} | |
| 682 | +.x-panel-bc .x-panel-footer{zoom:1;} | |
| 683 | +.x-panel-bl{background:transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 bottom;padding-left:6px;zoom:1;} | |
| 684 | +.x-panel-br{background:transparent url(../images/default/panel/corners-sprite.gif) no-repeat right bottom;padding-right:6px;zoom:1;} | |
| 685 | +.x-panel-mc{border:0 none;padding:0;margin:0;font:normal 11px tahoma,arial,helvetica,sans-serif;padding-top:6px;background:#dfe8f6;} | |
| 686 | +.x-panel-mc .x-panel-body{background:transparent;border:0 none;} | |
| 687 | +.x-panel-ml{background:#fff url(../images/default/panel/left-right.gif) repeat-y 0 0;padding-left:6px;zoom:1;} | |
| 688 | +.x-panel-mr{background:transparent url(../images/default/panel/left-right.gif) repeat-y right 0;padding-right:6px;zoom:1;} | |
| 689 | +.x-panel-bc .x-panel-footer{padding-bottom:6px;} | |
| 690 | +.x-panel-nofooter .x-panel-bc,.x-panel-nofooter .x-window-bc{height:6px;font-size:0;line-height:0;} | |
| 691 | +.x-panel-bwrap{overflow:hidden;zoom:1;left:0;top:0;} | |
| 692 | +.x-panel-body{overflow:hidden;zoom:1;} | |
| 693 | +.x-panel-collapsed .x-resizable-handle{display:none;} | |
| 694 | +.ext-gecko .x-panel-animated div{overflow:hidden!important;} | |
| 695 | +.x-plain-body{overflow:hidden;} | |
| 696 | +.x-plain-bbar .x-toolbar{overflow:hidden;padding:2px;} | |
| 697 | +.x-plain-tbar .x-toolbar{overflow:hidden;padding:2px;} | |
| 698 | +.x-plain-bwrap{overflow:hidden;zoom:1;} | |
| 699 | +.x-plain{overflow:hidden;} | |
| 700 | +.x-tool{overflow:hidden;width:15px;height:15px;float:right;cursor:pointer;background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat;margin-left:2px;} | |
| 701 | +.x-tool-toggle{background-position:0 -60px;} | |
| 702 | +.x-tool-toggle-over{background-position:-15px -60px;} | |
| 703 | +.x-panel-collapsed .x-tool-toggle{background-position:0 -75px;} | |
| 704 | +.x-panel-collapsed .x-tool-toggle-over{background-position:-15px -75px;} | |
| 705 | +.x-tool-close{background-position:0 -0;} | |
| 706 | +.x-tool-close-over{background-position:-15px 0;} | |
| 707 | +.x-tool-minimize{background-position:0 -15px;} | |
| 708 | +.x-tool-minimize-over{background-position:-15px -15px;} | |
| 709 | +.x-tool-maximize{background-position:0 -30px;} | |
| 710 | +.x-tool-maximize-over{background-position:-15px -30px;} | |
| 711 | +.x-tool-restore{background-position:0 -45px;} | |
| 712 | +.x-tool-restore-over{background-position:-15px -45px;} | |
| 713 | +.x-tool-gear{background-position:0 -90px;} | |
| 714 | +.x-tool-gear-over{background-position:-15px -90px;} | |
| 715 | +.x-tool-pin{background-position:0 -135px;} | |
| 716 | +.x-tool-pin-over{background-position:-15px -135px;} | |
| 717 | +.x-tool-unpin{background-position:0 -150px;} | |
| 718 | +.x-tool-unpin-over{background-position:-15px -150px;} | |
| 719 | +.x-tool-right{background-position:0 -165px;} | |
| 720 | +.x-tool-right-over{background-position:-15px -165px;} | |
| 721 | +.x-tool-left{background-position:0 -180px;} | |
| 722 | +.x-tool-left-over{background-position:-15px -180px;} | |
| 723 | +.x-tool-up{background-position:0 -210px;} | |
| 724 | +.x-tool-up-over{background-position:-15px -210px;} | |
| 725 | +.x-tool-down{background-position:0 -195px;} | |
| 726 | +.x-tool-down-over{background-position:-15px -195px;} | |
| 727 | +.x-tool-refresh{background-position:0 -225px;} | |
| 728 | +.x-tool-refresh-over{background-position:-15px -225px;} | |
| 729 | +.x-tool-minus{background-position:0 -255px;} | |
| 730 | +.x-tool-minus-over{background-position:-15px -255px;} | |
| 731 | +.x-tool-plus{background-position:0 -240px;} | |
| 732 | +.x-tool-plus-over{background-position:-15px -240px;} | |
| 733 | +.x-tool-search{background-position:0 -270px;} | |
| 734 | +.x-tool-search-over{background-position:-15px -270px;} | |
| 735 | +.x-tool-save{background-position:0 -285px;} | |
| 736 | +.x-tool-save-over{background-position:-15px -285px;} | |
| 737 | +.x-tool-help{background-position:0 -300px;} | |
| 738 | +.x-tool-help-over{background-position:-15px -300px;} | |
| 739 | +.x-tool-print{background-position:0 -315px;} | |
| 740 | +.x-tool-print-over{background-position:-15px -315px;} | |
| 741 | +.x-panel-ghost{background:#cbddf3;z-index:12000;overflow:hidden;position:absolute;left:0;top:0;opacity:.65;-moz-opacity:.65;filter:alpha(opacity=65);} | |
| 742 | +.x-panel-ghost ul{margin:0;padding:0;overflow:hidden;font-size:0;line-height:0;border:1px solid #99bbe8;border-top:0 none;display:block;} | |
| 743 | +.x-panel-ghost *{cursor:move!important;} | |
| 744 | +.x-panel-dd-spacer{border:2px dashed #99bbe8;} | |
| 745 | +.x-panel-btns-ct{padding:5px;} | |
| 746 | +.x-panel-btns-ct .x-btn{float:right;clear:none;} | |
| 747 | +.x-panel-btns-ct .x-panel-btns td{border:0;padding:0;} | |
| 748 | +.x-panel-btns-ct .x-panel-btns-right table{float:right;clear:none;} | |
| 749 | +.x-panel-btns-ct .x-panel-btns-left table{float:left;clear:none;} | |
| 750 | +.x-panel-btns-ct .x-panel-btns-center{text-align:center;} | |
| 751 | +.x-panel-btns-ct .x-panel-btns-center table{margin:0 auto;} | |
| 752 | +.x-panel-btns-ct table td.x-panel-btn-td{padding:3px;} | |
| 753 | +.x-panel-btns-ct .x-btn-focus .x-btn-left{background-position:0 -147px;} | |
| 754 | +.x-panel-btns-ct .x-btn-focus .x-btn-right{background-position:0 -168px;} | |
| 755 | +.x-panel-btns-ct .x-btn-focus .x-btn-center{background-position:0 -189px;} | |
| 756 | +.x-panel-btns-ct .x-btn-over .x-btn-left{background-position:0 -63px;} | |
| 757 | +.x-panel-btns-ct .x-btn-over .x-btn-right{background-position:0 -84px;} | |
| 758 | +.x-panel-btns-ct .x-btn-over .x-btn-center{background-position:0 -105px;} | |
| 759 | +.x-panel-btns-ct .x-btn-click .x-btn-center{background-position:0 -126px;} | |
| 760 | +.x-panel-btns-ct .x-btn-click .x-btn-right{background-position:0 -84px;} | |
| 761 | +.x-panel-btns-ct .x-btn-click .x-btn-left{background-position:0 -63px;} | |
| 762 | + | |
| 763 | +.x-window{zoom:1;} | |
| 764 | +.x-window .x-resizable-handle{opacity:0;-moz-opacity:0;filter:alpha(opacity=0);} | |
| 765 | +.x-window-proxy{background:#C7DFFC;border:1px solid #99bbe8;z-index:12000;overflow:hidden;position:absolute;left:0;top:0;display:none;opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);} | |
| 766 | +.x-window-header{overflow:hidden;zoom:1;} | |
| 767 | +.x-window-bwrap{z-index:1;position:relative;zoom:1;left:0;top:0;} | |
| 768 | +.x-window-tl .x-window-header{color:#15428b;font:bold 11px tahoma,arial,verdana,sans-serif;padding:5px 0 4px 0;} | |
| 769 | +.x-window-header-text{cursor:pointer;} | |
| 770 | +.x-window-tc{background:transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;overflow:hidden;zoom:1;} | |
| 771 | +.x-window-tl{background:transparent url(../images/default/window/left-corners.png) no-repeat 0 0;padding-left:6px;zoom:1;z-index:1;position:relative;} | |
| 772 | +.x-window-tr{background:transparent url(../images/default/window/right-corners.png) no-repeat right 0;padding-right:6px;} | |
| 773 | +.x-window-bc{background:transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;zoom:1;} | |
| 774 | +.x-window-bc .x-window-footer{padding-bottom:6px;zoom:1;font-size:0;line-height:0;} | |
| 775 | +.x-window-bl{background:transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;padding-left:6px;zoom:1;} | |
| 776 | +.x-window-br{background:transparent url(../images/default/window/right-corners.png) no-repeat right bottom;padding-right:6px;zoom:1;} | |
| 777 | +.x-window-mc{border:1px solid #99bbe8;padding:0;margin:0;font:normal 11px tahoma,arial,helvetica,sans-serif;background:#dfe8f6;} | |
| 778 | +.x-window-ml{background:transparent url(../images/default/window/left-right.png) repeat-y 0 0;padding-left:6px;zoom:1;} | |
| 779 | +.x-window-mr{background:transparent url(../images/default/window/left-right.png) repeat-y right 0;padding-right:6px;zoom:1;} | |
| 780 | +.x-window-body{overflow:hidden;} | |
| 781 | +.x-window-bwrap{overflow:hidden;} | |
| 782 | +.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;} | |
| 783 | +.x-window-maximized .x-window-footer{padding-bottom:0;} | |
| 784 | +.x-window-maximized .x-window-tc{padding-left:3px;padding-right:3px;background-color:white;} | |
| 785 | +.x-window-maximized .x-window-mc{border-left:0 none;border-right:0 none;} | |
| 786 | +.x-window-tbar .x-toolbar,.x-window-bbar .x-toolbar{border-left:0 none;border-right:0 none;} | |
| 787 | +.x-window-bbar .x-toolbar{border-top:1px solid #99bbe8;border-bottom:0 none;} | |
| 788 | +.x-window-draggable,.x-window-draggable .x-window-header-text{cursor:move;} | |
| 789 | +.x-window-maximized .x-window-draggable,.x-window-maximized .x-window-draggable .x-window-header-text{cursor:default;} | |
| 790 | +.x-window-body{background:transparent;} | |
| 791 | +.x-panel-ghost .x-window-tl{border-bottom:1px solid #99bbe8;} | |
| 792 | +.x-panel-collapsed .x-window-tl{border-bottom:1px solid #84a0c4;} | |
| 793 | +.x-window-maximized-ct{overflow:hidden;} | |
| 794 | +.x-window-maximized .x-resizable-handle{display:none;} | |
| 795 | +.x-window-sizing-ghost ul{border:0 none!important;} | |
| 796 | +.x-dlg-focus{-moz-outline:0 none;outline:0 none;width:0;height:0;overflow:hidden;position:absolute;top:0;left:0;} | |
| 797 | +.x-dlg-mask{z-index:10000;display:none;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:.50;filter:alpha(opacity=50);background-color:#CCC;} | |
| 798 | +body.ext-ie6.x-body-masked select{visibility:hidden;} | |
| 799 | +body.ext-ie6.x-body-masked .x-window select{visibility:visible;} | |
| 800 | +.x-window-plain .x-window-mc{background:#CAD9EC;border-right:1px solid #DFE8F6;border-bottom:1px solid #DFE8F6;border-top:1px solid #a3bae9;border-left:1px solid #a3bae9;} | |
| 801 | +.x-window-plain .x-window-body{border-left:1px solid #DFE8F6;border-top:1px solid #DFE8F6;border-bottom:1px solid #a3bae9;border-right:1px solid #a3bae9;background:transparent!important;} | |
| 802 | +body.x-body-masked .x-window-plain .x-window-mc{background:#C7D6E9;} | |
| 803 | + | |
| 804 | +.x-html-editor-wrap{border:1px solid #a9bfd3;background:white;} | |
| 805 | +.x-html-editor-tb .x-btn-text{background:transparent url(../images/default/editor/tb-sprite.gif) no-repeat;} | |
| 806 | +.x-html-editor-tb .x-edit-bold .x-btn-text{background-position:0 0;} | |
| 807 | +.x-html-editor-tb .x-edit-italic .x-btn-text{background-position:-16px 0;} | |
| 808 | +.x-html-editor-tb .x-edit-underline .x-btn-text{background-position:-32px 0;} | |
| 809 | +.x-html-editor-tb .x-edit-forecolor .x-btn-text{background-position:-160px 0;} | |
| 810 | +.x-html-editor-tb .x-edit-backcolor .x-btn-text{background-position:-176px 0;} | |
| 811 | +.x-html-editor-tb .x-edit-justifyleft .x-btn-text{background-position:-112px 0;} | |
| 812 | +.x-html-editor-tb .x-edit-justifycenter .x-btn-text{background-position:-128px 0;} | |
| 813 | +.x-html-editor-tb .x-edit-justifyright .x-btn-text{background-position:-144px 0;} | |
| 814 | +.x-html-editor-tb .x-edit-insertorderedlist .x-btn-text{background-position:-80px 0;} | |
| 815 | +.x-html-editor-tb .x-edit-insertunorderedlist .x-btn-text{background-position:-96px 0;} | |
| 816 | +.x-html-editor-tb .x-edit-increasefontsize .x-btn-text{background-position:-48px 0;} | |
| 817 | +.x-html-editor-tb .x-edit-decreasefontsize .x-btn-text{background-position:-64px 0;} | |
| 818 | +.x-html-editor-tb .x-edit-sourceedit .x-btn-text{background-position:-192px 0;} | |
| 819 | +.x-html-editor-tb .x-edit-createlink .x-btn-text{background-position:-208px 0;} | |
| 820 | +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px;} | |
| 821 | +.x-html-editor-tb .x-toolbar{position:static!important;} | |
| 822 | + | |
| 823 | +.x-panel-noborder .x-panel-body-noborder{border-width:0;} | |
| 824 | +.x-panel-noborder .x-panel-header-noborder{border-width:0;border-bottom:1px solid #99bbe8;} | |
| 825 | +.x-panel-noborder .x-panel-tbar-noborder .x-toolbar{border-width:0;border-bottom:1px solid #99bbe8;} | |
| 826 | +.x-panel-noborder .x-panel-bbar-noborder .x-toolbar{border-width:0;border-top:1px solid #99bbe8;} | |
| 827 | +.x-window-noborder .x-window-mc{border-width:0;} | |
| 828 | +.x-window-plain .x-window-body-noborder{border-width:0;} | |
| 829 | +.x-tab-panel-noborder .x-tab-panel-body-noborder{border-width:0;} | |
| 830 | +.x-tab-panel-noborder .x-tab-panel-header-noborder{border-top-width:0;border-left-width:0;border-right-width:0;} | |
| 831 | +.x-tab-panel-noborder .x-tab-panel-footer-noborder{border-bottom-width:0;border-left-width:0;border-right-width:0;} | |
| 832 | +.x-tab-panel-bbar-noborder .x-toolbar{border-width:0;border-top:1px solid #99bbe8;} | |
| 833 | +.x-tab-panel-tbar-noborder .x-toolbar{border-width:0;border-bottom:1px solid #99bbe8;} | |
| 834 | + | |
| 835 | +.x-border-layout-ct{background:#dfe8f6;} | |
| 836 | +.x-border-panel{position:absolute;left:0;top:0;} | |
| 837 | +.x-tool-collapse-south{background-position:0 -195px;} | |
| 838 | +.x-tool-collapse-south-over{background-position:-15px -195px;} | |
| 839 | +.x-tool-collapse-north{background-position:0 -210px;} | |
| 840 | +.x-tool-collapse-north-over{background-position:-15px -210px;} | |
| 841 | +.x-tool-collapse-west{background-position:0 -180px;} | |
| 842 | +.x-tool-collapse-west-over{background-position:-15px -180px;} | |
| 843 | +.x-tool-collapse-east{background-position:0 -165px;} | |
| 844 | +.x-tool-collapse-east-over{background-position:-15px -165px;} | |
| 845 | +.x-tool-expand-south{background-position:0 -210px;} | |
| 846 | +.x-tool-expand-south-over{background-position:-15px -210px;} | |
| 847 | +.x-tool-expand-north{background-position:0 -195px;} | |
| 848 | +.x-tool-expand-north-over{background-position:-15px -195px;} | |
| 849 | +.x-tool-expand-west{background-position:0 -165px;} | |
| 850 | +.x-tool-expand-west-over{background-position:-15px -165px;} | |
| 851 | +.x-tool-expand-east{background-position:0 -180px;} | |
| 852 | +.x-tool-expand-east-over{background-position:-15px -180px;} | |
| 853 | +.x-tool-expand-north,.x-tool-expand-south{float:right;margin:3px;} | |
| 854 | +.x-tool-expand-east,.x-tool-expand-west{float:none;margin:3px auto;} | |
| 855 | +.x-accordion-hd .x-tool-toggle{background-position:0 -255px;} | |
| 856 | +.x-accordion-hd .x-tool-toggle-over{background-position:-15px -255px;} | |
| 857 | +.x-panel-collapsed .x-accordion-hd .x-tool-toggle{background-position:0 -240px;} | |
| 858 | +.x-panel-collapsed .x-accordion-hd .x-tool-toggle-over{background-position:-15px -240px;} | |
| 859 | +.x-accordion-hd{color:#222;padding-top:4px;padding-bottom:3px;border-top:0 none;font-weight:normal;background:transparent url(../images/default/panel/light-hd.gif) repeat-x 0 -9px;} | |
| 860 | +.x-layout-collapsed{position:absolute;left:-10000px;top:-10000px;visibility:hidden;background-color:#d2e0f2;width:20px;height:20px;overflow:hidden;border:1px solid #98c0f4;z-index:20;} | |
| 861 | +.ext-border-box .x-layout-collapsed{width:22px;height:22px;} | |
| 862 | +.x-layout-collapsed-over{cursor:pointer;background-color:#d9e8fb;} | |
| 863 | +.x-layout-collapsed-west .x-layout-collapsed-tools,.x-layout-collapsed-east .x-layout-collapsed-tools{position:absolute;top:0;left:0;width:20px;height:20px;} | |
| 864 | +.x-layout-split{position:absolute;height:5px;width:5px;line-height:1px;font-size:1px;z-index:3;background-color:transparent;} | |
| 865 | +.ext-strict .ext-ie6 .x-layout-split{background-color:#fff!important;filter:alpha(opacity=1);} | |
| 866 | +.x-layout-split-h{background-image:url(../images/default/s.gif);background-position:left;} | |
| 867 | +.x-layout-split-v{background-image:url(../images/default/s.gif);background-position:top;} | |
| 868 | +.x-column-layout-ct{overflow:hidden;zoom:1;} | |
| 869 | +.x-column{float:left;padding:0;margin:0;overflow:hidden;zoom:1;} | |
| 870 | +.x-layout-mini{position:absolute;top:0;left:0;display:block;width:5px;height:35px;cursor:pointer;opacity:.5;-moz-opacity:.5;filter:alpha(opacity=50);} | |
| 871 | +.x-layout-mini-over,.x-layout-collapsed-over .x-layout-mini{opacity:1;-moz-opacity:1;filter:none;} | |
| 872 | +.x-layout-split-west .x-layout-mini{top:48%;background-image:url(../images/default/layout/mini-left.gif);} | |
| 873 | +.x-layout-split-east .x-layout-mini{top:48%;background-image:url(../images/default/layout/mini-right.gif);} | |
| 874 | +.x-layout-split-north .x-layout-mini{left:48%;height:5px;width:35px;background-image:url(../images/default/layout/mini-top.gif);} | |
| 875 | +.x-layout-split-south .x-layout-mini{left:48%;height:5px;width:35px;background-image:url(../images/default/layout/mini-bottom.gif);} | |
| 876 | +.x-layout-cmini-west .x-layout-mini{top:48%;background-image:url(../images/default/layout/mini-right.gif);} | |
| 877 | +.x-layout-cmini-east .x-layout-mini{top:48%;background-image:url(../images/default/layout/mini-left.gif);} | |
| 878 | +.x-layout-cmini-north .x-layout-mini{left:48%;height:5px;width:35px;background-image:url(../images/default/layout/mini-bottom.gif);} | |
| 879 | +.x-layout-cmini-south .x-layout-mini{left:48%;height:5px;width:35px;background-image:url(../images/default/layout/mini-top.gif);} | |
| 880 | +.x-layout-cmini-west,.x-layout-cmini-east{border:0 none;width:5px!important;padding:0;background:transparent;} | |
| 881 | +.x-layout-cmini-north,.x-layout-cmini-south{border:0 none;height:5px!important;padding:0;background:transparent;} | |
| 882 | +.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;} | |
| 883 | +.x-abs-layout-item{position:absolute;left:0;top:0;} | |
| 884 | +.ext-ie input.x-abs-layout-item,.ext-ie textarea.x-abs-layout-item{margin:0;} | |
| 885 | + | |
| 886 | +.x-progress-wrap{border:1px solid #6593cf;overflow:hidden;} | |
| 887 | +.x-progress-inner{height:18px;background:#e0e8f3 url(../images/default/qtip/bg.gif) repeat-x;position:relative;} | |
| 888 | +.x-progress-bar{height:18px;float:left;width:0;background:#9CBFEE url( ../images/default/progress/progress-bg.gif ) repeat-x left center;border-top:1px solid #D1E4FD;border-bottom:1px solid #7FA9E4;border-right:1px solid #7FA9E4;} | |
| 889 | +.x-progress-text{font-size:11px;font-weight:bold;color:#fff;padding:1px 5px;overflow:hidden;position:absolute;left:0;text-align:center;} | |
| 890 | +.x-progress-text-back{color:#396095;line-height:16px;} | |
| 891 | +.ext-ie .x-progress-text-back{line-height:15px;} | |
| 892 | + | |
| 893 | +.x-window-dlg .x-window-body{border:0 none!important;padding:5px 10px;overflow:hidden!important;} | |
| 894 | +.x-window-dlg .x-window-mc{border:0 none!important;} | |
| 895 | +.x-window-dlg .ext-mb-text,.x-window-dlg .x-window-header-text{font-size:12px;} | |
| 896 | +.x-window-dlg .ext-mb-input{margin-top:4px;width:95%;} | |
| 897 | +.x-window-dlg .ext-mb-textarea{margin-top:4px;font:normal 12px tahoma,arial,helvetica,sans-serif;} | |
| 898 | +.x-window-dlg .x-progress-wrap{margin-top:4px;} | |
| 899 | +.ext-ie .x-window-dlg .x-progress-wrap{margin-top:6px;} | |
| 900 | +.x-window-dlg .x-msg-box-wait{background:transparent url(../images/default/grid/loading.gif) no-repeat left;display:block;width:300px;padding-left:18px;line-height:18px;} | |
| 901 | +.x-window-dlg .ext-mb-icon{float:left;width:47px;height:32px;} | |
| 902 | +.x-window-dlg .ext-mb-icon{float:left;width:47px;height:32px;} | |
| 903 | +.ext-ie .x-window-dlg .ext-mb-icon{width:44px;} | |
| 904 | +.x-window-dlg .ext-mb-info{background:transparent url(../images/default/window/icon-info.gif) no-repeat top left;} | |
| 905 | +.x-window-dlg .ext-mb-warning{background:transparent url(../images/default/window/icon-warning.gif) no-repeat top left;} | |
| 906 | +.x-window-dlg .ext-mb-question{background:transparent url(../images/default/window/icon-question.gif) no-repeat top left;} | |
| 907 | +.x-window-dlg .ext-mb-error{background:transparent url(../images/default/window/icon-error.gif) no-repeat top left;} | |
| 908 | +.ext-gecko2 .ext-mb-fix-cursor{overflow:auto;} | |
| 909 | + | |
| 910 | + .x-slider{zoom:1;} | |
| 911 | +.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1;} | |
| 912 | +.x-slider-focus{position:absolute;left:0;top:0;width:1px;height:1px;line-height:1px;font-size:1px;-moz-outline:0 none;outline:0 none;-moz-user-select:text;-khtml-user-select:text;} | |
| 913 | +.x-slider-horz{padding-left:7px;background:transparent url(../images/default/slider/slider-bg.png) no-repeat 0 -22px;} | |
| 914 | +.x-slider-horz .x-slider-end{padding-right:7px;zoom:1;background:transparent url(../images/default/slider/slider-bg.png) no-repeat right -44px;} | |
| 915 | +.x-slider-horz .x-slider-inner{background:transparent url(../images/default/slider/slider-bg.png) repeat-x 0 0;height:22px;} | |
| 916 | +.x-slider-horz .x-slider-thumb{width:14px;height:15px;position:absolute;left:0;top:3px;background:transparent url(../images/default/slider/slider-thumb.png) no-repeat 0 0;} | |
| 917 | +.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px;} | |
| 918 | +.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px;} | |
| 919 | +.x-slider-vert{padding-top:7px;background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -44px 0;width:22px;} | |
| 920 | +.x-slider-vert .x-slider-end{padding-bottom:7px;zoom:1;background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -22px bottom;} | |
| 921 | +.x-slider-vert .x-slider-inner{background:transparent url(../images/default/slider/slider-v-bg.png) repeat-y 0 0;} | |
| 922 | +.x-slider-vert .x-slider-thumb{width:15px;height:14px;position:absolute;left:3px;bottom:0;background:transparent url(../images/default/slider/slider-v-thumb.png) no-repeat 0 0;} | |
| 923 | +.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px;} | |
| 924 | +.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px;} | |
| 925 | + | ... | ... |
thirdpartyjs/extjs/resources/css/form.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +/* all fields */ | |
| 10 | +.x-form-field{ | |
| 11 | + margin: 0 0 0 0; | |
| 12 | + font:normal 12px tahoma, arial, helvetica, sans-serif; | |
| 13 | +} | |
| 14 | + | |
| 15 | +/* ---- text fields ---- */ | |
| 16 | +.x-form-text, textarea.x-form-field{ | |
| 17 | + padding:1px 3px; | |
| 18 | + background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0; | |
| 19 | + border:1px solid #B5B8C8; | |
| 20 | +} | |
| 21 | +textarea.x-form-field { | |
| 22 | + padding:2px 3px; | |
| 23 | +} | |
| 24 | +.x-form-text { | |
| 25 | + height:22px; | |
| 26 | + line-height:18px; | |
| 27 | + vertical-align:middle; | |
| 28 | +} | |
| 29 | +.ext-ie .x-form-text { | |
| 30 | + margin:-1px 0; /* ie bogus margin bug */ | |
| 31 | + height:22px; /* ie quirks */ | |
| 32 | + line-height:18px; | |
| 33 | +} | |
| 34 | +.ext-ie textarea.x-form-field { | |
| 35 | + margin:-1px 0; /* ie bogus margin bug */ | |
| 36 | +} | |
| 37 | +.ext-strict .x-form-text { | |
| 38 | + height:18px; | |
| 39 | +} | |
| 40 | +.ext-safari .x-form-text { | |
| 41 | + height:20px; /* safari always same size */ | |
| 42 | + padding:0 3px; /* remove extra top/bottom padding */ | |
| 43 | +} | |
| 44 | +.ext-safari.ext-mac textarea.x-form-field { | |
| 45 | + margin-bottom:-2px; /* another bogus margin bug, safari/mac only */ | |
| 46 | +} | |
| 47 | +.ext-gecko .x-form-text { | |
| 48 | + padding-top:2px; /* FF won't center the text vertically */ | |
| 49 | + padding-bottom:0; | |
| 50 | +} | |
| 51 | +textarea { | |
| 52 | + resize: none; /* Disable browser resizable textarea */ | |
| 53 | +} | |
| 54 | + | |
| 55 | +/* select boxes */ | |
| 56 | + | |
| 57 | +.x-form-select-one { | |
| 58 | + height:20px; | |
| 59 | + line-height:18px; | |
| 60 | + vertical-align:middle; | |
| 61 | + background-color:#fff; /* opera */ | |
| 62 | + border: 1px solid #B5B8C8; | |
| 63 | +} | |
| 64 | + | |
| 65 | +/* multi select boxes */ | |
| 66 | + | |
| 67 | +/* --- TODO --- */ | |
| 68 | + | |
| 69 | +/* checkboxes / radios */ | |
| 70 | +.x-form-check-group, .x-form-radio-group { | |
| 71 | + margin-bottom: 0; | |
| 72 | +} | |
| 73 | +.x-form-check-group .x-form-invalid .x-panel-body, | |
| 74 | +.x-form-radio-group .x-form-invalid .x-panel-body { | |
| 75 | + background-color: transparent; | |
| 76 | +} | |
| 77 | +.x-form-check-wrap, .x-form-radio-wrap { | |
| 78 | + padding: 3px 0 0 0; | |
| 79 | + line-height:18px; | |
| 80 | +} | |
| 81 | +.x-form-check-group .x-form-check-wrap, | |
| 82 | +.x-form-radio-group .x-form-radio-wrap { | |
| 83 | + height: 18px; | |
| 84 | +} | |
| 85 | +.ext-ie .x-form-check-group .x-form-check-wrap, | |
| 86 | +.ext-ie .x-form-radio-group .x-form-radio-wrap { | |
| 87 | + height: 21px; | |
| 88 | +} | |
| 89 | +.ext-ie .x-form-check-wrap input, | |
| 90 | +.ext-ie .x-form-radio-wrap input { | |
| 91 | + width:15px; | |
| 92 | + height:15px; | |
| 93 | +} | |
| 94 | +.x-form-check, .x-form-radio { | |
| 95 | + height: 13px; | |
| 96 | + width: 13px; | |
| 97 | + vertical-align: bottom; | |
| 98 | +} | |
| 99 | +.x-form-radio { | |
| 100 | + margin-bottom: 3px; | |
| 101 | +} | |
| 102 | +.x-form-check, .ext-ie .x-form-radio { | |
| 103 | + margin-bottom: 2px; | |
| 104 | +} | |
| 105 | +.x-form-check-wrap-inner, .x-form-radio-wrap-inner { | |
| 106 | + display: inline; | |
| 107 | + padding: 3px 0 0 0; | |
| 108 | +} | |
| 109 | +.x-form-check { | |
| 110 | + background: url('../images/default/form/checkbox.gif') no-repeat 0 0; | |
| 111 | +} | |
| 112 | +.x-form-radio { | |
| 113 | + background: url('../images/default/form/radio.gif') no-repeat 0 0; | |
| 114 | +} | |
| 115 | +.x-form-check-focus .x-form-check, .x-form-check-over .x-form-check, | |
| 116 | +.x-form-check-focus .x-form-radio, .x-form-check-over .x-form-radio { | |
| 117 | + background-position: -13px 0; | |
| 118 | +} | |
| 119 | +.x-form-check-down .x-form-check, | |
| 120 | +.x-form-check-down .x-form-radio { | |
| 121 | + background-position:-26px 0; | |
| 122 | +} | |
| 123 | +.x-form-check-checked .x-form-check-focus .x-form-check, | |
| 124 | +.x-form-check-checked .x-form-check-over .x-form-check { | |
| 125 | + background-position:-13px -13px; | |
| 126 | +} | |
| 127 | +.x-form-check-checked .x-form-check-down .x-form-check { | |
| 128 | + background-position:-26px -13px; | |
| 129 | +} | |
| 130 | +.x-form-check-checked .x-form-check, | |
| 131 | +.x-form-check-checked .x-form-radio { | |
| 132 | + background-position:0 -13px; | |
| 133 | +} | |
| 134 | +.x-form-check-group-label { | |
| 135 | + border-bottom: 1px solid #99BBE8; | |
| 136 | + color: #15428B; | |
| 137 | + margin-bottom: 5px; | |
| 138 | + padding-left: 3px !important; | |
| 139 | + float: none !important; | |
| 140 | +} | |
| 141 | + | |
| 142 | +/* wrapped fields and triggers */ | |
| 143 | + | |
| 144 | +.x-form-field-wrap { | |
| 145 | + position:relative; | |
| 146 | + zoom:1; | |
| 147 | + white-space: nowrap; | |
| 148 | +} | |
| 149 | +.x-form-field-wrap .x-form-trigger{ | |
| 150 | + width:17px; | |
| 151 | + height:21px; | |
| 152 | + border:0; | |
| 153 | + background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0; | |
| 154 | + cursor:pointer; | |
| 155 | + border-bottom: 1px solid #B5B8C8; | |
| 156 | + position:absolute; | |
| 157 | + top:0; | |
| 158 | +} | |
| 159 | +.ext-safari .x-form-field-wrap .x-form-trigger{ | |
| 160 | + height:21px; /* safari doesn't allow height adjustments to the fields, so adjust trigger */ | |
| 161 | +} | |
| 162 | + | |
| 163 | +.x-form-field-wrap .x-form-date-trigger{ | |
| 164 | + background-image: url(../images/default/form/date-trigger.gif); | |
| 165 | + cursor:pointer; | |
| 166 | +} | |
| 167 | +.x-form-field-wrap .x-form-clear-trigger{ | |
| 168 | + background-image: url(../images/default/form/clear-trigger.gif); | |
| 169 | + cursor:pointer; | |
| 170 | +} | |
| 171 | +.x-form-field-wrap .x-form-search-trigger{ | |
| 172 | + background-image: url(../images/default/form/search-trigger.gif); | |
| 173 | + cursor:pointer; | |
| 174 | +} | |
| 175 | +.ext-safari .x-form-field-wrap .x-form-trigger{ | |
| 176 | + right:0; | |
| 177 | +} | |
| 178 | +.x-form-field-wrap .x-form-twin-triggers{ | |
| 179 | + | |
| 180 | +} | |
| 181 | +.x-form-field-wrap .x-form-twin-triggers .x-form-trigger{ | |
| 182 | + position:static; | |
| 183 | + top:auto; | |
| 184 | + vertical-align:top; | |
| 185 | +} | |
| 186 | + | |
| 187 | + | |
| 188 | +.x-form-field-wrap .x-form-trigger-over{ | |
| 189 | + background-position:-17px 0; | |
| 190 | +} | |
| 191 | +.x-form-field-wrap .x-form-trigger-click{ | |
| 192 | + background-position:-34px 0; | |
| 193 | +} | |
| 194 | + | |
| 195 | +.x-trigger-wrap-focus .x-form-trigger{ | |
| 196 | + background-position:-51px 0; | |
| 197 | +} | |
| 198 | +.x-trigger-wrap-focus .x-form-trigger-over{ | |
| 199 | + background-position:-68px 0; | |
| 200 | +} | |
| 201 | +.x-trigger-wrap-focus .x-form-trigger-click{ | |
| 202 | + background-position:-85px 0; | |
| 203 | +} | |
| 204 | +.x-trigger-wrap-focus .x-form-trigger{ | |
| 205 | + border-bottom: 1px solid #7eadd9; | |
| 206 | +} | |
| 207 | + | |
| 208 | +.x-item-disabled .x-form-trigger-over{ | |
| 209 | + background-position:0 0 !important; | |
| 210 | + border-bottom: 1px solid #B5B8C8; | |
| 211 | +} | |
| 212 | +.x-item-disabled .x-form-trigger-click{ | |
| 213 | + background-position:0 0 !important; | |
| 214 | + border-bottom: 1px solid #B5B8C8; | |
| 215 | +} | |
| 216 | + | |
| 217 | +/* field focus style */ | |
| 218 | +.x-form-focus, textarea.x-form-focus{ | |
| 219 | + border: 1px solid #7eadd9; | |
| 220 | +} | |
| 221 | + | |
| 222 | +/* invalid fields */ | |
| 223 | +.x-form-invalid, textarea.x-form-invalid{ | |
| 224 | + background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom; | |
| 225 | + border: 1px solid #dd7870; | |
| 226 | +} | |
| 227 | +.ext-safari .x-form-invalid{ | |
| 228 | + background-color:#ffeeee; | |
| 229 | + border: 1px solid #ff7870; | |
| 230 | +} | |
| 231 | + | |
| 232 | +/* editors */ | |
| 233 | +.x-editor { | |
| 234 | + visibility:hidden; | |
| 235 | + padding:0; | |
| 236 | + margin:0; | |
| 237 | +} | |
| 238 | +.x-editor .x-form-check-wrap, | |
| 239 | +.x-editor .x-form-radio-wrap { | |
| 240 | + background:#fff; | |
| 241 | + padding:3px; | |
| 242 | +} | |
| 243 | +.x-editor .x-form-checkbox { | |
| 244 | + height:13px; | |
| 245 | +} | |
| 246 | +/* If you override the default field font above, you would need to change this font as well */ | |
| 247 | +.x-form-grow-sizer { | |
| 248 | + font:normal 12px tahoma, arial, helvetica, sans-serif; | |
| 249 | + left: -10000px; | |
| 250 | + padding: 8px 3px; | |
| 251 | + position: absolute; | |
| 252 | + visibility:hidden; | |
| 253 | + top: -10000px; | |
| 254 | + white-space: pre-wrap; | |
| 255 | + white-space: -moz-pre-wrap; | |
| 256 | + white-space: -pre-wrap; | |
| 257 | + white-space: -o-pre-wrap; | |
| 258 | + word-wrap: break-word; | |
| 259 | + zoom:1; | |
| 260 | +} | |
| 261 | +.x-form-grow-sizer p { | |
| 262 | + margin:0 !important; | |
| 263 | + border:0 none !important; | |
| 264 | + padding:0 !important; | |
| 265 | +} | |
| 266 | +/* Form Items CSS */ | |
| 267 | + | |
| 268 | +.x-form-item { | |
| 269 | + font:normal 12px tahoma, arial, helvetica, sans-serif; | |
| 270 | + display:block; | |
| 271 | + margin-bottom:4px; | |
| 272 | + zoom:1; | |
| 273 | +} | |
| 274 | + | |
| 275 | +.x-form-item label { | |
| 276 | + display:block; | |
| 277 | + float:left; | |
| 278 | + width:100px; | |
| 279 | + padding:3px; | |
| 280 | + padding-left:0; | |
| 281 | + clear:left; | |
| 282 | + z-index:2; | |
| 283 | + position:relative; | |
| 284 | +} | |
| 285 | + | |
| 286 | +.x-form-element { | |
| 287 | + padding-left:105px; | |
| 288 | + position:relative; | |
| 289 | +} | |
| 290 | + | |
| 291 | +.x-form-invalid-msg { | |
| 292 | + color:#ee0000; | |
| 293 | + padding:2px; | |
| 294 | + padding-left:18px; | |
| 295 | + font:normal 11px tahoma, arial, helvetica, sans-serif; | |
| 296 | + background: transparent url(../images/default/shared/warning.gif) no-repeat 0 2px; | |
| 297 | + line-height:16px; | |
| 298 | + width:200px; | |
| 299 | +} | |
| 300 | + | |
| 301 | + | |
| 302 | +.x-form-label-right label { | |
| 303 | + text-align:right; | |
| 304 | +} | |
| 305 | +.x-form-label-left label { | |
| 306 | + text-align:left; | |
| 307 | +} | |
| 308 | + | |
| 309 | +.x-form-label-top .x-form-item label { | |
| 310 | + width:auto; | |
| 311 | + float:none; | |
| 312 | + clear:none; | |
| 313 | + display:inline; | |
| 314 | + margin-bottom:4px; | |
| 315 | + position:static; | |
| 316 | +} | |
| 317 | + | |
| 318 | +.x-form-label-top .x-form-element { | |
| 319 | + padding-left:0; | |
| 320 | + padding-top:4px; | |
| 321 | +} | |
| 322 | + | |
| 323 | +.x-form-label-top .x-form-item { | |
| 324 | + padding-bottom:4px; | |
| 325 | +} | |
| 326 | + | |
| 327 | +.x-form-empty-field { | |
| 328 | + color:gray; | |
| 329 | +} | |
| 330 | +/* Editor small font for grid, toolbar and tree */ | |
| 331 | +.x-small-editor .x-form-field { | |
| 332 | + font:normal 11px arial, tahoma, helvetica, sans-serif; | |
| 333 | +} | |
| 334 | +.x-small-editor .x-form-text { | |
| 335 | + height:20px; | |
| 336 | + line-height:16px; | |
| 337 | + vertical-align:middle; | |
| 338 | +} | |
| 339 | +.ext-ie .x-small-editor .x-form-text { | |
| 340 | + margin-top:-1px !important; /* ie bogus margin bug */ | |
| 341 | + margin-bottom:-1px !important; | |
| 342 | + height:20px !important; /* ie quirks */ | |
| 343 | + line-height:16px !important; | |
| 344 | +} | |
| 345 | +.ext-strict .x-small-editor .x-form-text { | |
| 346 | + height:16px !important; | |
| 347 | +} | |
| 348 | + | |
| 349 | +.ext-safari .x-small-editor .x-form-field { | |
| 350 | + /* safari text field will not size so needs bigger font */ | |
| 351 | + font:normal 12px arial, tahoma, helvetica, sans-serif; | |
| 352 | +} | |
| 353 | +.ext-ie .x-small-editor .x-form-text { | |
| 354 | + height:20px; | |
| 355 | + line-height:16px; | |
| 356 | +} | |
| 357 | +.ext-border-box .x-small-editor .x-form-text { | |
| 358 | + height:20px; | |
| 359 | +} | |
| 360 | + | |
| 361 | +.x-small-editor .x-form-select-one { | |
| 362 | + height:20px; | |
| 363 | + line-height:16px; | |
| 364 | + vertical-align:middle; | |
| 365 | +} | |
| 366 | +.x-small-editor .x-form-num-field { | |
| 367 | + text-align:right; | |
| 368 | +} | |
| 369 | +.x-small-editor .x-form-field-wrap .x-form-trigger{ | |
| 370 | + height:19px; | |
| 371 | +} | |
| 372 | + | |
| 373 | + | |
| 374 | +.x-form-clear { | |
| 375 | + clear:both; | |
| 376 | + height:0; | |
| 377 | + overflow:hidden; | |
| 378 | + line-height:0; | |
| 379 | + font-size:0; | |
| 380 | +} | |
| 381 | +.x-form-clear-left { | |
| 382 | + clear:left; | |
| 383 | + height:0; | |
| 384 | + overflow:hidden; | |
| 385 | + line-height:0; | |
| 386 | + font-size:0; | |
| 387 | +} | |
| 388 | + | |
| 389 | +.x-form-cb-label { | |
| 390 | + width:'auto' !important; | |
| 391 | + float:none !important; | |
| 392 | + clear:none !important; | |
| 393 | + display:inline !important; | |
| 394 | + margin-left:4px; | |
| 395 | +} | |
| 396 | + | |
| 397 | +.x-form-column { | |
| 398 | + float:left; | |
| 399 | + padding:0; | |
| 400 | + margin:0; | |
| 401 | + width:48%; | |
| 402 | + overflow:hidden; | |
| 403 | + zoom:1; | |
| 404 | +} | |
| 405 | + | |
| 406 | +/* buttons */ | |
| 407 | +.x-form .x-form-btns-ct .x-btn{ | |
| 408 | + float:right; | |
| 409 | + clear:none; | |
| 410 | +} | |
| 411 | +.x-form .x-form-btns-ct .x-form-btns td { | |
| 412 | + border:0; | |
| 413 | + padding:0; | |
| 414 | +} | |
| 415 | +.x-form .x-form-btns-ct .x-form-btns-right table{ | |
| 416 | + float:right; | |
| 417 | + clear:none; | |
| 418 | +} | |
| 419 | +.x-form .x-form-btns-ct .x-form-btns-left table{ | |
| 420 | + float:left; | |
| 421 | + clear:none; | |
| 422 | +} | |
| 423 | +.x-form .x-form-btns-ct .x-form-btns-center{ | |
| 424 | + text-align:center; /*ie*/ | |
| 425 | +} | |
| 426 | +.x-form .x-form-btns-ct .x-form-btns-center table{ | |
| 427 | + margin:0 auto; /*everyone else*/ | |
| 428 | +} | |
| 429 | +.x-form .x-form-btns-ct table td.x-form-btn-td{ | |
| 430 | + padding:3px; | |
| 431 | +} | |
| 432 | + | |
| 433 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-left{ | |
| 434 | + background-position:0 -147px; | |
| 435 | +} | |
| 436 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-right{ | |
| 437 | + background-position:0 -168px; | |
| 438 | +} | |
| 439 | +.x-form .x-form-btns-ct .x-btn-focus .x-btn-center{ | |
| 440 | + background-position:0 -189px; | |
| 441 | +} | |
| 442 | + | |
| 443 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-center{ | |
| 444 | + background-position:0 -126px; | |
| 445 | +} | |
| 446 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-right{ | |
| 447 | + background-position:0 -84px; | |
| 448 | +} | |
| 449 | +.x-form .x-form-btns-ct .x-btn-click .x-btn-left{ | |
| 450 | + background-position:0 -63px; | |
| 451 | +} | |
| 452 | +.x-form-invalid-icon { | |
| 453 | + width:16px; | |
| 454 | + height:18px; | |
| 455 | + visibility:hidden; | |
| 456 | + position:absolute; | |
| 457 | + left:0; | |
| 458 | + top:0; | |
| 459 | + display:block; | |
| 460 | + background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px; | |
| 461 | +} | |
| 462 | + | |
| 463 | +/* fieldsets */ | |
| 464 | +.x-fieldset { | |
| 465 | + border:1px solid #B5B8C8; | |
| 466 | + padding:10px; | |
| 467 | + margin-bottom:10px; | |
| 468 | + display:block; /* preserve margins in IE */ | |
| 469 | +} | |
| 470 | +.x-fieldset legend { | |
| 471 | + font:bold 11px tahoma, arial, helvetica, sans-serif; | |
| 472 | + color:#15428b; | |
| 473 | +} | |
| 474 | +.ext-ie .x-fieldset legend { | |
| 475 | + margin-bottom:10px; | |
| 476 | +} | |
| 477 | +.ext-ie .x-fieldset { | |
| 478 | + padding-top: 0; | |
| 479 | + padding-bottom:10px; | |
| 480 | +} | |
| 481 | +.x-fieldset legend .x-tool-toggle { | |
| 482 | + margin-right:3px; | |
| 483 | + margin-left:0; | |
| 484 | + float:left !important; | |
| 485 | +} | |
| 486 | +.x-fieldset legend input { | |
| 487 | + margin-right:3px; | |
| 488 | + float:left !important; | |
| 489 | + height:13px; | |
| 490 | + width:13px; | |
| 491 | +} | |
| 492 | +fieldset.x-panel-collapsed { | |
| 493 | + padding-bottom:0 !important; | |
| 494 | + border-width: 1px 0 0 0 !important; | |
| 495 | +} | |
| 496 | +fieldset.x-panel-collapsed .x-fieldset-bwrap { | |
| 497 | + visibility:hidden; | |
| 498 | + position:absolute; | |
| 499 | + left:-1000px; | |
| 500 | + top:-1000px; | |
| 501 | +} | |
| 502 | +.ext-ie .x-fieldset-bwrap { | |
| 503 | + zoom:1; | |
| 504 | +} | |
| 505 | +.ext-ie td .x-form-text { | |
| 506 | + position:relative; | |
| 507 | + top:-1px; | |
| 508 | +} | |
| 509 | +.x-fieldset-noborder { | |
| 510 | + border:0px none transparent; | |
| 511 | +} | |
| 512 | +.x-fieldset-noborder legend { | |
| 513 | + margin-left:-3px; | |
| 514 | +} | |
| 515 | +/* IE legend positioing bug */ | |
| 516 | +.ext-ie .x-fieldset-noborder legend { | |
| 517 | + position: relative; | |
| 518 | + margin-bottom:23px; | |
| 519 | +} | |
| 520 | +.ext-ie .x-fieldset-noborder legend span { | |
| 521 | + position: absolute; | |
| 522 | + left:-5px; | |
| 523 | +} | |
| 524 | + | |
| 525 | +.ext-gecko .x-window-body .x-form-item { | |
| 526 | + -moz-outline: none; | |
| 527 | + overflow: auto; | |
| 528 | +} | |
| 529 | + | |
| 530 | +.ext-gecko .x-form-item { | |
| 531 | + -moz-outline: none; | |
| 532 | +} | |
| 533 | + | |
| 534 | +.x-hide-label label.x-form-item-label { | |
| 535 | + display:none; | |
| 536 | +} | |
| 537 | +.x-hide-label .x-form-element { | |
| 538 | + padding-left: 0 !important; | |
| 539 | +} | |
| 540 | + | |
| 541 | +.x-fieldset { | |
| 542 | + overflow:hidden; | |
| 543 | +} | |
| 544 | + | |
| 545 | +.x-fieldset-bwrap { | |
| 546 | + overflow:hidden; | |
| 547 | + zoom:1; | |
| 548 | +} | |
| 549 | + | |
| 550 | +.x-fieldset-body { | |
| 551 | + overflow:hidden; | |
| 552 | +} | |
| 0 | 553 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/grid.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +/* Grid3 styles */ | |
| 10 | +.x-grid3 { | |
| 11 | + position:relative; | |
| 12 | + overflow:hidden; | |
| 13 | + background-color:#fff; | |
| 14 | +} | |
| 15 | + | |
| 16 | +.x-grid-panel .x-panel-body { | |
| 17 | + overflow:hidden !important; | |
| 18 | +} | |
| 19 | + | |
| 20 | +.x-grid-panel .x-panel-mc .x-panel-body { | |
| 21 | + border:1px solid #99bbe8; | |
| 22 | +} | |
| 23 | + | |
| 24 | +.x-grid3 table { | |
| 25 | + table-layout:fixed; | |
| 26 | +} | |
| 27 | +.x-grid3-viewport{ | |
| 28 | + overflow:hidden; | |
| 29 | +} | |
| 30 | +.x-grid3-hd-row td, .x-grid3-row td, .x-grid3-summary-row td{ | |
| 31 | + font:normal 11px arial, tahoma, helvetica, sans-serif; | |
| 32 | + -moz-outline: none; | |
| 33 | + -moz-user-focus: normal; | |
| 34 | +} | |
| 35 | +.x-grid3-row td, .x-grid3-summary-row td { | |
| 36 | + line-height:13px; | |
| 37 | + vertical-align: top; | |
| 38 | + padding-left:1px; | |
| 39 | + padding-right:1px; | |
| 40 | + -moz-user-select: none; | |
| 41 | +} | |
| 42 | +.x-grid3-hd-row td { | |
| 43 | + line-height:15px; | |
| 44 | + vertical-align:middle; | |
| 45 | + border-left:1px solid #eee; | |
| 46 | + border-right:1px solid #d0d0d0; | |
| 47 | +} | |
| 48 | + | |
| 49 | +.x-grid3-hd-row .x-grid3-marker-hd { | |
| 50 | + padding:3px; | |
| 51 | +} | |
| 52 | + | |
| 53 | +.x-grid3-row .x-grid3-marker { | |
| 54 | + padding:3px; | |
| 55 | +} | |
| 56 | + | |
| 57 | +.x-grid3-cell-inner, .x-grid3-hd-inner{ | |
| 58 | + overflow:hidden; | |
| 59 | + -o-text-overflow: ellipsis; | |
| 60 | + text-overflow: ellipsis; | |
| 61 | + padding:3px 3px 3px 5px; | |
| 62 | + white-space: nowrap; | |
| 63 | +} | |
| 64 | + | |
| 65 | +.x-grid3-hd-inner { | |
| 66 | + position:relative; | |
| 67 | + cursor:inherit; | |
| 68 | + padding:4px 3px 4px 5px; | |
| 69 | +} | |
| 70 | + | |
| 71 | +.x-grid3-row-body { | |
| 72 | + white-space:normal; | |
| 73 | +} | |
| 74 | + | |
| 75 | +.x-grid3-body-cell { | |
| 76 | + -moz-outline:0 none; | |
| 77 | + outline:0 none; | |
| 78 | +} | |
| 79 | +/* IE Quirks to clip */ | |
| 80 | +.ext-ie .x-grid3-cell-inner, .ext-ie .x-grid3-hd-inner{ | |
| 81 | + width:100%; | |
| 82 | +} | |
| 83 | +/* reverse above in strict mode */ | |
| 84 | +.ext-strict .x-grid3-cell-inner, .ext-strict .x-grid3-hd-inner{ | |
| 85 | + width:auto; | |
| 86 | +} | |
| 87 | + | |
| 88 | +.x-grid3-col { | |
| 89 | + | |
| 90 | +} | |
| 91 | + | |
| 92 | +.x-grid-row-loading { | |
| 93 | + background: #fff url(../images/default/shared/loading-balls.gif) no-repeat center center; | |
| 94 | +} | |
| 95 | +.x-grid-page { | |
| 96 | + overflow:hidden; | |
| 97 | +} | |
| 98 | +.x-grid3-row { | |
| 99 | + cursor: default; | |
| 100 | + border:1px solid #ededed; | |
| 101 | + border-top-color:#fff; | |
| 102 | + /*border-bottom: 1px solid #ededed;*/ | |
| 103 | + width:100%; | |
| 104 | +} | |
| 105 | +.x-grid3-row-alt{ | |
| 106 | + background-color:#fafafa; | |
| 107 | +} | |
| 108 | + | |
| 109 | +.x-grid3-row-over { | |
| 110 | + border:1px solid #dddddd; | |
| 111 | + background: #efefef url(../images/default/grid/row-over.gif) repeat-x left top; | |
| 112 | +} | |
| 113 | + | |
| 114 | +.x-grid3-resize-proxy { | |
| 115 | + width:1px; | |
| 116 | + left:0; | |
| 117 | + background-color:#777; | |
| 118 | + cursor: e-resize; | |
| 119 | + cursor: col-resize; | |
| 120 | + position:absolute; | |
| 121 | + top:0; | |
| 122 | + height:100px; | |
| 123 | + overflow:hidden; | |
| 124 | + visibility:hidden; | |
| 125 | + border:0 none; | |
| 126 | + z-index:7; | |
| 127 | +} | |
| 128 | +.x-grid3-resize-marker { | |
| 129 | + width:1px; | |
| 130 | + left:0; | |
| 131 | + background-color:#777; | |
| 132 | + position:absolute; | |
| 133 | + top:0; | |
| 134 | + height:100px; | |
| 135 | + overflow:hidden; | |
| 136 | + visibility:hidden; | |
| 137 | + border:0 none; | |
| 138 | + z-index:7; | |
| 139 | +} | |
| 140 | +.x-grid3-focus { | |
| 141 | + position:absolute; | |
| 142 | + left:0; | |
| 143 | + top:0; | |
| 144 | + width:1px; | |
| 145 | + height:1px; | |
| 146 | + line-height:1px; | |
| 147 | + font-size:1px; | |
| 148 | + -moz-outline:0 none; | |
| 149 | + outline:0 none; | |
| 150 | + -moz-user-select: text; | |
| 151 | + -khtml-user-select: text; | |
| 152 | +} | |
| 153 | + | |
| 154 | +/* header styles */ | |
| 155 | +.x-grid3-header{ | |
| 156 | + background: #f9f9f9 url(../images/default/grid/grid3-hrow.gif) repeat-x 0 bottom; | |
| 157 | + cursor:default; | |
| 158 | + zoom:1; | |
| 159 | + padding:1px 0 0 0; | |
| 160 | +} | |
| 161 | + | |
| 162 | +.x-grid3-header-pop { | |
| 163 | + border-left:1px solid #d0d0d0; | |
| 164 | + float:right; | |
| 165 | + clear:none; | |
| 166 | +} | |
| 167 | +.x-grid3-header-pop-inner { | |
| 168 | + border-left:1px solid #eee; | |
| 169 | + width:14px; | |
| 170 | + height:19px; | |
| 171 | + background: transparent url(../images/default/grid/hd-pop.gif) no-repeat center center; | |
| 172 | +} | |
| 173 | +.ext-ie .x-grid3-header-pop-inner { | |
| 174 | + width:15px; | |
| 175 | +} | |
| 176 | +.ext-strict .x-grid3-header-pop-inner { | |
| 177 | + width:14px; | |
| 178 | +} | |
| 179 | +.x-grid3-header-inner { | |
| 180 | + overflow:hidden; | |
| 181 | + zoom:1; | |
| 182 | + float:left; | |
| 183 | +} | |
| 184 | +.x-grid3-header-offset { | |
| 185 | + padding-left:1px; | |
| 186 | + width:10000px; | |
| 187 | +} | |
| 188 | + | |
| 189 | +td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open { | |
| 190 | + border-left:1px solid #aaccf6; | |
| 191 | + border-right:1px solid #aaccf6; | |
| 192 | +} | |
| 193 | +td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner { | |
| 194 | + background: #ebf3fd url(../images/default/grid/grid3-hrow-over.gif) repeat-x left bottom; | |
| 195 | + | |
| 196 | +} | |
| 197 | +.x-grid3-sort-icon{ | |
| 198 | + background-repeat: no-repeat; | |
| 199 | + display: none; | |
| 200 | + height: 4px; | |
| 201 | + width: 13px; | |
| 202 | + margin-left:3px; | |
| 203 | + vertical-align: middle; | |
| 204 | +} | |
| 205 | +.sort-asc .x-grid3-sort-icon { | |
| 206 | + background-image: url(../images/default/grid/sort_asc.gif); | |
| 207 | + display: inline; | |
| 208 | +} | |
| 209 | +.sort-desc .x-grid3-sort-icon { | |
| 210 | + background-image: url(../images/default/grid/sort_desc.gif); | |
| 211 | + display: inline; | |
| 212 | +} | |
| 213 | + | |
| 214 | +/* Header position fixes for IE strict mode */ | |
| 215 | +.ext-strict .ext-ie .x-grid3-header-inner{position:relative;} | |
| 216 | +.ext-strict .ext-ie6 .x-grid3-hd{position:relative;} | |
| 217 | +.ext-strict .ext-ie6 .x-grid3-hd-inner{position:static;} | |
| 218 | + | |
| 219 | +/* Body Styles */ | |
| 220 | +.x-grid3-body { | |
| 221 | + zoom:1; | |
| 222 | +} | |
| 223 | +.x-grid3-scroller { | |
| 224 | + overflow:auto; | |
| 225 | + zoom:1; | |
| 226 | + position:relative; | |
| 227 | +} | |
| 228 | +.x-grid3-cell-text, .x-grid3-hd-text { | |
| 229 | + display: block; | |
| 230 | + padding: 3px 5px 3px 5px; | |
| 231 | + -moz-user-select: none; | |
| 232 | + -khtml-user-select: none; | |
| 233 | + color:black; | |
| 234 | +} | |
| 235 | +.x-grid3-split { | |
| 236 | + background-image: url(../images/default/grid/grid-split.gif); | |
| 237 | + background-position: center; | |
| 238 | + background-repeat: no-repeat; | |
| 239 | + cursor: e-resize; | |
| 240 | + cursor: col-resize; | |
| 241 | + display: block; | |
| 242 | + font-size: 1px; | |
| 243 | + height: 16px; | |
| 244 | + overflow: hidden; | |
| 245 | + position: absolute; | |
| 246 | + top: 2px; | |
| 247 | + width: 6px; | |
| 248 | + z-index: 3; | |
| 249 | +} | |
| 250 | + | |
| 251 | +.x-grid3-hd-text { | |
| 252 | + color:#15428b; | |
| 253 | +} | |
| 254 | +/* Column Reorder DD */ | |
| 255 | +.x-dd-drag-proxy .x-grid3-hd-inner{ | |
| 256 | + background: #ebf3fd url(../images/default/grid/grid3-hrow-over.gif) repeat-x left bottom; | |
| 257 | + width:120px; | |
| 258 | + padding:3px; | |
| 259 | + border:1px solid #aaccf6; | |
| 260 | + overflow:hidden; | |
| 261 | +} | |
| 262 | + | |
| 263 | +.col-move-top, .col-move-bottom{ | |
| 264 | + width:9px; | |
| 265 | + height:9px; | |
| 266 | + position:absolute; | |
| 267 | + top:0; | |
| 268 | + line-height:1px; | |
| 269 | + font-size:1px; | |
| 270 | + overflow:hidden; | |
| 271 | + visibility:hidden; | |
| 272 | + z-index:20000; | |
| 273 | +} | |
| 274 | +.col-move-top{ | |
| 275 | + background:transparent url(../images/default/grid/col-move-top.gif) no-repeat left top; | |
| 276 | +} | |
| 277 | +.col-move-bottom{ | |
| 278 | + background:transparent url(../images/default/grid/col-move-bottom.gif) no-repeat left top; | |
| 279 | +} | |
| 280 | + | |
| 281 | +/* Selection Styles */ | |
| 282 | +.x-grid3-row-selected { | |
| 283 | + background: #DFE8F6 !important; | |
| 284 | + border:1px dotted #a3bae9; | |
| 285 | +} | |
| 286 | + | |
| 287 | +.x-grid3-cell-selected{ | |
| 288 | + background-color: #B8CFEE !important; | |
| 289 | + color: black; | |
| 290 | +} | |
| 291 | +.x-grid3-cell-selected span{ | |
| 292 | + color: black !important; | |
| 293 | +} | |
| 294 | +.x-grid3-cell-selected .x-grid3-cell-text{ | |
| 295 | + color: black; | |
| 296 | +} | |
| 297 | + | |
| 298 | +.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{ | |
| 299 | + background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x 0 bottom !important; | |
| 300 | + vertical-align:middle !important; | |
| 301 | + color:black; | |
| 302 | + padding:0; | |
| 303 | + border-top:1px solid white; | |
| 304 | + border-bottom:none !important; | |
| 305 | + border-right:1px solid #6fa0df !important; | |
| 306 | + text-align:center; | |
| 307 | +} | |
| 308 | +.x-grid3-locked td.x-grid3-row-marker div, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div{ | |
| 309 | + padding:0 4px; | |
| 310 | + color:#15428b !important; | |
| 311 | + text-align:center; | |
| 312 | +} | |
| 313 | + | |
| 314 | +/* dirty cells */ | |
| 315 | +.x-grid3-dirty-cell { | |
| 316 | + background: transparent url(../images/default/grid/dirty.gif) no-repeat 0 0; | |
| 317 | +} | |
| 318 | + | |
| 319 | +/* Grid Toolbars */ | |
| 320 | +.x-grid3-topbar, .x-grid3-bottombar{ | |
| 321 | + font:normal 11px arial, tahoma, helvetica, sans-serif; | |
| 322 | + overflow:hidden; | |
| 323 | + display:none; | |
| 324 | + zoom:1; | |
| 325 | + position:relative; | |
| 326 | +} | |
| 327 | +.x-grid3-topbar .x-toolbar{ | |
| 328 | + border-right:0 none; | |
| 329 | +} | |
| 330 | +.x-grid3-bottombar .x-toolbar{ | |
| 331 | + border-right:0 none; | |
| 332 | + border-bottom:0 none; | |
| 333 | + border-top:1px solid #a9bfd3; | |
| 334 | +} | |
| 335 | +/* Props Grid Styles */ | |
| 336 | +.x-props-grid .x-grid3-cell{ | |
| 337 | + padding:1px; | |
| 338 | +} | |
| 339 | +.x-props-grid .x-grid3-td-name .x-grid3-cell-inner{ | |
| 340 | + background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y -16px !important; | |
| 341 | + padding-left:12px; | |
| 342 | + color:black !important; | |
| 343 | +} | |
| 344 | +.x-props-grid .x-grid3-body .x-grid3-td-name{ | |
| 345 | + padding:1px; | |
| 346 | + padding-right:0; | |
| 347 | + background:white !important; | |
| 348 | + border:0 none; | |
| 349 | + border-right:1px solid #eeeeee; | |
| 350 | +} | |
| 351 | + | |
| 352 | +/* header menu */ | |
| 353 | +.xg-hmenu-sort-asc .x-menu-item-icon{ | |
| 354 | + background-image: url(../images/default/grid/hmenu-asc.gif); | |
| 355 | +} | |
| 356 | +.xg-hmenu-sort-desc .x-menu-item-icon{ | |
| 357 | + background-image: url(../images/default/grid/hmenu-desc.gif); | |
| 358 | +} | |
| 359 | +.xg-hmenu-lock .x-menu-item-icon{ | |
| 360 | + background-image: url(../images/default/grid/hmenu-lock.gif); | |
| 361 | +} | |
| 362 | +.xg-hmenu-unlock .x-menu-item-icon{ | |
| 363 | + background-image: url(../images/default/grid/hmenu-unlock.gif); | |
| 364 | +} | |
| 365 | + | |
| 366 | +/* dd */ | |
| 367 | +.x-grid3-col-dd { | |
| 368 | + border:0 none; | |
| 369 | + padding:0; | |
| 370 | + background:transparent; | |
| 371 | +} | |
| 372 | + | |
| 373 | +.x-dd-drag-ghost .x-grid3-dd-wrap { | |
| 374 | + padding:1px 3px 3px 1px; | |
| 375 | +} | |
| 376 | + | |
| 377 | +.x-grid3-hd { | |
| 378 | + -moz-user-select:none; | |
| 379 | +} | |
| 380 | + | |
| 381 | +.x-grid3-hd-btn { | |
| 382 | + display:none; | |
| 383 | + position:absolute; | |
| 384 | + width:14px; | |
| 385 | + background:#c3daf9 url(../images/default/grid/grid3-hd-btn.gif) no-repeat left center; | |
| 386 | + right:0; | |
| 387 | + top:0; | |
| 388 | + z-index:2; | |
| 389 | + cursor:pointer; | |
| 390 | +} | |
| 391 | + | |
| 392 | +.x-grid3-hd-over .x-grid3-hd-btn, .x-grid3-hd-menu-open .x-grid3-hd-btn { | |
| 393 | + display:block; | |
| 394 | +} | |
| 395 | + | |
| 396 | +a.x-grid3-hd-btn:hover { | |
| 397 | + background-position:-14px center; | |
| 398 | +} | |
| 399 | + | |
| 400 | +/* Expanders */ | |
| 401 | + | |
| 402 | +.x-grid3-body .x-grid3-td-expander { | |
| 403 | + background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right; | |
| 404 | +} | |
| 405 | +.x-grid3-body .x-grid3-td-expander .x-grid3-cell-inner { | |
| 406 | + padding:0 !important; | |
| 407 | + height:100%; | |
| 408 | +} | |
| 409 | +.x-grid3-row-expander { | |
| 410 | + width:100%; | |
| 411 | + height:18px; | |
| 412 | + background-position:4px 2px; | |
| 413 | + background-repeat:no-repeat; | |
| 414 | + background-color:transparent; | |
| 415 | + background-image:url(../images/default/grid/row-expand-sprite.gif); | |
| 416 | +} | |
| 417 | +.x-grid3-row-collapsed .x-grid3-row-expander { | |
| 418 | + background-position:4px 2px; | |
| 419 | +} | |
| 420 | +.x-grid3-row-expanded .x-grid3-row-expander { | |
| 421 | + background-position:-21px 2px; | |
| 422 | +} | |
| 423 | +.x-grid3-row-collapsed .x-grid3-row-body { | |
| 424 | + display:none !important; | |
| 425 | +} | |
| 426 | +.x-grid3-row-expanded .x-grid3-row-body { | |
| 427 | + display:block !important; | |
| 428 | +} | |
| 429 | + | |
| 430 | +/* Checkers */ | |
| 431 | + | |
| 432 | +.x-grid3-body .x-grid3-td-checker { | |
| 433 | + background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right; | |
| 434 | +} | |
| 435 | + | |
| 436 | +.x-grid3-body .x-grid3-td-checker .x-grid3-cell-inner, .x-grid3-header .x-grid3-td-checker .x-grid3-hd-inner { | |
| 437 | + padding:0 !important; | |
| 438 | + height:100%; | |
| 439 | +} | |
| 440 | + | |
| 441 | +.x-grid3-row-checker, .x-grid3-hd-checker { | |
| 442 | + width:100%; | |
| 443 | + height:18px; | |
| 444 | + background-position:2px 2px; | |
| 445 | + background-repeat:no-repeat; | |
| 446 | + background-color:transparent; | |
| 447 | + background-image:url(../images/default/grid/row-check-sprite.gif); | |
| 448 | +} | |
| 449 | +.x-grid3-row .x-grid3-row-checker { | |
| 450 | + background-position:2px 2px; | |
| 451 | +} | |
| 452 | +.x-grid3-row-selected .x-grid3-row-checker, .x-grid3-hd-checker-on .x-grid3-hd-checker { | |
| 453 | + background-position:-23px 2px; | |
| 454 | +} | |
| 455 | +.x-grid3-hd-checker { | |
| 456 | + background-position:2px 3px; | |
| 457 | +} | |
| 458 | +.x-grid3-hd-checker-on .x-grid3-hd-checker { | |
| 459 | + background-position:-23px 3px; | |
| 460 | +} | |
| 461 | + | |
| 462 | +/* Numberer */ | |
| 463 | + | |
| 464 | +.x-grid3-body .x-grid3-td-numberer { | |
| 465 | + background:transparent url(../images/default/grid/grid3-special-col-bg.gif) repeat-y right; | |
| 466 | +} | |
| 467 | +.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner { | |
| 468 | + padding:3px 5px 0 0 !important; | |
| 469 | + text-align:right; | |
| 470 | + color:#444; | |
| 471 | +} | |
| 472 | + | |
| 473 | +/* All specials */ | |
| 474 | + | |
| 475 | +.x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer, | |
| 476 | +.x-grid3-body .x-grid3-row-selected .x-grid3-td-checker, | |
| 477 | +.x-grid3-body .x-grid3-row-selected .x-grid3-td-expander { | |
| 478 | + background:transparent url(../images/default/grid/grid3-special-col-sel-bg.gif) repeat-y right; | |
| 479 | +} | |
| 480 | +.x-grid3-body .x-grid3-check-col-td .x-grid3-cell-inner { | |
| 481 | + padding: 1px 0 0 0 !important; | |
| 482 | +} | |
| 483 | + | |
| 484 | +.x-grid3-check-col { | |
| 485 | + width:100%; | |
| 486 | + height:16px; | |
| 487 | + background-position:center center; | |
| 488 | + background-repeat:no-repeat; | |
| 489 | + background-color:transparent; | |
| 490 | + background-image:url(../images/default/menu/unchecked.gif); | |
| 491 | +} | |
| 492 | + | |
| 493 | + | |
| 494 | +.x-grid3-check-col-on { | |
| 495 | + width:100%; | |
| 496 | + height:16px; | |
| 497 | + background-position:center center; | |
| 498 | + background-repeat:no-repeat; | |
| 499 | + background-color:transparent; | |
| 500 | + background-image:url(../images/default/menu/checked.gif); | |
| 501 | +} | |
| 502 | + | |
| 503 | +/* Grouping classes */ | |
| 504 | +.x-grid-group, .x-grid-group-body, .x-grid-group-hd { | |
| 505 | + zoom:1; | |
| 506 | +} | |
| 507 | +.x-grid-group-hd { | |
| 508 | + border-bottom: 2px solid #99bbe8; | |
| 509 | + cursor:pointer; | |
| 510 | + padding-top:6px; | |
| 511 | +} | |
| 512 | +.x-grid-group-hd div { | |
| 513 | + background:transparent url(../images/default/grid/group-expand-sprite.gif) no-repeat 3px -47px; | |
| 514 | + padding:4px 4px 4px 17px; | |
| 515 | + color:#3764a0; | |
| 516 | + font:bold 11px tahoma, arial, helvetica, sans-serif; | |
| 517 | +} | |
| 518 | +.x-grid-group-collapsed .x-grid-group-hd div { | |
| 519 | + background-position: 3px 3px; | |
| 520 | +} | |
| 521 | +.x-grid-group-collapsed .x-grid-group-body { | |
| 522 | + display:none; | |
| 523 | +} | |
| 524 | + | |
| 525 | +.x-group-by-icon { | |
| 526 | + background-image:url(../images/default/grid/group-by.gif); | |
| 527 | +} | |
| 528 | +.x-cols-icon { | |
| 529 | + background-image:url(../images/default/grid/columns.gif); | |
| 530 | +} | |
| 531 | +.x-show-groups-icon { | |
| 532 | + background-image:url(../images/default/grid/group-by.gif); | |
| 533 | +} | |
| 534 | + | |
| 535 | +.ext-ie .x-grid3 .x-editor .x-form-text { | |
| 536 | + position:relative; | |
| 537 | + top:-1px; | |
| 538 | +} | |
| 539 | +.ext-ie .x-props-grid .x-editor .x-form-text { | |
| 540 | + position:static; | |
| 541 | + top:0; | |
| 542 | +} | |
| 543 | + | |
| 544 | +.x-grid-empty { | |
| 545 | + padding:10px; | |
| 546 | + color:gray; | |
| 547 | + font:normal 11px tahoma, arial, helvetica, sans-serif; | |
| 548 | +} | |
| 549 | + | |
| 550 | + | |
| 551 | +/* fix floating toolbar issue */ | |
| 552 | +.ext-ie7 .x-grid-panel .x-panel-bbar { | |
| 553 | + position:relative; | |
| 554 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/layout.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-border-layout-ct { | |
| 10 | + background:#dfe8f6; | |
| 11 | +} | |
| 12 | +.x-border-panel { | |
| 13 | + position:absolute; | |
| 14 | + left:0; | |
| 15 | + top:0; | |
| 16 | +} | |
| 17 | + | |
| 18 | +.x-tool-collapse-south { | |
| 19 | + background-position:0 -195px; | |
| 20 | +} | |
| 21 | +.x-tool-collapse-south-over { | |
| 22 | + background-position:-15px -195px; | |
| 23 | +} | |
| 24 | + | |
| 25 | +.x-tool-collapse-north { | |
| 26 | + background-position:0 -210px; | |
| 27 | +} | |
| 28 | +.x-tool-collapse-north-over { | |
| 29 | + background-position:-15px -210px; | |
| 30 | +} | |
| 31 | + | |
| 32 | +.x-tool-collapse-west { | |
| 33 | + background-position:0 -180px; | |
| 34 | +} | |
| 35 | +.x-tool-collapse-west-over { | |
| 36 | + background-position:-15px -180px; | |
| 37 | +} | |
| 38 | + | |
| 39 | +.x-tool-collapse-east { | |
| 40 | + background-position:0 -165px; | |
| 41 | +} | |
| 42 | +.x-tool-collapse-east-over { | |
| 43 | + background-position:-15px -165px; | |
| 44 | +} | |
| 45 | + | |
| 46 | + | |
| 47 | +.x-tool-expand-south { | |
| 48 | + background-position:0 -210px; | |
| 49 | +} | |
| 50 | +.x-tool-expand-south-over { | |
| 51 | + background-position:-15px -210px; | |
| 52 | +} | |
| 53 | + | |
| 54 | +.x-tool-expand-north { | |
| 55 | + background-position:0 -195px; | |
| 56 | +} | |
| 57 | +.x-tool-expand-north-over { | |
| 58 | + background-position:-15px -195px; | |
| 59 | +} | |
| 60 | + | |
| 61 | +.x-tool-expand-west { | |
| 62 | + background-position:0 -165px; | |
| 63 | +} | |
| 64 | +.x-tool-expand-west-over { | |
| 65 | + background-position:-15px -165px; | |
| 66 | +} | |
| 67 | + | |
| 68 | +.x-tool-expand-east { | |
| 69 | + background-position:0 -180px; | |
| 70 | +} | |
| 71 | +.x-tool-expand-east-over { | |
| 72 | + background-position:-15px -180px; | |
| 73 | +} | |
| 74 | + | |
| 75 | +.x-tool-expand-north, .x-tool-expand-south { | |
| 76 | + float:right; | |
| 77 | + margin:3px; | |
| 78 | +} | |
| 79 | +.x-tool-expand-east, .x-tool-expand-west { | |
| 80 | + float:none; | |
| 81 | + margin:3px auto; | |
| 82 | +} | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | +.x-accordion-hd .x-tool-toggle { | |
| 87 | + background-position:0 -255px; | |
| 88 | +} | |
| 89 | +.x-accordion-hd .x-tool-toggle-over { | |
| 90 | + background-position:-15px -255px; | |
| 91 | +} | |
| 92 | +.x-panel-collapsed .x-accordion-hd .x-tool-toggle { | |
| 93 | + background-position:0 -240px; | |
| 94 | +} | |
| 95 | +.x-panel-collapsed .x-accordion-hd .x-tool-toggle-over { | |
| 96 | + background-position:-15px -240px; | |
| 97 | +} | |
| 98 | + | |
| 99 | +.x-accordion-hd { | |
| 100 | + color:#222; | |
| 101 | + padding-top:4px; | |
| 102 | + padding-bottom:3px; | |
| 103 | + border-top:0 none; | |
| 104 | + font-weight:normal; | |
| 105 | + background: transparent url(../images/default/panel/light-hd.gif) repeat-x 0 -9px; | |
| 106 | +} | |
| 107 | + | |
| 108 | +.x-layout-collapsed{ | |
| 109 | + position:absolute; | |
| 110 | + left:-10000px; | |
| 111 | + top:-10000px; | |
| 112 | + visibility:hidden; | |
| 113 | + background-color:#d2e0f2; | |
| 114 | + width:20px; | |
| 115 | + height:20px; | |
| 116 | + overflow:hidden; | |
| 117 | + border:1px solid #98c0f4; | |
| 118 | + z-index:20; | |
| 119 | +} | |
| 120 | +.ext-border-box .x-layout-collapsed{ | |
| 121 | + width:22px; | |
| 122 | + height:22px; | |
| 123 | +} | |
| 124 | +.x-layout-collapsed-over{ | |
| 125 | + cursor:pointer; | |
| 126 | + background-color:#d9e8fb; | |
| 127 | +} | |
| 128 | +.x-layout-collapsed-west .x-layout-collapsed-tools, .x-layout-collapsed-east .x-layout-collapsed-tools{ | |
| 129 | + position:absolute; | |
| 130 | + top:0; | |
| 131 | + left:0; | |
| 132 | + width:20px; | |
| 133 | + height:20px; | |
| 134 | +} | |
| 135 | + | |
| 136 | + | |
| 137 | +.x-layout-split{ | |
| 138 | + position:absolute; | |
| 139 | + height:5px; | |
| 140 | + width:5px; | |
| 141 | + line-height:1px; | |
| 142 | + font-size:1px; | |
| 143 | + z-index:3; | |
| 144 | + background-color:transparent; | |
| 145 | +} | |
| 146 | + | |
| 147 | +/* IE6 strict won't drag w/out a color */ | |
| 148 | +.ext-strict .ext-ie6 .x-layout-split{ | |
| 149 | + background-color: #fff !important; | |
| 150 | + filter: alpha(opacity=1); | |
| 151 | +} | |
| 152 | + | |
| 153 | +.x-layout-split-h{ | |
| 154 | + background-image:url(../images/default/s.gif); | |
| 155 | + background-position: left; | |
| 156 | +} | |
| 157 | +.x-layout-split-v{ | |
| 158 | + background-image:url(../images/default/s.gif); | |
| 159 | + background-position: top; | |
| 160 | +} | |
| 161 | + | |
| 162 | +.x-column-layout-ct { | |
| 163 | + overflow:hidden; | |
| 164 | + /*padding:3px 3px 3px 3px;*/ | |
| 165 | + zoom:1; | |
| 166 | +} | |
| 167 | + | |
| 168 | +.x-column { | |
| 169 | + float:left; | |
| 170 | + padding:0; | |
| 171 | + margin:0; | |
| 172 | + overflow:hidden; | |
| 173 | + zoom:1; | |
| 174 | + /*margin:3px;*/ | |
| 175 | +} | |
| 176 | + | |
| 177 | +/* mini mode */ | |
| 178 | + | |
| 179 | +.x-layout-mini { | |
| 180 | + position:absolute; | |
| 181 | + top:0; | |
| 182 | + left:0; | |
| 183 | + display:block; | |
| 184 | + width:5px; | |
| 185 | + height:35px; | |
| 186 | + cursor:pointer; | |
| 187 | + opacity:.5; | |
| 188 | + -moz-opacity:.5; | |
| 189 | + filter:alpha(opacity=50); | |
| 190 | +} | |
| 191 | +.x-layout-mini-over, .x-layout-collapsed-over .x-layout-mini{ | |
| 192 | + opacity:1; | |
| 193 | + -moz-opacity:1; | |
| 194 | + filter:none; | |
| 195 | +} | |
| 196 | + | |
| 197 | +.x-layout-split-west .x-layout-mini { | |
| 198 | + top:48%; | |
| 199 | + background-image:url(../images/default/layout/mini-left.gif); | |
| 200 | +} | |
| 201 | +.x-layout-split-east .x-layout-mini { | |
| 202 | + top:48%; | |
| 203 | + background-image:url(../images/default/layout/mini-right.gif); | |
| 204 | +} | |
| 205 | +.x-layout-split-north .x-layout-mini { | |
| 206 | + left:48%; | |
| 207 | + height:5px; | |
| 208 | + width:35px; | |
| 209 | + background-image:url(../images/default/layout/mini-top.gif); | |
| 210 | +} | |
| 211 | +.x-layout-split-south .x-layout-mini { | |
| 212 | + left:48%; | |
| 213 | + height:5px; | |
| 214 | + width:35px; | |
| 215 | + background-image:url(../images/default/layout/mini-bottom.gif); | |
| 216 | +} | |
| 217 | + | |
| 218 | + | |
| 219 | +.x-layout-cmini-west .x-layout-mini { | |
| 220 | + top:48%; | |
| 221 | + background-image:url(../images/default/layout/mini-right.gif); | |
| 222 | +} | |
| 223 | + | |
| 224 | +.x-layout-cmini-east .x-layout-mini { | |
| 225 | + top:48%; | |
| 226 | + background-image:url(../images/default/layout/mini-left.gif); | |
| 227 | +} | |
| 228 | + | |
| 229 | +.x-layout-cmini-north .x-layout-mini { | |
| 230 | + left:48%; | |
| 231 | + height:5px; | |
| 232 | + width:35px; | |
| 233 | + background-image:url(../images/default/layout/mini-bottom.gif); | |
| 234 | +} | |
| 235 | + | |
| 236 | +.x-layout-cmini-south .x-layout-mini { | |
| 237 | + left:48%; | |
| 238 | + height:5px; | |
| 239 | + width:35px; | |
| 240 | + background-image:url(../images/default/layout/mini-top.gif); | |
| 241 | +} | |
| 242 | + | |
| 243 | +.x-layout-cmini-west, .x-layout-cmini-east { | |
| 244 | + border:0 none; | |
| 245 | + width:5px !important; | |
| 246 | + padding:0; | |
| 247 | + background:transparent; | |
| 248 | +} | |
| 249 | + | |
| 250 | +.x-layout-cmini-north, .x-layout-cmini-south { | |
| 251 | + border:0 none; | |
| 252 | + height:5px !important; | |
| 253 | + padding:0; | |
| 254 | + background:transparent; | |
| 255 | +} | |
| 256 | + | |
| 257 | +.x-viewport, .x-viewport body { | |
| 258 | + margin: 0; | |
| 259 | + padding: 0; | |
| 260 | + border: 0 none; | |
| 261 | + overflow: hidden; | |
| 262 | + height: 100%; | |
| 263 | +} | |
| 264 | + | |
| 265 | +.x-abs-layout-item { | |
| 266 | + position:absolute; | |
| 267 | + left:0; | |
| 268 | + top:0; | |
| 269 | +} | |
| 270 | + | |
| 271 | +.ext-ie input.x-abs-layout-item, .ext-ie textarea.x-abs-layout-item { | |
| 272 | + margin:0; | |
| 273 | +} | |
| 0 | 274 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/menu.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-menu { | |
| 10 | + border: 1px solid #718bb7; | |
| 11 | + z-index: 15000; | |
| 12 | + zoom: 1; | |
| 13 | + background: #f0f0f0 url(../images/default/menu/menu.gif) repeat-y; | |
| 14 | + padding: 2px; | |
| 15 | +} | |
| 16 | +.x-menu a { | |
| 17 | + text-decoration: none !important; | |
| 18 | +} | |
| 19 | +.ext-ie .x-menu { | |
| 20 | + zoom:1; | |
| 21 | + overflow:hidden; | |
| 22 | +} | |
| 23 | +.x-menu-list{ | |
| 24 | + background:transparent; | |
| 25 | + border:0 none; | |
| 26 | +} | |
| 27 | +.x-menu li{ | |
| 28 | + line-height:100%; | |
| 29 | +} | |
| 30 | +.x-menu li.x-menu-sep-li{ | |
| 31 | + font-size:1px; | |
| 32 | + line-height:1px; | |
| 33 | +} | |
| 34 | +.x-menu-list-item{ | |
| 35 | + font:normal 11px tahoma,arial, sans-serif; | |
| 36 | + white-space: nowrap; | |
| 37 | + -moz-user-select: none; | |
| 38 | + -khtml-user-select: none; | |
| 39 | + display:block; | |
| 40 | + padding:1px; | |
| 41 | +} | |
| 42 | +.x-menu-item-arrow{ | |
| 43 | + background:transparent url(../images/default/menu/menu-parent.gif) no-repeat right; | |
| 44 | +} | |
| 45 | +.x-menu-sep { | |
| 46 | + display:block; | |
| 47 | + font-size:1px; | |
| 48 | + line-height:1px; | |
| 49 | + margin: 2px 3px; | |
| 50 | + background-color:#e0e0e0; | |
| 51 | + border-bottom:1px solid #fff; | |
| 52 | + overflow:hidden; | |
| 53 | +} | |
| 54 | +.x-menu-focus { | |
| 55 | + position:absolute; | |
| 56 | + left:-1px; | |
| 57 | + top:-1px; | |
| 58 | + width:1px; | |
| 59 | + height:1px; | |
| 60 | + line-height:1px; | |
| 61 | + font-size:1px; | |
| 62 | + -moz-outline:0 none; | |
| 63 | + outline:0 none; | |
| 64 | + -moz-user-select: text; | |
| 65 | + -khtml-user-select: text; | |
| 66 | + overflow:hidden; | |
| 67 | + display:block; | |
| 68 | +} | |
| 69 | +.x-menu a.x-menu-item { | |
| 70 | + display:block; | |
| 71 | + line-height:16px; | |
| 72 | + padding:3px 21px 3px 3px; | |
| 73 | + white-space: nowrap; | |
| 74 | + text-decoration:none; | |
| 75 | + color:#222; | |
| 76 | + -moz-outline: 0 none; | |
| 77 | + outline: 0 none; | |
| 78 | + cursor:pointer; | |
| 79 | +} | |
| 80 | +.x-menu-item-active { | |
| 81 | + background: #ebf3fd url(../images/default/menu/item-over.gif) repeat-x left bottom; | |
| 82 | + border:1px solid #aaccf6; | |
| 83 | + padding: 0; | |
| 84 | +} | |
| 85 | +.x-menu-item-active a.x-menu-item { | |
| 86 | + color: #233d6d; | |
| 87 | +} | |
| 88 | + | |
| 89 | +.x-menu-item-icon { | |
| 90 | + border: 0 none; | |
| 91 | + height: 16px; | |
| 92 | + padding: 0; | |
| 93 | + vertical-align: top; | |
| 94 | + width: 16px; | |
| 95 | + margin: 0 8px 0 0; | |
| 96 | + background-position:center; | |
| 97 | +} | |
| 98 | + | |
| 99 | +.x-menu-check-item .x-menu-item-icon{ | |
| 100 | + background: transparent url(../images/default/menu/unchecked.gif) no-repeat center; | |
| 101 | +} | |
| 102 | + | |
| 103 | +.x-menu-item-checked .x-menu-item-icon{ | |
| 104 | + background-image:url(../images/default/menu/checked.gif); | |
| 105 | +} | |
| 106 | +.x-menu-group-item .x-menu-item-icon{ | |
| 107 | + background: transparent; | |
| 108 | +} | |
| 109 | + | |
| 110 | +.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{ | |
| 111 | + background: transparent url(../images/default/menu/group-checked.gif) no-repeat center; | |
| 112 | +} | |
| 113 | + | |
| 114 | +.x-menu-plain { | |
| 115 | + background:#fff !important; | |
| 116 | +} | |
| 117 | +.x-menu-date-item{ | |
| 118 | + padding:0; | |
| 119 | +} | |
| 120 | + | |
| 121 | +.x-menu .x-color-palette, .x-menu .x-date-picker{ | |
| 122 | + margin-left: 26px; | |
| 123 | + margin-right:4px; | |
| 124 | +} | |
| 125 | +.x-menu .x-date-picker{ | |
| 126 | + border:1px solid #a3bad9; | |
| 127 | + margin-top:2px; | |
| 128 | + margin-bottom:2px; | |
| 129 | +} | |
| 130 | +.x-menu-plain .x-color-palette, .x-menu-plain .x-date-picker{ | |
| 131 | + margin: 0; | |
| 132 | + border: 0 none; | |
| 133 | +} | |
| 134 | +.x-date-menu { | |
| 135 | + padding:0 !important; | |
| 136 | +} | |
| 137 | + | |
| 138 | +.x-cycle-menu .x-menu-item-checked { | |
| 139 | + border:1px dotted #a3bae9 !important; | |
| 140 | + background:#DFE8F6; | |
| 141 | + padding:0; | |
| 142 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/panel.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-panel { | |
| 10 | + border-style: solid; | |
| 11 | + border-color: #99bbe8; | |
| 12 | + border-width:0; | |
| 13 | +} | |
| 14 | + | |
| 15 | +.x-panel-header { | |
| 16 | + overflow:hidden; | |
| 17 | + zoom:1; | |
| 18 | + color:#15428b; | |
| 19 | + font:bold 11px tahoma,arial,verdana,sans-serif; | |
| 20 | + padding:5px 3px 4px 5px; | |
| 21 | + border:1px solid #99bbe8; | |
| 22 | + line-height: 15px; | |
| 23 | + background: transparent url(../images/default/panel/white-top-bottom.gif) repeat-x 0 -1px; | |
| 24 | +} | |
| 25 | + | |
| 26 | +.x-panel-body { | |
| 27 | + border:1px solid #99bbe8; | |
| 28 | + border-top:0 none; | |
| 29 | + overflow:hidden; | |
| 30 | + background:white; | |
| 31 | + position: relative; /* added for item scroll positioning */ | |
| 32 | +} | |
| 33 | + | |
| 34 | +.x-panel-bbar .x-toolbar { | |
| 35 | + border:1px solid #99bbe8; | |
| 36 | + border-top:0 none; | |
| 37 | + overflow:hidden; | |
| 38 | + padding:2px; | |
| 39 | +} | |
| 40 | + | |
| 41 | + | |
| 42 | +.x-panel-tbar .x-toolbar { | |
| 43 | + border:1px solid #99bbe8; | |
| 44 | + border-top:0 none; | |
| 45 | + overflow:hidden; | |
| 46 | + padding:2px; | |
| 47 | +} | |
| 48 | + | |
| 49 | +.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar { | |
| 50 | + border-top:1px solid #99bbe8; | |
| 51 | + border-bottom: 0 none; | |
| 52 | +} | |
| 53 | +.x-panel-body-noheader, .x-panel-mc .x-panel-body { | |
| 54 | + border-top:1px solid #99bbe8; | |
| 55 | +} | |
| 56 | +.x-panel-header { | |
| 57 | + overflow:hidden; | |
| 58 | + zoom:1; | |
| 59 | +} | |
| 60 | +.x-panel-tl .x-panel-header { | |
| 61 | + color:#15428b; | |
| 62 | + font:bold 11px tahoma,arial,verdana,sans-serif; | |
| 63 | + padding:5px 0 4px 0; | |
| 64 | + border:0 none; | |
| 65 | + background:transparent; | |
| 66 | +} | |
| 67 | +.x-panel-tl .x-panel-icon, .x-window-tl .x-panel-icon { | |
| 68 | + padding-left:20px !important; | |
| 69 | + background-repeat:no-repeat; | |
| 70 | + background-position:0 4px; | |
| 71 | + zoom:1; | |
| 72 | +} | |
| 73 | +.x-panel-inline-icon { | |
| 74 | + width:16px; | |
| 75 | + height:16px; | |
| 76 | + background-repeat:no-repeat; | |
| 77 | + background-position:0 0; | |
| 78 | + vertical-align:middle; | |
| 79 | + margin-right:4px; | |
| 80 | + margin-top:-1px; | |
| 81 | + margin-bottom:-1px; | |
| 82 | +} | |
| 83 | +.x-panel-tc { | |
| 84 | + background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 0; | |
| 85 | + overflow:hidden; | |
| 86 | +} | |
| 87 | +/* fix ie7 strict mode bug */ | |
| 88 | +.ext-strict .ext-ie7 .x-panel-tc { | |
| 89 | + overflow: visible; | |
| 90 | +} | |
| 91 | +.x-panel-tl { | |
| 92 | + background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 0; | |
| 93 | + padding-left:6px; | |
| 94 | + zoom:1; | |
| 95 | + border-bottom:1px solid #99bbe8; | |
| 96 | +} | |
| 97 | +.x-panel-tr { | |
| 98 | + background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right 0; | |
| 99 | + zoom:1; | |
| 100 | + padding-right:6px; | |
| 101 | +} | |
| 102 | +.x-panel-bc { | |
| 103 | + background: transparent url(../images/default/panel/top-bottom.gif) repeat-x 0 bottom; | |
| 104 | + zoom:1; | |
| 105 | +} | |
| 106 | +.x-panel-bc .x-panel-footer { | |
| 107 | + zoom:1; | |
| 108 | +} | |
| 109 | + | |
| 110 | +.x-panel-bl { | |
| 111 | + background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat 0 bottom; | |
| 112 | + padding-left:6px; | |
| 113 | + zoom:1; | |
| 114 | +} | |
| 115 | +.x-panel-br { | |
| 116 | + background: transparent url(../images/default/panel/corners-sprite.gif) no-repeat right bottom; | |
| 117 | + padding-right:6px; | |
| 118 | + zoom:1; | |
| 119 | +} | |
| 120 | +.x-panel-mc { | |
| 121 | + border:0 none; | |
| 122 | + padding:0; | |
| 123 | + margin:0; | |
| 124 | + font: normal 11px tahoma,arial,helvetica,sans-serif; | |
| 125 | + padding-top:6px; | |
| 126 | + background:#dfe8f6; | |
| 127 | +} | |
| 128 | +.x-panel-mc .x-panel-body { | |
| 129 | + background:transparent; | |
| 130 | + border: 0 none; | |
| 131 | +} | |
| 132 | +.x-panel-ml { | |
| 133 | + background: #fff url(../images/default/panel/left-right.gif) repeat-y 0 0; | |
| 134 | + padding-left:6px; | |
| 135 | + zoom:1; | |
| 136 | +} | |
| 137 | +.x-panel-mr { | |
| 138 | + background: transparent url(../images/default/panel/left-right.gif) repeat-y right 0; | |
| 139 | + padding-right:6px; | |
| 140 | + zoom:1; | |
| 141 | +} | |
| 142 | +.x-panel-bc .x-panel-footer { | |
| 143 | + padding-bottom:6px; | |
| 144 | +} | |
| 145 | +.x-panel-nofooter .x-panel-bc, .x-panel-nofooter .x-window-bc { | |
| 146 | + height:6px; | |
| 147 | + font-size:0; | |
| 148 | + line-height:0; | |
| 149 | +} | |
| 150 | + | |
| 151 | +.x-panel-bwrap { | |
| 152 | + overflow:hidden; | |
| 153 | + zoom:1; | |
| 154 | + left:0;top:0; | |
| 155 | +} | |
| 156 | +.x-panel-body { | |
| 157 | + overflow:hidden; | |
| 158 | + zoom:1; | |
| 159 | +} | |
| 160 | + | |
| 161 | +.x-panel-collapsed .x-resizable-handle{ | |
| 162 | + display:none; | |
| 163 | +} | |
| 164 | + | |
| 165 | +.ext-gecko .x-panel-animated div { | |
| 166 | + overflow:hidden !important; | |
| 167 | +} | |
| 168 | + | |
| 169 | +/* Plain */ | |
| 170 | +.x-plain-body { | |
| 171 | + overflow:hidden; | |
| 172 | +} | |
| 173 | + | |
| 174 | +.x-plain-bbar .x-toolbar { | |
| 175 | + overflow:hidden; | |
| 176 | + padding:2px; | |
| 177 | +} | |
| 178 | + | |
| 179 | +.x-plain-tbar .x-toolbar { | |
| 180 | + overflow:hidden; | |
| 181 | + padding:2px; | |
| 182 | +} | |
| 183 | + | |
| 184 | +.x-plain-bwrap { | |
| 185 | + overflow:hidden; | |
| 186 | + zoom:1; | |
| 187 | +} | |
| 188 | + | |
| 189 | +.x-plain { | |
| 190 | + overflow:hidden; | |
| 191 | +} | |
| 192 | + | |
| 193 | +/* Tools */ | |
| 194 | +.x-tool { | |
| 195 | + overflow:hidden; | |
| 196 | + width:15px; | |
| 197 | + height:15px; | |
| 198 | + float:right; | |
| 199 | + cursor:pointer; | |
| 200 | + background:transparent url(../images/default/panel/tool-sprites.gif) no-repeat; | |
| 201 | + margin-left:2px; | |
| 202 | +} | |
| 203 | + | |
| 204 | +/* expand / collapse tools */ | |
| 205 | +.x-tool-toggle { | |
| 206 | + background-position:0 -60px; | |
| 207 | +} | |
| 208 | +.x-tool-toggle-over { | |
| 209 | + background-position:-15px -60px; | |
| 210 | +} | |
| 211 | +.x-panel-collapsed .x-tool-toggle { | |
| 212 | + background-position:0 -75px; | |
| 213 | +} | |
| 214 | +.x-panel-collapsed .x-tool-toggle-over { | |
| 215 | + background-position:-15px -75px; | |
| 216 | +} | |
| 217 | + | |
| 218 | +.x-tool-close { | |
| 219 | + background-position:0 -0; | |
| 220 | +} | |
| 221 | +.x-tool-close-over { | |
| 222 | + background-position:-15px 0; | |
| 223 | +} | |
| 224 | + | |
| 225 | +.x-tool-minimize { | |
| 226 | + background-position:0 -15px; | |
| 227 | +} | |
| 228 | +.x-tool-minimize-over { | |
| 229 | + background-position:-15px -15px; | |
| 230 | +} | |
| 231 | + | |
| 232 | +.x-tool-maximize { | |
| 233 | + background-position:0 -30px; | |
| 234 | +} | |
| 235 | +.x-tool-maximize-over { | |
| 236 | + background-position:-15px -30px; | |
| 237 | +} | |
| 238 | + | |
| 239 | +.x-tool-restore { | |
| 240 | + background-position:0 -45px; | |
| 241 | +} | |
| 242 | +.x-tool-restore-over { | |
| 243 | + background-position:-15px -45px; | |
| 244 | +} | |
| 245 | + | |
| 246 | +.x-tool-gear { | |
| 247 | + background-position:0 -90px; | |
| 248 | +} | |
| 249 | +.x-tool-gear-over { | |
| 250 | + background-position:-15px -90px; | |
| 251 | +} | |
| 252 | + | |
| 253 | +.x-tool-pin { | |
| 254 | + background-position:0 -135px; | |
| 255 | +} | |
| 256 | +.x-tool-pin-over { | |
| 257 | + background-position:-15px -135px; | |
| 258 | +} | |
| 259 | +.x-tool-unpin { | |
| 260 | + background-position:0 -150px; | |
| 261 | +} | |
| 262 | +.x-tool-unpin-over { | |
| 263 | + background-position:-15px -150px; | |
| 264 | +} | |
| 265 | +.x-tool-right { | |
| 266 | + background-position:0 -165px; | |
| 267 | +} | |
| 268 | +.x-tool-right-over { | |
| 269 | + background-position:-15px -165px; | |
| 270 | +} | |
| 271 | +.x-tool-left { | |
| 272 | + background-position:0 -180px; | |
| 273 | +} | |
| 274 | +.x-tool-left-over { | |
| 275 | + background-position:-15px -180px; | |
| 276 | +} | |
| 277 | +.x-tool-up { | |
| 278 | + background-position:0 -210px; | |
| 279 | +} | |
| 280 | +.x-tool-up-over { | |
| 281 | + background-position:-15px -210px; | |
| 282 | +} | |
| 283 | +.x-tool-down { | |
| 284 | + background-position:0 -195px; | |
| 285 | +} | |
| 286 | +.x-tool-down-over { | |
| 287 | + background-position:-15px -195px; | |
| 288 | +} | |
| 289 | +.x-tool-refresh { | |
| 290 | + background-position:0 -225px; | |
| 291 | +} | |
| 292 | +.x-tool-refresh-over { | |
| 293 | + background-position:-15px -225px; | |
| 294 | +} | |
| 295 | + | |
| 296 | +.x-tool-minus { | |
| 297 | + background-position:0 -255px; | |
| 298 | +} | |
| 299 | +.x-tool-minus-over { | |
| 300 | + background-position:-15px -255px; | |
| 301 | +} | |
| 302 | +.x-tool-plus { | |
| 303 | + background-position:0 -240px; | |
| 304 | +} | |
| 305 | +.x-tool-plus-over { | |
| 306 | + background-position:-15px -240px; | |
| 307 | +} | |
| 308 | + | |
| 309 | +.x-tool-search { | |
| 310 | + background-position:0 -270px; | |
| 311 | +} | |
| 312 | +.x-tool-search-over { | |
| 313 | + background-position:-15px -270px; | |
| 314 | +} | |
| 315 | +.x-tool-save { | |
| 316 | + background-position:0 -285px; | |
| 317 | +} | |
| 318 | +.x-tool-save-over { | |
| 319 | + background-position:-15px -285px; | |
| 320 | +} | |
| 321 | +.x-tool-help { | |
| 322 | + background-position:0 -300px; | |
| 323 | +} | |
| 324 | +.x-tool-help-over { | |
| 325 | + background-position:-15px -300px; | |
| 326 | +} | |
| 327 | +.x-tool-print { | |
| 328 | + background-position:0 -315px; | |
| 329 | +} | |
| 330 | +.x-tool-print-over { | |
| 331 | + background-position:-15px -315px; | |
| 332 | +} | |
| 333 | + | |
| 334 | +/* Ghosting */ | |
| 335 | +.x-panel-ghost { | |
| 336 | + background:#cbddf3; | |
| 337 | + z-index:12000; | |
| 338 | + overflow:hidden; | |
| 339 | + position:absolute; | |
| 340 | + left:0;top:0; | |
| 341 | + opacity:.65; | |
| 342 | + -moz-opacity:.65; | |
| 343 | + filter:alpha(opacity=65); | |
| 344 | +} | |
| 345 | + | |
| 346 | +.x-panel-ghost ul { | |
| 347 | + margin:0; | |
| 348 | + padding:0; | |
| 349 | + overflow:hidden; | |
| 350 | + font-size:0; | |
| 351 | + line-height:0; | |
| 352 | + border:1px solid #99bbe8; | |
| 353 | + border-top:0 none; | |
| 354 | + display:block; | |
| 355 | +} | |
| 356 | + | |
| 357 | +.x-panel-ghost * { | |
| 358 | + cursor:move !important; | |
| 359 | +} | |
| 360 | + | |
| 361 | +.x-panel-dd-spacer { | |
| 362 | + border:2px dashed #99bbe8; | |
| 363 | +} | |
| 364 | +/* Buttons */ | |
| 365 | + | |
| 366 | +.x-panel-btns-ct { | |
| 367 | + padding:5px; | |
| 368 | +} | |
| 369 | + | |
| 370 | +.x-panel-btns-ct .x-btn{ | |
| 371 | + float:right; | |
| 372 | + clear:none; | |
| 373 | +} | |
| 374 | +.x-panel-btns-ct .x-panel-btns td { | |
| 375 | + border:0; | |
| 376 | + padding:0; | |
| 377 | +} | |
| 378 | +.x-panel-btns-ct .x-panel-btns-right table{ | |
| 379 | + float:right; | |
| 380 | + clear:none; | |
| 381 | +} | |
| 382 | +.x-panel-btns-ct .x-panel-btns-left table{ | |
| 383 | + float:left; | |
| 384 | + clear:none; | |
| 385 | +} | |
| 386 | +.x-panel-btns-ct .x-panel-btns-center{ | |
| 387 | + text-align:center; /*ie*/ | |
| 388 | +} | |
| 389 | +.x-panel-btns-ct .x-panel-btns-center table{ | |
| 390 | + margin:0 auto; /*everyone else*/ | |
| 391 | +} | |
| 392 | +.x-panel-btns-ct table td.x-panel-btn-td{ | |
| 393 | + padding:3px; | |
| 394 | +} | |
| 395 | + | |
| 396 | +.x-panel-btns-ct .x-btn-focus .x-btn-left{ | |
| 397 | + background-position:0 -147px; | |
| 398 | +} | |
| 399 | +.x-panel-btns-ct .x-btn-focus .x-btn-right{ | |
| 400 | + background-position:0 -168px; | |
| 401 | +} | |
| 402 | +.x-panel-btns-ct .x-btn-focus .x-btn-center{ | |
| 403 | + background-position:0 -189px; | |
| 404 | +} | |
| 405 | + | |
| 406 | +.x-panel-btns-ct .x-btn-over .x-btn-left{ | |
| 407 | + background-position:0 -63px; | |
| 408 | +} | |
| 409 | +.x-panel-btns-ct .x-btn-over .x-btn-right{ | |
| 410 | + background-position:0 -84px; | |
| 411 | +} | |
| 412 | +.x-panel-btns-ct .x-btn-over .x-btn-center{ | |
| 413 | + background-position:0 -105px; | |
| 414 | +} | |
| 415 | + | |
| 416 | +.x-panel-btns-ct .x-btn-click .x-btn-center{ | |
| 417 | + background-position:0 -126px; | |
| 418 | +} | |
| 419 | +.x-panel-btns-ct .x-btn-click .x-btn-right{ | |
| 420 | + background-position:0 -84px; | |
| 421 | +} | |
| 422 | +.x-panel-btns-ct .x-btn-click .x-btn-left{ | |
| 423 | + background-position:0 -63px; | |
| 424 | +} | |
| 0 | 425 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/progress.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-progress-wrap { | |
| 10 | + border:1px solid #6593cf; | |
| 11 | + overflow:hidden; | |
| 12 | +} | |
| 13 | +.x-progress-inner { | |
| 14 | + height:18px; | |
| 15 | + background: #e0e8f3 url(../images/default/qtip/bg.gif) repeat-x; | |
| 16 | + position:relative; | |
| 17 | +} | |
| 18 | +.x-progress-bar { | |
| 19 | + height:18px; | |
| 20 | + float:left; | |
| 21 | + width:0; | |
| 22 | + background:#9CBFEE url( ../images/default/progress/progress-bg.gif ) repeat-x left center; | |
| 23 | + border-top:1px solid #D1E4FD; | |
| 24 | + border-bottom:1px solid #7FA9E4; | |
| 25 | + border-right:1px solid #7FA9E4; | |
| 26 | +} | |
| 27 | +.x-progress-text { | |
| 28 | + font-size:11px; | |
| 29 | + font-weight:bold; | |
| 30 | + color:#fff; | |
| 31 | + padding:1px 5px; | |
| 32 | + overflow:hidden; | |
| 33 | + position:absolute; | |
| 34 | + left:0; | |
| 35 | + text-align:center; | |
| 36 | +} | |
| 37 | +.x-progress-text-back { | |
| 38 | + color:#396095; | |
| 39 | + line-height:16px; | |
| 40 | +} | |
| 41 | +.ext-ie .x-progress-text-back { | |
| 42 | + line-height:15px; | |
| 43 | +} | |
| 0 | 44 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/qtips.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-tip{ | |
| 10 | + position: absolute; | |
| 11 | + top: 0; | |
| 12 | + left:0; | |
| 13 | + visibility: hidden; | |
| 14 | + z-index: 20000; | |
| 15 | + border:0 none; | |
| 16 | +} | |
| 17 | +.x-tip .x-tip-close{ | |
| 18 | + background-image: url(../images/default/qtip/close.gif); | |
| 19 | + height: 15px; | |
| 20 | + float:right; | |
| 21 | + width: 15px; | |
| 22 | + margin:0 0 2px 2px; | |
| 23 | + cursor:pointer; | |
| 24 | + display:none; | |
| 25 | +} | |
| 26 | +.x-tip .x-tip-tc { | |
| 27 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -62px; | |
| 28 | + padding-top:3px; | |
| 29 | + overflow:hidden; | |
| 30 | + zoom:1; | |
| 31 | +} | |
| 32 | +.x-tip .x-tip-tl { | |
| 33 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 0; | |
| 34 | + padding-left:6px; | |
| 35 | + overflow:hidden; | |
| 36 | + zoom:1; | |
| 37 | +} | |
| 38 | +.x-tip .x-tip-tr { | |
| 39 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right 0; | |
| 40 | + padding-right:6px; | |
| 41 | + overflow:hidden; | |
| 42 | + zoom:1; | |
| 43 | +} | |
| 44 | +.x-tip .x-tip-bc { | |
| 45 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -121px; | |
| 46 | + height:3px; | |
| 47 | + overflow:hidden; | |
| 48 | +} | |
| 49 | +.x-tip .x-tip-bl { | |
| 50 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -59px; | |
| 51 | + padding-left:6px; | |
| 52 | + zoom:1; | |
| 53 | +} | |
| 54 | +.x-tip .x-tip-br { | |
| 55 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -59px; | |
| 56 | + padding-right:6px; | |
| 57 | + zoom:1; | |
| 58 | +} | |
| 59 | +.x-tip .x-tip-mc { | |
| 60 | + border:0 none; | |
| 61 | + font: normal 11px tahoma,arial,helvetica,sans-serif; | |
| 62 | +} | |
| 63 | +.x-tip .x-tip-ml { | |
| 64 | + background: #fff url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -124px; | |
| 65 | + padding-left:6px; | |
| 66 | + zoom:1; | |
| 67 | +} | |
| 68 | +.x-tip .x-tip-mr { | |
| 69 | + background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -124px; | |
| 70 | + padding-right:6px; | |
| 71 | + zoom:1; | |
| 72 | +} | |
| 73 | +.ext-ie .x-tip .x-tip-header,.ext-ie .x-tip .x-tip-tc { | |
| 74 | + font-size:0; | |
| 75 | + line-height:0; | |
| 76 | +} | |
| 77 | +.x-tip .x-tip-header-text { | |
| 78 | + font: bold 11px tahoma,arial,helvetica,sans-serif; | |
| 79 | + padding:0; | |
| 80 | + margin:0 0 2px 0; | |
| 81 | + color:#444; | |
| 82 | +} | |
| 83 | +.x-tip .x-tip-body { | |
| 84 | + font: normal 11px tahoma,arial,helvetica,sans-serif; | |
| 85 | + margin:0 !important; | |
| 86 | + line-height:14px; | |
| 87 | + color:#444; | |
| 88 | + padding:0; | |
| 89 | +} | |
| 90 | + | |
| 91 | +.x-tip .x-tip-body .loading-indicator { | |
| 92 | + margin:0; | |
| 93 | +} | |
| 94 | + | |
| 95 | +.x-tip-draggable .x-tip-header,.x-tip-draggable .x-tip-header-text { | |
| 96 | + cursor:move; | |
| 97 | +} | |
| 98 | + | |
| 99 | +.x-form-invalid-tip { | |
| 100 | +} | |
| 101 | + | |
| 102 | +.x-form-invalid-tip .x-tip-tc { | |
| 103 | + background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -12px; | |
| 104 | + padding-top:6px; | |
| 105 | +} | |
| 106 | +.x-form-invalid-tip .x-tip-tl { | |
| 107 | + background-image: url(../images/default/form/error-tip-corners.gif); | |
| 108 | +} | |
| 109 | +.x-form-invalid-tip .x-tip-tr { | |
| 110 | + background-image: url(../images/default/form/error-tip-corners.gif); | |
| 111 | +} | |
| 112 | +.x-form-invalid-tip .x-tip-bc { | |
| 113 | + background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -18px; | |
| 114 | + height:6px; | |
| 115 | +} | |
| 116 | +.x-form-invalid-tip .x-tip-bl { | |
| 117 | + background: url(../images/default/form/error-tip-corners.gif) no-repeat 0 -6px; | |
| 118 | +} | |
| 119 | +.x-form-invalid-tip .x-tip-br { | |
| 120 | + background: url(../images/default/form/error-tip-corners.gif) no-repeat right -6px; | |
| 121 | +} | |
| 122 | +.x-form-invalid-tip .x-tip-ml { | |
| 123 | + background-image: url(../images/default/form/error-tip-corners.gif); | |
| 124 | +} | |
| 125 | +.x-form-invalid-tip .x-tip-mr { | |
| 126 | + background-image: url(../images/default/form/error-tip-corners.gif); | |
| 127 | +} | |
| 128 | +.x-form-invalid-tip .x-tip-body { | |
| 129 | + padding:2px; | |
| 130 | +} | |
| 131 | +.x-form-invalid-tip .x-tip-body { | |
| 132 | + padding-left:24px; | |
| 133 | + background:transparent url(../images/default/form/exclamation.gif) no-repeat 2px 2px; | |
| 134 | +} | |
| 0 | 135 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/reset-min.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';} | |
| 0 | 10 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/reset.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,body,html{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';} | |
| 0 | 10 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/resizable.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-resizable-handle { | |
| 10 | + position:absolute; | |
| 11 | + z-index:100; | |
| 12 | + /* ie needs these */ | |
| 13 | + font-size:1px; | |
| 14 | + line-height:6px; | |
| 15 | + overflow:hidden; | |
| 16 | + background:white; | |
| 17 | + filter:alpha(opacity=0); | |
| 18 | + opacity:0; | |
| 19 | + zoom:1; | |
| 20 | +} | |
| 21 | +.x-resizable-handle-east{ | |
| 22 | + width:6px; | |
| 23 | + cursor:e-resize; | |
| 24 | + right:0; | |
| 25 | + top:0; | |
| 26 | + height:100%; | |
| 27 | +} | |
| 28 | +.ext-ie .x-resizable-handle-east { | |
| 29 | + margin-right:-1px; /*IE rounding error*/ | |
| 30 | +} | |
| 31 | +.x-resizable-handle-south{ | |
| 32 | + width:100%; | |
| 33 | + cursor:s-resize; | |
| 34 | + left:0; | |
| 35 | + bottom:0; | |
| 36 | + height:6px; | |
| 37 | +} | |
| 38 | +.ext-ie .x-resizable-handle-south { | |
| 39 | + margin-bottom:-1px; /*IE rounding error*/ | |
| 40 | +} | |
| 41 | +.x-resizable-handle-west{ | |
| 42 | + width:6px; | |
| 43 | + cursor:w-resize; | |
| 44 | + left:0; | |
| 45 | + top:0; | |
| 46 | + height:100%; | |
| 47 | +} | |
| 48 | +.x-resizable-handle-north{ | |
| 49 | + width:100%; | |
| 50 | + cursor:n-resize; | |
| 51 | + left:0; | |
| 52 | + top:0; | |
| 53 | + height:6px; | |
| 54 | +} | |
| 55 | +.x-resizable-handle-southeast{ | |
| 56 | + width:6px; | |
| 57 | + cursor:se-resize; | |
| 58 | + right:0; | |
| 59 | + bottom:0; | |
| 60 | + height:6px; | |
| 61 | + z-index:101; | |
| 62 | +} | |
| 63 | +.x-resizable-handle-northwest{ | |
| 64 | + width:6px; | |
| 65 | + cursor:nw-resize; | |
| 66 | + left:0; | |
| 67 | + top:0; | |
| 68 | + height:6px; | |
| 69 | + z-index:101; | |
| 70 | +} | |
| 71 | +.x-resizable-handle-northeast{ | |
| 72 | + width:6px; | |
| 73 | + cursor:ne-resize; | |
| 74 | + right:0; | |
| 75 | + top:0; | |
| 76 | + height:6px; | |
| 77 | + z-index:101; | |
| 78 | +} | |
| 79 | +.x-resizable-handle-southwest{ | |
| 80 | + width:6px; | |
| 81 | + cursor:sw-resize; | |
| 82 | + left:0; | |
| 83 | + bottom:0; | |
| 84 | + height:6px; | |
| 85 | + z-index:101; | |
| 86 | +} | |
| 87 | +.x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{ | |
| 88 | + filter:alpha(opacity=100); | |
| 89 | + opacity:1; | |
| 90 | +} | |
| 91 | +.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east{ | |
| 92 | + background:url(../images/default/sizer/e-handle.gif); | |
| 93 | + background-position: left; | |
| 94 | +} | |
| 95 | +.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west{ | |
| 96 | + background:url(../images/default/sizer/e-handle.gif); | |
| 97 | + background-position: left; | |
| 98 | +} | |
| 99 | +.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south{ | |
| 100 | + background:url(../images/default/sizer/s-handle.gif); | |
| 101 | + background-position: top; | |
| 102 | +} | |
| 103 | +.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{ | |
| 104 | + background:url(../images/default/sizer/s-handle.gif); | |
| 105 | + background-position: top; | |
| 106 | +} | |
| 107 | +.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{ | |
| 108 | + background:url(../images/default/sizer/se-handle.gif); | |
| 109 | + background-position: top left; | |
| 110 | +} | |
| 111 | +.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{ | |
| 112 | + background:url(../images/default/sizer/nw-handle.gif); | |
| 113 | + background-position:bottom right; | |
| 114 | +} | |
| 115 | +.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{ | |
| 116 | + background:url(../images/default/sizer/ne-handle.gif); | |
| 117 | + background-position: bottom left; | |
| 118 | +} | |
| 119 | +.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{ | |
| 120 | + background:url(../images/default/sizer/sw-handle.gif); | |
| 121 | + background-position: top right; | |
| 122 | +} | |
| 123 | +.x-resizable-proxy{ | |
| 124 | + border: 1px dashed #3b5a82; | |
| 125 | + position:absolute; | |
| 126 | + overflow:hidden; | |
| 127 | + display:none; | |
| 128 | + left:0;top:0; | |
| 129 | + z-index:50000; | |
| 130 | +} | |
| 131 | +.x-resizable-overlay{ | |
| 132 | + width:100%; | |
| 133 | + height:100%; | |
| 134 | + display:none; | |
| 135 | + position:absolute; | |
| 136 | + left:0; | |
| 137 | + top:0; | |
| 138 | + background:white; | |
| 139 | + z-index:200000; | |
| 140 | + -moz-opacity: 0; | |
| 141 | + opacity:0; | |
| 142 | + filter: alpha(opacity=0); | |
| 143 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/slider.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +/* Shared styles */ | |
| 10 | +.x-slider { | |
| 11 | + zoom:1; | |
| 12 | +} | |
| 13 | +.x-slider-inner { | |
| 14 | + position:relative; | |
| 15 | + left:0; | |
| 16 | + top:0; | |
| 17 | + overflow:visible; | |
| 18 | + zoom:1; | |
| 19 | +} | |
| 20 | +.x-slider-focus { | |
| 21 | + position:absolute; | |
| 22 | + left:0; | |
| 23 | + top:0; | |
| 24 | + width:1px; | |
| 25 | + height:1px; | |
| 26 | + line-height:1px; | |
| 27 | + font-size:1px; | |
| 28 | + -moz-outline:0 none; | |
| 29 | + outline:0 none; | |
| 30 | + -moz-user-select: text; | |
| 31 | + -khtml-user-select: text; | |
| 32 | +} | |
| 33 | + | |
| 34 | +/* Horizontal styles */ | |
| 35 | +.x-slider-horz { | |
| 36 | + padding-left:7px; | |
| 37 | + background:transparent url(../images/default/slider/slider-bg.png) no-repeat 0 -22px; | |
| 38 | +} | |
| 39 | +.x-slider-horz .x-slider-end { | |
| 40 | + padding-right:7px; | |
| 41 | + zoom:1; | |
| 42 | + background:transparent url(../images/default/slider/slider-bg.png) no-repeat right -44px; | |
| 43 | +} | |
| 44 | +.x-slider-horz .x-slider-inner { | |
| 45 | + background:transparent url(../images/default/slider/slider-bg.png) repeat-x 0 0; | |
| 46 | + height:22px; | |
| 47 | +} | |
| 48 | +.x-slider-horz .x-slider-thumb { | |
| 49 | + width:14px; | |
| 50 | + height:15px; | |
| 51 | + position:absolute; | |
| 52 | + left:0; | |
| 53 | + top:3px; | |
| 54 | + background:transparent url(../images/default/slider/slider-thumb.png) no-repeat 0 0; | |
| 55 | +} | |
| 56 | +.x-slider-horz .x-slider-thumb-over { | |
| 57 | + background-position: -14px -15px; | |
| 58 | +} | |
| 59 | +.x-slider-horz .x-slider-thumb-drag { | |
| 60 | + background-position: -28px -30px; | |
| 61 | +} | |
| 62 | + | |
| 63 | +/* Vertical styles */ | |
| 64 | +.x-slider-vert { | |
| 65 | + padding-top:7px; | |
| 66 | + background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -44px 0; | |
| 67 | + width:22px; | |
| 68 | +} | |
| 69 | +.x-slider-vert .x-slider-end { | |
| 70 | + padding-bottom:7px; | |
| 71 | + zoom:1; | |
| 72 | + background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -22px bottom; | |
| 73 | +} | |
| 74 | +.x-slider-vert .x-slider-inner { | |
| 75 | + background:transparent url(../images/default/slider/slider-v-bg.png) repeat-y 0 0; | |
| 76 | +} | |
| 77 | +.x-slider-vert .x-slider-thumb { | |
| 78 | + width:15px; | |
| 79 | + height:14px; | |
| 80 | + position:absolute; | |
| 81 | + left:3px; | |
| 82 | + bottom:0; | |
| 83 | + background:transparent url(../images/default/slider/slider-v-thumb.png) no-repeat 0 0; | |
| 84 | +} | |
| 85 | +.x-slider-vert .x-slider-thumb-over { | |
| 86 | + background-position: -15px -14px; | |
| 87 | +} | |
| 88 | +.x-slider-vert .x-slider-thumb-drag { | |
| 89 | + background-position: -30px -28px; | |
| 90 | +} | |
| 0 | 91 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/tabs.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-tab-panel { | |
| 10 | + overflow:hidden; | |
| 11 | +} | |
| 12 | +.x-tab-panel-header, .x-tab-panel-footer { | |
| 13 | + background: #deecfd; | |
| 14 | + border: 1px solid #8db2e3; | |
| 15 | + overflow:hidden; | |
| 16 | + zoom:1; | |
| 17 | +} | |
| 18 | + | |
| 19 | + | |
| 20 | +.x-tab-panel-header { | |
| 21 | + border: 1px solid #8db2e3; | |
| 22 | + padding-bottom: 2px; | |
| 23 | +} | |
| 24 | + | |
| 25 | +.x-tab-panel-footer { | |
| 26 | + border: 1px solid #8db2e3; | |
| 27 | + padding-top: 2px; | |
| 28 | +} | |
| 29 | + | |
| 30 | + | |
| 31 | +.x-tab-strip-wrap { | |
| 32 | + width:100%; | |
| 33 | + overflow:hidden; | |
| 34 | + position:relative; | |
| 35 | + zoom:1; | |
| 36 | +} | |
| 37 | +ul.x-tab-strip { | |
| 38 | + display:block; | |
| 39 | + width:5000px; | |
| 40 | + zoom:1; | |
| 41 | +} | |
| 42 | + | |
| 43 | +ul.x-tab-strip-top{ | |
| 44 | + padding-top: 1px; | |
| 45 | + background: url(../images/default/tabs/tab-strip-bg.gif) #cedff5 repeat-x bottom; | |
| 46 | + border-bottom: 1px solid #8db2e3; | |
| 47 | +} | |
| 48 | + | |
| 49 | +ul.x-tab-strip-bottom{ | |
| 50 | + padding-bottom: 1px; | |
| 51 | + background: url(../images/default/tabs/tab-strip-btm-bg.gif) #cedff5 repeat-x top; | |
| 52 | + border-top: 1px solid #8db2e3; | |
| 53 | + border-bottom: 0 none; | |
| 54 | +} | |
| 55 | + | |
| 56 | +.x-tab-panel-header-plain .x-tab-strip-top { | |
| 57 | + background:transparent !important; | |
| 58 | + padding-top:0 !important; | |
| 59 | +} | |
| 60 | +.x-tab-panel-header-plain { | |
| 61 | + background:transparent !important; | |
| 62 | + border-width:0 !important; | |
| 63 | + padding-bottom:0 !important; | |
| 64 | +} | |
| 65 | + | |
| 66 | +.x-tab-panel-header-plain .x-tab-strip-spacer, | |
| 67 | +.x-tab-panel-footer-plain .x-tab-strip-spacer { | |
| 68 | + border:1px solid #8db2e3; | |
| 69 | + height:2px; | |
| 70 | + background: #deecfd; | |
| 71 | + font-size:1px; | |
| 72 | + line-height:1px; | |
| 73 | +} | |
| 74 | +.x-tab-panel-header-plain .x-tab-strip-spacer { | |
| 75 | + border-top: 0 none; | |
| 76 | +} | |
| 77 | +.x-tab-panel-footer-plain .x-tab-strip-spacer { | |
| 78 | + border-bottom: 0 none; | |
| 79 | +} | |
| 80 | + | |
| 81 | +.x-tab-panel-footer-plain .x-tab-strip-bottom { | |
| 82 | + background:transparent !important; | |
| 83 | + padding-bottom:0 !important; | |
| 84 | +} | |
| 85 | +.x-tab-panel-footer-plain { | |
| 86 | + background:transparent !important; | |
| 87 | + border-width:0 !important; | |
| 88 | + padding-top:0 !important; | |
| 89 | +} | |
| 90 | + | |
| 91 | +.ext-border-box .x-tab-panel-header-plain .x-tab-strip-spacer, | |
| 92 | +.ext-border-box .x-tab-panel-footer-plain .x-tab-strip-spacer { | |
| 93 | + height:3px; | |
| 94 | +} | |
| 95 | + | |
| 96 | + | |
| 97 | +ul.x-tab-strip li { | |
| 98 | + float:left; | |
| 99 | + margin-left:2px; | |
| 100 | +} | |
| 101 | + | |
| 102 | + | |
| 103 | +ul.x-tab-strip li.x-tab-edge { | |
| 104 | + float:left; | |
| 105 | + margin:0 !important; | |
| 106 | + padding:0 !important; | |
| 107 | + border:0 none !important; | |
| 108 | + font-size:1px !important; | |
| 109 | + line-height:1px !important; | |
| 110 | + overflow:hidden; | |
| 111 | + zoom:1; | |
| 112 | + background:transparent !important; | |
| 113 | + width:1px; | |
| 114 | +} | |
| 115 | + | |
| 116 | +.x-tab-strip a, .x-tab-strip span, .x-tab-strip em { | |
| 117 | + display:block; | |
| 118 | +} | |
| 119 | + | |
| 120 | +.x-tab-strip a { | |
| 121 | + text-decoration:none !important; | |
| 122 | + -moz-outline: none; | |
| 123 | + outline: none; | |
| 124 | + cursor:pointer; | |
| 125 | +} | |
| 126 | + | |
| 127 | +.x-tab-strip-inner { | |
| 128 | + overflow:hidden; | |
| 129 | + text-overflow: ellipsis; | |
| 130 | +} | |
| 131 | + | |
| 132 | +.x-tab-strip span.x-tab-strip-text { | |
| 133 | + font:normal 11px tahoma,arial,helvetica; | |
| 134 | + color:#416aa3; | |
| 135 | + white-space: nowrap; | |
| 136 | + cursor:pointer; | |
| 137 | + padding:4px 0; | |
| 138 | +} | |
| 139 | +.x-tab-strip-top .x-tab-with-icon .x-tab-right { | |
| 140 | + padding-left:6px; | |
| 141 | +} | |
| 142 | +.x-tab-strip .x-tab-with-icon span.x-tab-strip-text { | |
| 143 | + padding-left:20px; | |
| 144 | + background-position: 0 3px; | |
| 145 | + background-repeat: no-repeat; | |
| 146 | +} | |
| 147 | + | |
| 148 | +.x-tab-strip-over span.x-tab-strip-text { | |
| 149 | + color:#15428b; | |
| 150 | +} | |
| 151 | + | |
| 152 | +.x-tab-strip-active, .x-tab-strip-active a.x-tab-right { | |
| 153 | + cursor:default; | |
| 154 | +} | |
| 155 | + | |
| 156 | +.x-tab-strip-active span.x-tab-strip-text { | |
| 157 | + cursor:default; | |
| 158 | + color:#15428b; | |
| 159 | + font-weight:bold; | |
| 160 | +} | |
| 161 | + | |
| 162 | +.x-tab-strip-disabled .x-tabs-text { | |
| 163 | + cursor:default; | |
| 164 | + color:#aaaaaa; | |
| 165 | +} | |
| 166 | + | |
| 167 | +.x-tab-panel-body { | |
| 168 | + overflow:hidden; | |
| 169 | +} | |
| 170 | +.x-tab-panel-bwrap { | |
| 171 | + overflow:hidden; | |
| 172 | +} | |
| 173 | +.ext-ie .x-tab-strip .x-tab-right { | |
| 174 | + position:relative; | |
| 175 | +} | |
| 176 | + | |
| 177 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right { | |
| 178 | + margin-bottom:-1px; | |
| 179 | +} | |
| 180 | + | |
| 181 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text { | |
| 182 | + padding-bottom:5px; | |
| 183 | +} | |
| 184 | + | |
| 185 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right { | |
| 186 | + margin-top:-1px; | |
| 187 | +} | |
| 188 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text { | |
| 189 | + padding-top:5px; | |
| 190 | +} | |
| 191 | + | |
| 192 | + | |
| 193 | +.x-tab-strip-top .x-tab-right { | |
| 194 | + background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat 0 -51px; | |
| 195 | + padding-left:10px; | |
| 196 | +} | |
| 197 | + | |
| 198 | +.x-tab-strip-top .x-tab-left { | |
| 199 | + background: transparent url(../images/default/tabs/tabs-sprite.gif) no-repeat right -351px; | |
| 200 | + padding-right:10px; | |
| 201 | +} | |
| 202 | + | |
| 203 | +.x-tab-strip-top .x-tab-strip-inner { | |
| 204 | + background: transparent url(../images/default/tabs/tabs-sprite.gif) repeat-x 0 -201px; | |
| 205 | +} | |
| 206 | + | |
| 207 | +.x-tab-strip-top .x-tab-strip-over .x-tab-right { | |
| 208 | + background-position:0 -101px; | |
| 209 | +} | |
| 210 | +.x-tab-strip-top .x-tab-strip-over .x-tab-left { | |
| 211 | + background-position:right -401px; | |
| 212 | +} | |
| 213 | +.x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner { | |
| 214 | + background-position:0 -251px; | |
| 215 | +} | |
| 216 | + | |
| 217 | +.x-tab-strip-top .x-tab-strip-active .x-tab-right { | |
| 218 | + background-position: 0 0; | |
| 219 | +} | |
| 220 | + | |
| 221 | +.x-tab-strip-top .x-tab-strip-active .x-tab-left { | |
| 222 | + background-position: right -301px; | |
| 223 | +} | |
| 224 | + | |
| 225 | +.x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner { | |
| 226 | + background-position: 0 -151px; | |
| 227 | +} | |
| 228 | + | |
| 229 | +.x-tab-strip-bottom .x-tab-right { | |
| 230 | + background: url(../images/default/tabs/tab-btm-inactive-right-bg.gif) no-repeat bottom right; | |
| 231 | +} | |
| 232 | + | |
| 233 | +.x-tab-strip-bottom .x-tab-left { | |
| 234 | + background: url(../images/default/tabs/tab-btm-inactive-left-bg.gif) no-repeat bottom left; | |
| 235 | +} | |
| 236 | + | |
| 237 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right { | |
| 238 | + background: url(../images/default/tabs/tab-btm-right-bg.gif) no-repeat bottom left; | |
| 239 | +} | |
| 240 | + | |
| 241 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-left { | |
| 242 | + background: url(../images/default/tabs/tab-btm-left-bg.gif) no-repeat bottom right; | |
| 243 | +} | |
| 244 | +.x-tab-strip-bottom .x-tab-left { | |
| 245 | + padding:0 10px; | |
| 246 | +} | |
| 247 | +.x-tab-strip-bottom .x-tab-right { | |
| 248 | + padding:0; | |
| 249 | +} | |
| 250 | +.x-tab-strip .x-tab-strip-close { | |
| 251 | + display:none; | |
| 252 | +} | |
| 253 | +.x-tab-strip-closable { | |
| 254 | + position:relative; | |
| 255 | +} | |
| 256 | + | |
| 257 | +.x-tab-strip-closable .x-tab-left { | |
| 258 | + padding-right:19px; | |
| 259 | +} | |
| 260 | + | |
| 261 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close { | |
| 262 | + background-image:url(../images/default/tabs/tab-close.gif); | |
| 263 | + opacity:.6; | |
| 264 | + -moz-opacity:.6; | |
| 265 | + background-repeat:no-repeat; | |
| 266 | + display:block; | |
| 267 | + width:11px;height:11px; | |
| 268 | + position:absolute; | |
| 269 | + top:3px; | |
| 270 | + right:3px; | |
| 271 | + cursor:pointer; | |
| 272 | + z-index:2; | |
| 273 | +} | |
| 274 | + | |
| 275 | +.x-tab-strip .x-tab-strip-active a.x-tab-strip-close { | |
| 276 | + opacity:.8; | |
| 277 | + -moz-opacity:.8; | |
| 278 | +} | |
| 279 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{ | |
| 280 | + background-image:url(../images/default/tabs/tab-close.gif); | |
| 281 | + opacity:1; | |
| 282 | + -moz-opacity:1; | |
| 283 | +} | |
| 284 | + | |
| 285 | +.x-tab-panel-body { | |
| 286 | + border: 1px solid #8db2e3; | |
| 287 | + background:#fff; | |
| 288 | +} | |
| 289 | +.x-tab-panel-body-top { | |
| 290 | + border-top: 0 none; | |
| 291 | +} | |
| 292 | +.x-tab-panel-body-bottom { | |
| 293 | + border-bottom: 0 none; | |
| 294 | +} | |
| 295 | + | |
| 296 | +.x-tab-scroller-left { | |
| 297 | + background: transparent url(../images/default/tabs/scroll-left.gif) no-repeat -18px 0; | |
| 298 | + border-bottom: 1px solid #8db2e3; | |
| 299 | + width:18px; | |
| 300 | + position:absolute; | |
| 301 | + left:0; | |
| 302 | + top:0; | |
| 303 | + z-index:10; | |
| 304 | + cursor:pointer; | |
| 305 | +} | |
| 306 | +.x-tab-scroller-left-over { | |
| 307 | + background-position: 0 0; | |
| 308 | +} | |
| 309 | +.x-tab-scroller-left-disabled { | |
| 310 | + background-position: -18px 0; | |
| 311 | + opacity:.5; | |
| 312 | + -moz-opacity:.5; | |
| 313 | + filter:alpha(opacity=50); | |
| 314 | + cursor:default; | |
| 315 | +} | |
| 316 | +.x-tab-scroller-right { | |
| 317 | + background: transparent url(../images/default/tabs/scroll-right.gif) no-repeat 0 0; | |
| 318 | + border-bottom: 1px solid #8db2e3; | |
| 319 | + width:18px; | |
| 320 | + position:absolute; | |
| 321 | + right:0; | |
| 322 | + top:0; | |
| 323 | + z-index:10; | |
| 324 | + cursor:pointer; | |
| 325 | +} | |
| 326 | +.x-tab-scroller-right-over { | |
| 327 | + background-position: -18px 0; | |
| 328 | +} | |
| 329 | +.x-tab-scroller-right-disabled { | |
| 330 | + background-position: 0 0; | |
| 331 | + opacity:.5; | |
| 332 | + -moz-opacity:.5; | |
| 333 | + filter:alpha(opacity=50); | |
| 334 | + cursor:default; | |
| 335 | +} | |
| 336 | + | |
| 337 | +.x-tab-scrolling .x-tab-strip-wrap { | |
| 338 | + margin-left:18px; | |
| 339 | + margin-right:18px; | |
| 340 | +} | |
| 341 | + | |
| 342 | +.x-tab-scrolling { | |
| 343 | + position:relative; | |
| 344 | +} | |
| 345 | + | |
| 346 | +.x-tab-panel-bbar .x-toolbar { | |
| 347 | + border:1px solid #99bbe8; | |
| 348 | + border-top:0 none; | |
| 349 | + overflow:hidden; | |
| 350 | + padding:2px; | |
| 351 | +} | |
| 352 | + | |
| 353 | +.x-tab-panel-tbar .x-toolbar { | |
| 354 | + border:1px solid #99bbe8; | |
| 355 | + border-top:0 none; | |
| 356 | + overflow:hidden; | |
| 357 | + padding:2px; | |
| 358 | +} | |
| 0 | 359 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/toolbar.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-toolbar{ | |
| 10 | + border-color:#a9bfd3; | |
| 11 | + border-style:solid; | |
| 12 | + border-width:0 0 1px 0; | |
| 13 | + display: block; | |
| 14 | + padding:2px; | |
| 15 | + background:#d0def0 url(../images/default/toolbar/bg.gif) repeat-x top left; | |
| 16 | + position:relative; | |
| 17 | + zoom:1; | |
| 18 | +} | |
| 19 | +.x-toolbar .x-item-disabled .x-btn-icon { | |
| 20 | + opacity: .35; | |
| 21 | + -moz-opacity: .35; | |
| 22 | + filter: alpha(opacity=35); | |
| 23 | +} | |
| 24 | +.x-toolbar td { | |
| 25 | + vertical-align:middle; | |
| 26 | +} | |
| 27 | +.mso .x-toolbar, .x-grid-mso .x-toolbar{ | |
| 28 | + border: 0 none; | |
| 29 | + background: url(../images/default/grid/mso-hd.gif); | |
| 30 | +} | |
| 31 | +.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{ | |
| 32 | + white-space: nowrap; | |
| 33 | + font:normal 11px tahoma, arial, helvetica, sans-serif; | |
| 34 | +} | |
| 35 | +.x-toolbar .x-item-disabled { | |
| 36 | + color:gray; | |
| 37 | + cursor:default; | |
| 38 | + opacity:.6; | |
| 39 | + -moz-opacity:.6; | |
| 40 | + filter:alpha(opacity=60); | |
| 41 | +} | |
| 42 | +.x-toolbar .x-item-disabled * { | |
| 43 | + color:gray; | |
| 44 | + cursor:default; | |
| 45 | +} | |
| 46 | +.x-toolbar .x-btn-left{ | |
| 47 | + background:none; | |
| 48 | +} | |
| 49 | +.x-toolbar .x-btn-right{ | |
| 50 | + background:none; | |
| 51 | +} | |
| 52 | +.x-toolbar .x-btn-center{ | |
| 53 | + background:none; | |
| 54 | + padding:0 0; | |
| 55 | +} | |
| 56 | +.x-toolbar .x-btn-menu-text-wrap .x-btn-center button{ | |
| 57 | + padding-right:2px; | |
| 58 | +} | |
| 59 | +.ext-gecko .x-toolbar .x-btn-menu-text-wrap .x-btn-center button{ | |
| 60 | + padding-right:0; | |
| 61 | +} | |
| 62 | +.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button{ | |
| 63 | + padding:0 2px; | |
| 64 | +} | |
| 65 | + | |
| 66 | +.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button { | |
| 67 | + width:12px; | |
| 68 | + background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px; | |
| 69 | +} | |
| 70 | +.x-toolbar .x-btn-text-icon .x-btn-menu-arrow-wrap .x-btn-center button { | |
| 71 | + width:12px; | |
| 72 | + background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px; | |
| 73 | +} | |
| 74 | +.x-toolbar .x-btn-over .x-btn-menu-arrow-wrap .x-btn-center button { | |
| 75 | + background-position: 0 -47px; | |
| 76 | +} | |
| 77 | +.x-toolbar .x-btn-over .x-btn-left{ | |
| 78 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 0; | |
| 79 | +} | |
| 80 | +.x-toolbar .x-btn-over .x-btn-right{ | |
| 81 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -21px; | |
| 82 | +} | |
| 83 | +.x-toolbar .x-btn-over .x-btn-center{ | |
| 84 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -42px; | |
| 85 | +} | |
| 86 | + | |
| 87 | +.x-toolbar .x-btn-click .x-btn-left, .x-toolbar .x-btn-pressed .x-btn-left, .x-toolbar .x-btn-menu-active .x-btn-left{ | |
| 88 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -63px; | |
| 89 | +} | |
| 90 | +.x-toolbar .x-btn-click .x-btn-right, .x-toolbar .x-btn-pressed .x-btn-right, .x-toolbar .x-btn-menu-active .x-btn-right{ | |
| 91 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -84px; | |
| 92 | +} | |
| 93 | + | |
| 94 | +.x-toolbar .x-btn-click .x-btn-center, .x-toolbar .x-btn-pressed .x-btn-center, .x-toolbar .x-btn-menu-active .x-btn-center{ | |
| 95 | + background: url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -105px; | |
| 96 | +} | |
| 97 | + | |
| 98 | +.x-toolbar .x-btn-with-menu .x-btn-center em{ | |
| 99 | + padding-right:8px; | |
| 100 | +} | |
| 101 | + | |
| 102 | +.x-toolbar .ytb-text{ | |
| 103 | + padding:2px; | |
| 104 | +} | |
| 105 | +.x-toolbar .ytb-sep { | |
| 106 | + background-image: url(../images/default/grid/grid-blue-split.gif); | |
| 107 | + background-position: center; | |
| 108 | + background-repeat: no-repeat; | |
| 109 | + display: block; | |
| 110 | + font-size: 1px; | |
| 111 | + height: 16px; | |
| 112 | + width:4px; | |
| 113 | + overflow: hidden; | |
| 114 | + cursor:default; | |
| 115 | + margin: 0 2px 0; | |
| 116 | + border:0; | |
| 117 | +} | |
| 118 | +.x-toolbar .ytb-spacer { | |
| 119 | + width:2px; | |
| 120 | +} | |
| 121 | + | |
| 122 | +/* Paging Toolbar */ | |
| 123 | + | |
| 124 | +.x-tbar-page-number{ | |
| 125 | + width:24px; | |
| 126 | + height:14px; | |
| 127 | +} | |
| 128 | +.x-tbar-page-first{ | |
| 129 | + background-image: url(../images/default/grid/page-first.gif) !important; | |
| 130 | +} | |
| 131 | +.x-tbar-loading{ | |
| 132 | + background-image: url(../images/default/grid/refresh.gif) !important; | |
| 133 | +} | |
| 134 | +.x-tbar-page-last{ | |
| 135 | + background-image: url(../images/default/grid/page-last.gif) !important; | |
| 136 | +} | |
| 137 | +.x-tbar-page-next{ | |
| 138 | + background-image: url(../images/default/grid/page-next.gif) !important; | |
| 139 | +} | |
| 140 | +.x-tbar-page-prev{ | |
| 141 | + background-image: url(../images/default/grid/page-prev.gif) !important; | |
| 142 | +} | |
| 143 | +.x-item-disabled .x-tbar-loading{ | |
| 144 | + background-image: url(../images/default/grid/loading.gif) !important; | |
| 145 | +} | |
| 146 | +.x-item-disabled .x-tbar-page-first{ | |
| 147 | + background-image: url(../images/default/grid/page-first-disabled.gif) !important; | |
| 148 | +} | |
| 149 | +.x-item-disabled .x-tbar-page-last{ | |
| 150 | + background-image: url(../images/default/grid/page-last-disabled.gif) !important; | |
| 151 | +} | |
| 152 | +.x-item-disabled .x-tbar-page-next{ | |
| 153 | + background-image: url(../images/default/grid/page-next-disabled.gif) !important; | |
| 154 | +} | |
| 155 | +.x-item-disabled .x-tbar-page-prev{ | |
| 156 | + background-image: url(../images/default/grid/page-prev-disabled.gif) !important; | |
| 157 | +} | |
| 158 | +.x-paging-info { | |
| 159 | + position:absolute; | |
| 160 | + top:5px; | |
| 161 | + right: 8px; | |
| 162 | + color:#444; | |
| 163 | +} | |
| 164 | + | |
| 165 | +/* StatusBar */ | |
| 166 | + | |
| 167 | +.x-statusbar .x-status-text { | |
| 168 | + height: 21px; | |
| 169 | + line-height: 21px; | |
| 170 | + padding: 0 4px; | |
| 171 | + cursor: default; | |
| 172 | +} | |
| 173 | +.x-statusbar .x-status-busy { | |
| 174 | + padding-left: 25px; | |
| 175 | + background: transparent url(../images/default/grid/loading.gif) no-repeat 3px 3px; | |
| 176 | +} | |
| 177 | +.x-statusbar .x-status-text-panel { | |
| 178 | + border-top: 1px solid #99BBE8; | |
| 179 | + border-right: 1px solid #fff; | |
| 180 | + border-bottom: 1px solid #fff; | |
| 181 | + border-left: 1px solid #99BBE8; | |
| 182 | + padding: 2px 8px 2px 5px; | |
| 183 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/tree.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-tree .x-panel-body{ | |
| 10 | + background-color:#fff; | |
| 11 | +} | |
| 12 | +.ext-strict .ext-ie .x-tree .x-panel-bwrap{ | |
| 13 | + position:relative; | |
| 14 | + overflow:hidden; | |
| 15 | +} | |
| 16 | +.x-tree-icon, .x-tree-ec-icon, .x-tree-elbow-line, .x-tree-elbow, .x-tree-elbow-end, .x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{ | |
| 17 | + border: 0 none; | |
| 18 | + height: 18px; | |
| 19 | + margin: 0; | |
| 20 | + padding: 0; | |
| 21 | + vertical-align: top; | |
| 22 | + width: 16px; | |
| 23 | + background-repeat: no-repeat; | |
| 24 | +} | |
| 25 | +.x-tree-node-collapsed .x-tree-node-icon, .x-tree-node-expanded .x-tree-node-icon, .x-tree-node-leaf .x-tree-node-icon{ | |
| 26 | + border: 0 none; | |
| 27 | + height: 18px; | |
| 28 | + margin: 0; | |
| 29 | + padding: 0; | |
| 30 | + vertical-align: top; | |
| 31 | + width: 16px; | |
| 32 | + background-position:center; | |
| 33 | + background-repeat: no-repeat; | |
| 34 | +} | |
| 35 | +.ext-ie .x-tree-node-indent img, .ext-ie .x-tree-node-icon, .ext-ie .x-tree-ec-icon { | |
| 36 | + vertical-align:middle !important; | |
| 37 | +} | |
| 38 | +/* some default icons for leaf/folder */ | |
| 39 | +.x-tree-node-expanded .x-tree-node-icon{ | |
| 40 | + background-image:url(../images/default/tree/folder-open.gif); | |
| 41 | +} | |
| 42 | +.x-tree-node-leaf .x-tree-node-icon{ | |
| 43 | + background-image:url(../images/default/tree/leaf.gif); | |
| 44 | +} | |
| 45 | +.x-tree-node-collapsed .x-tree-node-icon{ | |
| 46 | + background-image:url(../images/default/tree/folder.gif); | |
| 47 | +} | |
| 48 | +/* checkboxes */ | |
| 49 | +.ext-ie input.x-tree-node-cb { | |
| 50 | + width:15px; | |
| 51 | + height:15px; | |
| 52 | +} | |
| 53 | +input.x-tree-node-cb { | |
| 54 | + margin-left:1px; | |
| 55 | +} | |
| 56 | +.ext-ie input.x-tree-node-cb { | |
| 57 | + margin-left:0; | |
| 58 | +} | |
| 59 | + | |
| 60 | +.x-tree-noicon .x-tree-node-icon{ | |
| 61 | + width:0; height:0; | |
| 62 | +} | |
| 63 | +/* loading icon */ | |
| 64 | +.x-tree-node-loading .x-tree-node-icon{ | |
| 65 | + background-image:url(../images/default/tree/loading.gif) !important; | |
| 66 | +} | |
| 67 | +.x-tree-node-loading a span{ | |
| 68 | + font-style: italic; | |
| 69 | + color:#444444; | |
| 70 | +} | |
| 71 | +.ext-ie .x-tree-node-el input { | |
| 72 | + width:15px; | |
| 73 | + height:15px; | |
| 74 | +} | |
| 75 | +/* Line styles */ | |
| 76 | +.x-tree-lines .x-tree-elbow{ | |
| 77 | + background-image:url(../images/default/tree/elbow.gif); | |
| 78 | +} | |
| 79 | +.x-tree-lines .x-tree-elbow-plus{ | |
| 80 | + background-image:url(../images/default/tree/elbow-plus.gif); | |
| 81 | +} | |
| 82 | +.x-tree-lines .x-tree-elbow-minus{ | |
| 83 | + background-image:url(../images/default/tree/elbow-minus.gif); | |
| 84 | +} | |
| 85 | +.x-tree-lines .x-tree-elbow-end{ | |
| 86 | + background-image:url(../images/default/tree/elbow-end.gif); | |
| 87 | +} | |
| 88 | +.x-tree-lines .x-tree-elbow-end-plus{ | |
| 89 | + background-image:url(../images/default/tree/elbow-end-plus.gif); | |
| 90 | +} | |
| 91 | +.x-tree-lines .x-tree-elbow-end-minus{ | |
| 92 | + background-image:url(../images/default/tree/elbow-end-minus.gif); | |
| 93 | +} | |
| 94 | +.x-tree-lines .x-tree-elbow-line{ | |
| 95 | + background-image:url(../images/default/tree/elbow-line.gif); | |
| 96 | +} | |
| 97 | + | |
| 98 | +/* No line styles */ | |
| 99 | +.x-tree-no-lines .x-tree-elbow{ | |
| 100 | + background:transparent; | |
| 101 | +} | |
| 102 | +.x-tree-no-lines .x-tree-elbow-plus{ | |
| 103 | + background-image:url(../images/default/tree/elbow-plus-nl.gif); | |
| 104 | +} | |
| 105 | +.x-tree-no-lines .x-tree-elbow-minus{ | |
| 106 | + background-image:url(../images/default/tree/elbow-minus-nl.gif); | |
| 107 | +} | |
| 108 | +.x-tree-no-lines .x-tree-elbow-end{ | |
| 109 | + background:transparent; | |
| 110 | +} | |
| 111 | +.x-tree-no-lines .x-tree-elbow-end-plus{ | |
| 112 | + background-image:url(../images/default/tree/elbow-end-plus-nl.gif); | |
| 113 | +} | |
| 114 | +.x-tree-no-lines .x-tree-elbow-end-minus{ | |
| 115 | + background-image:url(../images/default/tree/elbow-end-minus-nl.gif); | |
| 116 | +} | |
| 117 | +.x-tree-no-lines .x-tree-elbow-line{ | |
| 118 | + background:transparent; | |
| 119 | +} | |
| 120 | + | |
| 121 | + | |
| 122 | +/* Arrows */ | |
| 123 | +.x-tree-arrows .x-tree-elbow{ | |
| 124 | + background:transparent; | |
| 125 | +} | |
| 126 | +.x-tree-arrows .x-tree-elbow-plus{ | |
| 127 | + background:transparent url(../images/default/tree/arrows.gif) no-repeat 0 0; | |
| 128 | +} | |
| 129 | +.x-tree-arrows .x-tree-elbow-minus{ | |
| 130 | + background:transparent url(../images/default/tree/arrows.gif) no-repeat -16px 0; | |
| 131 | +} | |
| 132 | +.x-tree-arrows .x-tree-elbow-end{ | |
| 133 | + background:transparent; | |
| 134 | +} | |
| 135 | +.x-tree-arrows .x-tree-elbow-end-plus{ | |
| 136 | + background:transparent url(../images/default/tree/arrows.gif) no-repeat 0 0; | |
| 137 | +} | |
| 138 | +.x-tree-arrows .x-tree-elbow-end-minus{ | |
| 139 | + background:transparent url(../images/default/tree/arrows.gif) no-repeat -16px 0; | |
| 140 | +} | |
| 141 | +.x-tree-arrows .x-tree-elbow-line{ | |
| 142 | + background:transparent; | |
| 143 | +} | |
| 144 | + | |
| 145 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus{ | |
| 146 | + background-position:-32px 0; | |
| 147 | +} | |
| 148 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-minus{ | |
| 149 | + background-position:-48px 0; | |
| 150 | +} | |
| 151 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-plus{ | |
| 152 | + background-position:-32px 0; | |
| 153 | +} | |
| 154 | +.x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-minus{ | |
| 155 | + background-position:-48px 0; | |
| 156 | +} | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | +.x-tree-elbow-plus, .x-tree-elbow-minus, .x-tree-elbow-end-plus, .x-tree-elbow-end-minus{ | |
| 161 | + cursor:pointer; | |
| 162 | +} | |
| 163 | +.ext-ie ul.x-tree-node-ct{ | |
| 164 | + font-size:0; | |
| 165 | + line-height:0; | |
| 166 | + zoom:1; | |
| 167 | +} | |
| 168 | +.x-tree-node{ | |
| 169 | + color: black; | |
| 170 | + font: normal 11px arial, tahoma, helvetica, sans-serif; | |
| 171 | + white-space: nowrap; | |
| 172 | +} | |
| 173 | + | |
| 174 | +.x-tree-node-el { | |
| 175 | + line-height:18px; | |
| 176 | + cursor:pointer; | |
| 177 | +} | |
| 178 | + | |
| 179 | +.x-tree-node a, .x-dd-drag-ghost a{ | |
| 180 | + text-decoration:none; | |
| 181 | + color:black; | |
| 182 | + -khtml-user-select:none; | |
| 183 | + -moz-user-select:none; | |
| 184 | + -kthml-user-focus:normal; | |
| 185 | + -moz-user-focus:normal; | |
| 186 | + -moz-outline: 0 none; | |
| 187 | + outline:0 none; | |
| 188 | +} | |
| 189 | +.x-tree-node a span, .x-dd-drag-ghost a span{ | |
| 190 | + text-decoration:none; | |
| 191 | + color:black; | |
| 192 | + padding:1px 3px 1px 2px; | |
| 193 | +} | |
| 194 | +.x-tree-node .x-tree-node-disabled a span{ | |
| 195 | + color:gray !important; | |
| 196 | +} | |
| 197 | +.x-tree-node .x-tree-node-disabled .x-tree-node-icon{ | |
| 198 | + -moz-opacity: 0.5; | |
| 199 | + opacity:.5; | |
| 200 | + filter: alpha(opacity=50); | |
| 201 | +} | |
| 202 | +.x-tree-node .x-tree-node-inline-icon{ | |
| 203 | + background:transparent; | |
| 204 | +} | |
| 205 | +.x-tree-node a:hover, .x-dd-drag-ghost a:hover{ | |
| 206 | + text-decoration:none; | |
| 207 | +} | |
| 208 | +.x-tree-node div.x-tree-drag-insert-below{ | |
| 209 | + border-bottom:1px dotted #3366cc; | |
| 210 | +} | |
| 211 | +.x-tree-node div.x-tree-drag-insert-above{ | |
| 212 | + border-top:1px dotted #3366cc; | |
| 213 | +} | |
| 214 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below{ | |
| 215 | + border-bottom:0 none; | |
| 216 | +} | |
| 217 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above{ | |
| 218 | + border-top:0 none; | |
| 219 | +} | |
| 220 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{ | |
| 221 | + border-bottom:2px solid #3366cc; | |
| 222 | +} | |
| 223 | +.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{ | |
| 224 | + border-top:2px solid #3366cc; | |
| 225 | +} | |
| 226 | +.x-tree-node .x-tree-drag-append a span{ | |
| 227 | + background:#dddddd; | |
| 228 | + border:1px dotted gray; | |
| 229 | +} | |
| 230 | +.x-tree-node .x-tree-node-over { | |
| 231 | + background-color: #eee; | |
| 232 | +} | |
| 233 | +.x-tree-node .x-tree-selected { | |
| 234 | + background-color: #d9e8fb; | |
| 235 | +} | |
| 236 | +.x-dd-drag-ghost .x-tree-node-indent, .x-dd-drag-ghost .x-tree-ec-icon{ | |
| 237 | + display:none !important; | |
| 238 | +} | |
| 239 | +.x-tree-drop-ok-append .x-dd-drop-icon{ | |
| 240 | + background-image: url(../images/default/tree/drop-add.gif); | |
| 241 | +} | |
| 242 | +.x-tree-drop-ok-above .x-dd-drop-icon{ | |
| 243 | + background-image: url(../images/default/tree/drop-over.gif); | |
| 244 | +} | |
| 245 | +.x-tree-drop-ok-below .x-dd-drop-icon{ | |
| 246 | + background-image: url(../images/default/tree/drop-under.gif); | |
| 247 | +} | |
| 248 | +.x-tree-drop-ok-between .x-dd-drop-icon{ | |
| 249 | + background-image: url(../images/default/tree/drop-between.gif); | |
| 250 | +} | |
| 251 | +/* Fix for ie rootVisible:false issue */ | |
| 252 | +.x-tree-root-ct { | |
| 253 | + zoom:1; | |
| 254 | +} | ... | ... |
thirdpartyjs/extjs/resources/css/window.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-window { | |
| 10 | + zoom:1; | |
| 11 | +} | |
| 12 | +.x-window .x-resizable-handle { | |
| 13 | + opacity:0; | |
| 14 | + -moz-opacity:0; | |
| 15 | + filter:alpha(opacity=0); | |
| 16 | +} | |
| 17 | + | |
| 18 | +.x-window-proxy { | |
| 19 | + background:#C7DFFC; | |
| 20 | + border:1px solid #99bbe8; | |
| 21 | + z-index:12000; | |
| 22 | + overflow:hidden; | |
| 23 | + position:absolute; | |
| 24 | + left:0;top:0; | |
| 25 | + display:none; | |
| 26 | + opacity:.5; | |
| 27 | + -moz-opacity:.5; | |
| 28 | + filter:alpha(opacity=50); | |
| 29 | +} | |
| 30 | + | |
| 31 | +.x-window-header { | |
| 32 | + overflow:hidden; | |
| 33 | + zoom:1; | |
| 34 | +} | |
| 35 | +.x-window-bwrap { | |
| 36 | + z-index:1; | |
| 37 | + position:relative; | |
| 38 | + zoom:1; | |
| 39 | + left:0;top:0; | |
| 40 | +} | |
| 41 | +.x-window-tl .x-window-header { | |
| 42 | + color:#15428b; | |
| 43 | + font:bold 11px tahoma,arial,verdana,sans-serif; | |
| 44 | + padding:5px 0 4px 0; | |
| 45 | +} | |
| 46 | +.x-window-header-text { | |
| 47 | + cursor:pointer; | |
| 48 | +} | |
| 49 | +.x-window-tc { | |
| 50 | + background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0; | |
| 51 | + overflow:hidden; | |
| 52 | + zoom:1; | |
| 53 | +} | |
| 54 | +.x-window-tl { | |
| 55 | + background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0; | |
| 56 | + padding-left:6px; | |
| 57 | + zoom:1; | |
| 58 | + z-index:1; | |
| 59 | + position:relative; | |
| 60 | +} | |
| 61 | +.x-window-tr { | |
| 62 | + background: transparent url(../images/default/window/right-corners.png) no-repeat right 0; | |
| 63 | + padding-right:6px; | |
| 64 | +} | |
| 65 | +.x-window-bc { | |
| 66 | + background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom; | |
| 67 | + zoom:1; | |
| 68 | +} | |
| 69 | +.x-window-bc .x-window-footer { | |
| 70 | + padding-bottom:6px; | |
| 71 | + zoom:1; | |
| 72 | + font-size:0; | |
| 73 | + line-height:0; | |
| 74 | +} | |
| 75 | +.x-window-bl { | |
| 76 | + background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom; | |
| 77 | + padding-left:6px; | |
| 78 | + zoom:1; | |
| 79 | +} | |
| 80 | +.x-window-br { | |
| 81 | + background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom; | |
| 82 | + padding-right:6px; | |
| 83 | + zoom:1; | |
| 84 | +} | |
| 85 | +.x-window-mc { | |
| 86 | + border:1px solid #99bbe8; | |
| 87 | + padding:0; | |
| 88 | + margin:0; | |
| 89 | + font: normal 11px tahoma,arial,helvetica,sans-serif; | |
| 90 | + background:#dfe8f6; | |
| 91 | +} | |
| 92 | + | |
| 93 | + | |
| 94 | +.x-window-ml { | |
| 95 | + background: transparent url(../images/default/window/left-right.png) repeat-y 0 0; | |
| 96 | + padding-left:6px; | |
| 97 | + zoom:1; | |
| 98 | +} | |
| 99 | +.x-window-mr { | |
| 100 | + background: transparent url(../images/default/window/left-right.png) repeat-y right 0; | |
| 101 | + padding-right:6px; | |
| 102 | + zoom:1; | |
| 103 | +} | |
| 104 | +.x-window-body { | |
| 105 | + overflow:hidden; | |
| 106 | +} | |
| 107 | +.x-window-bwrap { | |
| 108 | + overflow:hidden; | |
| 109 | +} | |
| 110 | +.x-window-maximized .x-window-bl, .x-window-maximized .x-window-br, | |
| 111 | + .x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr, | |
| 112 | + .x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr { | |
| 113 | + padding:0; | |
| 114 | +} | |
| 115 | +.x-window-maximized .x-window-footer { | |
| 116 | + padding-bottom:0; | |
| 117 | +} | |
| 118 | +.x-window-maximized .x-window-tc { | |
| 119 | + padding-left:3px; | |
| 120 | + padding-right:3px; | |
| 121 | + background-color:white; | |
| 122 | +} | |
| 123 | +.x-window-maximized .x-window-mc { | |
| 124 | + border-left:0 none; | |
| 125 | + border-right:0 none; | |
| 126 | +} | |
| 127 | +.x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar { | |
| 128 | + border-left:0 none; | |
| 129 | + border-right: 0 none; | |
| 130 | +} | |
| 131 | +.x-window-bbar .x-toolbar { | |
| 132 | + border-top:1px solid #99bbe8; | |
| 133 | + border-bottom:0 none; | |
| 134 | +} | |
| 135 | +.x-window-draggable, .x-window-draggable .x-window-header-text { | |
| 136 | + cursor:move; | |
| 137 | +} | |
| 138 | +.x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text { | |
| 139 | + cursor:default; | |
| 140 | +} | |
| 141 | +.x-window-body { | |
| 142 | + background:transparent; | |
| 143 | +} | |
| 144 | +.x-panel-ghost .x-window-tl { | |
| 145 | + border-bottom:1px solid #99bbe8; | |
| 146 | +} | |
| 147 | +.x-panel-collapsed .x-window-tl { | |
| 148 | + border-bottom:1px solid #84a0c4; | |
| 149 | +} | |
| 150 | +.x-window-maximized-ct { | |
| 151 | + overflow:hidden; | |
| 152 | +} | |
| 153 | +.x-window-maximized .x-resizable-handle { | |
| 154 | + display:none; | |
| 155 | +} | |
| 156 | +.x-window-sizing-ghost ul { | |
| 157 | + border:0 none !important; | |
| 158 | +} | |
| 159 | + | |
| 160 | + | |
| 161 | +.x-dlg-focus{ | |
| 162 | + -moz-outline:0 none; | |
| 163 | + outline:0 none; | |
| 164 | + width:0; | |
| 165 | + height:0; | |
| 166 | + overflow:hidden; | |
| 167 | + position:absolute; | |
| 168 | + top:0; | |
| 169 | + left:0; | |
| 170 | +} | |
| 171 | +.x-dlg-mask{ | |
| 172 | + z-index:10000; | |
| 173 | + display:none; | |
| 174 | + position:absolute; | |
| 175 | + top:0; | |
| 176 | + left:0; | |
| 177 | + -moz-opacity: 0.5; | |
| 178 | + opacity:.50; | |
| 179 | + filter: alpha(opacity=50); | |
| 180 | + background-color:#CCC; | |
| 181 | +} | |
| 182 | + | |
| 183 | +body.ext-ie6.x-body-masked select { | |
| 184 | + visibility:hidden; | |
| 185 | +} | |
| 186 | +body.ext-ie6.x-body-masked .x-window select { | |
| 187 | + visibility:visible; | |
| 188 | +} | |
| 189 | + | |
| 190 | +.x-window-plain .x-window-mc { | |
| 191 | + background: #CAD9EC; | |
| 192 | + border-right:1px solid #DFE8F6; | |
| 193 | + border-bottom:1px solid #DFE8F6; | |
| 194 | + border-top:1px solid #a3bae9; | |
| 195 | + border-left:1px solid #a3bae9; | |
| 196 | +} | |
| 197 | + | |
| 198 | +.x-window-plain .x-window-body { | |
| 199 | + border-left:1px solid #DFE8F6; | |
| 200 | + border-top:1px solid #DFE8F6; | |
| 201 | + border-bottom:1px solid #a3bae9; | |
| 202 | + border-right:1px solid #a3bae9; | |
| 203 | + background:transparent !important; | |
| 204 | +} | |
| 205 | + | |
| 206 | +body.x-body-masked .x-window-plain .x-window-mc { | |
| 207 | + background: #C7D6E9; | |
| 208 | +} | |
| 0 | 209 | \ No newline at end of file | ... | ... |
thirdpartyjs/extjs/resources/css/xtheme-gray.css
0 โ 100644
| 1 | +/* | |
| 2 | + * Ext JS Library 2.2 | |
| 3 | + * Copyright(c) 2006-2008, Ext JS, LLC. | |
| 4 | + * licensing@extjs.com | |
| 5 | + * | |
| 6 | + * http://extjs.com/license | |
| 7 | + */ | |
| 8 | + | |
| 9 | +.x-panel { | |
| 10 | + border-style: solid; | |
| 11 | + border-color: #d0d0d0; | |
| 12 | +} | |
| 13 | +.x-panel-header { | |
| 14 | + color:#333; | |
| 15 | + border:1px solid #d0d0d0; | |
| 16 | + background-image:url(../images/gray/panel/white-top-bottom.gif); | |
| 17 | +} | |
| 18 | + | |
| 19 | +.x-panel-body { | |
| 20 | + border-color:#d0d0d0; | |
| 21 | +} | |
| 22 | + | |
| 23 | +.x-panel-bbar .x-toolbar { | |
| 24 | + border-color:#d0d0d0; | |
| 25 | +} | |
| 26 | + | |
| 27 | +.x-panel-tbar .x-toolbar { | |
| 28 | + border-color:#d0d0d0; | |
| 29 | +} | |
| 30 | + | |
| 31 | +.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar { | |
| 32 | + border-color:#d0d0d0; | |
| 33 | +} | |
| 34 | +.x-panel-body-noheader, .x-panel-mc .x-panel-body { | |
| 35 | + border-color:#d0d0d0; | |
| 36 | +} | |
| 37 | +.x-panel-tl .x-panel-header { | |
| 38 | + color:#333; | |
| 39 | +} | |
| 40 | +.x-panel-tc { | |
| 41 | + background-image:url(../images/gray/panel/top-bottom.gif); | |
| 42 | +} | |
| 43 | +.x-panel-tl { | |
| 44 | + background-image:url(../images/gray/panel/corners-sprite.gif); | |
| 45 | + border-color:#d0d0d0; | |
| 46 | +} | |
| 47 | +.x-panel-tr { | |
| 48 | + background-image:url(../images/gray/panel/corners-sprite.gif); | |
| 49 | +} | |
| 50 | +.x-panel-bc { | |
| 51 | + background-image:url(../images/gray/panel/top-bottom.gif); | |
| 52 | +} | |
| 53 | +.x-panel-bl { | |
| 54 | + background-image:url(../images/gray/panel/corners-sprite.gif); | |
| 55 | +} | |
| 56 | +.x-panel-br { | |
| 57 | + background-image:url(../images/gray/panel/corners-sprite.gif); | |
| 58 | +} | |
| 59 | +.x-panel-mc { | |
| 60 | + background:#f1f1f1; | |
| 61 | +} | |
| 62 | +.x-panel-mc .x-panel-body { | |
| 63 | + background:transparent; | |
| 64 | + border: 0 none; | |
| 65 | +} | |
| 66 | +.x-panel-ml { | |
| 67 | + background-image:url(../images/gray/panel/left-right.gif); | |
| 68 | +} | |
| 69 | +.x-panel-mr { | |
| 70 | + background-image:url(../images/gray/panel/left-right.gif); | |
| 71 | +} | |
| 72 | + | |
| 73 | +/* Tools */ | |
| 74 | +.x-tool { | |
| 75 | + background-image:url(../images/gray/panel/tool-sprites.gif); | |
| 76 | +} | |
| 77 | + | |
| 78 | +/* Ghosting */ | |
| 79 | +.x-panel-ghost { | |
| 80 | + background:#e0e0e0; | |
| 81 | +} | |
| 82 | + | |
| 83 | +.x-panel-ghost ul { | |
| 84 | + border-color:#b0b0b0; | |
| 85 | +} | |
| 86 | + | |
| 87 | +.x-grid-panel .x-panel-mc .x-panel-body { | |
| 88 | + border:1px solid #d0d0d0; | |
| 89 | +} | |
| 90 | + | |
| 91 | +/* Buttons */ | |
| 92 | + | |
| 93 | +.x-btn-left{ | |
| 94 | + background-image:url(../images/gray/button/btn-sprite.gif); | |
| 95 | +} | |
| 96 | +.x-btn-right{ | |
| 97 | + background-image:url(../images/gray/button/btn-sprite.gif); | |
| 98 | +} | |
| 99 | +.x-btn-center{ | |
| 100 | + background-image:url(../images/gray/button/btn-sprite.gif); | |
| 101 | +} | |
| 102 | + | |
| 103 | +/* Layout classes */ | |
| 104 | + | |
| 105 | +.x-border-layout-ct { | |
| 106 | + background:#f0f0f0; | |
| 107 | +} | |
| 108 | + | |
| 109 | +.x-accordion-hd { | |
| 110 | + background-image:url(../images/gray/panel/light-hd.gif); | |
| 111 | +} | |
| 112 | + | |
| 113 | +.x-layout-collapsed{ | |
| 114 | + background-color:#eee; | |
| 115 | + border-color:#e0e0e0; | |
| 116 | +} | |
| 117 | +.x-layout-collapsed-over{ | |
| 118 | + background-color:#fbfbfb; | |
| 119 | +} | |
| 120 | + | |
| 121 | + | |
| 122 | +/* qtips */ | |
| 123 | +.x-tip .x-tip-top { | |
| 124 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 125 | +} | |
| 126 | +.x-tip .x-tip-top-left { | |
| 127 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 128 | +} | |
| 129 | +.x-tip .x-tip-top-right { | |
| 130 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 131 | +} | |
| 132 | +.x-tip .x-tip-ft { | |
| 133 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 134 | +} | |
| 135 | +.x-tip .x-tip-ft-left { | |
| 136 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 137 | +} | |
| 138 | +.x-tip .x-tip-ft-right { | |
| 139 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 140 | +} | |
| 141 | +.x-tip .x-tip-bd-left { | |
| 142 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 143 | +} | |
| 144 | +.x-tip .x-tip-bd-right { | |
| 145 | + background-image:url(../images/gray/qtip/tip-sprite.gif); | |
| 146 | +} | |
| 147 | + | |
| 148 | +/* Toolbars */ | |
| 149 | + | |
| 150 | +.x-toolbar{ | |
| 151 | + border-color:#d0d0d0; | |
| 152 | + background:#f0f4f5 url(../images/gray/toolbar/bg.gif) repeat-x top left; | |
| 153 | +} | |
| 154 | +.x-toolbar button { | |
| 155 | + color:#444; | |
| 156 | +} | |
| 157 | +.x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button { | |
| 158 | + background-image:url(../images/gray/toolbar/btn-arrow.gif); | |
| 159 | +} | |
| 160 | +.x-toolbar .x-btn-text-icon .x-btn-menu-arrow-wrap .x-btn-center button { | |
| 161 | + background-image:url(../images/gray/toolbar/btn-arrow.gif); | |
| 162 | +} | |
| 163 | +.x-toolbar .x-btn-over .x-btn-left{ | |
| 164 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 165 | +} | |
| 166 | +.x-toolbar .x-btn-over .x-btn-right{ | |
| 167 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 168 | +} | |
| 169 | +.x-toolbar .x-btn-over .x-btn-center{ | |
| 170 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 171 | +} | |
| 172 | +.x-toolbar .x-btn-over button { | |
| 173 | + color:#111; | |
| 174 | +} | |
| 175 | +.x-toolbar .x-btn-click .x-btn-left, .x-toolbar .x-btn-pressed .x-btn-left, .x-toolbar .x-btn-menu-active .x-btn-left{ | |
| 176 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 177 | +} | |
| 178 | +.x-toolbar .x-btn-click .x-btn-right, .x-toolbar .x-btn-pressed .x-btn-right, .x-toolbar .x-btn-menu-active .x-btn-right{ | |
| 179 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 180 | +} | |
| 181 | + | |
| 182 | +.x-toolbar .x-btn-click .x-btn-center, .x-toolbar .x-btn-pressed .x-btn-center, .x-toolbar .x-btn-menu-active .x-btn-center{ | |
| 183 | + background-image:url(../images/gray/toolbar/tb-btn-sprite.gif); | |
| 184 | +} | |
| 185 | +.x-toolbar .ytb-sep { | |
| 186 | + background-image: url(../images/default/grid/grid-split.gif); | |
| 187 | +} | |
| 188 | + | |
| 189 | +/* Tabs */ | |
| 190 | + | |
| 191 | +.x-tab-panel-header, .x-tab-panel-footer { | |
| 192 | + background: #EAEAEA; | |
| 193 | + border-color:#d0d0d0; | |
| 194 | +} | |
| 195 | + | |
| 196 | + | |
| 197 | +.x-tab-panel-header { | |
| 198 | + border-color:#d0d0d0; | |
| 199 | +} | |
| 200 | + | |
| 201 | +.x-tab-panel-footer { | |
| 202 | + border-color:#d0d0d0; | |
| 203 | +} | |
| 204 | + | |
| 205 | +ul.x-tab-strip-top{ | |
| 206 | + background:#dbdbdb url(../images/gray/tabs/tab-strip-bg.gif) repeat-x left top; | |
| 207 | + border-color:#d0d0d0; | |
| 208 | + padding-top: 2px; | |
| 209 | +} | |
| 210 | + | |
| 211 | +ul.x-tab-strip-bottom{ | |
| 212 | + background-image:url(../images/gray/tabs/tab-strip-btm-bg.gif); | |
| 213 | + border-color:#d0d0d0; | |
| 214 | +} | |
| 215 | + | |
| 216 | +.x-tab-strip span.x-tab-strip-text { | |
| 217 | + color:#333; | |
| 218 | +} | |
| 219 | +.x-tab-strip-over span.x-tab-strip-text { | |
| 220 | + color:#111; | |
| 221 | +} | |
| 222 | + | |
| 223 | +.x-tab-strip-active span.x-tab-strip-text { | |
| 224 | + color:#333; | |
| 225 | +} | |
| 226 | + | |
| 227 | +.x-tab-strip-disabled .x-tabs-text { | |
| 228 | + color:#aaaaaa; | |
| 229 | +} | |
| 230 | + | |
| 231 | +.x-tab-strip-top .x-tab-right { | |
| 232 | + background-image:url(../images/gray/tabs/tabs-sprite.gif); | |
| 233 | +} | |
| 234 | + | |
| 235 | +.x-tab-strip-top .x-tab-left { | |
| 236 | + background-image:url(../images/gray/tabs/tabs-sprite.gif); | |
| 237 | +} | |
| 238 | +.x-tab-strip-top .x-tab-strip-inner { | |
| 239 | + background-image:url(../images/gray/tabs/tabs-sprite.gif); | |
| 240 | +} | |
| 241 | + | |
| 242 | +.x-tab-strip-bottom .x-tab-right { | |
| 243 | + background-image:url(../images/gray/tabs/tab-btm-inactive-right-bg.gif); | |
| 244 | +} | |
| 245 | + | |
| 246 | +.x-tab-strip-bottom .x-tab-left { | |
| 247 | + background-image:url(../images/gray/tabs/tab-btm-inactive-left-bg.gif); | |
| 248 | +} | |
| 249 | + | |
| 250 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-right { | |
| 251 | + background-image:url(../images/gray/tabs/tab-btm-right-bg.gif); | |
| 252 | +} | |
| 253 | + | |
| 254 | +.x-tab-strip-bottom .x-tab-strip-active .x-tab-left { | |
| 255 | + background-image:url(../images/gray/tabs/tab-btm-left-bg.gif); | |
| 256 | +} | |
| 257 | + | |
| 258 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close { | |
| 259 | + background-image:url(../images/gray/tabs/tab-close.gif); | |
| 260 | +} | |
| 261 | +.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{ | |
| 262 | + background-image:url(../images/gray/tabs/tab-close.gif); | |
| 263 | +} | |
| 264 | + | |
| 265 | +.x-tab-panel-body { | |
| 266 | + border-color:#d0d0d0; | |
| 267 | + background:#fff; | |
| 268 | +} | |
| 269 | +.x-tab-panel-bbar .x-toolbar { | |
| 270 | + border-color: #d0d0d0; | |
| 271 | +} | |
| 272 | + | |
| 273 | +.x-tab-panel-tbar .x-toolbar { | |
| 274 | + border-color: #d0d0d0; | |
| 275 | +} | |
| 276 | + | |
| 277 | +.x-tab-panel-header-plain .x-tab-strip-spacer { | |
| 278 | + border-color:#d0d0d0; | |
| 279 | + background: #eaeaea; | |
| 280 | +} | |
| 281 | + | |
| 282 | +.x-tab-scroller-left { | |
| 283 | + background-image: url(../images/gray/tabs/scroll-left.gif); | |
| 284 | + border-color:#aeaeae; | |
| 285 | +} | |
| 286 | +.x-tab-scroller-right { | |
| 287 | + background-image: url(../images/gray/tabs/scroll-right.gif); | |
| 288 | + border-color:#aeaeae; | |
| 289 | +} | |
| 290 | + | |
| 291 | +/* Window */ | |
| 292 | + | |
| 293 | +.x-window-proxy { | |
| 294 | + background:#e0e0e0; | |
| 295 | + border-color:#b0b0b0; | |
| 296 | +} | |
| 297 | + | |
| 298 | +.x-window-tl .x-window-header { | |
| 299 | + color:#555; | |
| 300 | +} | |
| 301 | +.x-window-tc { | |
| 302 | + background-image:url(../images/gray/window/top-bottom.png); | |
| 303 | +} | |
| 304 | +.x-window-tl { | |
| 305 | + background-image:url(../images/gray/window/left-corners.png); | |
| 306 | +} | |
| 307 | +.x-window-tr { | |
| 308 | + background-image:url(../images/gray/window/right-corners.png); | |
| 309 | +} | |
| 310 | +.x-window-bc { | |
| 311 | + background-image:url(../images/gray/window/top-bottom.png); | |
| 312 | +} | |
| 313 | +.x-window-bl { | |
| 314 | + background-image:url(../images/gray/window/left-corners.png); | |
| 315 | +} | |
| 316 | +.x-window-br { | |
| 317 | + background-image:url(../images/gray/window/right-corners.png); | |
| 318 | +} | |
| 319 | +.x-window-mc { | |
| 320 | + border:1px solid #d0d0d0; | |
| 321 | + background:#e8e8e8; | |
| 322 | +} | |
| 323 | + | |
| 324 | +.x-window-ml { | |
| 325 | + background-image:url(../images/gray/window/left-right.png); | |
| 326 | +} | |
| 327 | +.x-window-mr { | |
| 328 | + background-image:url(../images/gray/window/left-right.png); | |
| 329 | +} | |
| 330 | +.x-panel-ghost .x-window-tl { | |
| 331 | + border-color:#d0d0d0; | |
| 332 | +} | |
| 333 | +.x-panel-collapsed .x-window-tl { | |
| 334 | + border-color:#d0d0d0; | |
| 335 | +} | |
| 336 | + | |
| 337 | +.x-window-plain .x-window-mc { | |
| 338 | + background: #e8e8e8; | |
| 339 | + border-right:1px solid #eee; | |
| 340 | + border-bottom:1px solid #eee; | |
| 341 | + border-top:1px solid #d0d0d0; | |
| 342 | + border-left:1px solid #d0d0d0; | |
| 343 | +} | |
| 344 | + | |
| 345 | +.x-window-plain .x-window-body { | |
| 346 | + border-left:1px solid #eee; | |
| 347 | + border-top:1px solid #eee; | |
| 348 | + border-bottom:1px solid #d0d0d0; | |
| 349 | + border-right:1px solid #d0d0d0; | |
| 350 | + background:transparent !important; | |
| 351 | +} | |
| 352 | + | |
| 353 | +body.x-body-masked .x-window-mc, body.x-body-masked .x-window-plain .x-window-mc { | |
| 354 | + background-color: #e4e4e4; | |
| 355 | +} | |
| 356 | + | |
| 357 | + | |
| 358 | +/* misc */ | |
| 359 | +.x-html-editor-wrap { | |
| 360 | + border-color:#d0d0d0; | |
| 361 | +} | |
| 362 | + | |
| 363 | +/* Borders go last for specificity */ | |
| 364 | +.x-panel-noborder .x-panel-body-noborder { | |
| 365 | + border-width:0; | |
| 366 | +} | |
| 367 | + | |
| 368 | +.x-panel-noborder .x-panel-header-noborder { | |
| 369 | + border-width:0; | |
| 370 | + border-bottom:1px solid #d0d0d0; | |
| 371 | +} | |
| 372 | + | |
| 373 | +.x-panel-noborder .x-panel-tbar-noborder .x-toolbar { | |
| 374 | + border-width:0; | |
| 375 | + border-bottom:1px solid #d0d0d0; | |
| 376 | +} | |
| 377 | + | |
| 378 | +.x-panel-noborder .x-panel-bbar-noborder .x-toolbar { | |
| 379 | + border-width:0; | |
| 380 | + border-top:1px solid #d0d0d0; | |
| 381 | +} | |
| 382 | + | |
| 383 | +.x-window-noborder .x-window-mc { | |
| 384 | + border-width:0; | |
| 385 | +} | |
| 386 | +.x-window-plain .x-window-body-noborder { | |
| 387 | + border-width:0; | |
| 388 | +} | |
| 389 | + | |
| 390 | +.x-tab-panel-noborder .x-tab-panel-body-noborder { | |
| 391 | + border-width:0; | |
| 392 | +} | |
| 393 | + | |
| 394 | +.x-tab-panel-noborder .x-tab-panel-header-noborder { | |
| 395 | + border-top-width:0; | |
| 396 | + border-left-width:0; | |
| 397 | + border-right-width:0; | |
| 398 | +} | |
| 399 | + | |
| 400 | +.x-tab-panel-noborder .x-tab-panel-footer-noborder { | |
| 401 | + border-bottom-width:0; | |
| 402 | + border-left-width:0; | |
| 403 | + border-right-width:0; | |
| 404 | +} | |
| 405 | + | |
| 406 | + | |
| 407 | +.x-tab-panel-bbar-noborder .x-toolbar { | |
| 408 | + border-width:0; | |
| 409 | + border-top:1px solid #d0d0d0; | |
| 410 | +} | |
| 411 | + | |
| 412 | +.x-tab-panel-tbar-noborder .x-toolbar { | |
| 413 | + border-width:0; | |
| 414 | + border-bottom:1px solid #d0d0d0; | |
| 415 | +} | |
| 0 | 416 | \ No newline at end of file | ... | ... |