123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845 |
- /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- 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: "";
- }
- .ext-forced-border-box,
- .ext-forced-border-box * {
- -moz-box-sizing: border-box;
- -ms-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .ext-el-mask {
- z-index: 100;
- position: absolute;
- top: 0;
- left: 0;
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- width: 100%;
- height: 100%;
- zoom: 1;
- }
- .ext-el-mask-msg {
- z-index: 20001;
- position: absolute;
- top: 0;
- left: 0;
- border: 1px solid;
- background: repeat-x 0 -16px;
- padding: 2px;
- }
- .ext-el-mask-msg div {
- padding: 5px 10px 5px 10px;
- border: 1px solid;
- cursor: wait;
- }
- .ext-shim {
- position: absolute;
- visibility: hidden;
- left: 0;
- top: 0;
- overflow: hidden;
- }
- .ext-ie .ext-shim {
- filter: alpha(opacity=0);
- }
- .ext-ie6 .ext-shim {
- margin-left: 5px;
- margin-top: 3px;
- }
- .x-mask-loading div {
- padding: 5px 10px 5px 25px;
- background: no-repeat 5px 5px;
- line-height: 16px;
- }
- .x-hidden,
- .x-hide-offsets {
- position: absolute !important;
- left: -10000px;
- top: -10000px;
- visibility: hidden;
- }
- .x-hide-display {
- display: none !important;
- }
- .x-hide-nosize,
- .x-hide-nosize * {
- height: 0px !important;
- width: 0px !important;
- visibility: hidden !important;
- border: none !important;
- zoom: 1;
- }
- .x-hide-visibility {
- visibility: hidden !important;
- }
- .x-masked {
- overflow: hidden !important;
- }
- .x-masked-relative {
- position: relative !important;
- }
- .x-masked select,
- .x-masked object,
- .x-masked embed {
- visibility: hidden;
- }
- .x-layer {
- visibility: hidden;
- }
- .x-unselectable,
- .x-unselectable * {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-repaint {
- zoom: 1;
- background-color: transparent;
- -moz-outline: none;
- outline: none;
- }
- .x-item-disabled {
- cursor: default;
- opacity: 0.6;
- -moz-opacity: 0.6;
- filter: alpha(opacity=60);
- }
- .x-item-disabled * {
- cursor: default !important;
- }
- .x-form-radio-group .x-item-disabled {
- filter: none;
- }
- .x-splitbar-proxy {
- position: absolute;
- visibility: hidden;
- z-index: 20001;
- zoom: 1;
- line-height: 1px;
- font-size: 1px;
- overflow: hidden;
- }
- .x-splitbar-h,
- .x-splitbar-proxy-h {
- cursor: e-resize;
- cursor: col-resize;
- }
- .x-splitbar-v,
- .x-splitbar-proxy-v {
- cursor: s-resize;
- cursor: row-resize;
- }
- .x-color-palette {
- width: 150px;
- height: 92px;
- cursor: pointer;
- }
- .x-color-palette a {
- border: 1px solid;
- float: left;
- padding: 2px;
- text-decoration: none;
- -moz-outline: 0 none;
- outline: 0 none;
- cursor: pointer;
- }
- .x-color-palette a:hover,
- .x-color-palette a.x-color-palette-sel {
- border: 1px solid;
- }
- .x-color-palette em {
- display: block;
- border: 1px solid;
- }
- .x-color-palette em span {
- cursor: pointer;
- display: block;
- height: 10px;
- line-height: 10px;
- width: 10px;
- }
- .x-ie-shadow {
- display: none;
- position: absolute;
- overflow: hidden;
- left: 0;
- top: 0;
- zoom: 1;
- }
- .x-shadow {
- display: none;
- position: absolute;
- overflow: hidden;
- left: 0;
- top: 0;
- }
- .x-shadow * {
- overflow: hidden;
- }
- .x-shadow * {
- padding: 0;
- border: 0;
- margin: 0;
- clear: none;
- zoom: 1;
- }
- .x-shadow .xstc,
- .x-shadow .xsbc {
- height: 6px;
- float: left;
- }
- .x-shadow .xstl,
- .x-shadow .xstr,
- .x-shadow .xsbl,
- .x-shadow .xsbr {
- width: 6px;
- height: 6px;
- float: left;
- }
- .x-shadow .xsc {
- width: 100%;
- }
- .x-shadow .xsml,
- .x-shadow .xsmr {
- width: 6px;
- float: left;
- height: 100%;
- }
- .x-shadow .xsmc {
- float: left;
- height: 100%;
- background-color: transparent;
- }
- .x-shadow .xst,
- .x-shadow .xsb {
- height: 6px;
- overflow: hidden;
- width: 100%;
- }
- .x-shadow .xsml {
- background: transparent repeat-y 0 0;
- }
- .x-shadow .xsmr {
- background: transparent repeat-y -6px 0;
- }
- .x-shadow .xstl {
- background: transparent no-repeat 0 0;
- }
- .x-shadow .xstc {
- background: transparent repeat-x 0 -30px;
- }
- .x-shadow .xstr {
- background: transparent repeat-x 0 -18px;
- }
- .x-shadow .xsbl {
- background: transparent no-repeat 0 -12px;
- }
- .x-shadow .xsbc {
- background: transparent repeat-x 0 -36px;
- }
- .x-shadow .xsbr {
- background: transparent repeat-x 0 -6px;
- }
- .loading-indicator {
- background: no-repeat left;
- padding-left: 20px;
- line-height: 16px;
- margin: 3px;
- }
- .x-text-resize {
- position: absolute;
- left: -1000px;
- top: -1000px;
- visibility: hidden;
- zoom: 1;
- }
- .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;
- }
- .x-clear {
- clear: both;
- height: 0;
- overflow: hidden;
- line-height: 0;
- font-size: 0;
- }
- .x-spotlight {
- z-index: 8999;
- position: absolute;
- top: 0;
- left: 0;
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- width: 0;
- height: 0;
- zoom: 1;
- }
- #x-history-frame {
- position: absolute;
- top: -1px;
- left: 0;
- width: 1px;
- height: 1px;
- visibility: hidden;
- }
- #x-history-field {
- position: absolute;
- top: 0;
- left: -1px;
- width: 1px;
- height: 1px;
- visibility: hidden;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-tab-panel {
- overflow: hidden;
- }
- .x-tab-panel-header,
- .x-tab-panel-footer {
- border: 1px solid;
- overflow: hidden;
- zoom: 1;
- }
- .x-tab-panel-header {
- border: 1px solid;
- padding-bottom: 2px;
- }
- .x-tab-panel-footer {
- border: 1px solid;
- padding-top: 2px;
- }
- .x-tab-strip-wrap {
- width: 100%;
- overflow: hidden;
- position: relative;
- zoom: 1;
- }
- ul.x-tab-strip {
- display: block;
- width: 5000px;
- zoom: 1;
- }
- ul.x-tab-strip-top {
- padding-top: 1px;
- background: repeat-x bottom;
- border-bottom: 1px solid;
- }
- ul.x-tab-strip-bottom {
- padding-bottom: 1px;
- background: repeat-x top;
- border-top: 1px solid;
- border-bottom: 0 none;
- }
- .x-tab-panel-header-plain .x-tab-strip-top {
- background: transparent !important;
- padding-top: 0 !important;
- }
- .x-tab-panel-header-plain {
- background: transparent !important;
- border-width: 0 !important;
- padding-bottom: 0 !important;
- }
- .x-tab-panel-header-plain .x-tab-strip-spacer,
- .x-tab-panel-footer-plain .x-tab-strip-spacer {
- border: 1px solid;
- height: 2px;
- font-size: 1px;
- line-height: 1px;
- }
- .x-tab-panel-header-plain .x-tab-strip-spacer {
- border-top: 0 none;
- }
- .x-tab-panel-footer-plain .x-tab-strip-spacer {
- border-bottom: 0 none;
- }
- .x-tab-panel-footer-plain .x-tab-strip-bottom {
- background: transparent !important;
- padding-bottom: 0 !important;
- }
- .x-tab-panel-footer-plain {
- background: transparent !important;
- border-width: 0 !important;
- padding-top: 0 !important;
- }
- .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;
- }
- ul.x-tab-strip li {
- float: left;
- margin-left: 2px;
- }
- 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;
- }
- .x-tab-strip a,
- .x-tab-strip span,
- .x-tab-strip em {
- display: block;
- }
- .x-tab-strip a {
- text-decoration: none !important;
- -moz-outline: none;
- outline: none;
- cursor: pointer;
- }
- .x-tab-strip-inner {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .x-tab-strip span.x-tab-strip-text {
- white-space: nowrap;
- cursor: pointer;
- padding: 4px 0;
- }
- .x-tab-strip-top .x-tab-with-icon .x-tab-right {
- padding-left: 6px;
- }
- .x-tab-strip .x-tab-with-icon span.x-tab-strip-text {
- padding-left: 20px;
- background-position: 0 3px;
- background-repeat: no-repeat;
- }
- .x-tab-strip-active,
- .x-tab-strip-active a.x-tab-right {
- cursor: default;
- }
- .x-tab-strip-active span.x-tab-strip-text {
- cursor: default;
- }
- .x-tab-strip-disabled .x-tabs-text {
- cursor: default;
- }
- .x-tab-panel-body {
- overflow: hidden;
- }
- .x-tab-panel-bwrap {
- overflow: hidden;
- }
- .ext-ie .x-tab-strip .x-tab-right {
- position: relative;
- }
- .x-tab-strip-top .x-tab-strip-active .x-tab-right {
- margin-bottom: -1px;
- }
- .ext-ie8 .x-tab-strip li {
- position: relative;
- }
- .ext-border-box .ext-ie8 .x-tab-strip-top .x-tab-right {
- top: 1px;
- }
- .ext-ie8 .x-tab-strip-top {
- padding-top: 1;
- }
- .ext-border-box .ext-ie8 .x-tab-strip-top {
- padding-top: 0;
- }
- .ext-ie8 .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
- top: 3px;
- }
- .ext-border-box
- .ext-ie8
- .x-tab-strip
- .x-tab-strip-closable
- a.x-tab-strip-close {
- top: 4px;
- }
- .ext-ie8 .x-tab-strip-bottom .x-tab-right {
- top: 0;
- }
- .x-tab-strip-top .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
- padding-bottom: 5px;
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
- margin-top: -1px;
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-right span.x-tab-strip-text {
- padding-top: 5px;
- }
- .x-tab-strip-top .x-tab-right {
- background: transparent no-repeat 0 -51px;
- padding-left: 10px;
- }
- .x-tab-strip-top .x-tab-left {
- background: transparent no-repeat right -351px;
- padding-right: 10px;
- }
- .x-tab-strip-top .x-tab-strip-inner {
- background: transparent repeat-x 0 -201px;
- }
- .x-tab-strip-top .x-tab-strip-over .x-tab-right {
- background-position: 0 -101px;
- }
- .x-tab-strip-top .x-tab-strip-over .x-tab-left {
- background-position: right -401px;
- }
- .x-tab-strip-top .x-tab-strip-over .x-tab-strip-inner {
- background-position: 0 -251px;
- }
- .x-tab-strip-top .x-tab-strip-active .x-tab-right {
- background-position: 0 0;
- }
- .x-tab-strip-top .x-tab-strip-active .x-tab-left {
- background-position: right -301px;
- }
- .x-tab-strip-top .x-tab-strip-active .x-tab-strip-inner {
- background-position: 0 -151px;
- }
- .x-tab-strip-bottom .x-tab-right {
- background: no-repeat bottom right;
- }
- .x-tab-strip-bottom .x-tab-left {
- background: no-repeat bottom left;
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
- background: no-repeat bottom right;
- }
- .x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
- background: no-repeat bottom left;
- }
- .x-tab-strip-bottom .x-tab-left {
- margin-right: 3px;
- padding: 0 10px;
- }
- .x-tab-strip-bottom .x-tab-right {
- padding: 0;
- }
- .x-tab-strip .x-tab-strip-close {
- display: none;
- }
- .x-tab-strip-closable {
- position: relative;
- }
- .x-tab-strip-closable .x-tab-left {
- padding-right: 19px;
- }
- .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
- opacity: 0.6;
- -moz-opacity: 0.6;
- background-repeat: no-repeat;
- display: block;
- width: 11px;
- height: 11px;
- position: absolute;
- top: 3px;
- right: 3px;
- cursor: pointer;
- z-index: 2;
- }
- .x-tab-strip .x-tab-strip-active a.x-tab-strip-close {
- opacity: 0.8;
- -moz-opacity: 0.8;
- }
- .x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover {
- opacity: 1;
- -moz-opacity: 1;
- }
- .x-tab-panel-body {
- border: 1px solid;
- }
- .x-tab-panel-body-top {
- border-top: 0 none;
- }
- .x-tab-panel-body-bottom {
- border-bottom: 0 none;
- }
- .x-tab-scroller-left {
- background: transparent no-repeat -18px 0;
- border-bottom: 1px solid;
- width: 18px;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 10;
- cursor: pointer;
- }
- .x-tab-scroller-left-over {
- background-position: 0 0;
- }
- .x-tab-scroller-left-disabled {
- background-position: -18px 0;
- opacity: 0.5;
- -moz-opacity: 0.5;
- filter: alpha(opacity=50);
- cursor: default;
- }
- .x-tab-scroller-right {
- background: transparent no-repeat 0 0;
- border-bottom: 1px solid;
- width: 18px;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 10;
- cursor: pointer;
- }
- .x-tab-scroller-right-over {
- background-position: -18px 0;
- }
- .x-tab-scroller-right-disabled {
- background-position: 0 0;
- opacity: 0.5;
- -moz-opacity: 0.5;
- filter: alpha(opacity=50);
- cursor: default;
- }
- .x-tab-scrolling-bottom .x-tab-scroller-left,
- .x-tab-scrolling-bottom .x-tab-scroller-right {
- margin-top: 1px;
- }
- .x-tab-scrolling .x-tab-strip-wrap {
- margin-left: 18px;
- margin-right: 18px;
- }
- .x-tab-scrolling {
- position: relative;
- }
- .x-tab-panel-bbar .x-toolbar {
- border: 1px solid;
- border-top: 0 none;
- overflow: hidden;
- padding: 2px;
- }
- .x-tab-panel-tbar .x-toolbar {
- border: 1px solid;
- border-top: 0 none;
- overflow: hidden;
- padding: 2px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-form-field {
- margin: 0 0 0 0;
- }
- .ext-webkit *:focus {
- outline: none !important;
- }
- .x-form-text,
- textarea.x-form-field {
- padding: 1px 3px;
- background: repeat-x 0 0;
- border: 1px solid;
- }
- textarea.x-form-field {
- padding: 2px 3px;
- }
- .x-form-text,
- .ext-ie .x-form-file {
- height: 22px;
- line-height: 18px;
- vertical-align: middle;
- }
- .ext-ie6 .x-form-text,
- .ext-ie7 .x-form-text {
- margin: -1px 0;
- height: 22px;
- line-height: 18px;
- }
- .x-quirks .ext-ie9 .x-form-text {
- height: 22px;
- padding-top: 3px;
- padding-bottom: 0px;
- }
- .x-quirks .ext-ie9 .x-input-wrapper .x-form-text,
- .x-quirks .ext-ie9 .x-form-field-trigger-wrap .x-form-text {
- margin-top: -1px;
- margin-bottom: -1px;
- }
- .x-quirks .ext-ie9 .x-input-wrapper .x-form-element {
- margin-bottom: -1px;
- }
- .ext-ie6 .x-form-field-wrap .x-form-file-btn,
- .ext-ie7 .x-form-field-wrap .x-form-file-btn {
- top: -1px;
- }
- .ext-ie6 textarea.x-form-field,
- .ext-ie7 textarea.x-form-field {
- margin: -1px 0;
- }
- .ext-strict .x-form-text {
- height: 18px;
- }
- .ext-safari.ext-mac textarea.x-form-field {
- margin-bottom: -2px;
- }
- .ext-ie6 .x-form-composite .x-form-text.x-box-item,
- .ext-ie7 .x-form-composite .x-form-text.x-box-item {
- margin: 0 !important;
- }
- textarea {
- resize: none;
- }
- .x-form-select-one {
- height: 20px;
- line-height: 18px;
- vertical-align: middle;
- border: 1px solid;
- }
- .x-form-check-wrap {
- line-height: 18px;
- height: auto;
- }
- .ext-ie .x-form-check-wrap input {
- width: 15px;
- height: 15px;
- }
- .x-form-check-wrap input {
- vertical-align: bottom;
- }
- .x-editor .x-form-check-wrap {
- padding: 3px;
- }
- .x-editor .x-form-checkbox {
- height: 13px;
- }
- .x-form-check-group-label {
- border-bottom: 1px solid;
- margin-bottom: 5px;
- padding-left: 3px !important;
- float: none !important;
- }
- .x-form-field-wrap .x-form-trigger {
- width: 17px;
- height: 21px;
- border: 0;
- background: transparent no-repeat 0 0;
- cursor: pointer;
- border-bottom: 1px solid;
- position: absolute;
- top: 0;
- }
- .x-form-field-wrap .x-form-date-trigger,
- .x-form-field-wrap .x-form-clear-trigger,
- .x-form-field-wrap .x-form-search-trigger {
- cursor: pointer;
- }
- .x-form-field-wrap .x-form-twin-triggers .x-form-trigger {
- position: static;
- top: auto;
- vertical-align: top;
- }
- .x-form-field-wrap {
- position: relative;
- left: 0;
- top: 0;
- text-align: left;
- zoom: 1;
- white-space: nowrap;
- }
- .ext-strict
- .ext-ie8
- .x-toolbar-cell
- .x-form-field-trigger-wrap
- .x-form-trigger {
- right: 0;
- }
- .x-form-field-wrap .x-form-trigger-over {
- background-position: -17px 0;
- }
- .x-form-field-wrap .x-form-trigger-click {
- background-position: -34px 0;
- }
- .x-trigger-wrap-focus .x-form-trigger {
- background-position: -51px 0;
- }
- .x-trigger-wrap-focus .x-form-trigger-over {
- background-position: -68px 0;
- }
- .x-trigger-wrap-focus .x-form-trigger-click {
- background-position: -85px 0;
- }
- .x-trigger-wrap-focus .x-form-trigger {
- border-bottom: 1px solid;
- }
- .x-item-disabled .x-form-trigger-over {
- background-position: 0 0 !important;
- border-bottom: 1px solid;
- }
- .x-item-disabled .x-form-trigger-click {
- background-position: 0 0 !important;
- border-bottom: 1px solid;
- }
- .x-trigger-noedit {
- cursor: pointer;
- }
- .x-form-focus,
- textarea.x-form-focus {
- border: 1px solid;
- }
- .x-form-invalid,
- textarea.x-form-invalid {
- background: repeat-x bottom;
- border: 1px solid;
- }
- .x-form-inner-invalid,
- textarea.x-form-inner-invalid {
- background: repeat-x bottom;
- }
- .x-editor {
- visibility: hidden;
- padding: 0;
- margin: 0;
- }
- .x-form-grow-sizer {
- 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;
- }
- .x-form-grow-sizer p {
- margin: 0 !important;
- border: 0 none !important;
- padding: 0 !important;
- }
- .x-form-item {
- display: block;
- margin-bottom: 6px;
- zoom: 1;
- }
- .x-form-item label.x-form-item-label {
- display: block;
- float: left;
- width: 100px;
- padding: 3px;
- padding-left: 0;
- clear: left;
- z-index: 2;
- position: relative;
- }
- .x-form-element {
- padding-left: 105px;
- position: relative;
- }
- .x-form-invalid-msg {
- padding: 2px;
- padding-left: 18px;
- background: transparent no-repeat 0 2px;
- line-height: 16px;
- width: 200px;
- }
- .x-form-label-left label.x-form-item-label {
- text-align: left;
- }
- .x-form-label-right label.x-form-item-label {
- text-align: right;
- }
- .x-form-label-top .x-form-item label.x-form-item-label {
- width: auto;
- float: none;
- clear: none;
- display: inline;
- margin-bottom: 4px;
- position: static;
- }
- .x-form-label-top .x-form-element {
- padding-left: 0;
- padding-top: 4px;
- }
- .x-form-label-top .x-form-item {
- padding-bottom: 4px;
- }
- .x-small-editor .x-form-text {
- height: 20px;
- line-height: 16px;
- vertical-align: middle;
- }
- .ext-ie6 .x-small-editor .x-form-text,
- .ext-ie7 .x-small-editor .x-form-text {
- margin-top: -1px !important;
- margin-bottom: -1px !important;
- height: 20px !important;
- line-height: 16px !important;
- }
- .ext-strict .x-small-editor .x-form-text {
- height: 20px;
- }
- .ext-ie6 .x-small-editor .x-form-text,
- .ext-ie7 .x-small-editor .x-form-text {
- height: 20px;
- line-height: 16px;
- }
- .ext-border-box .x-small-editor .x-form-text {
- height: 20px;
- }
- .x-small-editor .x-form-select-one {
- height: 20px;
- line-height: 16px;
- vertical-align: middle;
- }
- .x-small-editor .x-form-num-field {
- text-align: right;
- }
- .x-small-editor .x-form-field-wrap .x-form-trigger {
- height: 19px;
- }
- .ext-webkit .x-small-editor .x-form-text {
- padding-top: 3px;
- font-size: 100%;
- }
- .ext-strict .ext-webkit .x-small-editor .x-form-text {
- height: 20px;
- }
- .x-form-clear {
- clear: both;
- height: 0;
- overflow: hidden;
- line-height: 0;
- font-size: 0;
- }
- .x-form-clear-left {
- clear: left;
- height: 0;
- overflow: hidden;
- line-height: 0;
- font-size: 0;
- }
- .ext-ie6 .x-form-check-wrap input,
- .ext-border-box .x-form-check-wrap input {
- margin-top: 3px;
- }
- .x-form-cb-label {
- position: relative;
- margin-left: 4px;
- top: 2px;
- }
- .ext-ie .x-form-cb-label {
- top: 1px;
- }
- .ext-ie6 .x-form-cb-label,
- .ext-border-box .x-form-cb-label {
- top: 3px;
- }
- .x-form-display-field {
- padding-top: 2px;
- }
- .ext-gecko .x-form-display-field,
- .ext-strict .ext-ie7 .x-form-display-field {
- padding-top: 1px;
- }
- .ext-ie .x-form-display-field {
- padding-top: 3px;
- }
- .ext-strict .ext-ie8 .x-form-display-field {
- padding-top: 0;
- }
- .x-form-column {
- float: left;
- padding: 0;
- margin: 0;
- width: 48%;
- overflow: hidden;
- zoom: 1;
- }
- .x-form .x-form-btns-ct .x-btn {
- float: right;
- clear: none;
- }
- .x-form .x-form-btns-ct .x-form-btns td {
- border: 0;
- padding: 0;
- }
- .x-form .x-form-btns-ct .x-form-btns-right table {
- float: right;
- clear: none;
- }
- .x-form .x-form-btns-ct .x-form-btns-left table {
- float: left;
- clear: none;
- }
- .x-form .x-form-btns-ct .x-form-btns-center {
- text-align: center;
- }
- .x-form .x-form-btns-ct .x-form-btns-center table {
- margin: 0 auto;
- }
- .x-form .x-form-btns-ct table td.x-form-btn-td {
- padding: 3px;
- }
- .x-form .x-form-btns-ct .x-btn-focus .x-btn-left {
- background-position: 0 -147px;
- }
- .x-form .x-form-btns-ct .x-btn-focus .x-btn-right {
- background-position: 0 -168px;
- }
- .x-form .x-form-btns-ct .x-btn-focus .x-btn-center {
- background-position: 0 -189px;
- }
- .x-form .x-form-btns-ct .x-btn-click .x-btn-center {
- background-position: 0 -126px;
- }
- .x-form .x-form-btns-ct .x-btn-click .x-btn-right {
- background-position: 0 -84px;
- }
- .x-form .x-form-btns-ct .x-btn-click .x-btn-left {
- background-position: 0 -63px;
- }
- .x-form-invalid-icon {
- width: 16px;
- height: 18px;
- visibility: hidden;
- position: absolute;
- left: 0;
- top: 0;
- display: block;
- background: transparent no-repeat 0 2px;
- }
- .x-fieldset {
- border: 1px solid;
- padding: 10px;
- margin-bottom: 10px;
- display: block;
- }
- .ext-webkit .x-fieldset-header {
- padding-top: 1px;
- }
- .ext-ie .x-fieldset legend {
- margin-bottom: 10px;
- }
- .ext-strict .ext-ie9 .x-fieldset legend.x-fieldset-header {
- padding-top: 1px;
- }
- .ext-ie .x-fieldset {
- padding-top: 0;
- padding-bottom: 10px;
- }
- .x-fieldset legend .x-tool-toggle {
- margin-right: 3px;
- margin-left: 0;
- }
- .x-fieldset legend input {
- margin-right: 3px;
- float: left !important;
- height: 13px;
- width: 13px;
- }
- fieldset.x-panel-collapsed {
- padding-bottom: 0 !important;
- border-width: 1px 1px 0 1px !important;
- border-left-color: transparent;
- border-right-color: transparent;
- }
- .ext-ie6 fieldset.x-panel-collapsed {
- padding-bottom: 0 !important;
- border-width: 1px 0 0 0 !important;
- margin-left: 1px;
- margin-right: 1px;
- }
- fieldset.x-panel-collapsed .x-fieldset-bwrap {
- visibility: hidden;
- position: absolute;
- left: -1000px;
- top: -1000px;
- }
- .ext-ie .x-fieldset-bwrap {
- zoom: 1;
- }
- .x-fieldset-noborder {
- border: 0px none transparent;
- }
- .x-fieldset-noborder legend {
- margin-left: -3px;
- }
- .ext-ie .x-fieldset-noborder legend {
- position: relative;
- margin-bottom: 23px;
- }
- .ext-ie .x-fieldset-noborder legend span {
- position: absolute;
- left: 16px;
- }
- .ext-gecko .x-window-body .x-form-item {
- -moz-outline: none;
- outline: none;
- overflow: auto;
- }
- .ext-mac.ext-gecko .x-window-body .x-form-item {
- overflow: hidden;
- }
- .ext-gecko .x-form-item {
- -moz-outline: none;
- outline: none;
- }
- .x-hide-label label.x-form-item-label {
- display: none;
- }
- .x-hide-label .x-form-element {
- padding-left: 0 !important;
- }
- .x-form-label-top .x-hide-label label.x-form-item-label {
- display: none;
- }
- .x-fieldset {
- overflow: hidden;
- }
- .x-fieldset-bwrap {
- overflow: hidden;
- zoom: 1;
- }
- .x-fieldset-body {
- overflow: hidden;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-btn {
- cursor: pointer;
- white-space: nowrap;
- }
- .x-btn button {
- border: 0 none;
- background-color: transparent;
- padding-left: 3px;
- padding-right: 3px;
- cursor: pointer;
- margin: 0;
- overflow: visible;
- width: auto;
- -moz-outline: 0 none;
- outline: 0 none;
- }
- * html .ext-ie .x-btn button {
- width: 1px;
- }
- .ext-gecko .x-btn button,
- .ext-webkit .x-btn button {
- padding-left: 0;
- padding-right: 0;
- }
- .ext-gecko .x-btn button::-moz-focus-inner {
- padding: 0;
- }
- .ext-ie .x-btn button {
- padding-top: 2px;
- }
- .x-btn td {
- padding: 0 !important;
- }
- .x-btn-text {
- cursor: pointer;
- white-space: nowrap;
- padding: 0;
- }
- .x-btn-noicon .x-btn-small .x-btn-text {
- height: 16px;
- }
- .x-btn-noicon .x-btn-medium .x-btn-text {
- height: 24px;
- }
- .x-btn-noicon .x-btn-large .x-btn-text {
- height: 32px;
- }
- .x-btn-icon .x-btn-text {
- background-position: center;
- background-repeat: no-repeat;
- }
- .x-btn-icon .x-btn-small .x-btn-text {
- height: 16px;
- width: 16px;
- }
- .x-btn-icon .x-btn-medium .x-btn-text {
- height: 24px;
- width: 24px;
- }
- .x-btn-icon .x-btn-large .x-btn-text {
- height: 32px;
- width: 32px;
- }
- .x-btn-text-icon .x-btn-icon-small-left .x-btn-text {
- background-position: 0 center;
- background-repeat: no-repeat;
- padding-left: 18px;
- height: 16px;
- }
- .x-btn-text-icon .x-btn-icon-medium-left .x-btn-text {
- background-position: 0 center;
- background-repeat: no-repeat;
- padding-left: 26px;
- height: 24px;
- }
- .x-btn-text-icon .x-btn-icon-large-left .x-btn-text {
- background-position: 0 center;
- background-repeat: no-repeat;
- padding-left: 34px;
- height: 32px;
- }
- .x-btn-text-icon .x-btn-icon-small-top .x-btn-text {
- background-position: center 0;
- background-repeat: no-repeat;
- padding-top: 18px;
- }
- .x-btn-text-icon .x-btn-icon-medium-top .x-btn-text {
- background-position: center 0;
- background-repeat: no-repeat;
- padding-top: 26px;
- }
- .x-btn-text-icon .x-btn-icon-large-top .x-btn-text {
- background-position: center 0;
- background-repeat: no-repeat;
- padding-top: 34px;
- }
- .x-btn-text-icon .x-btn-icon-small-right .x-btn-text {
- background-position: right center;
- background-repeat: no-repeat;
- padding-right: 18px;
- height: 16px;
- }
- .x-btn-text-icon .x-btn-icon-medium-right .x-btn-text {
- background-position: right center;
- background-repeat: no-repeat;
- padding-right: 26px;
- height: 24px;
- }
- .x-btn-text-icon .x-btn-icon-large-right .x-btn-text {
- background-position: right center;
- background-repeat: no-repeat;
- padding-right: 34px;
- height: 32px;
- }
- .x-btn-text-icon .x-btn-icon-small-bottom .x-btn-text {
- background-position: center bottom;
- background-repeat: no-repeat;
- padding-bottom: 18px;
- }
- .x-btn-text-icon .x-btn-icon-medium-bottom .x-btn-text {
- background-position: center bottom;
- background-repeat: no-repeat;
- padding-bottom: 26px;
- }
- .x-btn-text-icon .x-btn-icon-large-bottom .x-btn-text {
- background-position: center bottom;
- background-repeat: no-repeat;
- padding-bottom: 34px;
- }
- .x-btn-tr i,
- .x-btn-tl i,
- .x-btn-mr i,
- .x-btn-ml i,
- .x-btn-br i,
- .x-btn-bl i {
- font-size: 1px;
- line-height: 1px;
- width: 3px;
- display: block;
- overflow: hidden;
- }
- .x-btn-tr i,
- .x-btn-tl i,
- .x-btn-br i,
- .x-btn-bl i {
- height: 3px;
- }
- .x-btn-tl {
- width: 3px;
- height: 3px;
- background: no-repeat 0 0;
- }
- .x-btn-tr {
- width: 3px;
- height: 3px;
- background: no-repeat -3px 0;
- }
- .x-btn-tc {
- height: 3px;
- background: repeat-x 0 -6px;
- }
- .x-btn-ml {
- width: 3px;
- background: no-repeat 0 -24px;
- }
- .x-btn-mr {
- width: 3px;
- background: no-repeat -3px -24px;
- }
- .x-btn-mc {
- background: repeat-x 0 -1096px;
- vertical-align: middle;
- text-align: center;
- padding: 0 5px;
- cursor: pointer;
- white-space: nowrap;
- }
- .ext-strict .ext-ie6 .x-btn-mc,
- .ext-strict .ext-ie7 .x-btn-mc {
- height: 100%;
- }
- .x-btn-bl {
- width: 3px;
- height: 3px;
- background: no-repeat 0 -3px;
- }
- .x-btn-br {
- width: 3px;
- height: 3px;
- background: no-repeat -3px -3px;
- }
- .x-btn-bc {
- height: 3px;
- background: repeat-x 0 -15px;
- }
- .x-btn-over .x-btn-tl {
- background-position: -6px 0;
- }
- .x-btn-over .x-btn-tr {
- background-position: -9px 0;
- }
- .x-btn-over .x-btn-tc {
- background-position: 0 -9px;
- }
- .x-btn-over .x-btn-ml {
- background-position: -6px -24px;
- }
- .x-btn-over .x-btn-mr {
- background-position: -9px -24px;
- }
- .x-btn-over .x-btn-mc {
- background-position: 0 -2168px;
- }
- .x-btn-over .x-btn-bl {
- background-position: -6px -3px;
- }
- .x-btn-over .x-btn-br {
- background-position: -9px -3px;
- }
- .x-btn-over .x-btn-bc {
- background-position: 0 -18px;
- }
- .x-btn-click .x-btn-tl,
- .x-btn-menu-active .x-btn-tl,
- .x-btn-pressed .x-btn-tl {
- background-position: -12px 0;
- }
- .x-btn-click .x-btn-tr,
- .x-btn-menu-active .x-btn-tr,
- .x-btn-pressed .x-btn-tr {
- background-position: -15px 0;
- }
- .x-btn-click .x-btn-tc,
- .x-btn-menu-active .x-btn-tc,
- .x-btn-pressed .x-btn-tc {
- background-position: 0 -12px;
- }
- .x-btn-click .x-btn-ml,
- .x-btn-menu-active .x-btn-ml,
- .x-btn-pressed .x-btn-ml {
- background-position: -12px -24px;
- }
- .x-btn-click .x-btn-mr,
- .x-btn-menu-active .x-btn-mr,
- .x-btn-pressed .x-btn-mr {
- background-position: -15px -24px;
- }
- .x-btn-click .x-btn-mc,
- .x-btn-menu-active .x-btn-mc,
- .x-btn-pressed .x-btn-mc {
- background-position: 0 -3240px;
- }
- .x-btn-click .x-btn-bl,
- .x-btn-menu-active .x-btn-bl,
- .x-btn-pressed .x-btn-bl {
- background-position: -12px -3px;
- }
- .x-btn-click .x-btn-br,
- .x-btn-menu-active .x-btn-br,
- .x-btn-pressed .x-btn-br {
- background-position: -15px -3px;
- }
- .x-btn-click .x-btn-bc,
- .x-btn-menu-active .x-btn-bc,
- .x-btn-pressed .x-btn-bc {
- background-position: 0 -21px;
- }
- .x-btn-disabled * {
- cursor: default !important;
- }
- .x-btn-mc em.x-btn-arrow {
- display: block;
- background: transparent no-repeat right center;
- padding-right: 10px;
- }
- .x-btn-mc em.x-btn-split {
- display: block;
- background: transparent no-repeat right center;
- padding-right: 14px;
- }
- .x-btn-mc em.x-btn-arrow-bottom {
- display: block;
- background: transparent no-repeat center bottom;
- padding-bottom: 14px;
- }
- .x-btn-mc em.x-btn-split-bottom {
- display: block;
- background: transparent no-repeat center bottom;
- padding-bottom: 14px;
- }
- .x-btn-as-arrow .x-btn-mc em {
- display: block;
- background-color: transparent;
- padding-bottom: 14px;
- }
- .x-btn-group {
- padding: 1px;
- }
- .x-btn-group-header {
- padding: 2px;
- text-align: center;
- }
- .x-btn-group-tc {
- background: transparent repeat-x 0 0;
- overflow: hidden;
- }
- .x-btn-group-tl {
- background: transparent no-repeat 0 0;
- padding-left: 3px;
- zoom: 1;
- }
- .x-btn-group-tr {
- background: transparent no-repeat right 0;
- zoom: 1;
- padding-right: 3px;
- }
- .x-btn-group-bc {
- background: transparent repeat-x 0 bottom;
- zoom: 1;
- }
- .x-btn-group-bc .x-panel-footer {
- zoom: 1;
- }
- .x-btn-group-bl {
- background: transparent no-repeat 0 bottom;
- padding-left: 3px;
- zoom: 1;
- }
- .x-btn-group-br {
- background: transparent no-repeat right bottom;
- padding-right: 3px;
- zoom: 1;
- }
- .x-btn-group-mc {
- border: 0 none;
- padding: 1px 0 0 0;
- margin: 0;
- }
- .x-btn-group-mc .x-btn-group-body {
- background-color: transparent;
- border: 0 none;
- }
- .x-btn-group-ml {
- background: transparent repeat-y 0 0;
- padding-left: 3px;
- zoom: 1;
- }
- .x-btn-group-mr {
- background: transparent repeat-y right 0;
- padding-right: 3px;
- zoom: 1;
- }
- .x-btn-group-bc .x-btn-group-footer {
- padding-bottom: 6px;
- }
- .x-panel-nofooter .x-btn-group-bc {
- height: 3px;
- font-size: 0;
- line-height: 0;
- }
- .x-btn-group-bwrap {
- overflow: hidden;
- zoom: 1;
- }
- .x-btn-group-body {
- overflow: hidden;
- zoom: 1;
- }
- .x-btn-group-notitle .x-btn-group-tc {
- background: transparent repeat-x 0 0;
- overflow: hidden;
- height: 2px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-toolbar {
- border-style: solid;
- border-width: 0 0 1px 0;
- display: block;
- padding: 2px;
- background: repeat-x top left;
- position: relative;
- left: 0;
- top: 0;
- zoom: 1;
- overflow: hidden;
- }
- .x-toolbar-left {
- width: 100%;
- }
- .x-toolbar .x-item-disabled .x-btn-icon {
- opacity: 0.35;
- -moz-opacity: 0.35;
- filter: alpha(opacity=35);
- }
- .x-toolbar td {
- vertical-align: middle;
- }
- .x-toolbar td,
- .x-toolbar span,
- .x-toolbar input,
- .x-toolbar div,
- .x-toolbar select,
- .x-toolbar label {
- white-space: nowrap;
- }
- .x-toolbar .x-item-disabled {
- cursor: default;
- opacity: 0.6;
- -moz-opacity: 0.6;
- filter: alpha(opacity=60);
- }
- .x-toolbar .x-item-disabled * {
- cursor: default;
- }
- .x-toolbar .x-toolbar-cell {
- vertical-align: middle;
- }
- .x-toolbar .x-btn-tl,
- .x-toolbar .x-btn-tr,
- .x-toolbar .x-btn-tc,
- .x-toolbar .x-btn-ml,
- .x-toolbar .x-btn-mr,
- .x-toolbar .x-btn-mc,
- .x-toolbar .x-btn-bl,
- .x-toolbar .x-btn-br,
- .x-toolbar .x-btn-bc {
- background-position: 500px 500px;
- }
- .x-toolbar .x-btn-over .x-btn-tl {
- background-position: -6px 0;
- }
- .x-toolbar .x-btn-over .x-btn-tr {
- background-position: -9px 0;
- }
- .x-toolbar .x-btn-over .x-btn-tc {
- background-position: 0 -9px;
- }
- .x-toolbar .x-btn-over .x-btn-ml {
- background-position: -6px -24px;
- }
- .x-toolbar .x-btn-over .x-btn-mr {
- background-position: -9px -24px;
- }
- .x-toolbar .x-btn-over .x-btn-mc {
- background-position: 0 -2168px;
- }
- .x-toolbar .x-btn-over .x-btn-bl {
- background-position: -6px -3px;
- }
- .x-toolbar .x-btn-over .x-btn-br {
- background-position: -9px -3px;
- }
- .x-toolbar .x-btn-over .x-btn-bc {
- background-position: 0 -18px;
- }
- .x-toolbar .x-btn-click .x-btn-tl,
- .x-toolbar .x-btn-menu-active .x-btn-tl,
- .x-toolbar .x-btn-pressed .x-btn-tl {
- background-position: -12px 0;
- }
- .x-toolbar .x-btn-click .x-btn-tr,
- .x-toolbar .x-btn-menu-active .x-btn-tr,
- .x-toolbar .x-btn-pressed .x-btn-tr {
- background-position: -15px 0;
- }
- .x-toolbar .x-btn-click .x-btn-tc,
- .x-toolbar .x-btn-menu-active .x-btn-tc,
- .x-toolbar .x-btn-pressed .x-btn-tc {
- background-position: 0 -12px;
- }
- .x-toolbar .x-btn-click .x-btn-ml,
- .x-toolbar .x-btn-menu-active .x-btn-ml,
- .x-toolbar .x-btn-pressed .x-btn-ml {
- background-position: -12px -24px;
- }
- .x-toolbar .x-btn-click .x-btn-mr,
- .x-toolbar .x-btn-menu-active .x-btn-mr,
- .x-toolbar .x-btn-pressed .x-btn-mr {
- background-position: -15px -24px;
- }
- .x-toolbar .x-btn-click .x-btn-mc,
- .x-toolbar .x-btn-menu-active .x-btn-mc,
- .x-toolbar .x-btn-pressed .x-btn-mc {
- background-position: 0 -3240px;
- }
- .x-toolbar .x-btn-click .x-btn-bl,
- .x-toolbar .x-btn-menu-active .x-btn-bl,
- .x-toolbar .x-btn-pressed .x-btn-bl {
- background-position: -12px -3px;
- }
- .x-toolbar .x-btn-click .x-btn-br,
- .x-toolbar .x-btn-menu-active .x-btn-br,
- .x-toolbar .x-btn-pressed .x-btn-br {
- background-position: -15px -3px;
- }
- .x-toolbar .x-btn-click .x-btn-bc,
- .x-toolbar .x-btn-menu-active .x-btn-bc,
- .x-toolbar .x-btn-pressed .x-btn-bc {
- background-position: 0 -21px;
- }
- .x-toolbar div.xtb-text {
- padding: 2px 2px 0;
- line-height: 16px;
- display: block;
- }
- .x-toolbar .xtb-sep {
- 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;
- }
- .x-toolbar .xtb-spacer {
- width: 2px;
- }
- .x-tbar-page-number {
- width: 30px;
- height: 14px;
- }
- .ext-ie .x-tbar-page-number {
- margin-top: 2px;
- }
- .x-paging-info {
- position: absolute;
- top: 5px;
- right: 8px;
- }
- .x-toolbar-ct {
- width: 100%;
- }
- .x-toolbar-right td {
- text-align: center;
- }
- .x-panel-tbar,
- .x-panel-bbar,
- .x-window-tbar,
- .x-window-bbar,
- .x-tab-panel-tbar,
- .x-tab-panel-bbar,
- .x-plain-tbar,
- .x-plain-bbar {
- overflow: hidden;
- zoom: 1;
- }
- .x-toolbar-more .x-btn-small .x-btn-text {
- height: 16px;
- width: 12px;
- }
- .x-toolbar-more em.x-btn-arrow {
- display: inline;
- background-color: transparent;
- padding-right: 0;
- }
- .x-toolbar-more .x-btn-mc em.x-btn-arrow {
- background-image: none;
- }
- div.x-toolbar-no-items {
- color: gray !important;
- padding: 5px 10px !important;
- }
- .ext-border-box .x-toolbar-cell .x-form-text {
- margin-bottom: -1px !important;
- }
- .ext-border-box .x-toolbar-cell .x-form-field-wrap .x-form-text {
- margin: 0 !important;
- }
- .ext-ie .x-toolbar-cell .x-form-field-wrap {
- height: 21px;
- }
- .ext-ie .x-toolbar-cell .x-form-text {
- position: relative;
- top: -1px;
- }
- .ext-strict .ext-ie8 .x-toolbar-cell .x-form-field-trigger-wrap .x-form-text,
- .ext-strict .ext-ie .x-toolbar-cell .x-form-text {
- top: 0px;
- }
- .x-toolbar-right td .x-form-field-trigger-wrap {
- text-align: left;
- }
- .x-toolbar-cell .x-form-checkbox,
- .x-toolbar-cell .x-form-radio {
- margin-top: 5px;
- }
- .x-toolbar-cell .x-form-cb-label {
- vertical-align: bottom;
- top: 1px;
- }
- .ext-ie .x-toolbar-cell .x-form-checkbox,
- .ext-ie .x-toolbar-cell .x-form-radio {
- margin-top: 4px;
- }
- .ext-ie .x-toolbar-cell .x-form-cb-label {
- top: 0;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-resizable-handle {
- position: absolute;
- z-index: 100;
- font-size: 1px;
- line-height: 6px;
- overflow: hidden;
- filter: alpha(opacity=0);
- opacity: 0;
- zoom: 1;
- }
- .x-resizable-handle-east {
- width: 6px;
- cursor: e-resize;
- right: 0;
- top: 0;
- height: 100%;
- }
- .ext-ie .x-resizable-handle-east {
- margin-right: -1px;
- }
- .x-resizable-handle-south {
- width: 100%;
- cursor: s-resize;
- left: 0;
- bottom: 0;
- height: 6px;
- }
- .ext-ie .x-resizable-handle-south {
- margin-bottom: -1px;
- }
- .x-resizable-handle-west {
- width: 6px;
- cursor: w-resize;
- left: 0;
- top: 0;
- height: 100%;
- }
- .x-resizable-handle-north {
- width: 100%;
- cursor: n-resize;
- left: 0;
- top: 0;
- height: 6px;
- }
- .x-resizable-handle-southeast {
- width: 6px;
- cursor: se-resize;
- right: 0;
- bottom: 0;
- height: 6px;
- z-index: 101;
- }
- .x-resizable-handle-northwest {
- width: 6px;
- cursor: nw-resize;
- left: 0;
- top: 0;
- height: 6px;
- z-index: 101;
- }
- .x-resizable-handle-northeast {
- width: 6px;
- cursor: ne-resize;
- right: 0;
- top: 0;
- height: 6px;
- z-index: 101;
- }
- .x-resizable-handle-southwest {
- width: 6px;
- cursor: sw-resize;
- left: 0;
- bottom: 0;
- height: 6px;
- z-index: 101;
- }
- .x-resizable-over .x-resizable-handle,
- .x-resizable-pinned .x-resizable-handle {
- filter: alpha(opacity=100);
- opacity: 1;
- }
- .x-resizable-over .x-resizable-handle-east,
- .x-resizable-pinned .x-resizable-handle-east,
- .x-resizable-over .x-resizable-handle-west,
- .x-resizable-pinned .x-resizable-handle-west {
- background-position: left;
- }
- .x-resizable-over .x-resizable-handle-south,
- .x-resizable-pinned .x-resizable-handle-south,
- .x-resizable-over .x-resizable-handle-north,
- .x-resizable-pinned .x-resizable-handle-north {
- background-position: top;
- }
- .x-resizable-over .x-resizable-handle-southeast,
- .x-resizable-pinned .x-resizable-handle-southeast {
- background-position: top left;
- }
- .x-resizable-over .x-resizable-handle-northwest,
- .x-resizable-pinned .x-resizable-handle-northwest {
- background-position: bottom right;
- }
- .x-resizable-over .x-resizable-handle-northeast,
- .x-resizable-pinned .x-resizable-handle-northeast {
- background-position: bottom left;
- }
- .x-resizable-over .x-resizable-handle-southwest,
- .x-resizable-pinned .x-resizable-handle-southwest {
- background-position: top right;
- }
- .x-resizable-proxy {
- border: 1px dashed;
- position: absolute;
- overflow: hidden;
- display: none;
- left: 0;
- top: 0;
- z-index: 50000;
- }
- .x-resizable-overlay {
- width: 100%;
- height: 100%;
- display: none;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 200000;
- -moz-opacity: 0;
- opacity: 0;
- filter: alpha(opacity=0);
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-grid3 {
- position: relative;
- overflow: hidden;
- }
- .x-grid-panel .x-panel-body {
- overflow: hidden !important;
- }
- .x-grid-panel .x-panel-mc .x-panel-body {
- border: 1px solid;
- }
- .x-grid3 table {
- table-layout: fixed;
- }
- .x-grid3-viewport {
- overflow: hidden;
- }
- .x-grid3-hd-row td,
- .x-grid3-row td,
- .x-grid3-summary-row td {
- -moz-outline: none;
- outline: none;
- -moz-user-focus: normal;
- }
- .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;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-grid3-cell {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-grid3-hd-row td {
- line-height: 15px;
- vertical-align: middle;
- border-left: 1px solid;
- border-right: 1px solid;
- }
- .x-grid3-hd-row .x-grid3-marker-hd {
- padding: 3px;
- }
- .x-grid3-row .x-grid3-marker {
- padding: 3px;
- }
- .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;
- }
- .x-action-col-cell .x-grid3-cell-inner {
- padding-top: 1px;
- padding-bottom: 1px;
- }
- .x-action-col-icon {
- cursor: pointer;
- }
- .x-grid3-hd-inner {
- position: relative;
- cursor: inherit;
- padding: 4px 3px 4px 5px;
- }
- .x-grid3-row-body {
- white-space: normal;
- }
- .x-grid3-body-cell {
- -moz-outline: 0 none;
- outline: 0 none;
- }
- .ext-ie .x-grid3-cell-inner,
- .ext-ie .x-grid3-hd-inner {
- width: 100%;
- }
- .ext-strict .x-grid3-cell-inner,
- .ext-strict .x-grid3-hd-inner {
- width: auto;
- }
- .x-grid-row-loading {
- background: no-repeat center center;
- }
- .x-grid-page {
- overflow: hidden;
- }
- .x-grid3-row {
- cursor: default;
- border: 1px solid;
- width: 100%;
- }
- .x-grid3-row-over {
- border: 1px solid;
- background: repeat-x left top;
- }
- .x-grid3-resize-proxy {
- width: 1px;
- left: 0;
- cursor: e-resize;
- cursor: col-resize;
- position: absolute;
- top: 0;
- height: 100px;
- overflow: hidden;
- visibility: hidden;
- border: 0 none;
- z-index: 7;
- background: #505a64;
- }
- .x-grid3-resize-marker {
- width: 1px;
- left: 0;
- position: absolute;
- top: 0;
- height: 100px;
- overflow: hidden;
- visibility: hidden;
- border: 0 none;
- z-index: 7;
- background: #505a64;
- }
- .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;
- -webkit-user-select: ignore;
- }
- .x-grid3-header {
- background: repeat-x 0 bottom;
- cursor: default;
- zoom: 1;
- padding: 1px 0 0 0;
- }
- .x-grid3-header-pop {
- border-left: 1px solid;
- float: right;
- clear: none;
- }
- .x-grid3-header-pop-inner {
- border-left: 1px solid;
- width: 14px;
- height: 19px;
- background: transparent no-repeat center center;
- }
- .ext-ie .x-grid3-header-pop-inner {
- width: 15px;
- }
- .ext-strict .x-grid3-header-pop-inner {
- width: 14px;
- }
- .x-grid3-header-inner {
- overflow: hidden;
- zoom: 1;
- float: left;
- }
- .x-grid3-header-offset {
- padding-left: 1px;
- text-align: left;
- }
- td.x-grid3-hd-over,
- td.sort-desc,
- td.sort-asc,
- td.x-grid3-hd-menu-open {
- border-left: 1px solid;
- border-right: 1px solid;
- }
- 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: repeat-x left bottom;
- }
- .x-grid3-sort-icon {
- background-repeat: no-repeat;
- display: none;
- height: 4px;
- width: 13px;
- margin-left: 3px;
- vertical-align: middle;
- }
- .sort-asc .x-grid3-sort-icon,
- .sort-desc .x-grid3-sort-icon {
- display: inline;
- }
- .ext-strict .ext-ie .x-grid3-header-inner,
- .ext-strict .ext-ie6 .x-grid3-hd {
- position: relative;
- }
- .ext-strict .ext-ie6 .x-grid3-hd-inner {
- position: static;
- }
- .x-grid3-body {
- zoom: 1;
- }
- .x-grid3-scroller {
- overflow: auto;
- zoom: 1;
- position: relative;
- }
- .x-grid3-cell-text,
- .x-grid3-hd-text {
- display: block;
- padding: 3px 5px 3px 5px;
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-grid3-split {
- 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;
- }
- .x-dd-drag-proxy .x-grid3-hd-inner {
- background: repeat-x left bottom;
- width: 120px;
- padding: 3px;
- border: 1px solid;
- overflow: hidden;
- }
- .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;
- background: transparent no-repeat left top;
- }
- .x-grid3-row-selected {
- border: 1px dotted;
- }
- .x-grid3-locked td.x-grid3-row-marker,
- .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker {
- background: repeat-x 0 bottom !important;
- vertical-align: middle !important;
- padding: 0;
- border-top: 1px solid;
- border-bottom: none !important;
- border-right: 1px solid !important;
- text-align: center;
- }
- .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;
- text-align: center;
- }
- .x-grid3-dirty-cell {
- background: transparent no-repeat 0 0;
- }
- .x-grid3-topbar,
- .x-grid3-bottombar {
- overflow: hidden;
- display: none;
- zoom: 1;
- position: relative;
- }
- .x-grid3-topbar .x-toolbar {
- border-right: 0 none;
- }
- .x-grid3-bottombar .x-toolbar {
- border-right: 0 none;
- border-bottom: 0 none;
- border-top: 1px solid;
- }
- .x-props-grid .x-grid3-cell {
- padding: 1px;
- }
- .x-props-grid .x-grid3-td-name .x-grid3-cell-inner {
- background: transparent repeat-y -16px !important;
- padding-left: 12px;
- }
- .x-props-grid .x-grid3-body .x-grid3-td-name {
- padding: 1px;
- padding-right: 0;
- border: 0 none;
- border-right: 1px solid;
- }
- .x-grid3-col-dd {
- border: 0 none;
- padding: 0;
- background-color: transparent;
- }
- .x-dd-drag-ghost .x-grid3-dd-wrap {
- padding: 1px 3px 3px 1px;
- }
- .x-grid3-hd {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-grid3-hd-btn {
- display: none;
- position: absolute;
- width: 14px;
- background: no-repeat left center;
- right: 0;
- top: 0;
- z-index: 2;
- cursor: pointer;
- }
- .x-grid3-hd-over .x-grid3-hd-btn,
- .x-grid3-hd-menu-open .x-grid3-hd-btn {
- display: block;
- }
- a.x-grid3-hd-btn:hover {
- background-position: -14px center;
- }
- .x-grid3-body .x-grid3-td-expander {
- background: transparent repeat-y right;
- }
- .x-grid3-body .x-grid3-td-expander .x-grid3-cell-inner {
- padding: 0 !important;
- height: 100%;
- }
- .x-grid3-row-expander {
- width: 100%;
- height: 18px;
- background-position: 4px 2px;
- background-repeat: no-repeat;
- background-color: transparent;
- }
- .x-grid3-row-collapsed .x-grid3-row-expander {
- background-position: 4px 2px;
- }
- .x-grid3-row-expanded .x-grid3-row-expander {
- background-position: -21px 2px;
- }
- .x-grid3-row-collapsed .x-grid3-row-body {
- display: none !important;
- }
- .x-grid3-row-expanded .x-grid3-row-body {
- display: block !important;
- }
- .x-grid3-body .x-grid3-td-checker {
- background: transparent repeat-y right;
- }
- .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%;
- }
- .x-grid3-row-checker,
- .x-grid3-hd-checker {
- width: 100%;
- height: 18px;
- background-position: 2px 2px;
- background-repeat: no-repeat;
- background-color: transparent;
- }
- .x-grid3-row .x-grid3-row-checker {
- background-position: 2px 2px;
- }
- .x-grid3-row-selected .x-grid3-row-checker,
- .x-grid3-hd-checker-on .x-grid3-hd-checker,
- .x-grid3-row-checked .x-grid3-row-checker {
- background-position: -23px 2px;
- }
- .x-grid3-hd-checker {
- background-position: 2px 1px;
- }
- .ext-border-box .x-grid3-hd-checker {
- background-position: 2px 3px;
- }
- .x-grid3-hd-checker-on .x-grid3-hd-checker {
- background-position: -23px 1px;
- }
- .ext-border-box .x-grid3-hd-checker-on .x-grid3-hd-checker {
- background-position: -23px 3px;
- }
- .x-grid3-body .x-grid3-td-numberer {
- background: transparent repeat-y right;
- }
- .x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner {
- padding: 3px 5px 0 0 !important;
- text-align: right;
- }
- .x-grid3-body .x-grid3-td-row-icon {
- background: transparent repeat-y right;
- vertical-align: top;
- text-align: center;
- }
- .x-grid3-body .x-grid3-td-row-icon .x-grid3-cell-inner {
- padding: 0 !important;
- background-position: center center;
- background-repeat: no-repeat;
- width: 16px;
- height: 16px;
- margin-left: 2px;
- margin-top: 3px;
- }
- .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 repeat-y right;
- }
- .x-grid3-body .x-grid3-check-col-td .x-grid3-cell-inner {
- padding: 1px 0 0 0 !important;
- }
- .x-grid3-check-col {
- width: 100%;
- height: 16px;
- background-position: center center;
- background-repeat: no-repeat;
- background-color: transparent;
- }
- .x-grid3-check-col-on {
- width: 100%;
- height: 16px;
- background-position: center center;
- background-repeat: no-repeat;
- background-color: transparent;
- }
- .x-grid-group,
- .x-grid-group-body,
- .x-grid-group-hd {
- zoom: 1;
- }
- .x-grid-group-hd {
- border-bottom: 2px solid;
- cursor: pointer;
- padding-top: 6px;
- }
- .x-grid-group-hd div.x-grid-group-title {
- background: transparent no-repeat 3px 3px;
- padding: 4px 4px 4px 17px;
- }
- .x-grid-group-collapsed .x-grid-group-body {
- display: none;
- }
- .ext-ie6 .x-grid3 .x-editor .x-form-text,
- .ext-ie7 .x-grid3 .x-editor .x-form-text {
- position: relative;
- top: -1px;
- }
- .ext-ie .x-props-grid .x-editor .x-form-text {
- position: static;
- top: 0;
- }
- .x-grid-empty {
- padding: 10px;
- }
- .ext-ie7 .x-grid-panel .x-panel-bbar {
- position: relative;
- }
- .ext-ie7 .x-grid-panel .x-panel-mc .x-panel-bbar {
- position: static;
- }
- .ext-ie6 .x-grid3-header {
- position: relative;
- }
- .ext-webkit .x-grid-panel .x-panel-bwrap {
- -webkit-user-select: none;
- }
- .ext-webkit .x-tbar-page-number {
- -webkit-user-select: ignore;
- }
- .x-grid-with-col-lines .x-grid3-row td.x-grid3-cell {
- padding-right: 0;
- border-right: 1px solid;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-dd-drag-proxy {
- position: absolute;
- left: 0;
- top: 0;
- visibility: hidden;
- z-index: 15000;
- }
- .x-dd-drag-ghost {
- -moz-opacity: 0.85;
- opacity: 0.85;
- filter: alpha(opacity=85);
- border: 1px solid;
- padding: 3px;
- padding-left: 20px;
- white-space: nowrap;
- }
- .x-dd-drag-repair .x-dd-drag-ghost {
- -moz-opacity: 0.4;
- opacity: 0.4;
- filter: alpha(opacity=40);
- border: 0 none;
- padding: 0;
- background-color: transparent;
- }
- .x-dd-drag-repair .x-dd-drop-icon {
- visibility: hidden;
- }
- .x-dd-drop-icon {
- position: absolute;
- top: 3px;
- left: 3px;
- display: block;
- width: 16px;
- height: 16px;
- background-color: transparent;
- background-position: center;
- background-repeat: no-repeat;
- z-index: 1;
- }
- .x-view-selector {
- position: absolute;
- left: 0;
- top: 0;
- width: 0;
- border: 1px dotted;
- opacity: 0.5;
- -moz-opacity: 0.5;
- filter: alpha(opacity=50);
- zoom: 1;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .ext-strict .ext-ie .x-tree .x-panel-bwrap {
- position: relative;
- overflow: hidden;
- }
- .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;
- }
- .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;
- }
- .ext-ie .x-tree-node-indent img,
- .ext-ie .x-tree-node-icon,
- .ext-ie .x-tree-ec-icon {
- vertical-align: middle !important;
- }
- .ext-strict .ext-ie8 .x-tree-node-indent img,
- .ext-strict .ext-ie8 .x-tree-node-icon,
- .ext-strict .ext-ie8 .x-tree-ec-icon {
- vertical-align: top !important;
- }
- input.x-tree-node-cb {
- margin-left: 1px;
- height: 19px;
- vertical-align: bottom;
- }
- .ext-ie input.x-tree-node-cb {
- margin-left: 0;
- margin-top: 1px;
- width: 16px;
- height: 16px;
- vertical-align: middle;
- }
- .ext-strict .ext-ie8 input.x-tree-node-cb {
- margin: 1px 1px;
- height: 14px;
- vertical-align: bottom;
- }
- .ext-strict .ext-ie8 input.x-tree-node-cb + a {
- vertical-align: bottom;
- }
- .ext-opera input.x-tree-node-cb {
- height: 14px;
- vertical-align: middle;
- }
- .x-tree-noicon .x-tree-node-icon {
- width: 0;
- height: 0;
- }
- .x-tree-no-lines .x-tree-elbow {
- background-color: transparent;
- }
- .x-tree-no-lines .x-tree-elbow-end {
- background-color: transparent;
- }
- .x-tree-no-lines .x-tree-elbow-line {
- background-color: transparent;
- }
- .x-tree-arrows .x-tree-elbow {
- background-color: transparent;
- }
- .x-tree-arrows .x-tree-elbow-plus {
- background: transparent no-repeat 0 0;
- }
- .x-tree-arrows .x-tree-elbow-minus {
- background: transparent no-repeat -16px 0;
- }
- .x-tree-arrows .x-tree-elbow-end {
- background-color: transparent;
- }
- .x-tree-arrows .x-tree-elbow-end-plus {
- background: transparent no-repeat 0 0;
- }
- .x-tree-arrows .x-tree-elbow-end-minus {
- background: transparent no-repeat -16px 0;
- }
- .x-tree-arrows .x-tree-elbow-line {
- background-color: transparent;
- }
- .x-tree-arrows .x-tree-ec-over .x-tree-elbow-plus {
- background-position: -32px 0;
- }
- .x-tree-arrows .x-tree-ec-over .x-tree-elbow-minus {
- background-position: -48px 0;
- }
- .x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-plus {
- background-position: -32px 0;
- }
- .x-tree-arrows .x-tree-ec-over .x-tree-elbow-end-minus {
- background-position: -48px 0;
- }
- .x-tree-elbow-plus,
- .x-tree-elbow-minus,
- .x-tree-elbow-end-plus,
- .x-tree-elbow-end-minus {
- cursor: pointer;
- }
- .ext-ie ul.x-tree-node-ct {
- font-size: 0;
- line-height: 0;
- zoom: 1;
- }
- .x-tree-node {
- white-space: nowrap;
- }
- .x-tree-node-el {
- line-height: 18px;
- cursor: pointer;
- }
- .x-tree-node a,
- .x-dd-drag-ghost a {
- text-decoration: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -webkit-user-select: ignore;
- -kthml-user-focus: normal;
- -moz-user-focus: normal;
- -moz-outline: 0 none;
- outline: 0 none;
- }
- .x-tree-node a span,
- .x-dd-drag-ghost a span {
- text-decoration: none;
- padding: 1px 3px 1px 2px;
- }
- .x-tree-node .x-tree-node-disabled .x-tree-node-icon {
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- }
- .x-tree-node .x-tree-node-inline-icon {
- background-color: transparent;
- }
- .x-tree-node a:hover,
- .x-dd-drag-ghost a:hover {
- text-decoration: none;
- }
- .x-tree-node div.x-tree-drag-insert-below {
- border-bottom: 1px dotted;
- }
- .x-tree-node div.x-tree-drag-insert-above {
- border-top: 1px dotted;
- }
- .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below {
- border-bottom: 0 none;
- }
- .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above {
- border-top: 0 none;
- }
- .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a {
- border-bottom: 2px solid;
- }
- .x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a {
- border-top: 2px solid;
- }
- .x-tree-node .x-tree-drag-append a span {
- border: 1px dotted;
- }
- .x-dd-drag-ghost .x-tree-node-indent,
- .x-dd-drag-ghost .x-tree-ec-icon {
- display: none !important;
- }
- .x-tree-root-ct {
- zoom: 1;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-date-picker {
- border: 1px solid;
- border-top: 0 none;
- position: relative;
- }
- .x-date-picker a {
- -moz-outline: 0 none;
- outline: 0 none;
- }
- .x-date-inner,
- .x-date-inner td,
- .x-date-inner th {
- border-collapse: separate;
- }
- .x-date-middle,
- .x-date-left,
- .x-date-right {
- background: repeat-x 0 -83px;
- overflow: hidden;
- }
- .x-date-middle .x-btn-tc,
- .x-date-middle .x-btn-tl,
- .x-date-middle .x-btn-tr,
- .x-date-middle .x-btn-mc,
- .x-date-middle .x-btn-ml,
- .x-date-middle .x-btn-mr,
- .x-date-middle .x-btn-bc,
- .x-date-middle .x-btn-bl,
- .x-date-middle .x-btn-br {
- background: transparent !important;
- vertical-align: middle;
- }
- .x-date-middle .x-btn-mc em.x-btn-arrow {
- background: transparent no-repeat right 0;
- }
- .x-date-right,
- .x-date-left {
- width: 18px;
- }
- .x-date-right {
- text-align: right;
- }
- .x-date-middle {
- padding-top: 2px;
- padding-bottom: 2px;
- width: 130px;
- }
- .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: 0.6;
- filter: alpha(opacity=60);
- }
- .x-date-right a:hover,
- .x-date-left a:hover {
- -moz-opacity: 1;
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .x-item-disabled .x-date-right a:hover,
- .x-item-disabled .x-date-left a:hover {
- -moz-opacity: 0.6;
- opacity: 0.6;
- filter: alpha(opacity=60);
- }
- .x-date-right a {
- margin-right: 2px;
- text-decoration: none !important;
- }
- .x-date-left a {
- margin-left: 2px;
- text-decoration: none !important;
- }
- table.x-date-inner {
- width: 100%;
- table-layout: fixed;
- }
- .ext-webkit table.x-date-inner {
- width: 175px;
- }
- .x-date-inner th {
- width: 25px;
- }
- .x-date-inner th {
- background: repeat-x left top;
- text-align: right !important;
- border-bottom: 1px solid;
- cursor: default;
- padding: 0;
- border-collapse: separate;
- }
- .x-date-inner th span {
- display: block;
- padding: 2px;
- padding-right: 7px;
- }
- .x-date-inner td {
- border: 1px solid;
- text-align: right;
- padding: 0;
- }
- .x-date-inner a {
- padding: 2px 5px;
- display: block;
- text-decoration: none;
- text-align: right;
- zoom: 1;
- }
- .x-date-inner .x-date-active {
- cursor: pointer;
- color: black;
- }
- .x-date-inner .x-date-selected a {
- background: repeat-x left top;
- border: 1px solid;
- padding: 1px 4px;
- }
- .x-date-inner .x-date-today a {
- border: 1px solid;
- padding: 1px 4px;
- }
- .x-date-inner .x-date-prevday a,
- .x-date-inner .x-date-nextday a {
- text-decoration: none !important;
- }
- .x-date-bottom {
- padding: 4px;
- border-top: 1px solid;
- background: repeat-x left top;
- }
- .x-date-inner a:hover,
- .x-date-inner .x-date-disabled a:hover {
- text-decoration: none !important;
- }
- .x-item-disabled .x-date-inner a:hover {
- background: none;
- }
- .x-date-inner .x-date-disabled a {
- cursor: default;
- }
- .x-date-menu .x-menu-item {
- padding: 1px 24px 1px 4px;
- white-space: nowrap;
- }
- .x-date-menu .x-menu-item .x-menu-item-icon {
- width: 10px;
- height: 10px;
- margin-right: 5px;
- background-position: center -4px !important;
- }
- .x-date-mp {
- position: absolute;
- left: 0;
- top: 0;
- display: none;
- }
- .x-date-mp td {
- padding: 2px;
- font: normal 11px arial, helvetica, tahoma, sans-serif;
- }
- 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%;
- }
- .x-date-mp-ok {
- margin-right: 3px;
- }
- .x-date-mp-btns button {
- text-decoration: none;
- text-align: center;
- text-decoration: none !important;
- border: 1px solid;
- padding: 1px 3px 1px;
- cursor: pointer;
- }
- .x-date-mp-btns {
- background: repeat-x left top;
- }
- .x-date-mp-btns td {
- border-top: 1px solid;
- text-align: center;
- }
- td.x-date-mp-month a,
- td.x-date-mp-year a {
- display: block;
- padding: 2px 4px;
- text-decoration: none;
- text-align: center;
- }
- td.x-date-mp-month a:hover,
- td.x-date-mp-year a:hover {
- text-decoration: none;
- cursor: pointer;
- }
- td.x-date-mp-sel a {
- padding: 1px 3px;
- background: repeat-x left top;
- border: 1px solid;
- }
- .x-date-mp-ybtn a {
- overflow: hidden;
- width: 15px;
- height: 15px;
- cursor: pointer;
- background: transparent no-repeat;
- display: block;
- margin: 0 auto;
- }
- .x-date-mp-ybtn a.x-date-mp-next {
- background-position: 0 -120px;
- }
- .x-date-mp-ybtn a.x-date-mp-next:hover {
- background-position: -15px -120px;
- }
- .x-date-mp-ybtn a.x-date-mp-prev {
- background-position: 0 -105px;
- }
- .x-date-mp-ybtn a.x-date-mp-prev:hover {
- background-position: -15px -105px;
- }
- .x-date-mp-ybtn {
- text-align: center;
- }
- td.x-date-mp-sep {
- border-right: 1px solid;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-tip {
- position: absolute;
- top: 0;
- left: 0;
- visibility: hidden;
- z-index: 20002;
- border: 0 none;
- }
- .x-tip .x-tip-close {
- height: 15px;
- float: right;
- width: 15px;
- margin: 0 0 2px 2px;
- cursor: pointer;
- display: none;
- }
- .x-tip .x-tip-tc {
- background: transparent no-repeat 0 -62px;
- padding-top: 3px;
- overflow: hidden;
- zoom: 1;
- }
- .x-tip .x-tip-tl {
- background: transparent no-repeat 0 0;
- padding-left: 6px;
- overflow: hidden;
- zoom: 1;
- }
- .x-tip .x-tip-tr {
- background: transparent no-repeat right 0;
- padding-right: 6px;
- overflow: hidden;
- zoom: 1;
- }
- .x-tip .x-tip-bc {
- background: transparent no-repeat 0 -121px;
- height: 3px;
- overflow: hidden;
- }
- .x-tip .x-tip-bl {
- background: transparent no-repeat 0 -59px;
- padding-left: 6px;
- zoom: 1;
- }
- .x-tip .x-tip-br {
- background: transparent no-repeat right -59px;
- padding-right: 6px;
- zoom: 1;
- }
- .x-tip .x-tip-mc {
- border: 0 none;
- }
- .x-tip .x-tip-ml {
- background: no-repeat 0 -124px;
- padding-left: 6px;
- zoom: 1;
- }
- .x-tip .x-tip-mr {
- background: transparent no-repeat right -124px;
- padding-right: 6px;
- zoom: 1;
- }
- .ext-ie .x-tip .x-tip-header,
- .ext-ie .x-tip .x-tip-tc {
- font-size: 0;
- line-height: 0;
- }
- .ext-border-box .x-tip .x-tip-header,
- .ext-border-box .x-tip .x-tip-tc {
- line-height: 1px;
- }
- .x-tip .x-tip-header-text {
- padding: 0;
- margin: 0 0 2px 0;
- }
- .x-tip .x-tip-body {
- margin: 0 !important;
- line-height: 14px;
- padding: 0;
- }
- .x-tip .x-tip-body .loading-indicator {
- margin: 0;
- }
- .x-tip-draggable .x-tip-header,
- .x-tip-draggable .x-tip-header-text {
- cursor: move;
- }
- .x-form-invalid-tip .x-tip-tc {
- background: repeat-x 0 -12px;
- padding-top: 6px;
- }
- .x-form-invalid-tip .x-tip-bc {
- background: repeat-x 0 -18px;
- height: 6px;
- }
- .x-form-invalid-tip .x-tip-bl {
- background: no-repeat 0 -6px;
- }
- .x-form-invalid-tip .x-tip-br {
- background: no-repeat right -6px;
- }
- .x-form-invalid-tip .x-tip-body {
- padding: 2px;
- }
- .x-form-invalid-tip .x-tip-body {
- padding-left: 24px;
- background: transparent no-repeat 2px 2px;
- }
- .x-tip-anchor {
- position: absolute;
- width: 9px;
- height: 10px;
- overflow: hidden;
- background: transparent no-repeat 0 0;
- zoom: 1;
- }
- .x-tip-anchor-bottom {
- background-position: -9px 0;
- }
- .x-tip-anchor-right {
- background-position: -18px 0;
- width: 10px;
- }
- .x-tip-anchor-left {
- background-position: -28px 0;
- width: 10px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-menu {
- z-index: 15000;
- zoom: 1;
- background: repeat-y;
- }
- .x-menu-floating {
- border: 1px solid;
- }
- .x-menu a {
- text-decoration: none !important;
- }
- .ext-ie .x-menu {
- zoom: 1;
- overflow: hidden;
- }
- .x-menu-list {
- padding: 2px;
- background-color: transparent;
- border: 0 none;
- overflow: hidden;
- overflow-y: hidden;
- }
- .ext-strict .ext-ie .x-menu-list {
- position: relative;
- }
- .x-menu li {
- line-height: 100%;
- }
- .x-menu li.x-menu-sep-li {
- font-size: 1px;
- line-height: 1px;
- }
- .x-menu-list-item {
- white-space: nowrap;
- display: block;
- padding: 1px;
- }
- .x-menu-item {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- }
- .x-menu-item-arrow {
- background: transparent no-repeat right;
- }
- .x-menu-sep {
- display: block;
- font-size: 1px;
- line-height: 1px;
- margin: 2px 3px;
- border-bottom: 1px solid;
- overflow: hidden;
- }
- .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: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- overflow: hidden;
- display: block;
- }
- a.x-menu-item {
- cursor: pointer;
- display: block;
- line-height: 16px;
- outline-color: -moz-use-text-color;
- outline-style: none;
- outline-width: 0;
- padding: 3px 21px 3px 27px;
- position: relative;
- text-decoration: none;
- white-space: nowrap;
- }
- .x-menu-item-active {
- background-repeat: repeat-x;
- background-position: left bottom;
- border-style: solid;
- border-width: 1px 0;
- margin: 0 1px;
- padding: 0;
- }
- .x-menu-item-active a.x-menu-item {
- border-style: solid;
- border-width: 0 1px;
- margin: 0 -1px;
- }
- .x-menu-item-icon {
- border: 0 none;
- height: 16px;
- padding: 0;
- vertical-align: top;
- width: 16px;
- position: absolute;
- left: 3px;
- top: 3px;
- margin: 0;
- background-position: center;
- }
- .ext-ie .x-menu-item-icon {
- left: -24px;
- }
- .ext-strict .x-menu-item-icon {
- left: 3px;
- }
- .ext-ie6 .x-menu-item-icon {
- left: -24px;
- }
- .ext-ie .x-menu-item-icon {
- vertical-align: middle;
- }
- .x-menu-check-item .x-menu-item-icon {
- background: transparent no-repeat center;
- }
- .x-menu-group-item .x-menu-item-icon {
- background-color: transparent;
- }
- .x-menu-item-checked .x-menu-group-item .x-menu-item-icon {
- background: transparent no-repeat center;
- }
- .x-date-menu .x-menu-list {
- padding: 0;
- }
- .x-menu-date-item {
- padding: 0;
- }
- .x-menu .x-color-palette,
- .x-menu .x-date-picker {
- margin-left: 26px;
- margin-right: 4px;
- }
- .x-menu .x-date-picker {
- border: 1px solid;
- margin-top: 2px;
- margin-bottom: 2px;
- }
- .x-menu-plain .x-color-palette,
- .x-menu-plain .x-date-picker {
- margin: 0;
- border: 0 none;
- }
- .x-date-menu {
- padding: 0 !important;
- }
- .ext-strict .ext-ie6 .x-menu-sep-li {
- padding: 3px 4px;
- }
- .ext-strict .ext-ie6 .x-menu-sep {
- margin: 0;
- height: 1px;
- }
- .ext-webkit .x-menu-sep {
- height: 1px;
- }
- .ext-ie .x-date-menu {
- height: 199px;
- }
- .ext-strict .ext-ie .x-date-menu,
- .ext-border-box .ext-ie8 .x-date-menu {
- height: 197px;
- }
- .ext-strict .ext-ie7 .x-date-menu {
- height: 195px;
- }
- .ext-strict .ext-ie8 .x-date-menu {
- height: auto;
- }
- .x-cycle-menu .x-menu-item-checked {
- border: 1px dotted !important;
- padding: 0;
- }
- .x-menu .x-menu-scroller {
- width: 100%;
- background-repeat: no-repeat;
- background-position: center;
- height: 8px;
- line-height: 8px;
- cursor: pointer;
- margin: 0;
- padding: 0;
- }
- .x-menu .x-menu-scroller-active {
- height: 6px;
- line-height: 6px;
- }
- .x-menu-list-item-indent {
- padding-left: 27px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-box-tl {
- background: transparent no-repeat 0 0;
- zoom: 1;
- }
- .x-box-tc {
- height: 8px;
- background: transparent repeat-x 0 0;
- overflow: hidden;
- }
- .x-box-tr {
- background: transparent no-repeat right -8px;
- }
- .x-box-ml {
- background: transparent repeat-y 0;
- padding-left: 4px;
- overflow: hidden;
- zoom: 1;
- }
- .x-box-mc {
- background: repeat-x 0 -16px;
- padding: 4px 10px;
- }
- .x-box-mc h3 {
- margin: 0 0 4px 0;
- zoom: 1;
- }
- .x-box-mr {
- background: transparent repeat-y right;
- padding-right: 4px;
- overflow: hidden;
- }
- .x-box-bl {
- background: transparent no-repeat 0 -16px;
- zoom: 1;
- }
- .x-box-bc {
- background: transparent repeat-x 0 -8px;
- height: 8px;
- overflow: hidden;
- }
- .x-box-br {
- background: transparent no-repeat right -24px;
- }
- .x-box-tl,
- .x-box-bl {
- padding-left: 8px;
- overflow: hidden;
- }
- .x-box-tr,
- .x-box-br {
- padding-right: 8px;
- overflow: hidden;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- #x-debug-browser .x-tree .x-tree-node a span {
- padding-top: 2px;
- line-height: 18px;
- }
- #x-debug-browser .x-tool-toggle {
- background-position: 0 -75px;
- }
- #x-debug-browser .x-tool-toggle-over {
- background-position: -15px -75px;
- }
- #x-debug-browser.x-panel-collapsed .x-tool-toggle {
- background-position: 0 -60px;
- }
- #x-debug-browser.x-panel-collapsed .x-tool-toggle-over {
- background-position: -15px -60px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-combo-list {
- border: 1px solid;
- zoom: 1;
- overflow: hidden;
- }
- .x-combo-list-inner {
- overflow: auto;
- position: relative;
- zoom: 1;
- overflow-x: hidden;
- }
- .x-combo-list-hd {
- border-bottom: 1px solid;
- padding: 3px;
- }
- .x-resizable-pinned .x-combo-list-inner {
- border-bottom: 1px solid;
- }
- .x-combo-list-item {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .x-combo-list .x-combo-selected {
- cursor: pointer;
- }
- .x-combo-list .x-toolbar {
- border-top: 1px solid;
- border-bottom: 0 none;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-panel {
- border-style: solid;
- border-width: 0;
- }
- .x-panel-header {
- overflow: hidden;
- zoom: 1;
- padding: 5px 3px 4px 5px;
- border: 1px solid;
- line-height: 15px;
- background: transparent repeat-x 0 -1px;
- }
- .x-panel-body {
- border: 1px solid;
- border-top: 0 none;
- overflow: hidden;
- position: relative;
- }
- .x-panel-bbar .x-toolbar,
- .x-panel-tbar .x-toolbar {
- border: 1px solid;
- border-top: 0 none;
- overflow: hidden;
- padding: 2px;
- }
- .x-panel-tbar-noheader .x-toolbar,
- .x-panel-mc .x-panel-tbar .x-toolbar {
- border-top: 1px solid;
- border-bottom: 0 none;
- }
- .x-panel-body-noheader,
- .x-panel-mc .x-panel-body {
- border-top: 1px solid;
- }
- .x-panel-header {
- overflow: hidden;
- zoom: 1;
- }
- .x-panel-tl .x-panel-header {
- padding: 5px 0 4px 0;
- border: 0 none;
- background: transparent no-repeat;
- }
- .x-panel-tl .x-panel-icon,
- .x-window-tl .x-panel-icon {
- padding-left: 20px;
- background-repeat: no-repeat;
- background-position: 0 4px;
- zoom: 1;
- }
- .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;
- }
- .x-panel-tc {
- background: transparent repeat-x 0 0;
- overflow: hidden;
- }
- .ext-strict .ext-ie7 .x-panel-tc {
- overflow: visible;
- }
- .x-panel-tl {
- background: transparent no-repeat 0 0;
- padding-left: 6px;
- zoom: 1;
- border-bottom: 1px solid;
- }
- .x-panel-tr {
- background: transparent no-repeat right 0;
- zoom: 1;
- padding-right: 6px;
- }
- .x-panel-bc {
- background: transparent repeat-x 0 bottom;
- zoom: 1;
- }
- .x-panel-bc .x-panel-footer {
- zoom: 1;
- }
- .x-panel-bl {
- background: transparent no-repeat 0 bottom;
- padding-left: 6px;
- zoom: 1;
- }
- .x-panel-br {
- background: transparent no-repeat right bottom;
- padding-right: 6px;
- zoom: 1;
- }
- .x-panel-mc {
- border: 0 none;
- padding: 0;
- margin: 0;
- padding-top: 6px;
- }
- .x-panel-mc .x-panel-body {
- background-color: transparent;
- border: 0 none;
- }
- .x-panel-ml {
- background: repeat-y 0 0;
- padding-left: 6px;
- zoom: 1;
- }
- .x-panel-mr {
- background: transparent repeat-y right 0;
- padding-right: 6px;
- zoom: 1;
- }
- .x-panel-bc .x-panel-footer {
- padding-bottom: 6px;
- }
- .x-panel-nofooter .x-panel-bc,
- .x-panel-nofooter .x-window-bc {
- height: 6px;
- font-size: 0;
- line-height: 0;
- }
- .x-panel-bwrap {
- overflow: hidden;
- zoom: 1;
- left: 0;
- top: 0;
- }
- .x-panel-body {
- overflow: hidden;
- zoom: 1;
- }
- .x-panel-collapsed .x-resizable-handle {
- display: none;
- }
- .ext-gecko .x-panel-animated div {
- overflow: hidden !important;
- }
- .x-plain-body {
- overflow: hidden;
- }
- .x-plain-bbar .x-toolbar {
- overflow: hidden;
- padding: 2px;
- }
- .x-plain-tbar .x-toolbar {
- overflow: hidden;
- padding: 2px;
- }
- .x-plain-bwrap {
- overflow: hidden;
- zoom: 1;
- }
- .x-plain {
- overflow: hidden;
- }
- .x-tool {
- overflow: hidden;
- width: 15px;
- height: 15px;
- float: right;
- cursor: pointer;
- background: transparent no-repeat;
- margin-left: 2px;
- }
- .x-tool-toggle {
- background-position: 0 -60px;
- }
- .x-tool-toggle-over {
- background-position: -15px -60px;
- }
- .x-panel-collapsed .x-tool-toggle {
- background-position: 0 -75px;
- }
- .x-panel-collapsed .x-tool-toggle-over {
- background-position: -15px -75px;
- }
- .x-tool-close {
- background-position: 0 -0;
- }
- .x-tool-close-over {
- background-position: -15px 0;
- }
- .x-tool-minimize {
- background-position: 0 -15px;
- }
- .x-tool-minimize-over {
- background-position: -15px -15px;
- }
- .x-tool-maximize {
- background-position: 0 -30px;
- }
- .x-tool-maximize-over {
- background-position: -15px -30px;
- }
- .x-tool-restore {
- background-position: 0 -45px;
- }
- .x-tool-restore-over {
- background-position: -15px -45px;
- }
- .x-tool-gear {
- background-position: 0 -90px;
- }
- .x-tool-gear-over {
- background-position: -15px -90px;
- }
- .x-tool-prev {
- background-position: 0 -105px;
- }
- .x-tool-prev-over {
- background-position: -15px -105px;
- }
- .x-tool-next {
- background-position: 0 -120px;
- }
- .x-tool-next-over {
- background-position: -15px -120px;
- }
- .x-tool-pin {
- background-position: 0 -135px;
- }
- .x-tool-pin-over {
- background-position: -15px -135px;
- }
- .x-tool-unpin {
- background-position: 0 -150px;
- }
- .x-tool-unpin-over {
- background-position: -15px -150px;
- }
- .x-tool-right {
- background-position: 0 -165px;
- }
- .x-tool-right-over {
- background-position: -15px -165px;
- }
- .x-tool-left {
- background-position: 0 -180px;
- }
- .x-tool-left-over {
- background-position: -15px -180px;
- }
- .x-tool-down {
- background-position: 0 -195px;
- }
- .x-tool-down-over {
- background-position: -15px -195px;
- }
- .x-tool-up {
- background-position: 0 -210px;
- }
- .x-tool-up-over {
- background-position: -15px -210px;
- }
- .x-tool-refresh {
- background-position: 0 -225px;
- }
- .x-tool-refresh-over {
- background-position: -15px -225px;
- }
- .x-tool-plus {
- background-position: 0 -240px;
- }
- .x-tool-plus-over {
- background-position: -15px -240px;
- }
- .x-tool-minus {
- background-position: 0 -255px;
- }
- .x-tool-minus-over {
- background-position: -15px -255px;
- }
- .x-tool-search {
- background-position: 0 -270px;
- }
- .x-tool-search-over {
- background-position: -15px -270px;
- }
- .x-tool-save {
- background-position: 0 -285px;
- }
- .x-tool-save-over {
- background-position: -15px -285px;
- }
- .x-tool-help {
- background-position: 0 -300px;
- }
- .x-tool-help-over {
- background-position: -15px -300px;
- }
- .x-tool-print {
- background-position: 0 -315px;
- }
- .x-tool-print-over {
- background-position: -15px -315px;
- }
- .x-tool-expand {
- background-position: 0 -330px;
- }
- .x-tool-expand-over {
- background-position: -15px -330px;
- }
- .x-tool-collapse {
- background-position: 0 -345px;
- }
- .x-tool-collapse-over {
- background-position: -15px -345px;
- }
- .x-tool-resize {
- background-position: 0 -360px;
- }
- .x-tool-resize-over {
- background-position: -15px -360px;
- }
- .x-tool-move {
- background-position: 0 -375px;
- }
- .x-tool-move-over {
- background-position: -15px -375px;
- }
- .x-panel-ghost {
- z-index: 12000;
- overflow: hidden;
- position: absolute;
- left: 0;
- top: 0;
- opacity: 0.65;
- -moz-opacity: 0.65;
- filter: alpha(opacity=65);
- }
- .x-panel-ghost ul {
- margin: 0;
- padding: 0;
- overflow: hidden;
- font-size: 0;
- line-height: 0;
- display: block;
- }
- .x-panel-ghost * {
- cursor: move !important;
- }
- .x-panel-dd-spacer {
- border: 2px dashed;
- }
- .x-panel-btns {
- padding: 5px;
- overflow: hidden;
- }
- .x-panel-btns td.x-toolbar-cell {
- padding: 3px;
- }
- .x-panel-btns .x-btn-focus .x-btn-left {
- background-position: 0 -147px;
- }
- .x-panel-btns .x-btn-focus .x-btn-right {
- background-position: 0 -168px;
- }
- .x-panel-btns .x-btn-focus .x-btn-center {
- background-position: 0 -189px;
- }
- .x-panel-btns .x-btn-over .x-btn-left {
- background-position: 0 -63px;
- }
- .x-panel-btns .x-btn-over .x-btn-right {
- background-position: 0 -84px;
- }
- .x-panel-btns .x-btn-over .x-btn-center {
- background-position: 0 -105px;
- }
- .x-panel-btns .x-btn-click .x-btn-center {
- background-position: 0 -126px;
- }
- .x-panel-btns .x-btn-click .x-btn-right {
- background-position: 0 -84px;
- }
- .x-panel-btns .x-btn-click .x-btn-left {
- background-position: 0 -63px;
- }
- .x-panel-fbar td,
- .x-panel-fbar span,
- .x-panel-fbar input,
- .x-panel-fbar div,
- .x-panel-fbar select,
- .x-panel-fbar label {
- white-space: nowrap;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-panel-reset .x-panel-body html,
- .x-panel-reset .x-panel-body address,
- .x-panel-reset .x-panel-body blockquote,
- .x-panel-reset .x-panel-body body,
- .x-panel-reset .x-panel-body dd,
- .x-panel-reset .x-panel-body div,
- .x-panel-reset .x-panel-body dl,
- .x-panel-reset .x-panel-body dt,
- .x-panel-reset .x-panel-body fieldset,
- .x-panel-reset .x-panel-body form,
- .x-panel-reset .x-panel-body frame,
- frameset,
- .x-panel-reset .x-panel-body h1,
- .x-panel-reset .x-panel-body h2,
- .x-panel-reset .x-panel-body h3,
- .x-panel-reset .x-panel-body h4,
- .x-panel-reset .x-panel-body h5,
- .x-panel-reset .x-panel-body h6,
- .x-panel-reset .x-panel-body noframes,
- .x-panel-reset .x-panel-body ol,
- .x-panel-reset .x-panel-body p,
- .x-panel-reset .x-panel-body ul,
- .x-panel-reset .x-panel-body center,
- .x-panel-reset .x-panel-body dir,
- .x-panel-reset .x-panel-body hr,
- .x-panel-reset .x-panel-body menu,
- .x-panel-reset .x-panel-body pre {
- display: block;
- }
- .x-panel-reset .x-panel-body li {
- display: list-item;
- }
- .x-panel-reset .x-panel-body head {
- display: none;
- }
- .x-panel-reset .x-panel-body table {
- display: table;
- }
- .x-panel-reset .x-panel-body tr {
- display: table-row;
- }
- .x-panel-reset .x-panel-body thead {
- display: table-header-group;
- }
- .x-panel-reset .x-panel-body tbody {
- display: table-row-group;
- }
- .x-panel-reset .x-panel-body tfoot {
- display: table-footer-group;
- }
- .x-panel-reset .x-panel-body col {
- display: table-column;
- }
- .x-panel-reset .x-panel-body colgroup {
- display: table-column-group;
- }
- .x-panel-reset .x-panel-body td,
- .x-panel-reset .x-panel-body th {
- display: table-cell;
- }
- .x-panel-reset .x-panel-body caption {
- display: table-caption;
- }
- .x-panel-reset .x-panel-body th {
- font-weight: bolder;
- text-align: center;
- }
- .x-panel-reset .x-panel-body caption {
- text-align: center;
- }
- .x-panel-reset .x-panel-body body {
- margin: 8px;
- }
- .x-panel-reset .x-panel-body h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- .x-panel-reset .x-panel-body h2 {
- font-size: 1.5em;
- margin: 0.75em 0;
- }
- .x-panel-reset .x-panel-body h3 {
- font-size: 1.17em;
- margin: 0.83em 0;
- }
- .x-panel-reset .x-panel-body h4,
- .x-panel-reset .x-panel-body p,
- .x-panel-reset .x-panel-body blockquote,
- .x-panel-reset .x-panel-body ul,
- .x-panel-reset .x-panel-body fieldset,
- .x-panel-reset .x-panel-body form,
- .x-panel-reset .x-panel-body ol,
- .x-panel-reset .x-panel-body dl,
- .x-panel-reset .x-panel-body dir,
- .x-panel-reset .x-panel-body menu {
- margin: 1.12em 0;
- }
- .x-panel-reset .x-panel-body h5 {
- font-size: 0.83em;
- margin: 1.5em 0;
- }
- .x-panel-reset .x-panel-body h6 {
- font-size: 0.75em;
- margin: 1.67em 0;
- }
- .x-panel-reset .x-panel-body h1,
- .x-panel-reset .x-panel-body h2,
- .x-panel-reset .x-panel-body h3,
- .x-panel-reset .x-panel-body h4,
- .x-panel-reset .x-panel-body h5,
- .x-panel-reset .x-panel-body h6,
- .x-panel-reset .x-panel-body b,
- .x-panel-reset .x-panel-body strong {
- font-weight: bolder;
- }
- .x-panel-reset .x-panel-body blockquote {
- margin-left: 40px;
- margin-right: 40px;
- }
- .x-panel-reset .x-panel-body i,
- .x-panel-reset .x-panel-body cite,
- .x-panel-reset .x-panel-body em,
- .x-panel-reset .x-panel-body var,
- .x-panel-reset .x-panel-body address {
- font-style: italic;
- }
- .x-panel-reset .x-panel-body pre,
- .x-panel-reset .x-panel-body tt,
- .x-panel-reset .x-panel-body code,
- .x-panel-reset .x-panel-body kbd,
- .x-panel-reset .x-panel-body samp {
- font-family: monospace;
- }
- .x-panel-reset .x-panel-body pre {
- white-space: pre;
- }
- .x-panel-reset .x-panel-body button,
- .x-panel-reset .x-panel-body textarea,
- .x-panel-reset .x-panel-body input,
- .x-panel-reset .x-panel-body select {
- display: inline-block;
- }
- .x-panel-reset .x-panel-body big {
- font-size: 1.17em;
- }
- .x-panel-reset .x-panel-body small,
- .x-panel-reset .x-panel-body sub,
- .x-panel-reset .x-panel-body sup {
- font-size: 0.83em;
- }
- .x-panel-reset .x-panel-body sub {
- vertical-align: sub;
- }
- .x-panel-reset .x-panel-body sup {
- vertical-align: super;
- }
- .x-panel-reset .x-panel-body table {
- border-spacing: 2px;
- }
- .x-panel-reset .x-panel-body thead,
- .x-panel-reset .x-panel-body tbody,
- .x-panel-reset .x-panel-body tfoot {
- vertical-align: middle;
- }
- .x-panel-reset .x-panel-body td,
- .x-panel-reset .x-panel-body th {
- vertical-align: inherit;
- }
- .x-panel-reset .x-panel-body s,
- .x-panel-reset .x-panel-body strike,
- .x-panel-reset .x-panel-body del {
- text-decoration: line-through;
- }
- .x-panel-reset .x-panel-body hr {
- border: 1px inset;
- }
- .x-panel-reset .x-panel-body ol,
- .x-panel-reset .x-panel-body ul,
- .x-panel-reset .x-panel-body dir,
- .x-panel-reset .x-panel-body menu,
- .x-panel-reset .x-panel-body dd {
- margin-left: 40px;
- }
- .x-panel-reset .x-panel-body ul,
- .x-panel-reset .x-panel-body menu,
- .x-panel-reset .x-panel-body dir {
- list-style-type: disc;
- }
- .x-panel-reset .x-panel-body ol {
- list-style-type: decimal;
- }
- .x-panel-reset .x-panel-body ol ul,
- .x-panel-reset .x-panel-body ul ol,
- .x-panel-reset .x-panel-body ul ul,
- .x-panel-reset .x-panel-body ol ol {
- margin-top: 0;
- margin-bottom: 0;
- }
- .x-panel-reset .x-panel-body u,
- .x-panel-reset .x-panel-body ins {
- text-decoration: underline;
- }
- .x-panel-reset .x-panel-body br:before {
- content: "\a";
- }
- .x-panel-reset .x-panel-body :before,
- .x-panel-reset .x-panel-body :after {
- white-space: pre-line;
- }
- .x-panel-reset .x-panel-body center {
- text-align: center;
- }
- .x-panel-reset .x-panel-body :link,
- .x-panel-reset .x-panel-body :visited {
- text-decoration: underline;
- }
- .x-panel-reset .x-panel-body :focus {
- outline: invert dotted thin;
- }
- .x-panel-reset .x-panel-body BDO[DIR="ltr"] {
- direction: ltr;
- unicode-bidi: bidi-override;
- }
- .x-panel-reset .x-panel-body BDO[DIR="rtl"] {
- direction: rtl;
- unicode-bidi: bidi-override;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-window {
- zoom: 1;
- }
- .x-window .x-window-handle {
- opacity: 0;
- -moz-opacity: 0;
- filter: alpha(opacity=0);
- }
- .x-window-proxy {
- border: 0px solid;
- z-index: 12000;
- overflow: hidden;
- position: absolute;
- left: 0;
- top: 0;
- display: none;
- opacity: 0.5;
- -moz-opacity: 0.5;
- filter: alpha(opacity=50);
- }
- .x-window-header {
- overflow: hidden;
- zoom: 1;
- }
- .x-window-bwrap {
- z-index: 1;
- position: relative;
- zoom: 1;
- left: 0;
- top: 0;
- }
- .x-window-tl .x-window-header {
- padding: 5px 0 4px 0;
- }
- .x-window-header-text {
- cursor: pointer;
- }
- .x-window-tc {
- background: transparent repeat-x 0 0;
- overflow: hidden;
- zoom: 1;
- }
- .x-window-tl {
- background: transparent no-repeat 0 0;
- padding-left: 6px;
- zoom: 1;
- z-index: 1;
- position: relative;
- }
- .x-window-tr {
- background: transparent no-repeat right 0;
- padding-right: 6px;
- }
- .x-window-bc {
- background: transparent repeat-x 0 bottom;
- zoom: 1;
- }
- .x-window-bc .x-window-footer {
- padding-bottom: 6px;
- zoom: 1;
- font-size: 0;
- line-height: 0;
- }
- .x-window-bl {
- background: transparent no-repeat 0 bottom;
- padding-left: 6px;
- zoom: 1;
- }
- .x-window-br {
- background: transparent no-repeat right bottom;
- padding-right: 6px;
- zoom: 1;
- }
- .x-window-mc {
- border: 1px solid;
- padding: 0;
- margin: 0;
- }
- .x-window-ml {
- background: transparent repeat-y 0 0;
- padding-left: 6px;
- zoom: 1;
- }
- .x-window-mr {
- background: transparent repeat-y right 0;
- padding-right: 6px;
- zoom: 1;
- }
- .x-window-body {
- overflow: hidden;
- }
- .x-window-bwrap {
- overflow: hidden;
- }
- .x-window-maximized .x-window-bl,
- .x-window-maximized .x-window-br,
- .x-window-maximized .x-window-ml,
- .x-window-maximized .x-window-mr,
- .x-window-maximized .x-window-tl,
- .x-window-maximized .x-window-tr {
- padding: 0;
- }
- .x-window-maximized .x-window-footer {
- padding-bottom: 0;
- }
- .x-window-maximized .x-window-mc {
- border-left: 0 none;
- border-right: 0 none;
- }
- .x-window-tbar .x-toolbar,
- .x-window-bbar .x-toolbar {
- border-left: 0 none;
- border-right: 0 none;
- }
- .x-window-bbar .x-toolbar {
- border-top: 1px solid;
- border-bottom: 0 none;
- }
- .x-window-draggable,
- .x-window-draggable .x-window-header-text {
- cursor: move;
- }
- .x-window-maximized .x-window-draggable,
- .x-window-maximized .x-window-draggable .x-window-header-text {
- cursor: default;
- }
- .x-window-body {
- background-color: transparent;
- }
- .x-panel-ghost .x-window-tl {
- border-bottom: 1px solid;
- }
- .x-panel-collapsed .x-window-tl {
- border-bottom: 1px solid;
- }
- .x-window-maximized-ct {
- overflow: hidden;
- }
- .x-window-maximized .x-window-handle {
- display: none;
- }
- .x-window-sizing-ghost ul {
- border: 0 none !important;
- }
- .x-dlg-focus {
- -moz-outline: 0 none;
- outline: 0 none;
- width: 0;
- height: 0;
- overflow: hidden;
- position: absolute;
- top: 0;
- left: 0;
- }
- .ext-webkit .x-dlg-focus {
- width: 1px;
- height: 1px;
- }
- .x-dlg-mask {
- z-index: 10000;
- display: none;
- position: absolute;
- top: 0;
- left: 0;
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- }
- body.ext-ie6.x-body-masked select {
- visibility: hidden;
- }
- body.ext-ie6.x-body-masked .x-window select {
- visibility: visible;
- }
- .x-window-plain .x-window-mc {
- border: 1px solid;
- }
- .x-window-plain .x-window-body {
- border: 1px solid;
- background: transparent !important;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-html-editor-wrap {
- border: 1px solid;
- }
- .x-html-editor-tb .x-btn-text {
- background: transparent no-repeat;
- }
- .x-html-editor-tb .x-edit-bold,
- .x-menu-item img.x-edit-bold {
- background-position: 0 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-italic,
- .x-menu-item img.x-edit-italic {
- background-position: -16px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-underline,
- .x-menu-item img.x-edit-underline {
- background-position: -32px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-forecolor,
- .x-menu-item img.x-edit-forecolor {
- background-position: -160px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-backcolor,
- .x-menu-item img.x-edit-backcolor {
- background-position: -176px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-justifyleft,
- .x-menu-item img.x-edit-justifyleft {
- background-position: -112px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-justifycenter,
- .x-menu-item img.x-edit-justifycenter {
- background-position: -128px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-justifyright,
- .x-menu-item img.x-edit-justifyright {
- background-position: -144px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-insertorderedlist,
- .x-menu-item img.x-edit-insertorderedlist {
- background-position: -80px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-insertunorderedlist,
- .x-menu-item img.x-edit-insertunorderedlist {
- background-position: -96px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-increasefontsize,
- .x-menu-item img.x-edit-increasefontsize {
- background-position: -48px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-decreasefontsize,
- .x-menu-item img.x-edit-decreasefontsize {
- background-position: -64px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-sourceedit,
- .x-menu-item img.x-edit-sourceedit {
- background-position: -192px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tb .x-edit-createlink,
- .x-menu-item img.x-edit-createlink {
- background-position: -208px 0;
- background-image: url(../images/default/editor/tb-sprite.gif);
- }
- .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
- padding: 5px;
- padding-bottom: 1px;
- }
- .x-html-editor-tb .x-toolbar {
- position: static !important;
- }
- .x-panel-noborder .x-panel-body-noborder {
- border-width: 0;
- }
- .x-panel-noborder .x-panel-header-noborder {
- border-width: 0 0 1px;
- border-style: solid;
- }
- .x-panel-noborder .x-panel-tbar-noborder .x-toolbar {
- border-width: 0 0 1px;
- border-style: solid;
- }
- .x-panel-noborder .x-panel-bbar-noborder .x-toolbar {
- border-width: 1px 0 0 0;
- border-style: solid;
- }
- .x-window-noborder .x-window-mc {
- border-width: 0;
- }
- .x-window-plain .x-window-body-noborder {
- border-width: 0;
- }
- .x-tab-panel-noborder .x-tab-panel-body-noborder {
- border-width: 0;
- }
- .x-tab-panel-noborder .x-tab-panel-header-noborder {
- border-width: 0 0 1px 0;
- }
- .x-tab-panel-noborder .x-tab-panel-footer-noborder {
- border-width: 1px 0 0 0;
- }
- .x-tab-panel-bbar-noborder .x-toolbar {
- border-width: 1px 0 0 0;
- border-style: solid;
- }
- .x-tab-panel-tbar-noborder .x-toolbar {
- border-width: 0 0 1px;
- border-style: solid;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-border-layout-ct {
- position: relative;
- }
- .x-border-panel {
- position: absolute;
- left: 0;
- top: 0;
- }
- .x-tool-collapse-south {
- background-position: 0 -195px;
- }
- .x-tool-collapse-south-over {
- background-position: -15px -195px;
- }
- .x-tool-collapse-north {
- background-position: 0 -210px;
- }
- .x-tool-collapse-north-over {
- background-position: -15px -210px;
- }
- .x-tool-collapse-west {
- background-position: 0 -180px;
- }
- .x-tool-collapse-west-over {
- background-position: -15px -180px;
- }
- .x-tool-collapse-east {
- background-position: 0 -165px;
- }
- .x-tool-collapse-east-over {
- background-position: -15px -165px;
- }
- .x-tool-expand-south {
- background-position: 0 -210px;
- }
- .x-tool-expand-south-over {
- background-position: -15px -210px;
- }
- .x-tool-expand-north {
- background-position: 0 -195px;
- }
- .x-tool-expand-north-over {
- background-position: -15px -195px;
- }
- .x-tool-expand-west {
- background-position: 0 -165px;
- }
- .x-tool-expand-west-over {
- background-position: -15px -165px;
- }
- .x-tool-expand-east {
- background-position: 0 -180px;
- }
- .x-tool-expand-east-over {
- background-position: -15px -180px;
- }
- .x-tool-expand-north,
- .x-tool-expand-south {
- float: right;
- margin: 3px;
- }
- .x-tool-expand-east,
- .x-tool-expand-west {
- float: none;
- margin: 3px 2px;
- }
- .x-accordion-hd .x-tool-toggle {
- background-position: 0 -255px;
- }
- .x-accordion-hd .x-tool-toggle-over {
- background-position: -15px -255px;
- }
- .x-panel-collapsed .x-accordion-hd .x-tool-toggle {
- background-position: 0 -240px;
- }
- .x-panel-collapsed .x-accordion-hd .x-tool-toggle-over {
- background-position: -15px -240px;
- }
- .x-accordion-hd {
- padding-top: 4px;
- padding-bottom: 3px;
- border-top: 0 none;
- background: transparent repeat-x 0 -9px;
- }
- .x-layout-collapsed {
- position: absolute;
- left: -10000px;
- top: -10000px;
- visibility: hidden;
- width: 20px;
- height: 20px;
- overflow: hidden;
- border: 1px solid;
- z-index: 20;
- }
- .ext-border-box .x-layout-collapsed {
- width: 22px;
- height: 22px;
- }
- .x-layout-collapsed-over {
- cursor: pointer;
- }
- .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;
- }
- .x-layout-split {
- position: absolute;
- height: 5px;
- width: 5px;
- line-height: 1px;
- font-size: 1px;
- z-index: 3;
- background-color: transparent;
- }
- .ext-strict .ext-ie6 .x-layout-split {
- background-color: #fff !important;
- filter: alpha(opacity=1);
- }
- .x-layout-split-h {
- background-image: url(../images/default/s.gif);
- background-position: left;
- }
- .x-layout-split-v {
- background-image: url(../images/default/s.gif);
- background-position: top;
- }
- .x-column-layout-ct {
- overflow: hidden;
- zoom: 1;
- }
- .x-column {
- float: left;
- padding: 0;
- margin: 0;
- overflow: hidden;
- zoom: 1;
- }
- .x-column-inner {
- overflow: hidden;
- zoom: 1;
- }
- .x-layout-mini {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- width: 5px;
- height: 35px;
- cursor: pointer;
- opacity: 0.5;
- -moz-opacity: 0.5;
- filter: alpha(opacity=50);
- }
- .x-layout-mini-over,
- .x-layout-collapsed-over .x-layout-mini {
- opacity: 1;
- -moz-opacity: 1;
- filter: none;
- }
- .x-layout-split-west .x-layout-mini {
- top: 48%;
- }
- .x-layout-split-east .x-layout-mini {
- top: 48%;
- }
- .x-layout-split-north .x-layout-mini {
- left: 48%;
- height: 5px;
- width: 35px;
- }
- .x-layout-split-south .x-layout-mini {
- left: 48%;
- height: 5px;
- width: 35px;
- }
- .x-layout-cmini-west .x-layout-mini {
- top: 48%;
- }
- .x-layout-cmini-east .x-layout-mini {
- top: 48%;
- }
- .x-layout-cmini-north .x-layout-mini {
- left: 48%;
- height: 5px;
- width: 35px;
- }
- .x-layout-cmini-south .x-layout-mini {
- left: 48%;
- height: 5px;
- width: 35px;
- }
- .x-layout-cmini-west,
- .x-layout-cmini-east {
- border: 0 none;
- width: 5px !important;
- padding: 0;
- background-color: transparent;
- }
- .x-layout-cmini-north,
- .x-layout-cmini-south {
- border: 0 none;
- height: 5px !important;
- padding: 0;
- background-color: transparent;
- }
- .x-viewport,
- .x-viewport body {
- margin: 0;
- padding: 0;
- border: 0 none;
- overflow: hidden;
- height: 100%;
- }
- .x-abs-layout-item {
- position: absolute;
- left: 0;
- top: 0;
- }
- .ext-ie input.x-abs-layout-item,
- .ext-ie textarea.x-abs-layout-item {
- margin: 0;
- }
- .x-box-layout-ct {
- overflow: hidden;
- zoom: 1;
- }
- .x-box-inner {
- overflow: hidden;
- zoom: 1;
- position: relative;
- left: 0;
- top: 0;
- }
- .x-box-item {
- position: absolute;
- left: 0;
- top: 0;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-progress-wrap {
- border: 1px solid;
- overflow: hidden;
- }
- .x-progress-inner {
- height: 18px;
- background: repeat-x;
- position: relative;
- }
- .x-progress-bar {
- height: 18px;
- float: left;
- width: 0;
- background: repeat-x left center;
- border-top: 1px solid;
- border-bottom: 1px solid;
- border-right: 1px solid;
- }
- .x-progress-text {
- padding: 1px 5px;
- overflow: hidden;
- position: absolute;
- left: 0;
- text-align: center;
- }
- .x-progress-text-back {
- line-height: 16px;
- }
- .ext-ie .x-progress-text-back {
- line-height: 15px;
- }
- .ext-strict .ext-ie7 .x-progress-text-back {
- width: 100%;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-list-header {
- background: repeat-x 0 bottom;
- cursor: default;
- zoom: 1;
- height: 22px;
- }
- .x-list-header-inner div {
- display: block;
- float: left;
- overflow: hidden;
- -o-text-overflow: ellipsis;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .x-list-header-inner div em {
- display: block;
- border-left: 1px solid;
- padding: 4px 4px;
- overflow: hidden;
- -moz-user-select: none;
- -khtml-user-select: none;
- line-height: 14px;
- }
- .x-list-body {
- overflow: auto;
- overflow-x: hidden;
- overflow-y: auto;
- zoom: 1;
- float: left;
- width: 100%;
- }
- .x-list-body dl {
- zoom: 1;
- }
- .x-list-body dt {
- display: block;
- float: left;
- overflow: hidden;
- -o-text-overflow: ellipsis;
- text-overflow: ellipsis;
- white-space: nowrap;
- cursor: pointer;
- zoom: 1;
- }
- .x-list-body dt em {
- display: block;
- padding: 3px 4px;
- overflow: hidden;
- -moz-user-select: none;
- -khtml-user-select: none;
- }
- .x-list-resizer {
- border-left: 1px solid;
- border-right: 1px solid;
- position: absolute;
- left: 0;
- top: 0;
- }
- .x-list-header-inner em.sort-asc {
- background: transparent no-repeat center 0;
- border-style: solid;
- border-width: 0 1px 1px;
- padding-bottom: 3px;
- }
- .x-list-header-inner em.sort-desc {
- background: transparent no-repeat center -23px;
- border-style: solid;
- border-width: 0 1px 1px;
- padding-bottom: 3px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-slider {
- zoom: 1;
- }
- .x-slider-inner {
- position: relative;
- left: 0;
- top: 0;
- overflow: visible;
- zoom: 1;
- }
- .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: none;
- -khtml-user-select: none;
- -webkit-user-select: ignore;
- display: block;
- overflow: hidden;
- }
- .x-slider-horz {
- padding-left: 7px;
- background: transparent no-repeat 0 -22px;
- }
- .x-slider-horz .x-slider-end {
- padding-right: 7px;
- zoom: 1;
- background: transparent no-repeat right -44px;
- }
- .x-slider-horz .x-slider-inner {
- background: transparent repeat-x 0 0;
- height: 22px;
- }
- .x-slider-horz .x-slider-thumb {
- width: 14px;
- height: 15px;
- position: absolute;
- left: 0;
- top: 3px;
- background: transparent no-repeat 0 0;
- }
- .x-slider-horz .x-slider-thumb-over {
- background-position: -14px -15px;
- }
- .x-slider-horz .x-slider-thumb-drag {
- background-position: -28px -30px;
- }
- .x-slider-vert {
- padding-top: 7px;
- background: transparent no-repeat -44px 0;
- width: 22px;
- }
- .x-slider-vert .x-slider-end {
- padding-bottom: 7px;
- zoom: 1;
- background: transparent no-repeat -22px bottom;
- }
- .x-slider-vert .x-slider-inner {
- background: transparent repeat-y 0 0;
- }
- .x-slider-vert .x-slider-thumb {
- width: 15px;
- height: 14px;
- position: absolute;
- left: 3px;
- bottom: 0;
- background: transparent no-repeat 0 0;
- }
- .x-slider-vert .x-slider-thumb-over {
- background-position: -15px -14px;
- }
- .x-slider-vert .x-slider-thumb-drag {
- background-position: -30px -28px;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-window-dlg .x-window-body {
- border: 0 none !important;
- padding: 5px 10px;
- overflow: hidden !important;
- }
- .x-window-dlg .x-window-mc {
- border: 0 none !important;
- }
- .x-window-dlg .ext-mb-input {
- margin-top: 4px;
- width: 95%;
- }
- .x-window-dlg .ext-mb-textarea {
- margin-top: 4px;
- }
- .x-window-dlg .x-progress-wrap {
- margin-top: 4px;
- }
- .ext-ie .x-window-dlg .x-progress-wrap {
- margin-top: 6px;
- }
- .x-window-dlg .x-msg-box-wait {
- background: transparent no-repeat left;
- display: block;
- width: 300px;
- padding-left: 18px;
- line-height: 18px;
- }
- .x-window-dlg .ext-mb-icon {
- float: left;
- width: 47px;
- height: 32px;
- }
- .x-window-dlg .x-dlg-icon .ext-mb-content {
- zoom: 1;
- margin-left: 47px;
- }
- .x-window-dlg .ext-mb-info,
- .x-window-dlg .ext-mb-warning,
- .x-window-dlg .ext-mb-question,
- .x-window-dlg .ext-mb-error {
- background: transparent no-repeat top left;
- }
- .ext-gecko2 .ext-mb-fix-cursor {
- overflow: auto;
- } /*!
- * Ext JS Library 3.4.0
- * Copyright(c) 2006-2011 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
- .x-pivotgrid .x-grid3-header-offset table {
- width: 100%;
- border-collapse: collapse;
- }
- .x-pivotgrid .x-grid3-header-offset table td {
- padding: 4px 3px 4px 5px;
- text-align: center;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 11px;
- line-height: 13px;
- font-family: tahoma;
- }
- .x-pivotgrid .x-grid3-row-headers {
- display: block;
- float: left;
- }
- .x-pivotgrid .x-grid3-row-headers table {
- height: 100%;
- width: 100%;
- border-collapse: collapse;
- }
- .x-pivotgrid .x-grid3-row-headers table td {
- height: 18px;
- padding: 2px 7px 0 0;
- text-align: right;
- text-overflow: ellipsis;
- font-size: 11px;
- font-family: tahoma;
- }
- .ext-gecko .x-pivotgrid .x-grid3-row-headers table td {
- height: 21px;
- }
- .x-grid3-header-title {
- top: 0%;
- left: 0%;
- position: absolute;
- text-align: center;
- vertical-align: middle;
- font-family: tahoma;
- font-size: 11px;
- padding: auto 1px;
- display: table-cell;
- }
- .x-grid3-header-title span {
- position: absolute;
- top: 50%;
- left: 0%;
- width: 100%;
- margin-top: -6px;
- }
|