ext-ie-debug.css 357 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as
  7. published by the Free Software Foundation and appearing in the file LICENSE included in the
  8. packaging of this file.
  9. Please review the following information to ensure the GNU General Public License version 3.0
  10. requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  11. If you are unsure which license is appropriate for your use, please contact the sales department
  12. at http://www.sencha.com/contact.
  13. Build date: 2012-07-04 21:11:01 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
  14. */
  15. /**
  16. * @class Global_CSS
  17. *
  18. * Global CSS variables and mixins of Sencha Touch.
  19. */
  20. /**
  21. * @var {string} $prefix
  22. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  23. * JavaScript application.
  24. */
  25. /**
  26. * @var {string} $theme-name
  27. * The name of the theme. This must match the the output directory of the images.
  28. * (defaults to 'default')
  29. */
  30. /**
  31. * @var {boolean/string} $relative-image-path-for-uis
  32. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  33. * It can also be a string of the path value.
  34. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  35. */
  36. /**
  37. * @var {string} $font-family
  38. * The default font-family to be used throughout the theme.
  39. */
  40. /**
  41. * @var {string} $base-gradient
  42. * The base gradient to be used throughout the theme.
  43. */
  44. /**
  45. * @var {color} $base-color
  46. * The base color to be used throughout the theme.
  47. */
  48. /**
  49. * @var {boolean} $include-not-found-images
  50. * True to include files which are not found when compiling your SASS
  51. */
  52. /**
  53. * @var {boolean} $include-ie
  54. * True to include Internet Explorer specific rules
  55. */
  56. /**
  57. * @var {boolean} $include-ff
  58. * True to include Firefox specific rules
  59. */
  60. /**
  61. * @var {boolean} $include-chrome
  62. * True to include Chrome specific rules
  63. */
  64. /**
  65. * @var {boolean} $include-safari
  66. * True to include Safari specific rules
  67. */
  68. /**
  69. * @var {boolean} $include-opera
  70. * True to include Opera specific rules
  71. */
  72. /**
  73. * @var {boolean} $include-webkit
  74. * True to include Webkit specific rules
  75. */
  76. /**
  77. * @var {boolean} $compile-all
  78. * True to copile all CSS, even if above include rules are false
  79. */
  80. /**
  81. * @var {boolean} $scope-reset-css
  82. * True to scope the reset CSS within the $prefix variable.
  83. */
  84. /**
  85. * @var {color} $css-shadow-background-color
  86. * The base color for CSS shadows
  87. */
  88. /**
  89. * @var {color} $include-shadow-images
  90. * True to include all shadow images.
  91. */
  92. /**
  93. * @class Ext.form.field.Base
  94. */
  95. /**
  96. * @var {measurement} $form-field-height
  97. * Height for form fields.
  98. */
  99. /**
  100. * @var {measurement} $form-toolbar-field-height
  101. * Height for form fields in toolbar.
  102. */
  103. /**
  104. * @var {measurement} $form-error-icon-width
  105. * Width for form error icons.
  106. */
  107. /**
  108. * @var {measurement} $form-field-padding
  109. * Padding around form fields.
  110. */
  111. /**
  112. * @var {measurement} $form-field-font-size
  113. * Font size for form fields.
  114. */
  115. /**
  116. * @var {font-family} $form-field-font-family
  117. * Font family for form fields.
  118. */
  119. /**
  120. * @var {font-weight} $form-field-font-weight
  121. * Font weight for form fields.
  122. */
  123. /**
  124. * @var {font} $form-field-font
  125. * Font for form fields.
  126. */
  127. /**
  128. * @var {color} $form-field-color
  129. * Text color for form fields.
  130. */
  131. /**
  132. * @var {color} $form-field-empty-color
  133. * Text color for empty form fields.
  134. */
  135. /**
  136. * @var {color} $form-field-border-color
  137. * Border color for form fields.
  138. */
  139. /**
  140. * @var {measurement} $form-field-border-width
  141. * Border width for form fields.
  142. */
  143. /**
  144. * @var {color} $form-field-focus-border-color
  145. * Border color for focused form fields.
  146. */
  147. /**
  148. * @var {color} $form-field-invalid-border-color
  149. * Border color for invalid form fields.
  150. */
  151. /**
  152. * @var {color} $form-field-background-color
  153. * Background color for form fields.
  154. */
  155. /**
  156. * @var {string} $form-field-background-image
  157. * Background image for form fields.
  158. */
  159. /**
  160. * @var {color} $form-field-invalid-background-color
  161. * Background color for invalid form fields.
  162. */
  163. /**
  164. * @var {string} $form-field-invalid-background-image
  165. * Background image for invalid form fields.
  166. */
  167. /**
  168. * @var {background-repeat} $form-field-invalid-background-repeat
  169. * Background repeat for invalid form fields.
  170. */
  171. /**
  172. * @var {background-position} $form-field-invalid-background-position
  173. * Background position for invalid form fields.
  174. */
  175. /**
  176. * @class Ext.form.field.TextArea
  177. */
  178. /**
  179. * @class Ext.form.Label
  180. */
  181. /**
  182. * @class Ext.form.field.Checkbox
  183. */
  184. /**
  185. * @class Ext.form.field.Radio
  186. */
  187. /* Error messages */
  188. /**
  189. * @class Ext.form.field.Trigger
  190. */
  191. /**
  192. * @class Ext.form.FieldSet
  193. */
  194. /**
  195. * @class Ext.slider.Multi
  196. */
  197. /**
  198. * Creates a background gradient.
  199. *
  200. * @param {Color} $bg-color The background color of the gradient
  201. * @param {String/List} [$type] The type of gradient to be used. Can either
  202. * be a String which is a predefined gradient, or it can can be a list of
  203. * color_stops. If none is set, it will still set the `background-color`
  204. * to the $background-color.
  205. * @param {String} [$direction=top] The direction of the gradient. Can either be
  206. * `top` or `left`.
  207. * @member Global_CSS
  208. */
  209. /*
  210. * Method which inserts a full background-image property for a theme image.
  211. * It checks if the file exists and if it doesn't, it'll throw an error.
  212. * By default it will not include the background-image property if it is not found,
  213. * but this can be changed by changing the default value of $include-missing-images to
  214. * be true.
  215. */
  216. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  217. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  218. h4, h5, h6, pre, code, form, fieldset, legend,
  219. input, textarea, p, blockquote, th, td {
  220. margin: 0;
  221. padding: 0; }
  222. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  223. table {
  224. border-collapse: collapse;
  225. border-spacing: 0; }
  226. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  227. fieldset, img {
  228. border: 0; }
  229. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  230. address, caption, cite, code,
  231. dfn, em, strong, th, var {
  232. font-style: normal;
  233. font-weight: normal; }
  234. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  235. li {
  236. list-style: none; }
  237. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  238. caption, th {
  239. text-align: left; }
  240. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  241. h1, h2, h3, h4, h5, h6 {
  242. font-size: 100%; }
  243. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  244. q:before,
  245. q:after {
  246. content: ""; }
  247. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  248. abbr, acronym {
  249. border: 0;
  250. font-variant: normal; }
  251. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  252. sup {
  253. vertical-align: text-top; }
  254. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  255. sub {
  256. vertical-align: text-bottom; }
  257. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  258. input, textarea, select {
  259. font-family: inherit;
  260. font-size: inherit;
  261. font-weight: inherit; }
  262. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  263. *:focus {
  264. outline: none; }
  265. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  266. .x-border-box,
  267. .x-border-box * {
  268. box-sizing: border-box;
  269. -moz-box-sizing: border-box;
  270. -ms-box-sizing: border-box;
  271. -webkit-box-sizing: border-box; }
  272. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  273. .x-body {
  274. color: black;
  275. font-size: 12px;
  276. font-family: tahoma, arial, verdana, sans-serif; }
  277. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  278. .x-rtl {
  279. direction: rtl; }
  280. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  281. .x-ltr {
  282. direction: ltr; }
  283. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  284. .x-clear {
  285. overflow: hidden;
  286. clear: both;
  287. font-size: 0;
  288. line-height: 0;
  289. display: table; }
  290. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  291. .x-strict .x-ie7 .x-clear {
  292. height: 0;
  293. width: 0; }
  294. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  295. .x-layer {
  296. position: absolute !important;
  297. overflow: hidden;
  298. zoom: 1; }
  299. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  300. .x-shim {
  301. position: absolute;
  302. left: 0;
  303. top: 0;
  304. overflow: hidden;
  305. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  306. opacity: 0; }
  307. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  308. .x-hide-display {
  309. display: none !important; }
  310. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  311. .x-hide-visibility {
  312. visibility: hidden !important; }
  313. /* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
  314. .x-item-disabled .x-form-item-label,
  315. .x-item-disabled .x-form-field,
  316. .x-item-disabled .x-form-cb-label,
  317. .x-item-disabled .x-form-trigger {
  318. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  319. opacity: 0.3; }
  320. /* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
  321. .x-ie6 .x-item-disabled {
  322. filter: none; }
  323. /* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
  324. .x-hidden,
  325. .x-hide-offsets {
  326. display: block !important;
  327. visibility: hidden !important;
  328. position: absolute!important;
  329. left: -10000px !important;
  330. top: -10000px !important; }
  331. /* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
  332. .x-hide-nosize {
  333. height: 0!important;
  334. width: 0!important; }
  335. /* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
  336. .x-masked-relative {
  337. position: relative; }
  338. /* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
  339. .x-ie6 .x-masked select,
  340. .x-ie6.x-body-masked select {
  341. visibility: hidden !important; }
  342. /* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
  343. .x-css-shadow {
  344. position: absolute;
  345. -moz-border-radius: 5px 5px;
  346. -webkit-border-radius: 5px 5px;
  347. -o-border-radius: 5px 5px;
  348. -ms-border-radius: 5px 5px;
  349. -khtml-border-radius: 5px 5px;
  350. border-radius: 5px 5px; }
  351. /* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
  352. .x-ie-shadow {
  353. background-color: #777;
  354. display: none;
  355. position: absolute;
  356. overflow: hidden;
  357. zoom: 1; }
  358. /* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
  359. .x-box-tl {
  360. background: transparent no-repeat 0 0;
  361. zoom: 1; }
  362. /* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
  363. .x-box-tc {
  364. height: 8px;
  365. background: transparent repeat-x 0 0;
  366. overflow: hidden; }
  367. /* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
  368. .x-box-tr {
  369. background: transparent no-repeat right -8px; }
  370. /* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
  371. .x-box-ml {
  372. background: transparent repeat-y 0;
  373. padding-left: 4px;
  374. overflow: hidden;
  375. zoom: 1; }
  376. /* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
  377. .x-box-mc {
  378. background: repeat-x 0 -16px;
  379. padding: 4px 10px; }
  380. /* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
  381. .x-box-mc h3 {
  382. margin: 0 0 4px 0;
  383. zoom: 1; }
  384. /* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
  385. .x-box-mr {
  386. background: transparent repeat-y right;
  387. padding-right: 4px;
  388. overflow: hidden; }
  389. /* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
  390. .x-box-bl {
  391. background: transparent no-repeat 0 -16px;
  392. zoom: 1; }
  393. /* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
  394. .x-box-bc {
  395. background: transparent repeat-x 0 -8px;
  396. height: 8px;
  397. overflow: hidden; }
  398. /* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
  399. .x-box-br {
  400. background: transparent no-repeat right -24px; }
  401. /* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
  402. .x-box-tl, .x-box-bl {
  403. padding-left: 8px;
  404. overflow: hidden; }
  405. /* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
  406. .x-box-tr, .x-box-br {
  407. padding-right: 8px;
  408. overflow: hidden; }
  409. /* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
  410. .x-box-tl {
  411. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  412. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  413. .x-box-tc {
  414. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  415. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  416. .x-box-tr {
  417. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  418. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  419. .x-box-ml {
  420. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  421. /* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
  422. .x-box-mc {
  423. background-color: #eee;
  424. background-image: url('../../resources/themes/images/default/box/tb.gif');
  425. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  426. color: #393939;
  427. font-size: 15px; }
  428. /* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
  429. .x-box-mc h3 {
  430. font-size: 18px;
  431. font-weight: bold; }
  432. /* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
  433. .x-box-mr {
  434. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  435. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  436. .x-box-bl {
  437. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  438. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  439. .x-box-bc {
  440. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  441. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  442. .x-box-br {
  443. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  444. /* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
  445. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  446. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  447. /* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
  448. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  449. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  450. /* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
  451. .x-box-blue .x-box-mc {
  452. background-color: #c3daf9; }
  453. /* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
  454. .x-box-blue .x-box-mc h3 {
  455. color: #17385b; }
  456. /* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
  457. .x-box-blue .x-box-ml {
  458. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  459. /* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
  460. .x-box-blue .x-box-mr {
  461. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  462. /* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
  463. .x-container {
  464. zoom: 1; }
  465. /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
  466. .x-container:before {
  467. content: "";
  468. clear: both;
  469. display: table; }
  470. /* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
  471. table.x-container:before,
  472. tbody.x-container:before,
  473. tr.x-container:before {
  474. display: none; }
  475. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  476. .x-focus-element {
  477. position: absolute;
  478. top: -10px;
  479. left: -10px;
  480. width: 0px;
  481. height: 0px; }
  482. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  483. .x-focus-frame {
  484. position: absolute;
  485. left: 0px;
  486. top: 0px;
  487. z-index: 100000000;
  488. width: 0px;
  489. height: 0px; }
  490. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  491. .x-focus-frame-top,
  492. .x-focus-frame-bottom,
  493. .x-focus-frame-left,
  494. .x-focus-frame-right {
  495. position: absolute;
  496. top: 0px;
  497. left: 0px; }
  498. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  499. .x-focus-frame-top,
  500. .x-focus-frame-bottom {
  501. border-top: solid 2px #15428b;
  502. height: 2px; }
  503. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  504. .x-focus-frame-left,
  505. .x-focus-frame-right {
  506. border-left: solid 2px #15428b;
  507. width: 2px; }
  508. /**
  509. * Creates the base structure of a BoundList.
  510. * @member Ext.view.BoundList
  511. */
  512. /**
  513. * Creates the base structure of an Ext.Button
  514. * @member Ext.button.Button
  515. */
  516. /**
  517. * Creates a visual theme of an Ext.Button
  518. * @member Ext.button.Button
  519. */
  520. /**
  521. * Creates the base structure of a button group.
  522. * @member Ext.container.ButtonGroup
  523. */
  524. /**
  525. * Creates a visual theme of a button group.
  526. * @member Ext.container.ButtonGroup
  527. */
  528. /**
  529. * Creates the base structure of a date picker.
  530. * @member Ext.picker.Date
  531. */
  532. /**
  533. * Creates base structure for Ext.picker.Color
  534. * @member Ext.picker.Color
  535. */
  536. /**
  537. * Creates the base structure of a Menu
  538. * @member Ext.menu.Menu
  539. */
  540. /**
  541. * Create the base structure of an Ext.Panel
  542. * @member Ext.panel.Panel
  543. */
  544. /**
  545. * Creates a visual theme for an Ext.Panel
  546. * @member Ext.panel.Panel
  547. */
  548. /**
  549. * Creates base structure for Toolbar
  550. * @member Ext.toolbar.Toolbar
  551. */
  552. /**
  553. * Creates a visual theme for an Toolbar.
  554. * @param {String} $ui The name of the UI
  555. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  556. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  557. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  558. * @member Ext.toolbar.Toolbar
  559. */
  560. /**
  561. * Creates the base structure of Ext.form.Panel.
  562. * @member Ext.form.Panel
  563. */
  564. /**
  565. * Creates the base structure of form field.
  566. * @member Ext.form.field.Base
  567. */
  568. /**
  569. * Creates the base structure of FieldSet.
  570. * @member Ext.form.FieldSet
  571. */
  572. /**
  573. * Creates the base structure of file field.
  574. * @member Ext.form.field.File
  575. */
  576. /**
  577. * Creates the base structure of checkbox field.
  578. * @member Ext.form.field.Checkbox
  579. */
  580. /**
  581. * Creates the base structure of CheckboxGroup.
  582. * @member Ext.form.CheckboxGroup
  583. */
  584. /**
  585. * Creates the base structure of trigger field.
  586. * @member Ext.form.field.Trigger
  587. */
  588. /**
  589. * Creates the base structure of HtmlEditor field.
  590. * @member Ext.form.field.HtmlEditor
  591. */
  592. /**
  593. * Creates the base structure of QuickTip.
  594. * @member Ext.tip.QuickTip
  595. */
  596. /**
  597. * Creates the base structure of an Ext.Window
  598. * @member Ext.window.Window
  599. */
  600. /**
  601. * Creates a visual theme for an Ext.Panel
  602. * @member Ext.window.Window
  603. */
  604. /**
  605. * Creates a visual theme for TabBar
  606. * @member Ext.tab.Bar
  607. */
  608. /**
  609. * Creates the base structure of a Tab.
  610. * @member Ext.tab.Tab
  611. */
  612. /**
  613. * Creates the base structure of slider.
  614. * @member Ext.slider.Multi
  615. */
  616. /**
  617. * Creates base structure for a Grid.
  618. * @member Ext.grid.Panel
  619. */
  620. /**
  621. * Creates the base structure of Tree.
  622. * @member Ext.tree.Panel
  623. */
  624. /* Styles for Ext.LoadMask */
  625. /* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  626. .x-mask {
  627. z-index: 100;
  628. position: absolute;
  629. top: 0;
  630. left: 0;
  631. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  632. opacity: 0.5;
  633. width: 100%;
  634. height: 100%;
  635. zoom: 1;
  636. background: #cccccc; }
  637. /* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  638. .x-mask-msg {
  639. z-index: 20001;
  640. position: absolute;
  641. top: 0;
  642. left: 0;
  643. padding: 2px;
  644. border: 1px solid;
  645. border-color: #99bce8; }
  646. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  647. .x-mask-msg div {
  648. padding: 5px 10px 5px 25px;
  649. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  650. background-repeat: no-repeat;
  651. background-position: 5px center;
  652. cursor: wait;
  653. border: 1px solid #a3bad9;
  654. background-color: #eeeeee;
  655. color: #222222;
  656. font: normal 11px tahoma, arial, verdana, sans-serif; }
  657. /**
  658. * Creates the base structure of an Ext.ProgressBar
  659. * @member Ext.ProgressBar
  660. */
  661. /**
  662. * Creates a visual theme for an Ext.ProgressBar
  663. * @member Ext.ProgressBar
  664. */
  665. /**
  666. * Creates base structure for a Draw Component.
  667. * @member Ext.draw.Component
  668. */
  669. /**
  670. * Creates the base structure of Viewport.
  671. * @member Ext.container.Viewport
  672. */
  673. /**
  674. * W3C suggested default style sheet for HTML 4:
  675. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  676. *
  677. * @member Global_CSS
  678. */
  679. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  680. .x-boundlist {
  681. border-width: 1px;
  682. border-style: solid;
  683. border-color: #98c0f4;
  684. background: white; }
  685. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  686. .x-boundlist .x-toolbar {
  687. border-width: 1px 0 0 0; }
  688. /* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  689. .x-strict .x-ie6 .x-boundlist-list-ct,
  690. .x-strict .x-ie7 .x-boundlist-list-ct {
  691. position: relative; }
  692. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  693. .x-boundlist-item {
  694. padding: 2px;
  695. user-select: none;
  696. -o-user-select: none;
  697. -ms-user-select: none;
  698. -moz-user-select: -moz-none;
  699. -webkit-user-select: none;
  700. cursor: default;
  701. cursor: pointer;
  702. cursor: hand;
  703. position: relative;
  704. /*allow hover in IE on empty items*/
  705. border-width: 1px;
  706. border-style: dotted;
  707. border-color: white; }
  708. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  709. .x-boundlist-selected {
  710. background: #cbdaf0;
  711. border-color: #8eabe4; }
  712. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  713. .x-boundlist-item-over {
  714. background: #dfe8f6;
  715. border-color: #a3bae9; }
  716. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  717. .x-boundlist-floating {
  718. border-top-width: 0; }
  719. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  720. .x-boundlist-above {
  721. border-top-width: 1px;
  722. border-bottom-width: 1px; }
  723. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  724. .x-btn {
  725. display: inline-block;
  726. zoom: 1;
  727. *display: inline;
  728. position: relative;
  729. cursor: pointer;
  730. cursor: hand;
  731. white-space: nowrap;
  732. vertical-align: middle;
  733. background-repeat: no-repeat; }
  734. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  735. .x-btn * {
  736. cursor: pointer;
  737. cursor: hand; }
  738. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  739. .x-btn em {
  740. background-repeat: no-repeat; }
  741. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  742. .x-btn em a {
  743. text-decoration: none;
  744. display: block;
  745. color: inherit;
  746. width: 100%;
  747. zoom: 1; }
  748. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  749. .x-btn button {
  750. width: 100%;
  751. display: block;
  752. margin: 0;
  753. padding: 0;
  754. border: 0;
  755. background: none;
  756. outline: 0 none;
  757. overflow: hidden;
  758. vertical-align: bottom;
  759. -webkit-appearance: none; }
  760. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  761. .x-btn button::-moz-focus-inner {
  762. border: 0;
  763. padding: 0; }
  764. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  765. .x-btn .x-btn-inner {
  766. display: block;
  767. white-space: nowrap;
  768. background-color: transparent;
  769. background-repeat: no-repeat;
  770. background-position: left center;
  771. overflow: hidden; }
  772. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  773. .x-btn .x-btn-left .x-btn-inner {
  774. text-align: left; }
  775. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  776. .x-btn .x-btn-center .x-btn-inner {
  777. text-align: center; }
  778. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  779. .x-btn .x-btn-right .x-btn-inner {
  780. text-align: right; }
  781. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  782. .x-btn-disabled span {
  783. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  784. opacity: 0.5; }
  785. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  786. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  787. filter: none; }
  788. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  789. .x-ie7 .x-btn-disabled,
  790. .x-ie8 .x-btn-disabled {
  791. filter: none; }
  792. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  793. .x-ie6 .x-btn-disabled .x-btn-icon,
  794. .x-ie7 .x-btn-disabled .x-btn-icon,
  795. .x-ie8 .x-btn-disabled .x-btn-icon {
  796. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  797. opacity: 0.6; }
  798. /* IE9 shows scrollbars in a button unless this is set */
  799. /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  800. .x-ie9 .x-btn button {
  801. overflow: visible!important; }
  802. /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  803. * html .x-ie .x-btn button {
  804. width: 1px; }
  805. /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  806. .x-ie .x-btn button {
  807. overflow-x: visible;
  808. /*prevents extra horiz space in IE*/
  809. vertical-align: baseline;
  810. /*IE doesn't like bottom*/ }
  811. /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  812. .x-strict .x-ie6 .x-btn .x-frame-mc,
  813. .x-strict .x-ie7 .x-btn .x-frame-mc {
  814. height: 100%; }
  815. /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
  816. /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  817. .x-btn .x-frame-mc {
  818. vertical-align: middle;
  819. white-space: nowrap;
  820. cursor: pointer; }
  821. /* Only center when all there is is text. Otherwise solo icons get centered. */
  822. /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  823. .x-btn-noicon .x-frame-mc {
  824. text-align: center; }
  825. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  826. .x-btn-icon-text-left .x-btn-icon {
  827. background-position: left center; }
  828. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  829. .x-btn-icon-text-right .x-btn-icon {
  830. background-position: right center; }
  831. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  832. .x-btn-icon-text-top .x-btn-icon {
  833. background-position: center top; }
  834. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  835. .x-btn-icon-text-bottom .x-btn-icon {
  836. background-position: center bottom; }
  837. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  838. .x-btn button, .x-btn a {
  839. position: relative; }
  840. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  841. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  842. position: absolute;
  843. background-repeat: no-repeat; }
  844. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  845. .x-btn-arrow-right {
  846. background: transparent no-repeat right center;
  847. padding-right: 12px; }
  848. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  849. .x-btn-arrow-right .x-btn-inner {
  850. padding-right: 0 !important; }
  851. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  852. .x-toolbar .x-btn-arrow-right {
  853. padding-right: 12px; }
  854. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  855. .x-btn-arrow-bottom {
  856. background: transparent no-repeat center bottom;
  857. padding-bottom: 12px; }
  858. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  859. .x-btn-arrow {
  860. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  861. display: block; }
  862. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  863. .x-btn-split-right,
  864. .x-btn-over .x-btn-split-right {
  865. background: transparent no-repeat right center;
  866. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  867. padding-right: 14px !important; }
  868. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  869. .x-btn-split-bottom,
  870. .x-btn-over .x-btn-split-bottom {
  871. background: transparent no-repeat center bottom;
  872. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  873. padding-bottom: 14px; }
  874. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  875. .x-toolbar .x-btn-split-right {
  876. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  877. padding-right: 12px !important; }
  878. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  879. .x-toolbar .x-btn-split-bottom {
  880. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  881. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  882. .x-btn-split {
  883. display: block; }
  884. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  885. .x-item-disabled,
  886. .x-item-disabled * {
  887. cursor: default; }
  888. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  889. .x-cycle-fixed-width .x-btn-inner {
  890. text-align: inherit; }
  891. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  892. .x-btn-over .x-btn-split-right {
  893. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  894. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  895. .x-btn-over .x-btn-split-bottom {
  896. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  897. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  898. .x-btn-default-small {
  899. border-color: #d1d1d1; }
  900. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  901. .x-btn-default-small {
  902. padding: 2px 2px 2px 2px;
  903. border-width: 1px;
  904. border-style: solid;
  905. background-color: white; }
  906. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  907. .x-nlg .x-btn-default-small-mc {
  908. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  909. background-color: white; }
  910. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  911. .x-nbr .x-btn-default-small {
  912. padding: 0 !important;
  913. border-width: 0 !important;
  914. -moz-border-radius: 0px;
  915. -webkit-border-radius: 0px;
  916. -o-border-radius: 0px;
  917. -ms-border-radius: 0px;
  918. -khtml-border-radius: 0px;
  919. border-radius: 0px;
  920. background-color: transparent;
  921. background-position: 1100303px 1000303px; }
  922. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  923. .x-nbr .x-btn-default-small-tl,
  924. .x-nbr .x-btn-default-small-bl,
  925. .x-nbr .x-btn-default-small-tr,
  926. .x-nbr .x-btn-default-small-br,
  927. .x-nbr .x-btn-default-small-tc,
  928. .x-nbr .x-btn-default-small-bc,
  929. .x-nbr .x-btn-default-small-ml,
  930. .x-nbr .x-btn-default-small-mr {
  931. zoom: 1;
  932. background-image: url('../../resources/themes/images/default/btn/btn-default-small-corners.gif'); }
  933. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  934. .x-nbr .x-btn-default-small-ml,
  935. .x-nbr .x-btn-default-small-mr {
  936. zoom: 1;
  937. background-image: url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
  938. background-position: 0 0; }
  939. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  940. .x-nbr .x-btn-default-small-mc {
  941. padding: 0px 0px 0px 0px; }
  942. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  943. .x-strict .x-ie7 .x-btn-default-small-tl,
  944. .x-strict .x-ie7 .x-btn-default-small-bl {
  945. position: relative;
  946. right: 0; }
  947. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  948. .x-btn-default-small .x-btn-inner {
  949. font-size: 11px;
  950. font-weight: normal;
  951. font-family: tahoma, arial, verdana, sans-serif;
  952. color: #333333;
  953. background-repeat: no-repeat;
  954. padding: 0 4px; }
  955. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  956. .x-btn-default-small-icon button,
  957. .x-btn-default-small-icon a,
  958. .x-btn-default-small-icon .x-btn-inner,
  959. .x-btn-default-small-noicon button,
  960. .x-btn-default-small-noicon a,
  961. .x-btn-default-small-noicon .x-btn-inner {
  962. height: 16px;
  963. line-height: 16px; }
  964. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  965. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  966. padding: 0; }
  967. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  968. .x-btn-default-small-icon .x-btn-inner {
  969. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  970. width: 16px;
  971. padding: 0; }
  972. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  973. .x-btn-default-small-icon .x-btn-icon {
  974. width: 16px;
  975. height: 16px;
  976. top: 0;
  977. left: 0;
  978. bottom: 0;
  979. right: 0; }
  980. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  981. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  982. height: 16px; }
  983. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  984. .x-btn-default-small-icon-text-left .x-btn-inner {
  985. height: 16px;
  986. line-height: 16px;
  987. padding-left: 20px; }
  988. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  989. .x-btn-default-small-icon-text-left .x-btn-icon {
  990. width: 16px;
  991. height: auto;
  992. top: 0;
  993. left: 0;
  994. bottom: 0;
  995. right: auto; }
  996. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  997. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  998. height: 16px; }
  999. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1000. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  1001. height: 16px; }
  1002. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1003. .x-btn-default-small-icon-text-right .x-btn-inner {
  1004. height: 16px;
  1005. line-height: 16px;
  1006. padding-right: 20px !important; }
  1007. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1008. .x-btn-default-small-icon-text-right .x-btn-icon {
  1009. width: 16px;
  1010. height: auto;
  1011. top: 0;
  1012. left: auto;
  1013. bottom: 0;
  1014. right: 0; }
  1015. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1016. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  1017. height: 16px; }
  1018. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1019. .x-btn-default-small-icon-text-top .x-btn-inner {
  1020. padding-top: 20px; }
  1021. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1022. .x-btn-default-small-icon-text-top .x-btn-icon {
  1023. width: auto;
  1024. height: 16px;
  1025. top: 0;
  1026. left: 0;
  1027. bottom: auto;
  1028. right: 0; }
  1029. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1030. .x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon {
  1031. width: 16px; }
  1032. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1033. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  1034. padding-bottom: 20px; }
  1035. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1036. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1037. width: auto;
  1038. height: 16px;
  1039. top: auto;
  1040. left: 0;
  1041. bottom: 0;
  1042. right: 0; }
  1043. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1044. .x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1045. width: 16px; }
  1046. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1047. .x-btn-default-small-over {
  1048. border-color: #b0ccf2;
  1049. background-image: none;
  1050. background-color: #e4f3ff;
  1051. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1052. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1053. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1054. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1055. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1056. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1057. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1058. .x-btn-default-small-focus {
  1059. border-color: #b0ccf2;
  1060. background-image: none;
  1061. background-color: #e4f3ff;
  1062. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1063. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1064. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1065. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1066. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1067. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1068. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1069. .x-btn-default-small-menu-active,
  1070. .x-btn-default-small-pressed {
  1071. border-color: #9ebae1;
  1072. background-image: none;
  1073. background-color: #b6cbe4;
  1074. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1075. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1076. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1077. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1078. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1079. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1080. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1081. .x-btn-default-small-disabled {
  1082. border-color: #e1e1e1;
  1083. background-image: none;
  1084. background-color: #f7f7f7;
  1085. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1086. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1087. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1088. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1089. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1090. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1091. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1092. .x-btn-default-small-disabled .x-btn-inner {
  1093. color: #333333 !important; }
  1094. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1095. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1096. color: #595959 !important; }
  1097. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1098. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1099. color: #8c8c8c !important; }
  1100. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1101. .x-nbr .x-btn-default-small-over .x-frame-tl,
  1102. .x-nbr .x-btn-default-small-over .x-frame-bl,
  1103. .x-nbr .x-btn-default-small-over .x-frame-tr,
  1104. .x-nbr .x-btn-default-small-over .x-frame-br,
  1105. .x-nbr .x-btn-default-small-over .x-frame-tc,
  1106. .x-nbr .x-btn-default-small-over .x-frame-bc {
  1107. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif'); }
  1108. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1109. .x-nbr .x-btn-default-small-over .x-frame-ml,
  1110. .x-nbr .x-btn-default-small-over .x-frame-mr {
  1111. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif'); }
  1112. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1113. .x-nbr .x-btn-default-small-over .x-frame-mc {
  1114. background-color: #e4f3ff;
  1115. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1116. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1117. .x-nbr .x-btn-default-small-focus .x-frame-tl,
  1118. .x-nbr .x-btn-default-small-focus .x-frame-bl,
  1119. .x-nbr .x-btn-default-small-focus .x-frame-tr,
  1120. .x-nbr .x-btn-default-small-focus .x-frame-br,
  1121. .x-nbr .x-btn-default-small-focus .x-frame-tc,
  1122. .x-nbr .x-btn-default-small-focus .x-frame-bc {
  1123. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif'); }
  1124. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1125. .x-nbr .x-btn-default-small-focus .x-frame-ml,
  1126. .x-nbr .x-btn-default-small-focus .x-frame-mr {
  1127. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif'); }
  1128. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1129. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  1130. background-color: #e4f3ff;
  1131. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1132. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1133. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
  1134. .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
  1135. .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
  1136. .x-nbr .x-btn-default-small-menu-active .x-frame-br,
  1137. .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
  1138. .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
  1139. .x-nbr .x-btn-default-small-pressed .x-frame-tl,
  1140. .x-nbr .x-btn-default-small-pressed .x-frame-bl,
  1141. .x-nbr .x-btn-default-small-pressed .x-frame-tr,
  1142. .x-nbr .x-btn-default-small-pressed .x-frame-br,
  1143. .x-nbr .x-btn-default-small-pressed .x-frame-tc,
  1144. .x-nbr .x-btn-default-small-pressed .x-frame-bc {
  1145. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif'); }
  1146. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1147. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
  1148. .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
  1149. .x-nbr .x-btn-default-small-pressed .x-frame-ml,
  1150. .x-nbr .x-btn-default-small-pressed .x-frame-mr {
  1151. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif'); }
  1152. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1153. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
  1154. .x-nbr .x-btn-default-small-pressed .x-frame-mc {
  1155. background-color: #b6cbe4;
  1156. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1157. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1158. .x-nbr .x-btn-default-small-disabled .x-frame-tl,
  1159. .x-nbr .x-btn-default-small-disabled .x-frame-bl,
  1160. .x-nbr .x-btn-default-small-disabled .x-frame-tr,
  1161. .x-nbr .x-btn-default-small-disabled .x-frame-br,
  1162. .x-nbr .x-btn-default-small-disabled .x-frame-tc,
  1163. .x-nbr .x-btn-default-small-disabled .x-frame-bc {
  1164. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif'); }
  1165. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1166. .x-nbr .x-btn-default-small-disabled .x-frame-ml,
  1167. .x-nbr .x-btn-default-small-disabled .x-frame-mr {
  1168. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif'); }
  1169. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1170. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  1171. background-color: #f7f7f7;
  1172. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1173. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1174. .x-nlg .x-btn-default-small {
  1175. background-repeat: repeat-x;
  1176. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  1177. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1178. .x-nlg .x-btn-default-small-over {
  1179. background-repeat: repeat-x;
  1180. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1181. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1182. .x-nlg .x-btn-default-small-focus {
  1183. background-repeat: repeat-x;
  1184. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1185. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1186. .x-nlg .x-btn-default-small-menu-active,
  1187. .x-nlg .x-btn-default-small-pressed {
  1188. background-repeat: repeat-x;
  1189. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1190. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1191. .x-nlg .x-btn-default-small-disabled {
  1192. background-repeat: repeat-x;
  1193. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1194. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1195. .x-btn-default-medium {
  1196. border-color: #d1d1d1; }
  1197. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1198. .x-btn-default-medium {
  1199. padding: 3px 3px 3px 3px;
  1200. border-width: 1px;
  1201. border-style: solid;
  1202. background-color: white; }
  1203. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1204. .x-nlg .x-btn-default-medium-mc {
  1205. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  1206. background-color: white; }
  1207. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1208. .x-nbr .x-btn-default-medium {
  1209. padding: 0 !important;
  1210. border-width: 0 !important;
  1211. -moz-border-radius: 0px;
  1212. -webkit-border-radius: 0px;
  1213. -o-border-radius: 0px;
  1214. -ms-border-radius: 0px;
  1215. -khtml-border-radius: 0px;
  1216. border-radius: 0px;
  1217. background-color: transparent;
  1218. background-position: 1100303px 1000303px; }
  1219. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1220. .x-nbr .x-btn-default-medium-tl,
  1221. .x-nbr .x-btn-default-medium-bl,
  1222. .x-nbr .x-btn-default-medium-tr,
  1223. .x-nbr .x-btn-default-medium-br,
  1224. .x-nbr .x-btn-default-medium-tc,
  1225. .x-nbr .x-btn-default-medium-bc,
  1226. .x-nbr .x-btn-default-medium-ml,
  1227. .x-nbr .x-btn-default-medium-mr {
  1228. zoom: 1;
  1229. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif'); }
  1230. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1231. .x-nbr .x-btn-default-medium-ml,
  1232. .x-nbr .x-btn-default-medium-mr {
  1233. zoom: 1;
  1234. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-sides.gif');
  1235. background-position: 0 0; }
  1236. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1237. .x-nbr .x-btn-default-medium-mc {
  1238. padding: 1px 1px 1px 1px; }
  1239. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1240. .x-strict .x-ie7 .x-btn-default-medium-tl,
  1241. .x-strict .x-ie7 .x-btn-default-medium-bl {
  1242. position: relative;
  1243. right: 0; }
  1244. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1245. .x-btn-default-medium .x-btn-inner {
  1246. font-size: 11px;
  1247. font-weight: normal;
  1248. font-family: tahoma, arial, verdana, sans-serif;
  1249. color: #333333;
  1250. background-repeat: no-repeat;
  1251. padding: 0 3px; }
  1252. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1253. .x-btn-default-medium-icon button,
  1254. .x-btn-default-medium-icon a,
  1255. .x-btn-default-medium-icon .x-btn-inner,
  1256. .x-btn-default-medium-noicon button,
  1257. .x-btn-default-medium-noicon a,
  1258. .x-btn-default-medium-noicon .x-btn-inner {
  1259. height: 24px;
  1260. line-height: 24px; }
  1261. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1262. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1263. padding: 0; }
  1264. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1265. .x-btn-default-medium-icon .x-btn-inner {
  1266. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1267. width: 24px;
  1268. padding: 0; }
  1269. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1270. .x-btn-default-medium-icon .x-btn-icon {
  1271. width: 24px;
  1272. height: 24px;
  1273. top: 0;
  1274. left: 0;
  1275. bottom: 0;
  1276. right: 0; }
  1277. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1278. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1279. height: 24px; }
  1280. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1281. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1282. height: 24px;
  1283. line-height: 24px;
  1284. padding-left: 28px; }
  1285. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1286. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1287. width: 24px;
  1288. height: auto;
  1289. top: 0;
  1290. left: 0;
  1291. bottom: 0;
  1292. right: auto; }
  1293. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1294. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1295. height: 24px; }
  1296. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1297. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1298. height: 24px; }
  1299. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1300. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1301. height: 24px;
  1302. line-height: 24px;
  1303. padding-right: 28px !important; }
  1304. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1305. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1306. width: 24px;
  1307. height: auto;
  1308. top: 0;
  1309. left: auto;
  1310. bottom: 0;
  1311. right: 0; }
  1312. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1313. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1314. height: 24px; }
  1315. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1316. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1317. padding-top: 28px; }
  1318. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1319. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1320. width: auto;
  1321. height: 24px;
  1322. top: 0;
  1323. left: 0;
  1324. bottom: auto;
  1325. right: 0; }
  1326. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1327. .x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon {
  1328. width: 24px; }
  1329. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1330. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1331. padding-bottom: 28px; }
  1332. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1333. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1334. width: auto;
  1335. height: 24px;
  1336. top: auto;
  1337. left: 0;
  1338. bottom: 0;
  1339. right: 0; }
  1340. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1341. .x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1342. width: 24px; }
  1343. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1344. .x-btn-default-medium-over {
  1345. border-color: #b0ccf2;
  1346. background-image: none;
  1347. background-color: #e4f3ff;
  1348. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1349. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1350. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1351. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1352. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1353. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1354. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1355. .x-btn-default-medium-focus {
  1356. border-color: #b0ccf2;
  1357. background-image: none;
  1358. background-color: #e4f3ff;
  1359. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1360. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1361. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1362. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1363. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1364. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1365. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1366. .x-btn-default-medium-menu-active,
  1367. .x-btn-default-medium-pressed {
  1368. border-color: #9ebae1;
  1369. background-image: none;
  1370. background-color: #b6cbe4;
  1371. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1372. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1373. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1374. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1375. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1376. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1377. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1378. .x-btn-default-medium-disabled {
  1379. border-color: #e1e1e1;
  1380. background-image: none;
  1381. background-color: #f7f7f7;
  1382. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1383. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1384. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1385. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1386. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1387. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1388. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1389. .x-btn-default-medium-disabled .x-btn-inner {
  1390. color: #333333 !important; }
  1391. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1392. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1393. color: #595959 !important; }
  1394. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1395. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1396. color: #8c8c8c !important; }
  1397. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1398. .x-nbr .x-btn-default-medium-over .x-frame-tl,
  1399. .x-nbr .x-btn-default-medium-over .x-frame-bl,
  1400. .x-nbr .x-btn-default-medium-over .x-frame-tr,
  1401. .x-nbr .x-btn-default-medium-over .x-frame-br,
  1402. .x-nbr .x-btn-default-medium-over .x-frame-tc,
  1403. .x-nbr .x-btn-default-medium-over .x-frame-bc {
  1404. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif'); }
  1405. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1406. .x-nbr .x-btn-default-medium-over .x-frame-ml,
  1407. .x-nbr .x-btn-default-medium-over .x-frame-mr {
  1408. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif'); }
  1409. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1410. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1411. background-color: #e4f3ff;
  1412. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1413. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1414. .x-nbr .x-btn-default-medium-focus .x-frame-tl,
  1415. .x-nbr .x-btn-default-medium-focus .x-frame-bl,
  1416. .x-nbr .x-btn-default-medium-focus .x-frame-tr,
  1417. .x-nbr .x-btn-default-medium-focus .x-frame-br,
  1418. .x-nbr .x-btn-default-medium-focus .x-frame-tc,
  1419. .x-nbr .x-btn-default-medium-focus .x-frame-bc {
  1420. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif'); }
  1421. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1422. .x-nbr .x-btn-default-medium-focus .x-frame-ml,
  1423. .x-nbr .x-btn-default-medium-focus .x-frame-mr {
  1424. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif'); }
  1425. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1426. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1427. background-color: #e4f3ff;
  1428. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1429. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1430. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
  1431. .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
  1432. .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
  1433. .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
  1434. .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
  1435. .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
  1436. .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
  1437. .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
  1438. .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
  1439. .x-nbr .x-btn-default-medium-pressed .x-frame-br,
  1440. .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
  1441. .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
  1442. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif'); }
  1443. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1444. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
  1445. .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
  1446. .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
  1447. .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
  1448. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif'); }
  1449. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1450. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
  1451. .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
  1452. background-color: #b6cbe4;
  1453. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1454. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1455. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
  1456. .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
  1457. .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
  1458. .x-nbr .x-btn-default-medium-disabled .x-frame-br,
  1459. .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
  1460. .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
  1461. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif'); }
  1462. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1463. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
  1464. .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
  1465. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif'); }
  1466. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1467. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1468. background-color: #f7f7f7;
  1469. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1470. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1471. .x-nlg .x-btn-default-medium {
  1472. background-repeat: repeat-x;
  1473. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1474. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1475. .x-nlg .x-btn-default-medium-over {
  1476. background-repeat: repeat-x;
  1477. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1478. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1479. .x-nlg .x-btn-default-medium-focus {
  1480. background-repeat: repeat-x;
  1481. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1482. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1483. .x-nlg .x-btn-default-medium-menu-active,
  1484. .x-nlg .x-btn-default-medium-pressed {
  1485. background-repeat: repeat-x;
  1486. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1487. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1488. .x-nlg .x-btn-default-medium-disabled {
  1489. background-repeat: repeat-x;
  1490. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1491. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1492. .x-btn-default-large {
  1493. border-color: #d1d1d1; }
  1494. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1495. .x-btn-default-large {
  1496. padding: 3px 3px 3px 3px;
  1497. border-width: 1px;
  1498. border-style: solid;
  1499. background-color: white; }
  1500. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1501. .x-nlg .x-btn-default-large-mc {
  1502. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1503. background-color: white; }
  1504. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1505. .x-nbr .x-btn-default-large {
  1506. padding: 0 !important;
  1507. border-width: 0 !important;
  1508. -moz-border-radius: 0px;
  1509. -webkit-border-radius: 0px;
  1510. -o-border-radius: 0px;
  1511. -ms-border-radius: 0px;
  1512. -khtml-border-radius: 0px;
  1513. border-radius: 0px;
  1514. background-color: transparent;
  1515. background-position: 1100303px 1000303px; }
  1516. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1517. .x-nbr .x-btn-default-large-tl,
  1518. .x-nbr .x-btn-default-large-bl,
  1519. .x-nbr .x-btn-default-large-tr,
  1520. .x-nbr .x-btn-default-large-br,
  1521. .x-nbr .x-btn-default-large-tc,
  1522. .x-nbr .x-btn-default-large-bc,
  1523. .x-nbr .x-btn-default-large-ml,
  1524. .x-nbr .x-btn-default-large-mr {
  1525. zoom: 1;
  1526. background-image: url('../../resources/themes/images/default/btn/btn-default-large-corners.gif'); }
  1527. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1528. .x-nbr .x-btn-default-large-ml,
  1529. .x-nbr .x-btn-default-large-mr {
  1530. zoom: 1;
  1531. background-image: url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
  1532. background-position: 0 0; }
  1533. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1534. .x-nbr .x-btn-default-large-mc {
  1535. padding: 1px 1px 1px 1px; }
  1536. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1537. .x-strict .x-ie7 .x-btn-default-large-tl,
  1538. .x-strict .x-ie7 .x-btn-default-large-bl {
  1539. position: relative;
  1540. right: 0; }
  1541. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1542. .x-btn-default-large .x-btn-inner {
  1543. font-size: 11px;
  1544. font-weight: normal;
  1545. font-family: tahoma, arial, verdana, sans-serif;
  1546. color: #333333;
  1547. background-repeat: no-repeat;
  1548. padding: 0 3px; }
  1549. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1550. .x-btn-default-large-icon button,
  1551. .x-btn-default-large-icon a,
  1552. .x-btn-default-large-icon .x-btn-inner,
  1553. .x-btn-default-large-noicon button,
  1554. .x-btn-default-large-noicon a,
  1555. .x-btn-default-large-noicon .x-btn-inner {
  1556. height: 32px;
  1557. line-height: 32px; }
  1558. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1559. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1560. padding: 0; }
  1561. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1562. .x-btn-default-large-icon .x-btn-inner {
  1563. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1564. width: 32px;
  1565. padding: 0; }
  1566. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1567. .x-btn-default-large-icon .x-btn-icon {
  1568. width: 32px;
  1569. height: 32px;
  1570. top: 0;
  1571. left: 0;
  1572. bottom: 0;
  1573. right: 0; }
  1574. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1575. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1576. height: 32px; }
  1577. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1578. .x-btn-default-large-icon-text-left .x-btn-inner {
  1579. height: 32px;
  1580. line-height: 32px;
  1581. padding-left: 36px; }
  1582. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1583. .x-btn-default-large-icon-text-left .x-btn-icon {
  1584. width: 32px;
  1585. height: auto;
  1586. top: 0;
  1587. left: 0;
  1588. bottom: 0;
  1589. right: auto; }
  1590. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1591. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1592. height: 32px; }
  1593. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1594. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1595. height: 32px; }
  1596. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1597. .x-btn-default-large-icon-text-right .x-btn-inner {
  1598. height: 32px;
  1599. line-height: 32px;
  1600. padding-right: 36px !important; }
  1601. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1602. .x-btn-default-large-icon-text-right .x-btn-icon {
  1603. width: 32px;
  1604. height: auto;
  1605. top: 0;
  1606. left: auto;
  1607. bottom: 0;
  1608. right: 0; }
  1609. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1610. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1611. height: 32px; }
  1612. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1613. .x-btn-default-large-icon-text-top .x-btn-inner {
  1614. padding-top: 36px; }
  1615. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1616. .x-btn-default-large-icon-text-top .x-btn-icon {
  1617. width: auto;
  1618. height: 32px;
  1619. top: 0;
  1620. left: 0;
  1621. bottom: auto;
  1622. right: 0; }
  1623. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1624. .x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon {
  1625. width: 32px; }
  1626. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1627. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1628. padding-bottom: 36px; }
  1629. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1630. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1631. width: auto;
  1632. height: 32px;
  1633. top: auto;
  1634. left: 0;
  1635. bottom: 0;
  1636. right: 0; }
  1637. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1638. .x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1639. width: 32px; }
  1640. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1641. .x-btn-default-large-over {
  1642. border-color: #b0ccf2;
  1643. background-image: none;
  1644. background-color: #e4f3ff;
  1645. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1646. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1647. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1648. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1649. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1650. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1651. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1652. .x-btn-default-large-focus {
  1653. border-color: #b0ccf2;
  1654. background-image: none;
  1655. background-color: #e4f3ff;
  1656. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1657. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1658. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1659. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1660. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1661. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1662. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1663. .x-btn-default-large-menu-active,
  1664. .x-btn-default-large-pressed {
  1665. border-color: #9ebae1;
  1666. background-image: none;
  1667. background-color: #b6cbe4;
  1668. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1669. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1670. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1671. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1672. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1673. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1674. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1675. .x-btn-default-large-disabled {
  1676. border-color: #e1e1e1;
  1677. background-image: none;
  1678. background-color: #f7f7f7;
  1679. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1680. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1681. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1682. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1683. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1684. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1685. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1686. .x-btn-default-large-disabled .x-btn-inner {
  1687. color: #333333 !important; }
  1688. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1689. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1690. color: #595959 !important; }
  1691. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1692. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1693. color: #8c8c8c !important; }
  1694. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1695. .x-nbr .x-btn-default-large-over .x-frame-tl,
  1696. .x-nbr .x-btn-default-large-over .x-frame-bl,
  1697. .x-nbr .x-btn-default-large-over .x-frame-tr,
  1698. .x-nbr .x-btn-default-large-over .x-frame-br,
  1699. .x-nbr .x-btn-default-large-over .x-frame-tc,
  1700. .x-nbr .x-btn-default-large-over .x-frame-bc {
  1701. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif'); }
  1702. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1703. .x-nbr .x-btn-default-large-over .x-frame-ml,
  1704. .x-nbr .x-btn-default-large-over .x-frame-mr {
  1705. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif'); }
  1706. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1707. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1708. background-color: #e4f3ff;
  1709. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1710. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1711. .x-nbr .x-btn-default-large-focus .x-frame-tl,
  1712. .x-nbr .x-btn-default-large-focus .x-frame-bl,
  1713. .x-nbr .x-btn-default-large-focus .x-frame-tr,
  1714. .x-nbr .x-btn-default-large-focus .x-frame-br,
  1715. .x-nbr .x-btn-default-large-focus .x-frame-tc,
  1716. .x-nbr .x-btn-default-large-focus .x-frame-bc {
  1717. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif'); }
  1718. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1719. .x-nbr .x-btn-default-large-focus .x-frame-ml,
  1720. .x-nbr .x-btn-default-large-focus .x-frame-mr {
  1721. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif'); }
  1722. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1723. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1724. background-color: #e4f3ff;
  1725. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1726. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1727. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
  1728. .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
  1729. .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
  1730. .x-nbr .x-btn-default-large-menu-active .x-frame-br,
  1731. .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
  1732. .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
  1733. .x-nbr .x-btn-default-large-pressed .x-frame-tl,
  1734. .x-nbr .x-btn-default-large-pressed .x-frame-bl,
  1735. .x-nbr .x-btn-default-large-pressed .x-frame-tr,
  1736. .x-nbr .x-btn-default-large-pressed .x-frame-br,
  1737. .x-nbr .x-btn-default-large-pressed .x-frame-tc,
  1738. .x-nbr .x-btn-default-large-pressed .x-frame-bc {
  1739. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif'); }
  1740. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1741. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
  1742. .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
  1743. .x-nbr .x-btn-default-large-pressed .x-frame-ml,
  1744. .x-nbr .x-btn-default-large-pressed .x-frame-mr {
  1745. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif'); }
  1746. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1747. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
  1748. .x-nbr .x-btn-default-large-pressed .x-frame-mc {
  1749. background-color: #b6cbe4;
  1750. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1751. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1752. .x-nbr .x-btn-default-large-disabled .x-frame-tl,
  1753. .x-nbr .x-btn-default-large-disabled .x-frame-bl,
  1754. .x-nbr .x-btn-default-large-disabled .x-frame-tr,
  1755. .x-nbr .x-btn-default-large-disabled .x-frame-br,
  1756. .x-nbr .x-btn-default-large-disabled .x-frame-tc,
  1757. .x-nbr .x-btn-default-large-disabled .x-frame-bc {
  1758. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif'); }
  1759. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1760. .x-nbr .x-btn-default-large-disabled .x-frame-ml,
  1761. .x-nbr .x-btn-default-large-disabled .x-frame-mr {
  1762. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif'); }
  1763. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1764. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1765. background-color: #f7f7f7;
  1766. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1767. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1768. .x-nlg .x-btn-default-large {
  1769. background-repeat: repeat-x;
  1770. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1771. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1772. .x-nlg .x-btn-default-large-over {
  1773. background-repeat: repeat-x;
  1774. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1775. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1776. .x-nlg .x-btn-default-large-focus {
  1777. background-repeat: repeat-x;
  1778. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1779. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1780. .x-nlg .x-btn-default-large-menu-active,
  1781. .x-nlg .x-btn-default-large-pressed {
  1782. background-repeat: repeat-x;
  1783. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1784. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1785. .x-nlg .x-btn-default-large-disabled {
  1786. background-repeat: repeat-x;
  1787. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1788. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1789. .x-btn-default-toolbar-small {
  1790. border-color: transparent; }
  1791. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1792. .x-btn-default-toolbar-small {
  1793. padding: 2px 2px 2px 2px;
  1794. border-width: 1px;
  1795. border-style: solid;
  1796. background-color: transparent; }
  1797. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1798. .x-nlg .x-btn-default-toolbar-small-mc {
  1799. background-color: transparent; }
  1800. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1801. .x-nbr .x-btn-default-toolbar-small {
  1802. padding: 0 !important;
  1803. border-width: 0 !important;
  1804. -moz-border-radius: 0px;
  1805. -webkit-border-radius: 0px;
  1806. -o-border-radius: 0px;
  1807. -ms-border-radius: 0px;
  1808. -khtml-border-radius: 0px;
  1809. border-radius: 0px;
  1810. background-color: transparent;
  1811. background-position: 1100303px 1000303px; }
  1812. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1813. .x-nbr .x-btn-default-toolbar-small-tl,
  1814. .x-nbr .x-btn-default-toolbar-small-bl,
  1815. .x-nbr .x-btn-default-toolbar-small-tr,
  1816. .x-nbr .x-btn-default-toolbar-small-br,
  1817. .x-nbr .x-btn-default-toolbar-small-tc,
  1818. .x-nbr .x-btn-default-toolbar-small-bc,
  1819. .x-nbr .x-btn-default-toolbar-small-ml,
  1820. .x-nbr .x-btn-default-toolbar-small-mr {
  1821. zoom: 1; }
  1822. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1823. .x-nbr .x-btn-default-toolbar-small-ml,
  1824. .x-nbr .x-btn-default-toolbar-small-mr {
  1825. zoom: 1; }
  1826. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1827. .x-nbr .x-btn-default-toolbar-small-mc {
  1828. padding: 0px 0px 0px 0px; }
  1829. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1830. .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
  1831. .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  1832. position: relative;
  1833. right: 0; }
  1834. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1835. .x-btn-default-toolbar-small .x-btn-inner {
  1836. font-size: 11px;
  1837. font-weight: normal;
  1838. font-family: tahoma, arial, verdana, sans-serif;
  1839. color: #333333;
  1840. background-repeat: no-repeat;
  1841. padding: 0 4px; }
  1842. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1843. .x-btn-default-toolbar-small-icon button,
  1844. .x-btn-default-toolbar-small-icon a,
  1845. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1846. .x-btn-default-toolbar-small-noicon button,
  1847. .x-btn-default-toolbar-small-noicon a,
  1848. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1849. height: 16px;
  1850. line-height: 16px; }
  1851. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1852. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1853. padding: 0; }
  1854. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1855. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1856. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1857. width: 16px;
  1858. padding: 0; }
  1859. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1860. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1861. width: 16px;
  1862. height: 16px;
  1863. top: 0;
  1864. left: 0;
  1865. bottom: 0;
  1866. right: 0; }
  1867. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1868. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1869. height: 16px; }
  1870. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1871. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1872. height: 16px;
  1873. line-height: 16px;
  1874. padding-left: 20px; }
  1875. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1876. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1877. width: 16px;
  1878. height: auto;
  1879. top: 0;
  1880. left: 0;
  1881. bottom: 0;
  1882. right: auto; }
  1883. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1884. .x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1885. height: 16px; }
  1886. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1887. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1888. height: 16px; }
  1889. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1890. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1891. height: 16px;
  1892. line-height: 16px;
  1893. padding-right: 20px !important; }
  1894. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1895. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1896. width: 16px;
  1897. height: auto;
  1898. top: 0;
  1899. left: auto;
  1900. bottom: 0;
  1901. right: 0; }
  1902. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1903. .x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1904. height: 16px; }
  1905. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1906. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1907. padding-top: 20px; }
  1908. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1909. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1910. width: auto;
  1911. height: 16px;
  1912. top: 0;
  1913. left: 0;
  1914. bottom: auto;
  1915. right: 0; }
  1916. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1917. .x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1918. width: 16px; }
  1919. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1920. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1921. padding-bottom: 20px; }
  1922. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1923. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1924. width: auto;
  1925. height: 16px;
  1926. top: auto;
  1927. left: 0;
  1928. bottom: 0;
  1929. right: 0; }
  1930. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1931. .x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1932. width: 16px; }
  1933. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1934. .x-btn-default-toolbar-small-over {
  1935. border-color: #81a4d0;
  1936. background-image: none;
  1937. background-color: #dbeeff;
  1938. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1939. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1940. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1941. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1942. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1943. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1944. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1945. .x-btn-default-toolbar-small-focus {
  1946. border-color: #81a4d0;
  1947. background-image: none;
  1948. background-color: #dbeeff;
  1949. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1950. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1951. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1952. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1953. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1954. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1955. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1956. .x-btn-default-toolbar-small-menu-active,
  1957. .x-btn-default-toolbar-small-pressed {
  1958. border-color: #7a9ac4;
  1959. background-image: none;
  1960. background-color: #bccfe5;
  1961. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  1962. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1963. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1964. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1965. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1966. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1967. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1968. .x-btn-default-toolbar-small-disabled {
  1969. background-image: none;
  1970. background-color: transparent; }
  1971. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1972. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1973. color: #333333 !important; }
  1974. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1975. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1976. color: #595959 !important; }
  1977. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1978. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1979. color: #8c8c8c !important; }
  1980. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1981. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
  1982. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
  1983. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
  1984. .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
  1985. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
  1986. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
  1987. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif'); }
  1988. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1989. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
  1990. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
  1991. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif'); }
  1992. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1993. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  1994. background-color: #dbeeff;
  1995. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1996. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1997. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
  1998. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
  1999. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
  2000. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
  2001. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
  2002. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
  2003. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif'); }
  2004. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2005. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
  2006. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
  2007. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif'); }
  2008. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2009. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  2010. background-color: #dbeeff;
  2011. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2012. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2013. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
  2014. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
  2015. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
  2016. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
  2017. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
  2018. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
  2019. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
  2020. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
  2021. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
  2022. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
  2023. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
  2024. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
  2025. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif'); }
  2026. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2027. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
  2028. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
  2029. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
  2030. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
  2031. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif'); }
  2032. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2033. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
  2034. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
  2035. background-color: #bccfe5;
  2036. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2037. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2038. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
  2039. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
  2040. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
  2041. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
  2042. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
  2043. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
  2044. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif'); }
  2045. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2046. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
  2047. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
  2048. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif'); }
  2049. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2050. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  2051. background-color: transparent; }
  2052. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2053. .x-nlg .x-btn-default-toolbar-small-over {
  2054. background-repeat: repeat-x;
  2055. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  2056. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2057. .x-nlg .x-btn-default-toolbar-small-focus {
  2058. background-repeat: repeat-x;
  2059. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2060. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2061. .x-nlg .x-btn-default-toolbar-small-menu-active,
  2062. .x-nlg .x-btn-default-toolbar-small-pressed {
  2063. background-repeat: repeat-x;
  2064. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2065. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2066. .x-btn-default-toolbar-medium {
  2067. border-color: transparent; }
  2068. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2069. .x-btn-default-toolbar-medium {
  2070. padding: 3px 3px 3px 3px;
  2071. border-width: 1px;
  2072. border-style: solid;
  2073. background-color: transparent; }
  2074. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2075. .x-nlg .x-btn-default-toolbar-medium-mc {
  2076. background-color: transparent; }
  2077. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2078. .x-nbr .x-btn-default-toolbar-medium {
  2079. padding: 0 !important;
  2080. border-width: 0 !important;
  2081. -moz-border-radius: 0px;
  2082. -webkit-border-radius: 0px;
  2083. -o-border-radius: 0px;
  2084. -ms-border-radius: 0px;
  2085. -khtml-border-radius: 0px;
  2086. border-radius: 0px;
  2087. background-color: transparent;
  2088. background-position: 1100303px 1000303px; }
  2089. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2090. .x-nbr .x-btn-default-toolbar-medium-tl,
  2091. .x-nbr .x-btn-default-toolbar-medium-bl,
  2092. .x-nbr .x-btn-default-toolbar-medium-tr,
  2093. .x-nbr .x-btn-default-toolbar-medium-br,
  2094. .x-nbr .x-btn-default-toolbar-medium-tc,
  2095. .x-nbr .x-btn-default-toolbar-medium-bc,
  2096. .x-nbr .x-btn-default-toolbar-medium-ml,
  2097. .x-nbr .x-btn-default-toolbar-medium-mr {
  2098. zoom: 1; }
  2099. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2100. .x-nbr .x-btn-default-toolbar-medium-ml,
  2101. .x-nbr .x-btn-default-toolbar-medium-mr {
  2102. zoom: 1; }
  2103. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2104. .x-nbr .x-btn-default-toolbar-medium-mc {
  2105. padding: 1px 1px 1px 1px; }
  2106. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2107. .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
  2108. .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  2109. position: relative;
  2110. right: 0; }
  2111. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2112. .x-btn-default-toolbar-medium .x-btn-inner {
  2113. font-size: 11px;
  2114. font-weight: normal;
  2115. font-family: tahoma, arial, verdana, sans-serif;
  2116. color: #333333;
  2117. background-repeat: no-repeat;
  2118. padding: 0 3px; }
  2119. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2120. .x-btn-default-toolbar-medium-icon button,
  2121. .x-btn-default-toolbar-medium-icon a,
  2122. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  2123. .x-btn-default-toolbar-medium-noicon button,
  2124. .x-btn-default-toolbar-medium-noicon a,
  2125. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  2126. height: 24px;
  2127. line-height: 24px; }
  2128. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2129. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  2130. padding: 0; }
  2131. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2132. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  2133. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2134. width: 24px;
  2135. padding: 0; }
  2136. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2137. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  2138. width: 24px;
  2139. height: 24px;
  2140. top: 0;
  2141. left: 0;
  2142. bottom: 0;
  2143. right: 0; }
  2144. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2145. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  2146. height: 24px; }
  2147. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2148. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  2149. height: 24px;
  2150. line-height: 24px;
  2151. padding-left: 28px; }
  2152. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2153. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2154. width: 24px;
  2155. height: auto;
  2156. top: 0;
  2157. left: 0;
  2158. bottom: 0;
  2159. right: auto; }
  2160. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2161. .x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2162. height: 24px; }
  2163. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2164. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  2165. height: 24px; }
  2166. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2167. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  2168. height: 24px;
  2169. line-height: 24px;
  2170. padding-right: 28px !important; }
  2171. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2172. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2173. width: 24px;
  2174. height: auto;
  2175. top: 0;
  2176. left: auto;
  2177. bottom: 0;
  2178. right: 0; }
  2179. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2180. .x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2181. height: 24px; }
  2182. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2183. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  2184. padding-top: 28px; }
  2185. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2186. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2187. width: auto;
  2188. height: 24px;
  2189. top: 0;
  2190. left: 0;
  2191. bottom: auto;
  2192. right: 0; }
  2193. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2194. .x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2195. width: 24px; }
  2196. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2197. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  2198. padding-bottom: 28px; }
  2199. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2200. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2201. width: auto;
  2202. height: 24px;
  2203. top: auto;
  2204. left: 0;
  2205. bottom: 0;
  2206. right: 0; }
  2207. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2208. .x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2209. width: 24px; }
  2210. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2211. .x-btn-default-toolbar-medium-over {
  2212. border-color: #81a4d0;
  2213. background-image: none;
  2214. background-color: #dbeeff;
  2215. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2216. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2217. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2218. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2219. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2220. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2221. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2222. .x-btn-default-toolbar-medium-focus {
  2223. border-color: #81a4d0;
  2224. background-image: none;
  2225. background-color: #dbeeff;
  2226. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2227. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2228. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2229. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2230. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2231. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2232. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2233. .x-btn-default-toolbar-medium-menu-active,
  2234. .x-btn-default-toolbar-medium-pressed {
  2235. border-color: #7a9ac4;
  2236. background-image: none;
  2237. background-color: #bccfe5;
  2238. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  2239. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2240. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2241. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2242. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2243. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2244. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2245. .x-btn-default-toolbar-medium-disabled {
  2246. background-image: none;
  2247. background-color: transparent; }
  2248. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2249. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2250. color: #333333 !important; }
  2251. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2252. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2253. color: #595959 !important; }
  2254. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2255. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2256. color: #8c8c8c !important; }
  2257. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2258. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
  2259. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
  2260. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
  2261. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
  2262. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
  2263. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
  2264. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif'); }
  2265. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2266. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
  2267. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
  2268. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif'); }
  2269. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2270. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  2271. background-color: #dbeeff;
  2272. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2273. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2274. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
  2275. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
  2276. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
  2277. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
  2278. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
  2279. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
  2280. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif'); }
  2281. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2282. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
  2283. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
  2284. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif'); }
  2285. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2286. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  2287. background-color: #dbeeff;
  2288. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2289. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2290. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
  2291. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
  2292. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
  2293. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
  2294. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
  2295. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
  2296. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
  2297. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
  2298. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
  2299. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
  2300. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
  2301. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  2302. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
  2303. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2304. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
  2305. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
  2306. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
  2307. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  2308. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
  2309. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2310. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
  2311. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  2312. background-color: #bccfe5;
  2313. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2314. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2315. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
  2316. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
  2317. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
  2318. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
  2319. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
  2320. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  2321. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
  2322. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2323. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
  2324. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  2325. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
  2326. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2327. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  2328. background-color: transparent; }
  2329. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2330. .x-nlg .x-btn-default-toolbar-medium-over {
  2331. background-repeat: repeat-x;
  2332. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2333. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2334. .x-nlg .x-btn-default-toolbar-medium-focus {
  2335. background-repeat: repeat-x;
  2336. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2337. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2338. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  2339. .x-nlg .x-btn-default-toolbar-medium-pressed {
  2340. background-repeat: repeat-x;
  2341. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2342. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2343. .x-btn-default-toolbar-large {
  2344. border-color: transparent; }
  2345. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2346. .x-btn-default-toolbar-large {
  2347. padding: 3px 3px 3px 3px;
  2348. border-width: 1px;
  2349. border-style: solid;
  2350. background-color: transparent; }
  2351. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2352. .x-nlg .x-btn-default-toolbar-large-mc {
  2353. background-color: transparent; }
  2354. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2355. .x-nbr .x-btn-default-toolbar-large {
  2356. padding: 0 !important;
  2357. border-width: 0 !important;
  2358. -moz-border-radius: 0px;
  2359. -webkit-border-radius: 0px;
  2360. -o-border-radius: 0px;
  2361. -ms-border-radius: 0px;
  2362. -khtml-border-radius: 0px;
  2363. border-radius: 0px;
  2364. background-color: transparent;
  2365. background-position: 1100303px 1000303px; }
  2366. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2367. .x-nbr .x-btn-default-toolbar-large-tl,
  2368. .x-nbr .x-btn-default-toolbar-large-bl,
  2369. .x-nbr .x-btn-default-toolbar-large-tr,
  2370. .x-nbr .x-btn-default-toolbar-large-br,
  2371. .x-nbr .x-btn-default-toolbar-large-tc,
  2372. .x-nbr .x-btn-default-toolbar-large-bc,
  2373. .x-nbr .x-btn-default-toolbar-large-ml,
  2374. .x-nbr .x-btn-default-toolbar-large-mr {
  2375. zoom: 1; }
  2376. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2377. .x-nbr .x-btn-default-toolbar-large-ml,
  2378. .x-nbr .x-btn-default-toolbar-large-mr {
  2379. zoom: 1; }
  2380. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2381. .x-nbr .x-btn-default-toolbar-large-mc {
  2382. padding: 1px 1px 1px 1px; }
  2383. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2384. .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
  2385. .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  2386. position: relative;
  2387. right: 0; }
  2388. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2389. .x-btn-default-toolbar-large .x-btn-inner {
  2390. font-size: 11px;
  2391. font-weight: normal;
  2392. font-family: tahoma, arial, verdana, sans-serif;
  2393. color: #333333;
  2394. background-repeat: no-repeat;
  2395. padding: 0 3px; }
  2396. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2397. .x-btn-default-toolbar-large-icon button,
  2398. .x-btn-default-toolbar-large-icon a,
  2399. .x-btn-default-toolbar-large-icon .x-btn-inner,
  2400. .x-btn-default-toolbar-large-noicon button,
  2401. .x-btn-default-toolbar-large-noicon a,
  2402. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  2403. height: 32px;
  2404. line-height: 32px; }
  2405. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2406. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  2407. padding: 0; }
  2408. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2409. .x-btn-default-toolbar-large-icon .x-btn-inner {
  2410. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2411. width: 32px;
  2412. padding: 0; }
  2413. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2414. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2415. width: 32px;
  2416. height: 32px;
  2417. top: 0;
  2418. left: 0;
  2419. bottom: 0;
  2420. right: 0; }
  2421. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2422. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  2423. height: 32px; }
  2424. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2425. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2426. height: 32px;
  2427. line-height: 32px;
  2428. padding-left: 36px; }
  2429. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2430. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2431. width: 32px;
  2432. height: auto;
  2433. top: 0;
  2434. left: 0;
  2435. bottom: 0;
  2436. right: auto; }
  2437. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2438. .x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2439. height: 32px; }
  2440. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2441. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  2442. height: 32px; }
  2443. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2444. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2445. height: 32px;
  2446. line-height: 32px;
  2447. padding-right: 36px !important; }
  2448. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2449. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2450. width: 32px;
  2451. height: auto;
  2452. top: 0;
  2453. left: auto;
  2454. bottom: 0;
  2455. right: 0; }
  2456. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2457. .x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2458. height: 32px; }
  2459. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2460. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2461. padding-top: 36px; }
  2462. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2463. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2464. width: auto;
  2465. height: 32px;
  2466. top: 0;
  2467. left: 0;
  2468. bottom: auto;
  2469. right: 0; }
  2470. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2471. .x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2472. width: 32px; }
  2473. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2474. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2475. padding-bottom: 36px; }
  2476. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2477. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2478. width: auto;
  2479. height: 32px;
  2480. top: auto;
  2481. left: 0;
  2482. bottom: 0;
  2483. right: 0; }
  2484. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2485. .x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2486. width: 32px; }
  2487. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2488. .x-btn-default-toolbar-large-over {
  2489. border-color: #81a4d0;
  2490. background-image: none;
  2491. background-color: #dbeeff;
  2492. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2493. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2494. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2495. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2496. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2497. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2498. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2499. .x-btn-default-toolbar-large-focus {
  2500. border-color: #81a4d0;
  2501. background-image: none;
  2502. background-color: #dbeeff;
  2503. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2504. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2505. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2506. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2507. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2508. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2509. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2510. .x-btn-default-toolbar-large-menu-active,
  2511. .x-btn-default-toolbar-large-pressed {
  2512. border-color: #7a9ac4;
  2513. background-image: none;
  2514. background-color: #bccfe5;
  2515. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  2516. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2517. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2518. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2519. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2520. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2521. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2522. .x-btn-default-toolbar-large-disabled {
  2523. background-image: none;
  2524. background-color: transparent; }
  2525. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2526. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2527. color: #333333 !important; }
  2528. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2529. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2530. color: #595959 !important; }
  2531. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2532. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2533. color: #8c8c8c !important; }
  2534. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2535. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
  2536. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
  2537. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
  2538. .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
  2539. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
  2540. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
  2541. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif'); }
  2542. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2543. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
  2544. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
  2545. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif'); }
  2546. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2547. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2548. background-color: #dbeeff;
  2549. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2550. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2551. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
  2552. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
  2553. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
  2554. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
  2555. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
  2556. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
  2557. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif'); }
  2558. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2559. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
  2560. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
  2561. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif'); }
  2562. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2563. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2564. background-color: #dbeeff;
  2565. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2566. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2567. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
  2568. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
  2569. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
  2570. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
  2571. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
  2572. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
  2573. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
  2574. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
  2575. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
  2576. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
  2577. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
  2578. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
  2579. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif'); }
  2580. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2581. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
  2582. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
  2583. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
  2584. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
  2585. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif'); }
  2586. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2587. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
  2588. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
  2589. background-color: #bccfe5;
  2590. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2591. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2592. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
  2593. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
  2594. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
  2595. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
  2596. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
  2597. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
  2598. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif'); }
  2599. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2600. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
  2601. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
  2602. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif'); }
  2603. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2604. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2605. background-color: transparent; }
  2606. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2607. .x-nlg .x-btn-default-toolbar-large-over {
  2608. background-repeat: repeat-x;
  2609. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2610. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2611. .x-nlg .x-btn-default-toolbar-large-focus {
  2612. background-repeat: repeat-x;
  2613. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2614. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2615. .x-nlg .x-btn-default-toolbar-large-menu-active,
  2616. .x-nlg .x-btn-default-toolbar-large-pressed {
  2617. background-repeat: repeat-x;
  2618. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2619. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2620. .x-btn-default-toolbar-small-disabled,
  2621. .x-btn-default-toolbar-medium-disabled,
  2622. .x-btn-default-toolbar-large-disabled {
  2623. border-color: transparent;
  2624. background-image: none;
  2625. background: transparent; }
  2626. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2627. .x-btn-group {
  2628. position: relative;
  2629. overflow: hidden; }
  2630. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2631. .x-btn-group-body {
  2632. position: relative;
  2633. zoom: 1;
  2634. padding: 0 1px; }
  2635. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2636. .x-btn-group-body .x-table-layout-cell {
  2637. vertical-align: top; }
  2638. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2639. .x-btn-group-header-text {
  2640. white-space: nowrap; }
  2641. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2642. .x-btn-group-default-framed {
  2643. padding: 1px 1px 1px 1px;
  2644. border-width: 1px;
  2645. border-style: solid;
  2646. background-color: #d0def0; }
  2647. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2648. .x-nlg .x-btn-group-default-framed-mc {
  2649. background-color: #d0def0; }
  2650. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2651. .x-nbr .x-btn-group-default-framed {
  2652. padding: 0 !important;
  2653. border-width: 0 !important;
  2654. -moz-border-radius: 0px;
  2655. -webkit-border-radius: 0px;
  2656. -o-border-radius: 0px;
  2657. -ms-border-radius: 0px;
  2658. -khtml-border-radius: 0px;
  2659. border-radius: 0px;
  2660. background-color: transparent;
  2661. background-position: 1000202px 1000202px; }
  2662. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2663. .x-nbr .x-btn-group-default-framed-tl,
  2664. .x-nbr .x-btn-group-default-framed-bl,
  2665. .x-nbr .x-btn-group-default-framed-tr,
  2666. .x-nbr .x-btn-group-default-framed-br,
  2667. .x-nbr .x-btn-group-default-framed-tc,
  2668. .x-nbr .x-btn-group-default-framed-bc,
  2669. .x-nbr .x-btn-group-default-framed-ml,
  2670. .x-nbr .x-btn-group-default-framed-mr {
  2671. zoom: 1;
  2672. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif'); }
  2673. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2674. .x-nbr .x-btn-group-default-framed-ml,
  2675. .x-nbr .x-btn-group-default-framed-mr {
  2676. zoom: 1;
  2677. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
  2678. background-position: 0 0;
  2679. background-repeat: repeat-y; }
  2680. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2681. .x-nbr .x-btn-group-default-framed-mc {
  2682. padding: 0px 0px 0px 0px; }
  2683. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2684. .x-strict .x-ie7 .x-btn-group-default-framed-tl,
  2685. .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  2686. position: relative;
  2687. right: 0; }
  2688. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2689. .x-btn-group-default-framed {
  2690. border-color: #b7c8d7;
  2691. -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2692. -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2693. -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2694. box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; }
  2695. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2696. .x-btn-group-header-default-framed {
  2697. margin: 2px 2px 0 2px; }
  2698. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2699. .x-btn-group-header-body-default-framed {
  2700. padding: 1px 0;
  2701. background: #c2d8f0;
  2702. -moz-border-radius-topleft: 2px;
  2703. -webkit-border-top-left-radius: 2px;
  2704. -o-border-top-left-radius: 2px;
  2705. -ms-border-top-left-radius: 2px;
  2706. -khtml-border-top-left-radius: 2px;
  2707. border-top-left-radius: 2px;
  2708. -moz-border-radius-topright: 2px;
  2709. -webkit-border-top-right-radius: 2px;
  2710. -o-border-top-right-radius: 2px;
  2711. -ms-border-top-right-radius: 2px;
  2712. -khtml-border-top-right-radius: 2px;
  2713. border-top-right-radius: 2px; }
  2714. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2715. .x-btn-group-header-text-default-framed {
  2716. font: normal 11px tahoma, arial, verdana, sans-serif;
  2717. color: #3e6aaa; }
  2718. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2719. .x-datepicker {
  2720. border: 1px solid #1b376c;
  2721. background-color: white;
  2722. position: relative; }
  2723. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2724. .x-datepicker a {
  2725. -moz-outline: 0 none;
  2726. outline: 0 none;
  2727. color: #15428b;
  2728. text-decoration: none;
  2729. border-width: 0; }
  2730. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2731. .x-datepicker-inner,
  2732. .x-datepicker-inner td,
  2733. .x-datepicker-inner th {
  2734. border-collapse: separate; }
  2735. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2736. .x-datepicker-header {
  2737. position: relative;
  2738. height: 26px;
  2739. background-image: none;
  2740. background-color: #23427c;
  2741. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  2742. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2743. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2744. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2745. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2746. background-image: linear-gradient(top, #264888, #1f3a6c); }
  2747. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2748. .x-datepicker-prev,
  2749. .x-datepicker-next {
  2750. position: absolute;
  2751. top: 5px;
  2752. width: 18px; }
  2753. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2754. .x-datepicker-prev a,
  2755. .x-datepicker-next a {
  2756. display: block;
  2757. width: 16px;
  2758. height: 16px;
  2759. background-position: top;
  2760. background-repeat: no-repeat;
  2761. cursor: pointer;
  2762. text-decoration: none !important;
  2763. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2764. opacity: 0.7; }
  2765. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2766. .x-datepicker-prev a:hover,
  2767. .x-datepicker-next a:hover {
  2768. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2769. opacity: 1; }
  2770. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2771. .x-datepicker-next {
  2772. right: 5px; }
  2773. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2774. .x-datepicker-next a {
  2775. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  2776. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2777. .x-datepicker-prev {
  2778. left: 5px; }
  2779. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2780. .x-datepicker-prev a {
  2781. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  2782. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2783. .x-item-disabled .x-datepicker-prev a:hover,
  2784. .x-item-disabled .x-datepicker-next a:hover {
  2785. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2786. opacity: 0.6; }
  2787. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2788. .x-datepicker-month {
  2789. padding-top: 3px; }
  2790. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2791. .x-datepicker-month .x-btn,
  2792. .x-datepicker-month button,
  2793. .x-datepicker-month .x-btn-tc,
  2794. .x-datepicker-month .x-btn-tl,
  2795. .x-datepicker-month .x-btn-tr,
  2796. .x-datepicker-month .x-btn-mc,
  2797. .x-datepicker-month .x-btn-ml,
  2798. .x-datepicker-month .x-btn-mr,
  2799. .x-datepicker-month .x-btn-bc,
  2800. .x-datepicker-month .x-btn-bl,
  2801. .x-datepicker-month .x-btn-br {
  2802. background: transparent !important;
  2803. border-width: 0 !important; }
  2804. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2805. .x-datepicker-month span {
  2806. color: #fff !important; }
  2807. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2808. .x-datepicker-month .x-btn-split-right {
  2809. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2810. padding-right: 12px; }
  2811. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2812. .x-datepicker-next {
  2813. text-align: right; }
  2814. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2815. .x-datepicker-month {
  2816. text-align: center; }
  2817. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2818. .x-datepicker-month button {
  2819. color: white !important; }
  2820. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2821. table.x-datepicker-inner {
  2822. width: 100%;
  2823. table-layout: fixed; }
  2824. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2825. table.x-datepicker-inner th {
  2826. width: 25px;
  2827. height: 19px;
  2828. padding: 0;
  2829. color: #233d6d;
  2830. font: normal 10px tahoma, arial, verdana, sans-serif;
  2831. text-align: right;
  2832. border-bottom: 1px solid #b2d1f5;
  2833. border-collapse: separate;
  2834. background-image: none;
  2835. background-color: #dfecfb;
  2836. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  2837. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2838. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2839. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2840. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2841. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2842. cursor: default; }
  2843. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2844. table.x-datepicker-inner th span {
  2845. display: block;
  2846. padding-right: 7px; }
  2847. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2848. table.x-datepicker-inner tr {
  2849. height: 20px; }
  2850. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2851. table.x-datepicker-inner td {
  2852. border: 1px solid;
  2853. height: 17px;
  2854. border-color: white;
  2855. text-align: right;
  2856. padding: 0; }
  2857. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2858. table.x-datepicker-inner a {
  2859. padding-right: 4px;
  2860. display: block;
  2861. zoom: 1;
  2862. font: normal 11px tahoma, arial, verdana, sans-serif;
  2863. color: black;
  2864. text-decoration: none;
  2865. text-align: right; }
  2866. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2867. table.x-datepicker-inner .x-datepicker-active {
  2868. cursor: pointer;
  2869. color: black; }
  2870. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2871. table.x-datepicker-inner .x-datepicker-selected a {
  2872. background: repeat-x left top;
  2873. background-color: #dae5f3;
  2874. border: 1px solid #8db2e3; }
  2875. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2876. table.x-datepicker-inner .x-datepicker-selected span {
  2877. font-weight: bold; }
  2878. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2879. table.x-datepicker-inner .x-datepicker-today a {
  2880. border: 1px solid;
  2881. border-color: darkred; }
  2882. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2883. table.x-datepicker-inner .x-datepicker-prevday a,
  2884. table.x-datepicker-inner .x-datepicker-nextday a {
  2885. text-decoration: none !important;
  2886. color: #aaa; }
  2887. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2888. table.x-datepicker-inner a:hover,
  2889. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2890. text-decoration: none !important;
  2891. color: #000;
  2892. background-color: #ddecfe; }
  2893. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2894. table.x-datepicker-inner .x-datepicker-disabled a {
  2895. cursor: default;
  2896. background-color: #eee;
  2897. color: #bbb; }
  2898. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2899. .x-datepicker-footer,
  2900. .x-monthpicker-buttons {
  2901. position: relative;
  2902. border-top: 1px solid #b2d1f5;
  2903. background-image: none;
  2904. background-color: #dfecfb;
  2905. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee));
  2906. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2907. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2908. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2909. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2910. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2911. text-align: center; }
  2912. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2913. .x-datepicker-footer .x-btn,
  2914. .x-monthpicker-buttons .x-btn {
  2915. position: relative;
  2916. margin: 4px; }
  2917. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2918. .x-item-disabled .x-datepicker-inner a:hover {
  2919. background: none; }
  2920. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2921. .x-datepicker .x-monthpicker {
  2922. position: absolute;
  2923. left: 0;
  2924. top: 0; }
  2925. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2926. .x-monthpicker {
  2927. border: 1px solid #1b376c;
  2928. background-color: white; }
  2929. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2930. .x-monthpicker-months,
  2931. .x-monthpicker-years {
  2932. float: left;
  2933. height: 167px;
  2934. width: 88px; }
  2935. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2936. .x-monthpicker-item {
  2937. float: left;
  2938. margin: 4px 0 5px 0;
  2939. font: normal 11px tahoma, arial, verdana, sans-serif;
  2940. text-align: center;
  2941. vertical-align: middle;
  2942. height: 18px;
  2943. width: 43px;
  2944. border: 0 none; }
  2945. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2946. .x-monthpicker-item a {
  2947. display: block;
  2948. margin: 0 5px;
  2949. text-decoration: none;
  2950. color: #15428b;
  2951. border: 1px solid white;
  2952. line-height: 17px; }
  2953. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2954. .x-monthpicker-item a:hover {
  2955. background-color: #ddecfe; }
  2956. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2957. .x-monthpicker-item a.x-monthpicker-selected {
  2958. background-color: #dfecfb;
  2959. border: 1px solid #8db2e3; }
  2960. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2961. .x-monthpicker-months {
  2962. border-right: 1px solid #1b376c;
  2963. width: 87px; }
  2964. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2965. .x-monthpicker-years .x-monthpicker-item {
  2966. width: 44px; }
  2967. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2968. .x-monthpicker-yearnav {
  2969. height: 28px; }
  2970. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2971. .x-monthpicker-yearnav button {
  2972. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2973. height: 15px;
  2974. width: 15px;
  2975. padding: 0;
  2976. margin: 6px 12px 5px 15px;
  2977. border: 0;
  2978. outline: 0 none; }
  2979. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2980. .x-monthpicker-yearnav button::-moz-focus-inner {
  2981. border: 0;
  2982. padding: 0; }
  2983. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2984. .x-monthpicker-yearnav-next {
  2985. background-position: 0 -120px; }
  2986. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2987. .x-monthpicker-yearnav-next-over {
  2988. cursor: pointer;
  2989. cursor: hand;
  2990. background-position: -15px -120px; }
  2991. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2992. .x-monthpicker-yearnav-prev {
  2993. background-position: 0 -105px; }
  2994. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2995. .x-monthpicker-yearnav-prev-over {
  2996. cursor: pointer;
  2997. cursor: hand;
  2998. background-position: -15px -105px; }
  2999. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3000. .x-monthpicker-small .x-monthpicker-item {
  3001. margin: 2px 0 2px 0; }
  3002. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3003. .x-monthpicker-small .x-monthpicker-yearnav {
  3004. height: 23px; }
  3005. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3006. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  3007. height: 136px; }
  3008. /* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3009. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
  3010. .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
  3011. margin-top: 2px; }
  3012. /* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3013. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  3014. margin-top: 3px;
  3015. margin-bottom: 3px; }
  3016. /* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3017. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  3018. margin-top: 3px;
  3019. margin-bottom: 3px; }
  3020. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3021. .x-nlg .x-datepicker-header {
  3022. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  3023. background-repeat: repeat-x;
  3024. background-position: top left; }
  3025. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3026. .x-nlg .x-datepicker-footer,
  3027. .x-nlg .x-monthpicker-buttons {
  3028. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  3029. background-repeat: repeat-x;
  3030. background-position: top left; }
  3031. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3032. .x-color-picker {
  3033. width: 144px;
  3034. height: 90px;
  3035. cursor: pointer; }
  3036. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3037. .x-color-picker a {
  3038. border: 1px solid #fff;
  3039. float: left;
  3040. padding: 2px;
  3041. text-decoration: none;
  3042. -moz-outline: 0 none;
  3043. outline: 0 none;
  3044. cursor: pointer; }
  3045. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3046. .x-color-picker a:hover,
  3047. .x-color-picker a.x-color-picker-selected {
  3048. border-color: #8bb8f3;
  3049. background-color: #deecfd; }
  3050. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3051. .x-color-picker em {
  3052. display: block;
  3053. border: 1px solid #aca899; }
  3054. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3055. .x-color-picker em span {
  3056. cursor: pointer;
  3057. display: block;
  3058. height: 10px;
  3059. width: 10px;
  3060. line-height: 10px; }
  3061. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3062. .x-menu-body {
  3063. user-select: none;
  3064. -o-user-select: none;
  3065. -ms-user-select: none;
  3066. -moz-user-select: -moz-none;
  3067. -webkit-user-select: none;
  3068. cursor: default;
  3069. background: #f0f0f0 !important;
  3070. padding: 2px; }
  3071. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3072. .x-menu-item .x-form-text {
  3073. user-select: text;
  3074. -webkit-user-select: text;
  3075. -o-user-select: text;
  3076. -ie-user-select: text;
  3077. -moz-user-select: text;
  3078. -ie-user-select: text; }
  3079. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3080. .x-menu-icon-separator {
  3081. position: absolute;
  3082. top: 0px;
  3083. left: 27px;
  3084. z-index: 0;
  3085. border-left: solid 1px #e0e0e0;
  3086. background-color: white;
  3087. width: 2px;
  3088. overflow: hidden; }
  3089. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3090. .x-menu-plain .x-menu-icon-separator {
  3091. display: none; }
  3092. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3093. .x-menu-focus {
  3094. display: block;
  3095. position: absolute;
  3096. top: -10px;
  3097. left: -10px;
  3098. width: 0px;
  3099. height: 0px; }
  3100. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3101. .x-menu-item {
  3102. white-space: nowrap;
  3103. overflow: hidden;
  3104. z-index: 1; }
  3105. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3106. .x-menu-item-cmp {
  3107. margin-bottom: 1px; }
  3108. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3109. .x-menu-item-link {
  3110. display: block;
  3111. margin: 1px;
  3112. padding: 6px 2px 3px 32px;
  3113. text-decoration: none !important;
  3114. line-height: 16px;
  3115. cursor: default; }
  3116. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3117. .x-menu-item-icon {
  3118. width: 16px;
  3119. height: 16px;
  3120. position: absolute;
  3121. top: 5px;
  3122. left: 4px;
  3123. background: no-repeat center center; }
  3124. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3125. .x-menu-item-icon-right {
  3126. width: 16px;
  3127. height: 16px;
  3128. position: absolute;
  3129. top: 6px;
  3130. right: 4px;
  3131. background: no-repeat center center; }
  3132. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3133. .x-menu-item-text {
  3134. font-size: 11px;
  3135. color: #222222; }
  3136. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3137. .x-menu-item-checked .x-menu-item-icon {
  3138. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  3139. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3140. .x-menu-item-checked .x-menu-group-icon {
  3141. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  3142. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3143. .x-menu-item-unchecked .x-menu-item-icon {
  3144. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  3145. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3146. .x-menu-item-unchecked .x-menu-group-icon {
  3147. background-image: none; }
  3148. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3149. .x-menu-item-separator {
  3150. height: 2px;
  3151. border-top: solid 1px #e0e0e0;
  3152. background-color: white;
  3153. margin: 2px 0px;
  3154. overflow: hidden; }
  3155. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3156. .x-menu-item-arrow {
  3157. position: absolute;
  3158. width: 12px;
  3159. height: 9px;
  3160. top: 9px;
  3161. right: 0px;
  3162. background: no-repeat center center;
  3163. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  3164. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3165. .x-menu-item-indent {
  3166. margin-left: 31px;
  3167. /* The 2px is the width of the seperator */ }
  3168. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3169. .x-menu-item-active {
  3170. cursor: pointer; }
  3171. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3172. .x-menu-item-active .x-menu-item-link {
  3173. background-image: none;
  3174. background-color: #d9e8fb;
  3175. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  3176. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  3177. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  3178. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  3179. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  3180. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  3181. margin: 0px;
  3182. border: 1px solid #a9cbf5;
  3183. cursor: pointer;
  3184. -moz-border-radius: 3px;
  3185. -webkit-border-radius: 3px;
  3186. -o-border-radius: 3px;
  3187. -ms-border-radius: 3px;
  3188. -khtml-border-radius: 3px;
  3189. border-radius: 3px; }
  3190. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3191. .x-menu-item-disabled {
  3192. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3193. opacity: 0.5; }
  3194. /* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3195. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  3196. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3197. opacity: 0.5; }
  3198. /* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3199. .x-ie .x-menu-item-disabled .x-menu-item-text {
  3200. background-color: transparent; }
  3201. /* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3202. .x-strict .x-ie7m .x-ie .x-menu-icon-separator {
  3203. width: 1px; }
  3204. /* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3205. .x-strict .x-ie7m .x-ie .x-menu-item-separator {
  3206. height: 1px; }
  3207. /* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3208. .x-ie6 .x-menu-item-link,
  3209. .x-ie7 .x-menu-item-link,
  3210. .x-quirks .x-ie8 .x-menu-item-link {
  3211. padding-bottom: 2px; }
  3212. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3213. .x-nlg .x-menu-item-active .x-menu-item-link {
  3214. background: #d9e8fb repeat-x left top;
  3215. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  3216. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3217. .x-menu-date-item {
  3218. border-color: #99BBE8; }
  3219. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3220. .x-panel .x-grid-body {
  3221. background: white;
  3222. border-color: #99bce8;
  3223. border-style: solid;
  3224. border-width: 1px;
  3225. border-top-color: #c5c5c5; }
  3226. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3227. .x-panel .x-grid-header-ct-hidden {
  3228. visibility: hidden; }
  3229. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3230. .x-grid-empty {
  3231. padding: 10px;
  3232. color: gray;
  3233. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  3234. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3235. .x-grid-header-hidden .x-grid-body {
  3236. border-top-color: #99bce8 !important; }
  3237. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3238. .x-grid-view {
  3239. overflow: hidden;
  3240. position: relative; }
  3241. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3242. .x-grid-table {
  3243. table-layout: fixed;
  3244. border-collapse: separate; }
  3245. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3246. .x-autowidth-table table.x-grid-table {
  3247. table-layout: auto;
  3248. width: auto!important; }
  3249. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3250. .x-grid-row .x-grid-table {
  3251. border-collapse: collapse; }
  3252. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3253. .x-grid-locked .x-grid-inner-locked {
  3254. border-width: 0 1px 0 0 !important;
  3255. border-style: solid; }
  3256. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3257. .x-grid-header-ct {
  3258. cursor: default;
  3259. zoom: 1;
  3260. padding: 0;
  3261. border: 1px solid #99bce8;
  3262. border-bottom-color: #c5c5c5; }
  3263. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3264. .x-accordion-item .x-grid-header-ct {
  3265. border-width: 0 0 1px 0!important; }
  3266. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3267. .x-column-header {
  3268. padding: 0;
  3269. position: absolute;
  3270. overflow: hidden;
  3271. border-right: 1px solid #c5c5c5;
  3272. border-left: 0 none;
  3273. border-top: 0 none;
  3274. border-bottom: 0 none;
  3275. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  3276. color: null;
  3277. font: normal 11px tahoma, arial, verdana, sans-serif; }
  3278. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3279. .x-group-header {
  3280. padding: 0;
  3281. border-left-width: 0; }
  3282. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3283. .x-group-sub-header {
  3284. background: transparent;
  3285. border-top: 1px solid #c5c5c5;
  3286. border-left-width: 0; }
  3287. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3288. .x-column-header-inner {
  3289. zoom: 1;
  3290. position: relative;
  3291. white-space: nowrap;
  3292. line-height: 15px;
  3293. padding: 3px 6px 4px; }
  3294. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3295. .x-column-header-inner .x-column-header-text {
  3296. white-space: nowrap; }
  3297. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3298. .x-column-header-over,
  3299. .x-column-header-sort-ASC,
  3300. .x-column-header-sort-DESC {
  3301. border-left-color: #aaccf6;
  3302. border-right-color: #aaccf6; }
  3303. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3304. .x-nlg .x-grid-header-ct,
  3305. .x-nlg .x-column-header {
  3306. background: repeat-x 0 top;
  3307. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  3308. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3309. .x-nlg .x-column-header-over,
  3310. .x-nlg .x-column-header-sort-ASC,
  3311. .x-nlg .x-column-header-sort-DESC {
  3312. background: #ebf3fd repeat-x 0 top;
  3313. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  3314. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3315. .x-column-header-trigger {
  3316. display: none;
  3317. height: 100%;
  3318. width: 14px;
  3319. background: no-repeat left center;
  3320. background-color: #c3daf9;
  3321. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  3322. position: absolute;
  3323. right: 0;
  3324. top: 0;
  3325. z-index: 2;
  3326. cursor: pointer; }
  3327. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3328. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  3329. display: block; }
  3330. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3331. .x-column-header-align-right {
  3332. text-align: right; }
  3333. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3334. .x-column-header-align-right .x-column-header-text {
  3335. padding-right: 0.5ex;
  3336. margin-right: 6px; }
  3337. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3338. .x-column-header-align-center {
  3339. text-align: center; }
  3340. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3341. .x-column-header-align-left {
  3342. text-align: left; }
  3343. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3344. .x-column-header-sort-ASC .x-column-header-text {
  3345. padding-right: 16px;
  3346. background: no-repeat right 6px;
  3347. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  3348. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3349. .x-column-header-sort-DESC .x-column-header-text {
  3350. padding-right: 16px;
  3351. background: no-repeat right 6px;
  3352. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  3353. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3354. .x-grid-row {
  3355. vertical-align: top; }
  3356. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3357. .x-grid-row .x-grid-cell {
  3358. color: null;
  3359. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3360. background-color: white;
  3361. border-color: #ededed;
  3362. border-style: solid;
  3363. border-top-color: #fafafa;
  3364. border-width: 0; }
  3365. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3366. .x-grid-with-row-lines .x-grid-cell {
  3367. border-width: 1px 0; }
  3368. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3369. .x-grid-rowwrap-div {
  3370. border-width: 1px 0;
  3371. border-color: #ededed;
  3372. border-style: solid;
  3373. border-top-color: #fafafa;
  3374. overflow: hidden; }
  3375. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3376. .x-grid-row-alt .x-grid-cell,
  3377. .x-grid-row-alt .x-grid-rowwrap-div {
  3378. background-color: #fafafa; }
  3379. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3380. .x-grid-row-over .x-grid-cell,
  3381. .x-grid-row-over .x-grid-rowwrap-div {
  3382. border-color: #dddddd;
  3383. background-color: #efefef; }
  3384. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3385. .x-grid-row-focused .x-grid-cell,
  3386. .x-grid-row-focused .x-grid-rowwrap-div {
  3387. border-color: #dddddd;
  3388. background-color: #efefef; }
  3389. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3390. .x-grid-row-selected .x-grid-cell,
  3391. .x-grid-row-selected .x-grid-rowwrap-div {
  3392. border-style: dotted;
  3393. border-color: #a3bae9;
  3394. background-color: #dfe8f6 !important; }
  3395. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3396. .x-grid-rowwrap-div .x-grid-cell,
  3397. .x-grid-rowwrap-div .x-grid-cell-inner {
  3398. border-width: 0;
  3399. background: transparent; }
  3400. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3401. .x-grid-row-body-hidden {
  3402. display: none; }
  3403. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3404. .x-grid-rowbody {
  3405. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  3406. padding: 4px; }
  3407. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3408. .x-grid-rowbody p {
  3409. margin: 5px 5px 10px 5px; }
  3410. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3411. .x-grid-cell {
  3412. overflow: hidden; }
  3413. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3414. .x-grid-cell-inner {
  3415. overflow: hidden;
  3416. -o-text-overflow: ellipsis;
  3417. text-overflow: ellipsis;
  3418. padding: 2px 6px 3px;
  3419. white-space: nowrap; }
  3420. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3421. .x-grid-with-row-lines .x-grid-cell-inner {
  3422. line-height: 13px;
  3423. padding-bottom: 4px; }
  3424. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3425. .x-action-col-cell .x-grid-cell-inner {
  3426. line-height: 0;
  3427. padding: 2px; }
  3428. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3429. .x-action-col-cell .x-item-disabled {
  3430. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  3431. opacity: 0.3; }
  3432. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3433. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  3434. padding-top: 1px; }
  3435. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3436. .x-grid-row .x-grid-cell-special {
  3437. padding: 0;
  3438. border-right: 1px solid #d0d0d0;
  3439. background-image: none;
  3440. background-color: #f6f6f6;
  3441. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  3442. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3443. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3444. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3445. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3446. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  3447. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3448. .x-grid-row .x-grid-cell-row-checker {
  3449. vertical-align: middle; }
  3450. /*
  3451. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  3452. use an IE-specific trick to make the row disappear. We cannot do this on any
  3453. other browser, because it is not a non-standard thing to do and those other
  3454. browsers will do whacky things with it.
  3455. */
  3456. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3457. .x-ie6 .x-grid-header-row,
  3458. .x-ie7 .x-grid-header-row,
  3459. .x-quirks .x-ie8 .x-grid-header-row {
  3460. position: absolute; }
  3461. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3462. .x-grid-row-selected .x-grid-cell-special {
  3463. border-right: 1px solid #aaccf6;
  3464. background-image: none;
  3465. background-color: #dfe8f6;
  3466. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  3467. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  3468. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  3469. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  3470. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  3471. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  3472. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3473. .x-grid-dirty-cell {
  3474. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  3475. background-position: 0 0;
  3476. background-repeat: no-repeat; }
  3477. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3478. .x-grid-cell-selected {
  3479. background-color: #B8CFEE !important; }
  3480. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3481. .x-nlg .x-grid-cell-special {
  3482. background-repeat: repeat-y;
  3483. background-position: top right; }
  3484. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3485. .x-nlg .x-grid-row .x-grid-cell-special,
  3486. .x-nlg .x-grid-row-over .x-grid-cell-special {
  3487. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  3488. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3489. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  3490. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  3491. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  3492. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3493. .x-grid-with-col-lines .x-grid-cell {
  3494. padding-right: 0;
  3495. border-right: 1px solid #d0d0d0; }
  3496. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3497. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3498. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3499. padding-left: 12px;
  3500. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  3501. background-repeat: no-repeat;
  3502. background-position: -16px 2px; }
  3503. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3504. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3505. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3506. background-position: -16px 1px; }
  3507. /* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3508. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3509. background-position: -16px 2px; }
  3510. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3511. .x-unselectable {
  3512. user-select: none;
  3513. -o-user-select: none;
  3514. -ms-user-select: none;
  3515. -moz-user-select: -moz-none;
  3516. -webkit-user-select: none;
  3517. cursor: default; }
  3518. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3519. .x-grid-row-body-hidden {
  3520. display: none; }
  3521. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3522. .x-grid-group-collapsed {
  3523. display: none; }
  3524. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3525. .x-grid-view .x-grid-td-expander {
  3526. vertical-align: top; }
  3527. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3528. .x-grid-td-expander {
  3529. background: repeat-y right transparent; }
  3530. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3531. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3532. padding: 0 !important; }
  3533. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3534. .x-grid-row-expander {
  3535. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3536. background-color: transparent;
  3537. width: 9px;
  3538. height: 13px;
  3539. margin-left: 3px;
  3540. background-repeat: no-repeat;
  3541. background-position: 0 -2px; }
  3542. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3543. .x-grid-row-collapsed .x-grid-row-expander {
  3544. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3545. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3546. .x-grid-resize-marker {
  3547. position: absolute;
  3548. z-index: 5;
  3549. top: 0;
  3550. width: 1px;
  3551. background-color: #0f0f0f; }
  3552. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3553. .col-move-top, .col-move-bottom {
  3554. width: 9px;
  3555. height: 9px;
  3556. position: absolute;
  3557. top: 0;
  3558. line-height: 0;
  3559. font-size: 0;
  3560. overflow: hidden;
  3561. z-index: 20000;
  3562. background: no-repeat left top transparent; }
  3563. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3564. .col-move-top {
  3565. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  3566. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3567. .col-move-bottom {
  3568. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  3569. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3570. .x-tbar-page-number {
  3571. width: 30px; }
  3572. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3573. .x-grid-group,
  3574. .x-grid-group-body,
  3575. .x-grid-group-hd {
  3576. zoom: 1; }
  3577. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3578. .x-grid-group-hd {
  3579. padding-top: 6px; }
  3580. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3581. .x-grid-group-hd .x-grid-cell-inner {
  3582. padding: 10px 4px 4px 4px;
  3583. background: white;
  3584. border-width: 0 0 2px 0;
  3585. border-style: solid;
  3586. border-color: #99bbe8;
  3587. cursor: pointer; }
  3588. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3589. .x-grid-group-hd-collapsible .x-grid-group-title {
  3590. background: transparent no-repeat 0 -1px;
  3591. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3592. padding: 0 0 0 14px; }
  3593. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3594. .x-grid-group-title {
  3595. color: #3764a0;
  3596. font: bold 11px tahoma, arial, verdana, sans-serif; }
  3597. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3598. .x-grid-group-hd-collapsed .x-grid-group-title {
  3599. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3600. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3601. .x-grid-group-collapsed .x-grid-group-body {
  3602. display: none; }
  3603. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3604. .x-grid-group-collapsed .x-grid-group-title {
  3605. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3606. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3607. .x-group-by-icon {
  3608. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3609. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3610. .x-show-groups-icon {
  3611. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3612. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3613. .x-column-header-checkbox .x-column-header-inner {
  3614. padding: 0; }
  3615. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3616. .x-grid-cell-special .x-grid-cell-inner {
  3617. padding-left: 4px;
  3618. padding-right: 4px; }
  3619. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3620. .x-grid-row-checker,
  3621. .x-column-header-checkbox .x-column-header-text {
  3622. height: 14px;
  3623. width: 14px;
  3624. line-height: 0;
  3625. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  3626. background-position: -1px -1px;
  3627. background-repeat: no-repeat;
  3628. background-color: transparent; }
  3629. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3630. .x-column-header-checkbox .x-column-header-text {
  3631. display: block;
  3632. margin: 0 5px; }
  3633. /* IE6, IE7, and all IE Quirks mode need line-height to be the same as checkbox height or the header/row height will be too tall */
  3634. /* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3635. .x-quirks .x-ie .x-grid-row-checker,
  3636. .x-quirks .x-ie .x-column-header-checkbox .x-column-header-text, .x-ie7m .x-grid-row-checker, .x-ie7m .x-column-header-checkbox .x-column-header-text {
  3637. line-height: 14px; }
  3638. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3639. .x-grid-hd-checker-on .x-column-header-text {
  3640. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3641. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3642. .x-grid-cell-row-checker .x-grid-cell-inner {
  3643. padding-top: 4px;
  3644. padding-bottom: 2px;
  3645. line-height: 14px; }
  3646. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3647. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  3648. padding-top: 3px; }
  3649. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3650. .x-grid-row-checker {
  3651. margin-left: 1px;
  3652. background-position: 50% -2px; }
  3653. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3654. .x-grid-row-selected .x-grid-row-checker,
  3655. .x-grid-row-checked .x-grid-row-checker {
  3656. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3657. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3658. .x-tbar-page-first {
  3659. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  3660. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3661. .x-tbar-loading {
  3662. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  3663. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3664. .x-tbar-page-last {
  3665. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  3666. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3667. .x-tbar-page-next {
  3668. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  3669. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3670. .x-tbar-page-prev {
  3671. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  3672. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3673. .x-item-disabled .x-tbar-loading {
  3674. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  3675. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3676. .x-item-disabled .x-tbar-page-first {
  3677. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  3678. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3679. .x-item-disabled .x-tbar-page-last {
  3680. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  3681. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3682. .x-item-disabled .x-tbar-page-next {
  3683. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  3684. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3685. .x-item-disabled .x-tbar-page-prev {
  3686. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  3687. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3688. .x-hmenu-sort-asc .x-menu-item-icon {
  3689. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  3690. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3691. .x-hmenu-sort-desc .x-menu-item-icon {
  3692. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  3693. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3694. .x-hmenu-lock .x-menu-item-icon {
  3695. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  3696. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3697. .x-hmenu-unlock .x-menu-item-icon {
  3698. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  3699. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3700. .x-group-by-icon {
  3701. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3702. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3703. .x-cols-icon .x-menu-item-icon {
  3704. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  3705. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3706. .x-show-groups-icon {
  3707. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3708. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3709. .x-grid-drop-indicator {
  3710. position: absolute;
  3711. height: 1px;
  3712. line-height: 0px;
  3713. background-color: #77BC71;
  3714. overflow: visible; }
  3715. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3716. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3717. position: absolute;
  3718. top: -8px;
  3719. left: -12px;
  3720. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  3721. height: 16px;
  3722. width: 16px; }
  3723. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3724. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3725. position: absolute;
  3726. top: -8px;
  3727. right: -11px;
  3728. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3729. height: 16px;
  3730. width: 16px; }
  3731. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3732. .x-ie6 .x-grid-drop-indicator-left {
  3733. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  3734. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3735. .x-ie6 .x-grid-drop-indicator-right {
  3736. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  3737. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3738. .x-grid-editor .x-form-text {
  3739. padding: 0 4px; }
  3740. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3741. .x-grid-editor .x-form-cb-wrap {
  3742. padding-top: 3px; }
  3743. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3744. .x-grid-row-editor {
  3745. position: absolute !important;
  3746. z-index: 1;
  3747. zoom: 1;
  3748. overflow: visible !important; }
  3749. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3750. .x-grid-row-editor .x-form-text {
  3751. padding: 0 2px; }
  3752. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3753. .x-grid-row-editor .x-form-cb-wrap {
  3754. padding-top: 0; }
  3755. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3756. .x-grid-row-editor .x-form-checkbox {
  3757. margin-left: -4px; }
  3758. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3759. .x-grid-row-editor .x-form-display-field {
  3760. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3761. padding-top: 0;
  3762. padding-left: 2px; }
  3763. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3764. .x-grid-row-editor .x-panel-body {
  3765. background-color: #eaf1fb;
  3766. border-top: 1px solid #99bce8 !important;
  3767. border-bottom: 1px solid #99bce8 !important; }
  3768. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3769. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3770. text-align: center; }
  3771. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3772. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3773. height: 19px; }
  3774. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3775. .x-grid-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-form-trigger-wrap .x-form-spinner-down, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-down {
  3776. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3777. height: 10px !important; }
  3778. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3779. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3780. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3781. height: 18px; }
  3782. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3783. .x-border-box .x-grid-editor .x-form-trigger,
  3784. .x-border-box .x-grid-row-editor .x-form-trigger {
  3785. height: 20px; }
  3786. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3787. .x-border-box .x-grid-editor .x-form-text,
  3788. .x-border-box .x-grid-row-editor .x-form-text {
  3789. height: 20px;
  3790. padding-bottom: 1px; }
  3791. /* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3792. .x-ie .x-grid-editor .x-form-text {
  3793. padding-left: 5px; }
  3794. /* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3795. .x-ie .x-grid-row-editor .x-form-text {
  3796. padding-left: 3px; }
  3797. /* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3798. .x-ie8m .x-grid-editor .x-form-text,
  3799. .x-ie8m .x-grid-row-editor .x-form-text {
  3800. padding-top: 1px; }
  3801. /* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3802. .x-strict .x-ie6 .x-grid-editor .x-form-text,
  3803. .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
  3804. .x-strict .x-ie7 .x-grid-editor .x-form-text,
  3805. .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
  3806. height: 17px; }
  3807. /* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3808. .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
  3809. line-height: 17px; }
  3810. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3811. .x-grid-row-editor-buttons {
  3812. background-color: #eaf1fb;
  3813. position: absolute;
  3814. bottom: -31px;
  3815. padding: 4px;
  3816. height: 32px; }
  3817. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3818. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3819. width: 192px;
  3820. height: 24px; }
  3821. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3822. .x-grid-row-editor-buttons-ml,
  3823. .x-grid-row-editor-buttons-mr,
  3824. .x-grid-row-editor-buttons-bl,
  3825. .x-grid-row-editor-buttons-br,
  3826. .x-grid-row-editor-buttons-bc {
  3827. position: absolute;
  3828. overflow: hidden; }
  3829. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3830. .x-grid-row-editor-buttons-bl,
  3831. .x-grid-row-editor-buttons-br {
  3832. width: 4px;
  3833. height: 4px;
  3834. bottom: 0px;
  3835. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  3836. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3837. .x-grid-row-editor-buttons-bl {
  3838. left: 0px;
  3839. background-position: 0px -16px; }
  3840. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3841. .x-grid-row-editor-buttons-br {
  3842. right: 0px;
  3843. background-position: 0px -20px; }
  3844. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3845. .x-grid-row-editor-buttons-bc {
  3846. position: absolute;
  3847. left: 4px;
  3848. bottom: 0px;
  3849. width: 192px;
  3850. height: 1px;
  3851. background-color: #99bce8; }
  3852. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3853. .x-grid-row-editor-buttons-ml,
  3854. .x-grid-row-editor-buttons-mr {
  3855. height: 27px;
  3856. width: 1px;
  3857. top: 1px;
  3858. background-color: #99bce8; }
  3859. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3860. .x-grid-row-editor-buttons-ml {
  3861. left: 0px; }
  3862. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3863. .x-grid-row-editor-buttons-mr {
  3864. background-position: 0px -20px;
  3865. right: 0px; }
  3866. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3867. .x-grid-row-editor-errors ul {
  3868. margin-left: 5px; }
  3869. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3870. .x-grid-row-editor-errors li {
  3871. list-style: disc;
  3872. margin-left: 15px; }
  3873. /*misc*/
  3874. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3875. .x-webkit *:focus {
  3876. outline: none !important; }
  3877. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3878. .x-form-item {
  3879. vertical-align: top;
  3880. table-layout: fixed; }
  3881. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3882. .x-autocontainer-form-item,
  3883. .x-anchor-form-item,
  3884. .x-vbox-form-item,
  3885. .x-checkboxgroup-form-item,
  3886. .x-table-form-item {
  3887. margin-bottom: 5px; }
  3888. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3889. .x-form-layout-table {
  3890. border-collapse: separate;
  3891. border-spacing: 0 2px; }
  3892. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3893. .x-form-item-body {
  3894. position: relative; }
  3895. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3896. .x-form-form-item td {
  3897. border-top: 1px solid transparent; }
  3898. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3899. .x-ie6 .x-form-layout-table {
  3900. border-collapse: collapse;
  3901. border-spacing: 0; }
  3902. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3903. .x-ie6 .x-form-form-item td {
  3904. border-top-width: 0; }
  3905. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3906. .x-ie6 td.x-form-item-pad {
  3907. height: 5px; }
  3908. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3909. .x-editor .x-form-item-body {
  3910. padding-bottom: 0; }
  3911. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3912. .x-form-item-label {
  3913. display: block;
  3914. padding: 3px 0 0;
  3915. font-size: 12px;
  3916. user-select: none;
  3917. -o-user-select: none;
  3918. -ms-user-select: none;
  3919. -moz-user-select: -moz-none;
  3920. -webkit-user-select: none;
  3921. cursor: default; }
  3922. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3923. .x-form-item-label-top {
  3924. display: block;
  3925. zoom: 1;
  3926. padding: 0 0 5px 0; }
  3927. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3928. .x-form-item-label-right {
  3929. text-align: right; }
  3930. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3931. .x-form-invalid-under {
  3932. padding: 2px 2px 2px 18px;
  3933. color: #c0272b;
  3934. font: normal 11px tahoma, arial, verdana, sans-serif;
  3935. line-height: 16px;
  3936. background: no-repeat 0 2px;
  3937. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3938. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3939. .x-form-invalid-icon {
  3940. width: 18px;
  3941. height: 14px;
  3942. background: no-repeat center center;
  3943. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3944. overflow: hidden; }
  3945. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3946. .x-form-invalid-icon ul {
  3947. display: block;
  3948. width: 18px; }
  3949. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3950. .x-form-invalid-icon ul li {
  3951. /* prevent inner elements from interfering with QuickTip hovering */
  3952. display: none; }
  3953. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3954. .x-lbl-top-err-icon {
  3955. margin-bottom: 4px; }
  3956. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3957. .x-form-field,
  3958. .x-form-display-field {
  3959. margin: 0 0 0 0;
  3960. font: normal 12px tahoma, arial, verdana, sans-serif;
  3961. color: black; }
  3962. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3963. .x-form-item-hidden {
  3964. margin: 0; }
  3965. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3966. .x-form-text,
  3967. textarea.x-form-field {
  3968. padding: 1px 3px;
  3969. background: repeat-x 0 0;
  3970. border: 1px solid;
  3971. background-color: white;
  3972. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3973. border-color: #b5b8c8; }
  3974. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3975. .x-form-text {
  3976. height: 18px;
  3977. line-height: 15px;
  3978. vertical-align: top; }
  3979. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3980. .x-ie8m .x-form-text {
  3981. line-height: 15px; }
  3982. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3983. .x-border-box .x-form-text {
  3984. height: 22px; }
  3985. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3986. textarea.x-form-field {
  3987. color: black;
  3988. overflow: auto;
  3989. height: auto;
  3990. line-height: normal;
  3991. background: repeat-x 0 0;
  3992. background-color: white;
  3993. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3994. resize: none; }
  3995. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3996. .x-border-box textarea.x-form-field {
  3997. height: auto; }
  3998. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3999. .x-form-focus,
  4000. textarea.x-form-focus {
  4001. border-color: #7eadd9; }
  4002. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4003. .x-form-invalid-field,
  4004. textarea.x-form-invalid-field {
  4005. background-color: white;
  4006. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  4007. background-repeat: repeat-x;
  4008. background-position: bottom;
  4009. border-color: #cc3300; }
  4010. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4011. .x-form-item {
  4012. font: normal 12px tahoma, arial, verdana, sans-serif; }
  4013. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4014. .x-form-empty-field, textarea.x-form-empty-field {
  4015. color: gray; }
  4016. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4017. .x-webkit .x-form-empty-field {
  4018. line-height: 15px; }
  4019. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4020. .x-form-display-field {
  4021. padding-top: 3px; }
  4022. /*
  4023. In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
  4024. This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
  4025. IE8 quirks on Windows 7 requires this fix, but on
  4026. IE8 quirks on Windows XP, this is breaks the layout.
  4027. TODO: Check field input heights in IE8 quirks on Windows Vista.
  4028. Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
  4029. */
  4030. /* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4031. .x-quirks .x-ie9p .x-form-text,
  4032. .x-ie7m .x-form-text {
  4033. margin-top: -1px;
  4034. margin-bottom: -1px; }
  4035. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4036. .x-ie .x-form-file {
  4037. height: 23px;
  4038. line-height: 18px;
  4039. vertical-align: middle; }
  4040. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4041. .x-field-default-toolbar .x-form-text {
  4042. height: 16px; }
  4043. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4044. .x-border-box .x-field-default-toolbar .x-form-text {
  4045. height: 20px; }
  4046. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4047. .x-field-default-toolbar .x-form-item-label-left {
  4048. padding-left: 4px; }
  4049. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4050. .x-fieldset {
  4051. border: 1px solid #b5b8c8;
  4052. padding: 10px;
  4053. margin-bottom: 10px;
  4054. display: block;
  4055. /* preserve margins in IE */
  4056. position: relative; }
  4057. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4058. .x-ie .x-fieldset {
  4059. padding-top: 0; }
  4060. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4061. .x-ie .x-fieldset .x-fieldset-body {
  4062. padding-top: 10px; }
  4063. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4064. .x-fieldset-header-checkbox {
  4065. line-height: 14px; }
  4066. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4067. .x-fieldset-header {
  4068. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  4069. color: #15428b;
  4070. padding: 0 3px 1px;
  4071. overflow: hidden; }
  4072. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4073. .x-fieldset-header .x-fieldset-header-text {
  4074. float: left;
  4075. padding: 1px 0; }
  4076. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4077. .x-fieldset-header .x-fieldset-header-text-collapsible {
  4078. cursor: pointer; }
  4079. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4080. .x-fieldset-header .x-form-item,
  4081. .x-fieldset-header .x-tool {
  4082. float: left;
  4083. margin: 1px 0 0 0; }
  4084. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4085. .x-fieldset-header .x-form-cb-wrap {
  4086. padding: 1px 0;
  4087. font-size: 0;
  4088. line-height: 0; }
  4089. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4090. .x-fieldset-with-title .x-fieldset-header-checkbox,
  4091. .x-fieldset-with-title .x-tool {
  4092. margin-right: 3px; }
  4093. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4094. .x-webkit .x-fieldset-header {
  4095. -webkit-padding-start: 3px;
  4096. -webkit-padding-end: 3px; }
  4097. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4098. .x-strict .x-ie8 .x-fieldset-header {
  4099. margin-bottom: -1px; }
  4100. /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4101. .x-strict .x-ie8 .x-fieldset-header .x-tool,
  4102. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
  4103. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  4104. position: relative;
  4105. top: -1px; }
  4106. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4107. .x-quirks .x-ie .x-fieldset-header,
  4108. .x-ie8m .x-fieldset-header {
  4109. padding-left: 1px;
  4110. padding-right: 1px; }
  4111. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4112. .x-fieldset-collapsed .x-fieldset-body {
  4113. display: none; }
  4114. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4115. .x-fieldset-collapsed {
  4116. padding-bottom: 0 !important;
  4117. border-width: 1px 1px 0 1px !important;
  4118. border-left-color: transparent !important;
  4119. border-right-color: transparent !important; }
  4120. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4121. .x-ie6 .x-fieldset-collapsed {
  4122. border-width: 1px 0 0 0 !important;
  4123. padding-bottom: 0 !important;
  4124. margin-left: 1px;
  4125. margin-right: 1px; }
  4126. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4127. .x-ie .x-fieldset-bwrap {
  4128. zoom: 1; }
  4129. /* IE legend positioning bug */
  4130. /* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4131. .x-ie .x-fieldset-noborder legend {
  4132. position: relative;
  4133. margin-bottom: 23px; }
  4134. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4135. .x-ie .x-fieldset-noborder legend span {
  4136. position: absolute;
  4137. left: 16px; }
  4138. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4139. .x-fieldset {
  4140. overflow: hidden; }
  4141. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4142. .x-fieldset-bwrap {
  4143. overflow: hidden;
  4144. zoom: 1; }
  4145. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4146. .x-fieldset-body {
  4147. overflow: hidden; }
  4148. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4149. .x-form-file-wrap .x-form-text {
  4150. color: #777; }
  4151. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4152. .x-form-file-wrap .x-form-file-btn {
  4153. overflow: hidden; }
  4154. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4155. .x-form-file-wrap .x-form-file-input {
  4156. position: absolute;
  4157. top: -4px;
  4158. right: -2px;
  4159. height: 30px;
  4160. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  4161. opacity: 0;
  4162. /* Yes, there's actually a good reason for this...
  4163. * If the configured buttonText is set to something longer than the default,
  4164. * then it will quickly exceed the width of the hidden file input's "Browse..."
  4165. * button, so part of the custom button's clickable area will be covered by
  4166. * the hidden file input's text box instead. This results in a text-selection
  4167. * mouse cursor over that part of the button, at least in Firefox, which is
  4168. * confusing to a user. Giving the hidden file input a huge font-size makes
  4169. * the native button part very large so it will cover the whole clickable area.
  4170. */
  4171. font-size: 100px; }
  4172. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4173. .x-form-cb-wrap {
  4174. padding-top: 3px; }
  4175. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4176. .x-form-checkbox,
  4177. .x-form-radio {
  4178. vertical-align: -1px;
  4179. width: 13px;
  4180. height: 13px;
  4181. background: no-repeat;
  4182. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  4183. overflow: hidden;
  4184. padding: 0;
  4185. border: 0; }
  4186. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4187. .x-form-checkbox::-moz-focus-inner,
  4188. .x-form-radio::-moz-focus-inner {
  4189. padding: 0;
  4190. border: 0; }
  4191. /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
  4192. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4193. .x-nbr.x-ie .x-form-checkbox,
  4194. .x-nbr.x-ie .x-form-radio {
  4195. font-size: 0; }
  4196. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4197. .x-form-cb-checked .x-form-checkbox,
  4198. .x-form-cb-checked .x-form-radio {
  4199. background-position: 0 -13px; }
  4200. /* Focused */
  4201. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4202. .x-form-cb-focus {
  4203. background-position: -13px 0; }
  4204. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4205. .x-form-cb-checked .x-form-cb-focus {
  4206. background-position: -13px -13px; }
  4207. /* Radios */
  4208. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4209. .x-form-radio {
  4210. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  4211. /* boxLabel */
  4212. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4213. .x-form-cb-label-before {
  4214. margin-right: 4px; }
  4215. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4216. .x-form-cb-label-after {
  4217. margin-left: 4px; }
  4218. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4219. .x-form-checkboxgroup-body {
  4220. padding: 1px 4px 1px 4px; }
  4221. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4222. .x-form-invalid .x-form-checkboxgroup-body {
  4223. border: 1px solid #c30!important;
  4224. background: transparent repeat-x bottom;
  4225. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  4226. padding: 1px 3px 0 3px; }
  4227. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4228. .x-check-group-alt {
  4229. background: #d1ddef;
  4230. border-top: 1px dotted #b5b8c8;
  4231. border-bottom: 1px dotted #b5b8c8; }
  4232. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4233. .x-form-check-group-label {
  4234. color: #333;
  4235. border-bottom: 1px solid #333;
  4236. margin: 0 30px 5px 0;
  4237. padding: 2px; }
  4238. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4239. .x-form-trigger-wrap {
  4240. vertical-align: top; }
  4241. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4242. .x-form-trigger {
  4243. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  4244. background-position: 0 0;
  4245. width: 17px;
  4246. height: 21px;
  4247. border-bottom: 1px solid #b5b8c8;
  4248. cursor: pointer;
  4249. cursor: hand;
  4250. overflow: hidden; }
  4251. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4252. .x-border-box .x-form-trigger {
  4253. height: 22px; }
  4254. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4255. .x-field-default-toolbar .x-form-trigger {
  4256. height: 19px; }
  4257. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4258. .x-border-box .x-field-default-toolbar .x-form-trigger {
  4259. height: 20px; }
  4260. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4261. .x-form-trigger-over {
  4262. background-position: -17px 0;
  4263. border-bottom-color: #7eadd9; }
  4264. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4265. .x-form-trigger-wrap-focus .x-form-trigger {
  4266. background-position: -51px 0;
  4267. border-bottom-color: #7eadd9; }
  4268. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4269. .x-form-trigger-wrap-focus .x-form-trigger-over {
  4270. background-position: -68px 0;
  4271. border-bottom-color: null; }
  4272. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4273. .x-form-trigger-click,
  4274. .x-form-trigger-wrap-focus .x-form-trigger-click {
  4275. background-position: -34px 0;
  4276. border-bottom-color: null; }
  4277. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4278. .x-form-trigger-icon {
  4279. height: 16px;
  4280. background-repeat: no-repeat;
  4281. background-position: 7px 6px; }
  4282. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4283. .x-pickerfield-open .x-form-field {
  4284. -moz-border-radius-bottomleft: 0;
  4285. -webkit-border-bottom-left-radius: 0;
  4286. -o-border-bottom-left-radius: 0;
  4287. -ms-border-bottom-left-radius: 0;
  4288. -khtml-border-bottom-left-radius: 0;
  4289. border-bottom-left-radius: 0;
  4290. -moz-border-radius-bottomright: 0;
  4291. -webkit-border-bottom-right-radius: 0;
  4292. -o-border-bottom-right-radius: 0;
  4293. -ms-border-bottom-right-radius: 0;
  4294. -khtml-border-bottom-right-radius: 0;
  4295. border-bottom-right-radius: 0; }
  4296. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4297. .x-pickerfield-open-above .x-form-field {
  4298. -moz-border-radius-bottomleft: 3px;
  4299. -webkit-border-bottom-left-radius: 3px;
  4300. -o-border-bottom-left-radius: 3px;
  4301. -ms-border-bottom-left-radius: 3px;
  4302. -khtml-border-bottom-left-radius: 3px;
  4303. border-bottom-left-radius: 3px;
  4304. -moz-border-radius-topleft: 0;
  4305. -webkit-border-top-left-radius: 0;
  4306. -o-border-top-left-radius: 0;
  4307. -ms-border-top-left-radius: 0;
  4308. -khtml-border-top-left-radius: 0;
  4309. border-top-left-radius: 0;
  4310. -moz-border-radius-topright: 0;
  4311. -webkit-border-top-right-radius: 0;
  4312. -o-border-top-right-radius: 0;
  4313. -ms-border-top-right-radius: 0;
  4314. -khtml-border-top-right-radius: 0;
  4315. border-top-right-radius: 0; }
  4316. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4317. .x-form-arrow-trigger .x-form-trigger-icon {
  4318. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  4319. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4320. .x-form-date-trigger {
  4321. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  4322. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4323. .x-form-trigger-wrap .x-form-spinner-up,
  4324. .x-form-trigger-wrap .x-form-spinner-down {
  4325. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  4326. width: 17px !important;
  4327. height: 11px !important;
  4328. font-size: 0;
  4329. /*for IE*/
  4330. border-bottom: 0; }
  4331. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4332. .x-form-trigger-wrap .x-form-spinner-down {
  4333. background-position: 0 -11px; }
  4334. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4335. .x-form-trigger-wrap-focus .x-form-spinner-down {
  4336. background-position: -51px -11px; }
  4337. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4338. .x-form-trigger-wrap .x-form-spinner-down-over {
  4339. background-position: -17px -11px; }
  4340. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4341. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4342. background-position: -68px -11px; }
  4343. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4344. .x-form-trigger-wrap .x-form-spinner-down-click {
  4345. background-position: -34px -11px; }
  4346. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4347. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  4348. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4349. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  4350. height: 10px !important; }
  4351. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4352. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4353. background-position: 0 -10px; }
  4354. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4355. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  4356. background-position: -51px -10px; }
  4357. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4358. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  4359. background-position: -17px -10px; }
  4360. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4361. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4362. background-position: -68px -10px; }
  4363. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4364. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  4365. background-position: -34px -10px; }
  4366. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4367. .x-trigger-noedit {
  4368. cursor: pointer;
  4369. cursor: hand; }
  4370. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4371. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  4372. cursor: auto; }
  4373. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4374. .x-form-clear-trigger {
  4375. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  4376. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4377. .x-form-search-trigger {
  4378. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  4379. /* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4380. .x-quirks .prefixie6 .x-form-trigger-input-cell {
  4381. height: 22px; }
  4382. /* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4383. .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
  4384. height: 20px; }
  4385. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4386. .x-html-editor-wrap {
  4387. border: 1px solid #b5b8c8; }
  4388. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4389. .x-html-editor-wrap .x-toolbar {
  4390. border-top-width: 0;
  4391. border-left-width: 0;
  4392. border-right-width: 0; }
  4393. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4394. .x-html-editor-wrap textarea {
  4395. background-color: white; }
  4396. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4397. .x-html-editor-tb .x-btn-text {
  4398. background: transparent no-repeat;
  4399. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4400. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4401. .x-html-editor-tb .x-edit-bold,
  4402. .x-menu-item img.x-edit-bold {
  4403. background-position: 0 0;
  4404. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4405. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4406. .x-html-editor-tb .x-edit-italic,
  4407. .x-menu-item img.x-edit-italic {
  4408. background-position: -16px 0;
  4409. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4410. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4411. .x-html-editor-tb .x-edit-underline,
  4412. .x-menu-item img.x-edit-underline {
  4413. background-position: -32px 0;
  4414. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4415. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4416. .x-html-editor-tb .x-edit-forecolor,
  4417. .x-menu-item img.x-edit-forecolor {
  4418. background-position: -160px 0;
  4419. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4420. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4421. .x-html-editor-tb .x-edit-backcolor,
  4422. .x-menu-item img.x-edit-backcolor {
  4423. background-position: -176px 0;
  4424. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4425. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4426. .x-html-editor-tb .x-edit-justifyleft,
  4427. .x-menu-item img.x-edit-justifyleft {
  4428. background-position: -112px 0;
  4429. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4430. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4431. .x-html-editor-tb .x-edit-justifycenter,
  4432. .x-menu-item img.x-edit-justifycenter {
  4433. background-position: -128px 0;
  4434. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4435. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4436. .x-html-editor-tb .x-edit-justifyright,
  4437. .x-menu-item img.x-edit-justifyright {
  4438. background-position: -144px 0;
  4439. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4440. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4441. .x-html-editor-tb .x-edit-insertorderedlist,
  4442. .x-menu-item img.x-edit-insertorderedlist {
  4443. background-position: -80px 0;
  4444. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4445. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4446. .x-html-editor-tb .x-edit-insertunorderedlist,
  4447. .x-menu-item img.x-edit-insertunorderedlist {
  4448. background-position: -96px 0;
  4449. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4450. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4451. .x-html-editor-tb .x-edit-increasefontsize,
  4452. .x-menu-item img.x-edit-increasefontsize {
  4453. background-position: -48px 0;
  4454. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4455. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4456. .x-html-editor-tb .x-edit-decreasefontsize,
  4457. .x-menu-item img.x-edit-decreasefontsize {
  4458. background-position: -64px 0;
  4459. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4460. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4461. .x-html-editor-tb .x-edit-sourceedit,
  4462. .x-menu-item img.x-edit-sourceedit {
  4463. background-position: -192px 0;
  4464. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4465. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4466. .x-html-editor-tb .x-edit-createlink,
  4467. .x-menu-item img.x-edit-createlink {
  4468. background-position: -208px 0;
  4469. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4470. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4471. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4472. padding: 5px;
  4473. padding-bottom: 1px; }
  4474. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4475. .x-html-editor-tb .x-toolbar {
  4476. position: static !important; }
  4477. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4478. .x-html-editor-tb .x-font-select {
  4479. font-size: 11px; }
  4480. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4481. .x-html-editor-wrap textarea {
  4482. border: 0;
  4483. padding: 3px 2px;
  4484. overflow: auto; }
  4485. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4486. .x-panel,
  4487. .x-plain {
  4488. overflow: hidden;
  4489. position: relative; }
  4490. /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4491. .x-ie .x-panel-header,
  4492. .x-ie .x-panel-header-tl,
  4493. .x-ie .x-panel-header-tc,
  4494. .x-ie .x-panel-header-tr,
  4495. .x-ie .x-panel-header-ml,
  4496. .x-ie .x-panel-header-mc,
  4497. .x-ie .x-panel-header-mr,
  4498. .x-ie .x-panel-header-bl,
  4499. .x-ie .x-panel-header-bc,
  4500. .x-ie .x-panel-header-br {
  4501. zoom: 1; }
  4502. /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4503. .x-ie8 td.x-frame-mc {
  4504. vertical-align: top; }
  4505. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4506. .x-panel-header-horizontal {
  4507. padding: 3px 5px 4px; }
  4508. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4509. .x-panel-header-vertical {
  4510. padding: 5px 4px; }
  4511. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4512. .x-panel-header-icon,
  4513. .x-window-header-icon {
  4514. width: 16px;
  4515. height: 16px;
  4516. background-repeat: no-repeat;
  4517. background-position: 0 0;
  4518. vertical-align: middle;
  4519. margin-right: 4px; }
  4520. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4521. .x-vertical .x-panel-header-icon,
  4522. .x-vertical .x-window-header-icon {
  4523. margin: 0 0 4px; }
  4524. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4525. .x-panel-header-draggable,
  4526. .x-panel-header-draggable .x-panel-header-text,
  4527. .x-window-header-draggable,
  4528. .x-window-header-draggable .x-window-header-text {
  4529. cursor: move; }
  4530. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4531. .x-panel-ghost, .x-window-ghost {
  4532. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  4533. opacity: 0.65;
  4534. cursor: move; }
  4535. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4536. .x-panel-header-horizontal .x-panel-header-body, .x-panel-header-horizontal .x-window-header-body, .x-panel-header-horizontal .x-btn-group-header-body, .x-window-header-horizontal .x-panel-header-body, .x-window-header-horizontal .x-window-header-body, .x-window-header-horizontal .x-btn-group-header-body, .x-btn-group-header-horizontal .x-panel-header-body, .x-btn-group-header-horizontal .x-window-header-body, .x-btn-group-header-horizontal .x-btn-group-header-body {
  4537. width: 100%; }
  4538. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4539. .x-panel-header-vertical .x-panel-header-body, .x-panel-header-vertical .x-window-header-body, .x-panel-header-vertical .x-btn-group-header-body, .x-window-header-vertical .x-panel-header-body, .x-window-header-vertical .x-window-header-body, .x-window-header-vertical .x-btn-group-header-body, .x-btn-group-header-vertical .x-panel-header-body, .x-btn-group-header-vertical .x-window-header-body, .x-btn-group-header-vertical .x-btn-group-header-body {
  4540. height: 100%; }
  4541. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4542. .x-panel-header-text-container {
  4543. overflow: hidden;
  4544. -o-text-overflow: ellipsis;
  4545. text-overflow: ellipsis; }
  4546. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4547. .x-panel-header-text {
  4548. user-select: none;
  4549. -o-user-select: none;
  4550. -ms-user-select: none;
  4551. -moz-user-select: -moz-none;
  4552. -webkit-user-select: none;
  4553. cursor: default;
  4554. white-space: nowrap; }
  4555. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4556. .x-panel-header-left .x-vml-base,
  4557. .x-panel-header-right .x-vml-base {
  4558. left: -3px !important; }
  4559. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4560. .x-panel-body {
  4561. overflow: hidden;
  4562. position: relative;
  4563. font-size: 12px; }
  4564. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4565. .x-panel-header-vertical .x-surface {
  4566. padding-left: 1px; }
  4567. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4568. .x-opera .x-panel-header-vertical .x-surface,
  4569. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  4570. padding-left: 2px; }
  4571. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4572. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4573. border-bottom-width: 1px !important; }
  4574. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4575. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4576. border-left-width: 1px !important; }
  4577. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4578. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4579. border-top-width: 1px !important; }
  4580. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4581. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4582. border-right-width: 1px !important; }
  4583. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4584. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4585. background-repeat: repeat-y; }
  4586. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4587. .x-panel-default {
  4588. border-color: #99bce8; }
  4589. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4590. .x-panel-header-default {
  4591. font-size: 11px;
  4592. border-color: #99bce8;
  4593. border-width: 1px;
  4594. border-style: solid; }
  4595. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4596. .x-nlg .x-panel-header-default-top {
  4597. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4598. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4599. .x-nlg .x-panel-header-default-bottom {
  4600. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4601. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4602. .x-nlg .x-panel-header-default-left {
  4603. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4604. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4605. .x-nlg .x-panel-header-default-right {
  4606. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4607. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4608. .x-nlg .x-panel-header-default-right {
  4609. background-position: top right; }
  4610. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4611. .x-nlg .x-panel-header-default-bottom {
  4612. background-position: bottom left; }
  4613. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4614. .x-panel-header-text-default {
  4615. color: #04408c;
  4616. font-size: 11px;
  4617. font-weight: bold;
  4618. font-family: tahoma, arial, verdana, sans-serif;
  4619. line-height: 17px; }
  4620. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4621. .x-panel-body-default {
  4622. background: white;
  4623. border-color: #99bce8;
  4624. color: black;
  4625. border-width: 1px;
  4626. border-style: solid; }
  4627. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4628. .x-panel-collapsed .x-window-header-default,
  4629. .x-panel-collapsed .x-panel-header-default {
  4630. border-color: #99bce8; }
  4631. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4632. .x-panel-header-default-vertical {
  4633. border-color: #99bce8; }
  4634. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4635. .x-panel-collapsed .x-panel-header-default-top {
  4636. -moz-border-radius-bottomleft: null;
  4637. -webkit-border-bottom-left-radius: null;
  4638. -o-border-bottom-left-radius: null;
  4639. -ms-border-bottom-left-radius: null;
  4640. -khtml-border-bottom-left-radius: null;
  4641. border-bottom-left-radius: null;
  4642. -moz-border-radius-bottomright: null;
  4643. -webkit-border-bottom-right-radius: null;
  4644. -o-border-bottom-right-radius: null;
  4645. -ms-border-bottom-right-radius: null;
  4646. -khtml-border-bottom-right-radius: null;
  4647. border-bottom-right-radius: null; }
  4648. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4649. .x-panel-collapsed .x-panel-header-default-right {
  4650. -moz-border-radius-topleft: null;
  4651. -webkit-border-top-left-radius: null;
  4652. -o-border-top-left-radius: null;
  4653. -ms-border-top-left-radius: null;
  4654. -khtml-border-top-left-radius: null;
  4655. border-top-left-radius: null;
  4656. -moz-border-radius-bottomleft: null;
  4657. -webkit-border-bottom-left-radius: null;
  4658. -o-border-bottom-left-radius: null;
  4659. -ms-border-bottom-left-radius: null;
  4660. -khtml-border-bottom-left-radius: null;
  4661. border-bottom-left-radius: null; }
  4662. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4663. .x-panel-collapsed .x-panel-header-default-bottom {
  4664. -moz-border-radius-topleft: null;
  4665. -webkit-border-top-left-radius: null;
  4666. -o-border-top-left-radius: null;
  4667. -ms-border-top-left-radius: null;
  4668. -khtml-border-top-left-radius: null;
  4669. border-top-left-radius: null;
  4670. -moz-border-radius-topright: null;
  4671. -webkit-border-top-right-radius: null;
  4672. -o-border-top-right-radius: null;
  4673. -ms-border-top-right-radius: null;
  4674. -khtml-border-top-right-radius: null;
  4675. border-top-right-radius: null; }
  4676. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4677. .x-panel-collapsed .x-panel-header-default-left {
  4678. -moz-border-radius-topright: null;
  4679. -webkit-border-top-right-radius: null;
  4680. -o-border-top-right-radius: null;
  4681. -ms-border-top-right-radius: null;
  4682. -khtml-border-top-right-radius: null;
  4683. border-top-right-radius: null;
  4684. -moz-border-radius-bottomright: null;
  4685. -webkit-border-bottom-right-radius: null;
  4686. -o-border-bottom-right-radius: null;
  4687. -ms-border-bottom-right-radius: null;
  4688. -khtml-border-bottom-right-radius: null;
  4689. border-bottom-right-radius: null; }
  4690. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4691. .x-panel-header-default-top {
  4692. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4693. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4694. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4695. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  4696. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4697. .x-panel-header-default-right {
  4698. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4699. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4700. -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4701. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  4702. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4703. .x-panel-header-default-bottom {
  4704. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4705. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4706. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4707. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  4708. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4709. .x-panel-header-default-left {
  4710. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4711. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4712. -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4713. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  4714. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4715. .x-panel-header-default-right-tc,
  4716. .x-panel-header-default-right-mc,
  4717. .x-panel-header-default-right-bc {
  4718. background-position: right 0; }
  4719. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4720. .x-panel-header-default-bottom-tc,
  4721. .x-panel-header-default-bottom-mc,
  4722. .x-panel-header-default-bottom-bc {
  4723. background-position: 0 bottom; }
  4724. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4725. .x-panel-default-framed {
  4726. border-color: #99bce8; }
  4727. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4728. .x-panel-header-default-framed {
  4729. font-size: 11px;
  4730. border-color: #99bce8;
  4731. border-width: 1px;
  4732. border-style: solid; }
  4733. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4734. .x-nlg .x-panel-header-default-framed-top {
  4735. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  4736. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4737. .x-nlg .x-panel-header-default-framed-bottom {
  4738. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  4739. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4740. .x-nlg .x-panel-header-default-framed-left {
  4741. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  4742. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4743. .x-nlg .x-panel-header-default-framed-right {
  4744. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  4745. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4746. .x-nlg .x-panel-header-default-framed-right {
  4747. background-position: top right; }
  4748. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4749. .x-nlg .x-panel-header-default-framed-bottom {
  4750. background-position: bottom left; }
  4751. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4752. .x-nbr .x-panel-header-default-framed {
  4753. background-image: none; }
  4754. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4755. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  4756. .x-nlg.x-opera .x-panel-header-default-framed-top,
  4757. .x-nlg.x-safari .x-panel-header-default-framed-top {
  4758. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4759. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4760. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  4761. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  4762. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  4763. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4764. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4765. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  4766. .x-nlg.x-opera .x-panel-header-default-framed-left,
  4767. .x-nlg.x-safari .x-panel-header-default-framed-left {
  4768. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4769. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4770. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  4771. .x-nlg.x-opera .x-panel-header-default-framed-right,
  4772. .x-nlg.x-safari .x-panel-header-default-framed-right {
  4773. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4774. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4775. .x-panel-header-text-default-framed {
  4776. color: #04408c;
  4777. font-size: 11px;
  4778. font-weight: bold;
  4779. font-family: tahoma, arial, verdana, sans-serif;
  4780. line-height: 17px; }
  4781. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4782. .x-panel-body-default-framed {
  4783. background: #dfe9f6;
  4784. border-color: #99bce8;
  4785. color: black;
  4786. border-width: 0;
  4787. border-style: solid; }
  4788. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4789. .x-panel-collapsed .x-window-header-default-framed,
  4790. .x-panel-collapsed .x-panel-header-default-framed {
  4791. border-color: #99bce8; }
  4792. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4793. .x-panel-header-default-framed-vertical {
  4794. border-color: #99bce8; }
  4795. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4796. .x-panel-default-framed {
  4797. padding: 4px 4px 4px 4px;
  4798. border-width: 1px;
  4799. border-style: solid;
  4800. background-color: #dfe9f6; }
  4801. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4802. .x-nlg .x-panel-default-framed-mc {
  4803. background-color: #dfe9f6; }
  4804. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4805. .x-nbr .x-panel-default-framed {
  4806. padding: 0 !important;
  4807. border-width: 0 !important;
  4808. -moz-border-radius: 0px;
  4809. -webkit-border-radius: 0px;
  4810. -o-border-radius: 0px;
  4811. -ms-border-radius: 0px;
  4812. -khtml-border-radius: 0px;
  4813. border-radius: 0px;
  4814. background-color: transparent;
  4815. background-position: 1000404px 1000404px; }
  4816. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4817. .x-nbr .x-panel-default-framed-tl,
  4818. .x-nbr .x-panel-default-framed-bl,
  4819. .x-nbr .x-panel-default-framed-tr,
  4820. .x-nbr .x-panel-default-framed-br,
  4821. .x-nbr .x-panel-default-framed-tc,
  4822. .x-nbr .x-panel-default-framed-bc,
  4823. .x-nbr .x-panel-default-framed-ml,
  4824. .x-nbr .x-panel-default-framed-mr {
  4825. zoom: 1;
  4826. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  4827. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4828. .x-nbr .x-panel-default-framed-ml,
  4829. .x-nbr .x-panel-default-framed-mr {
  4830. zoom: 1;
  4831. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
  4832. background-position: 0 0;
  4833. background-repeat: repeat-y; }
  4834. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4835. .x-nbr .x-panel-default-framed-mc {
  4836. padding: 1px 1px 1px 1px; }
  4837. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4838. .x-strict .x-ie7 .x-panel-default-framed-tl,
  4839. .x-strict .x-ie7 .x-panel-default-framed-bl {
  4840. position: relative;
  4841. right: 0; }
  4842. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4843. .x-panel-header-default-framed-top {
  4844. padding: 3px 5px 4px 5px;
  4845. border-width: 1px 1px 0 1px;
  4846. border-style: solid;
  4847. background-color: #cbddf3; }
  4848. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4849. .x-nlg .x-panel-header-default-framed-top-mc {
  4850. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4851. background-color: #cbddf3; }
  4852. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4853. .x-nbr .x-panel-header-default-framed-top {
  4854. padding: 0 !important;
  4855. border-width: 0 !important;
  4856. -moz-border-radius: 0px;
  4857. -webkit-border-radius: 0px;
  4858. -o-border-radius: 0px;
  4859. -ms-border-radius: 0px;
  4860. -khtml-border-radius: 0px;
  4861. border-radius: 0px;
  4862. background-color: transparent;
  4863. background-position: 1000404px 1000000px; }
  4864. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4865. .x-nbr .x-panel-header-default-framed-top-tl,
  4866. .x-nbr .x-panel-header-default-framed-top-bl,
  4867. .x-nbr .x-panel-header-default-framed-top-tr,
  4868. .x-nbr .x-panel-header-default-framed-top-br,
  4869. .x-nbr .x-panel-header-default-framed-top-tc,
  4870. .x-nbr .x-panel-header-default-framed-top-bc,
  4871. .x-nbr .x-panel-header-default-framed-top-ml,
  4872. .x-nbr .x-panel-header-default-framed-top-mr {
  4873. zoom: 1;
  4874. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif'); }
  4875. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4876. .x-nbr .x-panel-header-default-framed-top-ml,
  4877. .x-nbr .x-panel-header-default-framed-top-mr {
  4878. zoom: 1;
  4879. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
  4880. background-position: 0 0; }
  4881. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4882. .x-nbr .x-panel-header-default-framed-top-mc {
  4883. padding: 0px 2px 4px 2px; }
  4884. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4885. .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
  4886. .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  4887. position: relative;
  4888. right: 0; }
  4889. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4890. .x-panel-header-default-framed-right {
  4891. padding: 5px 4px 5px 4px;
  4892. border-width: 1px 1px 1px 0;
  4893. border-style: solid;
  4894. background-color: #cbddf3; }
  4895. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4896. .x-nlg .x-panel-header-default-framed-right-mc {
  4897. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4898. background-color: #cbddf3; }
  4899. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4900. .x-nbr .x-panel-header-default-framed-right {
  4901. padding: 0 !important;
  4902. border-width: 0 !important;
  4903. -moz-border-radius: 0px;
  4904. -webkit-border-radius: 0px;
  4905. -o-border-radius: 0px;
  4906. -ms-border-radius: 0px;
  4907. -khtml-border-radius: 0px;
  4908. border-radius: 0px;
  4909. background-color: transparent;
  4910. background-position: 1000004px 1100400px; }
  4911. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4912. .x-nbr .x-panel-header-default-framed-right-tl,
  4913. .x-nbr .x-panel-header-default-framed-right-bl,
  4914. .x-nbr .x-panel-header-default-framed-right-tr,
  4915. .x-nbr .x-panel-header-default-framed-right-br,
  4916. .x-nbr .x-panel-header-default-framed-right-tc,
  4917. .x-nbr .x-panel-header-default-framed-right-bc,
  4918. .x-nbr .x-panel-header-default-framed-right-ml,
  4919. .x-nbr .x-panel-header-default-framed-right-mr {
  4920. zoom: 1;
  4921. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif'); }
  4922. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4923. .x-nbr .x-panel-header-default-framed-right-tc,
  4924. .x-nbr .x-panel-header-default-framed-right-bc {
  4925. zoom: 1;
  4926. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
  4927. background-position: 0 0;
  4928. background-repeat: repeat-x; }
  4929. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4930. .x-nbr .x-panel-header-default-framed-right-mc {
  4931. padding: 2px 1px 2px 4px; }
  4932. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4933. .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
  4934. .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  4935. position: relative;
  4936. right: 0; }
  4937. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4938. .x-panel-header-default-framed-bottom {
  4939. padding: 3px 5px 4px 5px;
  4940. border-width: 0 1px 1px 1px;
  4941. border-style: solid;
  4942. background-color: #cbddf3; }
  4943. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4944. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4945. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4946. background-color: #cbddf3; }
  4947. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4948. .x-nbr .x-panel-header-default-framed-bottom {
  4949. padding: 0 !important;
  4950. border-width: 0 !important;
  4951. -moz-border-radius: 0px;
  4952. -webkit-border-radius: 0px;
  4953. -o-border-radius: 0px;
  4954. -ms-border-radius: 0px;
  4955. -khtml-border-radius: 0px;
  4956. border-radius: 0px;
  4957. background-color: transparent;
  4958. background-position: 1000000px 1000404px; }
  4959. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4960. .x-nbr .x-panel-header-default-framed-bottom-tl,
  4961. .x-nbr .x-panel-header-default-framed-bottom-bl,
  4962. .x-nbr .x-panel-header-default-framed-bottom-tr,
  4963. .x-nbr .x-panel-header-default-framed-bottom-br,
  4964. .x-nbr .x-panel-header-default-framed-bottom-tc,
  4965. .x-nbr .x-panel-header-default-framed-bottom-bc,
  4966. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4967. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4968. zoom: 1;
  4969. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif'); }
  4970. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4971. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4972. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4973. zoom: 1;
  4974. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
  4975. background-position: 0 0; }
  4976. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4977. .x-nbr .x-panel-header-default-framed-bottom-mc {
  4978. padding: 3px 2px 1px 2px; }
  4979. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4980. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
  4981. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  4982. position: relative;
  4983. right: 0; }
  4984. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4985. .x-panel-header-default-framed-left {
  4986. padding: 5px 4px 5px 4px;
  4987. border-width: 1px 0 1px 1px;
  4988. border-style: solid;
  4989. background-color: #cbddf3; }
  4990. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4991. .x-nlg .x-panel-header-default-framed-left-mc {
  4992. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4993. background-color: #cbddf3; }
  4994. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4995. .x-nbr .x-panel-header-default-framed-left {
  4996. padding: 0 !important;
  4997. border-width: 0 !important;
  4998. -moz-border-radius: 0px;
  4999. -webkit-border-radius: 0px;
  5000. -o-border-radius: 0px;
  5001. -ms-border-radius: 0px;
  5002. -khtml-border-radius: 0px;
  5003. border-radius: 0px;
  5004. background-color: transparent;
  5005. background-position: 1000400px 1100004px; }
  5006. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5007. .x-nbr .x-panel-header-default-framed-left-tl,
  5008. .x-nbr .x-panel-header-default-framed-left-bl,
  5009. .x-nbr .x-panel-header-default-framed-left-tr,
  5010. .x-nbr .x-panel-header-default-framed-left-br,
  5011. .x-nbr .x-panel-header-default-framed-left-tc,
  5012. .x-nbr .x-panel-header-default-framed-left-bc,
  5013. .x-nbr .x-panel-header-default-framed-left-ml,
  5014. .x-nbr .x-panel-header-default-framed-left-mr {
  5015. zoom: 1;
  5016. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif'); }
  5017. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5018. .x-nbr .x-panel-header-default-framed-left-tc,
  5019. .x-nbr .x-panel-header-default-framed-left-bc {
  5020. zoom: 1;
  5021. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
  5022. background-position: 0 0;
  5023. background-repeat: repeat-x; }
  5024. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5025. .x-nbr .x-panel-header-default-framed-left-mc {
  5026. padding: 2px 4px 2px 1px; }
  5027. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5028. .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
  5029. .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  5030. position: relative;
  5031. right: 0; }
  5032. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5033. .x-panel-header-default-framed-top {
  5034. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5035. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5036. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5037. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5038. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5039. .x-panel-header-default-framed-right {
  5040. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  5041. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  5042. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  5043. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  5044. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5045. .x-panel-header-default-framed-bottom {
  5046. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5047. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5048. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5049. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5050. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5051. .x-panel-header-default-framed-left {
  5052. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5053. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5054. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5055. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5056. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5057. .x-panel .x-panel-header-default-framed-top {
  5058. border-bottom-width: 1px !important; }
  5059. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5060. .x-panel .x-panel-header-default-framed-right {
  5061. border-left-width: 1px !important; }
  5062. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5063. .x-panel .x-panel-header-default-framed-bottom {
  5064. border-top-width: 1px !important; }
  5065. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5066. .x-panel .x-panel-header-default-framed-left {
  5067. border-right-width: 1px !important; }
  5068. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5069. .x-panel-header-default-framed-collapsed {
  5070. -moz-border-radius: 4px;
  5071. -webkit-border-radius: 4px;
  5072. -o-border-radius: 4px;
  5073. -ms-border-radius: 4px;
  5074. -khtml-border-radius: 4px;
  5075. border-radius: 4px; }
  5076. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5077. .x-panel-header-default-framed-collapsed-top {
  5078. padding: 3px 5px 4px 5px;
  5079. border-width: 1px;
  5080. border-style: solid;
  5081. background-color: #cbddf3; }
  5082. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5083. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  5084. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  5085. background-color: #cbddf3; }
  5086. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5087. .x-nbr .x-panel-header-default-framed-collapsed-top {
  5088. padding: 0 !important;
  5089. border-width: 0 !important;
  5090. -moz-border-radius: 0px;
  5091. -webkit-border-radius: 0px;
  5092. -o-border-radius: 0px;
  5093. -ms-border-radius: 0px;
  5094. -khtml-border-radius: 0px;
  5095. border-radius: 0px;
  5096. background-color: transparent;
  5097. background-position: 1000404px 1000404px; }
  5098. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5099. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
  5100. .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
  5101. .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
  5102. .x-nbr .x-panel-header-default-framed-collapsed-top-br,
  5103. .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
  5104. .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
  5105. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5106. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5107. zoom: 1;
  5108. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
  5109. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5110. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5111. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5112. zoom: 1;
  5113. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  5114. background-position: 0 0; }
  5115. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5116. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  5117. padding: 0px 2px 1px 2px; }
  5118. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5119. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
  5120. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  5121. position: relative;
  5122. right: 0; }
  5123. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5124. .x-panel-header-default-framed-collapsed-right {
  5125. padding: 5px 4px 5px 4px;
  5126. border-width: 1px;
  5127. border-style: solid;
  5128. background-color: #cbddf3; }
  5129. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5130. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  5131. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  5132. background-color: #cbddf3; }
  5133. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5134. .x-nbr .x-panel-header-default-framed-collapsed-right {
  5135. padding: 0 !important;
  5136. border-width: 0 !important;
  5137. -moz-border-radius: 0px;
  5138. -webkit-border-radius: 0px;
  5139. -o-border-radius: 0px;
  5140. -ms-border-radius: 0px;
  5141. -khtml-border-radius: 0px;
  5142. border-radius: 0px;
  5143. background-color: transparent;
  5144. background-position: 1000404px 1100404px; }
  5145. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5146. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
  5147. .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
  5148. .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
  5149. .x-nbr .x-panel-header-default-framed-collapsed-right-br,
  5150. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5151. .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
  5152. .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
  5153. .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
  5154. zoom: 1;
  5155. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
  5156. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5157. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5158. .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
  5159. zoom: 1;
  5160. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  5161. background-position: 0 0;
  5162. background-repeat: repeat-x; }
  5163. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5164. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  5165. padding: 2px 1px 2px 1px; }
  5166. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5167. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
  5168. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  5169. position: relative;
  5170. right: 0; }
  5171. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5172. .x-panel-header-default-framed-collapsed-bottom {
  5173. padding: 3px 5px 4px 5px;
  5174. border-width: 1px;
  5175. border-style: solid;
  5176. background-color: #cbddf3; }
  5177. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5178. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  5179. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  5180. background-color: #cbddf3; }
  5181. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5182. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  5183. padding: 0 !important;
  5184. border-width: 0 !important;
  5185. -moz-border-radius: 0px;
  5186. -webkit-border-radius: 0px;
  5187. -o-border-radius: 0px;
  5188. -ms-border-radius: 0px;
  5189. -khtml-border-radius: 0px;
  5190. border-radius: 0px;
  5191. background-color: transparent;
  5192. background-position: 1000404px 1000404px; }
  5193. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5194. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
  5195. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
  5196. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
  5197. .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
  5198. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
  5199. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
  5200. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5201. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5202. zoom: 1;
  5203. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
  5204. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5205. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5206. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5207. zoom: 1;
  5208. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  5209. background-position: 0 0; }
  5210. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5211. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  5212. padding: 0px 2px 1px 2px; }
  5213. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5214. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
  5215. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  5216. position: relative;
  5217. right: 0; }
  5218. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5219. .x-panel-header-default-framed-collapsed-left {
  5220. padding: 5px 4px 5px 4px;
  5221. border-width: 1px;
  5222. border-style: solid;
  5223. background-color: #cbddf3; }
  5224. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5225. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  5226. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  5227. background-color: #cbddf3; }
  5228. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5229. .x-nbr .x-panel-header-default-framed-collapsed-left {
  5230. padding: 0 !important;
  5231. border-width: 0 !important;
  5232. -moz-border-radius: 0px;
  5233. -webkit-border-radius: 0px;
  5234. -o-border-radius: 0px;
  5235. -ms-border-radius: 0px;
  5236. -khtml-border-radius: 0px;
  5237. border-radius: 0px;
  5238. background-color: transparent;
  5239. background-position: 1000404px 1100404px; }
  5240. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5241. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
  5242. .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
  5243. .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
  5244. .x-nbr .x-panel-header-default-framed-collapsed-left-br,
  5245. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5246. .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
  5247. .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
  5248. .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
  5249. zoom: 1;
  5250. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
  5251. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5252. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5253. .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
  5254. zoom: 1;
  5255. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  5256. background-position: 0 0;
  5257. background-repeat: repeat-x; }
  5258. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5259. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  5260. padding: 2px 1px 2px 1px; }
  5261. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5262. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
  5263. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  5264. position: relative;
  5265. right: 0; }
  5266. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5267. .x-panel-header-default-framed-right-tc,
  5268. .x-panel-header-default-framed-right-mc,
  5269. .x-panel-header-default-framed-right-bc {
  5270. background-position: right 0; }
  5271. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5272. .x-panel-header-default-framed-bottom-tc,
  5273. .x-panel-header-default-framed-bottom-mc,
  5274. .x-panel-header-default-framed-bottom-bc {
  5275. background-position: 0 bottom; }
  5276. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5277. .x-panel-header-plain,
  5278. .x-panel-body-plain {
  5279. border: 0;
  5280. padding: 0; }
  5281. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5282. .x-tip {
  5283. position: absolute;
  5284. overflow: visible;
  5285. /*pointer needs to be able to stick out*/
  5286. border-color: #8eaace; }
  5287. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5288. .x-tip .x-tip-header .x-box-item {
  5289. padding: 3px 3px 0; }
  5290. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5291. .x-tip .x-tip-header .x-tool {
  5292. padding: 0px 1px 0 0 !important; }
  5293. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5294. .x-tip {
  5295. padding: 2px 2px 2px 2px;
  5296. border-width: 1px;
  5297. border-style: solid;
  5298. background-color: #e9f2ff; }
  5299. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5300. .x-nlg .x-tip-mc {
  5301. background-color: #e9f2ff; }
  5302. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5303. .x-nbr .x-tip {
  5304. padding: 0 !important;
  5305. border-width: 0 !important;
  5306. -moz-border-radius: 0px;
  5307. -webkit-border-radius: 0px;
  5308. -o-border-radius: 0px;
  5309. -ms-border-radius: 0px;
  5310. -khtml-border-radius: 0px;
  5311. border-radius: 0px;
  5312. background-color: transparent;
  5313. background-position: 1100303px 1000303px; }
  5314. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5315. .x-nbr .x-tip-tl,
  5316. .x-nbr .x-tip-bl,
  5317. .x-nbr .x-tip-tr,
  5318. .x-nbr .x-tip-br,
  5319. .x-nbr .x-tip-tc,
  5320. .x-nbr .x-tip-bc,
  5321. .x-nbr .x-tip-ml,
  5322. .x-nbr .x-tip-mr {
  5323. zoom: 1;
  5324. background-image: url('../../resources/themes/images/default/tip/tip-corners.gif'); }
  5325. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5326. .x-nbr .x-tip-ml,
  5327. .x-nbr .x-tip-mr {
  5328. zoom: 1;
  5329. background-image: url('../../resources/themes/images/default/tip/tip-sides.gif');
  5330. background-position: 0 0;
  5331. background-repeat: repeat-y; }
  5332. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5333. .x-nbr .x-tip-mc {
  5334. padding: 0px 0px 0px 0px; }
  5335. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5336. .x-strict .x-ie7 .x-tip-tl,
  5337. .x-strict .x-ie7 .x-tip-bl {
  5338. position: relative;
  5339. right: 0; }
  5340. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5341. .x-tip-header-text {
  5342. user-select: none;
  5343. -o-user-select: none;
  5344. -ms-user-select: none;
  5345. -moz-user-select: -moz-none;
  5346. -webkit-user-select: none;
  5347. cursor: default;
  5348. color: #444444;
  5349. font-size: 11px;
  5350. font-weight: bold; }
  5351. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5352. .x-tip-header-draggable .x-tip-header-text {
  5353. cursor: move; }
  5354. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5355. .x-tip-body,
  5356. .x-form-invalid-tip-body {
  5357. overflow: hidden;
  5358. position: relative;
  5359. padding: 3px; }
  5360. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5361. .x-tip-header,
  5362. .x-tip-body,
  5363. .x-form-invalid-tip-body {
  5364. color: #444444;
  5365. font-size: 11px;
  5366. font-weight: normal; }
  5367. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5368. .x-tip-header a,
  5369. .x-tip-body a,
  5370. .x-form-invalid-tip-body a {
  5371. color: #2a2a2a; }
  5372. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5373. .x-tip-anchor {
  5374. position: absolute;
  5375. overflow: hidden;
  5376. height: 0;
  5377. width: 0;
  5378. border-style: solid;
  5379. border-width: 5px;
  5380. border-color: #8eaace;
  5381. zoom: 1; }
  5382. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5383. .x-border-box .x-tip-anchor {
  5384. width: 10px;
  5385. height: 10px; }
  5386. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5387. .x-tip-anchor-top {
  5388. border-top-color: transparent;
  5389. border-left-color: transparent;
  5390. border-right-color: transparent;
  5391. _border-top-color: pink;
  5392. _border-left-color: pink;
  5393. _border-right-color: pink;
  5394. _filter: chroma(color=pink); }
  5395. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5396. .x-tip-anchor-bottom {
  5397. border-bottom-color: transparent;
  5398. border-left-color: transparent;
  5399. border-right-color: transparent;
  5400. _border-bottom-color: pink;
  5401. _border-left-color: pink;
  5402. _border-right-color: pink;
  5403. _filter: chroma(color=pink); }
  5404. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5405. .x-tip-anchor-left {
  5406. border-top-color: transparent;
  5407. border-bottom-color: transparent;
  5408. border-left-color: transparent;
  5409. _border-top-color: pink;
  5410. _border-bottom-color: pink;
  5411. _border-left-color: pink;
  5412. _filter: chroma(color=pink); }
  5413. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5414. .x-tip-anchor-right {
  5415. border-top-color: transparent;
  5416. border-bottom-color: transparent;
  5417. border-right-color: transparent;
  5418. _border-top-color: pink;
  5419. _border-bottom-color: pink;
  5420. _border-right-color: pink;
  5421. _filter: chroma(color=pink); }
  5422. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5423. .x-form-invalid-tip {
  5424. border-color: #a1311f;
  5425. -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5426. -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5427. -o-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5428. box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; }
  5429. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5430. .x-form-invalid-tip-body {
  5431. background: 1px 1px no-repeat;
  5432. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  5433. padding-left: 22px; }
  5434. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5435. .x-form-invalid-tip-body li {
  5436. margin-bottom: 4px; }
  5437. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5438. .x-form-invalid-tip-body li.last {
  5439. margin-bottom: 0; }
  5440. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5441. .x-form-invalid-tip-default {
  5442. padding: 4px 4px 4px 4px;
  5443. border-width: 1px;
  5444. border-style: solid;
  5445. background-color: white; }
  5446. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5447. .x-nlg .x-form-invalid-tip-default-mc {
  5448. background-color: white; }
  5449. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5450. .x-nbr .x-form-invalid-tip-default {
  5451. padding: 0 !important;
  5452. border-width: 0 !important;
  5453. -moz-border-radius: 0px;
  5454. -webkit-border-radius: 0px;
  5455. -o-border-radius: 0px;
  5456. -ms-border-radius: 0px;
  5457. -khtml-border-radius: 0px;
  5458. border-radius: 0px;
  5459. background-color: transparent;
  5460. background-position: 1100505px 1000505px; }
  5461. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5462. .x-nbr .x-form-invalid-tip-default-tl,
  5463. .x-nbr .x-form-invalid-tip-default-bl,
  5464. .x-nbr .x-form-invalid-tip-default-tr,
  5465. .x-nbr .x-form-invalid-tip-default-br,
  5466. .x-nbr .x-form-invalid-tip-default-tc,
  5467. .x-nbr .x-form-invalid-tip-default-bc,
  5468. .x-nbr .x-form-invalid-tip-default-ml,
  5469. .x-nbr .x-form-invalid-tip-default-mr {
  5470. zoom: 1;
  5471. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
  5472. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5473. .x-nbr .x-form-invalid-tip-default-ml,
  5474. .x-nbr .x-form-invalid-tip-default-mr {
  5475. zoom: 1;
  5476. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
  5477. background-position: 0 0;
  5478. background-repeat: repeat-y; }
  5479. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5480. .x-nbr .x-form-invalid-tip-default-mc {
  5481. padding: 0px 0px 0px 0px; }
  5482. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5483. .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
  5484. .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
  5485. position: relative;
  5486. right: 0; }
  5487. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5488. .x-slider {
  5489. zoom: 1; }
  5490. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5491. .x-slider-inner {
  5492. position: relative;
  5493. left: 0;
  5494. top: 0;
  5495. overflow: visible;
  5496. zoom: 1; }
  5497. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5498. .x-slider-focus {
  5499. position: absolute;
  5500. left: 0;
  5501. top: 0;
  5502. width: 1px;
  5503. height: 1px;
  5504. line-height: 1px;
  5505. font-size: 1px;
  5506. -moz-outline: 0 none;
  5507. outline: 0 none;
  5508. user-select: none;
  5509. -o-user-select: none;
  5510. -ms-user-select: none;
  5511. -moz-user-select: -moz-none;
  5512. -webkit-user-select: none;
  5513. cursor: default;
  5514. display: block;
  5515. overflow: hidden; }
  5516. /* Horizontal styles */
  5517. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5518. .x-slider-horz {
  5519. padding-left: 7px;
  5520. background: transparent no-repeat 0 -24px;
  5521. width: 100%; }
  5522. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5523. .x-slider-horz .x-slider-end {
  5524. padding-right: 7px;
  5525. zoom: 1;
  5526. background: transparent no-repeat right -46px; }
  5527. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5528. .x-slider-horz .x-slider-inner {
  5529. background: transparent repeat-x 0 -2px;
  5530. height: 18px; }
  5531. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5532. .x-slider-horz .x-slider-thumb {
  5533. width: 14px;
  5534. height: 15px;
  5535. margin-left: -7px;
  5536. position: absolute;
  5537. left: 0;
  5538. top: 1px;
  5539. background: transparent no-repeat 0 0; }
  5540. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5541. .x-slider-horz .x-slider-thumb-over {
  5542. background-position: -14px -15px; }
  5543. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5544. .x-slider-horz .x-slider-thumb-drag {
  5545. background-position: -28px -30px; }
  5546. /* Vertical styles */
  5547. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5548. .x-slider-vert {
  5549. padding-top: 7px;
  5550. background: transparent no-repeat -44px 0; }
  5551. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5552. .x-slider-vert .x-slider-end {
  5553. padding-bottom: 7px;
  5554. zoom: 1;
  5555. background: transparent no-repeat -22px bottom;
  5556. width: 22px; }
  5557. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5558. .x-slider-vert .x-slider-inner {
  5559. background: transparent repeat-y 0 0;
  5560. width: 22px; }
  5561. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5562. .x-slider-vert .x-slider-thumb {
  5563. width: 15px;
  5564. height: 14px;
  5565. margin-bottom: -7px;
  5566. position: absolute;
  5567. left: 3px;
  5568. bottom: 0;
  5569. background: transparent no-repeat 0 0; }
  5570. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5571. .x-slider-vert .x-slider-thumb-over {
  5572. background-position: -15px -14px; }
  5573. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5574. .x-slider-vert .x-slider-thumb-drag {
  5575. background-position: -30px -28px; }
  5576. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5577. .x-slider-horz,
  5578. .x-slider-horz .x-slider-end,
  5579. .x-slider-horz .x-slider-inner {
  5580. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  5581. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5582. .x-slider-horz .x-slider-thumb {
  5583. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  5584. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5585. .x-slider-vert,
  5586. .x-slider-vert .x-slider-end,
  5587. .x-slider-vert .x-slider-inner {
  5588. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  5589. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5590. .x-slider-vert .x-slider-thumb {
  5591. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  5592. /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5593. .x-ie6 .x-slider-horz,
  5594. .x-ie6 .x-slider-horz .x-slider-end,
  5595. .x-ie6 .x-slider-horz .x-slider-inner {
  5596. background-image: url('../../resources/themes/images/default/slider/slider-bg.gif'); }
  5597. /* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5598. .x-ie6 .x-slider-horz .x-slider-thumb {
  5599. background-image: url('../../resources/themes/images/default/slider/slider-thumb.gif'); }
  5600. /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5601. .x-ie6 .x-slider-vert,
  5602. .x-ie6 .x-slider-vert .x-slider-end,
  5603. .x-ie6 .x-slider-vert .x-slider-inner {
  5604. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.gif'); }
  5605. /* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5606. .x-ie6 .x-slider-vert .x-slider-thumb {
  5607. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.gif'); }
  5608. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5609. .x-progress {
  5610. position: relative;
  5611. border-width: 1px;
  5612. border-style: solid;
  5613. -moz-border-radius: 0;
  5614. -webkit-border-radius: 0;
  5615. -o-border-radius: 0;
  5616. -ms-border-radius: 0;
  5617. -khtml-border-radius: 0;
  5618. border-radius: 0;
  5619. overflow: hidden;
  5620. height: 20px; }
  5621. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5622. .x-progress-bar {
  5623. height: 18px;
  5624. overflow: hidden;
  5625. position: absolute;
  5626. width: 0;
  5627. -moz-border-radius: 0;
  5628. -webkit-border-radius: 0;
  5629. -o-border-radius: 0;
  5630. -ms-border-radius: 0;
  5631. -khtml-border-radius: 0;
  5632. border-radius: 0;
  5633. border-right: 1px solid;
  5634. border-top: 1px solid; }
  5635. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5636. .x-progress-text {
  5637. overflow: hidden;
  5638. position: absolute;
  5639. padding: 0 5px;
  5640. height: 18px;
  5641. font-weight: bold;
  5642. font-size: 11px;
  5643. line-height: 16px;
  5644. text-align: center; }
  5645. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5646. .x-progress-text-back {
  5647. padding-top: 1px; }
  5648. /* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5649. .x-strict .x-ie7m .x-progress {
  5650. height: 18px; }
  5651. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5652. .x-progress-default {
  5653. border-color: #6594cf; }
  5654. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5655. .x-progress-default .x-progress-bar {
  5656. border-right-color: #6594cf;
  5657. border-top-color: #c6d8ed;
  5658. background-image: none;
  5659. background-color: #73a3e0;
  5660. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db));
  5661. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5662. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5663. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5664. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5665. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  5666. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5667. .x-progress-default .x-progress-text {
  5668. color: white; }
  5669. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5670. .x-progress-default .x-progress-text-back {
  5671. color: #396295; }
  5672. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5673. .x-nlg .x-progress-default .x-progress-bar {
  5674. background: repeat-x;
  5675. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  5676. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5677. .x-toolbar {
  5678. font-size: 11px;
  5679. border: 1px solid;
  5680. padding: 2px 0 2px 2px; }
  5681. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5682. .x-toolbar .x-form-item-label {
  5683. font-size: 11px;
  5684. line-height: 15px; }
  5685. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5686. .x-toolbar .x-toolbar-item {
  5687. margin: 0 2px 0 0; }
  5688. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5689. .x-toolbar .x-toolbar-text {
  5690. margin-left: 4px;
  5691. margin-right: 6px;
  5692. white-space: nowrap;
  5693. color: #4c4c4c;
  5694. line-height: 16px;
  5695. font-family: tahoma, arial, verdana, sans-serif;
  5696. font-size: 11px;
  5697. font-weight: normal; }
  5698. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5699. .x-toolbar .x-toolbar-separator {
  5700. display: block;
  5701. font-size: 1px;
  5702. overflow: hidden;
  5703. cursor: default;
  5704. border: 0; }
  5705. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5706. .x-toolbar .x-toolbar-separator-horizontal {
  5707. margin: 0 3px 0 2px;
  5708. height: 14px;
  5709. width: 0px;
  5710. border-left: 1px solid #98c8ff;
  5711. border-right: 1px solid white; }
  5712. /* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5713. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  5714. width: 2px; }
  5715. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5716. .x-toolbar-footer {
  5717. background: transparent;
  5718. border: 0px none;
  5719. margin-top: 3px;
  5720. padding: 2px 0 2px 6px; }
  5721. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5722. .x-toolbar-footer .x-box-inner {
  5723. border-width: 0; }
  5724. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5725. .x-toolbar-footer .x-toolbar-item {
  5726. margin: 0 6px 0 0; }
  5727. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5728. .x-toolbar-vertical {
  5729. padding: 2px 2px 0 2px; }
  5730. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5731. .x-toolbar-vertical .x-toolbar-item {
  5732. margin: 0 0 2px 0; }
  5733. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5734. .x-toolbar-vertical .x-toolbar-text {
  5735. margin-top: 4px;
  5736. margin-bottom: 6px; }
  5737. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5738. .x-toolbar-vertical .x-toolbar-separator-vertical {
  5739. margin: 2px 5px 3px 5px;
  5740. height: 0px;
  5741. width: 10px;
  5742. line-height: 0px;
  5743. border-top: 1px solid #98c8ff;
  5744. border-bottom: 1px solid white; }
  5745. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5746. .x-toolbar-scroller {
  5747. padding-left: 0; }
  5748. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5749. .x-toolbar-spacer {
  5750. width: 2px; }
  5751. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5752. .x-toolbar-more-icon {
  5753. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  5754. background-position: 2px center !important;
  5755. background-repeat: no-repeat; }
  5756. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5757. .x-toolbar-default {
  5758. border-color: #99bce8;
  5759. background-image: none;
  5760. background-color: #d3e1f1;
  5761. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  5762. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  5763. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  5764. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  5765. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  5766. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  5767. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5768. .x-nlg .x-toolbar-default {
  5769. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  5770. background-repeat: repeat-x; }
  5771. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5772. .x-toolbar-plain {
  5773. border: 0; }
  5774. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5775. .x-window {
  5776. outline: none;
  5777. overflow: hidden; }
  5778. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5779. .x-window .x-window-wrap {
  5780. position: relative; }
  5781. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5782. .x-window-body {
  5783. position: relative;
  5784. border-style: solid;
  5785. overflow: hidden; }
  5786. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5787. .x-window-maximized .x-window-wrap .x-window-header {
  5788. -moz-border-radius: 0 !important;
  5789. -webkit-border-radius: 0 !important;
  5790. -o-border-radius: 0 !important;
  5791. -ms-border-radius: 0 !important;
  5792. -khtml-border-radius: 0 !important;
  5793. border-radius: 0 !important; }
  5794. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5795. .x-window-header-top {
  5796. margin-bottom: -2px; }
  5797. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5798. .x-window-header-body-horizontal {
  5799. margin-top: -1px; }
  5800. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5801. .x-window-header-bottom {
  5802. margin-top: -1px;
  5803. margin-bottom: -1px; }
  5804. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5805. .x-window-header-left {
  5806. margin-right: -1px; }
  5807. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5808. .x-window-header-right {
  5809. margin-left: -1px; }
  5810. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5811. .x-window-header-vertical .x-surface {
  5812. padding-left: 1px; }
  5813. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5814. .x-window-collapsed .x-window-header-vertical {
  5815. -moz-border-radius: 5px;
  5816. -webkit-border-radius: 5px;
  5817. -o-border-radius: 5px;
  5818. -ms-border-radius: 5px;
  5819. -khtml-border-radius: 5px;
  5820. border-radius: 5px; }
  5821. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5822. .x-window-collapsed .x-window-header-horizontal {
  5823. -moz-border-radius: 5px;
  5824. -webkit-border-radius: 5px;
  5825. -o-border-radius: 5px;
  5826. -ms-border-radius: 5px;
  5827. -khtml-border-radius: 5px;
  5828. border-radius: 5px; }
  5829. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5830. .x-window-collapsed .x-window-header-left {
  5831. padding-right: 5px !important;
  5832. margin-right: 0; }
  5833. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5834. .x-window-collapsed .x-window-header-right {
  5835. padding-left: 5px !important;
  5836. margin-left: 0; }
  5837. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5838. .x-window-collapsed .x-window-header-top {
  5839. padding-bottom: 5px !important;
  5840. margin-bottom: -1px; }
  5841. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5842. .x-window-collapsed .x-window-header-bottom {
  5843. padding-top: 5px !important;
  5844. margin-top: 0; }
  5845. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5846. .x-window-header-left .x-vml-base,
  5847. .x-window-header-right .x-vml-base {
  5848. left: -3px !important; }
  5849. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5850. .x-opera .x-window-header-vertical .x-surface,
  5851. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  5852. padding-left: 2px; }
  5853. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5854. .x-window-header-text-container {
  5855. overflow: hidden;
  5856. -o-text-overflow: ellipsis;
  5857. text-overflow: ellipsis; }
  5858. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5859. .x-window-header-text {
  5860. user-select: none;
  5861. -o-user-select: none;
  5862. -ms-user-select: none;
  5863. -moz-user-select: -moz-none;
  5864. -webkit-user-select: none;
  5865. cursor: default;
  5866. white-space: nowrap; }
  5867. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5868. .x-window-default {
  5869. border-color: #a2b1c5;
  5870. -moz-border-radius: 5px 5px;
  5871. -webkit-border-radius: 5px 5px;
  5872. -o-border-radius: 5px 5px;
  5873. -ms-border-radius: 5px 5px;
  5874. -khtml-border-radius: 5px 5px;
  5875. border-radius: 5px 5px;
  5876. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5877. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5878. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5879. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5880. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5881. .x-window-default {
  5882. padding: 4px 4px 4px 4px;
  5883. border-width: 1px;
  5884. border-style: solid;
  5885. background-color: #ced9e7; }
  5886. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5887. .x-nlg .x-window-default-mc {
  5888. background-color: #ced9e7; }
  5889. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5890. .x-nbr .x-window-default {
  5891. padding: 0 !important;
  5892. border-width: 0 !important;
  5893. -moz-border-radius: 0px;
  5894. -webkit-border-radius: 0px;
  5895. -o-border-radius: 0px;
  5896. -ms-border-radius: 0px;
  5897. -khtml-border-radius: 0px;
  5898. border-radius: 0px;
  5899. background-color: transparent;
  5900. background-position: 1000505px 1000505px; }
  5901. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5902. .x-nbr .x-window-default-tl,
  5903. .x-nbr .x-window-default-bl,
  5904. .x-nbr .x-window-default-tr,
  5905. .x-nbr .x-window-default-br,
  5906. .x-nbr .x-window-default-tc,
  5907. .x-nbr .x-window-default-bc,
  5908. .x-nbr .x-window-default-ml,
  5909. .x-nbr .x-window-default-mr {
  5910. zoom: 1;
  5911. background-image: url('../../resources/themes/images/default/window/window-default-corners.gif'); }
  5912. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5913. .x-nbr .x-window-default-ml,
  5914. .x-nbr .x-window-default-mr {
  5915. zoom: 1;
  5916. background-image: url('../../resources/themes/images/default/window/window-default-sides.gif');
  5917. background-position: 0 0;
  5918. background-repeat: repeat-y; }
  5919. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5920. .x-nbr .x-window-default-mc {
  5921. padding: 0px 0px 0px 0px; }
  5922. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5923. .x-strict .x-ie7 .x-window-default-tl,
  5924. .x-strict .x-ie7 .x-window-default-bl {
  5925. position: relative;
  5926. right: 0; }
  5927. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5928. .x-window-body-default {
  5929. border-color: #99bbe8;
  5930. border-width: 1px;
  5931. background: #dfe8f6;
  5932. color: black; }
  5933. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5934. .x-window-header-default {
  5935. font-size: 11px;
  5936. border-color: #a2b1c5;
  5937. zoom: 1; }
  5938. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5939. .x-window-header-text-default {
  5940. color: #04468c;
  5941. font-weight: bold;
  5942. line-height: 17px;
  5943. font-family: tahoma, arial, verdana, sans-serif;
  5944. font-size: 11px; }
  5945. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5946. .x-window-header-default-top {
  5947. padding: 4px 5px 0 5px;
  5948. border-width: 1px 1px 0 1px;
  5949. border-style: solid;
  5950. background-color: #ced9e7; }
  5951. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5952. .x-nlg .x-window-header-default-top-mc {
  5953. background-color: #ced9e7; }
  5954. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5955. .x-nbr .x-window-header-default-top {
  5956. padding: 0 !important;
  5957. border-width: 0 !important;
  5958. -moz-border-radius: 0px;
  5959. -webkit-border-radius: 0px;
  5960. -o-border-radius: 0px;
  5961. -ms-border-radius: 0px;
  5962. -khtml-border-radius: 0px;
  5963. border-radius: 0px;
  5964. background-color: transparent;
  5965. background-position: 1000505px 1000000px; }
  5966. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5967. .x-nbr .x-window-header-default-top-tl,
  5968. .x-nbr .x-window-header-default-top-bl,
  5969. .x-nbr .x-window-header-default-top-tr,
  5970. .x-nbr .x-window-header-default-top-br,
  5971. .x-nbr .x-window-header-default-top-tc,
  5972. .x-nbr .x-window-header-default-top-bc,
  5973. .x-nbr .x-window-header-default-top-ml,
  5974. .x-nbr .x-window-header-default-top-mr {
  5975. zoom: 1;
  5976. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif'); }
  5977. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5978. .x-nbr .x-window-header-default-top-ml,
  5979. .x-nbr .x-window-header-default-top-mr {
  5980. zoom: 1;
  5981. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
  5982. background-position: 0 0;
  5983. background-repeat: repeat-y; }
  5984. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5985. .x-nbr .x-window-header-default-top-mc {
  5986. padding: 0px 1px 0 1px; }
  5987. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5988. .x-strict .x-ie7 .x-window-header-default-top-tl,
  5989. .x-strict .x-ie7 .x-window-header-default-top-bl {
  5990. position: relative;
  5991. right: 0; }
  5992. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5993. .x-window-header-default-right {
  5994. padding: 5px 4px 5px 0;
  5995. border-width: 1px 1px 1px 0;
  5996. border-style: solid;
  5997. background-color: #ced9e7; }
  5998. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5999. .x-nlg .x-window-header-default-right-mc {
  6000. background-color: #ced9e7; }
  6001. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6002. .x-nbr .x-window-header-default-right {
  6003. padding: 0 !important;
  6004. border-width: 0 !important;
  6005. -moz-border-radius: 0px;
  6006. -webkit-border-radius: 0px;
  6007. -o-border-radius: 0px;
  6008. -ms-border-radius: 0px;
  6009. -khtml-border-radius: 0px;
  6010. border-radius: 0px;
  6011. background-color: transparent;
  6012. background-position: 1000005px 1000500px; }
  6013. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6014. .x-nbr .x-window-header-default-right-tl,
  6015. .x-nbr .x-window-header-default-right-bl,
  6016. .x-nbr .x-window-header-default-right-tr,
  6017. .x-nbr .x-window-header-default-right-br,
  6018. .x-nbr .x-window-header-default-right-tc,
  6019. .x-nbr .x-window-header-default-right-bc,
  6020. .x-nbr .x-window-header-default-right-ml,
  6021. .x-nbr .x-window-header-default-right-mr {
  6022. zoom: 1;
  6023. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif'); }
  6024. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6025. .x-nbr .x-window-header-default-right-ml,
  6026. .x-nbr .x-window-header-default-right-mr {
  6027. zoom: 1;
  6028. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
  6029. background-position: 0 0;
  6030. background-repeat: repeat-y; }
  6031. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6032. .x-nbr .x-window-header-default-right-mc {
  6033. padding: 1px 0px 1px 0; }
  6034. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6035. .x-strict .x-ie7 .x-window-header-default-right-tl,
  6036. .x-strict .x-ie7 .x-window-header-default-right-bl {
  6037. position: relative;
  6038. right: 0; }
  6039. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6040. .x-window-header-default-bottom {
  6041. padding: 0 5px 4px 5px;
  6042. border-width: 0 1px 1px 1px;
  6043. border-style: solid;
  6044. background-color: #ced9e7; }
  6045. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6046. .x-nlg .x-window-header-default-bottom-mc {
  6047. background-color: #ced9e7; }
  6048. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6049. .x-nbr .x-window-header-default-bottom {
  6050. padding: 0 !important;
  6051. border-width: 0 !important;
  6052. -moz-border-radius: 0px;
  6053. -webkit-border-radius: 0px;
  6054. -o-border-radius: 0px;
  6055. -ms-border-radius: 0px;
  6056. -khtml-border-radius: 0px;
  6057. border-radius: 0px;
  6058. background-color: transparent;
  6059. background-position: 1000000px 1000505px; }
  6060. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6061. .x-nbr .x-window-header-default-bottom-tl,
  6062. .x-nbr .x-window-header-default-bottom-bl,
  6063. .x-nbr .x-window-header-default-bottom-tr,
  6064. .x-nbr .x-window-header-default-bottom-br,
  6065. .x-nbr .x-window-header-default-bottom-tc,
  6066. .x-nbr .x-window-header-default-bottom-bc,
  6067. .x-nbr .x-window-header-default-bottom-ml,
  6068. .x-nbr .x-window-header-default-bottom-mr {
  6069. zoom: 1;
  6070. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif'); }
  6071. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6072. .x-nbr .x-window-header-default-bottom-ml,
  6073. .x-nbr .x-window-header-default-bottom-mr {
  6074. zoom: 1;
  6075. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
  6076. background-position: 0 0;
  6077. background-repeat: repeat-y; }
  6078. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6079. .x-nbr .x-window-header-default-bottom-mc {
  6080. padding: 0 1px 0px 1px; }
  6081. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6082. .x-strict .x-ie7 .x-window-header-default-bottom-tl,
  6083. .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  6084. position: relative;
  6085. right: 0; }
  6086. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6087. .x-window-header-default-left {
  6088. padding: 5px 0px 5px 4px;
  6089. border-width: 1px 0 1px 1px;
  6090. border-style: solid;
  6091. background-color: #ced9e7; }
  6092. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6093. .x-nlg .x-window-header-default-left-mc {
  6094. background-color: #ced9e7; }
  6095. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6096. .x-nbr .x-window-header-default-left {
  6097. padding: 0 !important;
  6098. border-width: 0 !important;
  6099. -moz-border-radius: 0px;
  6100. -webkit-border-radius: 0px;
  6101. -o-border-radius: 0px;
  6102. -ms-border-radius: 0px;
  6103. -khtml-border-radius: 0px;
  6104. border-radius: 0px;
  6105. background-color: transparent;
  6106. background-position: 1000500px 1000005px; }
  6107. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6108. .x-nbr .x-window-header-default-left-tl,
  6109. .x-nbr .x-window-header-default-left-bl,
  6110. .x-nbr .x-window-header-default-left-tr,
  6111. .x-nbr .x-window-header-default-left-br,
  6112. .x-nbr .x-window-header-default-left-tc,
  6113. .x-nbr .x-window-header-default-left-bc,
  6114. .x-nbr .x-window-header-default-left-ml,
  6115. .x-nbr .x-window-header-default-left-mr {
  6116. zoom: 1;
  6117. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif'); }
  6118. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6119. .x-nbr .x-window-header-default-left-ml,
  6120. .x-nbr .x-window-header-default-left-mr {
  6121. zoom: 1;
  6122. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
  6123. background-position: 0 0;
  6124. background-repeat: repeat-y; }
  6125. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6126. .x-nbr .x-window-header-default-left-mc {
  6127. padding: 1px 0px 1px 0px; }
  6128. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6129. .x-strict .x-ie7 .x-window-header-default-left-tl,
  6130. .x-strict .x-ie7 .x-window-header-default-left-bl {
  6131. position: relative;
  6132. right: 0; }
  6133. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6134. .x-window-header-default-collapsed-top {
  6135. padding: 4px 5px 4px 5px;
  6136. border-width: 1px;
  6137. border-style: solid;
  6138. background-color: #ced9e7; }
  6139. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6140. .x-nlg .x-window-header-default-collapsed-top-mc {
  6141. background-color: #ced9e7; }
  6142. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6143. .x-nbr .x-window-header-default-collapsed-top {
  6144. padding: 0 !important;
  6145. border-width: 0 !important;
  6146. -moz-border-radius: 0px;
  6147. -webkit-border-radius: 0px;
  6148. -o-border-radius: 0px;
  6149. -ms-border-radius: 0px;
  6150. -khtml-border-radius: 0px;
  6151. border-radius: 0px;
  6152. background-color: transparent;
  6153. background-position: 1000505px 1000505px; }
  6154. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6155. .x-nbr .x-window-header-default-collapsed-top-tl,
  6156. .x-nbr .x-window-header-default-collapsed-top-bl,
  6157. .x-nbr .x-window-header-default-collapsed-top-tr,
  6158. .x-nbr .x-window-header-default-collapsed-top-br,
  6159. .x-nbr .x-window-header-default-collapsed-top-tc,
  6160. .x-nbr .x-window-header-default-collapsed-top-bc,
  6161. .x-nbr .x-window-header-default-collapsed-top-ml,
  6162. .x-nbr .x-window-header-default-collapsed-top-mr {
  6163. zoom: 1;
  6164. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-corners.gif'); }
  6165. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6166. .x-nbr .x-window-header-default-collapsed-top-ml,
  6167. .x-nbr .x-window-header-default-collapsed-top-mr {
  6168. zoom: 1;
  6169. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-sides.gif');
  6170. background-position: 0 0;
  6171. background-repeat: repeat-y; }
  6172. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6173. .x-nbr .x-window-header-default-collapsed-top-mc {
  6174. padding: 0px 1px 0px 1px; }
  6175. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6176. .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
  6177. .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  6178. position: relative;
  6179. right: 0; }
  6180. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6181. .x-window-header-default-collapsed-right {
  6182. padding: 5px 4px 5px 4px;
  6183. border-width: 1px;
  6184. border-style: solid;
  6185. background-color: #ced9e7; }
  6186. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6187. .x-nlg .x-window-header-default-collapsed-right-mc {
  6188. background-color: #ced9e7; }
  6189. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6190. .x-nbr .x-window-header-default-collapsed-right {
  6191. padding: 0 !important;
  6192. border-width: 0 !important;
  6193. -moz-border-radius: 0px;
  6194. -webkit-border-radius: 0px;
  6195. -o-border-radius: 0px;
  6196. -ms-border-radius: 0px;
  6197. -khtml-border-radius: 0px;
  6198. border-radius: 0px;
  6199. background-color: transparent;
  6200. background-position: 1000505px 1000505px; }
  6201. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6202. .x-nbr .x-window-header-default-collapsed-right-tl,
  6203. .x-nbr .x-window-header-default-collapsed-right-bl,
  6204. .x-nbr .x-window-header-default-collapsed-right-tr,
  6205. .x-nbr .x-window-header-default-collapsed-right-br,
  6206. .x-nbr .x-window-header-default-collapsed-right-tc,
  6207. .x-nbr .x-window-header-default-collapsed-right-bc,
  6208. .x-nbr .x-window-header-default-collapsed-right-ml,
  6209. .x-nbr .x-window-header-default-collapsed-right-mr {
  6210. zoom: 1;
  6211. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-corners.gif'); }
  6212. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6213. .x-nbr .x-window-header-default-collapsed-right-ml,
  6214. .x-nbr .x-window-header-default-collapsed-right-mr {
  6215. zoom: 1;
  6216. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-sides.gif');
  6217. background-position: 0 0;
  6218. background-repeat: repeat-y; }
  6219. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6220. .x-nbr .x-window-header-default-collapsed-right-mc {
  6221. padding: 1px 0px 1px 0px; }
  6222. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6223. .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
  6224. .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  6225. position: relative;
  6226. right: 0; }
  6227. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6228. .x-window-header-default-collapsed-bottom {
  6229. padding: 4px 5px 4px 5px;
  6230. border-width: 1px;
  6231. border-style: solid;
  6232. background-color: #ced9e7; }
  6233. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6234. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  6235. background-color: #ced9e7; }
  6236. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6237. .x-nbr .x-window-header-default-collapsed-bottom {
  6238. padding: 0 !important;
  6239. border-width: 0 !important;
  6240. -moz-border-radius: 0px;
  6241. -webkit-border-radius: 0px;
  6242. -o-border-radius: 0px;
  6243. -ms-border-radius: 0px;
  6244. -khtml-border-radius: 0px;
  6245. border-radius: 0px;
  6246. background-color: transparent;
  6247. background-position: 1000505px 1000505px; }
  6248. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6249. .x-nbr .x-window-header-default-collapsed-bottom-tl,
  6250. .x-nbr .x-window-header-default-collapsed-bottom-bl,
  6251. .x-nbr .x-window-header-default-collapsed-bottom-tr,
  6252. .x-nbr .x-window-header-default-collapsed-bottom-br,
  6253. .x-nbr .x-window-header-default-collapsed-bottom-tc,
  6254. .x-nbr .x-window-header-default-collapsed-bottom-bc,
  6255. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6256. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6257. zoom: 1;
  6258. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-corners.gif'); }
  6259. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6260. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6261. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6262. zoom: 1;
  6263. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-sides.gif');
  6264. background-position: 0 0;
  6265. background-repeat: repeat-y; }
  6266. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6267. .x-nbr .x-window-header-default-collapsed-bottom-mc {
  6268. padding: 0px 1px 0px 1px; }
  6269. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6270. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
  6271. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  6272. position: relative;
  6273. right: 0; }
  6274. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6275. .x-window-header-default-collapsed-left {
  6276. padding: 5px 4px 5px 4px;
  6277. border-width: 1px;
  6278. border-style: solid;
  6279. background-color: #ced9e7; }
  6280. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6281. .x-nlg .x-window-header-default-collapsed-left-mc {
  6282. background-color: #ced9e7; }
  6283. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6284. .x-nbr .x-window-header-default-collapsed-left {
  6285. padding: 0 !important;
  6286. border-width: 0 !important;
  6287. -moz-border-radius: 0px;
  6288. -webkit-border-radius: 0px;
  6289. -o-border-radius: 0px;
  6290. -ms-border-radius: 0px;
  6291. -khtml-border-radius: 0px;
  6292. border-radius: 0px;
  6293. background-color: transparent;
  6294. background-position: 1000505px 1000505px; }
  6295. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6296. .x-nbr .x-window-header-default-collapsed-left-tl,
  6297. .x-nbr .x-window-header-default-collapsed-left-bl,
  6298. .x-nbr .x-window-header-default-collapsed-left-tr,
  6299. .x-nbr .x-window-header-default-collapsed-left-br,
  6300. .x-nbr .x-window-header-default-collapsed-left-tc,
  6301. .x-nbr .x-window-header-default-collapsed-left-bc,
  6302. .x-nbr .x-window-header-default-collapsed-left-ml,
  6303. .x-nbr .x-window-header-default-collapsed-left-mr {
  6304. zoom: 1;
  6305. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-corners.gif'); }
  6306. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6307. .x-nbr .x-window-header-default-collapsed-left-ml,
  6308. .x-nbr .x-window-header-default-collapsed-left-mr {
  6309. zoom: 1;
  6310. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-sides.gif');
  6311. background-position: 0 0;
  6312. background-repeat: repeat-y; }
  6313. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6314. .x-nbr .x-window-header-default-collapsed-left-mc {
  6315. padding: 1px 0px 1px 0px; }
  6316. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6317. .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
  6318. .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  6319. position: relative;
  6320. right: 0; }
  6321. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6322. .x-window-header-default-top {
  6323. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6324. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6325. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6326. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6327. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6328. .x-window-header-default-right {
  6329. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6330. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6331. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6332. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  6333. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6334. .x-window-header-default-bottom {
  6335. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6336. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6337. -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6338. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6339. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6340. .x-window-header-default-left {
  6341. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6342. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6343. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6344. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6345. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6346. .x-window-body-plain {
  6347. background: transparent; }
  6348. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6349. .x-message-box .x-window-body {
  6350. background-color: #ced9e7;
  6351. border: none; }
  6352. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6353. .x-message-box .x-progress-wrap {
  6354. margin-top: 4px; }
  6355. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6356. .x-message-box-icon {
  6357. width: 47px;
  6358. height: 32px; }
  6359. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6360. .x-message-box-info,
  6361. .x-message-box-warning,
  6362. .x-message-box-question,
  6363. .x-message-box-error {
  6364. background: transparent no-repeat top left; }
  6365. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6366. .x-message-box .x-msg-box-wait {
  6367. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  6368. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6369. .x-message-box-info {
  6370. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  6371. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6372. .x-message-box-warning {
  6373. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  6374. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6375. .x-message-box-question {
  6376. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  6377. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6378. .x-message-box-error {
  6379. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  6380. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6381. .x-tab-bar {
  6382. position: relative;
  6383. background-color: transparent;
  6384. background-image: none;
  6385. background-color: #cbdbef;
  6386. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  6387. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  6388. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  6389. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  6390. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  6391. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  6392. font-size: 11px; }
  6393. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6394. .x-nlg .x-tab-bar {
  6395. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  6396. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6397. .x-tab-bar-default-plain,
  6398. .x-nlg .x-tab-bar-default-plain {
  6399. background: transparent none; }
  6400. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6401. .x-tab-bar-body {
  6402. border-style: solid;
  6403. border-color: #99bce8;
  6404. position: relative;
  6405. z-index: 2;
  6406. zoom: 1; }
  6407. /* Top Tabs */
  6408. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6409. .x-tab-bar-top .x-tab-bar-body {
  6410. height: 20px;
  6411. border-width: 1px 1px 0;
  6412. padding: 1px 0 3px; }
  6413. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6414. .x-tab-bar-top .x-tab-bar-strip {
  6415. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6416. top: 22px;
  6417. border-width: 1px 1px 0;
  6418. height: 2px; }
  6419. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6420. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  6421. height: 25px; }
  6422. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6423. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  6424. height: 3px; }
  6425. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6426. .x-tab-bar-top .x-tab-bar-body-default-plain {
  6427. height: 20px;
  6428. border-width: 0;
  6429. padding: 0 0 2px; }
  6430. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6431. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6432. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6433. top: 20px;
  6434. border-width: 1px 1px 0 1px;
  6435. height: 2px; }
  6436. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6437. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  6438. height: 22px; }
  6439. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6440. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6441. height: 3px; }
  6442. /* Bottom Tabs */
  6443. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6444. .x-tab-bar-bottom .x-tab-bar-body {
  6445. height: 20px;
  6446. border-width: 0 1px 1px;
  6447. padding: 3px 0 1px; }
  6448. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6449. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  6450. position: relative;
  6451. top: -1px; }
  6452. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6453. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  6454. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  6455. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  6456. height: 22px; }
  6457. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6458. .x-tab-bar-bottom .x-tab-bar-strip {
  6459. top: 0;
  6460. border-width: 0 1px 1px 1px;
  6461. height: 2px; }
  6462. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6463. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  6464. height: 25px; }
  6465. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6466. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  6467. height: 3px; }
  6468. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6469. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6470. height: 20px;
  6471. border-width: 0;
  6472. padding: 3px 0 0; }
  6473. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6474. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  6475. position: relative;
  6476. top: -1px; }
  6477. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6478. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  6479. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  6480. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  6481. height: 21px; }
  6482. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6483. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6484. top: 0;
  6485. border-width: 0 1px 1px 1px;
  6486. height: 2px; }
  6487. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6488. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6489. height: 23px; }
  6490. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6491. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6492. height: 3px; }
  6493. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6494. .x-tab-bar-strip-default,
  6495. .x-tab-bar-strip-default-plain {
  6496. font-size: 0;
  6497. line-height: 0;
  6498. position: absolute;
  6499. z-index: 1;
  6500. border-style: solid;
  6501. overflow: hidden;
  6502. border-color: #99bce8;
  6503. background-color: #deecfd;
  6504. zoom: 1; }
  6505. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6506. .x-tab-default-top {
  6507. padding: 3px 3px 0 3px;
  6508. border-width: 1px 1px 0 1px;
  6509. border-style: solid;
  6510. background-color: #deecfd; }
  6511. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6512. .x-nlg .x-tab-default-top-mc {
  6513. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  6514. background-color: #deecfd; }
  6515. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6516. .x-nbr .x-tab-default-top {
  6517. padding: 0 !important;
  6518. border-width: 0 !important;
  6519. -moz-border-radius: 0px;
  6520. -webkit-border-radius: 0px;
  6521. -o-border-radius: 0px;
  6522. -ms-border-radius: 0px;
  6523. -khtml-border-radius: 0px;
  6524. border-radius: 0px;
  6525. background-color: transparent;
  6526. background-position: 1100404px 1000000px; }
  6527. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6528. .x-nbr .x-tab-default-top-tl,
  6529. .x-nbr .x-tab-default-top-bl,
  6530. .x-nbr .x-tab-default-top-tr,
  6531. .x-nbr .x-tab-default-top-br,
  6532. .x-nbr .x-tab-default-top-tc,
  6533. .x-nbr .x-tab-default-top-bc,
  6534. .x-nbr .x-tab-default-top-ml,
  6535. .x-nbr .x-tab-default-top-mr {
  6536. zoom: 1;
  6537. background-image: url('../../resources/themes/images/default/tab/tab-default-top-corners.gif'); }
  6538. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6539. .x-nbr .x-tab-default-top-ml,
  6540. .x-nbr .x-tab-default-top-mr {
  6541. zoom: 1;
  6542. background-image: url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
  6543. background-position: 0 0; }
  6544. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6545. .x-nbr .x-tab-default-top-mc {
  6546. padding: 0px 0px 0 0px; }
  6547. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6548. .x-strict .x-ie7 .x-tab-default-top-tl,
  6549. .x-strict .x-ie7 .x-tab-default-top-bl {
  6550. position: relative;
  6551. right: 0; }
  6552. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6553. .x-tab-default-bottom {
  6554. padding: 0 3px 3px 3px;
  6555. border-width: 0 1px 1px 1px;
  6556. border-style: solid;
  6557. background-color: #deecfd; }
  6558. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6559. .x-nlg .x-tab-default-bottom-mc {
  6560. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  6561. background-color: #deecfd; }
  6562. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6563. .x-nbr .x-tab-default-bottom {
  6564. padding: 0 !important;
  6565. border-width: 0 !important;
  6566. -moz-border-radius: 0px;
  6567. -webkit-border-radius: 0px;
  6568. -o-border-radius: 0px;
  6569. -ms-border-radius: 0px;
  6570. -khtml-border-radius: 0px;
  6571. border-radius: 0px;
  6572. background-color: transparent;
  6573. background-position: 1100000px 1000404px; }
  6574. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6575. .x-nbr .x-tab-default-bottom-tl,
  6576. .x-nbr .x-tab-default-bottom-bl,
  6577. .x-nbr .x-tab-default-bottom-tr,
  6578. .x-nbr .x-tab-default-bottom-br,
  6579. .x-nbr .x-tab-default-bottom-tc,
  6580. .x-nbr .x-tab-default-bottom-bc,
  6581. .x-nbr .x-tab-default-bottom-ml,
  6582. .x-nbr .x-tab-default-bottom-mr {
  6583. zoom: 1;
  6584. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif'); }
  6585. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6586. .x-nbr .x-tab-default-bottom-ml,
  6587. .x-nbr .x-tab-default-bottom-mr {
  6588. zoom: 1;
  6589. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
  6590. background-position: 0 0; }
  6591. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6592. .x-nbr .x-tab-default-bottom-mc {
  6593. padding: 0 0px 0px 0px; }
  6594. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6595. .x-strict .x-ie7 .x-tab-default-bottom-tl,
  6596. .x-strict .x-ie7 .x-tab-default-bottom-bl {
  6597. position: relative;
  6598. right: 0; }
  6599. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6600. .x-tab {
  6601. z-index: 1;
  6602. margin: 0 0 0 2px;
  6603. display: inline-block;
  6604. zoom: 1;
  6605. *display: inline;
  6606. white-space: nowrap;
  6607. height: 20px;
  6608. border-color: #8db3e3;
  6609. cursor: pointer;
  6610. cursor: hand; }
  6611. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6612. .x-tab button {
  6613. cursor: pointer;
  6614. cursor: hand; }
  6615. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6616. .x-tab em {
  6617. display: block;
  6618. padding: 0 6px;
  6619. line-height: 1px; }
  6620. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6621. .x-tab button {
  6622. background: none;
  6623. border: 0;
  6624. padding: 0;
  6625. margin: 0;
  6626. -webkit-appearance: none;
  6627. font-size: 11px;
  6628. font-weight: bold;
  6629. font-family: tahoma, arial, verdana, sans-serif;
  6630. color: #416da3;
  6631. outline: 0 none;
  6632. overflow-x: visible; }
  6633. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6634. .x-tab button::-moz-focus-inner {
  6635. border: 0;
  6636. padding: 0; }
  6637. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6638. .x-tab button .x-tab-inner {
  6639. background-color: transparent;
  6640. background-repeat: no-repeat;
  6641. background-position: 0 -2px;
  6642. display: block;
  6643. text-align: center;
  6644. white-space: nowrap;
  6645. text-overflow: ellipsis;
  6646. -o-text-overflow: ellipsis;
  6647. overflow: hidden; }
  6648. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6649. .x-tab img {
  6650. display: none; }
  6651. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6652. .x-border-box .x-tab-default-top {
  6653. height: 21px; }
  6654. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6655. .x-border-box .x-tab-default-bottom {
  6656. height: 21px; }
  6657. /* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6658. * html .x-ie .x-tab button {
  6659. width: 1px; }
  6660. /* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6661. .x-strict .x-ie6 .x-tab .x-frame-mc,
  6662. .x-strict .x-ie7 .x-tab .x-frame-mc {
  6663. height: 100%; }
  6664. /* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6665. .x-ie .x-tab-active button:active {
  6666. position: relative;
  6667. top: -1px;
  6668. left: -1px; }
  6669. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6670. .x-tab-default-top {
  6671. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6672. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6673. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6674. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6675. border-bottom: 1px solid #99bce8 !important; }
  6676. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6677. .x-tab-default-top em {
  6678. padding-bottom: 3px; }
  6679. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6680. .x-tab-default-top button,
  6681. .x-tab-default-top .x-tab-inner {
  6682. height: 13px;
  6683. line-height: 13px; }
  6684. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6685. .x-safari4 .x-tab-default-top .x-tab-inner,
  6686. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  6687. line-height: 11px; }
  6688. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6689. .x-nbr .x-tab-default-top {
  6690. border-bottom-width: 1px !important; }
  6691. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6692. .x-tab-default-top-active {
  6693. border-bottom-color: #deecfd !important; }
  6694. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6695. .x-tab-default-bottom {
  6696. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6697. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6698. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6699. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6700. border-top: 1px solid #99bce8 !important;
  6701. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6702. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6703. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6704. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  6705. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6706. .x-tab-default-bottom em {
  6707. padding-top: 3px; }
  6708. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6709. .x-tab-default-bottom button,
  6710. .x-tab-default-bottom .x-tab-inner {
  6711. height: 13px;
  6712. line-height: 13px; }
  6713. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6714. .x-nbr .x-tab-default-bottom {
  6715. border-top-width: 1px !important; }
  6716. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6717. .x-tab-default-bottom-active {
  6718. border-top-color: #deecfd !important; }
  6719. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6720. .x-tab-default-disabled {
  6721. cursor: default;
  6722. border-color: #bbd2ef;
  6723. background-image: none;
  6724. background-color: #e1ecfa;
  6725. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6726. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6727. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6728. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6729. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6730. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6731. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6732. .x-tab-default-disabled button {
  6733. color: #c3b3b3 !important; }
  6734. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6735. .x-tab-icon-text-left .x-tab-inner {
  6736. padding-left: 20px; }
  6737. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6738. .x-tab button {
  6739. position: relative; }
  6740. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6741. .x-tab-icon {
  6742. position: absolute;
  6743. background-repeat: no-repeat;
  6744. background-position: 0 -1px;
  6745. top: 0;
  6746. left: 0;
  6747. right: auto;
  6748. bottom: 0;
  6749. width: 18px;
  6750. height: 18px; }
  6751. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6752. .x-strict .x-ie8 .x-tab button,
  6753. .x-strict .x-ie9 .x-tab button {
  6754. overflow-y: visible; }
  6755. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6756. .x-tab-default-disabled .x-tab-icon {
  6757. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6758. opacity: 0.5; }
  6759. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  6760. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6761. .x-tab-noicon .x-tab-icon {
  6762. display: none; }
  6763. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6764. .x-tab-top-over {
  6765. background-image: none;
  6766. background-color: #e8f2ff;
  6767. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6768. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6769. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6770. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6771. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6772. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6773. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6774. .x-tab-bottom-over {
  6775. background-image: none;
  6776. background-color: #e8f2ff;
  6777. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6778. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6779. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6780. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6781. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6782. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6783. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6784. .x-tab-active {
  6785. z-index: 3; }
  6786. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6787. .x-tab-active button {
  6788. color: #15498b; }
  6789. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6790. .x-tab-top-active {
  6791. background-image: none;
  6792. background-color: #deecfd;
  6793. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6794. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6795. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6796. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6797. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6798. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6799. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6800. .x-tab-bottom-active {
  6801. background-image: none;
  6802. background-color: #deecfd;
  6803. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6804. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6805. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6806. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6807. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6808. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6809. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6810. .x-tab-disabled {
  6811. border-color: #bbd2ef; }
  6812. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6813. .x-tab-disabled button {
  6814. color: #c3b3b3; }
  6815. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6816. .x-tab-top-disabled {
  6817. background-image: none;
  6818. background: transparent;
  6819. background-image: none;
  6820. background-color: #e1ecfa;
  6821. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6822. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6823. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6824. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6825. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6826. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6827. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6828. .x-tab-bottom-disabled {
  6829. background-image: none;
  6830. background: transparent;
  6831. background-image: none;
  6832. background-color: #e1ecfa;
  6833. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6834. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6835. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6836. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6837. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6838. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  6839. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6840. .x-nlg .x-tab-top {
  6841. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  6842. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6843. .x-nlg .x-tab-bottom {
  6844. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  6845. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6846. .x-nlg .x-tab-top-over {
  6847. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6848. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6849. .x-nlg .x-tab-bottom-over {
  6850. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6851. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6852. .x-nlg .x-tab-top-active {
  6853. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6854. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6855. .x-nlg .x-tab-bottom-active {
  6856. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6857. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6858. .x-nlg .x-tab-top-disabled {
  6859. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  6860. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6861. .x-nlg .x-tab-bottom-disabled {
  6862. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  6863. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6864. .x-tab-closable em {
  6865. padding-right: 14px; }
  6866. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6867. .x-tab-close-btn {
  6868. position: absolute;
  6869. top: 2px;
  6870. right: 2px;
  6871. width: 11px;
  6872. height: 11px;
  6873. font-size: 0;
  6874. line-height: 0;
  6875. text-indent: -999px;
  6876. background: no-repeat;
  6877. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  6878. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  6879. opacity: 0.6; }
  6880. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6881. .x-nbr .x-tab-close-btn {
  6882. top: 0px;
  6883. right: 0px; }
  6884. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  6885. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6886. a.x-tab-close-btn:hover {
  6887. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  6888. opacity: 1; }
  6889. /* Include the element name to raise the specificity to equal the :hover */
  6890. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6891. .x-tab-default-disabled a.x-tab-close-btn {
  6892. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6893. opacity: 0.3; }
  6894. /* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6895. .x-nbr .x-tab-top-over .x-frame-tl,
  6896. .x-nbr .x-tab-top-over .x-frame-bl,
  6897. .x-nbr .x-tab-top-over .x-frame-tr,
  6898. .x-nbr .x-tab-top-over .x-frame-br,
  6899. .x-nbr .x-tab-top-over .x-frame-tc,
  6900. .x-nbr .x-tab-top-over .x-frame-bc {
  6901. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif'); }
  6902. /* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6903. .x-nbr .x-tab-top-over .x-frame-ml,
  6904. .x-nbr .x-tab-top-over .x-frame-mr {
  6905. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif'); }
  6906. /* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6907. .x-nbr .x-tab-top-over .x-frame-mc {
  6908. background-color: #e8f2ff;
  6909. background-repeat: repeat-x;
  6910. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6911. /* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6912. .x-nbr .x-tab-bottom-over .x-frame-tl,
  6913. .x-nbr .x-tab-bottom-over .x-frame-bl,
  6914. .x-nbr .x-tab-bottom-over .x-frame-tr,
  6915. .x-nbr .x-tab-bottom-over .x-frame-br,
  6916. .x-nbr .x-tab-bottom-over .x-frame-tc,
  6917. .x-nbr .x-tab-bottom-over .x-frame-bc {
  6918. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif'); }
  6919. /* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6920. .x-nbr .x-tab-bottom-over .x-frame-ml,
  6921. .x-nbr .x-tab-bottom-over .x-frame-mr {
  6922. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif'); }
  6923. /* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6924. .x-nbr .x-tab-bottom-over .x-frame-mc {
  6925. background-color: #e8f2ff;
  6926. background-repeat: repeat-x;
  6927. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6928. /* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6929. .x-nbr .x-tab-top-active .x-frame-tl,
  6930. .x-nbr .x-tab-top-active .x-frame-bl,
  6931. .x-nbr .x-tab-top-active .x-frame-tr,
  6932. .x-nbr .x-tab-top-active .x-frame-br,
  6933. .x-nbr .x-tab-top-active .x-frame-tc,
  6934. .x-nbr .x-tab-top-active .x-frame-bc {
  6935. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif'); }
  6936. /* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6937. .x-nbr .x-tab-top-active .x-frame-ml,
  6938. .x-nbr .x-tab-top-active .x-frame-mr {
  6939. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif'); }
  6940. /* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6941. .x-nbr .x-tab-top-active .x-frame-mc {
  6942. background-color: #deecfd;
  6943. background-repeat: repeat-x;
  6944. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6945. /* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6946. .x-nbr .x-tab-bottom-active .x-frame-tl,
  6947. .x-nbr .x-tab-bottom-active .x-frame-bl,
  6948. .x-nbr .x-tab-bottom-active .x-frame-tr,
  6949. .x-nbr .x-tab-bottom-active .x-frame-br,
  6950. .x-nbr .x-tab-bottom-active .x-frame-tc,
  6951. .x-nbr .x-tab-bottom-active .x-frame-bc {
  6952. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif'); }
  6953. /* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6954. .x-nbr .x-tab-bottom-active .x-frame-ml,
  6955. .x-nbr .x-tab-bottom-active .x-frame-mr {
  6956. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif'); }
  6957. /* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6958. .x-nbr .x-tab-bottom-active .x-frame-mc {
  6959. background-color: #deecfd;
  6960. background-repeat: repeat-x;
  6961. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6962. /* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6963. .x-nbr .x-tab-top-disabled .x-frame-tl,
  6964. .x-nbr .x-tab-top-disabled .x-frame-bl,
  6965. .x-nbr .x-tab-top-disabled .x-frame-tr,
  6966. .x-nbr .x-tab-top-disabled .x-frame-br,
  6967. .x-nbr .x-tab-top-disabled .x-frame-tc,
  6968. .x-nbr .x-tab-top-disabled .x-frame-bc {
  6969. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif'); }
  6970. /* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6971. .x-nbr .x-tab-top-disabled .x-frame-ml,
  6972. .x-nbr .x-tab-top-disabled .x-frame-mr {
  6973. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif'); }
  6974. /* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6975. .x-nbr .x-tab-top-disabled .x-frame-mc {
  6976. background-repeat: repeat-x;
  6977. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif'); }
  6978. /* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6979. .x-nbr .x-tab-bottom-disabled .x-frame-tl,
  6980. .x-nbr .x-tab-bottom-disabled .x-frame-bl,
  6981. .x-nbr .x-tab-bottom-disabled .x-frame-tr,
  6982. .x-nbr .x-tab-bottom-disabled .x-frame-br,
  6983. .x-nbr .x-tab-bottom-disabled .x-frame-tc,
  6984. .x-nbr .x-tab-bottom-disabled .x-frame-bc {
  6985. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif'); }
  6986. /* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6987. .x-nbr .x-tab-bottom-disabled .x-frame-ml,
  6988. .x-nbr .x-tab-bottom-disabled .x-frame-mr {
  6989. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif'); }
  6990. /* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6991. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  6992. background-repeat: repeat-x;
  6993. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif'); }
  6994. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6995. .x-autowidth-table table.x-grid-table {
  6996. table-layout: auto;
  6997. width: auto!important; }
  6998. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6999. .x-tree-no-lines .x-tree-elbow {
  7000. background-color: transparent; }
  7001. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7002. .x-tree-no-lines .x-tree-elbow-end {
  7003. background-color: transparent; }
  7004. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7005. .x-tree-no-lines .x-tree-elbow-line {
  7006. background-color: transparent; }
  7007. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7008. .x-tree-arrows .x-tree-elbow-plus {
  7009. background: transparent no-repeat 0 0; }
  7010. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7011. .x-tree-arrows .x-tree-elbow-end-plus {
  7012. background: transparent no-repeat 0 0; }
  7013. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7014. .x-tree-arrows .x-tree-elbow-end-minus {
  7015. background: transparent no-repeat -16px 0; }
  7016. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7017. .x-tree-arrows .x-tree-elbow-minus {
  7018. background: transparent no-repeat -16px 0; }
  7019. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7020. .x-tree-arrows .x-tree-elbow {
  7021. background-color: transparent !important; }
  7022. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7023. .x-tree-arrows .x-tree-elbow-end {
  7024. background-color: transparent !important; }
  7025. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7026. .x-tree-arrows .x-tree-elbow-line {
  7027. background-color: transparent !important; }
  7028. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7029. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  7030. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  7031. background-position: -32px 0; }
  7032. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7033. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  7034. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  7035. background-position: -48px 0; }
  7036. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7037. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7038. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7039. background-position: -16px 0; }
  7040. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7041. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  7042. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  7043. background-position: -48px 0; }
  7044. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7045. .x-tree-elbow-plus,
  7046. .x-tree-elbow-minus,
  7047. .x-tree-elbow-end-plus,
  7048. .x-tree-elbow-end-minus {
  7049. cursor: pointer; }
  7050. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7051. .x-tree-lines .x-tree-elbow {
  7052. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  7053. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7054. .x-tree-lines .x-tree-elbow-end {
  7055. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  7056. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7057. .x-tree-lines .x-tree-elbow-plus {
  7058. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  7059. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7060. .x-tree-lines .x-tree-elbow-end-plus {
  7061. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  7062. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7063. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  7064. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  7065. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7066. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7067. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  7068. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7069. .x-tree-lines .x-tree-elbow-line {
  7070. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  7071. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7072. .x-tree-no-lines .x-tree-elbow-plus,
  7073. .x-tree-no-lines .x-tree-elbow-end-plus {
  7074. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  7075. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7076. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7077. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7078. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  7079. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7080. .x-tree-arrows .x-tree-elbow-plus,
  7081. .x-tree-arrows .x-tree-elbow-minus,
  7082. .x-tree-arrows .x-tree-elbow-end-plus,
  7083. .x-tree-arrows .x-tree-elbow-end-minus {
  7084. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  7085. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7086. .x-tree-icon {
  7087. margin: 2px 3px 0 0; }
  7088. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7089. .x-grid-with-row-lines .x-tree-icon {
  7090. margin-top: 1px; }
  7091. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7092. .x-tree-elbow,
  7093. .x-tree-elbow-end,
  7094. .x-tree-elbow-plus,
  7095. .x-tree-elbow-end-plus,
  7096. .x-tree-elbow-empty,
  7097. .x-tree-elbow-line {
  7098. height: 20px;
  7099. width: 16px; }
  7100. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7101. .x-grid-with-row-lines .x-tree-elbow,
  7102. .x-grid-with-row-lines .x-tree-elbow-end,
  7103. .x-grid-with-row-lines .x-tree-elbow-plus,
  7104. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  7105. .x-grid-with-row-lines .x-tree-elbow-empty,
  7106. .x-grid-with-row-lines .x-tree-elbow-line {
  7107. height: 19px;
  7108. background-position: 0 -1px; }
  7109. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7110. .x-tree-icon-leaf {
  7111. width: 16px;
  7112. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  7113. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7114. .x-tree-icon-parent {
  7115. width: 16px;
  7116. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  7117. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7118. .x-grid-tree-node-expanded .x-tree-icon-parent {
  7119. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  7120. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7121. .x-grid-rowbody {
  7122. padding: 0; }
  7123. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7124. .x-grid-cell-treecolumn .x-grid-cell-inner {
  7125. padding: 0;
  7126. line-height: 19px; }
  7127. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7128. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  7129. line-height: 17px; }
  7130. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7131. .x-tree-panel .x-grid-cell-inner {
  7132. cursor: pointer; }
  7133. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7134. .x-tree-panel .x-grid-cell-inner img {
  7135. display: inline-block;
  7136. vertical-align: top; }
  7137. /* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7138. .x-ie .x-tree-panel .x-tree-elbow,
  7139. .x-ie .x-tree-panel .x-tree-elbow-end,
  7140. .x-ie .x-tree-panel .x-tree-elbow-plus,
  7141. .x-ie .x-tree-panel .x-tree-elbow-end-plus,
  7142. .x-ie .x-tree-panel .x-tree-elbow-empty,
  7143. .x-ie .x-tree-panel .x-tree-elbow-line {
  7144. vertical-align: -6px; }
  7145. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7146. .x-grid-editor-on-text-node .x-form-text {
  7147. padding-left: 1px;
  7148. padding-right: 1px; }
  7149. /* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7150. .x-ie .x-grid-editor-on-text-node .x-form-text {
  7151. padding-left: 2px;
  7152. padding-right: 2px; }
  7153. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7154. .x-tree-checkbox {
  7155. margin: 4px 3px 0 0;
  7156. display: inline-block;
  7157. vertical-align: top;
  7158. width: 13px;
  7159. height: 13px;
  7160. background: no-repeat;
  7161. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  7162. overflow: hidden;
  7163. padding: 0;
  7164. border: 0; }
  7165. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7166. .x-tree-checkbox::-moz-focus-inner {
  7167. padding: 0;
  7168. border: 0; }
  7169. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7170. .x-grid-with-row-lines .x-tree-checkbox {
  7171. margin-top: 3px; }
  7172. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7173. .x-tree-checkbox-checked {
  7174. background-position: 0 -13px; }
  7175. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7176. .x-tree-drop-ok-append .x-dd-drop-icon {
  7177. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  7178. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7179. .x-tree-drop-ok-above .x-dd-drop-icon {
  7180. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  7181. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7182. .x-tree-drop-ok-below .x-dd-drop-icon {
  7183. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  7184. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7185. .x-tree-drop-ok-between .x-dd-drop-icon {
  7186. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  7187. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7188. .x-grid-tree-loading .x-tree-icon {
  7189. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  7190. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7191. .x-tree-ddindicator {
  7192. height: 1px;
  7193. border-width: 1px 0px 0px;
  7194. border-style: dotted;
  7195. border-color: green; }
  7196. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7197. .x-grid-tree-loading span {
  7198. font-style: italic;
  7199. color: #444444; }
  7200. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7201. .x-tree-animator-wrap {
  7202. overflow: hidden; }
  7203. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7204. .x-surface {
  7205. display: -moz-inline-box;
  7206. -moz-box-orient: vertical;
  7207. display: inline-block;
  7208. vertical-align: middle;
  7209. *vertical-align: auto;
  7210. overflow: hidden; }
  7211. /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  7212. .x-surface {
  7213. *display: inline; }
  7214. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7215. .rvml {
  7216. behavior: url(#default#VML); }
  7217. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7218. .x-surface tspan {
  7219. user-select: none;
  7220. -o-user-select: none;
  7221. -ms-user-select: none;
  7222. -moz-user-select: -moz-none;
  7223. -webkit-user-select: none;
  7224. cursor: default; }
  7225. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7226. .x-vml-sprite {
  7227. position: absolute;
  7228. left: 0;
  7229. top: 0;
  7230. width: 1px;
  7231. height: 1px; }
  7232. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7233. .x-vml-group {
  7234. position: absolute;
  7235. left: 0;
  7236. top: 0;
  7237. width: 1000px;
  7238. height: 1000px; }
  7239. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7240. .x-vml-measure-span {
  7241. position: absolute;
  7242. left: -9999em;
  7243. top: -9999em;
  7244. padding: 0;
  7245. margin: 0;
  7246. display: inline; }
  7247. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7248. .x-vml-base {
  7249. position: relative;
  7250. top: 0;
  7251. left: 0;
  7252. overflow: hidden;
  7253. display: inline-block; }
  7254. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7255. .x-vml-base {
  7256. position: relative;
  7257. top: 0;
  7258. left: 0;
  7259. overflow: hidden;
  7260. display: inline-block; }
  7261. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7262. svg, vml {
  7263. overflow: hidden; }
  7264. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  7265. .x-viewport, .x-viewport body {
  7266. margin: 0;
  7267. padding: 0;
  7268. border: 0 none;
  7269. overflow: hidden;
  7270. height: 100%;
  7271. position: static; }
  7272. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7273. .x-dd-drag-proxy {
  7274. z-index: 1000000!important; }
  7275. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7276. .x-dd-drag-repair .x-dd-drag-ghost {
  7277. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7278. opacity: 0.6; }
  7279. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7280. .x-dd-drag-repair .x-dd-drop-icon {
  7281. display: none; }
  7282. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7283. .x-dd-drag-ghost {
  7284. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  7285. opacity: 0.85;
  7286. padding: 5px;
  7287. padding-left: 20px;
  7288. white-space: nowrap;
  7289. color: #000;
  7290. font: normal 11px tahoma, arial, verdana, sans-serif;
  7291. border: 1px solid;
  7292. border-color: #ddd #bbb #bbb #ddd;
  7293. background-color: #fff; }
  7294. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7295. .x-dd-drop-icon {
  7296. position: absolute;
  7297. top: 3px;
  7298. left: 3px;
  7299. display: block;
  7300. width: 16px;
  7301. height: 16px;
  7302. background-color: transparent;
  7303. background-position: center;
  7304. background-repeat: no-repeat;
  7305. z-index: 1; }
  7306. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7307. .x-view-selector {
  7308. position: absolute;
  7309. left: 0;
  7310. top: 0;
  7311. width: 0;
  7312. background-color: #c3daf9;
  7313. border: 1px dotted #3399bb;
  7314. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7315. opacity: 0.5;
  7316. zoom: 1; }
  7317. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7318. .x-dd-drop-nodrop .x-dd-drop-icon {
  7319. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  7320. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7321. .x-dd-drop-ok .x-dd-drop-icon {
  7322. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  7323. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7324. .x-dd-drop-ok-add .x-dd-drop-icon {
  7325. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  7326. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7327. .x-resizable-handle {
  7328. position: absolute;
  7329. z-index: 100;
  7330. font-size: 1px;
  7331. line-height: 6px;
  7332. overflow: hidden;
  7333. zoom: 1;
  7334. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7335. opacity: 0;
  7336. background-color: #fff; }
  7337. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7338. .x-collapsed .x-resizable-handle {
  7339. display: none; }
  7340. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7341. .x-resizable-handle-east {
  7342. width: 6px;
  7343. height: 100%;
  7344. right: 0;
  7345. top: 0; }
  7346. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7347. .x-resizable-over .x-resizable-handle-east {
  7348. cursor: e-resize; }
  7349. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7350. .x-resizable-handle-south {
  7351. width: 100%;
  7352. height: 6px;
  7353. left: 0;
  7354. bottom: 0; }
  7355. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7356. .x-resizable-over .x-resizable-handle-south {
  7357. cursor: s-resize; }
  7358. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7359. .x-resizable-handle-west {
  7360. width: 6px;
  7361. height: 100%;
  7362. left: 0;
  7363. top: 0; }
  7364. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7365. .x-resizable-over .x-resizable-handle-west {
  7366. cursor: w-resize; }
  7367. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7368. .x-resizable-handle-north {
  7369. width: 100%;
  7370. height: 6px;
  7371. left: 0;
  7372. top: 0; }
  7373. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7374. .x-resizable-over .x-resizable-handle-north {
  7375. cursor: n-resize; }
  7376. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7377. .x-resizable-handle-southeast {
  7378. width: 6px;
  7379. height: 6px;
  7380. right: 0;
  7381. bottom: 0;
  7382. z-index: 101; }
  7383. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7384. .x-resizable-over .x-resizable-handle-southeast {
  7385. cursor: se-resize; }
  7386. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7387. .x-resizable-handle-northwest {
  7388. width: 6px;
  7389. height: 6px;
  7390. left: 0;
  7391. top: 0;
  7392. z-index: 101; }
  7393. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7394. .x-resizable-over .x-resizable-handle-northwest {
  7395. cursor: nw-resize; }
  7396. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7397. .x-resizable-handle-northeast {
  7398. width: 6px;
  7399. height: 6px;
  7400. right: 0;
  7401. top: 0;
  7402. z-index: 101; }
  7403. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7404. .x-resizable-over .x-resizable-handle-northeast {
  7405. cursor: ne-resize; }
  7406. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7407. .x-resizable-handle-southwest {
  7408. width: 6px;
  7409. height: 6px;
  7410. left: 0;
  7411. bottom: 0;
  7412. z-index: 101; }
  7413. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7414. .x-resizable-over .x-resizable-handle-southwest {
  7415. cursor: sw-resize; }
  7416. /*IE rounding error*/
  7417. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7418. .x-ie .x-resizable-handle-east {
  7419. margin-right: -1px;
  7420. /*IE rounding error*/ }
  7421. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7422. .x-ie .x-resizable-handle-south {
  7423. margin-bottom: -1px; }
  7424. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7425. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  7426. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7427. opacity: 1; }
  7428. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7429. .x-window .x-window-handle {
  7430. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7431. opacity: 0; }
  7432. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7433. .x-window-collapsed .x-window-handle {
  7434. display: none; }
  7435. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7436. .x-resizable-proxy {
  7437. border: 1px dashed #3b5a82;
  7438. position: absolute;
  7439. left: 0;
  7440. top: 0;
  7441. overflow: hidden;
  7442. z-index: 50000; }
  7443. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7444. .x-resizable-overlay {
  7445. position: absolute;
  7446. left: 0;
  7447. top: 0;
  7448. width: 100%;
  7449. height: 100%;
  7450. display: none;
  7451. z-index: 200000;
  7452. background-color: #fff;
  7453. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7454. opacity: 0; }
  7455. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7456. .x-resizable-over .x-resizable-handle-east,
  7457. .x-resizable-over .x-resizable-handle-west,
  7458. .x-resizable-pinned .x-resizable-handle-east,
  7459. .x-resizable-pinned .x-resizable-handle-west {
  7460. background-position: left;
  7461. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  7462. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7463. .x-resizable-over .x-resizable-handle-south,
  7464. .x-resizable-over .x-resizable-handle-north,
  7465. .x-resizable-pinned .x-resizable-handle-south,
  7466. .x-resizable-pinned .x-resizable-handle-north {
  7467. background-position: top;
  7468. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  7469. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7470. .x-resizable-over .x-resizable-handle-southeast,
  7471. .x-resizable-pinned .x-resizable-handle-southeast {
  7472. background-position: top left;
  7473. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  7474. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7475. .x-resizable-over .x-resizable-handle-northwest,
  7476. .x-resizable-pinned .x-resizable-handle-northwest {
  7477. background-position: bottom right;
  7478. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  7479. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7480. .x-resizable-over .x-resizable-handle-northeast,
  7481. .x-resizable-pinned .x-resizable-handle-northeast {
  7482. background-position: bottom left;
  7483. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  7484. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7485. .x-resizable-over .x-resizable-handle-southwest,
  7486. .x-resizable-pinned .x-resizable-handle-southwest {
  7487. background-position: top right;
  7488. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  7489. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7490. .x-splitter .x-collapse-el {
  7491. position: absolute;
  7492. cursor: pointer;
  7493. background-color: transparent;
  7494. background-repeat: no-repeat !important; }
  7495. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7496. .x-layout-split-left,
  7497. .x-layout-split-right {
  7498. top: 50%;
  7499. margin-top: -17px;
  7500. width: 5px;
  7501. height: 35px; }
  7502. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7503. .x-layout-split-top,
  7504. .x-layout-split-bottom {
  7505. left: 50%;
  7506. width: 35px;
  7507. height: 5px;
  7508. margin-left: -17px; }
  7509. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7510. .x-layout-split-left {
  7511. background: no-repeat top right;
  7512. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7513. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7514. .x-layout-split-right {
  7515. background: no-repeat top left;
  7516. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7517. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7518. .x-layout-split-top {
  7519. background: no-repeat top left;
  7520. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7521. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7522. .x-layout-split-bottom {
  7523. background: no-repeat top left;
  7524. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7525. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7526. .x-splitter-collapsed .x-layout-split-left {
  7527. background: no-repeat top left;
  7528. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7529. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7530. .x-splitter-collapsed .x-layout-split-right {
  7531. background: no-repeat top right;
  7532. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7533. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7534. .x-splitter-collapsed .x-layout-split-top {
  7535. background: no-repeat top left;
  7536. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7537. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7538. .x-splitter-collapsed .x-layout-split-bottom {
  7539. background: no-repeat top left;
  7540. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7541. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7542. .x-splitter-horizontal {
  7543. cursor: e-resize;
  7544. cursor: row-resize;
  7545. font-size: 1px; }
  7546. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7547. .x-splitter-vertical {
  7548. cursor: e-resize;
  7549. cursor: col-resize;
  7550. font-size: 1px; }
  7551. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7552. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  7553. cursor: default; }
  7554. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7555. .x-splitter-active {
  7556. z-index: 4;
  7557. font-size: 1px;
  7558. background-color: #b4b4b4;
  7559. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7560. opacity: 0.8; }
  7561. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7562. .x-splitter-active .x-collapse-el {
  7563. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  7564. opacity: 0.3; }
  7565. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7566. .x-proxy-el {
  7567. position: absolute;
  7568. background: #b4b4b4;
  7569. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7570. opacity: 0.8; }
  7571. /*
  7572. * Dock Layouts
  7573. * @todo move this somewhere else?
  7574. */
  7575. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7576. .x-docked {
  7577. position: absolute !important;
  7578. z-index: 1; }
  7579. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7580. .x-docked-top {
  7581. border-bottom-width: 0 !important; }
  7582. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7583. .x-docked-bottom {
  7584. border-top-width: 0 !important; }
  7585. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7586. .x-docked-left {
  7587. border-right-width: 0 !important; }
  7588. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7589. .x-docked-right {
  7590. border-left-width: 0 !important; }
  7591. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7592. .x-docked-noborder-top {
  7593. border-top-width: 0 !important; }
  7594. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7595. .x-docked-noborder-right {
  7596. border-right-width: 0 !important; }
  7597. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7598. .x-docked-noborder-bottom {
  7599. border-bottom-width: 0 !important; }
  7600. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7601. .x-docked-noborder-left {
  7602. border-left-width: 0 !important; }
  7603. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7604. .x-box-inner {
  7605. overflow: hidden;
  7606. zoom: 1;
  7607. position: relative;
  7608. left: 0;
  7609. top: 0; }
  7610. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7611. .x-box-item {
  7612. position: absolute !important;
  7613. left: 0;
  7614. top: 0; }
  7615. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7616. .x-rtl .x-box-item {
  7617. right: 0;
  7618. left: auto; }
  7619. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7620. .x-box-layout-ct,
  7621. .x-border-layout-ct {
  7622. overflow: hidden;
  7623. zoom: 1; }
  7624. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7625. .x-border-layout-ct {
  7626. background-color: #dfe8f6;
  7627. position: relative; }
  7628. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7629. .x-overflow-hidden {
  7630. overflow: hidden !important; }
  7631. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7632. .x-inline-children > * {
  7633. display: inline-block !important; }
  7634. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7635. .x-abs-layout-ct {
  7636. position: relative; }
  7637. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7638. .x-abs-layout-item {
  7639. position: absolute !important; }
  7640. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7641. .x-fit-item {
  7642. position: relative; }
  7643. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7644. .x-border-region-slide-in {
  7645. z-index: 5; }
  7646. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7647. .x-region-collapsed-placeholder {
  7648. z-index: 4; }
  7649. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7650. .x-accordion-hd .x-panel-header-text {
  7651. color: black;
  7652. font-weight: normal; }
  7653. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7654. .x-accordion-hd {
  7655. background: #d9e7f8 !important;
  7656. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  7657. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  7658. -o-box-shadow: inset 0 0 0 0 #d9e7f8;
  7659. box-shadow: inset 0 0 0 0 #d9e7f8; }
  7660. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7661. .x-accordion-hd .x-tool-collapse-top,
  7662. .x-accordion-hd .x-tool-collapse-right,
  7663. .x-accordion-hd .x-tool-collapse-bottom,
  7664. .x-accordion-hd .x-tool-collapse-left {
  7665. background-position: 0 -255px; }
  7666. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7667. .x-accordion-hd .x-tool-expand-top,
  7668. .x-accordion-hd .x-tool-expand-right,
  7669. .x-accordion-hd .x-tool-expand-bottom,
  7670. .x-accordion-hd .x-tool-expand-left {
  7671. background-position: 0 -240px; }
  7672. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7673. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  7674. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  7675. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  7676. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  7677. background-position: -15px -255px; }
  7678. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7679. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  7680. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  7681. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  7682. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  7683. background-position: -15px -240px; }
  7684. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7685. .x-accordion-hd {
  7686. border-width: 1px 0 1px 0 !important;
  7687. padding: 4px 5px 5px 5px;
  7688. border-top-color: #f3f7fb !important; }
  7689. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7690. .x-accordion-body {
  7691. border-width: 0 !important; }
  7692. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7693. .x-accordion-hd-sibling-expanded {
  7694. border-top-color: #99bce8 !important;
  7695. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7696. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7697. -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7698. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  7699. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7700. .x-accordion-hd-last-collapsed {
  7701. border-bottom-color: #d9e7f8 !important; }
  7702. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7703. .x-frame-tl,
  7704. .x-frame-tr,
  7705. .x-frame-tc,
  7706. .x-frame-bl,
  7707. .x-frame-br,
  7708. .x-frame-bc {
  7709. overflow: hidden;
  7710. background-repeat: no-repeat; }
  7711. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7712. .x-frame-tc,
  7713. .x-frame-bc {
  7714. background-repeat: repeat-x; }
  7715. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7716. .x-frame-mc {
  7717. position: relative;
  7718. background-repeat: repeat-x;
  7719. overflow: hidden; }
  7720. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7721. .x-box-scroller-left {
  7722. float: left;
  7723. height: 100%;
  7724. z-index: 5; }
  7725. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7726. .x-box-scroller-left .x-toolbar-scroll-left,
  7727. .x-box-scroller-left .x-tabbar-scroll-left {
  7728. width: 18px;
  7729. position: relative;
  7730. cursor: pointer;
  7731. height: 20px;
  7732. background: transparent no-repeat -18px 0;
  7733. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  7734. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7735. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7736. background-position: 0 0; }
  7737. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7738. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  7739. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  7740. background-position: -18px 0;
  7741. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7742. opacity: 0.5;
  7743. cursor: default; }
  7744. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7745. .x-box-scroller-left .x-toolbar-scroll-left {
  7746. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  7747. background-position: -14px 0; }
  7748. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7749. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7750. background-position: 0 0; }
  7751. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7752. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  7753. background-position: -14px 0; }
  7754. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7755. .x-box-scroller-left .x-toolbar-scroll-left {
  7756. width: 14px;
  7757. height: 22px;
  7758. border-bottom: 1px solid #8db2e3; }
  7759. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7760. .x-horizontal-box-overflow-body {
  7761. float: left; }
  7762. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7763. .x-box-scroller-right {
  7764. float: right;
  7765. height: 100%;
  7766. z-index: 5; }
  7767. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7768. .x-box-scroller-right .x-toolbar-scroll-right,
  7769. .x-box-scroller-right .x-tabbar-scroll-right {
  7770. width: 18px;
  7771. position: relative;
  7772. cursor: pointer;
  7773. height: 20px;
  7774. background: transparent no-repeat 0 0;
  7775. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  7776. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7777. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7778. background-position: -18px 0; }
  7779. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7780. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  7781. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  7782. background-position: 0 0;
  7783. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7784. opacity: 0.5;
  7785. cursor: default; }
  7786. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7787. .x-box-scroller-right .x-toolbar-scroll-right {
  7788. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  7789. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7790. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7791. background-position: -14px 0; }
  7792. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7793. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  7794. background-position: 0 0; }
  7795. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7796. .x-box-scroller-right .x-toolbar-scroll-right {
  7797. width: 14px;
  7798. height: 22px;
  7799. border-bottom: 1px solid #8db2e3; }
  7800. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7801. .x-box-scroller-top .x-box-scroller {
  7802. line-height: 0;
  7803. font-size: 0; }
  7804. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7805. .x-box-scroller-top .x-menu-scroll-top {
  7806. background: transparent no-repeat center center;
  7807. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  7808. height: 8px;
  7809. cursor: pointer; }
  7810. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7811. .x-box-scroller-bottom .x-box-scroller {
  7812. line-height: 0;
  7813. font-size: 0; }
  7814. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7815. .x-box-scroller-bottom .x-menu-scroll-bottom {
  7816. background: transparent no-repeat center center;
  7817. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  7818. height: 8px;
  7819. cursor: pointer; }
  7820. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7821. .x-box-menu-right {
  7822. float: right;
  7823. padding-right: 2px; }
  7824. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7825. .x-column {
  7826. float: left; }
  7827. /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7828. .x-ie6 .x-column {
  7829. display: inline;
  7830. /*prevent IE6 double-margin bug*/ }
  7831. /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7832. .x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  7833. position: relative; }
  7834. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7835. .x-tool {
  7836. height: 15px; }
  7837. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7838. .x-tool img {
  7839. overflow: hidden;
  7840. width: 15px;
  7841. height: 15px;
  7842. cursor: pointer;
  7843. background-color: transparent;
  7844. background-repeat: no-repeat;
  7845. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  7846. margin: 0; }
  7847. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7848. .x-panel-header-horizontal .x-tool,
  7849. .x-window-header-horizontal .x-tool {
  7850. margin-left: 2px; }
  7851. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7852. .x-panel-header-vertical .x-tool,
  7853. .x-window-header-vertical .x-tool {
  7854. margin-top: 2px; }
  7855. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7856. .x-panel-header-vertical .x-tool-top,
  7857. .x-window-header-vertical .x-tool-top {
  7858. margin: 0 0 4px; }
  7859. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7860. .x-tool-placeholder {
  7861. visibility: hidden; }
  7862. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7863. .x-tool-toggle {
  7864. background-position: 0 -60px; }
  7865. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7866. .x-tool-over .x-tool-toggle {
  7867. background-position: -15px -60px; }
  7868. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7869. .x-panel-collapsed .x-tool-toggle,
  7870. .x-fieldset-collapsed .x-tool-toggle {
  7871. background-position: 0 -75px; }
  7872. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7873. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  7874. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  7875. background-position: -15px -75px; }
  7876. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7877. .x-tool-close {
  7878. background-position: 0 0; }
  7879. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7880. .x-tool-minimize {
  7881. background-position: 0 -15px; }
  7882. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7883. .x-tool-maximize {
  7884. background-position: 0 -30px; }
  7885. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7886. .x-tool-restore {
  7887. background-position: 0 -45px; }
  7888. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7889. .x-tool-gear {
  7890. background-position: 0 -90px; }
  7891. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7892. .x-tool-prev {
  7893. background-position: 0 -105px; }
  7894. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7895. .x-tool-next {
  7896. background-position: 0 -120px; }
  7897. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7898. .x-tool-pin {
  7899. background-position: 0 -135px; }
  7900. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7901. .x-tool-unpin {
  7902. background-position: 0 -150px; }
  7903. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7904. .x-tool-right {
  7905. background-position: 0 -165px; }
  7906. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7907. .x-tool-left {
  7908. background-position: 0 -180px; }
  7909. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7910. .x-tool-help {
  7911. background-position: 0 -300px; }
  7912. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7913. .x-tool-save {
  7914. background-position: 0 -285px; }
  7915. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7916. .x-tool-search {
  7917. background-position: 0 -270px; }
  7918. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7919. .x-tool-minus {
  7920. background-position: 0 -255px; }
  7921. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7922. .x-tool-plus {
  7923. background-position: 0 -240px; }
  7924. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7925. .x-tool-refresh {
  7926. background-position: 0 -225px; }
  7927. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7928. .x-tool-up {
  7929. background-position: 0 -210px; }
  7930. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7931. .x-tool-down {
  7932. background-position: 0 -195px; }
  7933. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7934. .x-tool-collapse {
  7935. background-position: 0 -345px; }
  7936. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7937. .x-tool-expand {
  7938. background-position: 0 -330px; }
  7939. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7940. .x-tool-print {
  7941. background-position: 0 -315px; }
  7942. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7943. .x-tool-expand-bottom,
  7944. .x-tool-collapse-bottom {
  7945. background-position: 0 -195px; }
  7946. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7947. .x-tool-expand-top,
  7948. .x-tool-collapse-top {
  7949. background-position: 0 -210px; }
  7950. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7951. .x-tool-expand-left,
  7952. .x-tool-collapse-left {
  7953. background-position: 0 -180px; }
  7954. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7955. .x-tool-expand-right,
  7956. .x-tool-collapse-right {
  7957. background-position: 0 -165px; }
  7958. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7959. .x-tool-over .x-tool-close {
  7960. background-position: -15px 0; }
  7961. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7962. .x-tool-over .x-tool-minimize {
  7963. background-position: -15px -15px; }
  7964. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7965. .x-tool-over .x-tool-maximize {
  7966. background-position: -15px -30px; }
  7967. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7968. .x-tool-over .x-tool-restore {
  7969. background-position: -15px -45px; }
  7970. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7971. .x-tool-over .x-tool-gear {
  7972. background-position: -15px -90px; }
  7973. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7974. .x-tool-over .x-tool-prev {
  7975. background-position: -15px -105px; }
  7976. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7977. .x-tool-over .x-tool-next {
  7978. background-position: -15px -120px; }
  7979. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7980. .x-tool-over .x-tool-pin {
  7981. background-position: -15px -135px; }
  7982. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7983. .x-tool-over .x-tool-unpin {
  7984. background-position: -15px -150px; }
  7985. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7986. .x-tool-over .x-tool-right {
  7987. background-position: -15px -165px; }
  7988. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7989. .x-tool-over .x-tool-left {
  7990. background-position: -15px -180px; }
  7991. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7992. .x-tool-over .x-tool-down {
  7993. background-position: -15px -195px; }
  7994. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7995. .x-tool-over .x-tool-up {
  7996. background-position: -15px -210px; }
  7997. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7998. .x-tool-over .x-tool-refresh {
  7999. background-position: -15px -225px; }
  8000. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8001. .x-tool-over .x-tool-plus {
  8002. background-position: -15px -240px; }
  8003. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8004. .x-tool-over .x-tool-minus {
  8005. background-position: -15px -255px; }
  8006. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8007. .x-tool-over .x-tool-search {
  8008. background-position: -15px -270px; }
  8009. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8010. .x-tool-over .x-tool-save {
  8011. background-position: -15px -285px; }
  8012. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8013. .x-tool-over .x-tool-help {
  8014. background-position: -15px -300px; }
  8015. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8016. .x-tool-over .x-tool-print {
  8017. background-position: -15px -315px; }
  8018. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8019. .x-tool-over .x-tool-expand {
  8020. background-position: -15px -330px; }
  8021. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8022. .x-tool-over .x-tool-collapse {
  8023. background-position: -15px -345px; }
  8024. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8025. .x-tool-over .x-tool-expand-bottom,
  8026. .x-tool-over .x-tool-collapse-bottom {
  8027. background-position: -15px -195px; }
  8028. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8029. .x-tool-over .x-tool-expand-top,
  8030. .x-tool-over .x-tool-collapse-top {
  8031. background-position: -15px -210px; }
  8032. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8033. .x-tool-over .x-tool-expand-left,
  8034. .x-tool-over .x-tool-collapse-left {
  8035. background-position: -15px -180px; }
  8036. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8037. .x-tool-over .x-tool-expand-right,
  8038. .x-tool-over .x-tool-collapse-right {
  8039. background-position: -15px -165px; }
  8040. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8041. .x-horizontal-scroller-present .x-grid-body {
  8042. border-bottom-width: 0px; }
  8043. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8044. .x-vertical-scroller-present .x-grid-body {
  8045. border-right-width: 0px; }
  8046. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8047. .x-scroller {
  8048. overflow: hidden; }
  8049. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8050. .x-scroller-vertical {
  8051. border: 1px solid #99bce8;
  8052. border-top-color: #c5c5c5; }
  8053. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8054. .x-scroller-horizontal {
  8055. border: 1px solid #99bce8; }
  8056. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8057. .x-vertical-scroller-present .x-scroller-horizontal {
  8058. border-right-width: 0px; }
  8059. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8060. .x-scroller-ct {
  8061. overflow: hidden;
  8062. position: absolute;
  8063. margin: 0;
  8064. padding: 0;
  8065. border: none;
  8066. left: 0px;
  8067. top: 0px;
  8068. /*
  8069. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  8070. perpendicular dimension and breaks the scroll as well as offsets it by the left
  8071. offset that we use to try and keep some size on this element. This works on all
  8072. browsers (including IE9).
  8073. */
  8074. box-sizing: content-box !important;
  8075. -ms-box-sizing: content-box !important;
  8076. -moz-box-sizing: content-box !important;
  8077. -webkit-box-sizing: content-box !important; }
  8078. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8079. .x-scroller-vertical .x-scroller-ct {
  8080. overflow-y: scroll; }
  8081. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8082. .x-scroller-horizontal .x-scroller-ct {
  8083. overflow-x: scroll; }
  8084. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8085. .x-html {
  8086. /* Begin bidirectionality settings (do not change) */ }
  8087. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8088. .x-html html, .x-html address, .x-html blockquote, .x-html body, .x-html dd, .x-html div, .x-html dl, .x-html dt, .x-html fieldset, .x-html form, .x-html frame, .x-html frameset, .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html noframes, .x-html ol, .x-html p, .x-html ul, .x-html center, .x-html dir, .x-html hr, .x-html menu, .x-html pre {
  8089. display: block; }
  8090. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8091. .x-html li {
  8092. display: list-item;
  8093. list-style: disc; }
  8094. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8095. .x-html head {
  8096. display: none; }
  8097. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8098. .x-html table {
  8099. display: table; }
  8100. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8101. .x-html tr {
  8102. display: table-row; }
  8103. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8104. .x-html thead {
  8105. display: table-header-group; }
  8106. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8107. .x-html tbody {
  8108. display: table-row-group; }
  8109. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8110. .x-html tfoot {
  8111. display: table-footer-group; }
  8112. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8113. .x-html col {
  8114. display: table-column; }
  8115. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8116. .x-html colgroup {
  8117. display: table-column-group; }
  8118. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8119. .x-html td, .x-html th {
  8120. display: table-cell; }
  8121. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8122. .x-html caption {
  8123. display: table-caption; }
  8124. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8125. .x-html th {
  8126. font-weight: bolder;
  8127. text-align: center; }
  8128. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8129. .x-html caption {
  8130. text-align: center; }
  8131. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8132. .x-html body {
  8133. margin: 8px; }
  8134. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8135. .x-html h1 {
  8136. font-size: 2em;
  8137. margin: .67em 0; }
  8138. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8139. .x-html h2 {
  8140. font-size: 1.5em;
  8141. margin: .75em 0; }
  8142. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8143. .x-html h3 {
  8144. font-size: 1.17em;
  8145. margin: .83em 0; }
  8146. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8147. .x-html h4, .x-html p, .x-html blockquote, .x-html ul, .x-html fieldset, .x-html form, .x-html ol, .x-html dl, .x-html dir, .x-html menu {
  8148. margin: 1.12em 0; }
  8149. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8150. .x-html h5 {
  8151. font-size: .83em;
  8152. margin: 1.5em 0; }
  8153. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8154. .x-html h6 {
  8155. font-size: .75em;
  8156. margin: 1.67em 0; }
  8157. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8158. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  8159. font-weight: bolder; }
  8160. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8161. .x-html blockquote {
  8162. margin-left: 40px;
  8163. margin-right: 40px; }
  8164. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8165. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  8166. font-style: italic; }
  8167. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8168. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  8169. font-family: monospace; }
  8170. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8171. .x-html pre {
  8172. white-space: pre; }
  8173. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8174. .x-html button, .x-html textarea, .x-html input, .x-html select {
  8175. display: inline-block; }
  8176. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8177. .x-html big {
  8178. font-size: 1.17em; }
  8179. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8180. .x-html small, .x-html sub, .x-html sup {
  8181. font-size: .83em; }
  8182. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8183. .x-html sub {
  8184. vertical-align: sub; }
  8185. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8186. .x-html sup {
  8187. vertical-align: super; }
  8188. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8189. .x-html table {
  8190. border-spacing: 2px; }
  8191. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8192. .x-html thead, .x-html tbody, .x-html tfoot {
  8193. vertical-align: middle; }
  8194. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8195. .x-html td, .x-html th {
  8196. vertical-align: inherit; }
  8197. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8198. .x-html s, .x-html strike, .x-html del {
  8199. text-decoration: line-through; }
  8200. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8201. .x-html hr {
  8202. border: 1px inset; }
  8203. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8204. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  8205. margin-left: 40px; }
  8206. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8207. .x-html ul, .x-html menu, .x-html dir {
  8208. list-style-type: disc; }
  8209. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8210. .x-html ol {
  8211. list-style-type: decimal; }
  8212. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8213. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  8214. margin-top: 0;
  8215. margin-bottom: 0; }
  8216. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8217. .x-html u, .x-html ins {
  8218. text-decoration: underline; }
  8219. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8220. .x-html br:before {
  8221. content: "\A"; }
  8222. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8223. .x-html :before, .x-html :after {
  8224. white-space: pre-line; }
  8225. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8226. .x-html center {
  8227. text-align: center; }
  8228. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8229. .x-html :link, .x-html :visited {
  8230. text-decoration: underline; }
  8231. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8232. .x-html :focus {
  8233. outline: invert dotted thin; }
  8234. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8235. .x-html BDO[DIR="ltr"] {
  8236. direction: ltr;
  8237. unicode-bidi: bidi-override; }
  8238. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8239. .x-html BDO[DIR="rtl"] {
  8240. direction: rtl;
  8241. unicode-bidi: bidi-override; }