ext-ie-debug.css 353 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171
  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. Commercial Usage
  6. Licensees holding valid commercial licenses may use this file in accordance with the Commercial
  7. Software License Agreement provided with the Software or, alternatively, in accordance with the
  8. terms contained in a written agreement between you and Sencha.
  9. If you are unsure which license is appropriate for your use, please contact the sales department
  10. at http://www.sencha.com/contact.
  11. Build date: 2012-07-04 21:23:42 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
  12. */
  13. /**
  14. * @class Global_CSS
  15. *
  16. * Global CSS variables and mixins of Sencha Touch.
  17. */
  18. /**
  19. * @var {string} $prefix
  20. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  21. * JavaScript application.
  22. */
  23. /**
  24. * @var {string} $theme-name
  25. * The name of the theme. This must match the the output directory of the images.
  26. * (defaults to 'default')
  27. */
  28. /**
  29. * @var {boolean/string} $relative-image-path-for-uis
  30. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  31. * It can also be a string of the path value.
  32. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  33. */
  34. /**
  35. * @var {string} $font-family
  36. * The default font-family to be used throughout the theme.
  37. */
  38. /**
  39. * @var {string} $base-gradient
  40. * The base gradient to be used throughout the theme.
  41. */
  42. /**
  43. * @var {color} $base-color
  44. * The base color to be used throughout the theme.
  45. */
  46. /**
  47. * @var {boolean} $include-not-found-images
  48. * True to include files which are not found when compiling your SASS
  49. */
  50. /**
  51. * @var {boolean} $include-ie
  52. * True to include Internet Explorer specific rules
  53. */
  54. /**
  55. * @var {boolean} $include-ff
  56. * True to include Firefox specific rules
  57. */
  58. /**
  59. * @var {boolean} $include-chrome
  60. * True to include Chrome specific rules
  61. */
  62. /**
  63. * @var {boolean} $include-safari
  64. * True to include Safari specific rules
  65. */
  66. /**
  67. * @var {boolean} $include-opera
  68. * True to include Opera specific rules
  69. */
  70. /**
  71. * @var {boolean} $include-webkit
  72. * True to include Webkit specific rules
  73. */
  74. /**
  75. * @var {boolean} $compile-all
  76. * True to copile all CSS, even if above include rules are false
  77. */
  78. /**
  79. * @var {boolean} $scope-reset-css
  80. * True to scope the reset CSS within the $prefix variable.
  81. */
  82. /**
  83. * @var {color} $css-shadow-background-color
  84. * The base color for CSS shadows
  85. */
  86. /**
  87. * @var {color} $include-shadow-images
  88. * True to include all shadow images.
  89. */
  90. /**
  91. * @class Ext.form.field.Base
  92. */
  93. /**
  94. * @var {measurement} $form-field-height
  95. * Height for form fields.
  96. */
  97. /**
  98. * @var {measurement} $form-toolbar-field-height
  99. * Height for form fields in toolbar.
  100. */
  101. /**
  102. * @var {measurement} $form-error-icon-width
  103. * Width for form error icons.
  104. */
  105. /**
  106. * @var {measurement} $form-field-padding
  107. * Padding around form fields.
  108. */
  109. /**
  110. * @var {measurement} $form-field-font-size
  111. * Font size for form fields.
  112. */
  113. /**
  114. * @var {font-family} $form-field-font-family
  115. * Font family for form fields.
  116. */
  117. /**
  118. * @var {font-weight} $form-field-font-weight
  119. * Font weight for form fields.
  120. */
  121. /**
  122. * @var {font} $form-field-font
  123. * Font for form fields.
  124. */
  125. /**
  126. * @var {color} $form-field-color
  127. * Text color for form fields.
  128. */
  129. /**
  130. * @var {color} $form-field-empty-color
  131. * Text color for empty form fields.
  132. */
  133. /**
  134. * @var {color} $form-field-border-color
  135. * Border color for form fields.
  136. */
  137. /**
  138. * @var {measurement} $form-field-border-width
  139. * Border width for form fields.
  140. */
  141. /**
  142. * @var {color} $form-field-focus-border-color
  143. * Border color for focused form fields.
  144. */
  145. /**
  146. * @var {color} $form-field-invalid-border-color
  147. * Border color for invalid form fields.
  148. */
  149. /**
  150. * @var {color} $form-field-background-color
  151. * Background color for form fields.
  152. */
  153. /**
  154. * @var {string} $form-field-background-image
  155. * Background image for form fields.
  156. */
  157. /**
  158. * @var {color} $form-field-invalid-background-color
  159. * Background color for invalid form fields.
  160. */
  161. /**
  162. * @var {string} $form-field-invalid-background-image
  163. * Background image for invalid form fields.
  164. */
  165. /**
  166. * @var {background-repeat} $form-field-invalid-background-repeat
  167. * Background repeat for invalid form fields.
  168. */
  169. /**
  170. * @var {background-position} $form-field-invalid-background-position
  171. * Background position for invalid form fields.
  172. */
  173. /**
  174. * @class Ext.form.field.TextArea
  175. */
  176. /**
  177. * @class Ext.form.Label
  178. */
  179. /**
  180. * @class Ext.form.field.Checkbox
  181. */
  182. /**
  183. * @class Ext.form.field.Radio
  184. */
  185. /* Error messages */
  186. /**
  187. * @class Ext.form.field.Trigger
  188. */
  189. /**
  190. * @class Ext.form.FieldSet
  191. */
  192. /**
  193. * @class Ext.slider.Multi
  194. */
  195. /**
  196. * Creates a background gradient.
  197. *
  198. * @param {Color} $bg-color The background color of the gradient
  199. * @param {String/List} [$type] The type of gradient to be used. Can either
  200. * be a String which is a predefined gradient, or it can can be a list of
  201. * color_stops. If none is set, it will still set the `background-color`
  202. * to the $background-color.
  203. * @param {String} [$direction=top] The direction of the gradient. Can either be
  204. * `top` or `left`.
  205. * @member Global_CSS
  206. */
  207. /*
  208. * Method which inserts a full background-image property for a theme image.
  209. * It checks if the file exists and if it doesn't, it'll throw an error.
  210. * By default it will not include the background-image property if it is not found,
  211. * but this can be changed by changing the default value of $include-missing-images to
  212. * be true.
  213. */
  214. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  215. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  216. h4, h5, h6, pre, code, form, fieldset, legend,
  217. input, textarea, p, blockquote, th, td {
  218. margin: 0;
  219. padding: 0; }
  220. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  221. table {
  222. border-collapse: collapse;
  223. border-spacing: 0; }
  224. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  225. fieldset, img {
  226. border: 0; }
  227. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  228. address, caption, cite, code,
  229. dfn, em, strong, th, var {
  230. font-style: normal;
  231. font-weight: normal; }
  232. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  233. li {
  234. list-style: none; }
  235. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  236. caption, th {
  237. text-align: left; }
  238. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  239. h1, h2, h3, h4, h5, h6 {
  240. font-size: 100%; }
  241. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  242. q:before,
  243. q:after {
  244. content: ""; }
  245. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  246. abbr, acronym {
  247. border: 0;
  248. font-variant: normal; }
  249. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  250. sup {
  251. vertical-align: text-top; }
  252. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  253. sub {
  254. vertical-align: text-bottom; }
  255. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  256. input, textarea, select {
  257. font-family: inherit;
  258. font-size: inherit;
  259. font-weight: inherit; }
  260. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  261. *:focus {
  262. outline: none; }
  263. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  264. .x-border-box,
  265. .x-border-box * {
  266. box-sizing: border-box;
  267. -moz-box-sizing: border-box;
  268. -ms-box-sizing: border-box;
  269. -webkit-box-sizing: border-box; }
  270. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  271. .x-body {
  272. color: black;
  273. font-size: 12px;
  274. font-family: tahoma, arial, verdana, sans-serif; }
  275. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  276. .x-rtl {
  277. direction: rtl; }
  278. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  279. .x-ltr {
  280. direction: ltr; }
  281. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  282. .x-clear {
  283. overflow: hidden;
  284. clear: both;
  285. font-size: 0;
  286. line-height: 0;
  287. display: table; }
  288. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  289. .x-strict .x-ie7 .x-clear {
  290. height: 0;
  291. width: 0; }
  292. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  293. .x-layer {
  294. position: absolute !important;
  295. overflow: hidden;
  296. zoom: 1; }
  297. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  298. .x-shim {
  299. position: absolute;
  300. left: 0;
  301. top: 0;
  302. overflow: hidden;
  303. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  304. opacity: 0; }
  305. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  306. .x-hide-display {
  307. display: none !important; }
  308. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  309. .x-hide-visibility {
  310. visibility: hidden !important; }
  311. /* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
  312. .x-item-disabled .x-form-item-label,
  313. .x-item-disabled .x-form-field,
  314. .x-item-disabled .x-form-cb-label,
  315. .x-item-disabled .x-form-trigger {
  316. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  317. opacity: 0.3; }
  318. /* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
  319. .x-ie6 .x-item-disabled {
  320. filter: none; }
  321. /* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
  322. .x-hidden,
  323. .x-hide-offsets {
  324. display: block !important;
  325. visibility: hidden !important;
  326. position: absolute!important;
  327. left: -10000px !important;
  328. top: -10000px !important; }
  329. /* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
  330. .x-hide-nosize {
  331. height: 0!important;
  332. width: 0!important; }
  333. /* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
  334. .x-masked-relative {
  335. position: relative; }
  336. /* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
  337. .x-ie6 .x-masked select,
  338. .x-ie6.x-body-masked select {
  339. visibility: hidden !important; }
  340. /* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
  341. .x-css-shadow {
  342. position: absolute;
  343. -webkit-border-radius: 5px 5px;
  344. -moz-border-radius: 5px 5px;
  345. -ms-border-radius: 5px 5px;
  346. -o-border-radius: 5px 5px;
  347. border-radius: 5px 5px; }
  348. /* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
  349. .x-ie-shadow {
  350. background-color: #777;
  351. display: none;
  352. position: absolute;
  353. overflow: hidden;
  354. zoom: 1; }
  355. /* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
  356. .x-box-tl {
  357. background: transparent no-repeat 0 0;
  358. zoom: 1; }
  359. /* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
  360. .x-box-tc {
  361. height: 8px;
  362. background: transparent repeat-x 0 0;
  363. overflow: hidden; }
  364. /* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
  365. .x-box-tr {
  366. background: transparent no-repeat right -8px; }
  367. /* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
  368. .x-box-ml {
  369. background: transparent repeat-y 0;
  370. padding-left: 4px;
  371. overflow: hidden;
  372. zoom: 1; }
  373. /* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
  374. .x-box-mc {
  375. background: repeat-x 0 -16px;
  376. padding: 4px 10px; }
  377. /* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
  378. .x-box-mc h3 {
  379. margin: 0 0 4px 0;
  380. zoom: 1; }
  381. /* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
  382. .x-box-mr {
  383. background: transparent repeat-y right;
  384. padding-right: 4px;
  385. overflow: hidden; }
  386. /* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
  387. .x-box-bl {
  388. background: transparent no-repeat 0 -16px;
  389. zoom: 1; }
  390. /* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
  391. .x-box-bc {
  392. background: transparent repeat-x 0 -8px;
  393. height: 8px;
  394. overflow: hidden; }
  395. /* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
  396. .x-box-br {
  397. background: transparent no-repeat right -24px; }
  398. /* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
  399. .x-box-tl, .x-box-bl {
  400. padding-left: 8px;
  401. overflow: hidden; }
  402. /* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
  403. .x-box-tr, .x-box-br {
  404. padding-right: 8px;
  405. overflow: hidden; }
  406. /* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
  407. .x-box-tl {
  408. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  409. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  410. .x-box-tc {
  411. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  412. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  413. .x-box-tr {
  414. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  415. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  416. .x-box-ml {
  417. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  418. /* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
  419. .x-box-mc {
  420. background-color: #eee;
  421. background-image: url('../../resources/themes/images/default/box/tb.gif');
  422. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  423. color: #393939;
  424. font-size: 15px; }
  425. /* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
  426. .x-box-mc h3 {
  427. font-size: 18px;
  428. font-weight: bold; }
  429. /* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
  430. .x-box-mr {
  431. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  432. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  433. .x-box-bl {
  434. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  435. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  436. .x-box-bc {
  437. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  438. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  439. .x-box-br {
  440. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  441. /* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
  442. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  443. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  444. /* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
  445. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  446. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  447. /* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
  448. .x-box-blue .x-box-mc {
  449. background-color: #c3daf9; }
  450. /* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
  451. .x-box-blue .x-box-mc h3 {
  452. color: #17385b; }
  453. /* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
  454. .x-box-blue .x-box-ml {
  455. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  456. /* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
  457. .x-box-blue .x-box-mr {
  458. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  459. /* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
  460. .x-container {
  461. zoom: 1; }
  462. /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
  463. .x-container:before {
  464. content: "";
  465. clear: both;
  466. display: table; }
  467. /* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
  468. table.x-container:before,
  469. tbody.x-container:before,
  470. tr.x-container:before {
  471. display: none; }
  472. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  473. .x-focus-element {
  474. position: absolute;
  475. top: -10px;
  476. left: -10px;
  477. width: 0px;
  478. height: 0px; }
  479. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  480. .x-focus-frame {
  481. position: absolute;
  482. left: 0px;
  483. top: 0px;
  484. z-index: 100000000;
  485. width: 0px;
  486. height: 0px; }
  487. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  488. .x-focus-frame-top,
  489. .x-focus-frame-bottom,
  490. .x-focus-frame-left,
  491. .x-focus-frame-right {
  492. position: absolute;
  493. top: 0px;
  494. left: 0px; }
  495. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  496. .x-focus-frame-top,
  497. .x-focus-frame-bottom {
  498. border-top: solid 2px #15428b;
  499. height: 2px; }
  500. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  501. .x-focus-frame-left,
  502. .x-focus-frame-right {
  503. border-left: solid 2px #15428b;
  504. width: 2px; }
  505. /**
  506. * Creates the base structure of a BoundList.
  507. * @member Ext.view.BoundList
  508. */
  509. /**
  510. * Creates the base structure of an Ext.Button
  511. * @member Ext.button.Button
  512. */
  513. /**
  514. * Creates a visual theme of an Ext.Button
  515. * @member Ext.button.Button
  516. */
  517. /**
  518. * Creates the base structure of a button group.
  519. * @member Ext.container.ButtonGroup
  520. */
  521. /**
  522. * Creates a visual theme of a button group.
  523. * @member Ext.container.ButtonGroup
  524. */
  525. /**
  526. * Creates the base structure of a date picker.
  527. * @member Ext.picker.Date
  528. */
  529. /**
  530. * Creates base structure for Ext.picker.Color
  531. * @member Ext.picker.Color
  532. */
  533. /**
  534. * Creates the base structure of a Menu
  535. * @member Ext.menu.Menu
  536. */
  537. /**
  538. * Create the base structure of an Ext.Panel
  539. * @member Ext.panel.Panel
  540. */
  541. /**
  542. * Creates a visual theme for an Ext.Panel
  543. * @member Ext.panel.Panel
  544. */
  545. /**
  546. * Creates base structure for Toolbar
  547. * @member Ext.toolbar.Toolbar
  548. */
  549. /**
  550. * Creates a visual theme for an Toolbar.
  551. * @param {String} $ui The name of the UI
  552. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  553. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  554. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  555. * @member Ext.toolbar.Toolbar
  556. */
  557. /**
  558. * Creates the base structure of Ext.form.Panel.
  559. * @member Ext.form.Panel
  560. */
  561. /**
  562. * Creates the base structure of form field.
  563. * @member Ext.form.field.Base
  564. */
  565. /**
  566. * Creates the base structure of FieldSet.
  567. * @member Ext.form.FieldSet
  568. */
  569. /**
  570. * Creates the base structure of file field.
  571. * @member Ext.form.field.File
  572. */
  573. /**
  574. * Creates the base structure of checkbox field.
  575. * @member Ext.form.field.Checkbox
  576. */
  577. /**
  578. * Creates the base structure of CheckboxGroup.
  579. * @member Ext.form.CheckboxGroup
  580. */
  581. /**
  582. * Creates the base structure of trigger field.
  583. * @member Ext.form.field.Trigger
  584. */
  585. /**
  586. * Creates the base structure of HtmlEditor field.
  587. * @member Ext.form.field.HtmlEditor
  588. */
  589. /**
  590. * Creates the base structure of QuickTip.
  591. * @member Ext.tip.QuickTip
  592. */
  593. /**
  594. * Creates the base structure of an Ext.Window
  595. * @member Ext.window.Window
  596. */
  597. /**
  598. * Creates a visual theme for an Ext.Panel
  599. * @member Ext.window.Window
  600. */
  601. /**
  602. * Creates a visual theme for TabBar
  603. * @member Ext.tab.Bar
  604. */
  605. /**
  606. * Creates the base structure of a Tab.
  607. * @member Ext.tab.Tab
  608. */
  609. /**
  610. * Creates the base structure of slider.
  611. * @member Ext.slider.Multi
  612. */
  613. /**
  614. * Creates base structure for a Grid.
  615. * @member Ext.grid.Panel
  616. */
  617. /**
  618. * Creates the base structure of Tree.
  619. * @member Ext.tree.Panel
  620. */
  621. /* Styles for Ext.LoadMask */
  622. /* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  623. .x-mask {
  624. z-index: 100;
  625. position: absolute;
  626. top: 0;
  627. left: 0;
  628. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  629. opacity: 0.5;
  630. width: 100%;
  631. height: 100%;
  632. zoom: 1;
  633. background: #cccccc; }
  634. /* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  635. .x-mask-msg {
  636. z-index: 20001;
  637. position: absolute;
  638. top: 0;
  639. left: 0;
  640. padding: 2px;
  641. border: 1px solid;
  642. border-color: #99bce8; }
  643. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  644. .x-mask-msg div {
  645. padding: 5px 10px 5px 25px;
  646. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  647. background-repeat: no-repeat;
  648. background-position: 5px center;
  649. cursor: wait;
  650. border: 1px solid #a3bad9;
  651. background-color: #eeeeee;
  652. color: #222222;
  653. font: normal 11px tahoma, arial, verdana, sans-serif; }
  654. /**
  655. * Creates the base structure of an Ext.ProgressBar
  656. * @member Ext.ProgressBar
  657. */
  658. /**
  659. * Creates a visual theme for an Ext.ProgressBar
  660. * @member Ext.ProgressBar
  661. */
  662. /**
  663. * Creates base structure for a Draw Component.
  664. * @member Ext.draw.Component
  665. */
  666. /**
  667. * Creates the base structure of Viewport.
  668. * @member Ext.container.Viewport
  669. */
  670. /**
  671. * W3C suggested default style sheet for HTML 4:
  672. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  673. *
  674. * @member Global_CSS
  675. */
  676. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  677. .x-boundlist {
  678. border-width: 1px;
  679. border-style: solid;
  680. border-color: #98c0f4;
  681. background: white; }
  682. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  683. .x-boundlist .x-toolbar {
  684. border-width: 1px 0 0 0; }
  685. /* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  686. .x-strict .x-ie6 .x-boundlist-list-ct,
  687. .x-strict .x-ie7 .x-boundlist-list-ct {
  688. position: relative; }
  689. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  690. .x-boundlist-item {
  691. padding: 2px;
  692. user-select: none;
  693. -o-user-select: none;
  694. -ms-user-select: none;
  695. -moz-user-select: -moz-none;
  696. -webkit-user-select: none;
  697. cursor: default;
  698. cursor: pointer;
  699. cursor: hand;
  700. position: relative;
  701. /*allow hover in IE on empty items*/
  702. border-width: 1px;
  703. border-style: dotted;
  704. border-color: white; }
  705. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  706. .x-boundlist-selected {
  707. background: #cbdaf0;
  708. border-color: #8eabe4; }
  709. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  710. .x-boundlist-item-over {
  711. background: #dfe8f6;
  712. border-color: #a3bae9; }
  713. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  714. .x-boundlist-floating {
  715. border-top-width: 0; }
  716. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  717. .x-boundlist-above {
  718. border-top-width: 1px;
  719. border-bottom-width: 1px; }
  720. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  721. .x-btn {
  722. display: inline-block;
  723. zoom: 1;
  724. *display: inline;
  725. position: relative;
  726. cursor: pointer;
  727. cursor: hand;
  728. white-space: nowrap;
  729. vertical-align: middle;
  730. background-repeat: no-repeat; }
  731. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  732. .x-btn * {
  733. cursor: pointer;
  734. cursor: hand; }
  735. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  736. .x-btn em {
  737. background-repeat: no-repeat; }
  738. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  739. .x-btn em a {
  740. text-decoration: none;
  741. display: block;
  742. color: inherit;
  743. width: 100%;
  744. zoom: 1; }
  745. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  746. .x-btn button {
  747. width: 100%;
  748. display: block;
  749. margin: 0;
  750. padding: 0;
  751. border: 0;
  752. background: none;
  753. outline: 0 none;
  754. overflow: hidden;
  755. vertical-align: bottom;
  756. -webkit-appearance: none; }
  757. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  758. .x-btn button::-moz-focus-inner {
  759. border: 0;
  760. padding: 0; }
  761. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  762. .x-btn .x-btn-inner {
  763. display: block;
  764. white-space: nowrap;
  765. background-color: transparent;
  766. background-repeat: no-repeat;
  767. background-position: left center;
  768. overflow: hidden; }
  769. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  770. .x-btn .x-btn-left .x-btn-inner {
  771. text-align: left; }
  772. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  773. .x-btn .x-btn-center .x-btn-inner {
  774. text-align: center; }
  775. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  776. .x-btn .x-btn-right .x-btn-inner {
  777. text-align: right; }
  778. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  779. .x-btn-disabled span {
  780. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  781. opacity: 0.5; }
  782. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  783. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  784. filter: none; }
  785. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  786. .x-ie7 .x-btn-disabled,
  787. .x-ie8 .x-btn-disabled {
  788. filter: none; }
  789. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  790. .x-ie6 .x-btn-disabled .x-btn-icon,
  791. .x-ie7 .x-btn-disabled .x-btn-icon,
  792. .x-ie8 .x-btn-disabled .x-btn-icon {
  793. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  794. opacity: 0.6; }
  795. /* IE9 shows scrollbars in a button unless this is set */
  796. /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  797. .x-ie9 .x-btn button {
  798. overflow: visible!important; }
  799. /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  800. * html .x-ie .x-btn button {
  801. width: 1px; }
  802. /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  803. .x-ie .x-btn button {
  804. overflow-x: visible;
  805. /*prevents extra horiz space in IE*/
  806. vertical-align: baseline;
  807. /*IE doesn't like bottom*/ }
  808. /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  809. .x-strict .x-ie6 .x-btn .x-frame-mc,
  810. .x-strict .x-ie7 .x-btn .x-frame-mc {
  811. height: 100%; }
  812. /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
  813. /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  814. .x-btn .x-frame-mc {
  815. vertical-align: middle;
  816. white-space: nowrap;
  817. cursor: pointer; }
  818. /* Only center when all there is is text. Otherwise solo icons get centered. */
  819. /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  820. .x-btn-noicon .x-frame-mc {
  821. text-align: center; }
  822. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  823. .x-btn-icon-text-left .x-btn-icon {
  824. background-position: left center; }
  825. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  826. .x-btn-icon-text-right .x-btn-icon {
  827. background-position: right center; }
  828. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  829. .x-btn-icon-text-top .x-btn-icon {
  830. background-position: center top; }
  831. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  832. .x-btn-icon-text-bottom .x-btn-icon {
  833. background-position: center bottom; }
  834. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  835. .x-btn button, .x-btn a {
  836. position: relative; }
  837. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  838. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  839. position: absolute;
  840. background-repeat: no-repeat; }
  841. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  842. .x-btn-arrow-right {
  843. background: transparent no-repeat right center;
  844. padding-right: 12px; }
  845. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  846. .x-btn-arrow-right .x-btn-inner {
  847. padding-right: 0 !important; }
  848. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  849. .x-toolbar .x-btn-arrow-right {
  850. padding-right: 12px; }
  851. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  852. .x-btn-arrow-bottom {
  853. background: transparent no-repeat center bottom;
  854. padding-bottom: 12px; }
  855. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  856. .x-btn-arrow {
  857. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  858. display: block; }
  859. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  860. .x-btn-split-right,
  861. .x-btn-over .x-btn-split-right {
  862. background: transparent no-repeat right center;
  863. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  864. padding-right: 14px !important; }
  865. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  866. .x-btn-split-bottom,
  867. .x-btn-over .x-btn-split-bottom {
  868. background: transparent no-repeat center bottom;
  869. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  870. padding-bottom: 14px; }
  871. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  872. .x-toolbar .x-btn-split-right {
  873. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  874. padding-right: 12px !important; }
  875. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  876. .x-toolbar .x-btn-split-bottom {
  877. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  878. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  879. .x-btn-split {
  880. display: block; }
  881. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  882. .x-item-disabled,
  883. .x-item-disabled * {
  884. cursor: default; }
  885. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  886. .x-cycle-fixed-width .x-btn-inner {
  887. text-align: inherit; }
  888. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  889. .x-btn-over .x-btn-split-right {
  890. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  891. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  892. .x-btn-over .x-btn-split-bottom {
  893. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  894. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  895. .x-btn-default-small {
  896. border-color: #d1d1d1; }
  897. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  898. .x-btn-default-small {
  899. padding: 2px 2px 2px 2px;
  900. border-width: 1px;
  901. border-style: solid;
  902. background-color: white; }
  903. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  904. .x-nlg .x-btn-default-small-mc {
  905. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  906. background-color: white; }
  907. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  908. .x-nbr .x-btn-default-small {
  909. padding: 0 !important;
  910. border-width: 0 !important;
  911. -webkit-border-radius: 0px;
  912. -moz-border-radius: 0px;
  913. -ms-border-radius: 0px;
  914. -o-border-radius: 0px;
  915. border-radius: 0px;
  916. background-color: transparent;
  917. background-position: 1100303px 1000303px; }
  918. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  919. .x-nbr .x-btn-default-small-tl,
  920. .x-nbr .x-btn-default-small-bl,
  921. .x-nbr .x-btn-default-small-tr,
  922. .x-nbr .x-btn-default-small-br,
  923. .x-nbr .x-btn-default-small-tc,
  924. .x-nbr .x-btn-default-small-bc,
  925. .x-nbr .x-btn-default-small-ml,
  926. .x-nbr .x-btn-default-small-mr {
  927. zoom: 1;
  928. background-image: url('../../resources/themes/images/default/btn/btn-default-small-corners.gif'); }
  929. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  930. .x-nbr .x-btn-default-small-ml,
  931. .x-nbr .x-btn-default-small-mr {
  932. zoom: 1;
  933. background-image: url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
  934. background-position: 0 0; }
  935. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  936. .x-nbr .x-btn-default-small-mc {
  937. padding: 0px 0px 0px 0px; }
  938. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  939. .x-strict .x-ie7 .x-btn-default-small-tl,
  940. .x-strict .x-ie7 .x-btn-default-small-bl {
  941. position: relative;
  942. right: 0; }
  943. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  944. .x-btn-default-small .x-btn-inner {
  945. font-size: 11px;
  946. font-weight: normal;
  947. font-family: tahoma, arial, verdana, sans-serif;
  948. color: #333333;
  949. background-repeat: no-repeat;
  950. padding: 0 4px; }
  951. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  952. .x-btn-default-small-icon button,
  953. .x-btn-default-small-icon a,
  954. .x-btn-default-small-icon .x-btn-inner,
  955. .x-btn-default-small-noicon button,
  956. .x-btn-default-small-noicon a,
  957. .x-btn-default-small-noicon .x-btn-inner {
  958. height: 16px;
  959. line-height: 16px; }
  960. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  961. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  962. padding: 0; }
  963. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  964. .x-btn-default-small-icon .x-btn-inner {
  965. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  966. width: 16px;
  967. padding: 0; }
  968. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  969. .x-btn-default-small-icon .x-btn-icon {
  970. width: 16px;
  971. height: 16px;
  972. top: 0;
  973. left: 0;
  974. bottom: 0;
  975. right: 0; }
  976. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  977. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  978. height: 16px; }
  979. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  980. .x-btn-default-small-icon-text-left .x-btn-inner {
  981. height: 16px;
  982. line-height: 16px;
  983. padding-left: 20px; }
  984. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  985. .x-btn-default-small-icon-text-left .x-btn-icon {
  986. width: 16px;
  987. height: auto;
  988. top: 0;
  989. left: 0;
  990. bottom: 0;
  991. right: auto; }
  992. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  993. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  994. height: 16px; }
  995. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  996. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  997. height: 16px; }
  998. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  999. .x-btn-default-small-icon-text-right .x-btn-inner {
  1000. height: 16px;
  1001. line-height: 16px;
  1002. padding-right: 20px !important; }
  1003. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1004. .x-btn-default-small-icon-text-right .x-btn-icon {
  1005. width: 16px;
  1006. height: auto;
  1007. top: 0;
  1008. left: auto;
  1009. bottom: 0;
  1010. right: 0; }
  1011. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1012. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  1013. height: 16px; }
  1014. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1015. .x-btn-default-small-icon-text-top .x-btn-inner {
  1016. padding-top: 20px; }
  1017. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1018. .x-btn-default-small-icon-text-top .x-btn-icon {
  1019. width: auto;
  1020. height: 16px;
  1021. top: 0;
  1022. left: 0;
  1023. bottom: auto;
  1024. right: 0; }
  1025. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1026. .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 {
  1027. width: 16px; }
  1028. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1029. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  1030. padding-bottom: 20px; }
  1031. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1032. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1033. width: auto;
  1034. height: 16px;
  1035. top: auto;
  1036. left: 0;
  1037. bottom: 0;
  1038. right: 0; }
  1039. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1040. .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 {
  1041. width: 16px; }
  1042. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1043. .x-btn-default-small-over {
  1044. border-color: #b0ccf2;
  1045. background-image: none;
  1046. background-color: #e4f3ff;
  1047. 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));
  1048. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1049. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1050. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1051. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1052. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1053. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1054. .x-btn-default-small-focus {
  1055. border-color: #b0ccf2;
  1056. background-image: none;
  1057. background-color: #e4f3ff;
  1058. 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));
  1059. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1060. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1061. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1062. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1063. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1064. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1065. .x-btn-default-small-menu-active,
  1066. .x-btn-default-small-pressed {
  1067. border-color: #9ebae1;
  1068. background-image: none;
  1069. background-color: #b6cbe4;
  1070. 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));
  1071. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1072. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1073. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1074. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1075. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1076. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1077. .x-btn-default-small-disabled {
  1078. border-color: #e1e1e1;
  1079. background-image: none;
  1080. background-color: #f7f7f7;
  1081. 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));
  1082. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1083. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1084. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1085. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1086. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1087. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1088. .x-btn-default-small-disabled .x-btn-inner {
  1089. color: #333333 !important; }
  1090. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1091. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1092. color: #595959 !important; }
  1093. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1094. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1095. color: #8c8c8c !important; }
  1096. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1097. .x-nbr .x-btn-default-small-over .x-frame-tl,
  1098. .x-nbr .x-btn-default-small-over .x-frame-bl,
  1099. .x-nbr .x-btn-default-small-over .x-frame-tr,
  1100. .x-nbr .x-btn-default-small-over .x-frame-br,
  1101. .x-nbr .x-btn-default-small-over .x-frame-tc,
  1102. .x-nbr .x-btn-default-small-over .x-frame-bc {
  1103. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif'); }
  1104. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1105. .x-nbr .x-btn-default-small-over .x-frame-ml,
  1106. .x-nbr .x-btn-default-small-over .x-frame-mr {
  1107. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif'); }
  1108. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1109. .x-nbr .x-btn-default-small-over .x-frame-mc {
  1110. background-color: #e4f3ff;
  1111. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1112. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1113. .x-nbr .x-btn-default-small-focus .x-frame-tl,
  1114. .x-nbr .x-btn-default-small-focus .x-frame-bl,
  1115. .x-nbr .x-btn-default-small-focus .x-frame-tr,
  1116. .x-nbr .x-btn-default-small-focus .x-frame-br,
  1117. .x-nbr .x-btn-default-small-focus .x-frame-tc,
  1118. .x-nbr .x-btn-default-small-focus .x-frame-bc {
  1119. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif'); }
  1120. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1121. .x-nbr .x-btn-default-small-focus .x-frame-ml,
  1122. .x-nbr .x-btn-default-small-focus .x-frame-mr {
  1123. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif'); }
  1124. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1125. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  1126. background-color: #e4f3ff;
  1127. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1128. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1129. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
  1130. .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
  1131. .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
  1132. .x-nbr .x-btn-default-small-menu-active .x-frame-br,
  1133. .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
  1134. .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
  1135. .x-nbr .x-btn-default-small-pressed .x-frame-tl,
  1136. .x-nbr .x-btn-default-small-pressed .x-frame-bl,
  1137. .x-nbr .x-btn-default-small-pressed .x-frame-tr,
  1138. .x-nbr .x-btn-default-small-pressed .x-frame-br,
  1139. .x-nbr .x-btn-default-small-pressed .x-frame-tc,
  1140. .x-nbr .x-btn-default-small-pressed .x-frame-bc {
  1141. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif'); }
  1142. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1143. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
  1144. .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
  1145. .x-nbr .x-btn-default-small-pressed .x-frame-ml,
  1146. .x-nbr .x-btn-default-small-pressed .x-frame-mr {
  1147. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif'); }
  1148. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1149. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
  1150. .x-nbr .x-btn-default-small-pressed .x-frame-mc {
  1151. background-color: #b6cbe4;
  1152. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1153. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1154. .x-nbr .x-btn-default-small-disabled .x-frame-tl,
  1155. .x-nbr .x-btn-default-small-disabled .x-frame-bl,
  1156. .x-nbr .x-btn-default-small-disabled .x-frame-tr,
  1157. .x-nbr .x-btn-default-small-disabled .x-frame-br,
  1158. .x-nbr .x-btn-default-small-disabled .x-frame-tc,
  1159. .x-nbr .x-btn-default-small-disabled .x-frame-bc {
  1160. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif'); }
  1161. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1162. .x-nbr .x-btn-default-small-disabled .x-frame-ml,
  1163. .x-nbr .x-btn-default-small-disabled .x-frame-mr {
  1164. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif'); }
  1165. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1166. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  1167. background-color: #f7f7f7;
  1168. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1169. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1170. .x-nlg .x-btn-default-small {
  1171. background-repeat: repeat-x;
  1172. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  1173. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1174. .x-nlg .x-btn-default-small-over {
  1175. background-repeat: repeat-x;
  1176. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1177. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1178. .x-nlg .x-btn-default-small-focus {
  1179. background-repeat: repeat-x;
  1180. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1181. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1182. .x-nlg .x-btn-default-small-menu-active,
  1183. .x-nlg .x-btn-default-small-pressed {
  1184. background-repeat: repeat-x;
  1185. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1186. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1187. .x-nlg .x-btn-default-small-disabled {
  1188. background-repeat: repeat-x;
  1189. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1190. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1191. .x-btn-default-medium {
  1192. border-color: #d1d1d1; }
  1193. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1194. .x-btn-default-medium {
  1195. padding: 3px 3px 3px 3px;
  1196. border-width: 1px;
  1197. border-style: solid;
  1198. background-color: white; }
  1199. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1200. .x-nlg .x-btn-default-medium-mc {
  1201. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  1202. background-color: white; }
  1203. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1204. .x-nbr .x-btn-default-medium {
  1205. padding: 0 !important;
  1206. border-width: 0 !important;
  1207. -webkit-border-radius: 0px;
  1208. -moz-border-radius: 0px;
  1209. -ms-border-radius: 0px;
  1210. -o-border-radius: 0px;
  1211. border-radius: 0px;
  1212. background-color: transparent;
  1213. background-position: 1100303px 1000303px; }
  1214. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1215. .x-nbr .x-btn-default-medium-tl,
  1216. .x-nbr .x-btn-default-medium-bl,
  1217. .x-nbr .x-btn-default-medium-tr,
  1218. .x-nbr .x-btn-default-medium-br,
  1219. .x-nbr .x-btn-default-medium-tc,
  1220. .x-nbr .x-btn-default-medium-bc,
  1221. .x-nbr .x-btn-default-medium-ml,
  1222. .x-nbr .x-btn-default-medium-mr {
  1223. zoom: 1;
  1224. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif'); }
  1225. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  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-sides.gif');
  1230. background-position: 0 0; }
  1231. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1232. .x-nbr .x-btn-default-medium-mc {
  1233. padding: 1px 1px 1px 1px; }
  1234. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1235. .x-strict .x-ie7 .x-btn-default-medium-tl,
  1236. .x-strict .x-ie7 .x-btn-default-medium-bl {
  1237. position: relative;
  1238. right: 0; }
  1239. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1240. .x-btn-default-medium .x-btn-inner {
  1241. font-size: 11px;
  1242. font-weight: normal;
  1243. font-family: tahoma, arial, verdana, sans-serif;
  1244. color: #333333;
  1245. background-repeat: no-repeat;
  1246. padding: 0 3px; }
  1247. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1248. .x-btn-default-medium-icon button,
  1249. .x-btn-default-medium-icon a,
  1250. .x-btn-default-medium-icon .x-btn-inner,
  1251. .x-btn-default-medium-noicon button,
  1252. .x-btn-default-medium-noicon a,
  1253. .x-btn-default-medium-noicon .x-btn-inner {
  1254. height: 24px;
  1255. line-height: 24px; }
  1256. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1257. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1258. padding: 0; }
  1259. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1260. .x-btn-default-medium-icon .x-btn-inner {
  1261. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1262. width: 24px;
  1263. padding: 0; }
  1264. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1265. .x-btn-default-medium-icon .x-btn-icon {
  1266. width: 24px;
  1267. height: 24px;
  1268. top: 0;
  1269. left: 0;
  1270. bottom: 0;
  1271. right: 0; }
  1272. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1273. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1274. height: 24px; }
  1275. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1276. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1277. height: 24px;
  1278. line-height: 24px;
  1279. padding-left: 28px; }
  1280. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1281. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1282. width: 24px;
  1283. height: auto;
  1284. top: 0;
  1285. left: 0;
  1286. bottom: 0;
  1287. right: auto; }
  1288. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1289. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1290. height: 24px; }
  1291. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1292. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1293. height: 24px; }
  1294. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1295. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1296. height: 24px;
  1297. line-height: 24px;
  1298. padding-right: 28px !important; }
  1299. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1300. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1301. width: 24px;
  1302. height: auto;
  1303. top: 0;
  1304. left: auto;
  1305. bottom: 0;
  1306. right: 0; }
  1307. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1308. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1309. height: 24px; }
  1310. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1311. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1312. padding-top: 28px; }
  1313. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1314. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1315. width: auto;
  1316. height: 24px;
  1317. top: 0;
  1318. left: 0;
  1319. bottom: auto;
  1320. right: 0; }
  1321. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1322. .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 {
  1323. width: 24px; }
  1324. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1325. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1326. padding-bottom: 28px; }
  1327. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1328. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1329. width: auto;
  1330. height: 24px;
  1331. top: auto;
  1332. left: 0;
  1333. bottom: 0;
  1334. right: 0; }
  1335. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1336. .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 {
  1337. width: 24px; }
  1338. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1339. .x-btn-default-medium-over {
  1340. border-color: #b0ccf2;
  1341. background-image: none;
  1342. background-color: #e4f3ff;
  1343. 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));
  1344. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1345. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1346. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1347. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1348. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1349. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1350. .x-btn-default-medium-focus {
  1351. border-color: #b0ccf2;
  1352. background-image: none;
  1353. background-color: #e4f3ff;
  1354. 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));
  1355. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1356. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1357. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1358. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1359. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1360. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1361. .x-btn-default-medium-menu-active,
  1362. .x-btn-default-medium-pressed {
  1363. border-color: #9ebae1;
  1364. background-image: none;
  1365. background-color: #b6cbe4;
  1366. 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));
  1367. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1368. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1369. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1370. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1371. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1372. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1373. .x-btn-default-medium-disabled {
  1374. border-color: #e1e1e1;
  1375. background-image: none;
  1376. background-color: #f7f7f7;
  1377. 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));
  1378. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1379. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1380. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1381. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1382. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1383. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1384. .x-btn-default-medium-disabled .x-btn-inner {
  1385. color: #333333 !important; }
  1386. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1387. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1388. color: #595959 !important; }
  1389. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1390. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1391. color: #8c8c8c !important; }
  1392. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1393. .x-nbr .x-btn-default-medium-over .x-frame-tl,
  1394. .x-nbr .x-btn-default-medium-over .x-frame-bl,
  1395. .x-nbr .x-btn-default-medium-over .x-frame-tr,
  1396. .x-nbr .x-btn-default-medium-over .x-frame-br,
  1397. .x-nbr .x-btn-default-medium-over .x-frame-tc,
  1398. .x-nbr .x-btn-default-medium-over .x-frame-bc {
  1399. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif'); }
  1400. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1401. .x-nbr .x-btn-default-medium-over .x-frame-ml,
  1402. .x-nbr .x-btn-default-medium-over .x-frame-mr {
  1403. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif'); }
  1404. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1405. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1406. background-color: #e4f3ff;
  1407. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1408. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1409. .x-nbr .x-btn-default-medium-focus .x-frame-tl,
  1410. .x-nbr .x-btn-default-medium-focus .x-frame-bl,
  1411. .x-nbr .x-btn-default-medium-focus .x-frame-tr,
  1412. .x-nbr .x-btn-default-medium-focus .x-frame-br,
  1413. .x-nbr .x-btn-default-medium-focus .x-frame-tc,
  1414. .x-nbr .x-btn-default-medium-focus .x-frame-bc {
  1415. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif'); }
  1416. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1417. .x-nbr .x-btn-default-medium-focus .x-frame-ml,
  1418. .x-nbr .x-btn-default-medium-focus .x-frame-mr {
  1419. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif'); }
  1420. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1421. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1422. background-color: #e4f3ff;
  1423. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1424. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1425. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
  1426. .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
  1427. .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
  1428. .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
  1429. .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
  1430. .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
  1431. .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
  1432. .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
  1433. .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
  1434. .x-nbr .x-btn-default-medium-pressed .x-frame-br,
  1435. .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
  1436. .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
  1437. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif'); }
  1438. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1439. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
  1440. .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
  1441. .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
  1442. .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
  1443. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif'); }
  1444. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1445. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
  1446. .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
  1447. background-color: #b6cbe4;
  1448. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1449. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1450. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
  1451. .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
  1452. .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
  1453. .x-nbr .x-btn-default-medium-disabled .x-frame-br,
  1454. .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
  1455. .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
  1456. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif'); }
  1457. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1458. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
  1459. .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
  1460. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif'); }
  1461. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1462. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1463. background-color: #f7f7f7;
  1464. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1465. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1466. .x-nlg .x-btn-default-medium {
  1467. background-repeat: repeat-x;
  1468. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1469. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1470. .x-nlg .x-btn-default-medium-over {
  1471. background-repeat: repeat-x;
  1472. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1473. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1474. .x-nlg .x-btn-default-medium-focus {
  1475. background-repeat: repeat-x;
  1476. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1477. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1478. .x-nlg .x-btn-default-medium-menu-active,
  1479. .x-nlg .x-btn-default-medium-pressed {
  1480. background-repeat: repeat-x;
  1481. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1482. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1483. .x-nlg .x-btn-default-medium-disabled {
  1484. background-repeat: repeat-x;
  1485. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1486. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1487. .x-btn-default-large {
  1488. border-color: #d1d1d1; }
  1489. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1490. .x-btn-default-large {
  1491. padding: 3px 3px 3px 3px;
  1492. border-width: 1px;
  1493. border-style: solid;
  1494. background-color: white; }
  1495. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1496. .x-nlg .x-btn-default-large-mc {
  1497. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1498. background-color: white; }
  1499. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1500. .x-nbr .x-btn-default-large {
  1501. padding: 0 !important;
  1502. border-width: 0 !important;
  1503. -webkit-border-radius: 0px;
  1504. -moz-border-radius: 0px;
  1505. -ms-border-radius: 0px;
  1506. -o-border-radius: 0px;
  1507. border-radius: 0px;
  1508. background-color: transparent;
  1509. background-position: 1100303px 1000303px; }
  1510. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1511. .x-nbr .x-btn-default-large-tl,
  1512. .x-nbr .x-btn-default-large-bl,
  1513. .x-nbr .x-btn-default-large-tr,
  1514. .x-nbr .x-btn-default-large-br,
  1515. .x-nbr .x-btn-default-large-tc,
  1516. .x-nbr .x-btn-default-large-bc,
  1517. .x-nbr .x-btn-default-large-ml,
  1518. .x-nbr .x-btn-default-large-mr {
  1519. zoom: 1;
  1520. background-image: url('../../resources/themes/images/default/btn/btn-default-large-corners.gif'); }
  1521. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1522. .x-nbr .x-btn-default-large-ml,
  1523. .x-nbr .x-btn-default-large-mr {
  1524. zoom: 1;
  1525. background-image: url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
  1526. background-position: 0 0; }
  1527. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1528. .x-nbr .x-btn-default-large-mc {
  1529. padding: 1px 1px 1px 1px; }
  1530. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1531. .x-strict .x-ie7 .x-btn-default-large-tl,
  1532. .x-strict .x-ie7 .x-btn-default-large-bl {
  1533. position: relative;
  1534. right: 0; }
  1535. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1536. .x-btn-default-large .x-btn-inner {
  1537. font-size: 11px;
  1538. font-weight: normal;
  1539. font-family: tahoma, arial, verdana, sans-serif;
  1540. color: #333333;
  1541. background-repeat: no-repeat;
  1542. padding: 0 3px; }
  1543. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1544. .x-btn-default-large-icon button,
  1545. .x-btn-default-large-icon a,
  1546. .x-btn-default-large-icon .x-btn-inner,
  1547. .x-btn-default-large-noicon button,
  1548. .x-btn-default-large-noicon a,
  1549. .x-btn-default-large-noicon .x-btn-inner {
  1550. height: 32px;
  1551. line-height: 32px; }
  1552. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1553. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1554. padding: 0; }
  1555. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1556. .x-btn-default-large-icon .x-btn-inner {
  1557. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1558. width: 32px;
  1559. padding: 0; }
  1560. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1561. .x-btn-default-large-icon .x-btn-icon {
  1562. width: 32px;
  1563. height: 32px;
  1564. top: 0;
  1565. left: 0;
  1566. bottom: 0;
  1567. right: 0; }
  1568. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1569. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1570. height: 32px; }
  1571. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1572. .x-btn-default-large-icon-text-left .x-btn-inner {
  1573. height: 32px;
  1574. line-height: 32px;
  1575. padding-left: 36px; }
  1576. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1577. .x-btn-default-large-icon-text-left .x-btn-icon {
  1578. width: 32px;
  1579. height: auto;
  1580. top: 0;
  1581. left: 0;
  1582. bottom: 0;
  1583. right: auto; }
  1584. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1585. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1586. height: 32px; }
  1587. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1588. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1589. height: 32px; }
  1590. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1591. .x-btn-default-large-icon-text-right .x-btn-inner {
  1592. height: 32px;
  1593. line-height: 32px;
  1594. padding-right: 36px !important; }
  1595. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1596. .x-btn-default-large-icon-text-right .x-btn-icon {
  1597. width: 32px;
  1598. height: auto;
  1599. top: 0;
  1600. left: auto;
  1601. bottom: 0;
  1602. right: 0; }
  1603. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1604. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1605. height: 32px; }
  1606. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1607. .x-btn-default-large-icon-text-top .x-btn-inner {
  1608. padding-top: 36px; }
  1609. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1610. .x-btn-default-large-icon-text-top .x-btn-icon {
  1611. width: auto;
  1612. height: 32px;
  1613. top: 0;
  1614. left: 0;
  1615. bottom: auto;
  1616. right: 0; }
  1617. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1618. .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 {
  1619. width: 32px; }
  1620. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1621. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1622. padding-bottom: 36px; }
  1623. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1624. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1625. width: auto;
  1626. height: 32px;
  1627. top: auto;
  1628. left: 0;
  1629. bottom: 0;
  1630. right: 0; }
  1631. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1632. .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 {
  1633. width: 32px; }
  1634. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1635. .x-btn-default-large-over {
  1636. border-color: #b0ccf2;
  1637. background-image: none;
  1638. background-color: #e4f3ff;
  1639. 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));
  1640. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1641. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1642. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1643. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1644. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1645. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1646. .x-btn-default-large-focus {
  1647. border-color: #b0ccf2;
  1648. background-image: none;
  1649. background-color: #e4f3ff;
  1650. 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));
  1651. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1652. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1653. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1654. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1655. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1656. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1657. .x-btn-default-large-menu-active,
  1658. .x-btn-default-large-pressed {
  1659. border-color: #9ebae1;
  1660. background-image: none;
  1661. background-color: #b6cbe4;
  1662. 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));
  1663. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1664. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1665. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1666. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1667. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1668. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1669. .x-btn-default-large-disabled {
  1670. border-color: #e1e1e1;
  1671. background-image: none;
  1672. background-color: #f7f7f7;
  1673. 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));
  1674. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1675. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1676. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1677. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1678. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1679. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1680. .x-btn-default-large-disabled .x-btn-inner {
  1681. color: #333333 !important; }
  1682. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1683. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1684. color: #595959 !important; }
  1685. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1686. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1687. color: #8c8c8c !important; }
  1688. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1689. .x-nbr .x-btn-default-large-over .x-frame-tl,
  1690. .x-nbr .x-btn-default-large-over .x-frame-bl,
  1691. .x-nbr .x-btn-default-large-over .x-frame-tr,
  1692. .x-nbr .x-btn-default-large-over .x-frame-br,
  1693. .x-nbr .x-btn-default-large-over .x-frame-tc,
  1694. .x-nbr .x-btn-default-large-over .x-frame-bc {
  1695. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif'); }
  1696. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1697. .x-nbr .x-btn-default-large-over .x-frame-ml,
  1698. .x-nbr .x-btn-default-large-over .x-frame-mr {
  1699. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif'); }
  1700. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1701. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1702. background-color: #e4f3ff;
  1703. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1704. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1705. .x-nbr .x-btn-default-large-focus .x-frame-tl,
  1706. .x-nbr .x-btn-default-large-focus .x-frame-bl,
  1707. .x-nbr .x-btn-default-large-focus .x-frame-tr,
  1708. .x-nbr .x-btn-default-large-focus .x-frame-br,
  1709. .x-nbr .x-btn-default-large-focus .x-frame-tc,
  1710. .x-nbr .x-btn-default-large-focus .x-frame-bc {
  1711. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif'); }
  1712. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1713. .x-nbr .x-btn-default-large-focus .x-frame-ml,
  1714. .x-nbr .x-btn-default-large-focus .x-frame-mr {
  1715. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif'); }
  1716. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1717. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1718. background-color: #e4f3ff;
  1719. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1720. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1721. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
  1722. .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
  1723. .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
  1724. .x-nbr .x-btn-default-large-menu-active .x-frame-br,
  1725. .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
  1726. .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
  1727. .x-nbr .x-btn-default-large-pressed .x-frame-tl,
  1728. .x-nbr .x-btn-default-large-pressed .x-frame-bl,
  1729. .x-nbr .x-btn-default-large-pressed .x-frame-tr,
  1730. .x-nbr .x-btn-default-large-pressed .x-frame-br,
  1731. .x-nbr .x-btn-default-large-pressed .x-frame-tc,
  1732. .x-nbr .x-btn-default-large-pressed .x-frame-bc {
  1733. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif'); }
  1734. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1735. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
  1736. .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
  1737. .x-nbr .x-btn-default-large-pressed .x-frame-ml,
  1738. .x-nbr .x-btn-default-large-pressed .x-frame-mr {
  1739. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif'); }
  1740. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1741. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
  1742. .x-nbr .x-btn-default-large-pressed .x-frame-mc {
  1743. background-color: #b6cbe4;
  1744. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1745. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1746. .x-nbr .x-btn-default-large-disabled .x-frame-tl,
  1747. .x-nbr .x-btn-default-large-disabled .x-frame-bl,
  1748. .x-nbr .x-btn-default-large-disabled .x-frame-tr,
  1749. .x-nbr .x-btn-default-large-disabled .x-frame-br,
  1750. .x-nbr .x-btn-default-large-disabled .x-frame-tc,
  1751. .x-nbr .x-btn-default-large-disabled .x-frame-bc {
  1752. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif'); }
  1753. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1754. .x-nbr .x-btn-default-large-disabled .x-frame-ml,
  1755. .x-nbr .x-btn-default-large-disabled .x-frame-mr {
  1756. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif'); }
  1757. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1758. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1759. background-color: #f7f7f7;
  1760. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1761. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1762. .x-nlg .x-btn-default-large {
  1763. background-repeat: repeat-x;
  1764. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1765. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1766. .x-nlg .x-btn-default-large-over {
  1767. background-repeat: repeat-x;
  1768. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1769. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1770. .x-nlg .x-btn-default-large-focus {
  1771. background-repeat: repeat-x;
  1772. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1773. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1774. .x-nlg .x-btn-default-large-menu-active,
  1775. .x-nlg .x-btn-default-large-pressed {
  1776. background-repeat: repeat-x;
  1777. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1778. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1779. .x-nlg .x-btn-default-large-disabled {
  1780. background-repeat: repeat-x;
  1781. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1782. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1783. .x-btn-default-toolbar-small {
  1784. border-color: transparent; }
  1785. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1786. .x-btn-default-toolbar-small {
  1787. padding: 2px 2px 2px 2px;
  1788. border-width: 1px;
  1789. border-style: solid;
  1790. background-color: transparent; }
  1791. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1792. .x-nlg .x-btn-default-toolbar-small-mc {
  1793. background-color: transparent; }
  1794. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1795. .x-nbr .x-btn-default-toolbar-small {
  1796. padding: 0 !important;
  1797. border-width: 0 !important;
  1798. -webkit-border-radius: 0px;
  1799. -moz-border-radius: 0px;
  1800. -ms-border-radius: 0px;
  1801. -o-border-radius: 0px;
  1802. border-radius: 0px;
  1803. background-color: transparent;
  1804. background-position: 1100303px 1000303px; }
  1805. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1806. .x-nbr .x-btn-default-toolbar-small-tl,
  1807. .x-nbr .x-btn-default-toolbar-small-bl,
  1808. .x-nbr .x-btn-default-toolbar-small-tr,
  1809. .x-nbr .x-btn-default-toolbar-small-br,
  1810. .x-nbr .x-btn-default-toolbar-small-tc,
  1811. .x-nbr .x-btn-default-toolbar-small-bc,
  1812. .x-nbr .x-btn-default-toolbar-small-ml,
  1813. .x-nbr .x-btn-default-toolbar-small-mr {
  1814. zoom: 1; }
  1815. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1816. .x-nbr .x-btn-default-toolbar-small-ml,
  1817. .x-nbr .x-btn-default-toolbar-small-mr {
  1818. zoom: 1; }
  1819. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1820. .x-nbr .x-btn-default-toolbar-small-mc {
  1821. padding: 0px 0px 0px 0px; }
  1822. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1823. .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
  1824. .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  1825. position: relative;
  1826. right: 0; }
  1827. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1828. .x-btn-default-toolbar-small .x-btn-inner {
  1829. font-size: 11px;
  1830. font-weight: normal;
  1831. font-family: tahoma, arial, verdana, sans-serif;
  1832. color: #333333;
  1833. background-repeat: no-repeat;
  1834. padding: 0 4px; }
  1835. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1836. .x-btn-default-toolbar-small-icon button,
  1837. .x-btn-default-toolbar-small-icon a,
  1838. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1839. .x-btn-default-toolbar-small-noicon button,
  1840. .x-btn-default-toolbar-small-noicon a,
  1841. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1842. height: 16px;
  1843. line-height: 16px; }
  1844. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1845. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1846. padding: 0; }
  1847. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1848. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1849. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1850. width: 16px;
  1851. padding: 0; }
  1852. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1853. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1854. width: 16px;
  1855. height: 16px;
  1856. top: 0;
  1857. left: 0;
  1858. bottom: 0;
  1859. right: 0; }
  1860. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1861. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1862. height: 16px; }
  1863. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1864. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1865. height: 16px;
  1866. line-height: 16px;
  1867. padding-left: 20px; }
  1868. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1869. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1870. width: 16px;
  1871. height: auto;
  1872. top: 0;
  1873. left: 0;
  1874. bottom: 0;
  1875. right: auto; }
  1876. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1877. .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 {
  1878. height: 16px; }
  1879. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1880. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1881. height: 16px; }
  1882. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1883. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1884. height: 16px;
  1885. line-height: 16px;
  1886. padding-right: 20px !important; }
  1887. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1888. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1889. width: 16px;
  1890. height: auto;
  1891. top: 0;
  1892. left: auto;
  1893. bottom: 0;
  1894. right: 0; }
  1895. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1896. .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 {
  1897. height: 16px; }
  1898. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1899. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1900. padding-top: 20px; }
  1901. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1902. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1903. width: auto;
  1904. height: 16px;
  1905. top: 0;
  1906. left: 0;
  1907. bottom: auto;
  1908. right: 0; }
  1909. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1910. .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 {
  1911. width: 16px; }
  1912. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1913. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1914. padding-bottom: 20px; }
  1915. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1916. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1917. width: auto;
  1918. height: 16px;
  1919. top: auto;
  1920. left: 0;
  1921. bottom: 0;
  1922. right: 0; }
  1923. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1924. .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 {
  1925. width: 16px; }
  1926. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1927. .x-btn-default-toolbar-small-over {
  1928. border-color: #81a4d0;
  1929. background-image: none;
  1930. background-color: #dbeeff;
  1931. 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));
  1932. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1933. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1934. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1935. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1936. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1937. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1938. .x-btn-default-toolbar-small-focus {
  1939. border-color: #81a4d0;
  1940. background-image: none;
  1941. background-color: #dbeeff;
  1942. 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));
  1943. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1944. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1945. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1946. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1947. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1948. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1949. .x-btn-default-toolbar-small-menu-active,
  1950. .x-btn-default-toolbar-small-pressed {
  1951. border-color: #7a9ac4;
  1952. background-image: none;
  1953. background-color: #bccfe5;
  1954. 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));
  1955. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1956. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1957. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1958. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1959. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1960. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1961. .x-btn-default-toolbar-small-disabled {
  1962. background-image: none;
  1963. background-color: transparent; }
  1964. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1965. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1966. color: #333333 !important; }
  1967. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1968. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1969. color: #595959 !important; }
  1970. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1971. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1972. color: #8c8c8c !important; }
  1973. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1974. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
  1975. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
  1976. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
  1977. .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
  1978. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
  1979. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
  1980. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif'); }
  1981. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1982. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
  1983. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
  1984. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif'); }
  1985. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1986. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  1987. background-color: #dbeeff;
  1988. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1989. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1990. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
  1991. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
  1992. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
  1993. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
  1994. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
  1995. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
  1996. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif'); }
  1997. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1998. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
  1999. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
  2000. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif'); }
  2001. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2002. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  2003. background-color: #dbeeff;
  2004. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2005. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2006. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
  2007. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
  2008. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
  2009. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
  2010. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
  2011. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
  2012. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
  2013. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
  2014. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
  2015. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
  2016. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
  2017. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
  2018. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif'); }
  2019. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2020. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
  2021. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
  2022. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
  2023. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
  2024. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif'); }
  2025. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2026. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
  2027. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
  2028. background-color: #bccfe5;
  2029. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2030. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2031. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
  2032. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
  2033. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
  2034. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
  2035. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
  2036. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
  2037. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif'); }
  2038. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2039. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
  2040. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
  2041. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif'); }
  2042. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2043. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  2044. background-color: transparent; }
  2045. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2046. .x-nlg .x-btn-default-toolbar-small-over {
  2047. background-repeat: repeat-x;
  2048. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  2049. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2050. .x-nlg .x-btn-default-toolbar-small-focus {
  2051. background-repeat: repeat-x;
  2052. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2053. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2054. .x-nlg .x-btn-default-toolbar-small-menu-active,
  2055. .x-nlg .x-btn-default-toolbar-small-pressed {
  2056. background-repeat: repeat-x;
  2057. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2058. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2059. .x-btn-default-toolbar-medium {
  2060. border-color: transparent; }
  2061. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2062. .x-btn-default-toolbar-medium {
  2063. padding: 3px 3px 3px 3px;
  2064. border-width: 1px;
  2065. border-style: solid;
  2066. background-color: transparent; }
  2067. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2068. .x-nlg .x-btn-default-toolbar-medium-mc {
  2069. background-color: transparent; }
  2070. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2071. .x-nbr .x-btn-default-toolbar-medium {
  2072. padding: 0 !important;
  2073. border-width: 0 !important;
  2074. -webkit-border-radius: 0px;
  2075. -moz-border-radius: 0px;
  2076. -ms-border-radius: 0px;
  2077. -o-border-radius: 0px;
  2078. border-radius: 0px;
  2079. background-color: transparent;
  2080. background-position: 1100303px 1000303px; }
  2081. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2082. .x-nbr .x-btn-default-toolbar-medium-tl,
  2083. .x-nbr .x-btn-default-toolbar-medium-bl,
  2084. .x-nbr .x-btn-default-toolbar-medium-tr,
  2085. .x-nbr .x-btn-default-toolbar-medium-br,
  2086. .x-nbr .x-btn-default-toolbar-medium-tc,
  2087. .x-nbr .x-btn-default-toolbar-medium-bc,
  2088. .x-nbr .x-btn-default-toolbar-medium-ml,
  2089. .x-nbr .x-btn-default-toolbar-medium-mr {
  2090. zoom: 1; }
  2091. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2092. .x-nbr .x-btn-default-toolbar-medium-ml,
  2093. .x-nbr .x-btn-default-toolbar-medium-mr {
  2094. zoom: 1; }
  2095. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2096. .x-nbr .x-btn-default-toolbar-medium-mc {
  2097. padding: 1px 1px 1px 1px; }
  2098. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2099. .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
  2100. .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  2101. position: relative;
  2102. right: 0; }
  2103. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2104. .x-btn-default-toolbar-medium .x-btn-inner {
  2105. font-size: 11px;
  2106. font-weight: normal;
  2107. font-family: tahoma, arial, verdana, sans-serif;
  2108. color: #333333;
  2109. background-repeat: no-repeat;
  2110. padding: 0 3px; }
  2111. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2112. .x-btn-default-toolbar-medium-icon button,
  2113. .x-btn-default-toolbar-medium-icon a,
  2114. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  2115. .x-btn-default-toolbar-medium-noicon button,
  2116. .x-btn-default-toolbar-medium-noicon a,
  2117. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  2118. height: 24px;
  2119. line-height: 24px; }
  2120. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2121. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  2122. padding: 0; }
  2123. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2124. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  2125. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2126. width: 24px;
  2127. padding: 0; }
  2128. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2129. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  2130. width: 24px;
  2131. height: 24px;
  2132. top: 0;
  2133. left: 0;
  2134. bottom: 0;
  2135. right: 0; }
  2136. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2137. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  2138. height: 24px; }
  2139. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2140. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  2141. height: 24px;
  2142. line-height: 24px;
  2143. padding-left: 28px; }
  2144. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2145. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2146. width: 24px;
  2147. height: auto;
  2148. top: 0;
  2149. left: 0;
  2150. bottom: 0;
  2151. right: auto; }
  2152. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2153. .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 {
  2154. height: 24px; }
  2155. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2156. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  2157. height: 24px; }
  2158. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2159. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  2160. height: 24px;
  2161. line-height: 24px;
  2162. padding-right: 28px !important; }
  2163. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2164. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2165. width: 24px;
  2166. height: auto;
  2167. top: 0;
  2168. left: auto;
  2169. bottom: 0;
  2170. right: 0; }
  2171. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2172. .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 {
  2173. height: 24px; }
  2174. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2175. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  2176. padding-top: 28px; }
  2177. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2178. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2179. width: auto;
  2180. height: 24px;
  2181. top: 0;
  2182. left: 0;
  2183. bottom: auto;
  2184. right: 0; }
  2185. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2186. .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 {
  2187. width: 24px; }
  2188. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2189. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  2190. padding-bottom: 28px; }
  2191. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2192. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2193. width: auto;
  2194. height: 24px;
  2195. top: auto;
  2196. left: 0;
  2197. bottom: 0;
  2198. right: 0; }
  2199. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2200. .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 {
  2201. width: 24px; }
  2202. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2203. .x-btn-default-toolbar-medium-over {
  2204. border-color: #81a4d0;
  2205. background-image: none;
  2206. background-color: #dbeeff;
  2207. 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));
  2208. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2209. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2210. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2211. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2212. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2213. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2214. .x-btn-default-toolbar-medium-focus {
  2215. border-color: #81a4d0;
  2216. background-image: none;
  2217. background-color: #dbeeff;
  2218. 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));
  2219. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2220. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2221. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2222. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2223. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2224. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2225. .x-btn-default-toolbar-medium-menu-active,
  2226. .x-btn-default-toolbar-medium-pressed {
  2227. border-color: #7a9ac4;
  2228. background-image: none;
  2229. background-color: #bccfe5;
  2230. 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));
  2231. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2232. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2233. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2234. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2235. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2236. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2237. .x-btn-default-toolbar-medium-disabled {
  2238. background-image: none;
  2239. background-color: transparent; }
  2240. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2241. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2242. color: #333333 !important; }
  2243. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2244. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2245. color: #595959 !important; }
  2246. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2247. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2248. color: #8c8c8c !important; }
  2249. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2250. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
  2251. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
  2252. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
  2253. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
  2254. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
  2255. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
  2256. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif'); }
  2257. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2258. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
  2259. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
  2260. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif'); }
  2261. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2262. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  2263. background-color: #dbeeff;
  2264. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2265. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2266. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
  2267. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
  2268. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
  2269. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
  2270. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
  2271. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
  2272. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif'); }
  2273. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2274. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
  2275. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
  2276. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif'); }
  2277. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2278. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  2279. background-color: #dbeeff;
  2280. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2281. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2282. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
  2283. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
  2284. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
  2285. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
  2286. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
  2287. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
  2288. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
  2289. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
  2290. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
  2291. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
  2292. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
  2293. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  2294. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
  2295. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2296. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
  2297. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
  2298. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
  2299. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  2300. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
  2301. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2302. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
  2303. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  2304. background-color: #bccfe5;
  2305. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2306. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2307. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
  2308. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
  2309. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
  2310. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
  2311. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
  2312. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  2313. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
  2314. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2315. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
  2316. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  2317. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
  2318. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2319. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  2320. background-color: transparent; }
  2321. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2322. .x-nlg .x-btn-default-toolbar-medium-over {
  2323. background-repeat: repeat-x;
  2324. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2325. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2326. .x-nlg .x-btn-default-toolbar-medium-focus {
  2327. background-repeat: repeat-x;
  2328. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2329. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2330. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  2331. .x-nlg .x-btn-default-toolbar-medium-pressed {
  2332. background-repeat: repeat-x;
  2333. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2334. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2335. .x-btn-default-toolbar-large {
  2336. border-color: transparent; }
  2337. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2338. .x-btn-default-toolbar-large {
  2339. padding: 3px 3px 3px 3px;
  2340. border-width: 1px;
  2341. border-style: solid;
  2342. background-color: transparent; }
  2343. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2344. .x-nlg .x-btn-default-toolbar-large-mc {
  2345. background-color: transparent; }
  2346. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2347. .x-nbr .x-btn-default-toolbar-large {
  2348. padding: 0 !important;
  2349. border-width: 0 !important;
  2350. -webkit-border-radius: 0px;
  2351. -moz-border-radius: 0px;
  2352. -ms-border-radius: 0px;
  2353. -o-border-radius: 0px;
  2354. border-radius: 0px;
  2355. background-color: transparent;
  2356. background-position: 1100303px 1000303px; }
  2357. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2358. .x-nbr .x-btn-default-toolbar-large-tl,
  2359. .x-nbr .x-btn-default-toolbar-large-bl,
  2360. .x-nbr .x-btn-default-toolbar-large-tr,
  2361. .x-nbr .x-btn-default-toolbar-large-br,
  2362. .x-nbr .x-btn-default-toolbar-large-tc,
  2363. .x-nbr .x-btn-default-toolbar-large-bc,
  2364. .x-nbr .x-btn-default-toolbar-large-ml,
  2365. .x-nbr .x-btn-default-toolbar-large-mr {
  2366. zoom: 1; }
  2367. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2368. .x-nbr .x-btn-default-toolbar-large-ml,
  2369. .x-nbr .x-btn-default-toolbar-large-mr {
  2370. zoom: 1; }
  2371. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2372. .x-nbr .x-btn-default-toolbar-large-mc {
  2373. padding: 1px 1px 1px 1px; }
  2374. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2375. .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
  2376. .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  2377. position: relative;
  2378. right: 0; }
  2379. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2380. .x-btn-default-toolbar-large .x-btn-inner {
  2381. font-size: 11px;
  2382. font-weight: normal;
  2383. font-family: tahoma, arial, verdana, sans-serif;
  2384. color: #333333;
  2385. background-repeat: no-repeat;
  2386. padding: 0 3px; }
  2387. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2388. .x-btn-default-toolbar-large-icon button,
  2389. .x-btn-default-toolbar-large-icon a,
  2390. .x-btn-default-toolbar-large-icon .x-btn-inner,
  2391. .x-btn-default-toolbar-large-noicon button,
  2392. .x-btn-default-toolbar-large-noicon a,
  2393. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  2394. height: 32px;
  2395. line-height: 32px; }
  2396. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2397. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  2398. padding: 0; }
  2399. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2400. .x-btn-default-toolbar-large-icon .x-btn-inner {
  2401. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2402. width: 32px;
  2403. padding: 0; }
  2404. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2405. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2406. width: 32px;
  2407. height: 32px;
  2408. top: 0;
  2409. left: 0;
  2410. bottom: 0;
  2411. right: 0; }
  2412. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2413. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  2414. height: 32px; }
  2415. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2416. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2417. height: 32px;
  2418. line-height: 32px;
  2419. padding-left: 36px; }
  2420. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2421. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2422. width: 32px;
  2423. height: auto;
  2424. top: 0;
  2425. left: 0;
  2426. bottom: 0;
  2427. right: auto; }
  2428. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2429. .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 {
  2430. height: 32px; }
  2431. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2432. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  2433. height: 32px; }
  2434. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2435. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2436. height: 32px;
  2437. line-height: 32px;
  2438. padding-right: 36px !important; }
  2439. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2440. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2441. width: 32px;
  2442. height: auto;
  2443. top: 0;
  2444. left: auto;
  2445. bottom: 0;
  2446. right: 0; }
  2447. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2448. .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 {
  2449. height: 32px; }
  2450. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2451. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2452. padding-top: 36px; }
  2453. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2454. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2455. width: auto;
  2456. height: 32px;
  2457. top: 0;
  2458. left: 0;
  2459. bottom: auto;
  2460. right: 0; }
  2461. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2462. .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 {
  2463. width: 32px; }
  2464. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2465. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2466. padding-bottom: 36px; }
  2467. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2468. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2469. width: auto;
  2470. height: 32px;
  2471. top: auto;
  2472. left: 0;
  2473. bottom: 0;
  2474. right: 0; }
  2475. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2476. .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 {
  2477. width: 32px; }
  2478. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2479. .x-btn-default-toolbar-large-over {
  2480. border-color: #81a4d0;
  2481. background-image: none;
  2482. background-color: #dbeeff;
  2483. 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));
  2484. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2485. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2486. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2487. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2488. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2489. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2490. .x-btn-default-toolbar-large-focus {
  2491. border-color: #81a4d0;
  2492. background-image: none;
  2493. background-color: #dbeeff;
  2494. 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));
  2495. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2496. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2497. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2498. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2499. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2500. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2501. .x-btn-default-toolbar-large-menu-active,
  2502. .x-btn-default-toolbar-large-pressed {
  2503. border-color: #7a9ac4;
  2504. background-image: none;
  2505. background-color: #bccfe5;
  2506. 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));
  2507. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2508. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2509. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2510. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2511. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2512. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2513. .x-btn-default-toolbar-large-disabled {
  2514. background-image: none;
  2515. background-color: transparent; }
  2516. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2517. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2518. color: #333333 !important; }
  2519. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2520. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2521. color: #595959 !important; }
  2522. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2523. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2524. color: #8c8c8c !important; }
  2525. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2526. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
  2527. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
  2528. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
  2529. .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
  2530. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
  2531. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
  2532. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif'); }
  2533. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2534. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
  2535. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
  2536. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif'); }
  2537. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2538. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2539. background-color: #dbeeff;
  2540. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2541. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2542. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
  2543. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
  2544. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
  2545. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
  2546. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
  2547. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
  2548. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif'); }
  2549. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2550. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
  2551. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
  2552. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif'); }
  2553. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2554. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2555. background-color: #dbeeff;
  2556. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2557. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2558. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
  2559. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
  2560. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
  2561. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
  2562. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
  2563. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
  2564. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
  2565. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
  2566. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
  2567. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
  2568. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
  2569. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
  2570. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif'); }
  2571. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2572. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
  2573. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
  2574. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
  2575. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
  2576. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif'); }
  2577. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2578. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
  2579. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
  2580. background-color: #bccfe5;
  2581. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2582. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2583. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
  2584. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
  2585. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
  2586. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
  2587. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
  2588. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
  2589. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif'); }
  2590. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2591. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
  2592. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
  2593. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif'); }
  2594. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2595. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2596. background-color: transparent; }
  2597. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2598. .x-nlg .x-btn-default-toolbar-large-over {
  2599. background-repeat: repeat-x;
  2600. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2601. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2602. .x-nlg .x-btn-default-toolbar-large-focus {
  2603. background-repeat: repeat-x;
  2604. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2605. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2606. .x-nlg .x-btn-default-toolbar-large-menu-active,
  2607. .x-nlg .x-btn-default-toolbar-large-pressed {
  2608. background-repeat: repeat-x;
  2609. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2610. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2611. .x-btn-default-toolbar-small-disabled,
  2612. .x-btn-default-toolbar-medium-disabled,
  2613. .x-btn-default-toolbar-large-disabled {
  2614. border-color: transparent;
  2615. background-image: none;
  2616. background: transparent; }
  2617. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2618. .x-btn-group {
  2619. position: relative;
  2620. overflow: hidden; }
  2621. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2622. .x-btn-group-body {
  2623. position: relative;
  2624. zoom: 1;
  2625. padding: 0 1px; }
  2626. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2627. .x-btn-group-body .x-table-layout-cell {
  2628. vertical-align: top; }
  2629. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2630. .x-btn-group-header-text {
  2631. white-space: nowrap; }
  2632. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2633. .x-btn-group-default-framed {
  2634. padding: 1px 1px 1px 1px;
  2635. border-width: 1px;
  2636. border-style: solid;
  2637. background-color: #d0def0; }
  2638. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2639. .x-nlg .x-btn-group-default-framed-mc {
  2640. background-color: #d0def0; }
  2641. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2642. .x-nbr .x-btn-group-default-framed {
  2643. padding: 0 !important;
  2644. border-width: 0 !important;
  2645. -webkit-border-radius: 0px;
  2646. -moz-border-radius: 0px;
  2647. -ms-border-radius: 0px;
  2648. -o-border-radius: 0px;
  2649. border-radius: 0px;
  2650. background-color: transparent;
  2651. background-position: 1000202px 1000202px; }
  2652. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2653. .x-nbr .x-btn-group-default-framed-tl,
  2654. .x-nbr .x-btn-group-default-framed-bl,
  2655. .x-nbr .x-btn-group-default-framed-tr,
  2656. .x-nbr .x-btn-group-default-framed-br,
  2657. .x-nbr .x-btn-group-default-framed-tc,
  2658. .x-nbr .x-btn-group-default-framed-bc,
  2659. .x-nbr .x-btn-group-default-framed-ml,
  2660. .x-nbr .x-btn-group-default-framed-mr {
  2661. zoom: 1;
  2662. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif'); }
  2663. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2664. .x-nbr .x-btn-group-default-framed-ml,
  2665. .x-nbr .x-btn-group-default-framed-mr {
  2666. zoom: 1;
  2667. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
  2668. background-position: 0 0;
  2669. background-repeat: repeat-y; }
  2670. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2671. .x-nbr .x-btn-group-default-framed-mc {
  2672. padding: 0px 0px 0px 0px; }
  2673. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2674. .x-strict .x-ie7 .x-btn-group-default-framed-tl,
  2675. .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  2676. position: relative;
  2677. right: 0; }
  2678. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2679. .x-btn-group-default-framed {
  2680. border-color: #b7c8d7;
  2681. -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;
  2682. -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;
  2683. 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; }
  2684. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2685. .x-btn-group-header-default-framed {
  2686. margin: 2px 2px 0 2px; }
  2687. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2688. .x-btn-group-header-body-default-framed {
  2689. padding: 1px 0;
  2690. background: #c2d8f0;
  2691. -moz-border-radius-topleft: 2px;
  2692. -webkit-border-top-left-radius: 2px;
  2693. -ms-border-top-left-radius: 2px;
  2694. -o-border-top-left-radius: 2px;
  2695. border-top-left-radius: 2px;
  2696. -moz-border-radius-topright: 2px;
  2697. -webkit-border-top-right-radius: 2px;
  2698. -ms-border-top-right-radius: 2px;
  2699. -o-border-top-right-radius: 2px;
  2700. border-top-right-radius: 2px; }
  2701. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2702. .x-btn-group-header-text-default-framed {
  2703. font: normal 11px tahoma, arial, verdana, sans-serif;
  2704. color: #3e6aaa; }
  2705. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2706. .x-datepicker {
  2707. border: 1px solid #1b376c;
  2708. background-color: white;
  2709. position: relative; }
  2710. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2711. .x-datepicker a {
  2712. -moz-outline: 0 none;
  2713. outline: 0 none;
  2714. color: #15428b;
  2715. text-decoration: none;
  2716. border-width: 0; }
  2717. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2718. .x-datepicker-inner,
  2719. .x-datepicker-inner td,
  2720. .x-datepicker-inner th {
  2721. border-collapse: separate; }
  2722. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2723. .x-datepicker-header {
  2724. position: relative;
  2725. height: 26px;
  2726. background-image: none;
  2727. background-color: #23427c;
  2728. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  2729. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2730. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2731. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2732. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2733. background-image: linear-gradient(top, #264888, #1f3a6c); }
  2734. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2735. .x-datepicker-prev,
  2736. .x-datepicker-next {
  2737. position: absolute;
  2738. top: 5px;
  2739. width: 18px; }
  2740. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2741. .x-datepicker-prev a,
  2742. .x-datepicker-next a {
  2743. display: block;
  2744. width: 16px;
  2745. height: 16px;
  2746. background-position: top;
  2747. background-repeat: no-repeat;
  2748. cursor: pointer;
  2749. text-decoration: none !important;
  2750. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2751. opacity: 0.7; }
  2752. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2753. .x-datepicker-prev a:hover,
  2754. .x-datepicker-next a:hover {
  2755. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2756. opacity: 1; }
  2757. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2758. .x-datepicker-next {
  2759. right: 5px; }
  2760. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2761. .x-datepicker-next a {
  2762. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  2763. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2764. .x-datepicker-prev {
  2765. left: 5px; }
  2766. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2767. .x-datepicker-prev a {
  2768. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  2769. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2770. .x-item-disabled .x-datepicker-prev a:hover,
  2771. .x-item-disabled .x-datepicker-next a:hover {
  2772. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2773. opacity: 0.6; }
  2774. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2775. .x-datepicker-month {
  2776. padding-top: 3px; }
  2777. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2778. .x-datepicker-month .x-btn,
  2779. .x-datepicker-month button,
  2780. .x-datepicker-month .x-btn-tc,
  2781. .x-datepicker-month .x-btn-tl,
  2782. .x-datepicker-month .x-btn-tr,
  2783. .x-datepicker-month .x-btn-mc,
  2784. .x-datepicker-month .x-btn-ml,
  2785. .x-datepicker-month .x-btn-mr,
  2786. .x-datepicker-month .x-btn-bc,
  2787. .x-datepicker-month .x-btn-bl,
  2788. .x-datepicker-month .x-btn-br {
  2789. background: transparent !important;
  2790. border-width: 0 !important; }
  2791. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2792. .x-datepicker-month span {
  2793. color: #fff !important; }
  2794. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2795. .x-datepicker-month .x-btn-split-right {
  2796. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2797. padding-right: 12px; }
  2798. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2799. .x-datepicker-next {
  2800. text-align: right; }
  2801. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2802. .x-datepicker-month {
  2803. text-align: center; }
  2804. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2805. .x-datepicker-month button {
  2806. color: white !important; }
  2807. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2808. table.x-datepicker-inner {
  2809. width: 100%;
  2810. table-layout: fixed; }
  2811. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2812. table.x-datepicker-inner th {
  2813. width: 25px;
  2814. height: 19px;
  2815. padding: 0;
  2816. color: #233d6d;
  2817. font: normal 10px tahoma, arial, verdana, sans-serif;
  2818. text-align: right;
  2819. border-bottom: 1px solid #b2d1f5;
  2820. border-collapse: separate;
  2821. background-image: none;
  2822. background-color: #dfecfb;
  2823. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  2824. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2825. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2826. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2827. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2828. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2829. cursor: default; }
  2830. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2831. table.x-datepicker-inner th span {
  2832. display: block;
  2833. padding-right: 7px; }
  2834. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2835. table.x-datepicker-inner tr {
  2836. height: 20px; }
  2837. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2838. table.x-datepicker-inner td {
  2839. border: 1px solid;
  2840. height: 17px;
  2841. border-color: white;
  2842. text-align: right;
  2843. padding: 0; }
  2844. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2845. table.x-datepicker-inner a {
  2846. padding-right: 4px;
  2847. display: block;
  2848. zoom: 1;
  2849. font: normal 11px tahoma, arial, verdana, sans-serif;
  2850. color: black;
  2851. text-decoration: none;
  2852. text-align: right; }
  2853. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2854. table.x-datepicker-inner .x-datepicker-active {
  2855. cursor: pointer;
  2856. color: black; }
  2857. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2858. table.x-datepicker-inner .x-datepicker-selected a {
  2859. background: repeat-x left top;
  2860. background-color: #dae5f3;
  2861. border: 1px solid #8db2e3; }
  2862. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2863. table.x-datepicker-inner .x-datepicker-selected span {
  2864. font-weight: bold; }
  2865. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2866. table.x-datepicker-inner .x-datepicker-today a {
  2867. border: 1px solid;
  2868. border-color: darkred; }
  2869. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2870. table.x-datepicker-inner .x-datepicker-prevday a,
  2871. table.x-datepicker-inner .x-datepicker-nextday a {
  2872. text-decoration: none !important;
  2873. color: #aaa; }
  2874. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2875. table.x-datepicker-inner a:hover,
  2876. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2877. text-decoration: none !important;
  2878. color: #000;
  2879. background-color: #ddecfe; }
  2880. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2881. table.x-datepicker-inner .x-datepicker-disabled a {
  2882. cursor: default;
  2883. background-color: #eee;
  2884. color: #bbb; }
  2885. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2886. .x-datepicker-footer,
  2887. .x-monthpicker-buttons {
  2888. position: relative;
  2889. border-top: 1px solid #b2d1f5;
  2890. background-image: none;
  2891. background-color: #dfecfb;
  2892. 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));
  2893. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2894. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2895. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2896. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2897. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2898. text-align: center; }
  2899. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2900. .x-datepicker-footer .x-btn,
  2901. .x-monthpicker-buttons .x-btn {
  2902. position: relative;
  2903. margin: 4px; }
  2904. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2905. .x-item-disabled .x-datepicker-inner a:hover {
  2906. background: none; }
  2907. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2908. .x-datepicker .x-monthpicker {
  2909. position: absolute;
  2910. left: 0;
  2911. top: 0; }
  2912. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2913. .x-monthpicker {
  2914. border: 1px solid #1b376c;
  2915. background-color: white; }
  2916. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2917. .x-monthpicker-months,
  2918. .x-monthpicker-years {
  2919. float: left;
  2920. height: 167px;
  2921. width: 88px; }
  2922. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2923. .x-monthpicker-item {
  2924. float: left;
  2925. margin: 4px 0 5px 0;
  2926. font: normal 11px tahoma, arial, verdana, sans-serif;
  2927. text-align: center;
  2928. vertical-align: middle;
  2929. height: 18px;
  2930. width: 43px;
  2931. border: 0 none; }
  2932. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2933. .x-monthpicker-item a {
  2934. display: block;
  2935. margin: 0 5px;
  2936. text-decoration: none;
  2937. color: #15428b;
  2938. border: 1px solid white;
  2939. line-height: 17px; }
  2940. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2941. .x-monthpicker-item a:hover {
  2942. background-color: #ddecfe; }
  2943. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2944. .x-monthpicker-item a.x-monthpicker-selected {
  2945. background-color: #dfecfb;
  2946. border: 1px solid #8db2e3; }
  2947. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2948. .x-monthpicker-months {
  2949. border-right: 1px solid #1b376c;
  2950. width: 87px; }
  2951. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2952. .x-monthpicker-years .x-monthpicker-item {
  2953. width: 44px; }
  2954. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2955. .x-monthpicker-yearnav {
  2956. height: 28px; }
  2957. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2958. .x-monthpicker-yearnav button {
  2959. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2960. height: 15px;
  2961. width: 15px;
  2962. padding: 0;
  2963. margin: 6px 12px 5px 15px;
  2964. border: 0;
  2965. outline: 0 none; }
  2966. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2967. .x-monthpicker-yearnav button::-moz-focus-inner {
  2968. border: 0;
  2969. padding: 0; }
  2970. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2971. .x-monthpicker-yearnav-next {
  2972. background-position: 0 -120px; }
  2973. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2974. .x-monthpicker-yearnav-next-over {
  2975. cursor: pointer;
  2976. cursor: hand;
  2977. background-position: -15px -120px; }
  2978. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2979. .x-monthpicker-yearnav-prev {
  2980. background-position: 0 -105px; }
  2981. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2982. .x-monthpicker-yearnav-prev-over {
  2983. cursor: pointer;
  2984. cursor: hand;
  2985. background-position: -15px -105px; }
  2986. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2987. .x-monthpicker-small .x-monthpicker-item {
  2988. margin: 2px 0 2px 0; }
  2989. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2990. .x-monthpicker-small .x-monthpicker-yearnav {
  2991. height: 23px; }
  2992. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2993. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  2994. height: 136px; }
  2995. /* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2996. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
  2997. .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
  2998. margin-top: 2px; }
  2999. /* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3000. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  3001. margin-top: 3px;
  3002. margin-bottom: 3px; }
  3003. /* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3004. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  3005. margin-top: 3px;
  3006. margin-bottom: 3px; }
  3007. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3008. .x-nlg .x-datepicker-header {
  3009. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  3010. background-repeat: repeat-x;
  3011. background-position: top left; }
  3012. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3013. .x-nlg .x-datepicker-footer,
  3014. .x-nlg .x-monthpicker-buttons {
  3015. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  3016. background-repeat: repeat-x;
  3017. background-position: top left; }
  3018. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3019. .x-color-picker {
  3020. width: 144px;
  3021. height: 90px;
  3022. cursor: pointer; }
  3023. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3024. .x-color-picker a {
  3025. border: 1px solid #fff;
  3026. float: left;
  3027. padding: 2px;
  3028. text-decoration: none;
  3029. -moz-outline: 0 none;
  3030. outline: 0 none;
  3031. cursor: pointer; }
  3032. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3033. .x-color-picker a:hover,
  3034. .x-color-picker a.x-color-picker-selected {
  3035. border-color: #8bb8f3;
  3036. background-color: #deecfd; }
  3037. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3038. .x-color-picker em {
  3039. display: block;
  3040. border: 1px solid #aca899; }
  3041. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3042. .x-color-picker em span {
  3043. cursor: pointer;
  3044. display: block;
  3045. height: 10px;
  3046. width: 10px;
  3047. line-height: 10px; }
  3048. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3049. .x-menu-body {
  3050. user-select: none;
  3051. -o-user-select: none;
  3052. -ms-user-select: none;
  3053. -moz-user-select: -moz-none;
  3054. -webkit-user-select: none;
  3055. cursor: default;
  3056. background: #f0f0f0 !important;
  3057. padding: 2px; }
  3058. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3059. .x-menu-item .x-form-text {
  3060. user-select: text;
  3061. -webkit-user-select: text;
  3062. -o-user-select: text;
  3063. -ie-user-select: text;
  3064. -moz-user-select: text;
  3065. -ie-user-select: text; }
  3066. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3067. .x-menu-icon-separator {
  3068. position: absolute;
  3069. top: 0px;
  3070. left: 27px;
  3071. z-index: 0;
  3072. border-left: solid 1px #e0e0e0;
  3073. background-color: white;
  3074. width: 2px;
  3075. overflow: hidden; }
  3076. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3077. .x-menu-plain .x-menu-icon-separator {
  3078. display: none; }
  3079. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3080. .x-menu-focus {
  3081. display: block;
  3082. position: absolute;
  3083. top: -10px;
  3084. left: -10px;
  3085. width: 0px;
  3086. height: 0px; }
  3087. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3088. .x-menu-item {
  3089. white-space: nowrap;
  3090. overflow: hidden;
  3091. z-index: 1; }
  3092. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3093. .x-menu-item-cmp {
  3094. margin-bottom: 1px; }
  3095. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3096. .x-menu-item-link {
  3097. display: block;
  3098. margin: 1px;
  3099. padding: 6px 2px 3px 32px;
  3100. text-decoration: none !important;
  3101. line-height: 16px;
  3102. cursor: default; }
  3103. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3104. .x-menu-item-icon {
  3105. width: 16px;
  3106. height: 16px;
  3107. position: absolute;
  3108. top: 5px;
  3109. left: 4px;
  3110. background: no-repeat center center; }
  3111. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3112. .x-menu-item-icon-right {
  3113. width: 16px;
  3114. height: 16px;
  3115. position: absolute;
  3116. top: 6px;
  3117. right: 4px;
  3118. background: no-repeat center center; }
  3119. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3120. .x-menu-item-text {
  3121. font-size: 11px;
  3122. color: #222222; }
  3123. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3124. .x-menu-item-checked .x-menu-item-icon {
  3125. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  3126. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3127. .x-menu-item-checked .x-menu-group-icon {
  3128. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  3129. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3130. .x-menu-item-unchecked .x-menu-item-icon {
  3131. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  3132. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3133. .x-menu-item-unchecked .x-menu-group-icon {
  3134. background-image: none; }
  3135. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3136. .x-menu-item-separator {
  3137. height: 2px;
  3138. border-top: solid 1px #e0e0e0;
  3139. background-color: white;
  3140. margin: 2px 0px;
  3141. overflow: hidden; }
  3142. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3143. .x-menu-item-arrow {
  3144. position: absolute;
  3145. width: 12px;
  3146. height: 9px;
  3147. top: 9px;
  3148. right: 0px;
  3149. background: no-repeat center center;
  3150. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  3151. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3152. .x-menu-item-indent {
  3153. margin-left: 31px;
  3154. /* The 2px is the width of the seperator */ }
  3155. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3156. .x-menu-item-active {
  3157. cursor: pointer; }
  3158. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3159. .x-menu-item-active .x-menu-item-link {
  3160. background-image: none;
  3161. background-color: #d9e8fb;
  3162. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  3163. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  3164. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  3165. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  3166. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  3167. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  3168. margin: 0px;
  3169. border: 1px solid #a9cbf5;
  3170. cursor: pointer;
  3171. -webkit-border-radius: 3px;
  3172. -moz-border-radius: 3px;
  3173. -ms-border-radius: 3px;
  3174. -o-border-radius: 3px;
  3175. border-radius: 3px; }
  3176. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3177. .x-menu-item-disabled {
  3178. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3179. opacity: 0.5; }
  3180. /* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3181. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  3182. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3183. opacity: 0.5; }
  3184. /* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3185. .x-ie .x-menu-item-disabled .x-menu-item-text {
  3186. background-color: transparent; }
  3187. /* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3188. .x-strict .x-ie7m .x-ie .x-menu-icon-separator {
  3189. width: 1px; }
  3190. /* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3191. .x-strict .x-ie7m .x-ie .x-menu-item-separator {
  3192. height: 1px; }
  3193. /* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3194. .x-ie6 .x-menu-item-link,
  3195. .x-ie7 .x-menu-item-link,
  3196. .x-quirks .x-ie8 .x-menu-item-link {
  3197. padding-bottom: 2px; }
  3198. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3199. .x-nlg .x-menu-item-active .x-menu-item-link {
  3200. background: #d9e8fb repeat-x left top;
  3201. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  3202. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3203. .x-menu-date-item {
  3204. border-color: #99BBE8; }
  3205. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3206. .x-panel .x-grid-body {
  3207. background: white;
  3208. border-color: #99bce8;
  3209. border-style: solid;
  3210. border-width: 1px;
  3211. border-top-color: #c5c5c5; }
  3212. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3213. .x-panel .x-grid-header-ct-hidden {
  3214. visibility: hidden; }
  3215. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3216. .x-grid-empty {
  3217. padding: 10px;
  3218. color: gray;
  3219. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  3220. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3221. .x-grid-header-hidden .x-grid-body {
  3222. border-top-color: #99bce8 !important; }
  3223. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3224. .x-grid-view {
  3225. overflow: hidden;
  3226. position: relative; }
  3227. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3228. .x-grid-table {
  3229. table-layout: fixed;
  3230. border-collapse: separate; }
  3231. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3232. .x-autowidth-table table.x-grid-table {
  3233. table-layout: auto;
  3234. width: auto!important; }
  3235. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3236. .x-grid-row .x-grid-table {
  3237. border-collapse: collapse; }
  3238. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3239. .x-grid-locked .x-grid-inner-locked {
  3240. border-width: 0 1px 0 0 !important;
  3241. border-style: solid; }
  3242. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3243. .x-grid-header-ct {
  3244. cursor: default;
  3245. zoom: 1;
  3246. padding: 0;
  3247. border: 1px solid #99bce8;
  3248. border-bottom-color: #c5c5c5; }
  3249. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3250. .x-accordion-item .x-grid-header-ct {
  3251. border-width: 0 0 1px 0!important; }
  3252. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3253. .x-column-header {
  3254. padding: 0;
  3255. position: absolute;
  3256. overflow: hidden;
  3257. border-right: 1px solid #c5c5c5;
  3258. border-left: 0 none;
  3259. border-top: 0 none;
  3260. border-bottom: 0 none;
  3261. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  3262. color: null;
  3263. font: normal 11px tahoma, arial, verdana, sans-serif; }
  3264. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3265. .x-group-header {
  3266. padding: 0;
  3267. border-left-width: 0; }
  3268. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3269. .x-group-sub-header {
  3270. background: transparent;
  3271. border-top: 1px solid #c5c5c5;
  3272. border-left-width: 0; }
  3273. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3274. .x-column-header-inner {
  3275. zoom: 1;
  3276. position: relative;
  3277. white-space: nowrap;
  3278. line-height: 15px;
  3279. padding: 3px 6px 4px; }
  3280. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3281. .x-column-header-inner .x-column-header-text {
  3282. white-space: nowrap; }
  3283. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3284. .x-column-header-over,
  3285. .x-column-header-sort-ASC,
  3286. .x-column-header-sort-DESC {
  3287. border-left-color: #aaccf6;
  3288. border-right-color: #aaccf6; }
  3289. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3290. .x-nlg .x-grid-header-ct,
  3291. .x-nlg .x-column-header {
  3292. background: repeat-x 0 top;
  3293. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  3294. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3295. .x-nlg .x-column-header-over,
  3296. .x-nlg .x-column-header-sort-ASC,
  3297. .x-nlg .x-column-header-sort-DESC {
  3298. background: #ebf3fd repeat-x 0 top;
  3299. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  3300. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3301. .x-column-header-trigger {
  3302. display: none;
  3303. height: 100%;
  3304. width: 14px;
  3305. background: no-repeat left center;
  3306. background-color: #c3daf9;
  3307. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  3308. position: absolute;
  3309. right: 0;
  3310. top: 0;
  3311. z-index: 2;
  3312. cursor: pointer; }
  3313. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3314. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  3315. display: block; }
  3316. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3317. .x-column-header-align-right {
  3318. text-align: right; }
  3319. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3320. .x-column-header-align-right .x-column-header-text {
  3321. padding-right: 0.5ex;
  3322. margin-right: 6px; }
  3323. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3324. .x-column-header-align-center {
  3325. text-align: center; }
  3326. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3327. .x-column-header-align-left {
  3328. text-align: left; }
  3329. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3330. .x-column-header-sort-ASC .x-column-header-text {
  3331. padding-right: 16px;
  3332. background: no-repeat right 6px;
  3333. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  3334. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3335. .x-column-header-sort-DESC .x-column-header-text {
  3336. padding-right: 16px;
  3337. background: no-repeat right 6px;
  3338. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  3339. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3340. .x-grid-row {
  3341. vertical-align: top; }
  3342. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3343. .x-grid-row .x-grid-cell {
  3344. color: null;
  3345. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3346. background-color: white;
  3347. border-color: #ededed;
  3348. border-style: solid;
  3349. border-top-color: #fafafa;
  3350. border-width: 0; }
  3351. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3352. .x-grid-with-row-lines .x-grid-cell {
  3353. border-width: 1px 0; }
  3354. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3355. .x-grid-rowwrap-div {
  3356. border-width: 1px 0;
  3357. border-color: #ededed;
  3358. border-style: solid;
  3359. border-top-color: #fafafa;
  3360. overflow: hidden; }
  3361. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3362. .x-grid-row-alt .x-grid-cell,
  3363. .x-grid-row-alt .x-grid-rowwrap-div {
  3364. background-color: #fafafa; }
  3365. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3366. .x-grid-row-over .x-grid-cell,
  3367. .x-grid-row-over .x-grid-rowwrap-div {
  3368. border-color: #dddddd;
  3369. background-color: #efefef; }
  3370. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3371. .x-grid-row-focused .x-grid-cell,
  3372. .x-grid-row-focused .x-grid-rowwrap-div {
  3373. border-color: #dddddd;
  3374. background-color: #efefef; }
  3375. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3376. .x-grid-row-selected .x-grid-cell,
  3377. .x-grid-row-selected .x-grid-rowwrap-div {
  3378. border-style: dotted;
  3379. border-color: #a3bae9;
  3380. background-color: #dfe8f6 !important; }
  3381. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3382. .x-grid-rowwrap-div .x-grid-cell,
  3383. .x-grid-rowwrap-div .x-grid-cell-inner {
  3384. border-width: 0;
  3385. background: transparent; }
  3386. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3387. .x-grid-row-body-hidden {
  3388. display: none; }
  3389. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3390. .x-grid-rowbody {
  3391. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  3392. padding: 4px; }
  3393. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3394. .x-grid-rowbody p {
  3395. margin: 5px 5px 10px 5px; }
  3396. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3397. .x-grid-cell {
  3398. overflow: hidden; }
  3399. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3400. .x-grid-cell-inner {
  3401. overflow: hidden;
  3402. -o-text-overflow: ellipsis;
  3403. text-overflow: ellipsis;
  3404. padding: 2px 6px 3px;
  3405. white-space: nowrap; }
  3406. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3407. .x-grid-with-row-lines .x-grid-cell-inner {
  3408. line-height: 13px;
  3409. padding-bottom: 4px; }
  3410. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3411. .x-action-col-cell .x-grid-cell-inner {
  3412. line-height: 0;
  3413. padding: 2px; }
  3414. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3415. .x-action-col-cell .x-item-disabled {
  3416. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  3417. opacity: 0.3; }
  3418. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3419. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  3420. padding-top: 1px; }
  3421. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3422. .x-grid-row .x-grid-cell-special {
  3423. padding: 0;
  3424. border-right: 1px solid #d0d0d0;
  3425. background-image: none;
  3426. background-color: #f6f6f6;
  3427. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  3428. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3429. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3430. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3431. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3432. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  3433. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3434. .x-grid-row .x-grid-cell-row-checker {
  3435. vertical-align: middle; }
  3436. /*
  3437. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  3438. use an IE-specific trick to make the row disappear. We cannot do this on any
  3439. other browser, because it is not a non-standard thing to do and those other
  3440. browsers will do whacky things with it.
  3441. */
  3442. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3443. .x-ie6 .x-grid-header-row,
  3444. .x-ie7 .x-grid-header-row,
  3445. .x-quirks .x-ie8 .x-grid-header-row {
  3446. position: absolute; }
  3447. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3448. .x-grid-row-selected .x-grid-cell-special {
  3449. border-right: 1px solid #aaccf6;
  3450. background-image: none;
  3451. background-color: #dfe8f6;
  3452. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  3453. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  3454. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  3455. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  3456. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  3457. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  3458. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3459. .x-grid-dirty-cell {
  3460. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  3461. background-position: 0 0;
  3462. background-repeat: no-repeat; }
  3463. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3464. .x-grid-cell-selected {
  3465. background-color: #B8CFEE !important; }
  3466. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3467. .x-nlg .x-grid-cell-special {
  3468. background-repeat: repeat-y;
  3469. background-position: top right; }
  3470. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3471. .x-nlg .x-grid-row .x-grid-cell-special,
  3472. .x-nlg .x-grid-row-over .x-grid-cell-special {
  3473. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  3474. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3475. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  3476. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  3477. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  3478. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3479. .x-grid-with-col-lines .x-grid-cell {
  3480. padding-right: 0;
  3481. border-right: 1px solid #d0d0d0; }
  3482. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3483. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3484. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3485. padding-left: 12px;
  3486. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  3487. background-repeat: no-repeat;
  3488. background-position: -16px 2px; }
  3489. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3490. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3491. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3492. background-position: -16px 1px; }
  3493. /* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3494. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3495. background-position: -16px 2px; }
  3496. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3497. .x-unselectable {
  3498. user-select: none;
  3499. -o-user-select: none;
  3500. -ms-user-select: none;
  3501. -moz-user-select: -moz-none;
  3502. -webkit-user-select: none;
  3503. cursor: default; }
  3504. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3505. .x-grid-row-body-hidden {
  3506. display: none; }
  3507. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3508. .x-grid-group-collapsed {
  3509. display: none; }
  3510. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3511. .x-grid-view .x-grid-td-expander {
  3512. vertical-align: top; }
  3513. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3514. .x-grid-td-expander {
  3515. background: repeat-y right transparent; }
  3516. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3517. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3518. padding: 0 !important; }
  3519. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3520. .x-grid-row-expander {
  3521. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3522. background-color: transparent;
  3523. width: 9px;
  3524. height: 13px;
  3525. margin-left: 3px;
  3526. background-repeat: no-repeat;
  3527. background-position: 0 -2px; }
  3528. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3529. .x-grid-row-collapsed .x-grid-row-expander {
  3530. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3531. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3532. .x-grid-resize-marker {
  3533. position: absolute;
  3534. z-index: 5;
  3535. top: 0;
  3536. width: 1px;
  3537. background-color: #0f0f0f; }
  3538. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3539. .col-move-top, .col-move-bottom {
  3540. width: 9px;
  3541. height: 9px;
  3542. position: absolute;
  3543. top: 0;
  3544. line-height: 0;
  3545. font-size: 0;
  3546. overflow: hidden;
  3547. z-index: 20000;
  3548. background: no-repeat left top transparent; }
  3549. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3550. .col-move-top {
  3551. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  3552. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3553. .col-move-bottom {
  3554. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  3555. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3556. .x-tbar-page-number {
  3557. width: 30px; }
  3558. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3559. .x-grid-group,
  3560. .x-grid-group-body,
  3561. .x-grid-group-hd {
  3562. zoom: 1; }
  3563. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3564. .x-grid-group-hd {
  3565. padding-top: 6px; }
  3566. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3567. .x-grid-group-hd .x-grid-cell-inner {
  3568. padding: 10px 4px 4px 4px;
  3569. background: white;
  3570. border-width: 0 0 2px 0;
  3571. border-style: solid;
  3572. border-color: #99bbe8;
  3573. cursor: pointer; }
  3574. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3575. .x-grid-group-hd-collapsible .x-grid-group-title {
  3576. background: transparent no-repeat 0 -1px;
  3577. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3578. padding: 0 0 0 14px; }
  3579. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3580. .x-grid-group-title {
  3581. color: #3764a0;
  3582. font: bold 11px tahoma, arial, verdana, sans-serif; }
  3583. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3584. .x-grid-group-hd-collapsed .x-grid-group-title {
  3585. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3586. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3587. .x-grid-group-collapsed .x-grid-group-body {
  3588. display: none; }
  3589. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3590. .x-grid-group-collapsed .x-grid-group-title {
  3591. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3592. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3593. .x-group-by-icon {
  3594. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3595. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3596. .x-show-groups-icon {
  3597. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3598. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3599. .x-column-header-checkbox .x-column-header-inner {
  3600. padding: 0; }
  3601. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3602. .x-grid-cell-special .x-grid-cell-inner {
  3603. padding-left: 4px;
  3604. padding-right: 4px; }
  3605. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3606. .x-grid-row-checker,
  3607. .x-column-header-checkbox .x-column-header-text {
  3608. height: 14px;
  3609. width: 14px;
  3610. line-height: 0;
  3611. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  3612. background-position: -1px -1px;
  3613. background-repeat: no-repeat;
  3614. background-color: transparent; }
  3615. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3616. .x-column-header-checkbox .x-column-header-text {
  3617. display: block;
  3618. margin: 0 5px; }
  3619. /* 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 */
  3620. /* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3621. .x-quirks .x-ie .x-grid-row-checker,
  3622. .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 {
  3623. line-height: 14px; }
  3624. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3625. .x-grid-hd-checker-on .x-column-header-text {
  3626. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3627. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3628. .x-grid-cell-row-checker .x-grid-cell-inner {
  3629. padding-top: 4px;
  3630. padding-bottom: 2px;
  3631. line-height: 14px; }
  3632. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3633. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  3634. padding-top: 3px; }
  3635. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3636. .x-grid-row-checker {
  3637. margin-left: 1px;
  3638. background-position: 50% -2px; }
  3639. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3640. .x-grid-row-selected .x-grid-row-checker,
  3641. .x-grid-row-checked .x-grid-row-checker {
  3642. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3643. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3644. .x-tbar-page-first {
  3645. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  3646. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3647. .x-tbar-loading {
  3648. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  3649. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3650. .x-tbar-page-last {
  3651. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  3652. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3653. .x-tbar-page-next {
  3654. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  3655. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3656. .x-tbar-page-prev {
  3657. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  3658. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3659. .x-item-disabled .x-tbar-loading {
  3660. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  3661. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3662. .x-item-disabled .x-tbar-page-first {
  3663. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  3664. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3665. .x-item-disabled .x-tbar-page-last {
  3666. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  3667. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3668. .x-item-disabled .x-tbar-page-next {
  3669. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  3670. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3671. .x-item-disabled .x-tbar-page-prev {
  3672. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  3673. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3674. .x-hmenu-sort-asc .x-menu-item-icon {
  3675. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  3676. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3677. .x-hmenu-sort-desc .x-menu-item-icon {
  3678. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  3679. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3680. .x-hmenu-lock .x-menu-item-icon {
  3681. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  3682. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3683. .x-hmenu-unlock .x-menu-item-icon {
  3684. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  3685. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3686. .x-group-by-icon {
  3687. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3688. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3689. .x-cols-icon .x-menu-item-icon {
  3690. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  3691. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3692. .x-show-groups-icon {
  3693. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3694. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3695. .x-grid-drop-indicator {
  3696. position: absolute;
  3697. height: 1px;
  3698. line-height: 0px;
  3699. background-color: #77BC71;
  3700. overflow: visible; }
  3701. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3702. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3703. position: absolute;
  3704. top: -8px;
  3705. left: -12px;
  3706. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  3707. height: 16px;
  3708. width: 16px; }
  3709. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3710. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3711. position: absolute;
  3712. top: -8px;
  3713. right: -11px;
  3714. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3715. height: 16px;
  3716. width: 16px; }
  3717. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3718. .x-ie6 .x-grid-drop-indicator-left {
  3719. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  3720. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3721. .x-ie6 .x-grid-drop-indicator-right {
  3722. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  3723. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3724. .x-grid-editor .x-form-text {
  3725. padding: 0 4px; }
  3726. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3727. .x-grid-editor .x-form-cb-wrap {
  3728. padding-top: 3px; }
  3729. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3730. .x-grid-row-editor {
  3731. position: absolute !important;
  3732. z-index: 1;
  3733. zoom: 1;
  3734. overflow: visible !important; }
  3735. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3736. .x-grid-row-editor .x-form-text {
  3737. padding: 0 2px; }
  3738. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3739. .x-grid-row-editor .x-form-cb-wrap {
  3740. padding-top: 0; }
  3741. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3742. .x-grid-row-editor .x-form-checkbox {
  3743. margin-left: -4px; }
  3744. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3745. .x-grid-row-editor .x-form-display-field {
  3746. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3747. padding-top: 0;
  3748. padding-left: 2px; }
  3749. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3750. .x-grid-row-editor .x-panel-body {
  3751. background-color: #eaf1fb;
  3752. border-top: 1px solid #99bce8 !important;
  3753. border-bottom: 1px solid #99bce8 !important; }
  3754. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3755. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3756. text-align: center; }
  3757. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3758. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3759. height: 19px; }
  3760. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3761. .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 {
  3762. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3763. height: 10px !important; }
  3764. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3765. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3766. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3767. height: 18px; }
  3768. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3769. .x-border-box .x-grid-editor .x-form-trigger,
  3770. .x-border-box .x-grid-row-editor .x-form-trigger {
  3771. height: 20px; }
  3772. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3773. .x-border-box .x-grid-editor .x-form-text,
  3774. .x-border-box .x-grid-row-editor .x-form-text {
  3775. height: 20px;
  3776. padding-bottom: 1px; }
  3777. /* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3778. .x-ie .x-grid-editor .x-form-text {
  3779. padding-left: 5px; }
  3780. /* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3781. .x-ie .x-grid-row-editor .x-form-text {
  3782. padding-left: 3px; }
  3783. /* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3784. .x-ie8m .x-grid-editor .x-form-text,
  3785. .x-ie8m .x-grid-row-editor .x-form-text {
  3786. padding-top: 1px; }
  3787. /* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3788. .x-strict .x-ie6 .x-grid-editor .x-form-text,
  3789. .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
  3790. .x-strict .x-ie7 .x-grid-editor .x-form-text,
  3791. .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
  3792. height: 17px; }
  3793. /* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3794. .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
  3795. line-height: 17px; }
  3796. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3797. .x-grid-row-editor-buttons {
  3798. background-color: #eaf1fb;
  3799. position: absolute;
  3800. bottom: -31px;
  3801. padding: 4px;
  3802. height: 32px; }
  3803. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3804. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3805. width: 192px;
  3806. height: 24px; }
  3807. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3808. .x-grid-row-editor-buttons-ml,
  3809. .x-grid-row-editor-buttons-mr,
  3810. .x-grid-row-editor-buttons-bl,
  3811. .x-grid-row-editor-buttons-br,
  3812. .x-grid-row-editor-buttons-bc {
  3813. position: absolute;
  3814. overflow: hidden; }
  3815. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3816. .x-grid-row-editor-buttons-bl,
  3817. .x-grid-row-editor-buttons-br {
  3818. width: 4px;
  3819. height: 4px;
  3820. bottom: 0px;
  3821. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  3822. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3823. .x-grid-row-editor-buttons-bl {
  3824. left: 0px;
  3825. background-position: 0px -16px; }
  3826. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3827. .x-grid-row-editor-buttons-br {
  3828. right: 0px;
  3829. background-position: 0px -20px; }
  3830. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3831. .x-grid-row-editor-buttons-bc {
  3832. position: absolute;
  3833. left: 4px;
  3834. bottom: 0px;
  3835. width: 192px;
  3836. height: 1px;
  3837. background-color: #99bce8; }
  3838. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3839. .x-grid-row-editor-buttons-ml,
  3840. .x-grid-row-editor-buttons-mr {
  3841. height: 27px;
  3842. width: 1px;
  3843. top: 1px;
  3844. background-color: #99bce8; }
  3845. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3846. .x-grid-row-editor-buttons-ml {
  3847. left: 0px; }
  3848. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3849. .x-grid-row-editor-buttons-mr {
  3850. background-position: 0px -20px;
  3851. right: 0px; }
  3852. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3853. .x-grid-row-editor-errors ul {
  3854. margin-left: 5px; }
  3855. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3856. .x-grid-row-editor-errors li {
  3857. list-style: disc;
  3858. margin-left: 15px; }
  3859. /*misc*/
  3860. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3861. .x-webkit *:focus {
  3862. outline: none !important; }
  3863. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3864. .x-form-item {
  3865. vertical-align: top;
  3866. table-layout: fixed; }
  3867. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3868. .x-autocontainer-form-item,
  3869. .x-anchor-form-item,
  3870. .x-vbox-form-item,
  3871. .x-checkboxgroup-form-item,
  3872. .x-table-form-item {
  3873. margin-bottom: 5px; }
  3874. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3875. .x-form-layout-table {
  3876. border-collapse: separate;
  3877. border-spacing: 0 2px; }
  3878. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3879. .x-form-item-body {
  3880. position: relative; }
  3881. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3882. .x-form-form-item td {
  3883. border-top: 1px solid transparent; }
  3884. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3885. .x-ie6 .x-form-layout-table {
  3886. border-collapse: collapse;
  3887. border-spacing: 0; }
  3888. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3889. .x-ie6 .x-form-form-item td {
  3890. border-top-width: 0; }
  3891. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3892. .x-ie6 td.x-form-item-pad {
  3893. height: 5px; }
  3894. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3895. .x-editor .x-form-item-body {
  3896. padding-bottom: 0; }
  3897. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3898. .x-form-item-label {
  3899. display: block;
  3900. padding: 3px 0 0;
  3901. font-size: 12px;
  3902. user-select: none;
  3903. -o-user-select: none;
  3904. -ms-user-select: none;
  3905. -moz-user-select: -moz-none;
  3906. -webkit-user-select: none;
  3907. cursor: default; }
  3908. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3909. .x-form-item-label-top {
  3910. display: block;
  3911. zoom: 1;
  3912. padding: 0 0 5px 0; }
  3913. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3914. .x-form-item-label-right {
  3915. text-align: right; }
  3916. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3917. .x-form-invalid-under {
  3918. padding: 2px 2px 2px 18px;
  3919. color: #c0272b;
  3920. font: normal 11px tahoma, arial, verdana, sans-serif;
  3921. line-height: 16px;
  3922. background: no-repeat 0 2px;
  3923. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3924. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3925. .x-form-invalid-icon {
  3926. width: 18px;
  3927. height: 14px;
  3928. background: no-repeat center center;
  3929. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3930. overflow: hidden; }
  3931. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3932. .x-form-invalid-icon ul {
  3933. display: block;
  3934. width: 18px; }
  3935. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3936. .x-form-invalid-icon ul li {
  3937. /* prevent inner elements from interfering with QuickTip hovering */
  3938. display: none; }
  3939. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3940. .x-lbl-top-err-icon {
  3941. margin-bottom: 4px; }
  3942. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3943. .x-form-field,
  3944. .x-form-display-field {
  3945. margin: 0 0 0 0;
  3946. font: normal 12px tahoma, arial, verdana, sans-serif;
  3947. color: black; }
  3948. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3949. .x-form-item-hidden {
  3950. margin: 0; }
  3951. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3952. .x-form-text,
  3953. textarea.x-form-field {
  3954. padding: 1px 3px;
  3955. background: repeat-x 0 0;
  3956. border: 1px solid;
  3957. background-color: white;
  3958. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3959. border-color: #b5b8c8; }
  3960. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3961. .x-form-text {
  3962. height: 18px;
  3963. line-height: 15px;
  3964. vertical-align: top; }
  3965. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3966. .x-ie8m .x-form-text {
  3967. line-height: 15px; }
  3968. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3969. .x-border-box .x-form-text {
  3970. height: 22px; }
  3971. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3972. textarea.x-form-field {
  3973. color: black;
  3974. overflow: auto;
  3975. height: auto;
  3976. line-height: normal;
  3977. background: repeat-x 0 0;
  3978. background-color: white;
  3979. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3980. resize: none; }
  3981. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3982. .x-border-box textarea.x-form-field {
  3983. height: auto; }
  3984. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3985. .x-form-focus,
  3986. textarea.x-form-focus {
  3987. border-color: #7eadd9; }
  3988. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3989. .x-form-invalid-field,
  3990. textarea.x-form-invalid-field {
  3991. background-color: white;
  3992. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3993. background-repeat: repeat-x;
  3994. background-position: bottom;
  3995. border-color: #cc3300; }
  3996. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3997. .x-form-item {
  3998. font: normal 12px tahoma, arial, verdana, sans-serif; }
  3999. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4000. .x-form-empty-field, textarea.x-form-empty-field {
  4001. color: gray; }
  4002. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4003. .x-webkit .x-form-empty-field {
  4004. line-height: 15px; }
  4005. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4006. .x-form-display-field {
  4007. padding-top: 3px; }
  4008. /*
  4009. In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
  4010. This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
  4011. IE8 quirks on Windows 7 requires this fix, but on
  4012. IE8 quirks on Windows XP, this is breaks the layout.
  4013. TODO: Check field input heights in IE8 quirks on Windows Vista.
  4014. Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
  4015. */
  4016. /* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4017. .x-quirks .x-ie9p .x-form-text,
  4018. .x-ie7m .x-form-text {
  4019. margin-top: -1px;
  4020. margin-bottom: -1px; }
  4021. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4022. .x-ie .x-form-file {
  4023. height: 23px;
  4024. line-height: 18px;
  4025. vertical-align: middle; }
  4026. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4027. .x-field-default-toolbar .x-form-text {
  4028. height: 16px; }
  4029. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4030. .x-border-box .x-field-default-toolbar .x-form-text {
  4031. height: 20px; }
  4032. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4033. .x-field-default-toolbar .x-form-item-label-left {
  4034. padding-left: 4px; }
  4035. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4036. .x-fieldset {
  4037. border: 1px solid #b5b8c8;
  4038. padding: 10px;
  4039. margin-bottom: 10px;
  4040. display: block;
  4041. /* preserve margins in IE */
  4042. position: relative; }
  4043. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4044. .x-ie .x-fieldset {
  4045. padding-top: 0; }
  4046. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4047. .x-ie .x-fieldset .x-fieldset-body {
  4048. padding-top: 10px; }
  4049. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4050. .x-fieldset-header-checkbox {
  4051. line-height: 14px; }
  4052. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4053. .x-fieldset-header {
  4054. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  4055. color: #15428b;
  4056. padding: 0 3px 1px;
  4057. overflow: hidden; }
  4058. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4059. .x-fieldset-header .x-fieldset-header-text {
  4060. float: left;
  4061. padding: 1px 0; }
  4062. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4063. .x-fieldset-header .x-fieldset-header-text-collapsible {
  4064. cursor: pointer; }
  4065. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4066. .x-fieldset-header .x-form-item,
  4067. .x-fieldset-header .x-tool {
  4068. float: left;
  4069. margin: 1px 0 0 0; }
  4070. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4071. .x-fieldset-header .x-form-cb-wrap {
  4072. padding: 1px 0;
  4073. font-size: 0;
  4074. line-height: 0; }
  4075. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4076. .x-fieldset-with-title .x-fieldset-header-checkbox,
  4077. .x-fieldset-with-title .x-tool {
  4078. margin-right: 3px; }
  4079. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4080. .x-webkit .x-fieldset-header {
  4081. -webkit-padding-start: 3px;
  4082. -webkit-padding-end: 3px; }
  4083. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4084. .x-strict .x-ie8 .x-fieldset-header {
  4085. margin-bottom: -1px; }
  4086. /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4087. .x-strict .x-ie8 .x-fieldset-header .x-tool,
  4088. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
  4089. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  4090. position: relative;
  4091. top: -1px; }
  4092. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4093. .x-quirks .x-ie .x-fieldset-header,
  4094. .x-ie8m .x-fieldset-header {
  4095. padding-left: 1px;
  4096. padding-right: 1px; }
  4097. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4098. .x-fieldset-collapsed .x-fieldset-body {
  4099. display: none; }
  4100. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4101. .x-fieldset-collapsed {
  4102. padding-bottom: 0 !important;
  4103. border-width: 1px 1px 0 1px !important;
  4104. border-left-color: transparent !important;
  4105. border-right-color: transparent !important; }
  4106. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4107. .x-ie6 .x-fieldset-collapsed {
  4108. border-width: 1px 0 0 0 !important;
  4109. padding-bottom: 0 !important;
  4110. margin-left: 1px;
  4111. margin-right: 1px; }
  4112. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4113. .x-ie .x-fieldset-bwrap {
  4114. zoom: 1; }
  4115. /* IE legend positioning bug */
  4116. /* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4117. .x-ie .x-fieldset-noborder legend {
  4118. position: relative;
  4119. margin-bottom: 23px; }
  4120. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4121. .x-ie .x-fieldset-noborder legend span {
  4122. position: absolute;
  4123. left: 16px; }
  4124. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4125. .x-fieldset {
  4126. overflow: hidden; }
  4127. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4128. .x-fieldset-bwrap {
  4129. overflow: hidden;
  4130. zoom: 1; }
  4131. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4132. .x-fieldset-body {
  4133. overflow: hidden; }
  4134. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4135. .x-form-file-wrap .x-form-text {
  4136. color: #777; }
  4137. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4138. .x-form-file-wrap .x-form-file-btn {
  4139. overflow: hidden; }
  4140. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4141. .x-form-file-wrap .x-form-file-input {
  4142. position: absolute;
  4143. top: -4px;
  4144. right: -2px;
  4145. height: 30px;
  4146. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  4147. opacity: 0;
  4148. /* Yes, there's actually a good reason for this...
  4149. * If the configured buttonText is set to something longer than the default,
  4150. * then it will quickly exceed the width of the hidden file input's "Browse..."
  4151. * button, so part of the custom button's clickable area will be covered by
  4152. * the hidden file input's text box instead. This results in a text-selection
  4153. * mouse cursor over that part of the button, at least in Firefox, which is
  4154. * confusing to a user. Giving the hidden file input a huge font-size makes
  4155. * the native button part very large so it will cover the whole clickable area.
  4156. */
  4157. font-size: 100px; }
  4158. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4159. .x-form-cb-wrap {
  4160. padding-top: 3px; }
  4161. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4162. .x-form-checkbox,
  4163. .x-form-radio {
  4164. vertical-align: -1px;
  4165. width: 13px;
  4166. height: 13px;
  4167. background: no-repeat;
  4168. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  4169. overflow: hidden;
  4170. padding: 0;
  4171. border: 0; }
  4172. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4173. .x-form-checkbox::-moz-focus-inner,
  4174. .x-form-radio::-moz-focus-inner {
  4175. padding: 0;
  4176. border: 0; }
  4177. /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
  4178. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4179. .x-nbr.x-ie .x-form-checkbox,
  4180. .x-nbr.x-ie .x-form-radio {
  4181. font-size: 0; }
  4182. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4183. .x-form-cb-checked .x-form-checkbox,
  4184. .x-form-cb-checked .x-form-radio {
  4185. background-position: 0 -13px; }
  4186. /* Focused */
  4187. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4188. .x-form-cb-focus {
  4189. background-position: -13px 0; }
  4190. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4191. .x-form-cb-checked .x-form-cb-focus {
  4192. background-position: -13px -13px; }
  4193. /* Radios */
  4194. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4195. .x-form-radio {
  4196. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  4197. /* boxLabel */
  4198. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4199. .x-form-cb-label-before {
  4200. margin-right: 4px; }
  4201. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4202. .x-form-cb-label-after {
  4203. margin-left: 4px; }
  4204. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4205. .x-form-checkboxgroup-body {
  4206. padding: 1px 4px 1px 4px; }
  4207. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4208. .x-form-invalid .x-form-checkboxgroup-body {
  4209. border: 1px solid #c30!important;
  4210. background: transparent repeat-x bottom;
  4211. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  4212. padding: 1px 3px 0 3px; }
  4213. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4214. .x-check-group-alt {
  4215. background: #d1ddef;
  4216. border-top: 1px dotted #b5b8c8;
  4217. border-bottom: 1px dotted #b5b8c8; }
  4218. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4219. .x-form-check-group-label {
  4220. color: #333;
  4221. border-bottom: 1px solid #333;
  4222. margin: 0 30px 5px 0;
  4223. padding: 2px; }
  4224. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4225. .x-form-trigger-wrap {
  4226. vertical-align: top; }
  4227. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4228. .x-form-trigger {
  4229. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  4230. background-position: 0 0;
  4231. width: 17px;
  4232. height: 21px;
  4233. border-bottom: 1px solid #b5b8c8;
  4234. cursor: pointer;
  4235. cursor: hand;
  4236. overflow: hidden; }
  4237. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4238. .x-border-box .x-form-trigger {
  4239. height: 22px; }
  4240. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4241. .x-field-default-toolbar .x-form-trigger {
  4242. height: 19px; }
  4243. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4244. .x-border-box .x-field-default-toolbar .x-form-trigger {
  4245. height: 20px; }
  4246. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4247. .x-form-trigger-over {
  4248. background-position: -17px 0;
  4249. border-bottom-color: #7eadd9; }
  4250. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4251. .x-form-trigger-wrap-focus .x-form-trigger {
  4252. background-position: -51px 0;
  4253. border-bottom-color: #7eadd9; }
  4254. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4255. .x-form-trigger-wrap-focus .x-form-trigger-over {
  4256. background-position: -68px 0;
  4257. border-bottom-color: null; }
  4258. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4259. .x-form-trigger-click,
  4260. .x-form-trigger-wrap-focus .x-form-trigger-click {
  4261. background-position: -34px 0;
  4262. border-bottom-color: null; }
  4263. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4264. .x-form-trigger-icon {
  4265. height: 16px;
  4266. background-repeat: no-repeat;
  4267. background-position: 7px 6px; }
  4268. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4269. .x-pickerfield-open .x-form-field {
  4270. -moz-border-radius-bottomleft: 0;
  4271. -webkit-border-bottom-left-radius: 0;
  4272. -ms-border-bottom-left-radius: 0;
  4273. -o-border-bottom-left-radius: 0;
  4274. border-bottom-left-radius: 0;
  4275. -moz-border-radius-bottomright: 0;
  4276. -webkit-border-bottom-right-radius: 0;
  4277. -ms-border-bottom-right-radius: 0;
  4278. -o-border-bottom-right-radius: 0;
  4279. border-bottom-right-radius: 0; }
  4280. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4281. .x-pickerfield-open-above .x-form-field {
  4282. -moz-border-radius-bottomleft: 3px;
  4283. -webkit-border-bottom-left-radius: 3px;
  4284. -ms-border-bottom-left-radius: 3px;
  4285. -o-border-bottom-left-radius: 3px;
  4286. border-bottom-left-radius: 3px;
  4287. -moz-border-radius-topleft: 0;
  4288. -webkit-border-top-left-radius: 0;
  4289. -ms-border-top-left-radius: 0;
  4290. -o-border-top-left-radius: 0;
  4291. border-top-left-radius: 0;
  4292. -moz-border-radius-topright: 0;
  4293. -webkit-border-top-right-radius: 0;
  4294. -ms-border-top-right-radius: 0;
  4295. -o-border-top-right-radius: 0;
  4296. border-top-right-radius: 0; }
  4297. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4298. .x-form-arrow-trigger .x-form-trigger-icon {
  4299. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  4300. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4301. .x-form-date-trigger {
  4302. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  4303. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4304. .x-form-trigger-wrap .x-form-spinner-up,
  4305. .x-form-trigger-wrap .x-form-spinner-down {
  4306. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  4307. width: 17px !important;
  4308. height: 11px !important;
  4309. font-size: 0;
  4310. /*for IE*/
  4311. border-bottom: 0; }
  4312. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4313. .x-form-trigger-wrap .x-form-spinner-down {
  4314. background-position: 0 -11px; }
  4315. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4316. .x-form-trigger-wrap-focus .x-form-spinner-down {
  4317. background-position: -51px -11px; }
  4318. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4319. .x-form-trigger-wrap .x-form-spinner-down-over {
  4320. background-position: -17px -11px; }
  4321. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4322. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4323. background-position: -68px -11px; }
  4324. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4325. .x-form-trigger-wrap .x-form-spinner-down-click {
  4326. background-position: -34px -11px; }
  4327. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4328. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  4329. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4330. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  4331. height: 10px !important; }
  4332. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4333. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4334. background-position: 0 -10px; }
  4335. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4336. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  4337. background-position: -51px -10px; }
  4338. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4339. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  4340. background-position: -17px -10px; }
  4341. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4342. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4343. background-position: -68px -10px; }
  4344. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4345. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  4346. background-position: -34px -10px; }
  4347. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4348. .x-trigger-noedit {
  4349. cursor: pointer;
  4350. cursor: hand; }
  4351. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4352. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  4353. cursor: auto; }
  4354. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4355. .x-form-clear-trigger {
  4356. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  4357. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4358. .x-form-search-trigger {
  4359. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  4360. /* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4361. .x-quirks .prefixie6 .x-form-trigger-input-cell {
  4362. height: 22px; }
  4363. /* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4364. .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
  4365. height: 20px; }
  4366. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4367. .x-html-editor-wrap {
  4368. border: 1px solid #b5b8c8; }
  4369. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4370. .x-html-editor-wrap .x-toolbar {
  4371. border-top-width: 0;
  4372. border-left-width: 0;
  4373. border-right-width: 0; }
  4374. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4375. .x-html-editor-wrap textarea {
  4376. background-color: white; }
  4377. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4378. .x-html-editor-tb .x-btn-text {
  4379. background: transparent no-repeat;
  4380. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4381. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4382. .x-html-editor-tb .x-edit-bold,
  4383. .x-menu-item img.x-edit-bold {
  4384. background-position: 0 0;
  4385. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4386. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4387. .x-html-editor-tb .x-edit-italic,
  4388. .x-menu-item img.x-edit-italic {
  4389. background-position: -16px 0;
  4390. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4391. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4392. .x-html-editor-tb .x-edit-underline,
  4393. .x-menu-item img.x-edit-underline {
  4394. background-position: -32px 0;
  4395. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4396. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4397. .x-html-editor-tb .x-edit-forecolor,
  4398. .x-menu-item img.x-edit-forecolor {
  4399. background-position: -160px 0;
  4400. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4401. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4402. .x-html-editor-tb .x-edit-backcolor,
  4403. .x-menu-item img.x-edit-backcolor {
  4404. background-position: -176px 0;
  4405. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4406. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4407. .x-html-editor-tb .x-edit-justifyleft,
  4408. .x-menu-item img.x-edit-justifyleft {
  4409. background-position: -112px 0;
  4410. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4411. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4412. .x-html-editor-tb .x-edit-justifycenter,
  4413. .x-menu-item img.x-edit-justifycenter {
  4414. background-position: -128px 0;
  4415. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4416. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4417. .x-html-editor-tb .x-edit-justifyright,
  4418. .x-menu-item img.x-edit-justifyright {
  4419. background-position: -144px 0;
  4420. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4421. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4422. .x-html-editor-tb .x-edit-insertorderedlist,
  4423. .x-menu-item img.x-edit-insertorderedlist {
  4424. background-position: -80px 0;
  4425. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4426. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4427. .x-html-editor-tb .x-edit-insertunorderedlist,
  4428. .x-menu-item img.x-edit-insertunorderedlist {
  4429. background-position: -96px 0;
  4430. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4431. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4432. .x-html-editor-tb .x-edit-increasefontsize,
  4433. .x-menu-item img.x-edit-increasefontsize {
  4434. background-position: -48px 0;
  4435. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4436. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4437. .x-html-editor-tb .x-edit-decreasefontsize,
  4438. .x-menu-item img.x-edit-decreasefontsize {
  4439. background-position: -64px 0;
  4440. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4441. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4442. .x-html-editor-tb .x-edit-sourceedit,
  4443. .x-menu-item img.x-edit-sourceedit {
  4444. background-position: -192px 0;
  4445. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4446. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4447. .x-html-editor-tb .x-edit-createlink,
  4448. .x-menu-item img.x-edit-createlink {
  4449. background-position: -208px 0;
  4450. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4451. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4452. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4453. padding: 5px;
  4454. padding-bottom: 1px; }
  4455. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4456. .x-html-editor-tb .x-toolbar {
  4457. position: static !important; }
  4458. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4459. .x-html-editor-tb .x-font-select {
  4460. font-size: 11px; }
  4461. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4462. .x-html-editor-wrap textarea {
  4463. border: 0;
  4464. padding: 3px 2px;
  4465. overflow: auto; }
  4466. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4467. .x-panel,
  4468. .x-plain {
  4469. overflow: hidden;
  4470. position: relative; }
  4471. /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4472. .x-ie .x-panel-header,
  4473. .x-ie .x-panel-header-tl,
  4474. .x-ie .x-panel-header-tc,
  4475. .x-ie .x-panel-header-tr,
  4476. .x-ie .x-panel-header-ml,
  4477. .x-ie .x-panel-header-mc,
  4478. .x-ie .x-panel-header-mr,
  4479. .x-ie .x-panel-header-bl,
  4480. .x-ie .x-panel-header-bc,
  4481. .x-ie .x-panel-header-br {
  4482. zoom: 1; }
  4483. /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4484. .x-ie8 td.x-frame-mc {
  4485. vertical-align: top; }
  4486. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4487. .x-panel-header-horizontal {
  4488. padding: 3px 5px 4px; }
  4489. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4490. .x-panel-header-vertical {
  4491. padding: 5px 4px; }
  4492. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4493. .x-panel-header-icon,
  4494. .x-window-header-icon {
  4495. width: 16px;
  4496. height: 16px;
  4497. background-repeat: no-repeat;
  4498. background-position: 0 0;
  4499. vertical-align: middle;
  4500. margin-right: 4px; }
  4501. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4502. .x-vertical .x-panel-header-icon,
  4503. .x-vertical .x-window-header-icon {
  4504. margin: 0 0 4px; }
  4505. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4506. .x-panel-header-draggable,
  4507. .x-panel-header-draggable .x-panel-header-text,
  4508. .x-window-header-draggable,
  4509. .x-window-header-draggable .x-window-header-text {
  4510. cursor: move; }
  4511. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4512. .x-panel-ghost, .x-window-ghost {
  4513. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  4514. opacity: 0.65;
  4515. cursor: move; }
  4516. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4517. .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 {
  4518. width: 100%; }
  4519. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4520. .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 {
  4521. height: 100%; }
  4522. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4523. .x-panel-header-text-container {
  4524. overflow: hidden;
  4525. -o-text-overflow: ellipsis;
  4526. text-overflow: ellipsis; }
  4527. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4528. .x-panel-header-text {
  4529. user-select: none;
  4530. -o-user-select: none;
  4531. -ms-user-select: none;
  4532. -moz-user-select: -moz-none;
  4533. -webkit-user-select: none;
  4534. cursor: default;
  4535. white-space: nowrap; }
  4536. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4537. .x-panel-header-left .x-vml-base,
  4538. .x-panel-header-right .x-vml-base {
  4539. left: -3px !important; }
  4540. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4541. .x-panel-body {
  4542. overflow: hidden;
  4543. position: relative;
  4544. font-size: 12px; }
  4545. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4546. .x-panel-header-vertical .x-surface {
  4547. padding-left: 1px; }
  4548. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4549. .x-opera .x-panel-header-vertical .x-surface,
  4550. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  4551. padding-left: 2px; }
  4552. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4553. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4554. border-bottom-width: 1px !important; }
  4555. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4556. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4557. border-left-width: 1px !important; }
  4558. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4559. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4560. border-top-width: 1px !important; }
  4561. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4562. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4563. border-right-width: 1px !important; }
  4564. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4565. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4566. background-repeat: repeat-y; }
  4567. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4568. .x-panel-default {
  4569. border-color: #99bce8; }
  4570. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4571. .x-panel-header-default {
  4572. font-size: 11px;
  4573. border-color: #99bce8;
  4574. border-width: 1px;
  4575. border-style: solid; }
  4576. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4577. .x-nlg .x-panel-header-default-top {
  4578. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4579. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4580. .x-nlg .x-panel-header-default-bottom {
  4581. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4582. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4583. .x-nlg .x-panel-header-default-left {
  4584. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4585. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4586. .x-nlg .x-panel-header-default-right {
  4587. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4588. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4589. .x-nlg .x-panel-header-default-right {
  4590. background-position: top right; }
  4591. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4592. .x-nlg .x-panel-header-default-bottom {
  4593. background-position: bottom left; }
  4594. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4595. .x-panel-header-text-default {
  4596. color: #04408c;
  4597. font-size: 11px;
  4598. font-weight: bold;
  4599. font-family: tahoma, arial, verdana, sans-serif;
  4600. line-height: 17px; }
  4601. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4602. .x-panel-body-default {
  4603. background: white;
  4604. border-color: #99bce8;
  4605. color: black;
  4606. border-width: 1px;
  4607. border-style: solid; }
  4608. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4609. .x-panel-collapsed .x-window-header-default,
  4610. .x-panel-collapsed .x-panel-header-default {
  4611. border-color: #99bce8; }
  4612. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4613. .x-panel-header-default-vertical {
  4614. border-color: #99bce8; }
  4615. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4616. .x-panel-collapsed .x-panel-header-default-top {
  4617. -moz-border-radius-bottomleft: null;
  4618. -webkit-border-bottom-left-radius: null;
  4619. -ms-border-bottom-left-radius: null;
  4620. -o-border-bottom-left-radius: null;
  4621. border-bottom-left-radius: null;
  4622. -moz-border-radius-bottomright: null;
  4623. -webkit-border-bottom-right-radius: null;
  4624. -ms-border-bottom-right-radius: null;
  4625. -o-border-bottom-right-radius: null;
  4626. border-bottom-right-radius: null; }
  4627. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4628. .x-panel-collapsed .x-panel-header-default-right {
  4629. -moz-border-radius-topleft: null;
  4630. -webkit-border-top-left-radius: null;
  4631. -ms-border-top-left-radius: null;
  4632. -o-border-top-left-radius: null;
  4633. border-top-left-radius: null;
  4634. -moz-border-radius-bottomleft: null;
  4635. -webkit-border-bottom-left-radius: null;
  4636. -ms-border-bottom-left-radius: null;
  4637. -o-border-bottom-left-radius: null;
  4638. border-bottom-left-radius: null; }
  4639. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4640. .x-panel-collapsed .x-panel-header-default-bottom {
  4641. -moz-border-radius-topleft: null;
  4642. -webkit-border-top-left-radius: null;
  4643. -ms-border-top-left-radius: null;
  4644. -o-border-top-left-radius: null;
  4645. border-top-left-radius: null;
  4646. -moz-border-radius-topright: null;
  4647. -webkit-border-top-right-radius: null;
  4648. -ms-border-top-right-radius: null;
  4649. -o-border-top-right-radius: null;
  4650. border-top-right-radius: null; }
  4651. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4652. .x-panel-collapsed .x-panel-header-default-left {
  4653. -moz-border-radius-topright: null;
  4654. -webkit-border-top-right-radius: null;
  4655. -ms-border-top-right-radius: null;
  4656. -o-border-top-right-radius: null;
  4657. border-top-right-radius: null;
  4658. -moz-border-radius-bottomright: null;
  4659. -webkit-border-bottom-right-radius: null;
  4660. -ms-border-bottom-right-radius: null;
  4661. -o-border-bottom-right-radius: null;
  4662. border-bottom-right-radius: null; }
  4663. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4664. .x-panel-header-default-top {
  4665. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4666. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4667. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  4668. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4669. .x-panel-header-default-right {
  4670. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4671. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4672. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  4673. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4674. .x-panel-header-default-bottom {
  4675. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4676. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4677. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  4678. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4679. .x-panel-header-default-left {
  4680. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4681. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4682. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  4683. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4684. .x-panel-header-default-right-tc,
  4685. .x-panel-header-default-right-mc,
  4686. .x-panel-header-default-right-bc {
  4687. background-position: right 0; }
  4688. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4689. .x-panel-header-default-bottom-tc,
  4690. .x-panel-header-default-bottom-mc,
  4691. .x-panel-header-default-bottom-bc {
  4692. background-position: 0 bottom; }
  4693. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4694. .x-panel-default-framed {
  4695. border-color: #99bce8; }
  4696. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4697. .x-panel-header-default-framed {
  4698. font-size: 11px;
  4699. border-color: #99bce8;
  4700. border-width: 1px;
  4701. border-style: solid; }
  4702. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4703. .x-nlg .x-panel-header-default-framed-top {
  4704. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  4705. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4706. .x-nlg .x-panel-header-default-framed-bottom {
  4707. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  4708. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4709. .x-nlg .x-panel-header-default-framed-left {
  4710. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  4711. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4712. .x-nlg .x-panel-header-default-framed-right {
  4713. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  4714. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4715. .x-nlg .x-panel-header-default-framed-right {
  4716. background-position: top right; }
  4717. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4718. .x-nlg .x-panel-header-default-framed-bottom {
  4719. background-position: bottom left; }
  4720. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4721. .x-nbr .x-panel-header-default-framed {
  4722. background-image: none; }
  4723. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4724. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  4725. .x-nlg.x-opera .x-panel-header-default-framed-top,
  4726. .x-nlg.x-safari .x-panel-header-default-framed-top {
  4727. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4728. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4729. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  4730. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  4731. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  4732. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4733. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4734. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  4735. .x-nlg.x-opera .x-panel-header-default-framed-left,
  4736. .x-nlg.x-safari .x-panel-header-default-framed-left {
  4737. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4738. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4739. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  4740. .x-nlg.x-opera .x-panel-header-default-framed-right,
  4741. .x-nlg.x-safari .x-panel-header-default-framed-right {
  4742. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4743. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4744. .x-panel-header-text-default-framed {
  4745. color: #04408c;
  4746. font-size: 11px;
  4747. font-weight: bold;
  4748. font-family: tahoma, arial, verdana, sans-serif;
  4749. line-height: 17px; }
  4750. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4751. .x-panel-body-default-framed {
  4752. background: #dfe9f6;
  4753. border-color: #99bce8;
  4754. color: black;
  4755. border-width: 0;
  4756. border-style: solid; }
  4757. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4758. .x-panel-collapsed .x-window-header-default-framed,
  4759. .x-panel-collapsed .x-panel-header-default-framed {
  4760. border-color: #99bce8; }
  4761. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4762. .x-panel-header-default-framed-vertical {
  4763. border-color: #99bce8; }
  4764. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4765. .x-panel-default-framed {
  4766. padding: 4px 4px 4px 4px;
  4767. border-width: 1px;
  4768. border-style: solid;
  4769. background-color: #dfe9f6; }
  4770. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4771. .x-nlg .x-panel-default-framed-mc {
  4772. background-color: #dfe9f6; }
  4773. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4774. .x-nbr .x-panel-default-framed {
  4775. padding: 0 !important;
  4776. border-width: 0 !important;
  4777. -webkit-border-radius: 0px;
  4778. -moz-border-radius: 0px;
  4779. -ms-border-radius: 0px;
  4780. -o-border-radius: 0px;
  4781. border-radius: 0px;
  4782. background-color: transparent;
  4783. background-position: 1000404px 1000404px; }
  4784. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4785. .x-nbr .x-panel-default-framed-tl,
  4786. .x-nbr .x-panel-default-framed-bl,
  4787. .x-nbr .x-panel-default-framed-tr,
  4788. .x-nbr .x-panel-default-framed-br,
  4789. .x-nbr .x-panel-default-framed-tc,
  4790. .x-nbr .x-panel-default-framed-bc,
  4791. .x-nbr .x-panel-default-framed-ml,
  4792. .x-nbr .x-panel-default-framed-mr {
  4793. zoom: 1;
  4794. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  4795. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4796. .x-nbr .x-panel-default-framed-ml,
  4797. .x-nbr .x-panel-default-framed-mr {
  4798. zoom: 1;
  4799. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
  4800. background-position: 0 0;
  4801. background-repeat: repeat-y; }
  4802. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4803. .x-nbr .x-panel-default-framed-mc {
  4804. padding: 1px 1px 1px 1px; }
  4805. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4806. .x-strict .x-ie7 .x-panel-default-framed-tl,
  4807. .x-strict .x-ie7 .x-panel-default-framed-bl {
  4808. position: relative;
  4809. right: 0; }
  4810. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4811. .x-panel-header-default-framed-top {
  4812. padding: 3px 5px 4px 5px;
  4813. border-width: 1px 1px 0 1px;
  4814. border-style: solid;
  4815. background-color: #cbddf3; }
  4816. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4817. .x-nlg .x-panel-header-default-framed-top-mc {
  4818. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4819. background-color: #cbddf3; }
  4820. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4821. .x-nbr .x-panel-header-default-framed-top {
  4822. padding: 0 !important;
  4823. border-width: 0 !important;
  4824. -webkit-border-radius: 0px;
  4825. -moz-border-radius: 0px;
  4826. -ms-border-radius: 0px;
  4827. -o-border-radius: 0px;
  4828. border-radius: 0px;
  4829. background-color: transparent;
  4830. background-position: 1000404px 1000000px; }
  4831. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4832. .x-nbr .x-panel-header-default-framed-top-tl,
  4833. .x-nbr .x-panel-header-default-framed-top-bl,
  4834. .x-nbr .x-panel-header-default-framed-top-tr,
  4835. .x-nbr .x-panel-header-default-framed-top-br,
  4836. .x-nbr .x-panel-header-default-framed-top-tc,
  4837. .x-nbr .x-panel-header-default-framed-top-bc,
  4838. .x-nbr .x-panel-header-default-framed-top-ml,
  4839. .x-nbr .x-panel-header-default-framed-top-mr {
  4840. zoom: 1;
  4841. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif'); }
  4842. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4843. .x-nbr .x-panel-header-default-framed-top-ml,
  4844. .x-nbr .x-panel-header-default-framed-top-mr {
  4845. zoom: 1;
  4846. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
  4847. background-position: 0 0; }
  4848. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4849. .x-nbr .x-panel-header-default-framed-top-mc {
  4850. padding: 0px 2px 4px 2px; }
  4851. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4852. .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
  4853. .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  4854. position: relative;
  4855. right: 0; }
  4856. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4857. .x-panel-header-default-framed-right {
  4858. padding: 5px 4px 5px 4px;
  4859. border-width: 1px 1px 1px 0;
  4860. border-style: solid;
  4861. background-color: #cbddf3; }
  4862. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4863. .x-nlg .x-panel-header-default-framed-right-mc {
  4864. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4865. background-color: #cbddf3; }
  4866. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4867. .x-nbr .x-panel-header-default-framed-right {
  4868. padding: 0 !important;
  4869. border-width: 0 !important;
  4870. -webkit-border-radius: 0px;
  4871. -moz-border-radius: 0px;
  4872. -ms-border-radius: 0px;
  4873. -o-border-radius: 0px;
  4874. border-radius: 0px;
  4875. background-color: transparent;
  4876. background-position: 1000004px 1100400px; }
  4877. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4878. .x-nbr .x-panel-header-default-framed-right-tl,
  4879. .x-nbr .x-panel-header-default-framed-right-bl,
  4880. .x-nbr .x-panel-header-default-framed-right-tr,
  4881. .x-nbr .x-panel-header-default-framed-right-br,
  4882. .x-nbr .x-panel-header-default-framed-right-tc,
  4883. .x-nbr .x-panel-header-default-framed-right-bc,
  4884. .x-nbr .x-panel-header-default-framed-right-ml,
  4885. .x-nbr .x-panel-header-default-framed-right-mr {
  4886. zoom: 1;
  4887. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif'); }
  4888. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4889. .x-nbr .x-panel-header-default-framed-right-tc,
  4890. .x-nbr .x-panel-header-default-framed-right-bc {
  4891. zoom: 1;
  4892. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
  4893. background-position: 0 0;
  4894. background-repeat: repeat-x; }
  4895. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4896. .x-nbr .x-panel-header-default-framed-right-mc {
  4897. padding: 2px 1px 2px 4px; }
  4898. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4899. .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
  4900. .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  4901. position: relative;
  4902. right: 0; }
  4903. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4904. .x-panel-header-default-framed-bottom {
  4905. padding: 3px 5px 4px 5px;
  4906. border-width: 0 1px 1px 1px;
  4907. border-style: solid;
  4908. background-color: #cbddf3; }
  4909. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4910. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4911. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4912. background-color: #cbddf3; }
  4913. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4914. .x-nbr .x-panel-header-default-framed-bottom {
  4915. padding: 0 !important;
  4916. border-width: 0 !important;
  4917. -webkit-border-radius: 0px;
  4918. -moz-border-radius: 0px;
  4919. -ms-border-radius: 0px;
  4920. -o-border-radius: 0px;
  4921. border-radius: 0px;
  4922. background-color: transparent;
  4923. background-position: 1000000px 1000404px; }
  4924. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4925. .x-nbr .x-panel-header-default-framed-bottom-tl,
  4926. .x-nbr .x-panel-header-default-framed-bottom-bl,
  4927. .x-nbr .x-panel-header-default-framed-bottom-tr,
  4928. .x-nbr .x-panel-header-default-framed-bottom-br,
  4929. .x-nbr .x-panel-header-default-framed-bottom-tc,
  4930. .x-nbr .x-panel-header-default-framed-bottom-bc,
  4931. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4932. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4933. zoom: 1;
  4934. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif'); }
  4935. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4936. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4937. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4938. zoom: 1;
  4939. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
  4940. background-position: 0 0; }
  4941. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4942. .x-nbr .x-panel-header-default-framed-bottom-mc {
  4943. padding: 3px 2px 1px 2px; }
  4944. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4945. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
  4946. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  4947. position: relative;
  4948. right: 0; }
  4949. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4950. .x-panel-header-default-framed-left {
  4951. padding: 5px 4px 5px 4px;
  4952. border-width: 1px 0 1px 1px;
  4953. border-style: solid;
  4954. background-color: #cbddf3; }
  4955. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4956. .x-nlg .x-panel-header-default-framed-left-mc {
  4957. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4958. background-color: #cbddf3; }
  4959. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4960. .x-nbr .x-panel-header-default-framed-left {
  4961. padding: 0 !important;
  4962. border-width: 0 !important;
  4963. -webkit-border-radius: 0px;
  4964. -moz-border-radius: 0px;
  4965. -ms-border-radius: 0px;
  4966. -o-border-radius: 0px;
  4967. border-radius: 0px;
  4968. background-color: transparent;
  4969. background-position: 1000400px 1100004px; }
  4970. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4971. .x-nbr .x-panel-header-default-framed-left-tl,
  4972. .x-nbr .x-panel-header-default-framed-left-bl,
  4973. .x-nbr .x-panel-header-default-framed-left-tr,
  4974. .x-nbr .x-panel-header-default-framed-left-br,
  4975. .x-nbr .x-panel-header-default-framed-left-tc,
  4976. .x-nbr .x-panel-header-default-framed-left-bc,
  4977. .x-nbr .x-panel-header-default-framed-left-ml,
  4978. .x-nbr .x-panel-header-default-framed-left-mr {
  4979. zoom: 1;
  4980. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif'); }
  4981. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4982. .x-nbr .x-panel-header-default-framed-left-tc,
  4983. .x-nbr .x-panel-header-default-framed-left-bc {
  4984. zoom: 1;
  4985. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
  4986. background-position: 0 0;
  4987. background-repeat: repeat-x; }
  4988. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4989. .x-nbr .x-panel-header-default-framed-left-mc {
  4990. padding: 2px 4px 2px 1px; }
  4991. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4992. .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
  4993. .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  4994. position: relative;
  4995. right: 0; }
  4996. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4997. .x-panel-header-default-framed-top {
  4998. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4999. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5000. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5001. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5002. .x-panel-header-default-framed-right {
  5003. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  5004. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  5005. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  5006. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5007. .x-panel-header-default-framed-bottom {
  5008. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5009. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5010. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5011. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5012. .x-panel-header-default-framed-left {
  5013. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5014. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  5015. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  5016. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5017. .x-panel .x-panel-header-default-framed-top {
  5018. border-bottom-width: 1px !important; }
  5019. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5020. .x-panel .x-panel-header-default-framed-right {
  5021. border-left-width: 1px !important; }
  5022. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5023. .x-panel .x-panel-header-default-framed-bottom {
  5024. border-top-width: 1px !important; }
  5025. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5026. .x-panel .x-panel-header-default-framed-left {
  5027. border-right-width: 1px !important; }
  5028. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5029. .x-panel-header-default-framed-collapsed {
  5030. -webkit-border-radius: 4px;
  5031. -moz-border-radius: 4px;
  5032. -ms-border-radius: 4px;
  5033. -o-border-radius: 4px;
  5034. border-radius: 4px; }
  5035. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5036. .x-panel-header-default-framed-collapsed-top {
  5037. padding: 3px 5px 4px 5px;
  5038. border-width: 1px;
  5039. border-style: solid;
  5040. background-color: #cbddf3; }
  5041. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5042. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  5043. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  5044. background-color: #cbddf3; }
  5045. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5046. .x-nbr .x-panel-header-default-framed-collapsed-top {
  5047. padding: 0 !important;
  5048. border-width: 0 !important;
  5049. -webkit-border-radius: 0px;
  5050. -moz-border-radius: 0px;
  5051. -ms-border-radius: 0px;
  5052. -o-border-radius: 0px;
  5053. border-radius: 0px;
  5054. background-color: transparent;
  5055. background-position: 1000404px 1000404px; }
  5056. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5057. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
  5058. .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
  5059. .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
  5060. .x-nbr .x-panel-header-default-framed-collapsed-top-br,
  5061. .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
  5062. .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
  5063. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5064. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5065. zoom: 1;
  5066. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
  5067. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5068. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5069. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5070. zoom: 1;
  5071. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  5072. background-position: 0 0; }
  5073. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5074. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  5075. padding: 0px 2px 1px 2px; }
  5076. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5077. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
  5078. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  5079. position: relative;
  5080. right: 0; }
  5081. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5082. .x-panel-header-default-framed-collapsed-right {
  5083. padding: 5px 4px 5px 4px;
  5084. border-width: 1px;
  5085. border-style: solid;
  5086. background-color: #cbddf3; }
  5087. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5088. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  5089. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  5090. background-color: #cbddf3; }
  5091. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5092. .x-nbr .x-panel-header-default-framed-collapsed-right {
  5093. padding: 0 !important;
  5094. border-width: 0 !important;
  5095. -webkit-border-radius: 0px;
  5096. -moz-border-radius: 0px;
  5097. -ms-border-radius: 0px;
  5098. -o-border-radius: 0px;
  5099. border-radius: 0px;
  5100. background-color: transparent;
  5101. background-position: 1000404px 1100404px; }
  5102. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5103. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
  5104. .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
  5105. .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
  5106. .x-nbr .x-panel-header-default-framed-collapsed-right-br,
  5107. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5108. .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
  5109. .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
  5110. .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
  5111. zoom: 1;
  5112. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
  5113. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5114. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5115. .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
  5116. zoom: 1;
  5117. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  5118. background-position: 0 0;
  5119. background-repeat: repeat-x; }
  5120. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5121. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  5122. padding: 2px 1px 2px 1px; }
  5123. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5124. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
  5125. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  5126. position: relative;
  5127. right: 0; }
  5128. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5129. .x-panel-header-default-framed-collapsed-bottom {
  5130. padding: 3px 5px 4px 5px;
  5131. border-width: 1px;
  5132. border-style: solid;
  5133. background-color: #cbddf3; }
  5134. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5135. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  5136. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  5137. background-color: #cbddf3; }
  5138. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5139. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  5140. padding: 0 !important;
  5141. border-width: 0 !important;
  5142. -webkit-border-radius: 0px;
  5143. -moz-border-radius: 0px;
  5144. -ms-border-radius: 0px;
  5145. -o-border-radius: 0px;
  5146. border-radius: 0px;
  5147. background-color: transparent;
  5148. background-position: 1000404px 1000404px; }
  5149. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5150. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
  5151. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
  5152. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
  5153. .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
  5154. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
  5155. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
  5156. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5157. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5158. zoom: 1;
  5159. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
  5160. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5161. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5162. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5163. zoom: 1;
  5164. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  5165. background-position: 0 0; }
  5166. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5167. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  5168. padding: 0px 2px 1px 2px; }
  5169. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5170. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
  5171. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  5172. position: relative;
  5173. right: 0; }
  5174. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5175. .x-panel-header-default-framed-collapsed-left {
  5176. padding: 5px 4px 5px 4px;
  5177. border-width: 1px;
  5178. border-style: solid;
  5179. background-color: #cbddf3; }
  5180. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5181. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  5182. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  5183. background-color: #cbddf3; }
  5184. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5185. .x-nbr .x-panel-header-default-framed-collapsed-left {
  5186. padding: 0 !important;
  5187. border-width: 0 !important;
  5188. -webkit-border-radius: 0px;
  5189. -moz-border-radius: 0px;
  5190. -ms-border-radius: 0px;
  5191. -o-border-radius: 0px;
  5192. border-radius: 0px;
  5193. background-color: transparent;
  5194. background-position: 1000404px 1100404px; }
  5195. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5196. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
  5197. .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
  5198. .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
  5199. .x-nbr .x-panel-header-default-framed-collapsed-left-br,
  5200. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5201. .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
  5202. .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
  5203. .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
  5204. zoom: 1;
  5205. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
  5206. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5207. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5208. .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
  5209. zoom: 1;
  5210. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  5211. background-position: 0 0;
  5212. background-repeat: repeat-x; }
  5213. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5214. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  5215. padding: 2px 1px 2px 1px; }
  5216. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5217. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
  5218. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  5219. position: relative;
  5220. right: 0; }
  5221. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5222. .x-panel-header-default-framed-right-tc,
  5223. .x-panel-header-default-framed-right-mc,
  5224. .x-panel-header-default-framed-right-bc {
  5225. background-position: right 0; }
  5226. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5227. .x-panel-header-default-framed-bottom-tc,
  5228. .x-panel-header-default-framed-bottom-mc,
  5229. .x-panel-header-default-framed-bottom-bc {
  5230. background-position: 0 bottom; }
  5231. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5232. .x-panel-header-plain,
  5233. .x-panel-body-plain {
  5234. border: 0;
  5235. padding: 0; }
  5236. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5237. .x-tip {
  5238. position: absolute;
  5239. overflow: visible;
  5240. /*pointer needs to be able to stick out*/
  5241. border-color: #8eaace; }
  5242. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5243. .x-tip .x-tip-header .x-box-item {
  5244. padding: 3px 3px 0; }
  5245. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5246. .x-tip .x-tip-header .x-tool {
  5247. padding: 0px 1px 0 0 !important; }
  5248. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5249. .x-tip {
  5250. padding: 2px 2px 2px 2px;
  5251. border-width: 1px;
  5252. border-style: solid;
  5253. background-color: #e9f2ff; }
  5254. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5255. .x-nlg .x-tip-mc {
  5256. background-color: #e9f2ff; }
  5257. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5258. .x-nbr .x-tip {
  5259. padding: 0 !important;
  5260. border-width: 0 !important;
  5261. -webkit-border-radius: 0px;
  5262. -moz-border-radius: 0px;
  5263. -ms-border-radius: 0px;
  5264. -o-border-radius: 0px;
  5265. border-radius: 0px;
  5266. background-color: transparent;
  5267. background-position: 1100303px 1000303px; }
  5268. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5269. .x-nbr .x-tip-tl,
  5270. .x-nbr .x-tip-bl,
  5271. .x-nbr .x-tip-tr,
  5272. .x-nbr .x-tip-br,
  5273. .x-nbr .x-tip-tc,
  5274. .x-nbr .x-tip-bc,
  5275. .x-nbr .x-tip-ml,
  5276. .x-nbr .x-tip-mr {
  5277. zoom: 1;
  5278. background-image: url('../../resources/themes/images/default/tip/tip-corners.gif'); }
  5279. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5280. .x-nbr .x-tip-ml,
  5281. .x-nbr .x-tip-mr {
  5282. zoom: 1;
  5283. background-image: url('../../resources/themes/images/default/tip/tip-sides.gif');
  5284. background-position: 0 0;
  5285. background-repeat: repeat-y; }
  5286. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5287. .x-nbr .x-tip-mc {
  5288. padding: 0px 0px 0px 0px; }
  5289. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5290. .x-strict .x-ie7 .x-tip-tl,
  5291. .x-strict .x-ie7 .x-tip-bl {
  5292. position: relative;
  5293. right: 0; }
  5294. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5295. .x-tip-header-text {
  5296. user-select: none;
  5297. -o-user-select: none;
  5298. -ms-user-select: none;
  5299. -moz-user-select: -moz-none;
  5300. -webkit-user-select: none;
  5301. cursor: default;
  5302. color: #444444;
  5303. font-size: 11px;
  5304. font-weight: bold; }
  5305. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5306. .x-tip-header-draggable .x-tip-header-text {
  5307. cursor: move; }
  5308. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5309. .x-tip-body,
  5310. .x-form-invalid-tip-body {
  5311. overflow: hidden;
  5312. position: relative;
  5313. padding: 3px; }
  5314. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5315. .x-tip-header,
  5316. .x-tip-body,
  5317. .x-form-invalid-tip-body {
  5318. color: #444444;
  5319. font-size: 11px;
  5320. font-weight: normal; }
  5321. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5322. .x-tip-header a,
  5323. .x-tip-body a,
  5324. .x-form-invalid-tip-body a {
  5325. color: #2a2a2a; }
  5326. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5327. .x-tip-anchor {
  5328. position: absolute;
  5329. overflow: hidden;
  5330. height: 0;
  5331. width: 0;
  5332. border-style: solid;
  5333. border-width: 5px;
  5334. border-color: #8eaace;
  5335. zoom: 1; }
  5336. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5337. .x-border-box .x-tip-anchor {
  5338. width: 10px;
  5339. height: 10px; }
  5340. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5341. .x-tip-anchor-top {
  5342. border-top-color: transparent;
  5343. border-left-color: transparent;
  5344. border-right-color: transparent;
  5345. _border-top-color: pink;
  5346. _border-left-color: pink;
  5347. _border-right-color: pink;
  5348. _filter: chroma(color=pink); }
  5349. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5350. .x-tip-anchor-bottom {
  5351. border-bottom-color: transparent;
  5352. border-left-color: transparent;
  5353. border-right-color: transparent;
  5354. _border-bottom-color: pink;
  5355. _border-left-color: pink;
  5356. _border-right-color: pink;
  5357. _filter: chroma(color=pink); }
  5358. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5359. .x-tip-anchor-left {
  5360. border-top-color: transparent;
  5361. border-bottom-color: transparent;
  5362. border-left-color: transparent;
  5363. _border-top-color: pink;
  5364. _border-bottom-color: pink;
  5365. _border-left-color: pink;
  5366. _filter: chroma(color=pink); }
  5367. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5368. .x-tip-anchor-right {
  5369. border-top-color: transparent;
  5370. border-bottom-color: transparent;
  5371. border-right-color: transparent;
  5372. _border-top-color: pink;
  5373. _border-bottom-color: pink;
  5374. _border-right-color: pink;
  5375. _filter: chroma(color=pink); }
  5376. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5377. .x-form-invalid-tip {
  5378. border-color: #a1311f;
  5379. -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;
  5380. -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;
  5381. 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; }
  5382. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5383. .x-form-invalid-tip-body {
  5384. background: 1px 1px no-repeat;
  5385. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  5386. padding-left: 22px; }
  5387. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5388. .x-form-invalid-tip-body li {
  5389. margin-bottom: 4px; }
  5390. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5391. .x-form-invalid-tip-body li.last {
  5392. margin-bottom: 0; }
  5393. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5394. .x-form-invalid-tip-default {
  5395. padding: 4px 4px 4px 4px;
  5396. border-width: 1px;
  5397. border-style: solid;
  5398. background-color: white; }
  5399. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5400. .x-nlg .x-form-invalid-tip-default-mc {
  5401. background-color: white; }
  5402. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5403. .x-nbr .x-form-invalid-tip-default {
  5404. padding: 0 !important;
  5405. border-width: 0 !important;
  5406. -webkit-border-radius: 0px;
  5407. -moz-border-radius: 0px;
  5408. -ms-border-radius: 0px;
  5409. -o-border-radius: 0px;
  5410. border-radius: 0px;
  5411. background-color: transparent;
  5412. background-position: 1100505px 1000505px; }
  5413. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5414. .x-nbr .x-form-invalid-tip-default-tl,
  5415. .x-nbr .x-form-invalid-tip-default-bl,
  5416. .x-nbr .x-form-invalid-tip-default-tr,
  5417. .x-nbr .x-form-invalid-tip-default-br,
  5418. .x-nbr .x-form-invalid-tip-default-tc,
  5419. .x-nbr .x-form-invalid-tip-default-bc,
  5420. .x-nbr .x-form-invalid-tip-default-ml,
  5421. .x-nbr .x-form-invalid-tip-default-mr {
  5422. zoom: 1;
  5423. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
  5424. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5425. .x-nbr .x-form-invalid-tip-default-ml,
  5426. .x-nbr .x-form-invalid-tip-default-mr {
  5427. zoom: 1;
  5428. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
  5429. background-position: 0 0;
  5430. background-repeat: repeat-y; }
  5431. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5432. .x-nbr .x-form-invalid-tip-default-mc {
  5433. padding: 0px 0px 0px 0px; }
  5434. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5435. .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
  5436. .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
  5437. position: relative;
  5438. right: 0; }
  5439. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5440. .x-slider {
  5441. zoom: 1; }
  5442. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5443. .x-slider-inner {
  5444. position: relative;
  5445. left: 0;
  5446. top: 0;
  5447. overflow: visible;
  5448. zoom: 1; }
  5449. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5450. .x-slider-focus {
  5451. position: absolute;
  5452. left: 0;
  5453. top: 0;
  5454. width: 1px;
  5455. height: 1px;
  5456. line-height: 1px;
  5457. font-size: 1px;
  5458. -moz-outline: 0 none;
  5459. outline: 0 none;
  5460. user-select: none;
  5461. -o-user-select: none;
  5462. -ms-user-select: none;
  5463. -moz-user-select: -moz-none;
  5464. -webkit-user-select: none;
  5465. cursor: default;
  5466. display: block;
  5467. overflow: hidden; }
  5468. /* Horizontal styles */
  5469. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5470. .x-slider-horz {
  5471. padding-left: 7px;
  5472. background: transparent no-repeat 0 -24px;
  5473. width: 100%; }
  5474. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5475. .x-slider-horz .x-slider-end {
  5476. padding-right: 7px;
  5477. zoom: 1;
  5478. background: transparent no-repeat right -46px; }
  5479. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5480. .x-slider-horz .x-slider-inner {
  5481. background: transparent repeat-x 0 -2px;
  5482. height: 18px; }
  5483. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5484. .x-slider-horz .x-slider-thumb {
  5485. width: 14px;
  5486. height: 15px;
  5487. margin-left: -7px;
  5488. position: absolute;
  5489. left: 0;
  5490. top: 1px;
  5491. background: transparent no-repeat 0 0; }
  5492. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5493. .x-slider-horz .x-slider-thumb-over {
  5494. background-position: -14px -15px; }
  5495. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5496. .x-slider-horz .x-slider-thumb-drag {
  5497. background-position: -28px -30px; }
  5498. /* Vertical styles */
  5499. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5500. .x-slider-vert {
  5501. padding-top: 7px;
  5502. background: transparent no-repeat -44px 0; }
  5503. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5504. .x-slider-vert .x-slider-end {
  5505. padding-bottom: 7px;
  5506. zoom: 1;
  5507. background: transparent no-repeat -22px bottom;
  5508. width: 22px; }
  5509. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5510. .x-slider-vert .x-slider-inner {
  5511. background: transparent repeat-y 0 0;
  5512. width: 22px; }
  5513. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5514. .x-slider-vert .x-slider-thumb {
  5515. width: 15px;
  5516. height: 14px;
  5517. margin-bottom: -7px;
  5518. position: absolute;
  5519. left: 3px;
  5520. bottom: 0;
  5521. background: transparent no-repeat 0 0; }
  5522. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5523. .x-slider-vert .x-slider-thumb-over {
  5524. background-position: -15px -14px; }
  5525. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5526. .x-slider-vert .x-slider-thumb-drag {
  5527. background-position: -30px -28px; }
  5528. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5529. .x-slider-horz,
  5530. .x-slider-horz .x-slider-end,
  5531. .x-slider-horz .x-slider-inner {
  5532. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  5533. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5534. .x-slider-horz .x-slider-thumb {
  5535. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  5536. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5537. .x-slider-vert,
  5538. .x-slider-vert .x-slider-end,
  5539. .x-slider-vert .x-slider-inner {
  5540. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  5541. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5542. .x-slider-vert .x-slider-thumb {
  5543. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  5544. /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5545. .x-ie6 .x-slider-horz,
  5546. .x-ie6 .x-slider-horz .x-slider-end,
  5547. .x-ie6 .x-slider-horz .x-slider-inner {
  5548. background-image: url('../../resources/themes/images/default/slider/slider-bg.gif'); }
  5549. /* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5550. .x-ie6 .x-slider-horz .x-slider-thumb {
  5551. background-image: url('../../resources/themes/images/default/slider/slider-thumb.gif'); }
  5552. /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5553. .x-ie6 .x-slider-vert,
  5554. .x-ie6 .x-slider-vert .x-slider-end,
  5555. .x-ie6 .x-slider-vert .x-slider-inner {
  5556. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.gif'); }
  5557. /* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5558. .x-ie6 .x-slider-vert .x-slider-thumb {
  5559. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.gif'); }
  5560. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5561. .x-progress {
  5562. position: relative;
  5563. border-width: 1px;
  5564. border-style: solid;
  5565. -webkit-border-radius: 0;
  5566. -moz-border-radius: 0;
  5567. -ms-border-radius: 0;
  5568. -o-border-radius: 0;
  5569. border-radius: 0;
  5570. overflow: hidden;
  5571. height: 20px; }
  5572. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5573. .x-progress-bar {
  5574. height: 18px;
  5575. overflow: hidden;
  5576. position: absolute;
  5577. width: 0;
  5578. -webkit-border-radius: 0;
  5579. -moz-border-radius: 0;
  5580. -ms-border-radius: 0;
  5581. -o-border-radius: 0;
  5582. border-radius: 0;
  5583. border-right: 1px solid;
  5584. border-top: 1px solid; }
  5585. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5586. .x-progress-text {
  5587. overflow: hidden;
  5588. position: absolute;
  5589. padding: 0 5px;
  5590. height: 18px;
  5591. font-weight: bold;
  5592. font-size: 11px;
  5593. line-height: 16px;
  5594. text-align: center; }
  5595. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5596. .x-progress-text-back {
  5597. padding-top: 1px; }
  5598. /* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5599. .x-strict .x-ie7m .x-progress {
  5600. height: 18px; }
  5601. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5602. .x-progress-default {
  5603. border-color: #6594cf; }
  5604. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5605. .x-progress-default .x-progress-bar {
  5606. border-right-color: #6594cf;
  5607. border-top-color: #c6d8ed;
  5608. background-image: none;
  5609. background-color: #73a3e0;
  5610. 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));
  5611. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5612. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5613. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5614. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5615. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  5616. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5617. .x-progress-default .x-progress-text {
  5618. color: white; }
  5619. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5620. .x-progress-default .x-progress-text-back {
  5621. color: #396295; }
  5622. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5623. .x-nlg .x-progress-default .x-progress-bar {
  5624. background: repeat-x;
  5625. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  5626. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5627. .x-toolbar {
  5628. font-size: 11px;
  5629. border: 1px solid;
  5630. padding: 2px 0 2px 2px; }
  5631. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5632. .x-toolbar .x-form-item-label {
  5633. font-size: 11px;
  5634. line-height: 15px; }
  5635. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5636. .x-toolbar .x-toolbar-item {
  5637. margin: 0 2px 0 0; }
  5638. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5639. .x-toolbar .x-toolbar-text {
  5640. margin-left: 4px;
  5641. margin-right: 6px;
  5642. white-space: nowrap;
  5643. color: #4c4c4c;
  5644. line-height: 16px;
  5645. font-family: tahoma, arial, verdana, sans-serif;
  5646. font-size: 11px;
  5647. font-weight: normal; }
  5648. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5649. .x-toolbar .x-toolbar-separator {
  5650. display: block;
  5651. font-size: 1px;
  5652. overflow: hidden;
  5653. cursor: default;
  5654. border: 0; }
  5655. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5656. .x-toolbar .x-toolbar-separator-horizontal {
  5657. margin: 0 3px 0 2px;
  5658. height: 14px;
  5659. width: 0px;
  5660. border-left: 1px solid #98c8ff;
  5661. border-right: 1px solid white; }
  5662. /* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5663. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  5664. width: 2px; }
  5665. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5666. .x-toolbar-footer {
  5667. background: transparent;
  5668. border: 0px none;
  5669. margin-top: 3px;
  5670. padding: 2px 0 2px 6px; }
  5671. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5672. .x-toolbar-footer .x-box-inner {
  5673. border-width: 0; }
  5674. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5675. .x-toolbar-footer .x-toolbar-item {
  5676. margin: 0 6px 0 0; }
  5677. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5678. .x-toolbar-vertical {
  5679. padding: 2px 2px 0 2px; }
  5680. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5681. .x-toolbar-vertical .x-toolbar-item {
  5682. margin: 0 0 2px 0; }
  5683. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5684. .x-toolbar-vertical .x-toolbar-text {
  5685. margin-top: 4px;
  5686. margin-bottom: 6px; }
  5687. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5688. .x-toolbar-vertical .x-toolbar-separator-vertical {
  5689. margin: 2px 5px 3px 5px;
  5690. height: 0px;
  5691. width: 10px;
  5692. line-height: 0px;
  5693. border-top: 1px solid #98c8ff;
  5694. border-bottom: 1px solid white; }
  5695. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5696. .x-toolbar-scroller {
  5697. padding-left: 0; }
  5698. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5699. .x-toolbar-spacer {
  5700. width: 2px; }
  5701. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5702. .x-toolbar-more-icon {
  5703. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  5704. background-position: 2px center !important;
  5705. background-repeat: no-repeat; }
  5706. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5707. .x-toolbar-default {
  5708. border-color: #99bce8;
  5709. background-image: none;
  5710. background-color: #d3e1f1;
  5711. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  5712. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  5713. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  5714. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  5715. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  5716. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  5717. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5718. .x-nlg .x-toolbar-default {
  5719. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  5720. background-repeat: repeat-x; }
  5721. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5722. .x-toolbar-plain {
  5723. border: 0; }
  5724. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5725. .x-window {
  5726. outline: none;
  5727. overflow: hidden; }
  5728. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5729. .x-window .x-window-wrap {
  5730. position: relative; }
  5731. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5732. .x-window-body {
  5733. position: relative;
  5734. border-style: solid;
  5735. overflow: hidden; }
  5736. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5737. .x-window-maximized .x-window-wrap .x-window-header {
  5738. -moz-border-radius: 0 !important;
  5739. -webkit-border-radius: 0 !important;
  5740. -o-border-radius: 0 !important;
  5741. -ms-border-radius: 0 !important;
  5742. -khtml-border-radius: 0 !important;
  5743. border-radius: 0 !important; }
  5744. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5745. .x-window-header-top {
  5746. margin-bottom: -2px; }
  5747. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5748. .x-window-header-body-horizontal {
  5749. margin-top: -1px; }
  5750. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5751. .x-window-header-bottom {
  5752. margin-top: -1px;
  5753. margin-bottom: -1px; }
  5754. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5755. .x-window-header-left {
  5756. margin-right: -1px; }
  5757. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5758. .x-window-header-right {
  5759. margin-left: -1px; }
  5760. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5761. .x-window-header-vertical .x-surface {
  5762. padding-left: 1px; }
  5763. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5764. .x-window-collapsed .x-window-header-vertical {
  5765. -webkit-border-radius: 5px;
  5766. -moz-border-radius: 5px;
  5767. -ms-border-radius: 5px;
  5768. -o-border-radius: 5px;
  5769. border-radius: 5px; }
  5770. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5771. .x-window-collapsed .x-window-header-horizontal {
  5772. -webkit-border-radius: 5px;
  5773. -moz-border-radius: 5px;
  5774. -ms-border-radius: 5px;
  5775. -o-border-radius: 5px;
  5776. border-radius: 5px; }
  5777. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5778. .x-window-collapsed .x-window-header-left {
  5779. padding-right: 5px !important;
  5780. margin-right: 0; }
  5781. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5782. .x-window-collapsed .x-window-header-right {
  5783. padding-left: 5px !important;
  5784. margin-left: 0; }
  5785. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5786. .x-window-collapsed .x-window-header-top {
  5787. padding-bottom: 5px !important;
  5788. margin-bottom: -1px; }
  5789. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5790. .x-window-collapsed .x-window-header-bottom {
  5791. padding-top: 5px !important;
  5792. margin-top: 0; }
  5793. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5794. .x-window-header-left .x-vml-base,
  5795. .x-window-header-right .x-vml-base {
  5796. left: -3px !important; }
  5797. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5798. .x-opera .x-window-header-vertical .x-surface,
  5799. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  5800. padding-left: 2px; }
  5801. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5802. .x-window-header-text-container {
  5803. overflow: hidden;
  5804. -o-text-overflow: ellipsis;
  5805. text-overflow: ellipsis; }
  5806. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5807. .x-window-header-text {
  5808. user-select: none;
  5809. -o-user-select: none;
  5810. -ms-user-select: none;
  5811. -moz-user-select: -moz-none;
  5812. -webkit-user-select: none;
  5813. cursor: default;
  5814. white-space: nowrap; }
  5815. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5816. .x-window-default {
  5817. border-color: #a2b1c5;
  5818. -webkit-border-radius: 5px 5px;
  5819. -moz-border-radius: 5px 5px;
  5820. -ms-border-radius: 5px 5px;
  5821. -o-border-radius: 5px 5px;
  5822. border-radius: 5px 5px;
  5823. -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;
  5824. -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;
  5825. 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; }
  5826. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5827. .x-window-default {
  5828. padding: 4px 4px 4px 4px;
  5829. border-width: 1px;
  5830. border-style: solid;
  5831. background-color: #ced9e7; }
  5832. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5833. .x-nlg .x-window-default-mc {
  5834. background-color: #ced9e7; }
  5835. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5836. .x-nbr .x-window-default {
  5837. padding: 0 !important;
  5838. border-width: 0 !important;
  5839. -webkit-border-radius: 0px;
  5840. -moz-border-radius: 0px;
  5841. -ms-border-radius: 0px;
  5842. -o-border-radius: 0px;
  5843. border-radius: 0px;
  5844. background-color: transparent;
  5845. background-position: 1000505px 1000505px; }
  5846. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5847. .x-nbr .x-window-default-tl,
  5848. .x-nbr .x-window-default-bl,
  5849. .x-nbr .x-window-default-tr,
  5850. .x-nbr .x-window-default-br,
  5851. .x-nbr .x-window-default-tc,
  5852. .x-nbr .x-window-default-bc,
  5853. .x-nbr .x-window-default-ml,
  5854. .x-nbr .x-window-default-mr {
  5855. zoom: 1;
  5856. background-image: url('../../resources/themes/images/default/window/window-default-corners.gif'); }
  5857. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5858. .x-nbr .x-window-default-ml,
  5859. .x-nbr .x-window-default-mr {
  5860. zoom: 1;
  5861. background-image: url('../../resources/themes/images/default/window/window-default-sides.gif');
  5862. background-position: 0 0;
  5863. background-repeat: repeat-y; }
  5864. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5865. .x-nbr .x-window-default-mc {
  5866. padding: 0px 0px 0px 0px; }
  5867. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5868. .x-strict .x-ie7 .x-window-default-tl,
  5869. .x-strict .x-ie7 .x-window-default-bl {
  5870. position: relative;
  5871. right: 0; }
  5872. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5873. .x-window-body-default {
  5874. border-color: #99bbe8;
  5875. border-width: 1px;
  5876. background: #dfe8f6;
  5877. color: black; }
  5878. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5879. .x-window-header-default {
  5880. font-size: 11px;
  5881. border-color: #a2b1c5;
  5882. zoom: 1; }
  5883. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5884. .x-window-header-text-default {
  5885. color: #04468c;
  5886. font-weight: bold;
  5887. line-height: 17px;
  5888. font-family: tahoma, arial, verdana, sans-serif;
  5889. font-size: 11px; }
  5890. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5891. .x-window-header-default-top {
  5892. padding: 4px 5px 0 5px;
  5893. border-width: 1px 1px 0 1px;
  5894. border-style: solid;
  5895. background-color: #ced9e7; }
  5896. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5897. .x-nlg .x-window-header-default-top-mc {
  5898. background-color: #ced9e7; }
  5899. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5900. .x-nbr .x-window-header-default-top {
  5901. padding: 0 !important;
  5902. border-width: 0 !important;
  5903. -webkit-border-radius: 0px;
  5904. -moz-border-radius: 0px;
  5905. -ms-border-radius: 0px;
  5906. -o-border-radius: 0px;
  5907. border-radius: 0px;
  5908. background-color: transparent;
  5909. background-position: 1000505px 1000000px; }
  5910. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5911. .x-nbr .x-window-header-default-top-tl,
  5912. .x-nbr .x-window-header-default-top-bl,
  5913. .x-nbr .x-window-header-default-top-tr,
  5914. .x-nbr .x-window-header-default-top-br,
  5915. .x-nbr .x-window-header-default-top-tc,
  5916. .x-nbr .x-window-header-default-top-bc,
  5917. .x-nbr .x-window-header-default-top-ml,
  5918. .x-nbr .x-window-header-default-top-mr {
  5919. zoom: 1;
  5920. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif'); }
  5921. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5922. .x-nbr .x-window-header-default-top-ml,
  5923. .x-nbr .x-window-header-default-top-mr {
  5924. zoom: 1;
  5925. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
  5926. background-position: 0 0;
  5927. background-repeat: repeat-y; }
  5928. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5929. .x-nbr .x-window-header-default-top-mc {
  5930. padding: 0px 1px 0 1px; }
  5931. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5932. .x-strict .x-ie7 .x-window-header-default-top-tl,
  5933. .x-strict .x-ie7 .x-window-header-default-top-bl {
  5934. position: relative;
  5935. right: 0; }
  5936. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5937. .x-window-header-default-right {
  5938. padding: 5px 4px 5px 0;
  5939. border-width: 1px 1px 1px 0;
  5940. border-style: solid;
  5941. background-color: #ced9e7; }
  5942. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5943. .x-nlg .x-window-header-default-right-mc {
  5944. background-color: #ced9e7; }
  5945. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5946. .x-nbr .x-window-header-default-right {
  5947. padding: 0 !important;
  5948. border-width: 0 !important;
  5949. -webkit-border-radius: 0px;
  5950. -moz-border-radius: 0px;
  5951. -ms-border-radius: 0px;
  5952. -o-border-radius: 0px;
  5953. border-radius: 0px;
  5954. background-color: transparent;
  5955. background-position: 1000005px 1000500px; }
  5956. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5957. .x-nbr .x-window-header-default-right-tl,
  5958. .x-nbr .x-window-header-default-right-bl,
  5959. .x-nbr .x-window-header-default-right-tr,
  5960. .x-nbr .x-window-header-default-right-br,
  5961. .x-nbr .x-window-header-default-right-tc,
  5962. .x-nbr .x-window-header-default-right-bc,
  5963. .x-nbr .x-window-header-default-right-ml,
  5964. .x-nbr .x-window-header-default-right-mr {
  5965. zoom: 1;
  5966. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif'); }
  5967. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5968. .x-nbr .x-window-header-default-right-ml,
  5969. .x-nbr .x-window-header-default-right-mr {
  5970. zoom: 1;
  5971. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
  5972. background-position: 0 0;
  5973. background-repeat: repeat-y; }
  5974. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5975. .x-nbr .x-window-header-default-right-mc {
  5976. padding: 1px 0px 1px 0; }
  5977. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5978. .x-strict .x-ie7 .x-window-header-default-right-tl,
  5979. .x-strict .x-ie7 .x-window-header-default-right-bl {
  5980. position: relative;
  5981. right: 0; }
  5982. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5983. .x-window-header-default-bottom {
  5984. padding: 0 5px 4px 5px;
  5985. border-width: 0 1px 1px 1px;
  5986. border-style: solid;
  5987. background-color: #ced9e7; }
  5988. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5989. .x-nlg .x-window-header-default-bottom-mc {
  5990. background-color: #ced9e7; }
  5991. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5992. .x-nbr .x-window-header-default-bottom {
  5993. padding: 0 !important;
  5994. border-width: 0 !important;
  5995. -webkit-border-radius: 0px;
  5996. -moz-border-radius: 0px;
  5997. -ms-border-radius: 0px;
  5998. -o-border-radius: 0px;
  5999. border-radius: 0px;
  6000. background-color: transparent;
  6001. background-position: 1000000px 1000505px; }
  6002. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6003. .x-nbr .x-window-header-default-bottom-tl,
  6004. .x-nbr .x-window-header-default-bottom-bl,
  6005. .x-nbr .x-window-header-default-bottom-tr,
  6006. .x-nbr .x-window-header-default-bottom-br,
  6007. .x-nbr .x-window-header-default-bottom-tc,
  6008. .x-nbr .x-window-header-default-bottom-bc,
  6009. .x-nbr .x-window-header-default-bottom-ml,
  6010. .x-nbr .x-window-header-default-bottom-mr {
  6011. zoom: 1;
  6012. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif'); }
  6013. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6014. .x-nbr .x-window-header-default-bottom-ml,
  6015. .x-nbr .x-window-header-default-bottom-mr {
  6016. zoom: 1;
  6017. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
  6018. background-position: 0 0;
  6019. background-repeat: repeat-y; }
  6020. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6021. .x-nbr .x-window-header-default-bottom-mc {
  6022. padding: 0 1px 0px 1px; }
  6023. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6024. .x-strict .x-ie7 .x-window-header-default-bottom-tl,
  6025. .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  6026. position: relative;
  6027. right: 0; }
  6028. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6029. .x-window-header-default-left {
  6030. padding: 5px 0px 5px 4px;
  6031. border-width: 1px 0 1px 1px;
  6032. border-style: solid;
  6033. background-color: #ced9e7; }
  6034. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6035. .x-nlg .x-window-header-default-left-mc {
  6036. background-color: #ced9e7; }
  6037. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6038. .x-nbr .x-window-header-default-left {
  6039. padding: 0 !important;
  6040. border-width: 0 !important;
  6041. -webkit-border-radius: 0px;
  6042. -moz-border-radius: 0px;
  6043. -ms-border-radius: 0px;
  6044. -o-border-radius: 0px;
  6045. border-radius: 0px;
  6046. background-color: transparent;
  6047. background-position: 1000500px 1000005px; }
  6048. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6049. .x-nbr .x-window-header-default-left-tl,
  6050. .x-nbr .x-window-header-default-left-bl,
  6051. .x-nbr .x-window-header-default-left-tr,
  6052. .x-nbr .x-window-header-default-left-br,
  6053. .x-nbr .x-window-header-default-left-tc,
  6054. .x-nbr .x-window-header-default-left-bc,
  6055. .x-nbr .x-window-header-default-left-ml,
  6056. .x-nbr .x-window-header-default-left-mr {
  6057. zoom: 1;
  6058. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif'); }
  6059. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6060. .x-nbr .x-window-header-default-left-ml,
  6061. .x-nbr .x-window-header-default-left-mr {
  6062. zoom: 1;
  6063. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
  6064. background-position: 0 0;
  6065. background-repeat: repeat-y; }
  6066. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6067. .x-nbr .x-window-header-default-left-mc {
  6068. padding: 1px 0px 1px 0px; }
  6069. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6070. .x-strict .x-ie7 .x-window-header-default-left-tl,
  6071. .x-strict .x-ie7 .x-window-header-default-left-bl {
  6072. position: relative;
  6073. right: 0; }
  6074. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6075. .x-window-header-default-collapsed-top {
  6076. padding: 4px 5px 4px 5px;
  6077. border-width: 1px;
  6078. border-style: solid;
  6079. background-color: #ced9e7; }
  6080. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6081. .x-nlg .x-window-header-default-collapsed-top-mc {
  6082. background-color: #ced9e7; }
  6083. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6084. .x-nbr .x-window-header-default-collapsed-top {
  6085. padding: 0 !important;
  6086. border-width: 0 !important;
  6087. -webkit-border-radius: 0px;
  6088. -moz-border-radius: 0px;
  6089. -ms-border-radius: 0px;
  6090. -o-border-radius: 0px;
  6091. border-radius: 0px;
  6092. background-color: transparent;
  6093. background-position: 1000505px 1000505px; }
  6094. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6095. .x-nbr .x-window-header-default-collapsed-top-tl,
  6096. .x-nbr .x-window-header-default-collapsed-top-bl,
  6097. .x-nbr .x-window-header-default-collapsed-top-tr,
  6098. .x-nbr .x-window-header-default-collapsed-top-br,
  6099. .x-nbr .x-window-header-default-collapsed-top-tc,
  6100. .x-nbr .x-window-header-default-collapsed-top-bc,
  6101. .x-nbr .x-window-header-default-collapsed-top-ml,
  6102. .x-nbr .x-window-header-default-collapsed-top-mr {
  6103. zoom: 1;
  6104. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-corners.gif'); }
  6105. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6106. .x-nbr .x-window-header-default-collapsed-top-ml,
  6107. .x-nbr .x-window-header-default-collapsed-top-mr {
  6108. zoom: 1;
  6109. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-sides.gif');
  6110. background-position: 0 0;
  6111. background-repeat: repeat-y; }
  6112. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6113. .x-nbr .x-window-header-default-collapsed-top-mc {
  6114. padding: 0px 1px 0px 1px; }
  6115. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6116. .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
  6117. .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  6118. position: relative;
  6119. right: 0; }
  6120. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6121. .x-window-header-default-collapsed-right {
  6122. padding: 5px 4px 5px 4px;
  6123. border-width: 1px;
  6124. border-style: solid;
  6125. background-color: #ced9e7; }
  6126. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6127. .x-nlg .x-window-header-default-collapsed-right-mc {
  6128. background-color: #ced9e7; }
  6129. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6130. .x-nbr .x-window-header-default-collapsed-right {
  6131. padding: 0 !important;
  6132. border-width: 0 !important;
  6133. -webkit-border-radius: 0px;
  6134. -moz-border-radius: 0px;
  6135. -ms-border-radius: 0px;
  6136. -o-border-radius: 0px;
  6137. border-radius: 0px;
  6138. background-color: transparent;
  6139. background-position: 1000505px 1000505px; }
  6140. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6141. .x-nbr .x-window-header-default-collapsed-right-tl,
  6142. .x-nbr .x-window-header-default-collapsed-right-bl,
  6143. .x-nbr .x-window-header-default-collapsed-right-tr,
  6144. .x-nbr .x-window-header-default-collapsed-right-br,
  6145. .x-nbr .x-window-header-default-collapsed-right-tc,
  6146. .x-nbr .x-window-header-default-collapsed-right-bc,
  6147. .x-nbr .x-window-header-default-collapsed-right-ml,
  6148. .x-nbr .x-window-header-default-collapsed-right-mr {
  6149. zoom: 1;
  6150. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-corners.gif'); }
  6151. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6152. .x-nbr .x-window-header-default-collapsed-right-ml,
  6153. .x-nbr .x-window-header-default-collapsed-right-mr {
  6154. zoom: 1;
  6155. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-sides.gif');
  6156. background-position: 0 0;
  6157. background-repeat: repeat-y; }
  6158. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6159. .x-nbr .x-window-header-default-collapsed-right-mc {
  6160. padding: 1px 0px 1px 0px; }
  6161. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6162. .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
  6163. .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  6164. position: relative;
  6165. right: 0; }
  6166. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6167. .x-window-header-default-collapsed-bottom {
  6168. padding: 4px 5px 4px 5px;
  6169. border-width: 1px;
  6170. border-style: solid;
  6171. background-color: #ced9e7; }
  6172. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6173. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  6174. background-color: #ced9e7; }
  6175. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6176. .x-nbr .x-window-header-default-collapsed-bottom {
  6177. padding: 0 !important;
  6178. border-width: 0 !important;
  6179. -webkit-border-radius: 0px;
  6180. -moz-border-radius: 0px;
  6181. -ms-border-radius: 0px;
  6182. -o-border-radius: 0px;
  6183. border-radius: 0px;
  6184. background-color: transparent;
  6185. background-position: 1000505px 1000505px; }
  6186. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6187. .x-nbr .x-window-header-default-collapsed-bottom-tl,
  6188. .x-nbr .x-window-header-default-collapsed-bottom-bl,
  6189. .x-nbr .x-window-header-default-collapsed-bottom-tr,
  6190. .x-nbr .x-window-header-default-collapsed-bottom-br,
  6191. .x-nbr .x-window-header-default-collapsed-bottom-tc,
  6192. .x-nbr .x-window-header-default-collapsed-bottom-bc,
  6193. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6194. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6195. zoom: 1;
  6196. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-corners.gif'); }
  6197. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6198. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6199. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6200. zoom: 1;
  6201. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-sides.gif');
  6202. background-position: 0 0;
  6203. background-repeat: repeat-y; }
  6204. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6205. .x-nbr .x-window-header-default-collapsed-bottom-mc {
  6206. padding: 0px 1px 0px 1px; }
  6207. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6208. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
  6209. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  6210. position: relative;
  6211. right: 0; }
  6212. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6213. .x-window-header-default-collapsed-left {
  6214. padding: 5px 4px 5px 4px;
  6215. border-width: 1px;
  6216. border-style: solid;
  6217. background-color: #ced9e7; }
  6218. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6219. .x-nlg .x-window-header-default-collapsed-left-mc {
  6220. background-color: #ced9e7; }
  6221. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6222. .x-nbr .x-window-header-default-collapsed-left {
  6223. padding: 0 !important;
  6224. border-width: 0 !important;
  6225. -webkit-border-radius: 0px;
  6226. -moz-border-radius: 0px;
  6227. -ms-border-radius: 0px;
  6228. -o-border-radius: 0px;
  6229. border-radius: 0px;
  6230. background-color: transparent;
  6231. background-position: 1000505px 1000505px; }
  6232. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6233. .x-nbr .x-window-header-default-collapsed-left-tl,
  6234. .x-nbr .x-window-header-default-collapsed-left-bl,
  6235. .x-nbr .x-window-header-default-collapsed-left-tr,
  6236. .x-nbr .x-window-header-default-collapsed-left-br,
  6237. .x-nbr .x-window-header-default-collapsed-left-tc,
  6238. .x-nbr .x-window-header-default-collapsed-left-bc,
  6239. .x-nbr .x-window-header-default-collapsed-left-ml,
  6240. .x-nbr .x-window-header-default-collapsed-left-mr {
  6241. zoom: 1;
  6242. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-corners.gif'); }
  6243. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6244. .x-nbr .x-window-header-default-collapsed-left-ml,
  6245. .x-nbr .x-window-header-default-collapsed-left-mr {
  6246. zoom: 1;
  6247. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-sides.gif');
  6248. background-position: 0 0;
  6249. background-repeat: repeat-y; }
  6250. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6251. .x-nbr .x-window-header-default-collapsed-left-mc {
  6252. padding: 1px 0px 1px 0px; }
  6253. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6254. .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
  6255. .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  6256. position: relative;
  6257. right: 0; }
  6258. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6259. .x-window-header-default-top {
  6260. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6261. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6262. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6263. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6264. .x-window-header-default-right {
  6265. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6266. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6267. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  6268. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6269. .x-window-header-default-bottom {
  6270. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6271. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6272. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6273. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6274. .x-window-header-default-left {
  6275. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6276. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6277. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6278. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6279. .x-window-body-plain {
  6280. background: transparent; }
  6281. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6282. .x-message-box .x-window-body {
  6283. background-color: #ced9e7;
  6284. border: none; }
  6285. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6286. .x-message-box .x-progress-wrap {
  6287. margin-top: 4px; }
  6288. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6289. .x-message-box-icon {
  6290. width: 47px;
  6291. height: 32px; }
  6292. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6293. .x-message-box-info,
  6294. .x-message-box-warning,
  6295. .x-message-box-question,
  6296. .x-message-box-error {
  6297. background: transparent no-repeat top left; }
  6298. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6299. .x-message-box .x-msg-box-wait {
  6300. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  6301. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6302. .x-message-box-info {
  6303. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  6304. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6305. .x-message-box-warning {
  6306. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  6307. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6308. .x-message-box-question {
  6309. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  6310. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6311. .x-message-box-error {
  6312. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  6313. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6314. .x-tab-bar {
  6315. position: relative;
  6316. background-color: transparent;
  6317. background-image: none;
  6318. background-color: #cbdbef;
  6319. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  6320. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  6321. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  6322. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  6323. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  6324. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  6325. font-size: 11px; }
  6326. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6327. .x-nlg .x-tab-bar {
  6328. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  6329. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6330. .x-tab-bar-default-plain,
  6331. .x-nlg .x-tab-bar-default-plain {
  6332. background: transparent none; }
  6333. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6334. .x-tab-bar-body {
  6335. border-style: solid;
  6336. border-color: #99bce8;
  6337. position: relative;
  6338. z-index: 2;
  6339. zoom: 1; }
  6340. /* Top Tabs */
  6341. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6342. .x-tab-bar-top .x-tab-bar-body {
  6343. height: 20px;
  6344. border-width: 1px 1px 0;
  6345. padding: 1px 0 3px; }
  6346. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6347. .x-tab-bar-top .x-tab-bar-strip {
  6348. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6349. top: 22px;
  6350. border-width: 1px 1px 0;
  6351. height: 2px; }
  6352. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6353. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  6354. height: 25px; }
  6355. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6356. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  6357. height: 3px; }
  6358. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6359. .x-tab-bar-top .x-tab-bar-body-default-plain {
  6360. height: 20px;
  6361. border-width: 0;
  6362. padding: 0 0 2px; }
  6363. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6364. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6365. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6366. top: 20px;
  6367. border-width: 1px 1px 0 1px;
  6368. height: 2px; }
  6369. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6370. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  6371. height: 22px; }
  6372. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6373. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6374. height: 3px; }
  6375. /* Bottom Tabs */
  6376. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6377. .x-tab-bar-bottom .x-tab-bar-body {
  6378. height: 20px;
  6379. border-width: 0 1px 1px;
  6380. padding: 3px 0 1px; }
  6381. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6382. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  6383. position: relative;
  6384. top: -1px; }
  6385. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6386. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  6387. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  6388. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  6389. height: 22px; }
  6390. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6391. .x-tab-bar-bottom .x-tab-bar-strip {
  6392. top: 0;
  6393. border-width: 0 1px 1px 1px;
  6394. height: 2px; }
  6395. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6396. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  6397. height: 25px; }
  6398. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6399. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  6400. height: 3px; }
  6401. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6402. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6403. height: 20px;
  6404. border-width: 0;
  6405. padding: 3px 0 0; }
  6406. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6407. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  6408. position: relative;
  6409. top: -1px; }
  6410. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6411. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  6412. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  6413. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  6414. height: 21px; }
  6415. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6416. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6417. top: 0;
  6418. border-width: 0 1px 1px 1px;
  6419. height: 2px; }
  6420. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6421. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6422. height: 23px; }
  6423. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6424. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6425. height: 3px; }
  6426. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6427. .x-tab-bar-strip-default,
  6428. .x-tab-bar-strip-default-plain {
  6429. font-size: 0;
  6430. line-height: 0;
  6431. position: absolute;
  6432. z-index: 1;
  6433. border-style: solid;
  6434. overflow: hidden;
  6435. border-color: #99bce8;
  6436. background-color: #deecfd;
  6437. zoom: 1; }
  6438. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6439. .x-tab-default-top {
  6440. padding: 3px 3px 0 3px;
  6441. border-width: 1px 1px 0 1px;
  6442. border-style: solid;
  6443. background-color: #deecfd; }
  6444. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6445. .x-nlg .x-tab-default-top-mc {
  6446. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  6447. background-color: #deecfd; }
  6448. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6449. .x-nbr .x-tab-default-top {
  6450. padding: 0 !important;
  6451. border-width: 0 !important;
  6452. -webkit-border-radius: 0px;
  6453. -moz-border-radius: 0px;
  6454. -ms-border-radius: 0px;
  6455. -o-border-radius: 0px;
  6456. border-radius: 0px;
  6457. background-color: transparent;
  6458. background-position: 1100404px 1000000px; }
  6459. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6460. .x-nbr .x-tab-default-top-tl,
  6461. .x-nbr .x-tab-default-top-bl,
  6462. .x-nbr .x-tab-default-top-tr,
  6463. .x-nbr .x-tab-default-top-br,
  6464. .x-nbr .x-tab-default-top-tc,
  6465. .x-nbr .x-tab-default-top-bc,
  6466. .x-nbr .x-tab-default-top-ml,
  6467. .x-nbr .x-tab-default-top-mr {
  6468. zoom: 1;
  6469. background-image: url('../../resources/themes/images/default/tab/tab-default-top-corners.gif'); }
  6470. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6471. .x-nbr .x-tab-default-top-ml,
  6472. .x-nbr .x-tab-default-top-mr {
  6473. zoom: 1;
  6474. background-image: url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
  6475. background-position: 0 0; }
  6476. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6477. .x-nbr .x-tab-default-top-mc {
  6478. padding: 0px 0px 0 0px; }
  6479. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6480. .x-strict .x-ie7 .x-tab-default-top-tl,
  6481. .x-strict .x-ie7 .x-tab-default-top-bl {
  6482. position: relative;
  6483. right: 0; }
  6484. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6485. .x-tab-default-bottom {
  6486. padding: 0 3px 3px 3px;
  6487. border-width: 0 1px 1px 1px;
  6488. border-style: solid;
  6489. background-color: #deecfd; }
  6490. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6491. .x-nlg .x-tab-default-bottom-mc {
  6492. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  6493. background-color: #deecfd; }
  6494. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6495. .x-nbr .x-tab-default-bottom {
  6496. padding: 0 !important;
  6497. border-width: 0 !important;
  6498. -webkit-border-radius: 0px;
  6499. -moz-border-radius: 0px;
  6500. -ms-border-radius: 0px;
  6501. -o-border-radius: 0px;
  6502. border-radius: 0px;
  6503. background-color: transparent;
  6504. background-position: 1100000px 1000404px; }
  6505. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6506. .x-nbr .x-tab-default-bottom-tl,
  6507. .x-nbr .x-tab-default-bottom-bl,
  6508. .x-nbr .x-tab-default-bottom-tr,
  6509. .x-nbr .x-tab-default-bottom-br,
  6510. .x-nbr .x-tab-default-bottom-tc,
  6511. .x-nbr .x-tab-default-bottom-bc,
  6512. .x-nbr .x-tab-default-bottom-ml,
  6513. .x-nbr .x-tab-default-bottom-mr {
  6514. zoom: 1;
  6515. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif'); }
  6516. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6517. .x-nbr .x-tab-default-bottom-ml,
  6518. .x-nbr .x-tab-default-bottom-mr {
  6519. zoom: 1;
  6520. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
  6521. background-position: 0 0; }
  6522. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6523. .x-nbr .x-tab-default-bottom-mc {
  6524. padding: 0 0px 0px 0px; }
  6525. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6526. .x-strict .x-ie7 .x-tab-default-bottom-tl,
  6527. .x-strict .x-ie7 .x-tab-default-bottom-bl {
  6528. position: relative;
  6529. right: 0; }
  6530. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6531. .x-tab {
  6532. z-index: 1;
  6533. margin: 0 0 0 2px;
  6534. display: inline-block;
  6535. zoom: 1;
  6536. *display: inline;
  6537. white-space: nowrap;
  6538. height: 20px;
  6539. border-color: #8db3e3;
  6540. cursor: pointer;
  6541. cursor: hand; }
  6542. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6543. .x-tab button {
  6544. cursor: pointer;
  6545. cursor: hand; }
  6546. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6547. .x-tab em {
  6548. display: block;
  6549. padding: 0 6px;
  6550. line-height: 1px; }
  6551. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6552. .x-tab button {
  6553. background: none;
  6554. border: 0;
  6555. padding: 0;
  6556. margin: 0;
  6557. -webkit-appearance: none;
  6558. font-size: 11px;
  6559. font-weight: bold;
  6560. font-family: tahoma, arial, verdana, sans-serif;
  6561. color: #416da3;
  6562. outline: 0 none;
  6563. overflow-x: visible; }
  6564. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6565. .x-tab button::-moz-focus-inner {
  6566. border: 0;
  6567. padding: 0; }
  6568. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6569. .x-tab button .x-tab-inner {
  6570. background-color: transparent;
  6571. background-repeat: no-repeat;
  6572. background-position: 0 -2px;
  6573. display: block;
  6574. text-align: center;
  6575. white-space: nowrap;
  6576. text-overflow: ellipsis;
  6577. -o-text-overflow: ellipsis;
  6578. overflow: hidden; }
  6579. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6580. .x-tab img {
  6581. display: none; }
  6582. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6583. .x-border-box .x-tab-default-top {
  6584. height: 21px; }
  6585. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6586. .x-border-box .x-tab-default-bottom {
  6587. height: 21px; }
  6588. /* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6589. * html .x-ie .x-tab button {
  6590. width: 1px; }
  6591. /* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6592. .x-strict .x-ie6 .x-tab .x-frame-mc,
  6593. .x-strict .x-ie7 .x-tab .x-frame-mc {
  6594. height: 100%; }
  6595. /* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6596. .x-ie .x-tab-active button:active {
  6597. position: relative;
  6598. top: -1px;
  6599. left: -1px; }
  6600. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6601. .x-tab-default-top {
  6602. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6603. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6604. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6605. border-bottom: 1px solid #99bce8 !important; }
  6606. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6607. .x-tab-default-top em {
  6608. padding-bottom: 3px; }
  6609. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6610. .x-tab-default-top button,
  6611. .x-tab-default-top .x-tab-inner {
  6612. height: 13px;
  6613. line-height: 13px; }
  6614. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6615. .x-safari4 .x-tab-default-top .x-tab-inner,
  6616. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  6617. line-height: 11px; }
  6618. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6619. .x-nbr .x-tab-default-top {
  6620. border-bottom-width: 1px !important; }
  6621. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6622. .x-tab-default-top-active {
  6623. border-bottom-color: #deecfd !important; }
  6624. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6625. .x-tab-default-bottom {
  6626. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6627. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6628. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6629. border-top: 1px solid #99bce8 !important;
  6630. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6631. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6632. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  6633. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6634. .x-tab-default-bottom em {
  6635. padding-top: 3px; }
  6636. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6637. .x-tab-default-bottom button,
  6638. .x-tab-default-bottom .x-tab-inner {
  6639. height: 13px;
  6640. line-height: 13px; }
  6641. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6642. .x-nbr .x-tab-default-bottom {
  6643. border-top-width: 1px !important; }
  6644. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6645. .x-tab-default-bottom-active {
  6646. border-top-color: #deecfd !important; }
  6647. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6648. .x-tab-default-disabled {
  6649. cursor: default;
  6650. border-color: #bbd2ef;
  6651. background-image: none;
  6652. background-color: #e1ecfa;
  6653. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6654. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6655. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6656. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6657. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6658. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6659. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6660. .x-tab-default-disabled button {
  6661. color: #c3b3b3 !important; }
  6662. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6663. .x-tab-icon-text-left .x-tab-inner {
  6664. padding-left: 20px; }
  6665. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6666. .x-tab button {
  6667. position: relative; }
  6668. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6669. .x-tab-icon {
  6670. position: absolute;
  6671. background-repeat: no-repeat;
  6672. background-position: 0 -1px;
  6673. top: 0;
  6674. left: 0;
  6675. right: auto;
  6676. bottom: 0;
  6677. width: 18px;
  6678. height: 18px; }
  6679. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6680. .x-strict .x-ie8 .x-tab button,
  6681. .x-strict .x-ie9 .x-tab button {
  6682. overflow-y: visible; }
  6683. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6684. .x-tab-default-disabled .x-tab-icon {
  6685. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6686. opacity: 0.5; }
  6687. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  6688. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6689. .x-tab-noicon .x-tab-icon {
  6690. display: none; }
  6691. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6692. .x-tab-top-over {
  6693. background-image: none;
  6694. background-color: #e8f2ff;
  6695. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6696. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6697. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6698. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6699. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6700. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6701. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6702. .x-tab-bottom-over {
  6703. background-image: none;
  6704. background-color: #e8f2ff;
  6705. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6706. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6707. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6708. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6709. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6710. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6711. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6712. .x-tab-active {
  6713. z-index: 3; }
  6714. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6715. .x-tab-active button {
  6716. color: #15498b; }
  6717. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6718. .x-tab-top-active {
  6719. background-image: none;
  6720. background-color: #deecfd;
  6721. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6722. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6723. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6724. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6725. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6726. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6727. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6728. .x-tab-bottom-active {
  6729. background-image: none;
  6730. background-color: #deecfd;
  6731. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6732. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6733. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6734. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6735. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6736. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6737. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6738. .x-tab-disabled {
  6739. border-color: #bbd2ef; }
  6740. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6741. .x-tab-disabled button {
  6742. color: #c3b3b3; }
  6743. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6744. .x-tab-top-disabled {
  6745. background-image: none;
  6746. background: transparent;
  6747. background-image: none;
  6748. background-color: #e1ecfa;
  6749. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6750. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6751. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6752. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6753. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6754. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6755. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6756. .x-tab-bottom-disabled {
  6757. background-image: none;
  6758. background: transparent;
  6759. background-image: none;
  6760. background-color: #e1ecfa;
  6761. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6762. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6763. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6764. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6765. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6766. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  6767. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6768. .x-nlg .x-tab-top {
  6769. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  6770. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6771. .x-nlg .x-tab-bottom {
  6772. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  6773. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6774. .x-nlg .x-tab-top-over {
  6775. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6776. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6777. .x-nlg .x-tab-bottom-over {
  6778. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6779. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6780. .x-nlg .x-tab-top-active {
  6781. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6782. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6783. .x-nlg .x-tab-bottom-active {
  6784. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6785. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6786. .x-nlg .x-tab-top-disabled {
  6787. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  6788. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6789. .x-nlg .x-tab-bottom-disabled {
  6790. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  6791. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6792. .x-tab-closable em {
  6793. padding-right: 14px; }
  6794. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6795. .x-tab-close-btn {
  6796. position: absolute;
  6797. top: 2px;
  6798. right: 2px;
  6799. width: 11px;
  6800. height: 11px;
  6801. font-size: 0;
  6802. line-height: 0;
  6803. text-indent: -999px;
  6804. background: no-repeat;
  6805. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  6806. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  6807. opacity: 0.6; }
  6808. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6809. .x-nbr .x-tab-close-btn {
  6810. top: 0px;
  6811. right: 0px; }
  6812. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  6813. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6814. a.x-tab-close-btn:hover {
  6815. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  6816. opacity: 1; }
  6817. /* Include the element name to raise the specificity to equal the :hover */
  6818. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6819. .x-tab-default-disabled a.x-tab-close-btn {
  6820. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6821. opacity: 0.3; }
  6822. /* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6823. .x-nbr .x-tab-top-over .x-frame-tl,
  6824. .x-nbr .x-tab-top-over .x-frame-bl,
  6825. .x-nbr .x-tab-top-over .x-frame-tr,
  6826. .x-nbr .x-tab-top-over .x-frame-br,
  6827. .x-nbr .x-tab-top-over .x-frame-tc,
  6828. .x-nbr .x-tab-top-over .x-frame-bc {
  6829. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif'); }
  6830. /* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6831. .x-nbr .x-tab-top-over .x-frame-ml,
  6832. .x-nbr .x-tab-top-over .x-frame-mr {
  6833. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif'); }
  6834. /* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6835. .x-nbr .x-tab-top-over .x-frame-mc {
  6836. background-color: #e8f2ff;
  6837. background-repeat: repeat-x;
  6838. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6839. /* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6840. .x-nbr .x-tab-bottom-over .x-frame-tl,
  6841. .x-nbr .x-tab-bottom-over .x-frame-bl,
  6842. .x-nbr .x-tab-bottom-over .x-frame-tr,
  6843. .x-nbr .x-tab-bottom-over .x-frame-br,
  6844. .x-nbr .x-tab-bottom-over .x-frame-tc,
  6845. .x-nbr .x-tab-bottom-over .x-frame-bc {
  6846. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif'); }
  6847. /* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6848. .x-nbr .x-tab-bottom-over .x-frame-ml,
  6849. .x-nbr .x-tab-bottom-over .x-frame-mr {
  6850. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif'); }
  6851. /* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6852. .x-nbr .x-tab-bottom-over .x-frame-mc {
  6853. background-color: #e8f2ff;
  6854. background-repeat: repeat-x;
  6855. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6856. /* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6857. .x-nbr .x-tab-top-active .x-frame-tl,
  6858. .x-nbr .x-tab-top-active .x-frame-bl,
  6859. .x-nbr .x-tab-top-active .x-frame-tr,
  6860. .x-nbr .x-tab-top-active .x-frame-br,
  6861. .x-nbr .x-tab-top-active .x-frame-tc,
  6862. .x-nbr .x-tab-top-active .x-frame-bc {
  6863. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif'); }
  6864. /* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6865. .x-nbr .x-tab-top-active .x-frame-ml,
  6866. .x-nbr .x-tab-top-active .x-frame-mr {
  6867. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif'); }
  6868. /* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6869. .x-nbr .x-tab-top-active .x-frame-mc {
  6870. background-color: #deecfd;
  6871. background-repeat: repeat-x;
  6872. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6873. /* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6874. .x-nbr .x-tab-bottom-active .x-frame-tl,
  6875. .x-nbr .x-tab-bottom-active .x-frame-bl,
  6876. .x-nbr .x-tab-bottom-active .x-frame-tr,
  6877. .x-nbr .x-tab-bottom-active .x-frame-br,
  6878. .x-nbr .x-tab-bottom-active .x-frame-tc,
  6879. .x-nbr .x-tab-bottom-active .x-frame-bc {
  6880. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif'); }
  6881. /* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6882. .x-nbr .x-tab-bottom-active .x-frame-ml,
  6883. .x-nbr .x-tab-bottom-active .x-frame-mr {
  6884. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif'); }
  6885. /* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6886. .x-nbr .x-tab-bottom-active .x-frame-mc {
  6887. background-color: #deecfd;
  6888. background-repeat: repeat-x;
  6889. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6890. /* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6891. .x-nbr .x-tab-top-disabled .x-frame-tl,
  6892. .x-nbr .x-tab-top-disabled .x-frame-bl,
  6893. .x-nbr .x-tab-top-disabled .x-frame-tr,
  6894. .x-nbr .x-tab-top-disabled .x-frame-br,
  6895. .x-nbr .x-tab-top-disabled .x-frame-tc,
  6896. .x-nbr .x-tab-top-disabled .x-frame-bc {
  6897. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif'); }
  6898. /* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6899. .x-nbr .x-tab-top-disabled .x-frame-ml,
  6900. .x-nbr .x-tab-top-disabled .x-frame-mr {
  6901. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif'); }
  6902. /* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6903. .x-nbr .x-tab-top-disabled .x-frame-mc {
  6904. background-repeat: repeat-x;
  6905. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif'); }
  6906. /* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6907. .x-nbr .x-tab-bottom-disabled .x-frame-tl,
  6908. .x-nbr .x-tab-bottom-disabled .x-frame-bl,
  6909. .x-nbr .x-tab-bottom-disabled .x-frame-tr,
  6910. .x-nbr .x-tab-bottom-disabled .x-frame-br,
  6911. .x-nbr .x-tab-bottom-disabled .x-frame-tc,
  6912. .x-nbr .x-tab-bottom-disabled .x-frame-bc {
  6913. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif'); }
  6914. /* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6915. .x-nbr .x-tab-bottom-disabled .x-frame-ml,
  6916. .x-nbr .x-tab-bottom-disabled .x-frame-mr {
  6917. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif'); }
  6918. /* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6919. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  6920. background-repeat: repeat-x;
  6921. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif'); }
  6922. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6923. .x-autowidth-table table.x-grid-table {
  6924. table-layout: auto;
  6925. width: auto!important; }
  6926. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6927. .x-tree-no-lines .x-tree-elbow {
  6928. background-color: transparent; }
  6929. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6930. .x-tree-no-lines .x-tree-elbow-end {
  6931. background-color: transparent; }
  6932. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6933. .x-tree-no-lines .x-tree-elbow-line {
  6934. background-color: transparent; }
  6935. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6936. .x-tree-arrows .x-tree-elbow-plus {
  6937. background: transparent no-repeat 0 0; }
  6938. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6939. .x-tree-arrows .x-tree-elbow-end-plus {
  6940. background: transparent no-repeat 0 0; }
  6941. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6942. .x-tree-arrows .x-tree-elbow-end-minus {
  6943. background: transparent no-repeat -16px 0; }
  6944. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6945. .x-tree-arrows .x-tree-elbow-minus {
  6946. background: transparent no-repeat -16px 0; }
  6947. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6948. .x-tree-arrows .x-tree-elbow {
  6949. background-color: transparent !important; }
  6950. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6951. .x-tree-arrows .x-tree-elbow-end {
  6952. background-color: transparent !important; }
  6953. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6954. .x-tree-arrows .x-tree-elbow-line {
  6955. background-color: transparent !important; }
  6956. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6957. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  6958. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  6959. background-position: -32px 0; }
  6960. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6961. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  6962. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  6963. background-position: -48px 0; }
  6964. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6965. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  6966. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6967. background-position: -16px 0; }
  6968. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6969. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  6970. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  6971. background-position: -48px 0; }
  6972. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6973. .x-tree-elbow-plus,
  6974. .x-tree-elbow-minus,
  6975. .x-tree-elbow-end-plus,
  6976. .x-tree-elbow-end-minus {
  6977. cursor: pointer; }
  6978. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6979. .x-tree-lines .x-tree-elbow {
  6980. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  6981. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6982. .x-tree-lines .x-tree-elbow-end {
  6983. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  6984. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6985. .x-tree-lines .x-tree-elbow-plus {
  6986. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  6987. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6988. .x-tree-lines .x-tree-elbow-end-plus {
  6989. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  6990. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6991. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  6992. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  6993. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6994. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6995. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  6996. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6997. .x-tree-lines .x-tree-elbow-line {
  6998. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  6999. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7000. .x-tree-no-lines .x-tree-elbow-plus,
  7001. .x-tree-no-lines .x-tree-elbow-end-plus {
  7002. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  7003. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7004. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7005. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7006. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  7007. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7008. .x-tree-arrows .x-tree-elbow-plus,
  7009. .x-tree-arrows .x-tree-elbow-minus,
  7010. .x-tree-arrows .x-tree-elbow-end-plus,
  7011. .x-tree-arrows .x-tree-elbow-end-minus {
  7012. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  7013. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7014. .x-tree-icon {
  7015. margin: 2px 3px 0 0; }
  7016. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7017. .x-grid-with-row-lines .x-tree-icon {
  7018. margin-top: 1px; }
  7019. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7020. .x-tree-elbow,
  7021. .x-tree-elbow-end,
  7022. .x-tree-elbow-plus,
  7023. .x-tree-elbow-end-plus,
  7024. .x-tree-elbow-empty,
  7025. .x-tree-elbow-line {
  7026. height: 20px;
  7027. width: 16px; }
  7028. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7029. .x-grid-with-row-lines .x-tree-elbow,
  7030. .x-grid-with-row-lines .x-tree-elbow-end,
  7031. .x-grid-with-row-lines .x-tree-elbow-plus,
  7032. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  7033. .x-grid-with-row-lines .x-tree-elbow-empty,
  7034. .x-grid-with-row-lines .x-tree-elbow-line {
  7035. height: 19px;
  7036. background-position: 0 -1px; }
  7037. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7038. .x-tree-icon-leaf {
  7039. width: 16px;
  7040. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  7041. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7042. .x-tree-icon-parent {
  7043. width: 16px;
  7044. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  7045. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7046. .x-grid-tree-node-expanded .x-tree-icon-parent {
  7047. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  7048. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7049. .x-grid-rowbody {
  7050. padding: 0; }
  7051. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7052. .x-grid-cell-treecolumn .x-grid-cell-inner {
  7053. padding: 0;
  7054. line-height: 19px; }
  7055. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7056. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  7057. line-height: 17px; }
  7058. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7059. .x-tree-panel .x-grid-cell-inner {
  7060. cursor: pointer; }
  7061. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7062. .x-tree-panel .x-grid-cell-inner img {
  7063. display: inline-block;
  7064. vertical-align: top; }
  7065. /* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7066. .x-ie .x-tree-panel .x-tree-elbow,
  7067. .x-ie .x-tree-panel .x-tree-elbow-end,
  7068. .x-ie .x-tree-panel .x-tree-elbow-plus,
  7069. .x-ie .x-tree-panel .x-tree-elbow-end-plus,
  7070. .x-ie .x-tree-panel .x-tree-elbow-empty,
  7071. .x-ie .x-tree-panel .x-tree-elbow-line {
  7072. vertical-align: -6px; }
  7073. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7074. .x-grid-editor-on-text-node .x-form-text {
  7075. padding-left: 1px;
  7076. padding-right: 1px; }
  7077. /* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7078. .x-ie .x-grid-editor-on-text-node .x-form-text {
  7079. padding-left: 2px;
  7080. padding-right: 2px; }
  7081. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7082. .x-tree-checkbox {
  7083. margin: 4px 3px 0 0;
  7084. display: inline-block;
  7085. vertical-align: top;
  7086. width: 13px;
  7087. height: 13px;
  7088. background: no-repeat;
  7089. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  7090. overflow: hidden;
  7091. padding: 0;
  7092. border: 0; }
  7093. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7094. .x-tree-checkbox::-moz-focus-inner {
  7095. padding: 0;
  7096. border: 0; }
  7097. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7098. .x-grid-with-row-lines .x-tree-checkbox {
  7099. margin-top: 3px; }
  7100. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7101. .x-tree-checkbox-checked {
  7102. background-position: 0 -13px; }
  7103. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7104. .x-tree-drop-ok-append .x-dd-drop-icon {
  7105. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  7106. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7107. .x-tree-drop-ok-above .x-dd-drop-icon {
  7108. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  7109. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7110. .x-tree-drop-ok-below .x-dd-drop-icon {
  7111. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  7112. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7113. .x-tree-drop-ok-between .x-dd-drop-icon {
  7114. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  7115. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7116. .x-grid-tree-loading .x-tree-icon {
  7117. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  7118. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7119. .x-tree-ddindicator {
  7120. height: 1px;
  7121. border-width: 1px 0px 0px;
  7122. border-style: dotted;
  7123. border-color: green; }
  7124. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7125. .x-grid-tree-loading span {
  7126. font-style: italic;
  7127. color: #444444; }
  7128. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7129. .x-tree-animator-wrap {
  7130. overflow: hidden; }
  7131. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7132. .x-surface {
  7133. display: -moz-inline-box;
  7134. -moz-box-orient: vertical;
  7135. display: inline-block;
  7136. vertical-align: middle;
  7137. *vertical-align: auto;
  7138. overflow: hidden; }
  7139. /* line 7, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  7140. .x-surface {
  7141. *display: inline; }
  7142. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7143. .rvml {
  7144. behavior: url(#default#VML); }
  7145. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7146. .x-surface tspan {
  7147. user-select: none;
  7148. -o-user-select: none;
  7149. -ms-user-select: none;
  7150. -moz-user-select: -moz-none;
  7151. -webkit-user-select: none;
  7152. cursor: default; }
  7153. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7154. .x-vml-sprite {
  7155. position: absolute;
  7156. left: 0;
  7157. top: 0;
  7158. width: 1px;
  7159. height: 1px; }
  7160. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7161. .x-vml-group {
  7162. position: absolute;
  7163. left: 0;
  7164. top: 0;
  7165. width: 1000px;
  7166. height: 1000px; }
  7167. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7168. .x-vml-measure-span {
  7169. position: absolute;
  7170. left: -9999em;
  7171. top: -9999em;
  7172. padding: 0;
  7173. margin: 0;
  7174. display: inline; }
  7175. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7176. .x-vml-base {
  7177. position: relative;
  7178. top: 0;
  7179. left: 0;
  7180. overflow: hidden;
  7181. display: inline-block; }
  7182. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7183. .x-vml-base {
  7184. position: relative;
  7185. top: 0;
  7186. left: 0;
  7187. overflow: hidden;
  7188. display: inline-block; }
  7189. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7190. svg, vml {
  7191. overflow: hidden; }
  7192. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  7193. .x-viewport, .x-viewport body {
  7194. margin: 0;
  7195. padding: 0;
  7196. border: 0 none;
  7197. overflow: hidden;
  7198. height: 100%;
  7199. position: static; }
  7200. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7201. .x-dd-drag-proxy {
  7202. z-index: 1000000!important; }
  7203. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7204. .x-dd-drag-repair .x-dd-drag-ghost {
  7205. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7206. opacity: 0.6; }
  7207. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7208. .x-dd-drag-repair .x-dd-drop-icon {
  7209. display: none; }
  7210. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7211. .x-dd-drag-ghost {
  7212. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  7213. opacity: 0.85;
  7214. padding: 5px;
  7215. padding-left: 20px;
  7216. white-space: nowrap;
  7217. color: #000;
  7218. font: normal 11px tahoma, arial, verdana, sans-serif;
  7219. border: 1px solid;
  7220. border-color: #ddd #bbb #bbb #ddd;
  7221. background-color: #fff; }
  7222. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7223. .x-dd-drop-icon {
  7224. position: absolute;
  7225. top: 3px;
  7226. left: 3px;
  7227. display: block;
  7228. width: 16px;
  7229. height: 16px;
  7230. background-color: transparent;
  7231. background-position: center;
  7232. background-repeat: no-repeat;
  7233. z-index: 1; }
  7234. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7235. .x-view-selector {
  7236. position: absolute;
  7237. left: 0;
  7238. top: 0;
  7239. width: 0;
  7240. background-color: #c3daf9;
  7241. border: 1px dotted #3399bb;
  7242. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7243. opacity: 0.5;
  7244. zoom: 1; }
  7245. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7246. .x-dd-drop-nodrop .x-dd-drop-icon {
  7247. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  7248. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7249. .x-dd-drop-ok .x-dd-drop-icon {
  7250. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  7251. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7252. .x-dd-drop-ok-add .x-dd-drop-icon {
  7253. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  7254. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7255. .x-resizable-handle {
  7256. position: absolute;
  7257. z-index: 100;
  7258. font-size: 1px;
  7259. line-height: 6px;
  7260. overflow: hidden;
  7261. zoom: 1;
  7262. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7263. opacity: 0;
  7264. background-color: #fff; }
  7265. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7266. .x-collapsed .x-resizable-handle {
  7267. display: none; }
  7268. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7269. .x-resizable-handle-east {
  7270. width: 6px;
  7271. height: 100%;
  7272. right: 0;
  7273. top: 0; }
  7274. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7275. .x-resizable-over .x-resizable-handle-east {
  7276. cursor: e-resize; }
  7277. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7278. .x-resizable-handle-south {
  7279. width: 100%;
  7280. height: 6px;
  7281. left: 0;
  7282. bottom: 0; }
  7283. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7284. .x-resizable-over .x-resizable-handle-south {
  7285. cursor: s-resize; }
  7286. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7287. .x-resizable-handle-west {
  7288. width: 6px;
  7289. height: 100%;
  7290. left: 0;
  7291. top: 0; }
  7292. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7293. .x-resizable-over .x-resizable-handle-west {
  7294. cursor: w-resize; }
  7295. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7296. .x-resizable-handle-north {
  7297. width: 100%;
  7298. height: 6px;
  7299. left: 0;
  7300. top: 0; }
  7301. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7302. .x-resizable-over .x-resizable-handle-north {
  7303. cursor: n-resize; }
  7304. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7305. .x-resizable-handle-southeast {
  7306. width: 6px;
  7307. height: 6px;
  7308. right: 0;
  7309. bottom: 0;
  7310. z-index: 101; }
  7311. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7312. .x-resizable-over .x-resizable-handle-southeast {
  7313. cursor: se-resize; }
  7314. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7315. .x-resizable-handle-northwest {
  7316. width: 6px;
  7317. height: 6px;
  7318. left: 0;
  7319. top: 0;
  7320. z-index: 101; }
  7321. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7322. .x-resizable-over .x-resizable-handle-northwest {
  7323. cursor: nw-resize; }
  7324. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7325. .x-resizable-handle-northeast {
  7326. width: 6px;
  7327. height: 6px;
  7328. right: 0;
  7329. top: 0;
  7330. z-index: 101; }
  7331. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7332. .x-resizable-over .x-resizable-handle-northeast {
  7333. cursor: ne-resize; }
  7334. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7335. .x-resizable-handle-southwest {
  7336. width: 6px;
  7337. height: 6px;
  7338. left: 0;
  7339. bottom: 0;
  7340. z-index: 101; }
  7341. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7342. .x-resizable-over .x-resizable-handle-southwest {
  7343. cursor: sw-resize; }
  7344. /*IE rounding error*/
  7345. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7346. .x-ie .x-resizable-handle-east {
  7347. margin-right: -1px;
  7348. /*IE rounding error*/ }
  7349. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7350. .x-ie .x-resizable-handle-south {
  7351. margin-bottom: -1px; }
  7352. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7353. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  7354. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7355. opacity: 1; }
  7356. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7357. .x-window .x-window-handle {
  7358. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7359. opacity: 0; }
  7360. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7361. .x-window-collapsed .x-window-handle {
  7362. display: none; }
  7363. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7364. .x-resizable-proxy {
  7365. border: 1px dashed #3b5a82;
  7366. position: absolute;
  7367. left: 0;
  7368. top: 0;
  7369. overflow: hidden;
  7370. z-index: 50000; }
  7371. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7372. .x-resizable-overlay {
  7373. position: absolute;
  7374. left: 0;
  7375. top: 0;
  7376. width: 100%;
  7377. height: 100%;
  7378. display: none;
  7379. z-index: 200000;
  7380. background-color: #fff;
  7381. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7382. opacity: 0; }
  7383. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7384. .x-resizable-over .x-resizable-handle-east,
  7385. .x-resizable-over .x-resizable-handle-west,
  7386. .x-resizable-pinned .x-resizable-handle-east,
  7387. .x-resizable-pinned .x-resizable-handle-west {
  7388. background-position: left;
  7389. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  7390. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7391. .x-resizable-over .x-resizable-handle-south,
  7392. .x-resizable-over .x-resizable-handle-north,
  7393. .x-resizable-pinned .x-resizable-handle-south,
  7394. .x-resizable-pinned .x-resizable-handle-north {
  7395. background-position: top;
  7396. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  7397. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7398. .x-resizable-over .x-resizable-handle-southeast,
  7399. .x-resizable-pinned .x-resizable-handle-southeast {
  7400. background-position: top left;
  7401. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  7402. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7403. .x-resizable-over .x-resizable-handle-northwest,
  7404. .x-resizable-pinned .x-resizable-handle-northwest {
  7405. background-position: bottom right;
  7406. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  7407. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7408. .x-resizable-over .x-resizable-handle-northeast,
  7409. .x-resizable-pinned .x-resizable-handle-northeast {
  7410. background-position: bottom left;
  7411. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  7412. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7413. .x-resizable-over .x-resizable-handle-southwest,
  7414. .x-resizable-pinned .x-resizable-handle-southwest {
  7415. background-position: top right;
  7416. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  7417. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7418. .x-splitter .x-collapse-el {
  7419. position: absolute;
  7420. cursor: pointer;
  7421. background-color: transparent;
  7422. background-repeat: no-repeat !important; }
  7423. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7424. .x-layout-split-left,
  7425. .x-layout-split-right {
  7426. top: 50%;
  7427. margin-top: -17px;
  7428. width: 5px;
  7429. height: 35px; }
  7430. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7431. .x-layout-split-top,
  7432. .x-layout-split-bottom {
  7433. left: 50%;
  7434. width: 35px;
  7435. height: 5px;
  7436. margin-left: -17px; }
  7437. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7438. .x-layout-split-left {
  7439. background: no-repeat top right;
  7440. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7441. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7442. .x-layout-split-right {
  7443. background: no-repeat top left;
  7444. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7445. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7446. .x-layout-split-top {
  7447. background: no-repeat top left;
  7448. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7449. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7450. .x-layout-split-bottom {
  7451. background: no-repeat top left;
  7452. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7453. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7454. .x-splitter-collapsed .x-layout-split-left {
  7455. background: no-repeat top left;
  7456. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7457. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7458. .x-splitter-collapsed .x-layout-split-right {
  7459. background: no-repeat top right;
  7460. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7461. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7462. .x-splitter-collapsed .x-layout-split-top {
  7463. background: no-repeat top left;
  7464. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7465. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7466. .x-splitter-collapsed .x-layout-split-bottom {
  7467. background: no-repeat top left;
  7468. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7469. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7470. .x-splitter-horizontal {
  7471. cursor: e-resize;
  7472. cursor: row-resize;
  7473. font-size: 1px; }
  7474. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7475. .x-splitter-vertical {
  7476. cursor: e-resize;
  7477. cursor: col-resize;
  7478. font-size: 1px; }
  7479. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7480. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  7481. cursor: default; }
  7482. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7483. .x-splitter-active {
  7484. z-index: 4;
  7485. font-size: 1px;
  7486. background-color: #b4b4b4;
  7487. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7488. opacity: 0.8; }
  7489. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7490. .x-splitter-active .x-collapse-el {
  7491. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  7492. opacity: 0.3; }
  7493. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7494. .x-proxy-el {
  7495. position: absolute;
  7496. background: #b4b4b4;
  7497. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7498. opacity: 0.8; }
  7499. /*
  7500. * Dock Layouts
  7501. * @todo move this somewhere else?
  7502. */
  7503. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7504. .x-docked {
  7505. position: absolute !important;
  7506. z-index: 1; }
  7507. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7508. .x-docked-top {
  7509. border-bottom-width: 0 !important; }
  7510. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7511. .x-docked-bottom {
  7512. border-top-width: 0 !important; }
  7513. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7514. .x-docked-left {
  7515. border-right-width: 0 !important; }
  7516. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7517. .x-docked-right {
  7518. border-left-width: 0 !important; }
  7519. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7520. .x-docked-noborder-top {
  7521. border-top-width: 0 !important; }
  7522. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7523. .x-docked-noborder-right {
  7524. border-right-width: 0 !important; }
  7525. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7526. .x-docked-noborder-bottom {
  7527. border-bottom-width: 0 !important; }
  7528. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7529. .x-docked-noborder-left {
  7530. border-left-width: 0 !important; }
  7531. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7532. .x-box-inner {
  7533. overflow: hidden;
  7534. zoom: 1;
  7535. position: relative;
  7536. left: 0;
  7537. top: 0; }
  7538. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7539. .x-box-item {
  7540. position: absolute !important;
  7541. left: 0;
  7542. top: 0; }
  7543. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7544. .x-rtl .x-box-item {
  7545. right: 0;
  7546. left: auto; }
  7547. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7548. .x-box-layout-ct,
  7549. .x-border-layout-ct {
  7550. overflow: hidden;
  7551. zoom: 1; }
  7552. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7553. .x-border-layout-ct {
  7554. background-color: #dfe8f6;
  7555. position: relative; }
  7556. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7557. .x-overflow-hidden {
  7558. overflow: hidden !important; }
  7559. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7560. .x-inline-children > * {
  7561. display: inline-block !important; }
  7562. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7563. .x-abs-layout-ct {
  7564. position: relative; }
  7565. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7566. .x-abs-layout-item {
  7567. position: absolute !important; }
  7568. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7569. .x-fit-item {
  7570. position: relative; }
  7571. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7572. .x-border-region-slide-in {
  7573. z-index: 5; }
  7574. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7575. .x-region-collapsed-placeholder {
  7576. z-index: 4; }
  7577. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7578. .x-accordion-hd .x-panel-header-text {
  7579. color: black;
  7580. font-weight: normal; }
  7581. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7582. .x-accordion-hd {
  7583. background: #d9e7f8 !important;
  7584. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  7585. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  7586. box-shadow: inset 0 0 0 0 #d9e7f8; }
  7587. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7588. .x-accordion-hd .x-tool-collapse-top,
  7589. .x-accordion-hd .x-tool-collapse-right,
  7590. .x-accordion-hd .x-tool-collapse-bottom,
  7591. .x-accordion-hd .x-tool-collapse-left {
  7592. background-position: 0 -255px; }
  7593. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7594. .x-accordion-hd .x-tool-expand-top,
  7595. .x-accordion-hd .x-tool-expand-right,
  7596. .x-accordion-hd .x-tool-expand-bottom,
  7597. .x-accordion-hd .x-tool-expand-left {
  7598. background-position: 0 -240px; }
  7599. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7600. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  7601. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  7602. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  7603. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  7604. background-position: -15px -255px; }
  7605. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7606. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  7607. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  7608. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  7609. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  7610. background-position: -15px -240px; }
  7611. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7612. .x-accordion-hd {
  7613. border-width: 1px 0 1px 0 !important;
  7614. padding: 4px 5px 5px 5px;
  7615. border-top-color: #f3f7fb !important; }
  7616. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7617. .x-accordion-body {
  7618. border-width: 0 !important; }
  7619. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7620. .x-accordion-hd-sibling-expanded {
  7621. border-top-color: #99bce8 !important;
  7622. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7623. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7624. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  7625. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7626. .x-accordion-hd-last-collapsed {
  7627. border-bottom-color: #d9e7f8 !important; }
  7628. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7629. .x-frame-tl,
  7630. .x-frame-tr,
  7631. .x-frame-tc,
  7632. .x-frame-bl,
  7633. .x-frame-br,
  7634. .x-frame-bc {
  7635. overflow: hidden;
  7636. background-repeat: no-repeat; }
  7637. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7638. .x-frame-tc,
  7639. .x-frame-bc {
  7640. background-repeat: repeat-x; }
  7641. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7642. .x-frame-mc {
  7643. position: relative;
  7644. background-repeat: repeat-x;
  7645. overflow: hidden; }
  7646. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7647. .x-box-scroller-left {
  7648. float: left;
  7649. height: 100%;
  7650. z-index: 5; }
  7651. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7652. .x-box-scroller-left .x-toolbar-scroll-left,
  7653. .x-box-scroller-left .x-tabbar-scroll-left {
  7654. width: 18px;
  7655. position: relative;
  7656. cursor: pointer;
  7657. height: 20px;
  7658. background: transparent no-repeat -18px 0;
  7659. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  7660. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7661. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7662. background-position: 0 0; }
  7663. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7664. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  7665. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  7666. background-position: -18px 0;
  7667. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7668. opacity: 0.5;
  7669. cursor: default; }
  7670. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7671. .x-box-scroller-left .x-toolbar-scroll-left {
  7672. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  7673. background-position: -14px 0; }
  7674. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7675. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7676. background-position: 0 0; }
  7677. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7678. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  7679. background-position: -14px 0; }
  7680. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7681. .x-box-scroller-left .x-toolbar-scroll-left {
  7682. width: 14px;
  7683. height: 22px;
  7684. border-bottom: 1px solid #8db2e3; }
  7685. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7686. .x-horizontal-box-overflow-body {
  7687. float: left; }
  7688. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7689. .x-box-scroller-right {
  7690. float: right;
  7691. height: 100%;
  7692. z-index: 5; }
  7693. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7694. .x-box-scroller-right .x-toolbar-scroll-right,
  7695. .x-box-scroller-right .x-tabbar-scroll-right {
  7696. width: 18px;
  7697. position: relative;
  7698. cursor: pointer;
  7699. height: 20px;
  7700. background: transparent no-repeat 0 0;
  7701. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  7702. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7703. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7704. background-position: -18px 0; }
  7705. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7706. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  7707. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  7708. background-position: 0 0;
  7709. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7710. opacity: 0.5;
  7711. cursor: default; }
  7712. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7713. .x-box-scroller-right .x-toolbar-scroll-right {
  7714. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  7715. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7716. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7717. background-position: -14px 0; }
  7718. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7719. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  7720. background-position: 0 0; }
  7721. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7722. .x-box-scroller-right .x-toolbar-scroll-right {
  7723. width: 14px;
  7724. height: 22px;
  7725. border-bottom: 1px solid #8db2e3; }
  7726. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7727. .x-box-scroller-top .x-box-scroller {
  7728. line-height: 0;
  7729. font-size: 0; }
  7730. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7731. .x-box-scroller-top .x-menu-scroll-top {
  7732. background: transparent no-repeat center center;
  7733. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  7734. height: 8px;
  7735. cursor: pointer; }
  7736. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7737. .x-box-scroller-bottom .x-box-scroller {
  7738. line-height: 0;
  7739. font-size: 0; }
  7740. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7741. .x-box-scroller-bottom .x-menu-scroll-bottom {
  7742. background: transparent no-repeat center center;
  7743. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  7744. height: 8px;
  7745. cursor: pointer; }
  7746. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7747. .x-box-menu-right {
  7748. float: right;
  7749. padding-right: 2px; }
  7750. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7751. .x-column {
  7752. float: left; }
  7753. /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7754. .x-ie6 .x-column {
  7755. display: inline;
  7756. /*prevent IE6 double-margin bug*/ }
  7757. /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7758. .x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  7759. position: relative; }
  7760. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7761. .x-tool {
  7762. height: 15px; }
  7763. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7764. .x-tool img {
  7765. overflow: hidden;
  7766. width: 15px;
  7767. height: 15px;
  7768. cursor: pointer;
  7769. background-color: transparent;
  7770. background-repeat: no-repeat;
  7771. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  7772. margin: 0; }
  7773. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7774. .x-panel-header-horizontal .x-tool,
  7775. .x-window-header-horizontal .x-tool {
  7776. margin-left: 2px; }
  7777. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7778. .x-panel-header-vertical .x-tool,
  7779. .x-window-header-vertical .x-tool {
  7780. margin-top: 2px; }
  7781. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7782. .x-panel-header-vertical .x-tool-top,
  7783. .x-window-header-vertical .x-tool-top {
  7784. margin: 0 0 4px; }
  7785. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7786. .x-tool-placeholder {
  7787. visibility: hidden; }
  7788. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7789. .x-tool-toggle {
  7790. background-position: 0 -60px; }
  7791. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7792. .x-tool-over .x-tool-toggle {
  7793. background-position: -15px -60px; }
  7794. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7795. .x-panel-collapsed .x-tool-toggle,
  7796. .x-fieldset-collapsed .x-tool-toggle {
  7797. background-position: 0 -75px; }
  7798. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7799. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  7800. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  7801. background-position: -15px -75px; }
  7802. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7803. .x-tool-close {
  7804. background-position: 0 0; }
  7805. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7806. .x-tool-minimize {
  7807. background-position: 0 -15px; }
  7808. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7809. .x-tool-maximize {
  7810. background-position: 0 -30px; }
  7811. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7812. .x-tool-restore {
  7813. background-position: 0 -45px; }
  7814. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7815. .x-tool-gear {
  7816. background-position: 0 -90px; }
  7817. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7818. .x-tool-prev {
  7819. background-position: 0 -105px; }
  7820. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7821. .x-tool-next {
  7822. background-position: 0 -120px; }
  7823. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7824. .x-tool-pin {
  7825. background-position: 0 -135px; }
  7826. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7827. .x-tool-unpin {
  7828. background-position: 0 -150px; }
  7829. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7830. .x-tool-right {
  7831. background-position: 0 -165px; }
  7832. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7833. .x-tool-left {
  7834. background-position: 0 -180px; }
  7835. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7836. .x-tool-help {
  7837. background-position: 0 -300px; }
  7838. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7839. .x-tool-save {
  7840. background-position: 0 -285px; }
  7841. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7842. .x-tool-search {
  7843. background-position: 0 -270px; }
  7844. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7845. .x-tool-minus {
  7846. background-position: 0 -255px; }
  7847. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7848. .x-tool-plus {
  7849. background-position: 0 -240px; }
  7850. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7851. .x-tool-refresh {
  7852. background-position: 0 -225px; }
  7853. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7854. .x-tool-up {
  7855. background-position: 0 -210px; }
  7856. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7857. .x-tool-down {
  7858. background-position: 0 -195px; }
  7859. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7860. .x-tool-collapse {
  7861. background-position: 0 -345px; }
  7862. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7863. .x-tool-expand {
  7864. background-position: 0 -330px; }
  7865. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7866. .x-tool-print {
  7867. background-position: 0 -315px; }
  7868. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7869. .x-tool-expand-bottom,
  7870. .x-tool-collapse-bottom {
  7871. background-position: 0 -195px; }
  7872. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7873. .x-tool-expand-top,
  7874. .x-tool-collapse-top {
  7875. background-position: 0 -210px; }
  7876. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7877. .x-tool-expand-left,
  7878. .x-tool-collapse-left {
  7879. background-position: 0 -180px; }
  7880. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7881. .x-tool-expand-right,
  7882. .x-tool-collapse-right {
  7883. background-position: 0 -165px; }
  7884. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7885. .x-tool-over .x-tool-close {
  7886. background-position: -15px 0; }
  7887. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7888. .x-tool-over .x-tool-minimize {
  7889. background-position: -15px -15px; }
  7890. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7891. .x-tool-over .x-tool-maximize {
  7892. background-position: -15px -30px; }
  7893. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7894. .x-tool-over .x-tool-restore {
  7895. background-position: -15px -45px; }
  7896. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7897. .x-tool-over .x-tool-gear {
  7898. background-position: -15px -90px; }
  7899. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7900. .x-tool-over .x-tool-prev {
  7901. background-position: -15px -105px; }
  7902. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7903. .x-tool-over .x-tool-next {
  7904. background-position: -15px -120px; }
  7905. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7906. .x-tool-over .x-tool-pin {
  7907. background-position: -15px -135px; }
  7908. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7909. .x-tool-over .x-tool-unpin {
  7910. background-position: -15px -150px; }
  7911. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7912. .x-tool-over .x-tool-right {
  7913. background-position: -15px -165px; }
  7914. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7915. .x-tool-over .x-tool-left {
  7916. background-position: -15px -180px; }
  7917. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7918. .x-tool-over .x-tool-down {
  7919. background-position: -15px -195px; }
  7920. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7921. .x-tool-over .x-tool-up {
  7922. background-position: -15px -210px; }
  7923. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7924. .x-tool-over .x-tool-refresh {
  7925. background-position: -15px -225px; }
  7926. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7927. .x-tool-over .x-tool-plus {
  7928. background-position: -15px -240px; }
  7929. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7930. .x-tool-over .x-tool-minus {
  7931. background-position: -15px -255px; }
  7932. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7933. .x-tool-over .x-tool-search {
  7934. background-position: -15px -270px; }
  7935. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7936. .x-tool-over .x-tool-save {
  7937. background-position: -15px -285px; }
  7938. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7939. .x-tool-over .x-tool-help {
  7940. background-position: -15px -300px; }
  7941. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7942. .x-tool-over .x-tool-print {
  7943. background-position: -15px -315px; }
  7944. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7945. .x-tool-over .x-tool-expand {
  7946. background-position: -15px -330px; }
  7947. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7948. .x-tool-over .x-tool-collapse {
  7949. background-position: -15px -345px; }
  7950. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7951. .x-tool-over .x-tool-expand-bottom,
  7952. .x-tool-over .x-tool-collapse-bottom {
  7953. background-position: -15px -195px; }
  7954. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7955. .x-tool-over .x-tool-expand-top,
  7956. .x-tool-over .x-tool-collapse-top {
  7957. background-position: -15px -210px; }
  7958. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7959. .x-tool-over .x-tool-expand-left,
  7960. .x-tool-over .x-tool-collapse-left {
  7961. background-position: -15px -180px; }
  7962. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7963. .x-tool-over .x-tool-expand-right,
  7964. .x-tool-over .x-tool-collapse-right {
  7965. background-position: -15px -165px; }
  7966. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7967. .x-horizontal-scroller-present .x-grid-body {
  7968. border-bottom-width: 0px; }
  7969. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7970. .x-vertical-scroller-present .x-grid-body {
  7971. border-right-width: 0px; }
  7972. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7973. .x-scroller {
  7974. overflow: hidden; }
  7975. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7976. .x-scroller-vertical {
  7977. border: 1px solid #99bce8;
  7978. border-top-color: #c5c5c5; }
  7979. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7980. .x-scroller-horizontal {
  7981. border: 1px solid #99bce8; }
  7982. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7983. .x-vertical-scroller-present .x-scroller-horizontal {
  7984. border-right-width: 0px; }
  7985. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7986. .x-scroller-ct {
  7987. overflow: hidden;
  7988. position: absolute;
  7989. margin: 0;
  7990. padding: 0;
  7991. border: none;
  7992. left: 0px;
  7993. top: 0px;
  7994. /*
  7995. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  7996. perpendicular dimension and breaks the scroll as well as offsets it by the left
  7997. offset that we use to try and keep some size on this element. This works on all
  7998. browsers (including IE9).
  7999. */
  8000. box-sizing: content-box !important;
  8001. -ms-box-sizing: content-box !important;
  8002. -moz-box-sizing: content-box !important;
  8003. -webkit-box-sizing: content-box !important; }
  8004. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8005. .x-scroller-vertical .x-scroller-ct {
  8006. overflow-y: scroll; }
  8007. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8008. .x-scroller-horizontal .x-scroller-ct {
  8009. overflow-x: scroll; }
  8010. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8011. .x-html {
  8012. /* Begin bidirectionality settings (do not change) */ }
  8013. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8014. .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 {
  8015. display: block; }
  8016. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8017. .x-html li {
  8018. display: list-item;
  8019. list-style: disc; }
  8020. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8021. .x-html head {
  8022. display: none; }
  8023. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8024. .x-html table {
  8025. display: table; }
  8026. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8027. .x-html tr {
  8028. display: table-row; }
  8029. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8030. .x-html thead {
  8031. display: table-header-group; }
  8032. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8033. .x-html tbody {
  8034. display: table-row-group; }
  8035. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8036. .x-html tfoot {
  8037. display: table-footer-group; }
  8038. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8039. .x-html col {
  8040. display: table-column; }
  8041. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8042. .x-html colgroup {
  8043. display: table-column-group; }
  8044. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8045. .x-html td, .x-html th {
  8046. display: table-cell; }
  8047. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8048. .x-html caption {
  8049. display: table-caption; }
  8050. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8051. .x-html th {
  8052. font-weight: bolder;
  8053. text-align: center; }
  8054. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8055. .x-html caption {
  8056. text-align: center; }
  8057. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8058. .x-html body {
  8059. margin: 8px; }
  8060. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8061. .x-html h1 {
  8062. font-size: 2em;
  8063. margin: .67em 0; }
  8064. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8065. .x-html h2 {
  8066. font-size: 1.5em;
  8067. margin: .75em 0; }
  8068. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8069. .x-html h3 {
  8070. font-size: 1.17em;
  8071. margin: .83em 0; }
  8072. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8073. .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 {
  8074. margin: 1.12em 0; }
  8075. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8076. .x-html h5 {
  8077. font-size: .83em;
  8078. margin: 1.5em 0; }
  8079. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8080. .x-html h6 {
  8081. font-size: .75em;
  8082. margin: 1.67em 0; }
  8083. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8084. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  8085. font-weight: bolder; }
  8086. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8087. .x-html blockquote {
  8088. margin-left: 40px;
  8089. margin-right: 40px; }
  8090. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8091. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  8092. font-style: italic; }
  8093. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8094. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  8095. font-family: monospace; }
  8096. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8097. .x-html pre {
  8098. white-space: pre; }
  8099. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8100. .x-html button, .x-html textarea, .x-html input, .x-html select {
  8101. display: inline-block; }
  8102. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8103. .x-html big {
  8104. font-size: 1.17em; }
  8105. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8106. .x-html small, .x-html sub, .x-html sup {
  8107. font-size: .83em; }
  8108. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8109. .x-html sub {
  8110. vertical-align: sub; }
  8111. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8112. .x-html sup {
  8113. vertical-align: super; }
  8114. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8115. .x-html table {
  8116. border-spacing: 2px; }
  8117. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8118. .x-html thead, .x-html tbody, .x-html tfoot {
  8119. vertical-align: middle; }
  8120. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8121. .x-html td, .x-html th {
  8122. vertical-align: inherit; }
  8123. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8124. .x-html s, .x-html strike, .x-html del {
  8125. text-decoration: line-through; }
  8126. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8127. .x-html hr {
  8128. border: 1px inset; }
  8129. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8130. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  8131. margin-left: 40px; }
  8132. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8133. .x-html ul, .x-html menu, .x-html dir {
  8134. list-style-type: disc; }
  8135. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8136. .x-html ol {
  8137. list-style-type: decimal; }
  8138. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8139. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  8140. margin-top: 0;
  8141. margin-bottom: 0; }
  8142. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8143. .x-html u, .x-html ins {
  8144. text-decoration: underline; }
  8145. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8146. .x-html br:before {
  8147. content: "\A"; }
  8148. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8149. .x-html :before, .x-html :after {
  8150. white-space: pre-line; }
  8151. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8152. .x-html center {
  8153. text-align: center; }
  8154. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8155. .x-html :link, .x-html :visited {
  8156. text-decoration: underline; }
  8157. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8158. .x-html :focus {
  8159. outline: invert dotted thin; }
  8160. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8161. .x-html BDO[DIR="ltr"] {
  8162. direction: ltr;
  8163. unicode-bidi: bidi-override; }
  8164. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8165. .x-html BDO[DIR="rtl"] {
  8166. direction: rtl;
  8167. unicode-bidi: bidi-override; }