ext-all-gray-debug.css 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795
  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/gray/box/corners.gif'); }
  409. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  410. .x-box-tc {
  411. background-image: url('../../resources/themes/images/gray/box/tb.gif'); }
  412. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  413. .x-box-tr {
  414. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  415. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  416. .x-box-ml {
  417. background-image: url('../../resources/themes/images/gray/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/gray/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/gray/box/r.gif'); }
  432. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  433. .x-box-bl {
  434. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  435. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  436. .x-box-bc {
  437. background-image: url('../../resources/themes/images/gray/box/tb.gif'); }
  438. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  439. .x-box-br {
  440. background-image: url('../../resources/themes/images/gray/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/gray/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/gray/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/gray/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/gray/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: #d0d0d0;
  643. background-image: none;
  644. background-color: #e0e0e0; }
  645. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  646. .x-mask-msg div {
  647. padding: 5px 10px 5px 25px;
  648. background-image: url('../../resources/themes/images/gray/grid/loading.gif');
  649. background-repeat: no-repeat;
  650. background-position: 5px center;
  651. cursor: wait;
  652. border: 1px solid #b3b3b3;
  653. background-color: #eeeeee;
  654. color: #222222;
  655. font: normal 11px tahoma, arial, verdana, sans-serif; }
  656. /**
  657. * Creates the base structure of an Ext.ProgressBar
  658. * @member Ext.ProgressBar
  659. */
  660. /**
  661. * Creates a visual theme for an Ext.ProgressBar
  662. * @member Ext.ProgressBar
  663. */
  664. /**
  665. * Creates base structure for a Draw Component.
  666. * @member Ext.draw.Component
  667. */
  668. /**
  669. * Creates the base structure of Viewport.
  670. * @member Ext.container.Viewport
  671. */
  672. /**
  673. * W3C suggested default style sheet for HTML 4:
  674. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  675. *
  676. * @member Global_CSS
  677. */
  678. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  679. .x-boundlist {
  680. border-width: 1px;
  681. border-style: solid;
  682. border-color: #b5b8c8;
  683. background: white; }
  684. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  685. .x-boundlist .x-toolbar {
  686. border-width: 1px 0 0 0; }
  687. /* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  688. .x-strict .x-ie6 .x-boundlist-list-ct,
  689. .x-strict .x-ie7 .x-boundlist-list-ct {
  690. position: relative; }
  691. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  692. .x-boundlist-item {
  693. padding: 2px;
  694. user-select: none;
  695. -o-user-select: none;
  696. -ms-user-select: none;
  697. -moz-user-select: -moz-none;
  698. -webkit-user-select: none;
  699. cursor: default;
  700. cursor: pointer;
  701. cursor: hand;
  702. position: relative;
  703. /*allow hover in IE on empty items*/
  704. border-width: 1px;
  705. border-style: dotted;
  706. border-color: white; }
  707. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  708. .x-boundlist-selected {
  709. background: #d3d3d3;
  710. border-color: #b3abaa; }
  711. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  712. .x-boundlist-item-over {
  713. background: #e0e0e0;
  714. border-color: #bfb8b8; }
  715. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  716. .x-boundlist-floating {
  717. border-top-width: 0; }
  718. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  719. .x-boundlist-above {
  720. border-top-width: 1px;
  721. border-bottom-width: 1px; }
  722. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  723. .x-btn {
  724. display: inline-block;
  725. zoom: 1;
  726. *display: inline;
  727. position: relative;
  728. cursor: pointer;
  729. cursor: hand;
  730. white-space: nowrap;
  731. vertical-align: middle;
  732. background-repeat: no-repeat; }
  733. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  734. .x-btn * {
  735. cursor: pointer;
  736. cursor: hand; }
  737. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  738. .x-btn em {
  739. background-repeat: no-repeat; }
  740. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  741. .x-btn em a {
  742. text-decoration: none;
  743. display: block;
  744. color: inherit;
  745. width: 100%;
  746. zoom: 1; }
  747. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  748. .x-btn button {
  749. width: 100%;
  750. display: block;
  751. margin: 0;
  752. padding: 0;
  753. border: 0;
  754. background: none;
  755. outline: 0 none;
  756. overflow: hidden;
  757. vertical-align: bottom;
  758. -webkit-appearance: none; }
  759. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  760. .x-btn button::-moz-focus-inner {
  761. border: 0;
  762. padding: 0; }
  763. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  764. .x-btn .x-btn-inner {
  765. display: block;
  766. white-space: nowrap;
  767. background-color: transparent;
  768. background-repeat: no-repeat;
  769. background-position: left center;
  770. overflow: hidden; }
  771. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  772. .x-btn .x-btn-left .x-btn-inner {
  773. text-align: left; }
  774. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  775. .x-btn .x-btn-center .x-btn-inner {
  776. text-align: center; }
  777. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  778. .x-btn .x-btn-right .x-btn-inner {
  779. text-align: right; }
  780. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  781. .x-btn-disabled span {
  782. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  783. opacity: 0.5; }
  784. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  785. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  786. filter: none; }
  787. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  788. .x-ie7 .x-btn-disabled,
  789. .x-ie8 .x-btn-disabled {
  790. filter: none; }
  791. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  792. .x-ie6 .x-btn-disabled .x-btn-icon,
  793. .x-ie7 .x-btn-disabled .x-btn-icon,
  794. .x-ie8 .x-btn-disabled .x-btn-icon {
  795. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  796. opacity: 0.6; }
  797. /* IE9 shows scrollbars in a button unless this is set */
  798. /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  799. .x-ie9 .x-btn button {
  800. overflow: visible!important; }
  801. /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  802. * html .x-ie .x-btn button {
  803. width: 1px; }
  804. /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  805. .x-ie .x-btn button {
  806. overflow-x: visible;
  807. /*prevents extra horiz space in IE*/
  808. vertical-align: baseline;
  809. /*IE doesn't like bottom*/ }
  810. /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  811. .x-strict .x-ie6 .x-btn .x-frame-mc,
  812. .x-strict .x-ie7 .x-btn .x-frame-mc {
  813. height: 100%; }
  814. /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
  815. /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  816. .x-btn .x-frame-mc {
  817. vertical-align: middle;
  818. white-space: nowrap;
  819. cursor: pointer; }
  820. /* Only center when all there is is text. Otherwise solo icons get centered. */
  821. /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  822. .x-btn-noicon .x-frame-mc {
  823. text-align: center; }
  824. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  825. .x-btn-icon-text-left .x-btn-icon {
  826. background-position: left center; }
  827. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  828. .x-btn-icon-text-right .x-btn-icon {
  829. background-position: right center; }
  830. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  831. .x-btn-icon-text-top .x-btn-icon {
  832. background-position: center top; }
  833. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  834. .x-btn-icon-text-bottom .x-btn-icon {
  835. background-position: center bottom; }
  836. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  837. .x-btn button, .x-btn a {
  838. position: relative; }
  839. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  840. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  841. position: absolute;
  842. background-repeat: no-repeat; }
  843. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  844. .x-btn-arrow-right {
  845. background: transparent no-repeat right center;
  846. padding-right: 12px; }
  847. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  848. .x-btn-arrow-right .x-btn-inner {
  849. padding-right: 0 !important; }
  850. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  851. .x-toolbar .x-btn-arrow-right {
  852. padding-right: 12px; }
  853. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  854. .x-btn-arrow-bottom {
  855. background: transparent no-repeat center bottom;
  856. padding-bottom: 12px; }
  857. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  858. .x-btn-arrow {
  859. background-image: url('../../resources/themes/images/gray/button/arrow.gif');
  860. display: block; }
  861. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  862. .x-btn-split-right,
  863. .x-btn-over .x-btn-split-right {
  864. background: transparent no-repeat right center;
  865. background-image: url('../../resources/themes/images/gray/button/s-arrow.gif');
  866. padding-right: 14px !important; }
  867. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  868. .x-btn-split-bottom,
  869. .x-btn-over .x-btn-split-bottom {
  870. background: transparent no-repeat center bottom;
  871. background-image: url('../../resources/themes/images/gray/button/s-arrow-b.gif');
  872. padding-bottom: 14px; }
  873. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  874. .x-toolbar .x-btn-split-right {
  875. background-image: url('../../resources/themes/images/gray/button/s-arrow-noline.gif');
  876. padding-right: 12px !important; }
  877. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  878. .x-toolbar .x-btn-split-bottom {
  879. background-image: url('../../resources/themes/images/gray/button/s-arrow-b-noline.gif'); }
  880. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  881. .x-btn-split {
  882. display: block; }
  883. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  884. .x-item-disabled,
  885. .x-item-disabled * {
  886. cursor: default; }
  887. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  888. .x-cycle-fixed-width .x-btn-inner {
  889. text-align: inherit; }
  890. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  891. .x-btn-over .x-btn-split-right {
  892. background-image: url('../../resources/themes/images/gray/button/s-arrow-o.gif'); }
  893. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  894. .x-btn-over .x-btn-split-bottom {
  895. background-image: url('../../resources/themes/images/gray/button/s-arrow-bo.gif'); }
  896. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  897. .x-btn-default-small {
  898. border-color: #bbbbbb; }
  899. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  900. .x-btn-default-small {
  901. -webkit-border-radius: 3px;
  902. -moz-border-radius: 3px;
  903. -ms-border-radius: 3px;
  904. -o-border-radius: 3px;
  905. border-radius: 3px;
  906. padding: 2px 2px 2px 2px;
  907. border-width: 1px;
  908. border-style: solid;
  909. background-image: none;
  910. background-color: #f8f8f8;
  911. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  912. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  913. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  914. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  915. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  916. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  917. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  918. .x-nlg .x-btn-default-small-mc {
  919. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-bg.gif');
  920. background-color: #f8f8f8; }
  921. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  922. .x-nbr .x-btn-default-small {
  923. padding: 0 !important;
  924. border-width: 0 !important;
  925. -webkit-border-radius: 0px;
  926. -moz-border-radius: 0px;
  927. -ms-border-radius: 0px;
  928. -o-border-radius: 0px;
  929. border-radius: 0px;
  930. background-color: transparent;
  931. background-position: 1100303px 1000303px; }
  932. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  933. .x-nbr .x-btn-default-small-tl,
  934. .x-nbr .x-btn-default-small-bl,
  935. .x-nbr .x-btn-default-small-tr,
  936. .x-nbr .x-btn-default-small-br,
  937. .x-nbr .x-btn-default-small-tc,
  938. .x-nbr .x-btn-default-small-bc,
  939. .x-nbr .x-btn-default-small-ml,
  940. .x-nbr .x-btn-default-small-mr {
  941. zoom: 1;
  942. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-corners.gif'); }
  943. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  944. .x-nbr .x-btn-default-small-ml,
  945. .x-nbr .x-btn-default-small-mr {
  946. zoom: 1;
  947. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-sides.gif');
  948. background-position: 0 0; }
  949. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  950. .x-nbr .x-btn-default-small-mc {
  951. padding: 0px 0px 0px 0px; }
  952. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  953. .x-strict .x-ie7 .x-btn-default-small-tl,
  954. .x-strict .x-ie7 .x-btn-default-small-bl {
  955. position: relative;
  956. right: 0; }
  957. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  958. .x-btn-default-small .x-btn-inner {
  959. font-size: 11px;
  960. font-weight: normal;
  961. font-family: tahoma, arial, verdana, sans-serif;
  962. color: #333333;
  963. background-repeat: no-repeat;
  964. padding: 0 4px; }
  965. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  966. .x-btn-default-small-icon button,
  967. .x-btn-default-small-icon a,
  968. .x-btn-default-small-icon .x-btn-inner,
  969. .x-btn-default-small-noicon button,
  970. .x-btn-default-small-noicon a,
  971. .x-btn-default-small-noicon .x-btn-inner {
  972. height: 16px;
  973. line-height: 16px; }
  974. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  975. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  976. padding: 0; }
  977. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  978. .x-btn-default-small-icon .x-btn-inner {
  979. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  980. width: 16px;
  981. padding: 0; }
  982. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  983. .x-btn-default-small-icon .x-btn-icon {
  984. width: 16px;
  985. height: 16px;
  986. top: 0;
  987. left: 0;
  988. bottom: 0;
  989. right: 0; }
  990. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  991. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  992. height: 16px; }
  993. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  994. .x-btn-default-small-icon-text-left .x-btn-inner {
  995. height: 16px;
  996. line-height: 16px;
  997. padding-left: 20px; }
  998. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  999. .x-btn-default-small-icon-text-left .x-btn-icon {
  1000. width: 16px;
  1001. height: auto;
  1002. top: 0;
  1003. left: 0;
  1004. bottom: 0;
  1005. right: auto; }
  1006. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1007. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  1008. height: 16px; }
  1009. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1010. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  1011. height: 16px; }
  1012. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1013. .x-btn-default-small-icon-text-right .x-btn-inner {
  1014. height: 16px;
  1015. line-height: 16px;
  1016. padding-right: 20px !important; }
  1017. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1018. .x-btn-default-small-icon-text-right .x-btn-icon {
  1019. width: 16px;
  1020. height: auto;
  1021. top: 0;
  1022. left: auto;
  1023. bottom: 0;
  1024. right: 0; }
  1025. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1026. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  1027. height: 16px; }
  1028. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1029. .x-btn-default-small-icon-text-top .x-btn-inner {
  1030. padding-top: 20px; }
  1031. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1032. .x-btn-default-small-icon-text-top .x-btn-icon {
  1033. width: auto;
  1034. height: 16px;
  1035. top: 0;
  1036. left: 0;
  1037. bottom: auto;
  1038. right: 0; }
  1039. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1040. .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 {
  1041. width: 16px; }
  1042. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1043. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  1044. padding-bottom: 20px; }
  1045. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1046. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1047. width: auto;
  1048. height: 16px;
  1049. top: auto;
  1050. left: 0;
  1051. bottom: 0;
  1052. right: 0; }
  1053. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1054. .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 {
  1055. width: 16px; }
  1056. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1057. .x-btn-default-small-over {
  1058. border-color: #9d9d9d;
  1059. background-image: none;
  1060. background-color: #f3f3f3;
  1061. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1062. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1063. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1064. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1065. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1066. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1067. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1068. .x-btn-default-small-focus {
  1069. border-color: #9d9d9d;
  1070. background-image: none;
  1071. background-color: #f3f3f3;
  1072. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1073. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1074. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1075. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1076. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1077. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1078. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1079. .x-btn-default-small-menu-active,
  1080. .x-btn-default-small-pressed {
  1081. border-color: #9d9d9d;
  1082. background-image: none;
  1083. background-color: #d6d6d6;
  1084. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1085. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1086. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1087. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1088. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1089. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1090. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1091. .x-btn-default-small-disabled {
  1092. border-color: #d7d7d7;
  1093. background-image: none;
  1094. background-color: #ececec;
  1095. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1096. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1097. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1098. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1099. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1100. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1101. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1102. .x-btn-default-small-disabled .x-btn-inner {
  1103. color: #333333 !important; }
  1104. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1105. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1106. color: #595959 !important; }
  1107. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1108. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1109. color: #8c8c8c !important; }
  1110. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1111. .x-nbr .x-btn-default-small-over .x-frame-tl,
  1112. .x-nbr .x-btn-default-small-over .x-frame-bl,
  1113. .x-nbr .x-btn-default-small-over .x-frame-tr,
  1114. .x-nbr .x-btn-default-small-over .x-frame-br,
  1115. .x-nbr .x-btn-default-small-over .x-frame-tc,
  1116. .x-nbr .x-btn-default-small-over .x-frame-bc {
  1117. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-corners.gif'); }
  1118. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1119. .x-nbr .x-btn-default-small-over .x-frame-ml,
  1120. .x-nbr .x-btn-default-small-over .x-frame-mr {
  1121. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-sides.gif'); }
  1122. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1123. .x-nbr .x-btn-default-small-over .x-frame-mc {
  1124. background-color: #f3f3f3;
  1125. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-bg.gif'); }
  1126. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1127. .x-nbr .x-btn-default-small-focus .x-frame-tl,
  1128. .x-nbr .x-btn-default-small-focus .x-frame-bl,
  1129. .x-nbr .x-btn-default-small-focus .x-frame-tr,
  1130. .x-nbr .x-btn-default-small-focus .x-frame-br,
  1131. .x-nbr .x-btn-default-small-focus .x-frame-tc,
  1132. .x-nbr .x-btn-default-small-focus .x-frame-bc {
  1133. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-corners.gif'); }
  1134. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1135. .x-nbr .x-btn-default-small-focus .x-frame-ml,
  1136. .x-nbr .x-btn-default-small-focus .x-frame-mr {
  1137. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-sides.gif'); }
  1138. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1139. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  1140. background-color: #f3f3f3;
  1141. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-bg.gif'); }
  1142. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1143. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
  1144. .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
  1145. .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
  1146. .x-nbr .x-btn-default-small-menu-active .x-frame-br,
  1147. .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
  1148. .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
  1149. .x-nbr .x-btn-default-small-pressed .x-frame-tl,
  1150. .x-nbr .x-btn-default-small-pressed .x-frame-bl,
  1151. .x-nbr .x-btn-default-small-pressed .x-frame-tr,
  1152. .x-nbr .x-btn-default-small-pressed .x-frame-br,
  1153. .x-nbr .x-btn-default-small-pressed .x-frame-tc,
  1154. .x-nbr .x-btn-default-small-pressed .x-frame-bc {
  1155. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-corners.gif'); }
  1156. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1157. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
  1158. .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
  1159. .x-nbr .x-btn-default-small-pressed .x-frame-ml,
  1160. .x-nbr .x-btn-default-small-pressed .x-frame-mr {
  1161. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-sides.gif'); }
  1162. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1163. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
  1164. .x-nbr .x-btn-default-small-pressed .x-frame-mc {
  1165. background-color: #d6d6d6;
  1166. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-bg.gif'); }
  1167. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1168. .x-nbr .x-btn-default-small-disabled .x-frame-tl,
  1169. .x-nbr .x-btn-default-small-disabled .x-frame-bl,
  1170. .x-nbr .x-btn-default-small-disabled .x-frame-tr,
  1171. .x-nbr .x-btn-default-small-disabled .x-frame-br,
  1172. .x-nbr .x-btn-default-small-disabled .x-frame-tc,
  1173. .x-nbr .x-btn-default-small-disabled .x-frame-bc {
  1174. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-corners.gif'); }
  1175. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1176. .x-nbr .x-btn-default-small-disabled .x-frame-ml,
  1177. .x-nbr .x-btn-default-small-disabled .x-frame-mr {
  1178. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-sides.gif'); }
  1179. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1180. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  1181. background-color: #ececec;
  1182. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-bg.gif'); }
  1183. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1184. .x-nlg .x-btn-default-small {
  1185. background-repeat: repeat-x;
  1186. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-bg.gif'); }
  1187. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1188. .x-nlg .x-btn-default-small-over {
  1189. background-repeat: repeat-x;
  1190. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-bg.gif'); }
  1191. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1192. .x-nlg .x-btn-default-small-focus {
  1193. background-repeat: repeat-x;
  1194. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-bg.gif'); }
  1195. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1196. .x-nlg .x-btn-default-small-menu-active,
  1197. .x-nlg .x-btn-default-small-pressed {
  1198. background-repeat: repeat-x;
  1199. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-bg.gif'); }
  1200. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1201. .x-nlg .x-btn-default-small-disabled {
  1202. background-repeat: repeat-x;
  1203. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-bg.gif'); }
  1204. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1205. .x-btn-default-medium {
  1206. border-color: #bbbbbb; }
  1207. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1208. .x-btn-default-medium {
  1209. -webkit-border-radius: 3px;
  1210. -moz-border-radius: 3px;
  1211. -ms-border-radius: 3px;
  1212. -o-border-radius: 3px;
  1213. border-radius: 3px;
  1214. padding: 3px 3px 3px 3px;
  1215. border-width: 1px;
  1216. border-style: solid;
  1217. background-image: none;
  1218. background-color: #f8f8f8;
  1219. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  1220. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  1221. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  1222. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  1223. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  1224. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  1225. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1226. .x-nlg .x-btn-default-medium-mc {
  1227. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-bg.gif');
  1228. background-color: #f8f8f8; }
  1229. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1230. .x-nbr .x-btn-default-medium {
  1231. padding: 0 !important;
  1232. border-width: 0 !important;
  1233. -webkit-border-radius: 0px;
  1234. -moz-border-radius: 0px;
  1235. -ms-border-radius: 0px;
  1236. -o-border-radius: 0px;
  1237. border-radius: 0px;
  1238. background-color: transparent;
  1239. background-position: 1100303px 1000303px; }
  1240. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1241. .x-nbr .x-btn-default-medium-tl,
  1242. .x-nbr .x-btn-default-medium-bl,
  1243. .x-nbr .x-btn-default-medium-tr,
  1244. .x-nbr .x-btn-default-medium-br,
  1245. .x-nbr .x-btn-default-medium-tc,
  1246. .x-nbr .x-btn-default-medium-bc,
  1247. .x-nbr .x-btn-default-medium-ml,
  1248. .x-nbr .x-btn-default-medium-mr {
  1249. zoom: 1;
  1250. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-corners.gif'); }
  1251. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1252. .x-nbr .x-btn-default-medium-ml,
  1253. .x-nbr .x-btn-default-medium-mr {
  1254. zoom: 1;
  1255. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-sides.gif');
  1256. background-position: 0 0; }
  1257. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1258. .x-nbr .x-btn-default-medium-mc {
  1259. padding: 1px 1px 1px 1px; }
  1260. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1261. .x-strict .x-ie7 .x-btn-default-medium-tl,
  1262. .x-strict .x-ie7 .x-btn-default-medium-bl {
  1263. position: relative;
  1264. right: 0; }
  1265. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1266. .x-btn-default-medium .x-btn-inner {
  1267. font-size: 11px;
  1268. font-weight: normal;
  1269. font-family: tahoma, arial, verdana, sans-serif;
  1270. color: #333333;
  1271. background-repeat: no-repeat;
  1272. padding: 0 3px; }
  1273. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1274. .x-btn-default-medium-icon button,
  1275. .x-btn-default-medium-icon a,
  1276. .x-btn-default-medium-icon .x-btn-inner,
  1277. .x-btn-default-medium-noicon button,
  1278. .x-btn-default-medium-noicon a,
  1279. .x-btn-default-medium-noicon .x-btn-inner {
  1280. height: 24px;
  1281. line-height: 24px; }
  1282. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1283. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1284. padding: 0; }
  1285. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1286. .x-btn-default-medium-icon .x-btn-inner {
  1287. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1288. width: 24px;
  1289. padding: 0; }
  1290. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1291. .x-btn-default-medium-icon .x-btn-icon {
  1292. width: 24px;
  1293. height: 24px;
  1294. top: 0;
  1295. left: 0;
  1296. bottom: 0;
  1297. right: 0; }
  1298. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1299. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1300. height: 24px; }
  1301. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1302. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1303. height: 24px;
  1304. line-height: 24px;
  1305. padding-left: 28px; }
  1306. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1307. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1308. width: 24px;
  1309. height: auto;
  1310. top: 0;
  1311. left: 0;
  1312. bottom: 0;
  1313. right: auto; }
  1314. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1315. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1316. height: 24px; }
  1317. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1318. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1319. height: 24px; }
  1320. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1321. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1322. height: 24px;
  1323. line-height: 24px;
  1324. padding-right: 28px !important; }
  1325. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1326. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1327. width: 24px;
  1328. height: auto;
  1329. top: 0;
  1330. left: auto;
  1331. bottom: 0;
  1332. right: 0; }
  1333. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1334. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1335. height: 24px; }
  1336. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1337. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1338. padding-top: 28px; }
  1339. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1340. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1341. width: auto;
  1342. height: 24px;
  1343. top: 0;
  1344. left: 0;
  1345. bottom: auto;
  1346. right: 0; }
  1347. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1348. .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 {
  1349. width: 24px; }
  1350. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1351. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1352. padding-bottom: 28px; }
  1353. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1354. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1355. width: auto;
  1356. height: 24px;
  1357. top: auto;
  1358. left: 0;
  1359. bottom: 0;
  1360. right: 0; }
  1361. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1362. .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 {
  1363. width: 24px; }
  1364. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1365. .x-btn-default-medium-over {
  1366. border-color: #9d9d9d;
  1367. background-image: none;
  1368. background-color: #f3f3f3;
  1369. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1370. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1371. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1372. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1373. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1374. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1375. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1376. .x-btn-default-medium-focus {
  1377. border-color: #9d9d9d;
  1378. background-image: none;
  1379. background-color: #f3f3f3;
  1380. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1381. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1382. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1383. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1384. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1385. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1386. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1387. .x-btn-default-medium-menu-active,
  1388. .x-btn-default-medium-pressed {
  1389. border-color: #9d9d9d;
  1390. background-image: none;
  1391. background-color: #d6d6d6;
  1392. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1393. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1394. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1395. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1396. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1397. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1398. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1399. .x-btn-default-medium-disabled {
  1400. border-color: #d7d7d7;
  1401. background-image: none;
  1402. background-color: #ececec;
  1403. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1404. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1405. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1406. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1407. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1408. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1409. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1410. .x-btn-default-medium-disabled .x-btn-inner {
  1411. color: #333333 !important; }
  1412. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1413. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1414. color: #595959 !important; }
  1415. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1416. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1417. color: #8c8c8c !important; }
  1418. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1419. .x-nbr .x-btn-default-medium-over .x-frame-tl,
  1420. .x-nbr .x-btn-default-medium-over .x-frame-bl,
  1421. .x-nbr .x-btn-default-medium-over .x-frame-tr,
  1422. .x-nbr .x-btn-default-medium-over .x-frame-br,
  1423. .x-nbr .x-btn-default-medium-over .x-frame-tc,
  1424. .x-nbr .x-btn-default-medium-over .x-frame-bc {
  1425. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-corners.gif'); }
  1426. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1427. .x-nbr .x-btn-default-medium-over .x-frame-ml,
  1428. .x-nbr .x-btn-default-medium-over .x-frame-mr {
  1429. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-sides.gif'); }
  1430. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1431. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1432. background-color: #f3f3f3;
  1433. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-bg.gif'); }
  1434. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1435. .x-nbr .x-btn-default-medium-focus .x-frame-tl,
  1436. .x-nbr .x-btn-default-medium-focus .x-frame-bl,
  1437. .x-nbr .x-btn-default-medium-focus .x-frame-tr,
  1438. .x-nbr .x-btn-default-medium-focus .x-frame-br,
  1439. .x-nbr .x-btn-default-medium-focus .x-frame-tc,
  1440. .x-nbr .x-btn-default-medium-focus .x-frame-bc {
  1441. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-corners.gif'); }
  1442. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1443. .x-nbr .x-btn-default-medium-focus .x-frame-ml,
  1444. .x-nbr .x-btn-default-medium-focus .x-frame-mr {
  1445. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-sides.gif'); }
  1446. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1447. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1448. background-color: #f3f3f3;
  1449. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-bg.gif'); }
  1450. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1451. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
  1452. .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
  1453. .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
  1454. .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
  1455. .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
  1456. .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
  1457. .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
  1458. .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
  1459. .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
  1460. .x-nbr .x-btn-default-medium-pressed .x-frame-br,
  1461. .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
  1462. .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
  1463. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-corners.gif'); }
  1464. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1465. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
  1466. .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
  1467. .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
  1468. .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
  1469. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-sides.gif'); }
  1470. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1471. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
  1472. .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
  1473. background-color: #d6d6d6;
  1474. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-bg.gif'); }
  1475. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1476. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
  1477. .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
  1478. .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
  1479. .x-nbr .x-btn-default-medium-disabled .x-frame-br,
  1480. .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
  1481. .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
  1482. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-corners.gif'); }
  1483. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1484. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
  1485. .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
  1486. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-sides.gif'); }
  1487. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1488. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1489. background-color: #ececec;
  1490. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-bg.gif'); }
  1491. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1492. .x-nlg .x-btn-default-medium {
  1493. background-repeat: repeat-x;
  1494. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-bg.gif'); }
  1495. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1496. .x-nlg .x-btn-default-medium-over {
  1497. background-repeat: repeat-x;
  1498. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-bg.gif'); }
  1499. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1500. .x-nlg .x-btn-default-medium-focus {
  1501. background-repeat: repeat-x;
  1502. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-bg.gif'); }
  1503. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1504. .x-nlg .x-btn-default-medium-menu-active,
  1505. .x-nlg .x-btn-default-medium-pressed {
  1506. background-repeat: repeat-x;
  1507. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-bg.gif'); }
  1508. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1509. .x-nlg .x-btn-default-medium-disabled {
  1510. background-repeat: repeat-x;
  1511. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-bg.gif'); }
  1512. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1513. .x-btn-default-large {
  1514. border-color: #bbbbbb; }
  1515. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1516. .x-btn-default-large {
  1517. -webkit-border-radius: 3px;
  1518. -moz-border-radius: 3px;
  1519. -ms-border-radius: 3px;
  1520. -o-border-radius: 3px;
  1521. border-radius: 3px;
  1522. padding: 3px 3px 3px 3px;
  1523. border-width: 1px;
  1524. border-style: solid;
  1525. background-image: none;
  1526. background-color: #f8f8f8;
  1527. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  1528. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  1529. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  1530. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  1531. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  1532. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  1533. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1534. .x-nlg .x-btn-default-large-mc {
  1535. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-bg.gif');
  1536. background-color: #f8f8f8; }
  1537. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1538. .x-nbr .x-btn-default-large {
  1539. padding: 0 !important;
  1540. border-width: 0 !important;
  1541. -webkit-border-radius: 0px;
  1542. -moz-border-radius: 0px;
  1543. -ms-border-radius: 0px;
  1544. -o-border-radius: 0px;
  1545. border-radius: 0px;
  1546. background-color: transparent;
  1547. background-position: 1100303px 1000303px; }
  1548. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1549. .x-nbr .x-btn-default-large-tl,
  1550. .x-nbr .x-btn-default-large-bl,
  1551. .x-nbr .x-btn-default-large-tr,
  1552. .x-nbr .x-btn-default-large-br,
  1553. .x-nbr .x-btn-default-large-tc,
  1554. .x-nbr .x-btn-default-large-bc,
  1555. .x-nbr .x-btn-default-large-ml,
  1556. .x-nbr .x-btn-default-large-mr {
  1557. zoom: 1;
  1558. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-corners.gif'); }
  1559. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1560. .x-nbr .x-btn-default-large-ml,
  1561. .x-nbr .x-btn-default-large-mr {
  1562. zoom: 1;
  1563. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-sides.gif');
  1564. background-position: 0 0; }
  1565. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1566. .x-nbr .x-btn-default-large-mc {
  1567. padding: 1px 1px 1px 1px; }
  1568. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1569. .x-strict .x-ie7 .x-btn-default-large-tl,
  1570. .x-strict .x-ie7 .x-btn-default-large-bl {
  1571. position: relative;
  1572. right: 0; }
  1573. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1574. .x-btn-default-large .x-btn-inner {
  1575. font-size: 11px;
  1576. font-weight: normal;
  1577. font-family: tahoma, arial, verdana, sans-serif;
  1578. color: #333333;
  1579. background-repeat: no-repeat;
  1580. padding: 0 3px; }
  1581. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1582. .x-btn-default-large-icon button,
  1583. .x-btn-default-large-icon a,
  1584. .x-btn-default-large-icon .x-btn-inner,
  1585. .x-btn-default-large-noicon button,
  1586. .x-btn-default-large-noicon a,
  1587. .x-btn-default-large-noicon .x-btn-inner {
  1588. height: 32px;
  1589. line-height: 32px; }
  1590. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1591. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1592. padding: 0; }
  1593. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1594. .x-btn-default-large-icon .x-btn-inner {
  1595. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1596. width: 32px;
  1597. padding: 0; }
  1598. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1599. .x-btn-default-large-icon .x-btn-icon {
  1600. width: 32px;
  1601. height: 32px;
  1602. top: 0;
  1603. left: 0;
  1604. bottom: 0;
  1605. right: 0; }
  1606. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1607. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1608. height: 32px; }
  1609. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1610. .x-btn-default-large-icon-text-left .x-btn-inner {
  1611. height: 32px;
  1612. line-height: 32px;
  1613. padding-left: 36px; }
  1614. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1615. .x-btn-default-large-icon-text-left .x-btn-icon {
  1616. width: 32px;
  1617. height: auto;
  1618. top: 0;
  1619. left: 0;
  1620. bottom: 0;
  1621. right: auto; }
  1622. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1623. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1624. height: 32px; }
  1625. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1626. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1627. height: 32px; }
  1628. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1629. .x-btn-default-large-icon-text-right .x-btn-inner {
  1630. height: 32px;
  1631. line-height: 32px;
  1632. padding-right: 36px !important; }
  1633. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1634. .x-btn-default-large-icon-text-right .x-btn-icon {
  1635. width: 32px;
  1636. height: auto;
  1637. top: 0;
  1638. left: auto;
  1639. bottom: 0;
  1640. right: 0; }
  1641. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1642. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1643. height: 32px; }
  1644. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1645. .x-btn-default-large-icon-text-top .x-btn-inner {
  1646. padding-top: 36px; }
  1647. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1648. .x-btn-default-large-icon-text-top .x-btn-icon {
  1649. width: auto;
  1650. height: 32px;
  1651. top: 0;
  1652. left: 0;
  1653. bottom: auto;
  1654. right: 0; }
  1655. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1656. .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 {
  1657. width: 32px; }
  1658. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1659. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1660. padding-bottom: 36px; }
  1661. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1662. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1663. width: auto;
  1664. height: 32px;
  1665. top: auto;
  1666. left: 0;
  1667. bottom: 0;
  1668. right: 0; }
  1669. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1670. .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 {
  1671. width: 32px; }
  1672. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1673. .x-btn-default-large-over {
  1674. border-color: #9d9d9d;
  1675. background-image: none;
  1676. background-color: #f3f3f3;
  1677. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1678. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1679. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1680. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1681. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1682. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1683. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1684. .x-btn-default-large-focus {
  1685. border-color: #9d9d9d;
  1686. background-image: none;
  1687. background-color: #f3f3f3;
  1688. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1689. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1690. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1691. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1692. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1693. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1694. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1695. .x-btn-default-large-menu-active,
  1696. .x-btn-default-large-pressed {
  1697. border-color: #9d9d9d;
  1698. background-image: none;
  1699. background-color: #d6d6d6;
  1700. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1701. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1702. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1703. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1704. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1705. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1706. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1707. .x-btn-default-large-disabled {
  1708. border-color: #d7d7d7;
  1709. background-image: none;
  1710. background-color: #ececec;
  1711. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1712. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1713. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1714. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1715. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1716. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1717. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1718. .x-btn-default-large-disabled .x-btn-inner {
  1719. color: #333333 !important; }
  1720. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1721. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1722. color: #595959 !important; }
  1723. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1724. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1725. color: #8c8c8c !important; }
  1726. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1727. .x-nbr .x-btn-default-large-over .x-frame-tl,
  1728. .x-nbr .x-btn-default-large-over .x-frame-bl,
  1729. .x-nbr .x-btn-default-large-over .x-frame-tr,
  1730. .x-nbr .x-btn-default-large-over .x-frame-br,
  1731. .x-nbr .x-btn-default-large-over .x-frame-tc,
  1732. .x-nbr .x-btn-default-large-over .x-frame-bc {
  1733. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-corners.gif'); }
  1734. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1735. .x-nbr .x-btn-default-large-over .x-frame-ml,
  1736. .x-nbr .x-btn-default-large-over .x-frame-mr {
  1737. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-sides.gif'); }
  1738. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1739. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1740. background-color: #f3f3f3;
  1741. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-bg.gif'); }
  1742. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1743. .x-nbr .x-btn-default-large-focus .x-frame-tl,
  1744. .x-nbr .x-btn-default-large-focus .x-frame-bl,
  1745. .x-nbr .x-btn-default-large-focus .x-frame-tr,
  1746. .x-nbr .x-btn-default-large-focus .x-frame-br,
  1747. .x-nbr .x-btn-default-large-focus .x-frame-tc,
  1748. .x-nbr .x-btn-default-large-focus .x-frame-bc {
  1749. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-corners.gif'); }
  1750. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1751. .x-nbr .x-btn-default-large-focus .x-frame-ml,
  1752. .x-nbr .x-btn-default-large-focus .x-frame-mr {
  1753. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-sides.gif'); }
  1754. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1755. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1756. background-color: #f3f3f3;
  1757. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-bg.gif'); }
  1758. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1759. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
  1760. .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
  1761. .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
  1762. .x-nbr .x-btn-default-large-menu-active .x-frame-br,
  1763. .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
  1764. .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
  1765. .x-nbr .x-btn-default-large-pressed .x-frame-tl,
  1766. .x-nbr .x-btn-default-large-pressed .x-frame-bl,
  1767. .x-nbr .x-btn-default-large-pressed .x-frame-tr,
  1768. .x-nbr .x-btn-default-large-pressed .x-frame-br,
  1769. .x-nbr .x-btn-default-large-pressed .x-frame-tc,
  1770. .x-nbr .x-btn-default-large-pressed .x-frame-bc {
  1771. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-corners.gif'); }
  1772. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1773. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
  1774. .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
  1775. .x-nbr .x-btn-default-large-pressed .x-frame-ml,
  1776. .x-nbr .x-btn-default-large-pressed .x-frame-mr {
  1777. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-sides.gif'); }
  1778. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1779. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
  1780. .x-nbr .x-btn-default-large-pressed .x-frame-mc {
  1781. background-color: #d6d6d6;
  1782. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-bg.gif'); }
  1783. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1784. .x-nbr .x-btn-default-large-disabled .x-frame-tl,
  1785. .x-nbr .x-btn-default-large-disabled .x-frame-bl,
  1786. .x-nbr .x-btn-default-large-disabled .x-frame-tr,
  1787. .x-nbr .x-btn-default-large-disabled .x-frame-br,
  1788. .x-nbr .x-btn-default-large-disabled .x-frame-tc,
  1789. .x-nbr .x-btn-default-large-disabled .x-frame-bc {
  1790. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-corners.gif'); }
  1791. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1792. .x-nbr .x-btn-default-large-disabled .x-frame-ml,
  1793. .x-nbr .x-btn-default-large-disabled .x-frame-mr {
  1794. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-sides.gif'); }
  1795. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1796. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1797. background-color: #ececec;
  1798. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-bg.gif'); }
  1799. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1800. .x-nlg .x-btn-default-large {
  1801. background-repeat: repeat-x;
  1802. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-bg.gif'); }
  1803. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1804. .x-nlg .x-btn-default-large-over {
  1805. background-repeat: repeat-x;
  1806. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-bg.gif'); }
  1807. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1808. .x-nlg .x-btn-default-large-focus {
  1809. background-repeat: repeat-x;
  1810. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-bg.gif'); }
  1811. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1812. .x-nlg .x-btn-default-large-menu-active,
  1813. .x-nlg .x-btn-default-large-pressed {
  1814. background-repeat: repeat-x;
  1815. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-bg.gif'); }
  1816. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1817. .x-nlg .x-btn-default-large-disabled {
  1818. background-repeat: repeat-x;
  1819. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-bg.gif'); }
  1820. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1821. .x-btn-default-toolbar-small {
  1822. border-color: transparent; }
  1823. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1824. .x-btn-default-toolbar-small {
  1825. -webkit-border-radius: 3px;
  1826. -moz-border-radius: 3px;
  1827. -ms-border-radius: 3px;
  1828. -o-border-radius: 3px;
  1829. border-radius: 3px;
  1830. padding: 2px 2px 2px 2px;
  1831. border-width: 1px;
  1832. border-style: solid;
  1833. background-color: transparent; }
  1834. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1835. .x-nlg .x-btn-default-toolbar-small-mc {
  1836. background-color: transparent; }
  1837. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1838. .x-nbr .x-btn-default-toolbar-small {
  1839. padding: 0 !important;
  1840. border-width: 0 !important;
  1841. -webkit-border-radius: 0px;
  1842. -moz-border-radius: 0px;
  1843. -ms-border-radius: 0px;
  1844. -o-border-radius: 0px;
  1845. border-radius: 0px;
  1846. background-color: transparent;
  1847. background-position: 1100303px 1000303px; }
  1848. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1849. .x-nbr .x-btn-default-toolbar-small-tl,
  1850. .x-nbr .x-btn-default-toolbar-small-bl,
  1851. .x-nbr .x-btn-default-toolbar-small-tr,
  1852. .x-nbr .x-btn-default-toolbar-small-br,
  1853. .x-nbr .x-btn-default-toolbar-small-tc,
  1854. .x-nbr .x-btn-default-toolbar-small-bc,
  1855. .x-nbr .x-btn-default-toolbar-small-ml,
  1856. .x-nbr .x-btn-default-toolbar-small-mr {
  1857. zoom: 1; }
  1858. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1859. .x-nbr .x-btn-default-toolbar-small-ml,
  1860. .x-nbr .x-btn-default-toolbar-small-mr {
  1861. zoom: 1; }
  1862. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1863. .x-nbr .x-btn-default-toolbar-small-mc {
  1864. padding: 0px 0px 0px 0px; }
  1865. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1866. .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
  1867. .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  1868. position: relative;
  1869. right: 0; }
  1870. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1871. .x-btn-default-toolbar-small .x-btn-inner {
  1872. font-size: 11px;
  1873. font-weight: normal;
  1874. font-family: tahoma, arial, verdana, sans-serif;
  1875. color: #333333;
  1876. background-repeat: no-repeat;
  1877. padding: 0 4px; }
  1878. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1879. .x-btn-default-toolbar-small-icon button,
  1880. .x-btn-default-toolbar-small-icon a,
  1881. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1882. .x-btn-default-toolbar-small-noicon button,
  1883. .x-btn-default-toolbar-small-noicon a,
  1884. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1885. height: 16px;
  1886. line-height: 16px; }
  1887. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1888. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1889. padding: 0; }
  1890. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1891. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1892. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1893. width: 16px;
  1894. padding: 0; }
  1895. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1896. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1897. width: 16px;
  1898. height: 16px;
  1899. top: 0;
  1900. left: 0;
  1901. bottom: 0;
  1902. right: 0; }
  1903. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1904. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1905. height: 16px; }
  1906. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1907. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1908. height: 16px;
  1909. line-height: 16px;
  1910. padding-left: 20px; }
  1911. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1912. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1913. width: 16px;
  1914. height: auto;
  1915. top: 0;
  1916. left: 0;
  1917. bottom: 0;
  1918. right: auto; }
  1919. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1920. .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 {
  1921. height: 16px; }
  1922. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1923. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1924. height: 16px; }
  1925. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1926. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1927. height: 16px;
  1928. line-height: 16px;
  1929. padding-right: 20px !important; }
  1930. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1931. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1932. width: 16px;
  1933. height: auto;
  1934. top: 0;
  1935. left: auto;
  1936. bottom: 0;
  1937. right: 0; }
  1938. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1939. .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 {
  1940. height: 16px; }
  1941. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1942. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1943. padding-top: 20px; }
  1944. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1945. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1946. width: auto;
  1947. height: 16px;
  1948. top: 0;
  1949. left: 0;
  1950. bottom: auto;
  1951. right: 0; }
  1952. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1953. .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 {
  1954. width: 16px; }
  1955. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1956. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1957. padding-bottom: 20px; }
  1958. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1959. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1960. width: auto;
  1961. height: 16px;
  1962. top: auto;
  1963. left: 0;
  1964. bottom: 0;
  1965. right: 0; }
  1966. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1967. .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 {
  1968. width: 16px; }
  1969. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1970. .x-btn-default-toolbar-small-over {
  1971. border-color: #9d9d9d;
  1972. background-image: none;
  1973. background-color: #f3f3f3;
  1974. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1975. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1976. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1977. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1978. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1979. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1980. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1981. .x-btn-default-toolbar-small-focus {
  1982. border-color: #9d9d9d;
  1983. background-image: none;
  1984. background-color: #f3f3f3;
  1985. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1986. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1987. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1988. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1989. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1990. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1991. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1992. .x-btn-default-toolbar-small-menu-active,
  1993. .x-btn-default-toolbar-small-pressed {
  1994. border-color: #9d9d9d;
  1995. background-image: none;
  1996. background-color: #d6d6d6;
  1997. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1998. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1999. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2000. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2001. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2002. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2003. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2004. .x-btn-default-toolbar-small-disabled {
  2005. border-color: #d7d7d7;
  2006. background-image: none;
  2007. background-color: transparent; }
  2008. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2009. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2010. color: #333333 !important; }
  2011. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2012. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2013. color: #595959 !important; }
  2014. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2015. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2016. color: #8c8c8c !important; }
  2017. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2018. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
  2019. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
  2020. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
  2021. .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
  2022. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
  2023. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
  2024. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-corners.gif'); }
  2025. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2026. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
  2027. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
  2028. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-sides.gif'); }
  2029. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2030. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  2031. background-color: #f3f3f3;
  2032. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-bg.gif'); }
  2033. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2034. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
  2035. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
  2036. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
  2037. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
  2038. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
  2039. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
  2040. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-corners.gif'); }
  2041. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2042. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
  2043. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
  2044. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-sides.gif'); }
  2045. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2046. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  2047. background-color: #f3f3f3;
  2048. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2049. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2050. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
  2051. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
  2052. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
  2053. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
  2054. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
  2055. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
  2056. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
  2057. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
  2058. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
  2059. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
  2060. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
  2061. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
  2062. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-corners.gif'); }
  2063. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2064. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
  2065. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
  2066. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
  2067. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
  2068. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-sides.gif'); }
  2069. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2070. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
  2071. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
  2072. background-color: #d6d6d6;
  2073. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2074. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2075. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
  2076. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
  2077. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
  2078. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
  2079. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
  2080. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
  2081. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-disabled-corners.gif'); }
  2082. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2083. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
  2084. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
  2085. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-disabled-sides.gif'); }
  2086. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2087. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  2088. background-color: transparent; }
  2089. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2090. .x-nlg .x-btn-default-toolbar-small-over {
  2091. background-repeat: repeat-x;
  2092. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-bg.gif'); }
  2093. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2094. .x-nlg .x-btn-default-toolbar-small-focus {
  2095. background-repeat: repeat-x;
  2096. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2097. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2098. .x-nlg .x-btn-default-toolbar-small-menu-active,
  2099. .x-nlg .x-btn-default-toolbar-small-pressed {
  2100. background-repeat: repeat-x;
  2101. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2102. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2103. .x-btn-default-toolbar-medium {
  2104. border-color: transparent; }
  2105. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2106. .x-btn-default-toolbar-medium {
  2107. -webkit-border-radius: 3px;
  2108. -moz-border-radius: 3px;
  2109. -ms-border-radius: 3px;
  2110. -o-border-radius: 3px;
  2111. border-radius: 3px;
  2112. padding: 3px 3px 3px 3px;
  2113. border-width: 1px;
  2114. border-style: solid;
  2115. background-color: transparent; }
  2116. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2117. .x-nlg .x-btn-default-toolbar-medium-mc {
  2118. background-color: transparent; }
  2119. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2120. .x-nbr .x-btn-default-toolbar-medium {
  2121. padding: 0 !important;
  2122. border-width: 0 !important;
  2123. -webkit-border-radius: 0px;
  2124. -moz-border-radius: 0px;
  2125. -ms-border-radius: 0px;
  2126. -o-border-radius: 0px;
  2127. border-radius: 0px;
  2128. background-color: transparent;
  2129. background-position: 1100303px 1000303px; }
  2130. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2131. .x-nbr .x-btn-default-toolbar-medium-tl,
  2132. .x-nbr .x-btn-default-toolbar-medium-bl,
  2133. .x-nbr .x-btn-default-toolbar-medium-tr,
  2134. .x-nbr .x-btn-default-toolbar-medium-br,
  2135. .x-nbr .x-btn-default-toolbar-medium-tc,
  2136. .x-nbr .x-btn-default-toolbar-medium-bc,
  2137. .x-nbr .x-btn-default-toolbar-medium-ml,
  2138. .x-nbr .x-btn-default-toolbar-medium-mr {
  2139. zoom: 1; }
  2140. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2141. .x-nbr .x-btn-default-toolbar-medium-ml,
  2142. .x-nbr .x-btn-default-toolbar-medium-mr {
  2143. zoom: 1; }
  2144. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2145. .x-nbr .x-btn-default-toolbar-medium-mc {
  2146. padding: 1px 1px 1px 1px; }
  2147. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2148. .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
  2149. .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  2150. position: relative;
  2151. right: 0; }
  2152. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2153. .x-btn-default-toolbar-medium .x-btn-inner {
  2154. font-size: 11px;
  2155. font-weight: normal;
  2156. font-family: tahoma, arial, verdana, sans-serif;
  2157. color: #333333;
  2158. background-repeat: no-repeat;
  2159. padding: 0 3px; }
  2160. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2161. .x-btn-default-toolbar-medium-icon button,
  2162. .x-btn-default-toolbar-medium-icon a,
  2163. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  2164. .x-btn-default-toolbar-medium-noicon button,
  2165. .x-btn-default-toolbar-medium-noicon a,
  2166. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  2167. height: 24px;
  2168. line-height: 24px; }
  2169. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2170. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  2171. padding: 0; }
  2172. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2173. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  2174. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2175. width: 24px;
  2176. padding: 0; }
  2177. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2178. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  2179. width: 24px;
  2180. height: 24px;
  2181. top: 0;
  2182. left: 0;
  2183. bottom: 0;
  2184. right: 0; }
  2185. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2186. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  2187. height: 24px; }
  2188. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2189. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  2190. height: 24px;
  2191. line-height: 24px;
  2192. padding-left: 28px; }
  2193. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2194. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2195. width: 24px;
  2196. height: auto;
  2197. top: 0;
  2198. left: 0;
  2199. bottom: 0;
  2200. right: auto; }
  2201. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2202. .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 {
  2203. height: 24px; }
  2204. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2205. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  2206. height: 24px; }
  2207. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2208. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  2209. height: 24px;
  2210. line-height: 24px;
  2211. padding-right: 28px !important; }
  2212. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2213. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2214. width: 24px;
  2215. height: auto;
  2216. top: 0;
  2217. left: auto;
  2218. bottom: 0;
  2219. right: 0; }
  2220. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2221. .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 {
  2222. height: 24px; }
  2223. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2224. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  2225. padding-top: 28px; }
  2226. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2227. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2228. width: auto;
  2229. height: 24px;
  2230. top: 0;
  2231. left: 0;
  2232. bottom: auto;
  2233. right: 0; }
  2234. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2235. .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 {
  2236. width: 24px; }
  2237. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2238. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  2239. padding-bottom: 28px; }
  2240. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2241. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2242. width: auto;
  2243. height: 24px;
  2244. top: auto;
  2245. left: 0;
  2246. bottom: 0;
  2247. right: 0; }
  2248. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2249. .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 {
  2250. width: 24px; }
  2251. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2252. .x-btn-default-toolbar-medium-over {
  2253. border-color: #9d9d9d;
  2254. background-image: none;
  2255. background-color: #f3f3f3;
  2256. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2257. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2258. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2259. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2260. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2261. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2262. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2263. .x-btn-default-toolbar-medium-focus {
  2264. border-color: #9d9d9d;
  2265. background-image: none;
  2266. background-color: #f3f3f3;
  2267. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2268. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2269. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2270. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2271. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2272. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2273. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2274. .x-btn-default-toolbar-medium-menu-active,
  2275. .x-btn-default-toolbar-medium-pressed {
  2276. border-color: #9d9d9d;
  2277. background-image: none;
  2278. background-color: #d6d6d6;
  2279. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  2280. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  2281. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2282. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2283. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2284. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2285. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2286. .x-btn-default-toolbar-medium-disabled {
  2287. border-color: #d7d7d7;
  2288. background-image: none;
  2289. background-color: transparent; }
  2290. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2291. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2292. color: #333333 !important; }
  2293. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2294. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2295. color: #595959 !important; }
  2296. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2297. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2298. color: #8c8c8c !important; }
  2299. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2300. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
  2301. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
  2302. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
  2303. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
  2304. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
  2305. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
  2306. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-corners.gif'); }
  2307. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2308. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
  2309. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
  2310. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-sides.gif'); }
  2311. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2312. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  2313. background-color: #f3f3f3;
  2314. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2315. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2316. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
  2317. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
  2318. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
  2319. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
  2320. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
  2321. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
  2322. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-corners.gif'); }
  2323. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2324. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
  2325. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
  2326. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-sides.gif'); }
  2327. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2328. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  2329. background-color: #f3f3f3;
  2330. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2331. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2332. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
  2333. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
  2334. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
  2335. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
  2336. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
  2337. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
  2338. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
  2339. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
  2340. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
  2341. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
  2342. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
  2343. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  2344. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
  2345. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2346. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
  2347. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
  2348. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
  2349. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  2350. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
  2351. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2352. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
  2353. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  2354. background-color: #d6d6d6;
  2355. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2356. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2357. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
  2358. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
  2359. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
  2360. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
  2361. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
  2362. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  2363. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
  2364. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2365. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
  2366. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  2367. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
  2368. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2369. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  2370. background-color: transparent; }
  2371. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2372. .x-nlg .x-btn-default-toolbar-medium-over {
  2373. background-repeat: repeat-x;
  2374. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2375. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2376. .x-nlg .x-btn-default-toolbar-medium-focus {
  2377. background-repeat: repeat-x;
  2378. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2379. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2380. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  2381. .x-nlg .x-btn-default-toolbar-medium-pressed {
  2382. background-repeat: repeat-x;
  2383. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2384. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2385. .x-btn-default-toolbar-large {
  2386. border-color: transparent; }
  2387. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2388. .x-btn-default-toolbar-large {
  2389. -webkit-border-radius: 3px;
  2390. -moz-border-radius: 3px;
  2391. -ms-border-radius: 3px;
  2392. -o-border-radius: 3px;
  2393. border-radius: 3px;
  2394. padding: 3px 3px 3px 3px;
  2395. border-width: 1px;
  2396. border-style: solid;
  2397. background-color: transparent; }
  2398. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2399. .x-nlg .x-btn-default-toolbar-large-mc {
  2400. background-color: transparent; }
  2401. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2402. .x-nbr .x-btn-default-toolbar-large {
  2403. padding: 0 !important;
  2404. border-width: 0 !important;
  2405. -webkit-border-radius: 0px;
  2406. -moz-border-radius: 0px;
  2407. -ms-border-radius: 0px;
  2408. -o-border-radius: 0px;
  2409. border-radius: 0px;
  2410. background-color: transparent;
  2411. background-position: 1100303px 1000303px; }
  2412. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2413. .x-nbr .x-btn-default-toolbar-large-tl,
  2414. .x-nbr .x-btn-default-toolbar-large-bl,
  2415. .x-nbr .x-btn-default-toolbar-large-tr,
  2416. .x-nbr .x-btn-default-toolbar-large-br,
  2417. .x-nbr .x-btn-default-toolbar-large-tc,
  2418. .x-nbr .x-btn-default-toolbar-large-bc,
  2419. .x-nbr .x-btn-default-toolbar-large-ml,
  2420. .x-nbr .x-btn-default-toolbar-large-mr {
  2421. zoom: 1; }
  2422. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2423. .x-nbr .x-btn-default-toolbar-large-ml,
  2424. .x-nbr .x-btn-default-toolbar-large-mr {
  2425. zoom: 1; }
  2426. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2427. .x-nbr .x-btn-default-toolbar-large-mc {
  2428. padding: 1px 1px 1px 1px; }
  2429. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2430. .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
  2431. .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  2432. position: relative;
  2433. right: 0; }
  2434. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2435. .x-btn-default-toolbar-large .x-btn-inner {
  2436. font-size: 11px;
  2437. font-weight: normal;
  2438. font-family: tahoma, arial, verdana, sans-serif;
  2439. color: #333333;
  2440. background-repeat: no-repeat;
  2441. padding: 0 3px; }
  2442. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2443. .x-btn-default-toolbar-large-icon button,
  2444. .x-btn-default-toolbar-large-icon a,
  2445. .x-btn-default-toolbar-large-icon .x-btn-inner,
  2446. .x-btn-default-toolbar-large-noicon button,
  2447. .x-btn-default-toolbar-large-noicon a,
  2448. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  2449. height: 32px;
  2450. line-height: 32px; }
  2451. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2452. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  2453. padding: 0; }
  2454. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2455. .x-btn-default-toolbar-large-icon .x-btn-inner {
  2456. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2457. width: 32px;
  2458. padding: 0; }
  2459. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2460. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2461. width: 32px;
  2462. height: 32px;
  2463. top: 0;
  2464. left: 0;
  2465. bottom: 0;
  2466. right: 0; }
  2467. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2468. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  2469. height: 32px; }
  2470. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2471. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2472. height: 32px;
  2473. line-height: 32px;
  2474. padding-left: 36px; }
  2475. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2476. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2477. width: 32px;
  2478. height: auto;
  2479. top: 0;
  2480. left: 0;
  2481. bottom: 0;
  2482. right: auto; }
  2483. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2484. .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 {
  2485. height: 32px; }
  2486. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2487. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  2488. height: 32px; }
  2489. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2490. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2491. height: 32px;
  2492. line-height: 32px;
  2493. padding-right: 36px !important; }
  2494. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2495. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2496. width: 32px;
  2497. height: auto;
  2498. top: 0;
  2499. left: auto;
  2500. bottom: 0;
  2501. right: 0; }
  2502. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2503. .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 {
  2504. height: 32px; }
  2505. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2506. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2507. padding-top: 36px; }
  2508. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2509. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2510. width: auto;
  2511. height: 32px;
  2512. top: 0;
  2513. left: 0;
  2514. bottom: auto;
  2515. right: 0; }
  2516. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2517. .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 {
  2518. width: 32px; }
  2519. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2520. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2521. padding-bottom: 36px; }
  2522. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2523. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2524. width: auto;
  2525. height: 32px;
  2526. top: auto;
  2527. left: 0;
  2528. bottom: 0;
  2529. right: 0; }
  2530. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2531. .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 {
  2532. width: 32px; }
  2533. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2534. .x-btn-default-toolbar-large-over {
  2535. border-color: #9d9d9d;
  2536. background-image: none;
  2537. background-color: #f3f3f3;
  2538. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2539. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2540. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2541. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2542. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2543. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2544. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2545. .x-btn-default-toolbar-large-focus {
  2546. border-color: #9d9d9d;
  2547. background-image: none;
  2548. background-color: #f3f3f3;
  2549. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2550. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2551. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2552. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2553. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2554. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2555. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2556. .x-btn-default-toolbar-large-menu-active,
  2557. .x-btn-default-toolbar-large-pressed {
  2558. border-color: #9d9d9d;
  2559. background-image: none;
  2560. background-color: #d6d6d6;
  2561. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  2562. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  2563. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2564. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2565. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2566. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2567. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2568. .x-btn-default-toolbar-large-disabled {
  2569. border-color: #d7d7d7;
  2570. background-image: none;
  2571. background-color: transparent; }
  2572. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2573. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2574. color: #333333 !important; }
  2575. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2576. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2577. color: #595959 !important; }
  2578. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2579. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2580. color: #8c8c8c !important; }
  2581. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2582. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
  2583. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
  2584. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
  2585. .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
  2586. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
  2587. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
  2588. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-corners.gif'); }
  2589. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2590. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
  2591. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
  2592. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-sides.gif'); }
  2593. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2594. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2595. background-color: #f3f3f3;
  2596. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-bg.gif'); }
  2597. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2598. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
  2599. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
  2600. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
  2601. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
  2602. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
  2603. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
  2604. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-corners.gif'); }
  2605. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2606. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
  2607. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
  2608. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-sides.gif'); }
  2609. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2610. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2611. background-color: #f3f3f3;
  2612. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2613. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2614. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
  2615. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
  2616. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
  2617. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
  2618. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
  2619. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
  2620. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
  2621. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
  2622. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
  2623. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
  2624. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
  2625. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
  2626. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-corners.gif'); }
  2627. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2628. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
  2629. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
  2630. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
  2631. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
  2632. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-sides.gif'); }
  2633. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2634. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
  2635. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
  2636. background-color: #d6d6d6;
  2637. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2638. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2639. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
  2640. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
  2641. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
  2642. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
  2643. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
  2644. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
  2645. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-disabled-corners.gif'); }
  2646. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2647. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
  2648. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
  2649. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-disabled-sides.gif'); }
  2650. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2651. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2652. background-color: transparent; }
  2653. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2654. .x-nlg .x-btn-default-toolbar-large-over {
  2655. background-repeat: repeat-x;
  2656. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-bg.gif'); }
  2657. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2658. .x-nlg .x-btn-default-toolbar-large-focus {
  2659. background-repeat: repeat-x;
  2660. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2661. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2662. .x-nlg .x-btn-default-toolbar-large-menu-active,
  2663. .x-nlg .x-btn-default-toolbar-large-pressed {
  2664. background-repeat: repeat-x;
  2665. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2666. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2667. .x-btn-default-toolbar-small-disabled,
  2668. .x-btn-default-toolbar-medium-disabled,
  2669. .x-btn-default-toolbar-large-disabled {
  2670. border-color: transparent;
  2671. background-image: none;
  2672. background: transparent; }
  2673. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2674. .x-btn-group {
  2675. position: relative;
  2676. overflow: hidden; }
  2677. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2678. .x-btn-group-body {
  2679. position: relative;
  2680. zoom: 1;
  2681. padding: 0 1px; }
  2682. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2683. .x-btn-group-body .x-table-layout-cell {
  2684. vertical-align: top; }
  2685. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2686. .x-btn-group-header-text {
  2687. white-space: nowrap; }
  2688. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2689. .x-btn-group-default-framed {
  2690. -webkit-border-radius: 2px;
  2691. -moz-border-radius: 2px;
  2692. -ms-border-radius: 2px;
  2693. -o-border-radius: 2px;
  2694. border-radius: 2px;
  2695. padding: 1px 1px 1px 1px;
  2696. border-width: 1px;
  2697. border-style: solid;
  2698. background-color: #f0f0f0; }
  2699. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2700. .x-nlg .x-btn-group-default-framed-mc {
  2701. background-color: #f0f0f0; }
  2702. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2703. .x-nbr .x-btn-group-default-framed {
  2704. padding: 0 !important;
  2705. border-width: 0 !important;
  2706. -webkit-border-radius: 0px;
  2707. -moz-border-radius: 0px;
  2708. -ms-border-radius: 0px;
  2709. -o-border-radius: 0px;
  2710. border-radius: 0px;
  2711. background-color: transparent;
  2712. background-position: 1000202px 1000202px; }
  2713. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2714. .x-nbr .x-btn-group-default-framed-tl,
  2715. .x-nbr .x-btn-group-default-framed-bl,
  2716. .x-nbr .x-btn-group-default-framed-tr,
  2717. .x-nbr .x-btn-group-default-framed-br,
  2718. .x-nbr .x-btn-group-default-framed-tc,
  2719. .x-nbr .x-btn-group-default-framed-bc,
  2720. .x-nbr .x-btn-group-default-framed-ml,
  2721. .x-nbr .x-btn-group-default-framed-mr {
  2722. zoom: 1;
  2723. background-image: url('../../resources/themes/images/gray/btn-group/btn-group-default-framed-corners.gif'); }
  2724. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2725. .x-nbr .x-btn-group-default-framed-ml,
  2726. .x-nbr .x-btn-group-default-framed-mr {
  2727. zoom: 1;
  2728. background-image: url('../../resources/themes/images/gray/btn-group/btn-group-default-framed-sides.gif');
  2729. background-position: 0 0;
  2730. background-repeat: repeat-y; }
  2731. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2732. .x-nbr .x-btn-group-default-framed-mc {
  2733. padding: 0px 0px 0px 0px; }
  2734. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2735. .x-strict .x-ie7 .x-btn-group-default-framed-tl,
  2736. .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  2737. position: relative;
  2738. right: 0; }
  2739. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2740. .x-btn-group-default-framed {
  2741. border-color: #d0d0d0;
  2742. -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset;
  2743. -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset;
  2744. box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; }
  2745. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2746. .x-btn-group-header-default-framed {
  2747. margin: 2px 2px 0 2px; }
  2748. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2749. .x-btn-group-header-body-default-framed {
  2750. padding: 1px 0;
  2751. background: #dfdfdf;
  2752. -moz-border-radius-topleft: 2px;
  2753. -webkit-border-top-left-radius: 2px;
  2754. -ms-border-top-left-radius: 2px;
  2755. -o-border-top-left-radius: 2px;
  2756. border-top-left-radius: 2px;
  2757. -moz-border-radius-topright: 2px;
  2758. -webkit-border-top-right-radius: 2px;
  2759. -ms-border-top-right-radius: 2px;
  2760. -o-border-top-right-radius: 2px;
  2761. border-top-right-radius: 2px; }
  2762. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2763. .x-btn-group-header-text-default-framed {
  2764. font: normal 11px tahoma, arial, verdana, sans-serif;
  2765. color: #666666; }
  2766. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2767. .x-datepicker {
  2768. border: 1px solid #585858;
  2769. background-color: white;
  2770. position: relative; }
  2771. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2772. .x-datepicker a {
  2773. -moz-outline: 0 none;
  2774. outline: 0 none;
  2775. color: #523a39;
  2776. text-decoration: none;
  2777. border-width: 0; }
  2778. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2779. .x-datepicker-inner,
  2780. .x-datepicker-inner td,
  2781. .x-datepicker-inner th {
  2782. border-collapse: separate; }
  2783. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2784. .x-datepicker-header {
  2785. position: relative;
  2786. height: 26px;
  2787. background-image: none;
  2788. background-color: #6f6f6f;
  2789. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #777777), color-stop(100%, #656565));
  2790. background-image: -webkit-linear-gradient(top, #777777, #656565);
  2791. background-image: -moz-linear-gradient(top, #777777, #656565);
  2792. background-image: -o-linear-gradient(top, #777777, #656565);
  2793. background-image: -ms-linear-gradient(top, #777777, #656565);
  2794. background-image: linear-gradient(top, #777777, #656565); }
  2795. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2796. .x-datepicker-prev,
  2797. .x-datepicker-next {
  2798. position: absolute;
  2799. top: 5px;
  2800. width: 18px; }
  2801. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2802. .x-datepicker-prev a,
  2803. .x-datepicker-next a {
  2804. display: block;
  2805. width: 16px;
  2806. height: 16px;
  2807. background-position: top;
  2808. background-repeat: no-repeat;
  2809. cursor: pointer;
  2810. text-decoration: none !important;
  2811. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2812. opacity: 0.7; }
  2813. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2814. .x-datepicker-prev a:hover,
  2815. .x-datepicker-next a:hover {
  2816. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2817. opacity: 1; }
  2818. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2819. .x-datepicker-next {
  2820. right: 5px; }
  2821. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2822. .x-datepicker-next a {
  2823. background-image: url('../../resources/themes/images/gray/shared/right-btn.gif'); }
  2824. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2825. .x-datepicker-prev {
  2826. left: 5px; }
  2827. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2828. .x-datepicker-prev a {
  2829. background-image: url('../../resources/themes/images/gray/shared/left-btn.gif'); }
  2830. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2831. .x-item-disabled .x-datepicker-prev a:hover,
  2832. .x-item-disabled .x-datepicker-next a:hover {
  2833. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2834. opacity: 0.6; }
  2835. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2836. .x-datepicker-month {
  2837. padding-top: 3px; }
  2838. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2839. .x-datepicker-month .x-btn,
  2840. .x-datepicker-month button,
  2841. .x-datepicker-month .x-btn-tc,
  2842. .x-datepicker-month .x-btn-tl,
  2843. .x-datepicker-month .x-btn-tr,
  2844. .x-datepicker-month .x-btn-mc,
  2845. .x-datepicker-month .x-btn-ml,
  2846. .x-datepicker-month .x-btn-mr,
  2847. .x-datepicker-month .x-btn-bc,
  2848. .x-datepicker-month .x-btn-bl,
  2849. .x-datepicker-month .x-btn-br {
  2850. background: transparent !important;
  2851. border-width: 0 !important; }
  2852. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2853. .x-datepicker-month span {
  2854. color: #fff !important; }
  2855. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2856. .x-datepicker-month .x-btn-split-right {
  2857. background-image: url('../../resources/themes/images/gray/button/s-arrow-light.gif');
  2858. padding-right: 12px; }
  2859. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2860. .x-datepicker-next {
  2861. text-align: right; }
  2862. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2863. .x-datepicker-month {
  2864. text-align: center; }
  2865. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2866. .x-datepicker-month button {
  2867. color: white !important; }
  2868. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2869. table.x-datepicker-inner {
  2870. width: 100%;
  2871. table-layout: fixed; }
  2872. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2873. table.x-datepicker-inner th {
  2874. width: 25px;
  2875. height: 19px;
  2876. padding: 0;
  2877. color: #3e3e3e;
  2878. font: normal 10px tahoma, arial, verdana, sans-serif;
  2879. text-align: right;
  2880. border-bottom: 1px solid #d0d0d0;
  2881. border-collapse: separate;
  2882. background-image: none;
  2883. background-color: #e9e9e9;
  2884. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #dfdfdf));
  2885. background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdfdf);
  2886. background-image: -moz-linear-gradient(top, #f1f1f1, #dfdfdf);
  2887. background-image: -o-linear-gradient(top, #f1f1f1, #dfdfdf);
  2888. background-image: -ms-linear-gradient(top, #f1f1f1, #dfdfdf);
  2889. background-image: linear-gradient(top, #f1f1f1, #dfdfdf);
  2890. cursor: default; }
  2891. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2892. table.x-datepicker-inner th span {
  2893. display: block;
  2894. padding-right: 7px; }
  2895. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2896. table.x-datepicker-inner tr {
  2897. height: 20px; }
  2898. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2899. table.x-datepicker-inner td {
  2900. border: 1px solid;
  2901. height: 17px;
  2902. border-color: white;
  2903. text-align: right;
  2904. padding: 0; }
  2905. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2906. table.x-datepicker-inner a {
  2907. padding-right: 4px;
  2908. display: block;
  2909. zoom: 1;
  2910. font: normal 11px tahoma, arial, verdana, sans-serif;
  2911. color: black;
  2912. text-decoration: none;
  2913. text-align: right; }
  2914. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2915. table.x-datepicker-inner .x-datepicker-active {
  2916. cursor: pointer;
  2917. color: black; }
  2918. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2919. table.x-datepicker-inner .x-datepicker-selected a {
  2920. background: repeat-x left top;
  2921. background-color: #d8d8d8;
  2922. border: 1px solid #b2aaa9; }
  2923. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2924. table.x-datepicker-inner .x-datepicker-selected span {
  2925. font-weight: bold; }
  2926. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2927. table.x-datepicker-inner .x-datepicker-today a {
  2928. border: 1px solid;
  2929. border-color: darkred; }
  2930. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2931. table.x-datepicker-inner .x-datepicker-prevday a,
  2932. table.x-datepicker-inner .x-datepicker-nextday a {
  2933. text-decoration: none !important;
  2934. color: #aaa; }
  2935. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2936. table.x-datepicker-inner a:hover,
  2937. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2938. text-decoration: none !important;
  2939. color: #000;
  2940. background-color: transparent; }
  2941. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2942. table.x-datepicker-inner .x-datepicker-disabled a {
  2943. cursor: default;
  2944. background-color: #eee;
  2945. color: #bbb; }
  2946. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2947. .x-datepicker-footer,
  2948. .x-monthpicker-buttons {
  2949. position: relative;
  2950. border-top: 1px solid #d0d0d0;
  2951. background-image: none;
  2952. background-color: #e9e9e9;
  2953. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdfdf), color-stop(49%, #d6d6d6), color-stop(51%, #d0d0d0), color-stop(100%, #d2d2d2));
  2954. background-image: -webkit-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2955. background-image: -moz-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2956. background-image: -o-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2957. background-image: -ms-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2958. background-image: linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2959. text-align: center; }
  2960. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2961. .x-datepicker-footer .x-btn,
  2962. .x-monthpicker-buttons .x-btn {
  2963. position: relative;
  2964. margin: 4px; }
  2965. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2966. .x-item-disabled .x-datepicker-inner a:hover {
  2967. background: none; }
  2968. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2969. .x-datepicker .x-monthpicker {
  2970. position: absolute;
  2971. left: 0;
  2972. top: 0; }
  2973. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2974. .x-monthpicker {
  2975. border: 1px solid #585858;
  2976. background-color: white; }
  2977. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2978. .x-monthpicker-months,
  2979. .x-monthpicker-years {
  2980. float: left;
  2981. height: 167px;
  2982. width: 88px; }
  2983. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2984. .x-monthpicker-item {
  2985. float: left;
  2986. margin: 4px 0 5px 0;
  2987. font: normal 11px tahoma, arial, verdana, sans-serif;
  2988. text-align: center;
  2989. vertical-align: middle;
  2990. height: 18px;
  2991. width: 43px;
  2992. border: 0 none; }
  2993. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2994. .x-monthpicker-item a {
  2995. display: block;
  2996. margin: 0 5px;
  2997. text-decoration: none;
  2998. color: #523a39;
  2999. border: 1px solid white;
  3000. line-height: 17px; }
  3001. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3002. .x-monthpicker-item a:hover {
  3003. background-color: transparent; }
  3004. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3005. .x-monthpicker-item a.x-monthpicker-selected {
  3006. background-color: #e9e9e9;
  3007. border: 1px solid #b2aaa9; }
  3008. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3009. .x-monthpicker-months {
  3010. border-right: 1px solid #585858;
  3011. width: 87px; }
  3012. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3013. .x-monthpicker-years .x-monthpicker-item {
  3014. width: 44px; }
  3015. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3016. .x-monthpicker-yearnav {
  3017. height: 28px; }
  3018. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3019. .x-monthpicker-yearnav button {
  3020. background-image: url('../../resources/themes/images/gray/tools/tool-sprites.gif');
  3021. height: 15px;
  3022. width: 15px;
  3023. padding: 0;
  3024. margin: 6px 12px 5px 15px;
  3025. border: 0;
  3026. outline: 0 none; }
  3027. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3028. .x-monthpicker-yearnav button::-moz-focus-inner {
  3029. border: 0;
  3030. padding: 0; }
  3031. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3032. .x-monthpicker-yearnav-next {
  3033. background-position: 0 -120px; }
  3034. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3035. .x-monthpicker-yearnav-next-over {
  3036. cursor: pointer;
  3037. cursor: hand;
  3038. background-position: -15px -120px; }
  3039. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3040. .x-monthpicker-yearnav-prev {
  3041. background-position: 0 -105px; }
  3042. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3043. .x-monthpicker-yearnav-prev-over {
  3044. cursor: pointer;
  3045. cursor: hand;
  3046. background-position: -15px -105px; }
  3047. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3048. .x-monthpicker-small .x-monthpicker-item {
  3049. margin: 2px 0 2px 0; }
  3050. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3051. .x-monthpicker-small .x-monthpicker-yearnav {
  3052. height: 23px; }
  3053. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3054. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  3055. height: 136px; }
  3056. /* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3057. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
  3058. .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
  3059. margin-top: 2px; }
  3060. /* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3061. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  3062. margin-top: 3px;
  3063. margin-bottom: 3px; }
  3064. /* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3065. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  3066. margin-top: 3px;
  3067. margin-bottom: 3px; }
  3068. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3069. .x-nlg .x-datepicker-header {
  3070. background-image: url('../../resources/themes/images/gray/datepicker/datepicker-header-bg.gif');
  3071. background-repeat: repeat-x;
  3072. background-position: top left; }
  3073. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3074. .x-nlg .x-datepicker-footer,
  3075. .x-nlg .x-monthpicker-buttons {
  3076. background-image: url('../../resources/themes/images/gray/datepicker/datepicker-footer-bg.gif');
  3077. background-repeat: repeat-x;
  3078. background-position: top left; }
  3079. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3080. .x-color-picker {
  3081. width: 144px;
  3082. height: 90px;
  3083. cursor: pointer; }
  3084. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3085. .x-color-picker a {
  3086. border: 1px solid #fff;
  3087. float: left;
  3088. padding: 2px;
  3089. text-decoration: none;
  3090. -moz-outline: 0 none;
  3091. outline: 0 none;
  3092. cursor: pointer; }
  3093. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3094. .x-color-picker a:hover,
  3095. .x-color-picker a.x-color-picker-selected {
  3096. border-color: #8bb8f3;
  3097. background-color: #deecfd; }
  3098. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3099. .x-color-picker em {
  3100. display: block;
  3101. border: 1px solid #aca899; }
  3102. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3103. .x-color-picker em span {
  3104. cursor: pointer;
  3105. display: block;
  3106. height: 10px;
  3107. width: 10px;
  3108. line-height: 10px; }
  3109. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3110. .x-menu-body {
  3111. user-select: none;
  3112. -o-user-select: none;
  3113. -ms-user-select: none;
  3114. -moz-user-select: -moz-none;
  3115. -webkit-user-select: none;
  3116. cursor: default;
  3117. background: #f0f0f0 !important;
  3118. padding: 2px; }
  3119. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3120. .x-menu-item .x-form-text {
  3121. user-select: text;
  3122. -webkit-user-select: text;
  3123. -o-user-select: text;
  3124. -ie-user-select: text;
  3125. -moz-user-select: text;
  3126. -ie-user-select: text; }
  3127. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3128. .x-menu-icon-separator {
  3129. position: absolute;
  3130. top: 0px;
  3131. left: 27px;
  3132. z-index: 0;
  3133. border-left: solid 1px #e0e0e0;
  3134. background-color: white;
  3135. width: 2px;
  3136. overflow: hidden; }
  3137. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3138. .x-menu-plain .x-menu-icon-separator {
  3139. display: none; }
  3140. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3141. .x-menu-focus {
  3142. display: block;
  3143. position: absolute;
  3144. top: -10px;
  3145. left: -10px;
  3146. width: 0px;
  3147. height: 0px; }
  3148. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3149. .x-menu-item {
  3150. white-space: nowrap;
  3151. overflow: hidden;
  3152. z-index: 1; }
  3153. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3154. .x-menu-item-cmp {
  3155. margin-bottom: 1px; }
  3156. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3157. .x-menu-item-link {
  3158. display: block;
  3159. margin: 1px;
  3160. padding: 6px 2px 3px 32px;
  3161. text-decoration: none !important;
  3162. line-height: 16px;
  3163. cursor: default; }
  3164. /* line 70, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3165. .x-opera .x-menu-item-link {
  3166. position: relative; }
  3167. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3168. .x-menu-item-icon {
  3169. width: 16px;
  3170. height: 16px;
  3171. position: absolute;
  3172. top: 5px;
  3173. left: 4px;
  3174. background: no-repeat center center; }
  3175. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3176. .x-menu-item-icon-right {
  3177. width: 16px;
  3178. height: 16px;
  3179. position: absolute;
  3180. top: 6px;
  3181. right: 4px;
  3182. background: no-repeat center center; }
  3183. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3184. .x-menu-item-text {
  3185. font-size: 11px;
  3186. color: #222222; }
  3187. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3188. .x-menu-item-checked .x-menu-item-icon {
  3189. background-image: url('../../resources/themes/images/gray/menu/checked.gif'); }
  3190. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3191. .x-menu-item-checked .x-menu-group-icon {
  3192. background-image: url('../../resources/themes/images/gray/menu/group-checked.gif'); }
  3193. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3194. .x-menu-item-unchecked .x-menu-item-icon {
  3195. background-image: url('../../resources/themes/images/gray/menu/unchecked.gif'); }
  3196. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3197. .x-menu-item-unchecked .x-menu-group-icon {
  3198. background-image: none; }
  3199. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3200. .x-menu-item-separator {
  3201. height: 2px;
  3202. border-top: solid 1px #e0e0e0;
  3203. background-color: white;
  3204. margin: 2px 0px;
  3205. overflow: hidden; }
  3206. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3207. .x-menu-item-arrow {
  3208. position: absolute;
  3209. width: 12px;
  3210. height: 9px;
  3211. top: 9px;
  3212. right: 0px;
  3213. background: no-repeat center center;
  3214. background-image: url('../../resources/themes/images/gray/menu/menu-parent.gif'); }
  3215. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3216. .x-menu-item-indent {
  3217. margin-left: 31px;
  3218. /* The 2px is the width of the seperator */ }
  3219. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3220. .x-menu-item-active {
  3221. cursor: pointer; }
  3222. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3223. .x-menu-item-active .x-menu-item-link {
  3224. background-image: none;
  3225. background-color: #e6e6e6;
  3226. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #dcdcdc));
  3227. background-image: -webkit-linear-gradient(top, #eeeeee, #dcdcdc);
  3228. background-image: -moz-linear-gradient(top, #eeeeee, #dcdcdc);
  3229. background-image: -o-linear-gradient(top, #eeeeee, #dcdcdc);
  3230. background-image: -ms-linear-gradient(top, #eeeeee, #dcdcdc);
  3231. background-image: linear-gradient(top, #eeeeee, #dcdcdc);
  3232. margin: 0px;
  3233. border: 1px solid #9d9d9d;
  3234. cursor: pointer;
  3235. -webkit-border-radius: 3px;
  3236. -moz-border-radius: 3px;
  3237. -ms-border-radius: 3px;
  3238. -o-border-radius: 3px;
  3239. border-radius: 3px; }
  3240. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3241. .x-menu-item-disabled {
  3242. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3243. opacity: 0.5; }
  3244. /* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3245. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  3246. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3247. opacity: 0.5; }
  3248. /* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3249. .x-ie .x-menu-item-disabled .x-menu-item-text {
  3250. background-color: transparent; }
  3251. /* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3252. .x-strict .x-ie7m .x-ie .x-menu-icon-separator {
  3253. width: 1px; }
  3254. /* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3255. .x-strict .x-ie7m .x-ie .x-menu-item-separator {
  3256. height: 1px; }
  3257. /* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3258. .x-ie6 .x-menu-item-link,
  3259. .x-ie7 .x-menu-item-link,
  3260. .x-quirks .x-ie8 .x-menu-item-link {
  3261. padding-bottom: 2px; }
  3262. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3263. .x-nlg .x-menu-item-active .x-menu-item-link {
  3264. background: #e6e6e6 repeat-x left top;
  3265. background-image: url('../../resources/themes/images/gray/menu/menu-item-active-bg.gif'); }
  3266. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3267. .x-menu-date-item {
  3268. border-color: #99BBE8; }
  3269. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3270. .x-panel .x-grid-body {
  3271. background: white;
  3272. border-color: #d0d0d0;
  3273. border-style: solid;
  3274. border-width: 1px;
  3275. border-top-color: #c5c5c5; }
  3276. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3277. .x-panel .x-grid-header-ct-hidden {
  3278. visibility: hidden; }
  3279. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3280. .x-grid-empty {
  3281. padding: 10px;
  3282. color: gray;
  3283. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  3284. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3285. .x-grid-header-hidden .x-grid-body {
  3286. border-top-color: #d0d0d0 !important; }
  3287. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3288. .x-grid-view {
  3289. overflow: hidden;
  3290. position: relative; }
  3291. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3292. .x-grid-table {
  3293. table-layout: fixed;
  3294. border-collapse: separate; }
  3295. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3296. .x-autowidth-table table.x-grid-table {
  3297. table-layout: auto;
  3298. width: auto!important; }
  3299. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3300. .x-grid-row .x-grid-table {
  3301. border-collapse: collapse; }
  3302. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3303. .x-grid-locked .x-grid-inner-locked {
  3304. border-width: 0 1px 0 0 !important;
  3305. border-style: solid; }
  3306. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3307. .x-grid-header-ct {
  3308. cursor: default;
  3309. zoom: 1;
  3310. padding: 0;
  3311. border: 1px solid #d0d0d0;
  3312. border-bottom-color: #c5c5c5;
  3313. background-image: none;
  3314. background-color: #c5c5c5;
  3315. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
  3316. background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
  3317. background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
  3318. background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
  3319. background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
  3320. background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
  3321. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3322. .x-accordion-item .x-grid-header-ct {
  3323. border-width: 0 0 1px 0!important; }
  3324. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3325. .x-column-header {
  3326. padding: 0;
  3327. position: absolute;
  3328. overflow: hidden;
  3329. border-right: 1px solid #c5c5c5;
  3330. border-left: 0 none;
  3331. border-top: 0 none;
  3332. border-bottom: 0 none;
  3333. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  3334. color: null;
  3335. font: normal 11px tahoma, arial, verdana, sans-serif;
  3336. background-image: none;
  3337. background-color: #c5c5c5;
  3338. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
  3339. background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
  3340. background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
  3341. background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
  3342. background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
  3343. background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
  3344. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3345. .x-group-header {
  3346. padding: 0;
  3347. border-left-width: 0; }
  3348. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3349. .x-group-sub-header {
  3350. background: transparent;
  3351. border-top: 1px solid #c5c5c5;
  3352. border-left-width: 0; }
  3353. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3354. .x-column-header-inner {
  3355. zoom: 1;
  3356. position: relative;
  3357. white-space: nowrap;
  3358. line-height: 15px;
  3359. padding: 3px 6px 4px; }
  3360. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3361. .x-column-header-inner .x-column-header-text {
  3362. white-space: nowrap; }
  3363. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3364. .x-column-header-over,
  3365. .x-column-header-sort-ASC,
  3366. .x-column-header-sort-DESC {
  3367. border-left-color: #c4c4c4;
  3368. border-right-color: #c4c4c4;
  3369. background-image: none;
  3370. background-color: #c4c4c4;
  3371. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e8e8), color-stop(39%, #e9e8e8), color-stop(40%, #dedede), color-stop(100%, #dedede));
  3372. background-image: -webkit-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3373. background-image: -moz-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3374. background-image: -o-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3375. background-image: -ms-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3376. background-image: linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede); }
  3377. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3378. .x-nlg .x-grid-header-ct,
  3379. .x-nlg .x-column-header {
  3380. background: repeat-x 0 top;
  3381. background-image: url('../../resources/themes/images/gray/grid/column-header-bg.gif'); }
  3382. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3383. .x-nlg .x-column-header-over,
  3384. .x-nlg .x-column-header-sort-ASC,
  3385. .x-nlg .x-column-header-sort-DESC {
  3386. background: #ebf3fd repeat-x 0 top;
  3387. background-image: url('../../resources/themes/images/gray/grid/column-header-over-bg.gif'); }
  3388. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3389. .x-column-header-trigger {
  3390. display: none;
  3391. height: 100%;
  3392. width: 14px;
  3393. background: no-repeat left center;
  3394. background-color: #c3daf9;
  3395. background-image: url('../../resources/themes/images/gray/grid/grid3-hd-btn.gif');
  3396. position: absolute;
  3397. right: 0;
  3398. top: 0;
  3399. z-index: 2;
  3400. cursor: pointer; }
  3401. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3402. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  3403. display: block; }
  3404. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3405. .x-column-header-align-right {
  3406. text-align: right; }
  3407. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3408. .x-column-header-align-right .x-column-header-text {
  3409. padding-right: 0.5ex;
  3410. margin-right: 6px; }
  3411. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3412. .x-column-header-align-center {
  3413. text-align: center; }
  3414. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3415. .x-column-header-align-left {
  3416. text-align: left; }
  3417. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3418. .x-column-header-sort-ASC .x-column-header-text {
  3419. padding-right: 16px;
  3420. background: no-repeat right 6px;
  3421. background-image: url('../../resources/themes/images/gray/grid/sort_asc.gif'); }
  3422. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3423. .x-column-header-sort-DESC .x-column-header-text {
  3424. padding-right: 16px;
  3425. background: no-repeat right 6px;
  3426. background-image: url('../../resources/themes/images/gray/grid/sort_desc.gif'); }
  3427. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3428. .x-grid-row {
  3429. vertical-align: top; }
  3430. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3431. .x-grid-row .x-grid-cell {
  3432. color: null;
  3433. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3434. background-color: white;
  3435. border-color: #ededed;
  3436. border-style: solid;
  3437. border-top-color: #fafafa;
  3438. border-width: 0; }
  3439. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3440. .x-grid-with-row-lines .x-grid-cell {
  3441. border-width: 1px 0; }
  3442. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3443. .x-grid-rowwrap-div {
  3444. border-width: 1px 0;
  3445. border-color: #ededed;
  3446. border-style: solid;
  3447. border-top-color: #fafafa;
  3448. overflow: hidden; }
  3449. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3450. .x-grid-row-alt .x-grid-cell,
  3451. .x-grid-row-alt .x-grid-rowwrap-div {
  3452. background-color: #fafafa; }
  3453. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3454. .x-grid-row-over .x-grid-cell,
  3455. .x-grid-row-over .x-grid-rowwrap-div {
  3456. border-color: #dddddd;
  3457. background-color: #efefef; }
  3458. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3459. .x-grid-row-focused .x-grid-cell,
  3460. .x-grid-row-focused .x-grid-rowwrap-div {
  3461. border-color: #dddddd;
  3462. background-color: #efefef; }
  3463. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3464. .x-grid-row-selected .x-grid-cell,
  3465. .x-grid-row-selected .x-grid-rowwrap-div {
  3466. border-style: dotted;
  3467. border-color: #bfb8b8;
  3468. background-color: #e0e0e0 !important; }
  3469. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3470. .x-grid-rowwrap-div .x-grid-cell,
  3471. .x-grid-rowwrap-div .x-grid-cell-inner {
  3472. border-width: 0;
  3473. background: transparent; }
  3474. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3475. .x-grid-row-body-hidden {
  3476. display: none; }
  3477. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3478. .x-grid-rowbody {
  3479. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  3480. padding: 4px; }
  3481. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3482. .x-grid-rowbody p {
  3483. margin: 5px 5px 10px 5px; }
  3484. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3485. .x-grid-cell {
  3486. overflow: hidden; }
  3487. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3488. .x-grid-cell-inner {
  3489. overflow: hidden;
  3490. -o-text-overflow: ellipsis;
  3491. text-overflow: ellipsis;
  3492. padding: 2px 6px 3px;
  3493. white-space: nowrap; }
  3494. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3495. .x-grid-with-row-lines .x-grid-cell-inner {
  3496. line-height: 13px;
  3497. padding-bottom: 4px; }
  3498. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3499. .x-action-col-cell .x-grid-cell-inner {
  3500. line-height: 0;
  3501. padding: 2px; }
  3502. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3503. .x-action-col-cell .x-item-disabled {
  3504. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  3505. opacity: 0.3; }
  3506. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3507. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  3508. padding-top: 1px; }
  3509. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3510. .x-grid-row .x-grid-cell-special {
  3511. padding: 0;
  3512. border-right: 1px solid #c6c6c6;
  3513. background-image: none;
  3514. background-color: #f6f6f6;
  3515. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  3516. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3517. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3518. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3519. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3520. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  3521. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3522. .x-grid-row .x-grid-cell-row-checker {
  3523. vertical-align: middle; }
  3524. /*
  3525. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  3526. use an IE-specific trick to make the row disappear. We cannot do this on any
  3527. other browser, because it is not a non-standard thing to do and those other
  3528. browsers will do whacky things with it.
  3529. */
  3530. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3531. .x-ie6 .x-grid-header-row,
  3532. .x-ie7 .x-grid-header-row,
  3533. .x-quirks .x-ie8 .x-grid-header-row {
  3534. position: absolute; }
  3535. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3536. .x-grid-row-selected .x-grid-cell-special {
  3537. border-right: 1px solid #d4b7b7;
  3538. background-image: none;
  3539. background-color: #e0e0e0;
  3540. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e0e0e0), color-stop(100%, #d3d3d3));
  3541. background-image: -webkit-linear-gradient(left, #e0e0e0, #d3d3d3);
  3542. background-image: -moz-linear-gradient(left, #e0e0e0, #d3d3d3);
  3543. background-image: -o-linear-gradient(left, #e0e0e0, #d3d3d3);
  3544. background-image: -ms-linear-gradient(left, #e0e0e0, #d3d3d3);
  3545. background-image: linear-gradient(left, #e0e0e0, #d3d3d3); }
  3546. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3547. .x-grid-dirty-cell {
  3548. background-image: url('../../resources/themes/images/gray/grid/dirty.gif');
  3549. background-position: 0 0;
  3550. background-repeat: no-repeat; }
  3551. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3552. .x-grid-cell-selected {
  3553. background-color: #B8CFEE !important; }
  3554. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3555. .x-nlg .x-grid-cell-special {
  3556. background-repeat: repeat-y;
  3557. background-position: top right; }
  3558. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3559. .x-nlg .x-grid-row .x-grid-cell-special,
  3560. .x-nlg .x-grid-row-over .x-grid-cell-special {
  3561. background-image: url('../../resources/themes/images/gray/grid/cell-special-bg.gif'); }
  3562. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3563. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  3564. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  3565. background-image: url('../../resources/themes/images/gray/grid/cell-special-selected-bg.gif'); }
  3566. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3567. .x-grid-with-col-lines .x-grid-cell {
  3568. padding-right: 0;
  3569. border-right: 1px solid #c6c6c6; }
  3570. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3571. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3572. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3573. padding-left: 12px;
  3574. background-image: url('../../resources/themes/images/gray/grid/property-cell-bg.gif');
  3575. background-repeat: no-repeat;
  3576. background-position: -16px 2px; }
  3577. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3578. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3579. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3580. background-position: -16px 1px; }
  3581. /* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3582. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3583. background-position: -16px 2px; }
  3584. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3585. .x-unselectable {
  3586. user-select: none;
  3587. -o-user-select: none;
  3588. -ms-user-select: none;
  3589. -moz-user-select: -moz-none;
  3590. -webkit-user-select: none;
  3591. cursor: default; }
  3592. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3593. .x-grid-row-body-hidden {
  3594. display: none; }
  3595. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3596. .x-grid-group-collapsed {
  3597. display: none; }
  3598. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3599. .x-grid-view .x-grid-td-expander {
  3600. vertical-align: top; }
  3601. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3602. .x-grid-td-expander {
  3603. background: repeat-y right transparent; }
  3604. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3605. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3606. padding: 0 !important; }
  3607. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3608. .x-grid-row-expander {
  3609. background-image: url('../../resources/themes/images/gray/grid/group-collapse.gif');
  3610. background-color: transparent;
  3611. width: 9px;
  3612. height: 13px;
  3613. margin-left: 3px;
  3614. background-repeat: no-repeat;
  3615. background-position: 0 -2px; }
  3616. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3617. .x-grid-row-collapsed .x-grid-row-expander {
  3618. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3619. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3620. .x-grid-resize-marker {
  3621. position: absolute;
  3622. z-index: 5;
  3623. top: 0;
  3624. width: 1px;
  3625. background-color: #0f0f0f; }
  3626. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3627. .col-move-top,
  3628. .col-move-bottom {
  3629. width: 9px;
  3630. height: 9px;
  3631. position: absolute;
  3632. top: 0;
  3633. line-height: 0;
  3634. font-size: 0;
  3635. overflow: hidden;
  3636. z-index: 20000;
  3637. background: no-repeat left top transparent; }
  3638. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3639. .col-move-top {
  3640. background-image: url('../../resources/themes/images/gray/grid/col-move-top.gif'); }
  3641. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3642. .col-move-bottom {
  3643. background-image: url('../../resources/themes/images/gray/grid/col-move-bottom.gif'); }
  3644. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3645. .x-tbar-page-number {
  3646. width: 30px; }
  3647. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3648. .x-grid-group,
  3649. .x-grid-group-body,
  3650. .x-grid-group-hd {
  3651. zoom: 1; }
  3652. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3653. .x-grid-group-hd {
  3654. padding-top: 6px; }
  3655. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3656. .x-grid-group-hd .x-grid-cell-inner {
  3657. padding: 10px 4px 4px 4px;
  3658. background: white;
  3659. border-width: 0 0 2px 0;
  3660. border-style: solid;
  3661. border-color: #bcb1b0;
  3662. cursor: pointer; }
  3663. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3664. .x-grid-group-hd-collapsible .x-grid-group-title {
  3665. background: transparent no-repeat 0 -1px;
  3666. background-image: url('../../resources/themes/images/gray/grid/group-collapse.gif');
  3667. padding: 0 0 0 14px; }
  3668. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3669. .x-grid-group-title {
  3670. color: #616161;
  3671. font: bold 11px tahoma, arial, verdana, sans-serif; }
  3672. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3673. .x-grid-group-hd-collapsed .x-grid-group-title {
  3674. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3675. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3676. .x-grid-group-collapsed .x-grid-group-body {
  3677. display: none; }
  3678. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3679. .x-grid-group-collapsed .x-grid-group-title {
  3680. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3681. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3682. .x-group-by-icon {
  3683. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3684. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3685. .x-show-groups-icon {
  3686. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3687. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3688. .x-column-header-checkbox .x-column-header-inner {
  3689. padding: 0; }
  3690. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3691. .x-grid-cell-special .x-grid-cell-inner {
  3692. padding-left: 4px;
  3693. padding-right: 4px; }
  3694. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3695. .x-grid-row-checker,
  3696. .x-column-header-checkbox .x-column-header-text {
  3697. height: 14px;
  3698. width: 14px;
  3699. line-height: 0;
  3700. background-image: url('../../resources/themes/images/gray/grid/unchecked.gif');
  3701. background-position: -1px -1px;
  3702. background-repeat: no-repeat;
  3703. background-color: transparent; }
  3704. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3705. .x-column-header-checkbox .x-column-header-text {
  3706. display: block;
  3707. margin: 0 5px; }
  3708. /* 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 */
  3709. /* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3710. .x-quirks .x-ie .x-grid-row-checker,
  3711. .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 {
  3712. line-height: 14px; }
  3713. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3714. .x-grid-hd-checker-on .x-column-header-text {
  3715. background-image: url('../../resources/themes/images/gray/grid/checked.gif'); }
  3716. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3717. .x-grid-cell-row-checker .x-grid-cell-inner {
  3718. padding-top: 4px;
  3719. padding-bottom: 2px;
  3720. line-height: 14px; }
  3721. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3722. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  3723. padding-top: 3px; }
  3724. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3725. .x-grid-row-checker {
  3726. margin-left: 1px;
  3727. background-position: 50% -2px; }
  3728. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3729. .x-grid-row-selected .x-grid-row-checker,
  3730. .x-grid-row-checked .x-grid-row-checker {
  3731. background-image: url('../../resources/themes/images/gray/grid/checked.gif'); }
  3732. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3733. .x-tbar-page-first {
  3734. background-image: url('../../resources/themes/images/gray/grid/page-first.gif') !important; }
  3735. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3736. .x-tbar-loading {
  3737. background-image: url('../../resources/themes/images/gray/grid/refresh.gif') !important; }
  3738. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3739. .x-tbar-page-last {
  3740. background-image: url('../../resources/themes/images/gray/grid/page-last.gif') !important; }
  3741. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3742. .x-tbar-page-next {
  3743. background-image: url('../../resources/themes/images/gray/grid/page-next.gif') !important; }
  3744. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3745. .x-tbar-page-prev {
  3746. background-image: url('../../resources/themes/images/gray/grid/page-prev.gif') !important; }
  3747. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3748. .x-item-disabled .x-tbar-loading {
  3749. background-image: url('../../resources/themes/images/gray/grid/refresh-disabled.gif') !important; }
  3750. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3751. .x-item-disabled .x-tbar-page-first {
  3752. background-image: url('../../resources/themes/images/gray/grid/page-first-disabled.gif') !important; }
  3753. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3754. .x-item-disabled .x-tbar-page-last {
  3755. background-image: url('../../resources/themes/images/gray/grid/page-last-disabled.gif') !important; }
  3756. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3757. .x-item-disabled .x-tbar-page-next {
  3758. background-image: url('../../resources/themes/images/gray/grid/page-next-disabled.gif') !important; }
  3759. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3760. .x-item-disabled .x-tbar-page-prev {
  3761. background-image: url('../../resources/themes/images/gray/grid/page-prev-disabled.gif') !important; }
  3762. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3763. .x-hmenu-sort-asc .x-menu-item-icon {
  3764. background-image: url('../../resources/themes/images/gray/grid/hmenu-asc.gif'); }
  3765. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3766. .x-hmenu-sort-desc .x-menu-item-icon {
  3767. background-image: url('../../resources/themes/images/gray/grid/hmenu-desc.gif'); }
  3768. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3769. .x-hmenu-lock .x-menu-item-icon {
  3770. background-image: url('../../resources/themes/images/gray/grid/hmenu-lock.gif'); }
  3771. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3772. .x-hmenu-unlock .x-menu-item-icon {
  3773. background-image: url('../../resources/themes/images/gray/grid/hmenu-unlock.gif'); }
  3774. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3775. .x-group-by-icon {
  3776. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3777. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3778. .x-cols-icon .x-menu-item-icon {
  3779. background-image: url('../../resources/themes/images/gray/grid/columns.gif'); }
  3780. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3781. .x-show-groups-icon {
  3782. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3783. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3784. .x-grid-drop-indicator {
  3785. position: absolute;
  3786. height: 1px;
  3787. line-height: 0px;
  3788. background-color: #77BC71;
  3789. overflow: visible; }
  3790. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3791. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3792. position: absolute;
  3793. top: -8px;
  3794. left: -12px;
  3795. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-right.png');
  3796. height: 16px;
  3797. width: 16px; }
  3798. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3799. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3800. position: absolute;
  3801. top: -8px;
  3802. right: -11px;
  3803. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-left.png');
  3804. height: 16px;
  3805. width: 16px; }
  3806. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3807. .x-ie6 .x-grid-drop-indicator-left {
  3808. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-right.gif'); }
  3809. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3810. .x-ie6 .x-grid-drop-indicator-right {
  3811. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-left.gif'); }
  3812. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3813. .x-grid-editor .x-form-text {
  3814. padding: 0 4px; }
  3815. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3816. .x-grid-editor .x-form-cb-wrap {
  3817. padding-top: 3px; }
  3818. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3819. .x-grid-row-editor {
  3820. position: absolute !important;
  3821. z-index: 1;
  3822. zoom: 1;
  3823. overflow: visible !important; }
  3824. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3825. .x-grid-row-editor .x-form-text {
  3826. padding: 0 2px; }
  3827. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3828. .x-grid-row-editor .x-form-cb-wrap {
  3829. padding-top: 0; }
  3830. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3831. .x-grid-row-editor .x-form-checkbox {
  3832. margin-left: -4px; }
  3833. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3834. .x-grid-row-editor .x-form-display-field {
  3835. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3836. padding-top: 0;
  3837. padding-left: 2px; }
  3838. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3839. .x-grid-row-editor .x-panel-body {
  3840. background-color: #ebe6e6;
  3841. border-top: 1px solid #d0d0d0 !important;
  3842. border-bottom: 1px solid #d0d0d0 !important; }
  3843. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3844. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3845. text-align: center; }
  3846. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3847. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3848. height: 19px; }
  3849. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3850. .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 {
  3851. background-image: url('../../resources/themes/images/gray/form/spinner-small.gif');
  3852. height: 10px !important; }
  3853. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3854. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3855. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3856. height: 18px; }
  3857. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3858. .x-border-box .x-grid-editor .x-form-trigger,
  3859. .x-border-box .x-grid-row-editor .x-form-trigger {
  3860. height: 20px; }
  3861. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3862. .x-border-box .x-grid-editor .x-form-text,
  3863. .x-border-box .x-grid-row-editor .x-form-text {
  3864. height: 20px;
  3865. padding-bottom: 1px; }
  3866. /* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3867. .x-ie .x-grid-editor .x-form-text {
  3868. padding-left: 5px; }
  3869. /* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3870. .x-ie .x-grid-row-editor .x-form-text {
  3871. padding-left: 3px; }
  3872. /* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3873. .x-ie8m .x-grid-editor .x-form-text,
  3874. .x-ie8m .x-grid-row-editor .x-form-text {
  3875. padding-top: 1px; }
  3876. /* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3877. .x-strict .x-ie6 .x-grid-editor .x-form-text,
  3878. .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
  3879. .x-strict .x-ie7 .x-grid-editor .x-form-text,
  3880. .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
  3881. height: 17px; }
  3882. /* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3883. .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
  3884. line-height: 17px; }
  3885. /* line 818, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3886. .x-opera .x-grid-editor .x-form-text {
  3887. padding-left: 5px; }
  3888. /* line 821, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3889. .x-opera .x-grid-row-editor .x-form-text {
  3890. padding-left: 3px; }
  3891. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3892. .x-grid-row-editor-buttons {
  3893. background-color: #ebe6e6;
  3894. position: absolute;
  3895. bottom: -31px;
  3896. padding: 4px;
  3897. height: 32px; }
  3898. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3899. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3900. width: 192px;
  3901. height: 24px; }
  3902. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3903. .x-grid-row-editor-buttons-ml,
  3904. .x-grid-row-editor-buttons-mr,
  3905. .x-grid-row-editor-buttons-bl,
  3906. .x-grid-row-editor-buttons-br,
  3907. .x-grid-row-editor-buttons-bc {
  3908. position: absolute;
  3909. overflow: hidden; }
  3910. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3911. .x-grid-row-editor-buttons-bl,
  3912. .x-grid-row-editor-buttons-br {
  3913. width: 4px;
  3914. height: 4px;
  3915. bottom: 0px;
  3916. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-corners.gif'); }
  3917. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3918. .x-grid-row-editor-buttons-bl {
  3919. left: 0px;
  3920. background-position: 0px -16px; }
  3921. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3922. .x-grid-row-editor-buttons-br {
  3923. right: 0px;
  3924. background-position: 0px -20px; }
  3925. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3926. .x-grid-row-editor-buttons-bc {
  3927. position: absolute;
  3928. left: 4px;
  3929. bottom: 0px;
  3930. width: 192px;
  3931. height: 1px;
  3932. background-color: #d0d0d0; }
  3933. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3934. .x-grid-row-editor-buttons-ml,
  3935. .x-grid-row-editor-buttons-mr {
  3936. height: 27px;
  3937. width: 1px;
  3938. top: 1px;
  3939. background-color: #d0d0d0; }
  3940. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3941. .x-grid-row-editor-buttons-ml {
  3942. left: 0px; }
  3943. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3944. .x-grid-row-editor-buttons-mr {
  3945. background-position: 0px -20px;
  3946. right: 0px; }
  3947. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3948. .x-grid-row-editor-errors ul {
  3949. margin-left: 5px; }
  3950. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3951. .x-grid-row-editor-errors li {
  3952. list-style: disc;
  3953. margin-left: 15px; }
  3954. /*misc*/
  3955. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3956. .x-webkit *:focus {
  3957. outline: none !important; }
  3958. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3959. .x-form-item {
  3960. vertical-align: top;
  3961. table-layout: fixed; }
  3962. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3963. .x-autocontainer-form-item,
  3964. .x-anchor-form-item,
  3965. .x-vbox-form-item,
  3966. .x-checkboxgroup-form-item,
  3967. .x-table-form-item {
  3968. margin-bottom: 5px; }
  3969. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3970. .x-form-layout-table {
  3971. border-collapse: separate;
  3972. border-spacing: 0 2px; }
  3973. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3974. .x-form-item-body {
  3975. position: relative; }
  3976. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3977. .x-form-form-item td {
  3978. border-top: 1px solid transparent; }
  3979. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3980. .x-ie6 .x-form-layout-table {
  3981. border-collapse: collapse;
  3982. border-spacing: 0; }
  3983. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3984. .x-ie6 .x-form-form-item td {
  3985. border-top-width: 0; }
  3986. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3987. .x-ie6 td.x-form-item-pad {
  3988. height: 5px; }
  3989. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3990. .x-editor .x-form-item-body {
  3991. padding-bottom: 0; }
  3992. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3993. .x-form-item-label {
  3994. display: block;
  3995. padding: 3px 0 0;
  3996. font-size: 12px;
  3997. user-select: none;
  3998. -o-user-select: none;
  3999. -ms-user-select: none;
  4000. -moz-user-select: -moz-none;
  4001. -webkit-user-select: none;
  4002. cursor: default; }
  4003. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4004. .x-form-item-label-top {
  4005. display: block;
  4006. zoom: 1;
  4007. padding: 0 0 5px 0; }
  4008. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4009. .x-form-item-label-right {
  4010. text-align: right; }
  4011. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4012. .x-form-invalid-under {
  4013. padding: 2px 2px 2px 18px;
  4014. color: #c0272b;
  4015. font: normal 11px tahoma, arial, verdana, sans-serif;
  4016. line-height: 16px;
  4017. background: no-repeat 0 2px;
  4018. background-image: url('../../resources/themes/images/gray/form/exclamation.gif'); }
  4019. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4020. .x-form-invalid-icon {
  4021. width: 18px;
  4022. height: 14px;
  4023. background: no-repeat center center;
  4024. background-image: url('../../resources/themes/images/gray/form/exclamation.gif');
  4025. overflow: hidden; }
  4026. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4027. .x-form-invalid-icon ul {
  4028. display: block;
  4029. width: 18px; }
  4030. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4031. .x-form-invalid-icon ul li {
  4032. /* prevent inner elements from interfering with QuickTip hovering */
  4033. display: none; }
  4034. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4035. .x-lbl-top-err-icon {
  4036. margin-bottom: 4px; }
  4037. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4038. .x-form-field,
  4039. .x-form-display-field {
  4040. margin: 0 0 0 0;
  4041. font: normal 12px tahoma, arial, verdana, sans-serif;
  4042. color: black; }
  4043. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4044. .x-form-item-hidden {
  4045. margin: 0; }
  4046. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4047. .x-form-text,
  4048. textarea.x-form-field {
  4049. padding: 1px 3px;
  4050. background: repeat-x 0 0;
  4051. border: 1px solid;
  4052. background-color: white;
  4053. background-image: url('../../resources/themes/images/gray/form/text-bg.gif');
  4054. border-color: #b5b8c8; }
  4055. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4056. .x-form-text {
  4057. height: 18px;
  4058. line-height: 15px;
  4059. vertical-align: top; }
  4060. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4061. .x-ie8m .x-form-text {
  4062. line-height: 15px; }
  4063. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4064. .x-border-box .x-form-text {
  4065. height: 22px; }
  4066. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4067. textarea.x-form-field {
  4068. color: black;
  4069. overflow: auto;
  4070. height: auto;
  4071. line-height: normal;
  4072. background: repeat-x 0 0;
  4073. background-color: white;
  4074. background-image: url('../../resources/themes/images/gray/form/text-bg.gif');
  4075. resize: none; }
  4076. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4077. .x-border-box textarea.x-form-field {
  4078. height: auto; }
  4079. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4080. .x-safari.x-mac textarea.x-form-field {
  4081. margin-bottom: -2px; }
  4082. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4083. .x-form-focus,
  4084. textarea.x-form-focus {
  4085. border-color: #a1a1a1; }
  4086. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4087. .x-form-invalid-field,
  4088. textarea.x-form-invalid-field {
  4089. background-color: white;
  4090. background-image: url('../../resources/themes/images/gray/grid/invalid_line.gif');
  4091. background-repeat: repeat-x;
  4092. background-position: bottom;
  4093. border-color: #cc3300; }
  4094. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4095. .x-form-item {
  4096. font: normal 12px tahoma, arial, verdana, sans-serif; }
  4097. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4098. .x-form-empty-field, textarea.x-form-empty-field {
  4099. color: gray; }
  4100. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4101. .x-webkit .x-form-empty-field {
  4102. line-height: 15px; }
  4103. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4104. .x-form-display-field {
  4105. padding-top: 3px; }
  4106. /*
  4107. In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
  4108. This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
  4109. IE8 quirks on Windows 7 requires this fix, but on
  4110. IE8 quirks on Windows XP, this is breaks the layout.
  4111. TODO: Check field input heights in IE8 quirks on Windows Vista.
  4112. Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
  4113. */
  4114. /* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4115. .x-quirks .x-ie9p .x-form-text,
  4116. .x-ie7m .x-form-text {
  4117. margin-top: -1px;
  4118. margin-bottom: -1px; }
  4119. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4120. .x-ie .x-form-file {
  4121. height: 23px;
  4122. line-height: 18px;
  4123. vertical-align: middle; }
  4124. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4125. .x-field-default-toolbar .x-form-text {
  4126. height: 16px; }
  4127. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4128. .x-border-box .x-field-default-toolbar .x-form-text {
  4129. height: 20px; }
  4130. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4131. .x-field-default-toolbar .x-form-item-label-left {
  4132. padding-left: 4px; }
  4133. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4134. .x-fieldset {
  4135. border: 1px solid #b5b8c8;
  4136. padding: 10px;
  4137. margin-bottom: 10px;
  4138. display: block;
  4139. /* preserve margins in IE */
  4140. position: relative; }
  4141. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4142. .x-ie .x-fieldset {
  4143. padding-top: 0; }
  4144. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4145. .x-ie .x-fieldset .x-fieldset-body {
  4146. padding-top: 10px; }
  4147. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4148. .x-fieldset-header-checkbox {
  4149. line-height: 14px; }
  4150. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4151. .x-fieldset-header {
  4152. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  4153. color: #333333;
  4154. padding: 0 3px 1px;
  4155. overflow: hidden; }
  4156. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4157. .x-fieldset-header .x-fieldset-header-text {
  4158. float: left;
  4159. padding: 1px 0; }
  4160. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4161. .x-fieldset-header .x-fieldset-header-text-collapsible {
  4162. cursor: pointer; }
  4163. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4164. .x-fieldset-header .x-form-item,
  4165. .x-fieldset-header .x-tool {
  4166. float: left;
  4167. margin: 1px 0 0 0; }
  4168. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4169. .x-fieldset-header .x-form-cb-wrap {
  4170. padding: 1px 0;
  4171. font-size: 0;
  4172. line-height: 0; }
  4173. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4174. .x-fieldset-with-title .x-fieldset-header-checkbox,
  4175. .x-fieldset-with-title .x-tool {
  4176. margin-right: 3px; }
  4177. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4178. .x-webkit .x-fieldset-header {
  4179. -webkit-padding-start: 3px;
  4180. -webkit-padding-end: 3px; }
  4181. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4182. .x-opera .x-fieldset-with-legend {
  4183. margin-top: -1px; }
  4184. /* line 78, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4185. .x-opera.x-mac .x-fieldset-header-text {
  4186. padding: 2px 0 0; }
  4187. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4188. .x-strict .x-ie8 .x-fieldset-header {
  4189. margin-bottom: -1px; }
  4190. /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4191. .x-strict .x-ie8 .x-fieldset-header .x-tool,
  4192. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
  4193. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  4194. position: relative;
  4195. top: -1px; }
  4196. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4197. .x-quirks .x-ie .x-fieldset-header,
  4198. .x-ie8m .x-fieldset-header {
  4199. padding-left: 1px;
  4200. padding-right: 1px; }
  4201. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4202. .x-fieldset-collapsed .x-fieldset-body {
  4203. display: none; }
  4204. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4205. .x-fieldset-collapsed {
  4206. padding-bottom: 0 !important;
  4207. border-width: 1px 1px 0 1px !important;
  4208. border-left-color: transparent !important;
  4209. border-right-color: transparent !important; }
  4210. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4211. .x-ie6 .x-fieldset-collapsed {
  4212. border-width: 1px 0 0 0 !important;
  4213. padding-bottom: 0 !important;
  4214. margin-left: 1px;
  4215. margin-right: 1px; }
  4216. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4217. .x-ie .x-fieldset-bwrap {
  4218. zoom: 1; }
  4219. /* IE legend positioning bug */
  4220. /* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4221. .x-ie .x-fieldset-noborder legend {
  4222. position: relative;
  4223. margin-bottom: 23px; }
  4224. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4225. .x-ie .x-fieldset-noborder legend span {
  4226. position: absolute;
  4227. left: 16px; }
  4228. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4229. .x-fieldset {
  4230. overflow: hidden; }
  4231. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4232. .x-fieldset-bwrap {
  4233. overflow: hidden;
  4234. zoom: 1; }
  4235. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4236. .x-fieldset-body {
  4237. overflow: hidden; }
  4238. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4239. .x-form-file-wrap .x-form-text {
  4240. color: #777; }
  4241. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4242. .x-form-file-wrap .x-form-file-btn {
  4243. overflow: hidden; }
  4244. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4245. .x-form-file-wrap .x-form-file-input {
  4246. position: absolute;
  4247. top: -4px;
  4248. right: -2px;
  4249. height: 30px;
  4250. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  4251. opacity: 0;
  4252. /* Yes, there's actually a good reason for this...
  4253. * If the configured buttonText is set to something longer than the default,
  4254. * then it will quickly exceed the width of the hidden file input's "Browse..."
  4255. * button, so part of the custom button's clickable area will be covered by
  4256. * the hidden file input's text box instead. This results in a text-selection
  4257. * mouse cursor over that part of the button, at least in Firefox, which is
  4258. * confusing to a user. Giving the hidden file input a huge font-size makes
  4259. * the native button part very large so it will cover the whole clickable area.
  4260. */
  4261. font-size: 100px; }
  4262. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4263. .x-form-cb-wrap {
  4264. padding-top: 3px; }
  4265. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4266. .x-form-checkbox,
  4267. .x-form-radio {
  4268. vertical-align: -1px;
  4269. width: 13px;
  4270. height: 13px;
  4271. background: no-repeat;
  4272. background-image: url('../../resources/themes/images/gray/form/checkbox.gif');
  4273. overflow: hidden;
  4274. padding: 0;
  4275. border: 0; }
  4276. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4277. .x-form-checkbox::-moz-focus-inner,
  4278. .x-form-radio::-moz-focus-inner {
  4279. padding: 0;
  4280. border: 0; }
  4281. /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
  4282. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4283. .x-nbr.x-ie .x-form-checkbox,
  4284. .x-nbr.x-ie .x-form-radio {
  4285. font-size: 0; }
  4286. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4287. .x-form-cb-checked .x-form-checkbox,
  4288. .x-form-cb-checked .x-form-radio {
  4289. background-position: 0 -13px; }
  4290. /* Focused */
  4291. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4292. .x-form-cb-focus {
  4293. background-position: -13px 0; }
  4294. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4295. .x-form-cb-checked .x-form-cb-focus {
  4296. background-position: -13px -13px; }
  4297. /* Radios */
  4298. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4299. .x-form-radio {
  4300. background-image: url('../../resources/themes/images/gray/form/radio.gif'); }
  4301. /* boxLabel */
  4302. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4303. .x-form-cb-label-before {
  4304. margin-right: 4px; }
  4305. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4306. .x-form-cb-label-after {
  4307. margin-left: 4px; }
  4308. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4309. .x-form-checkboxgroup-body {
  4310. padding: 1px 4px 1px 4px; }
  4311. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4312. .x-form-invalid .x-form-checkboxgroup-body {
  4313. border: 1px solid #c30!important;
  4314. background: transparent repeat-x bottom;
  4315. background-image: url('../../resources/themes/images/gray/grid/invalid_line.gif');
  4316. padding: 1px 3px 0 3px; }
  4317. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4318. .x-check-group-alt {
  4319. background: #d5d5d5;
  4320. border-top: 1px dotted #b4b4b4;
  4321. border-bottom: 1px dotted #b4b4b4; }
  4322. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4323. .x-form-check-group-label {
  4324. color: #333;
  4325. border-bottom: 1px solid #333;
  4326. margin: 0 30px 5px 0;
  4327. padding: 2px; }
  4328. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4329. .x-form-trigger-wrap {
  4330. vertical-align: top; }
  4331. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4332. .x-form-trigger {
  4333. background-image: url('../../resources/themes/images/gray/form/trigger.gif');
  4334. background-position: 0 0;
  4335. width: 17px;
  4336. height: 21px;
  4337. border-bottom: 1px solid #b5b8c8;
  4338. cursor: pointer;
  4339. cursor: hand;
  4340. overflow: hidden; }
  4341. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4342. .x-border-box .x-form-trigger {
  4343. height: 22px; }
  4344. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4345. .x-field-default-toolbar .x-form-trigger {
  4346. height: 19px; }
  4347. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4348. .x-border-box .x-field-default-toolbar .x-form-trigger {
  4349. height: 20px; }
  4350. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4351. .x-form-trigger-over {
  4352. background-position: -17px 0;
  4353. border-bottom-color: #a1a1a1; }
  4354. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4355. .x-form-trigger-wrap-focus .x-form-trigger {
  4356. background-position: -51px 0;
  4357. border-bottom-color: #a1a1a1; }
  4358. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4359. .x-form-trigger-wrap-focus .x-form-trigger-over {
  4360. background-position: -68px 0;
  4361. border-bottom-color: null; }
  4362. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4363. .x-form-trigger-click,
  4364. .x-form-trigger-wrap-focus .x-form-trigger-click {
  4365. background-position: -34px 0;
  4366. border-bottom-color: null; }
  4367. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4368. .x-form-trigger-icon {
  4369. height: 16px;
  4370. background-repeat: no-repeat;
  4371. background-position: 7px 6px; }
  4372. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4373. .x-pickerfield-open .x-form-field {
  4374. -moz-border-radius-bottomleft: 0;
  4375. -webkit-border-bottom-left-radius: 0;
  4376. -ms-border-bottom-left-radius: 0;
  4377. -o-border-bottom-left-radius: 0;
  4378. border-bottom-left-radius: 0;
  4379. -moz-border-radius-bottomright: 0;
  4380. -webkit-border-bottom-right-radius: 0;
  4381. -ms-border-bottom-right-radius: 0;
  4382. -o-border-bottom-right-radius: 0;
  4383. border-bottom-right-radius: 0; }
  4384. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4385. .x-pickerfield-open-above .x-form-field {
  4386. -moz-border-radius-bottomleft: 3px;
  4387. -webkit-border-bottom-left-radius: 3px;
  4388. -ms-border-bottom-left-radius: 3px;
  4389. -o-border-bottom-left-radius: 3px;
  4390. border-bottom-left-radius: 3px;
  4391. -moz-border-radius-topleft: 0;
  4392. -webkit-border-top-left-radius: 0;
  4393. -ms-border-top-left-radius: 0;
  4394. -o-border-top-left-radius: 0;
  4395. border-top-left-radius: 0;
  4396. -moz-border-radius-topright: 0;
  4397. -webkit-border-top-right-radius: 0;
  4398. -ms-border-top-right-radius: 0;
  4399. -o-border-top-right-radius: 0;
  4400. border-top-right-radius: 0; }
  4401. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4402. .x-form-arrow-trigger .x-form-trigger-icon {
  4403. background-image: url('../../resources/themes/images/gray/boundlist/trigger-arrow.png'); }
  4404. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4405. .x-form-date-trigger {
  4406. background-image: url('../../resources/themes/images/gray/form/date-trigger.gif'); }
  4407. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4408. .x-form-trigger-wrap .x-form-spinner-up,
  4409. .x-form-trigger-wrap .x-form-spinner-down {
  4410. background-image: url('../../resources/themes/images/gray/form/spinner.gif');
  4411. width: 17px !important;
  4412. height: 11px !important;
  4413. font-size: 0;
  4414. /*for IE*/
  4415. border-bottom: 0; }
  4416. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4417. .x-form-trigger-wrap .x-form-spinner-down {
  4418. background-position: 0 -11px; }
  4419. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4420. .x-form-trigger-wrap-focus .x-form-spinner-down {
  4421. background-position: -51px -11px; }
  4422. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4423. .x-form-trigger-wrap .x-form-spinner-down-over {
  4424. background-position: -17px -11px; }
  4425. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4426. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4427. background-position: -68px -11px; }
  4428. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4429. .x-form-trigger-wrap .x-form-spinner-down-click {
  4430. background-position: -34px -11px; }
  4431. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4432. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  4433. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4434. background-image: url('../../resources/themes/images/gray/form/spinner-small.gif');
  4435. height: 10px !important; }
  4436. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4437. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4438. background-position: 0 -10px; }
  4439. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4440. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  4441. background-position: -51px -10px; }
  4442. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4443. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  4444. background-position: -17px -10px; }
  4445. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4446. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4447. background-position: -68px -10px; }
  4448. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4449. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  4450. background-position: -34px -10px; }
  4451. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4452. .x-trigger-noedit {
  4453. cursor: pointer;
  4454. cursor: hand; }
  4455. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4456. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  4457. cursor: auto; }
  4458. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4459. .x-form-clear-trigger {
  4460. background-image: url('../../resources/themes/images/gray/form/clear-trigger.gif'); }
  4461. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4462. .x-form-search-trigger {
  4463. background-image: url('../../resources/themes/images/gray/form/search-trigger.gif'); }
  4464. /* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4465. .x-quirks .prefixie6 .x-form-trigger-input-cell {
  4466. height: 22px; }
  4467. /* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4468. .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
  4469. height: 20px; }
  4470. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4471. .x-html-editor-wrap {
  4472. border: 1px solid #b5b8c8; }
  4473. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4474. .x-html-editor-wrap .x-toolbar {
  4475. border-top-width: 0;
  4476. border-left-width: 0;
  4477. border-right-width: 0; }
  4478. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4479. .x-html-editor-wrap textarea {
  4480. background-color: white; }
  4481. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4482. .x-html-editor-tb .x-btn-text {
  4483. background: transparent no-repeat;
  4484. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4485. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4486. .x-html-editor-tb .x-edit-bold,
  4487. .x-menu-item img.x-edit-bold {
  4488. background-position: 0 0;
  4489. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4490. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4491. .x-html-editor-tb .x-edit-italic,
  4492. .x-menu-item img.x-edit-italic {
  4493. background-position: -16px 0;
  4494. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4495. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4496. .x-html-editor-tb .x-edit-underline,
  4497. .x-menu-item img.x-edit-underline {
  4498. background-position: -32px 0;
  4499. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4500. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4501. .x-html-editor-tb .x-edit-forecolor,
  4502. .x-menu-item img.x-edit-forecolor {
  4503. background-position: -160px 0;
  4504. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4505. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4506. .x-html-editor-tb .x-edit-backcolor,
  4507. .x-menu-item img.x-edit-backcolor {
  4508. background-position: -176px 0;
  4509. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4510. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4511. .x-html-editor-tb .x-edit-justifyleft,
  4512. .x-menu-item img.x-edit-justifyleft {
  4513. background-position: -112px 0;
  4514. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4515. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4516. .x-html-editor-tb .x-edit-justifycenter,
  4517. .x-menu-item img.x-edit-justifycenter {
  4518. background-position: -128px 0;
  4519. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4520. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4521. .x-html-editor-tb .x-edit-justifyright,
  4522. .x-menu-item img.x-edit-justifyright {
  4523. background-position: -144px 0;
  4524. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4525. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4526. .x-html-editor-tb .x-edit-insertorderedlist,
  4527. .x-menu-item img.x-edit-insertorderedlist {
  4528. background-position: -80px 0;
  4529. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4530. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4531. .x-html-editor-tb .x-edit-insertunorderedlist,
  4532. .x-menu-item img.x-edit-insertunorderedlist {
  4533. background-position: -96px 0;
  4534. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4535. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4536. .x-html-editor-tb .x-edit-increasefontsize,
  4537. .x-menu-item img.x-edit-increasefontsize {
  4538. background-position: -48px 0;
  4539. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4540. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4541. .x-html-editor-tb .x-edit-decreasefontsize,
  4542. .x-menu-item img.x-edit-decreasefontsize {
  4543. background-position: -64px 0;
  4544. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4545. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4546. .x-html-editor-tb .x-edit-sourceedit,
  4547. .x-menu-item img.x-edit-sourceedit {
  4548. background-position: -192px 0;
  4549. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4550. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4551. .x-html-editor-tb .x-edit-createlink,
  4552. .x-menu-item img.x-edit-createlink {
  4553. background-position: -208px 0;
  4554. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4555. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4556. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4557. padding: 5px;
  4558. padding-bottom: 1px; }
  4559. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4560. .x-html-editor-tb .x-toolbar {
  4561. position: static !important; }
  4562. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4563. .x-html-editor-tb .x-font-select {
  4564. font-size: 11px; }
  4565. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4566. .x-html-editor-wrap textarea {
  4567. border: 0;
  4568. padding: 3px 2px;
  4569. overflow: auto; }
  4570. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4571. .x-panel,
  4572. .x-plain {
  4573. overflow: hidden;
  4574. position: relative; }
  4575. /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4576. .x-ie .x-panel-header,
  4577. .x-ie .x-panel-header-tl,
  4578. .x-ie .x-panel-header-tc,
  4579. .x-ie .x-panel-header-tr,
  4580. .x-ie .x-panel-header-ml,
  4581. .x-ie .x-panel-header-mc,
  4582. .x-ie .x-panel-header-mr,
  4583. .x-ie .x-panel-header-bl,
  4584. .x-ie .x-panel-header-bc,
  4585. .x-ie .x-panel-header-br {
  4586. zoom: 1; }
  4587. /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4588. .x-ie8 td.x-frame-mc {
  4589. vertical-align: top; }
  4590. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4591. .x-panel-header-horizontal {
  4592. padding: 3px 5px 4px; }
  4593. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4594. .x-panel-header-vertical {
  4595. padding: 5px 4px; }
  4596. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4597. .x-panel-header-icon,
  4598. .x-window-header-icon {
  4599. width: 16px;
  4600. height: 16px;
  4601. background-repeat: no-repeat;
  4602. background-position: 0 0;
  4603. vertical-align: middle;
  4604. margin-right: 4px; }
  4605. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4606. .x-vertical .x-panel-header-icon,
  4607. .x-vertical .x-window-header-icon {
  4608. margin: 0 0 4px; }
  4609. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4610. .x-panel-header-draggable,
  4611. .x-panel-header-draggable .x-panel-header-text,
  4612. .x-window-header-draggable,
  4613. .x-window-header-draggable .x-window-header-text {
  4614. cursor: move; }
  4615. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4616. .x-panel-ghost, .x-window-ghost {
  4617. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  4618. opacity: 0.65;
  4619. cursor: move; }
  4620. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4621. .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 {
  4622. width: 100%; }
  4623. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4624. .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 {
  4625. height: 100%; }
  4626. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4627. .x-panel-header-text-container {
  4628. overflow: hidden;
  4629. -o-text-overflow: ellipsis;
  4630. text-overflow: ellipsis; }
  4631. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4632. .x-panel-header-text {
  4633. user-select: none;
  4634. -o-user-select: none;
  4635. -ms-user-select: none;
  4636. -moz-user-select: -moz-none;
  4637. -webkit-user-select: none;
  4638. cursor: default;
  4639. white-space: nowrap; }
  4640. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4641. .x-panel-header-left .x-vml-base,
  4642. .x-panel-header-right .x-vml-base {
  4643. left: -3px !important; }
  4644. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4645. .x-panel-body {
  4646. overflow: hidden;
  4647. position: relative;
  4648. font-size: 12px; }
  4649. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4650. .x-panel-header-vertical .x-surface {
  4651. padding-left: 1px; }
  4652. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4653. .x-opera .x-panel-header-vertical .x-surface,
  4654. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  4655. padding-left: 2px; }
  4656. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4657. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4658. border-bottom-width: 1px !important; }
  4659. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4660. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4661. border-left-width: 1px !important; }
  4662. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4663. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4664. border-top-width: 1px !important; }
  4665. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4666. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4667. border-right-width: 1px !important; }
  4668. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4669. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4670. background-repeat: repeat-y; }
  4671. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4672. .x-panel-default {
  4673. border-color: #d0d0d0; }
  4674. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4675. .x-panel-header-default {
  4676. font-size: 11px;
  4677. border-color: #d0d0d0;
  4678. border-width: 1px;
  4679. border-style: solid;
  4680. background-image: none;
  4681. background-color: #d7d2d2;
  4682. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4683. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  4684. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  4685. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  4686. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  4687. background-image: linear-gradient(top, #f0f0f0, #d7d7d7);
  4688. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4689. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4690. box-shadow: #efeded 0 1px 0px 0 inset; }
  4691. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4692. .x-nlg .x-panel-header-default-top {
  4693. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-top-bg.gif'); }
  4694. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4695. .x-nlg .x-panel-header-default-bottom {
  4696. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-bottom-bg.gif'); }
  4697. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4698. .x-nlg .x-panel-header-default-left {
  4699. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-left-bg.gif'); }
  4700. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4701. .x-nlg .x-panel-header-default-right {
  4702. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-right-bg.gif'); }
  4703. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4704. .x-nlg .x-panel-header-default-right {
  4705. background-position: top right; }
  4706. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4707. .x-nlg .x-panel-header-default-bottom {
  4708. background-position: bottom left; }
  4709. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4710. .x-panel-header-text-default {
  4711. color: #333333;
  4712. font-size: 11px;
  4713. font-weight: bold;
  4714. font-family: tahoma, arial, verdana, sans-serif;
  4715. line-height: 17px; }
  4716. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4717. .x-panel-body-default {
  4718. background: white;
  4719. border-color: #d0d0d0;
  4720. color: black;
  4721. border-width: 1px;
  4722. border-style: solid; }
  4723. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4724. .x-panel-collapsed .x-window-header-default,
  4725. .x-panel-collapsed .x-panel-header-default {
  4726. border-color: #d0d0d0; }
  4727. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4728. .x-panel-header-default-vertical {
  4729. border-color: #d0d0d0; }
  4730. /* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4731. .x-panel-header-default-left,
  4732. .x-panel-header-default-right {
  4733. background-image: none;
  4734. background-color: #d7d2d2;
  4735. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4736. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  4737. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  4738. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  4739. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  4740. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  4741. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4742. .x-panel-collapsed .x-panel-header-default-top {
  4743. -moz-border-radius-bottomleft: null;
  4744. -webkit-border-bottom-left-radius: null;
  4745. -ms-border-bottom-left-radius: null;
  4746. -o-border-bottom-left-radius: null;
  4747. border-bottom-left-radius: null;
  4748. -moz-border-radius-bottomright: null;
  4749. -webkit-border-bottom-right-radius: null;
  4750. -ms-border-bottom-right-radius: null;
  4751. -o-border-bottom-right-radius: null;
  4752. border-bottom-right-radius: null; }
  4753. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4754. .x-panel-collapsed .x-panel-header-default-right {
  4755. -moz-border-radius-topleft: null;
  4756. -webkit-border-top-left-radius: null;
  4757. -ms-border-top-left-radius: null;
  4758. -o-border-top-left-radius: null;
  4759. border-top-left-radius: null;
  4760. -moz-border-radius-bottomleft: null;
  4761. -webkit-border-bottom-left-radius: null;
  4762. -ms-border-bottom-left-radius: null;
  4763. -o-border-bottom-left-radius: null;
  4764. border-bottom-left-radius: null; }
  4765. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4766. .x-panel-collapsed .x-panel-header-default-bottom {
  4767. -moz-border-radius-topleft: null;
  4768. -webkit-border-top-left-radius: null;
  4769. -ms-border-top-left-radius: null;
  4770. -o-border-top-left-radius: null;
  4771. border-top-left-radius: null;
  4772. -moz-border-radius-topright: null;
  4773. -webkit-border-top-right-radius: null;
  4774. -ms-border-top-right-radius: null;
  4775. -o-border-top-right-radius: null;
  4776. border-top-right-radius: null; }
  4777. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4778. .x-panel-collapsed .x-panel-header-default-left {
  4779. -moz-border-radius-topright: null;
  4780. -webkit-border-top-right-radius: null;
  4781. -ms-border-top-right-radius: null;
  4782. -o-border-top-right-radius: null;
  4783. border-top-right-radius: null;
  4784. -moz-border-radius-bottomright: null;
  4785. -webkit-border-bottom-right-radius: null;
  4786. -ms-border-bottom-right-radius: null;
  4787. -o-border-bottom-right-radius: null;
  4788. border-bottom-right-radius: null; }
  4789. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4790. .x-panel-header-default-top {
  4791. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4792. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4793. box-shadow: #efeded 0 1px 0px 0 inset; }
  4794. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4795. .x-panel-header-default-right {
  4796. -webkit-box-shadow: #efeded -1px 0 0px 0 inset;
  4797. -moz-box-shadow: #efeded -1px 0 0px 0 inset;
  4798. box-shadow: #efeded -1px 0 0px 0 inset; }
  4799. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4800. .x-panel-header-default-bottom {
  4801. -webkit-box-shadow: #efeded 0 -1px 0px 0 inset;
  4802. -moz-box-shadow: #efeded 0 -1px 0px 0 inset;
  4803. box-shadow: #efeded 0 -1px 0px 0 inset; }
  4804. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4805. .x-panel-header-default-left {
  4806. -webkit-box-shadow: #efeded 1px 0 0px 0 inset;
  4807. -moz-box-shadow: #efeded 1px 0 0px 0 inset;
  4808. box-shadow: #efeded 1px 0 0px 0 inset; }
  4809. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4810. .x-panel-header-default-right-tc,
  4811. .x-panel-header-default-right-mc,
  4812. .x-panel-header-default-right-bc {
  4813. background-position: right 0; }
  4814. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4815. .x-panel-header-default-bottom-tc,
  4816. .x-panel-header-default-bottom-mc,
  4817. .x-panel-header-default-bottom-bc {
  4818. background-position: 0 bottom; }
  4819. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4820. .x-panel-default-framed {
  4821. border-color: #d0d0d0; }
  4822. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4823. .x-panel-header-default-framed {
  4824. font-size: 11px;
  4825. border-color: #d0d0d0;
  4826. border-width: 1px;
  4827. border-style: solid;
  4828. background-image: none;
  4829. background-color: #d7d2d2;
  4830. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4831. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  4832. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  4833. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  4834. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  4835. background-image: linear-gradient(top, #f0f0f0, #d7d7d7);
  4836. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4837. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4838. box-shadow: #efeded 0 1px 0px 0 inset; }
  4839. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4840. .x-nlg .x-panel-header-default-framed-top {
  4841. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-bg.gif'); }
  4842. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4843. .x-nlg .x-panel-header-default-framed-bottom {
  4844. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  4845. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4846. .x-nlg .x-panel-header-default-framed-left {
  4847. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-bg.gif'); }
  4848. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4849. .x-nlg .x-panel-header-default-framed-right {
  4850. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-bg.gif'); }
  4851. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4852. .x-nlg .x-panel-header-default-framed-right {
  4853. background-position: top right; }
  4854. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4855. .x-nlg .x-panel-header-default-framed-bottom {
  4856. background-position: bottom left; }
  4857. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4858. .x-nbr .x-panel-header-default-framed {
  4859. background-image: none; }
  4860. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4861. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  4862. .x-nlg.x-opera .x-panel-header-default-framed-top,
  4863. .x-nlg.x-safari .x-panel-header-default-framed-top {
  4864. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-top-bg.gif'); }
  4865. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4866. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  4867. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  4868. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  4869. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-bottom-bg.gif'); }
  4870. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4871. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  4872. .x-nlg.x-opera .x-panel-header-default-framed-left,
  4873. .x-nlg.x-safari .x-panel-header-default-framed-left {
  4874. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-left-bg.gif'); }
  4875. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4876. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  4877. .x-nlg.x-opera .x-panel-header-default-framed-right,
  4878. .x-nlg.x-safari .x-panel-header-default-framed-right {
  4879. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-right-bg.gif'); }
  4880. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4881. .x-panel-header-text-default-framed {
  4882. color: #333333;
  4883. font-size: 11px;
  4884. font-weight: bold;
  4885. font-family: tahoma, arial, verdana, sans-serif;
  4886. line-height: 17px; }
  4887. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4888. .x-panel-body-default-framed {
  4889. background: #f1f1f1;
  4890. border-color: #d0d0d0;
  4891. color: black;
  4892. border-width: 0;
  4893. border-style: solid; }
  4894. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4895. .x-panel-collapsed .x-window-header-default-framed,
  4896. .x-panel-collapsed .x-panel-header-default-framed {
  4897. border-color: #d0d0d0; }
  4898. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4899. .x-panel-header-default-framed-vertical {
  4900. border-color: #d0d0d0; }
  4901. /* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4902. .x-panel-header-default-framed-left,
  4903. .x-panel-header-default-framed-right {
  4904. background-image: none;
  4905. background-color: #d7d2d2;
  4906. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4907. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  4908. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  4909. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  4910. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  4911. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  4912. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4913. .x-panel-default-framed {
  4914. -webkit-border-radius: 4px;
  4915. -moz-border-radius: 4px;
  4916. -ms-border-radius: 4px;
  4917. -o-border-radius: 4px;
  4918. border-radius: 4px;
  4919. padding: 4px 4px 4px 4px;
  4920. border-width: 1px;
  4921. border-style: solid;
  4922. background-color: #f1f1f1; }
  4923. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4924. .x-nlg .x-panel-default-framed-mc {
  4925. background-color: #f1f1f1; }
  4926. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4927. .x-nbr .x-panel-default-framed {
  4928. padding: 0 !important;
  4929. border-width: 0 !important;
  4930. -webkit-border-radius: 0px;
  4931. -moz-border-radius: 0px;
  4932. -ms-border-radius: 0px;
  4933. -o-border-radius: 0px;
  4934. border-radius: 0px;
  4935. background-color: transparent;
  4936. background-position: 1000404px 1000404px; }
  4937. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4938. .x-nbr .x-panel-default-framed-tl,
  4939. .x-nbr .x-panel-default-framed-bl,
  4940. .x-nbr .x-panel-default-framed-tr,
  4941. .x-nbr .x-panel-default-framed-br,
  4942. .x-nbr .x-panel-default-framed-tc,
  4943. .x-nbr .x-panel-default-framed-bc,
  4944. .x-nbr .x-panel-default-framed-ml,
  4945. .x-nbr .x-panel-default-framed-mr {
  4946. zoom: 1;
  4947. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-corners.gif'); }
  4948. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4949. .x-nbr .x-panel-default-framed-ml,
  4950. .x-nbr .x-panel-default-framed-mr {
  4951. zoom: 1;
  4952. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-sides.gif');
  4953. background-position: 0 0;
  4954. background-repeat: repeat-y; }
  4955. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4956. .x-nbr .x-panel-default-framed-mc {
  4957. padding: 1px 1px 1px 1px; }
  4958. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4959. .x-strict .x-ie7 .x-panel-default-framed-tl,
  4960. .x-strict .x-ie7 .x-panel-default-framed-bl {
  4961. position: relative;
  4962. right: 0; }
  4963. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4964. .x-panel-header-default-framed-top {
  4965. -moz-border-radius-topleft: 4px;
  4966. -webkit-border-top-left-radius: 4px;
  4967. -ms-border-top-left-radius: 4px;
  4968. -o-border-top-left-radius: 4px;
  4969. border-top-left-radius: 4px;
  4970. -moz-border-radius-topright: 4px;
  4971. -webkit-border-top-right-radius: 4px;
  4972. -ms-border-top-right-radius: 4px;
  4973. -o-border-top-right-radius: 4px;
  4974. border-top-right-radius: 4px;
  4975. -moz-border-radius-bottomright: 0;
  4976. -webkit-border-bottom-right-radius: 0;
  4977. -ms-border-bottom-right-radius: 0;
  4978. -o-border-bottom-right-radius: 0;
  4979. border-bottom-right-radius: 0;
  4980. -moz-border-radius-bottomleft: 0;
  4981. -webkit-border-bottom-left-radius: 0;
  4982. -ms-border-bottom-left-radius: 0;
  4983. -o-border-bottom-left-radius: 0;
  4984. border-bottom-left-radius: 0;
  4985. padding: 3px 5px 4px 5px;
  4986. border-width: 1px 1px 0 1px;
  4987. border-style: solid;
  4988. background-image: none;
  4989. background-color: #d7d2d2;
  4990. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4991. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  4992. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  4993. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  4994. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  4995. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  4996. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4997. .x-nlg .x-panel-header-default-framed-top-mc {
  4998. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-bg.gif');
  4999. background-color: #d7d2d2; }
  5000. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5001. .x-nbr .x-panel-header-default-framed-top {
  5002. padding: 0 !important;
  5003. border-width: 0 !important;
  5004. -webkit-border-radius: 0px;
  5005. -moz-border-radius: 0px;
  5006. -ms-border-radius: 0px;
  5007. -o-border-radius: 0px;
  5008. border-radius: 0px;
  5009. background-color: transparent;
  5010. background-position: 1000404px 1000000px; }
  5011. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5012. .x-nbr .x-panel-header-default-framed-top-tl,
  5013. .x-nbr .x-panel-header-default-framed-top-bl,
  5014. .x-nbr .x-panel-header-default-framed-top-tr,
  5015. .x-nbr .x-panel-header-default-framed-top-br,
  5016. .x-nbr .x-panel-header-default-framed-top-tc,
  5017. .x-nbr .x-panel-header-default-framed-top-bc,
  5018. .x-nbr .x-panel-header-default-framed-top-ml,
  5019. .x-nbr .x-panel-header-default-framed-top-mr {
  5020. zoom: 1;
  5021. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-corners.gif'); }
  5022. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5023. .x-nbr .x-panel-header-default-framed-top-ml,
  5024. .x-nbr .x-panel-header-default-framed-top-mr {
  5025. zoom: 1;
  5026. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-sides.gif');
  5027. background-position: 0 0; }
  5028. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5029. .x-nbr .x-panel-header-default-framed-top-mc {
  5030. padding: 0px 2px 4px 2px; }
  5031. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5032. .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
  5033. .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  5034. position: relative;
  5035. right: 0; }
  5036. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5037. .x-panel-header-default-framed-right {
  5038. -moz-border-radius-topleft: 0;
  5039. -webkit-border-top-left-radius: 0;
  5040. -ms-border-top-left-radius: 0;
  5041. -o-border-top-left-radius: 0;
  5042. border-top-left-radius: 0;
  5043. -moz-border-radius-topright: 4px;
  5044. -webkit-border-top-right-radius: 4px;
  5045. -ms-border-top-right-radius: 4px;
  5046. -o-border-top-right-radius: 4px;
  5047. border-top-right-radius: 4px;
  5048. -moz-border-radius-bottomright: 4px;
  5049. -webkit-border-bottom-right-radius: 4px;
  5050. -ms-border-bottom-right-radius: 4px;
  5051. -o-border-bottom-right-radius: 4px;
  5052. border-bottom-right-radius: 4px;
  5053. -moz-border-radius-bottomleft: 0;
  5054. -webkit-border-bottom-left-radius: 0;
  5055. -ms-border-bottom-left-radius: 0;
  5056. -o-border-bottom-left-radius: 0;
  5057. border-bottom-left-radius: 0;
  5058. padding: 5px 4px 5px 4px;
  5059. border-width: 1px 1px 1px 0;
  5060. border-style: solid;
  5061. background-image: none;
  5062. background-color: #d7d2d2;
  5063. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5064. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5065. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5066. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5067. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5068. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5069. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5070. .x-nlg .x-panel-header-default-framed-right-mc {
  5071. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-bg.gif');
  5072. background-color: #d7d2d2; }
  5073. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5074. .x-nbr .x-panel-header-default-framed-right {
  5075. padding: 0 !important;
  5076. border-width: 0 !important;
  5077. -webkit-border-radius: 0px;
  5078. -moz-border-radius: 0px;
  5079. -ms-border-radius: 0px;
  5080. -o-border-radius: 0px;
  5081. border-radius: 0px;
  5082. background-color: transparent;
  5083. background-position: 1000004px 1100400px; }
  5084. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5085. .x-nbr .x-panel-header-default-framed-right-tl,
  5086. .x-nbr .x-panel-header-default-framed-right-bl,
  5087. .x-nbr .x-panel-header-default-framed-right-tr,
  5088. .x-nbr .x-panel-header-default-framed-right-br,
  5089. .x-nbr .x-panel-header-default-framed-right-tc,
  5090. .x-nbr .x-panel-header-default-framed-right-bc,
  5091. .x-nbr .x-panel-header-default-framed-right-ml,
  5092. .x-nbr .x-panel-header-default-framed-right-mr {
  5093. zoom: 1;
  5094. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-corners.gif'); }
  5095. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5096. .x-nbr .x-panel-header-default-framed-right-tc,
  5097. .x-nbr .x-panel-header-default-framed-right-bc {
  5098. zoom: 1;
  5099. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-sides.gif');
  5100. background-position: 0 0;
  5101. background-repeat: repeat-x; }
  5102. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5103. .x-nbr .x-panel-header-default-framed-right-mc {
  5104. padding: 2px 1px 2px 4px; }
  5105. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5106. .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
  5107. .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  5108. position: relative;
  5109. right: 0; }
  5110. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5111. .x-panel-header-default-framed-bottom {
  5112. -moz-border-radius-topleft: 0;
  5113. -webkit-border-top-left-radius: 0;
  5114. -ms-border-top-left-radius: 0;
  5115. -o-border-top-left-radius: 0;
  5116. border-top-left-radius: 0;
  5117. -moz-border-radius-topright: 0;
  5118. -webkit-border-top-right-radius: 0;
  5119. -ms-border-top-right-radius: 0;
  5120. -o-border-top-right-radius: 0;
  5121. border-top-right-radius: 0;
  5122. -moz-border-radius-bottomright: 4px;
  5123. -webkit-border-bottom-right-radius: 4px;
  5124. -ms-border-bottom-right-radius: 4px;
  5125. -o-border-bottom-right-radius: 4px;
  5126. border-bottom-right-radius: 4px;
  5127. -moz-border-radius-bottomleft: 4px;
  5128. -webkit-border-bottom-left-radius: 4px;
  5129. -ms-border-bottom-left-radius: 4px;
  5130. -o-border-bottom-left-radius: 4px;
  5131. border-bottom-left-radius: 4px;
  5132. padding: 3px 5px 4px 5px;
  5133. border-width: 0 1px 1px 1px;
  5134. border-style: solid;
  5135. background-image: none;
  5136. background-color: #d7d2d2;
  5137. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5138. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5139. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5140. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5141. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5142. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5143. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5144. .x-nlg .x-panel-header-default-framed-bottom-mc {
  5145. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-bg.gif');
  5146. background-color: #d7d2d2; }
  5147. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5148. .x-nbr .x-panel-header-default-framed-bottom {
  5149. padding: 0 !important;
  5150. border-width: 0 !important;
  5151. -webkit-border-radius: 0px;
  5152. -moz-border-radius: 0px;
  5153. -ms-border-radius: 0px;
  5154. -o-border-radius: 0px;
  5155. border-radius: 0px;
  5156. background-color: transparent;
  5157. background-position: 1000000px 1000404px; }
  5158. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5159. .x-nbr .x-panel-header-default-framed-bottom-tl,
  5160. .x-nbr .x-panel-header-default-framed-bottom-bl,
  5161. .x-nbr .x-panel-header-default-framed-bottom-tr,
  5162. .x-nbr .x-panel-header-default-framed-bottom-br,
  5163. .x-nbr .x-panel-header-default-framed-bottom-tc,
  5164. .x-nbr .x-panel-header-default-framed-bottom-bc,
  5165. .x-nbr .x-panel-header-default-framed-bottom-ml,
  5166. .x-nbr .x-panel-header-default-framed-bottom-mr {
  5167. zoom: 1;
  5168. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-corners.gif'); }
  5169. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5170. .x-nbr .x-panel-header-default-framed-bottom-ml,
  5171. .x-nbr .x-panel-header-default-framed-bottom-mr {
  5172. zoom: 1;
  5173. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-sides.gif');
  5174. background-position: 0 0; }
  5175. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5176. .x-nbr .x-panel-header-default-framed-bottom-mc {
  5177. padding: 3px 2px 1px 2px; }
  5178. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5179. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
  5180. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  5181. position: relative;
  5182. right: 0; }
  5183. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5184. .x-panel-header-default-framed-left {
  5185. -moz-border-radius-topleft: 4px;
  5186. -webkit-border-top-left-radius: 4px;
  5187. -ms-border-top-left-radius: 4px;
  5188. -o-border-top-left-radius: 4px;
  5189. border-top-left-radius: 4px;
  5190. -moz-border-radius-topright: 0;
  5191. -webkit-border-top-right-radius: 0;
  5192. -ms-border-top-right-radius: 0;
  5193. -o-border-top-right-radius: 0;
  5194. border-top-right-radius: 0;
  5195. -moz-border-radius-bottomright: 0;
  5196. -webkit-border-bottom-right-radius: 0;
  5197. -ms-border-bottom-right-radius: 0;
  5198. -o-border-bottom-right-radius: 0;
  5199. border-bottom-right-radius: 0;
  5200. -moz-border-radius-bottomleft: 4px;
  5201. -webkit-border-bottom-left-radius: 4px;
  5202. -ms-border-bottom-left-radius: 4px;
  5203. -o-border-bottom-left-radius: 4px;
  5204. border-bottom-left-radius: 4px;
  5205. padding: 5px 4px 5px 4px;
  5206. border-width: 1px 0 1px 1px;
  5207. border-style: solid;
  5208. background-image: none;
  5209. background-color: #d7d2d2;
  5210. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5211. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5212. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5213. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5214. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5215. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5216. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5217. .x-nlg .x-panel-header-default-framed-left-mc {
  5218. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-bg.gif');
  5219. background-color: #d7d2d2; }
  5220. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5221. .x-nbr .x-panel-header-default-framed-left {
  5222. padding: 0 !important;
  5223. border-width: 0 !important;
  5224. -webkit-border-radius: 0px;
  5225. -moz-border-radius: 0px;
  5226. -ms-border-radius: 0px;
  5227. -o-border-radius: 0px;
  5228. border-radius: 0px;
  5229. background-color: transparent;
  5230. background-position: 1000400px 1100004px; }
  5231. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5232. .x-nbr .x-panel-header-default-framed-left-tl,
  5233. .x-nbr .x-panel-header-default-framed-left-bl,
  5234. .x-nbr .x-panel-header-default-framed-left-tr,
  5235. .x-nbr .x-panel-header-default-framed-left-br,
  5236. .x-nbr .x-panel-header-default-framed-left-tc,
  5237. .x-nbr .x-panel-header-default-framed-left-bc,
  5238. .x-nbr .x-panel-header-default-framed-left-ml,
  5239. .x-nbr .x-panel-header-default-framed-left-mr {
  5240. zoom: 1;
  5241. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-corners.gif'); }
  5242. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5243. .x-nbr .x-panel-header-default-framed-left-tc,
  5244. .x-nbr .x-panel-header-default-framed-left-bc {
  5245. zoom: 1;
  5246. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-sides.gif');
  5247. background-position: 0 0;
  5248. background-repeat: repeat-x; }
  5249. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5250. .x-nbr .x-panel-header-default-framed-left-mc {
  5251. padding: 2px 4px 2px 1px; }
  5252. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5253. .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
  5254. .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  5255. position: relative;
  5256. right: 0; }
  5257. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5258. .x-panel-header-default-framed-top {
  5259. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5260. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5261. box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5262. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5263. .x-panel-header-default-framed-right {
  5264. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset;
  5265. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset;
  5266. box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset; }
  5267. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5268. .x-panel-header-default-framed-bottom {
  5269. -webkit-box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5270. -moz-box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5271. box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5272. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5273. .x-panel-header-default-framed-left {
  5274. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5275. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5276. box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5277. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5278. .x-panel .x-panel-header-default-framed-top {
  5279. border-bottom-width: 1px !important; }
  5280. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5281. .x-panel .x-panel-header-default-framed-right {
  5282. border-left-width: 1px !important; }
  5283. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5284. .x-panel .x-panel-header-default-framed-bottom {
  5285. border-top-width: 1px !important; }
  5286. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5287. .x-panel .x-panel-header-default-framed-left {
  5288. border-right-width: 1px !important; }
  5289. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5290. .x-panel-header-default-framed-collapsed {
  5291. -webkit-border-radius: 4px;
  5292. -moz-border-radius: 4px;
  5293. -ms-border-radius: 4px;
  5294. -o-border-radius: 4px;
  5295. border-radius: 4px; }
  5296. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5297. .x-panel-header-default-framed-collapsed-top {
  5298. -moz-border-radius-topleft: 4px;
  5299. -webkit-border-top-left-radius: 4px;
  5300. -ms-border-top-left-radius: 4px;
  5301. -o-border-top-left-radius: 4px;
  5302. border-top-left-radius: 4px;
  5303. -moz-border-radius-topright: 4px;
  5304. -webkit-border-top-right-radius: 4px;
  5305. -ms-border-top-right-radius: 4px;
  5306. -o-border-top-right-radius: 4px;
  5307. border-top-right-radius: 4px;
  5308. -moz-border-radius-bottomright: 4px;
  5309. -webkit-border-bottom-right-radius: 4px;
  5310. -ms-border-bottom-right-radius: 4px;
  5311. -o-border-bottom-right-radius: 4px;
  5312. border-bottom-right-radius: 4px;
  5313. -moz-border-radius-bottomleft: 4px;
  5314. -webkit-border-bottom-left-radius: 4px;
  5315. -ms-border-bottom-left-radius: 4px;
  5316. -o-border-bottom-left-radius: 4px;
  5317. border-bottom-left-radius: 4px;
  5318. padding: 3px 5px 4px 5px;
  5319. border-width: 1px;
  5320. border-style: solid;
  5321. background-image: none;
  5322. background-color: #d7d2d2;
  5323. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5324. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5325. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5326. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5327. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5328. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5329. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5330. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  5331. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  5332. background-color: #d7d2d2; }
  5333. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5334. .x-nbr .x-panel-header-default-framed-collapsed-top {
  5335. padding: 0 !important;
  5336. border-width: 0 !important;
  5337. -webkit-border-radius: 0px;
  5338. -moz-border-radius: 0px;
  5339. -ms-border-radius: 0px;
  5340. -o-border-radius: 0px;
  5341. border-radius: 0px;
  5342. background-color: transparent;
  5343. background-position: 1000404px 1000404px; }
  5344. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5345. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
  5346. .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
  5347. .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
  5348. .x-nbr .x-panel-header-default-framed-collapsed-top-br,
  5349. .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
  5350. .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
  5351. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5352. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5353. zoom: 1;
  5354. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
  5355. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5356. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5357. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5358. zoom: 1;
  5359. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  5360. background-position: 0 0; }
  5361. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5362. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  5363. padding: 0px 2px 1px 2px; }
  5364. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5365. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
  5366. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  5367. position: relative;
  5368. right: 0; }
  5369. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5370. .x-panel-header-default-framed-collapsed-right {
  5371. -moz-border-radius-topleft: 4px;
  5372. -webkit-border-top-left-radius: 4px;
  5373. -ms-border-top-left-radius: 4px;
  5374. -o-border-top-left-radius: 4px;
  5375. border-top-left-radius: 4px;
  5376. -moz-border-radius-topright: 4px;
  5377. -webkit-border-top-right-radius: 4px;
  5378. -ms-border-top-right-radius: 4px;
  5379. -o-border-top-right-radius: 4px;
  5380. border-top-right-radius: 4px;
  5381. -moz-border-radius-bottomright: 4px;
  5382. -webkit-border-bottom-right-radius: 4px;
  5383. -ms-border-bottom-right-radius: 4px;
  5384. -o-border-bottom-right-radius: 4px;
  5385. border-bottom-right-radius: 4px;
  5386. -moz-border-radius-bottomleft: 4px;
  5387. -webkit-border-bottom-left-radius: 4px;
  5388. -ms-border-bottom-left-radius: 4px;
  5389. -o-border-bottom-left-radius: 4px;
  5390. border-bottom-left-radius: 4px;
  5391. padding: 5px 4px 5px 4px;
  5392. border-width: 1px;
  5393. border-style: solid;
  5394. background-image: none;
  5395. background-color: #d7d2d2;
  5396. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5397. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5398. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5399. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5400. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5401. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5402. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5403. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  5404. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  5405. background-color: #d7d2d2; }
  5406. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5407. .x-nbr .x-panel-header-default-framed-collapsed-right {
  5408. padding: 0 !important;
  5409. border-width: 0 !important;
  5410. -webkit-border-radius: 0px;
  5411. -moz-border-radius: 0px;
  5412. -ms-border-radius: 0px;
  5413. -o-border-radius: 0px;
  5414. border-radius: 0px;
  5415. background-color: transparent;
  5416. background-position: 1000404px 1100404px; }
  5417. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5418. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
  5419. .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
  5420. .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
  5421. .x-nbr .x-panel-header-default-framed-collapsed-right-br,
  5422. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5423. .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
  5424. .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
  5425. .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
  5426. zoom: 1;
  5427. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
  5428. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5429. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5430. .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
  5431. zoom: 1;
  5432. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  5433. background-position: 0 0;
  5434. background-repeat: repeat-x; }
  5435. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5436. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  5437. padding: 2px 1px 2px 1px; }
  5438. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5439. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
  5440. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  5441. position: relative;
  5442. right: 0; }
  5443. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5444. .x-panel-header-default-framed-collapsed-bottom {
  5445. -moz-border-radius-topleft: 4px;
  5446. -webkit-border-top-left-radius: 4px;
  5447. -ms-border-top-left-radius: 4px;
  5448. -o-border-top-left-radius: 4px;
  5449. border-top-left-radius: 4px;
  5450. -moz-border-radius-topright: 4px;
  5451. -webkit-border-top-right-radius: 4px;
  5452. -ms-border-top-right-radius: 4px;
  5453. -o-border-top-right-radius: 4px;
  5454. border-top-right-radius: 4px;
  5455. -moz-border-radius-bottomright: 4px;
  5456. -webkit-border-bottom-right-radius: 4px;
  5457. -ms-border-bottom-right-radius: 4px;
  5458. -o-border-bottom-right-radius: 4px;
  5459. border-bottom-right-radius: 4px;
  5460. -moz-border-radius-bottomleft: 4px;
  5461. -webkit-border-bottom-left-radius: 4px;
  5462. -ms-border-bottom-left-radius: 4px;
  5463. -o-border-bottom-left-radius: 4px;
  5464. border-bottom-left-radius: 4px;
  5465. padding: 3px 5px 4px 5px;
  5466. border-width: 1px;
  5467. border-style: solid;
  5468. background-image: none;
  5469. background-color: #d7d2d2;
  5470. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5471. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5472. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5473. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5474. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5475. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5476. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5477. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  5478. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  5479. background-color: #d7d2d2; }
  5480. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5481. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  5482. padding: 0 !important;
  5483. border-width: 0 !important;
  5484. -webkit-border-radius: 0px;
  5485. -moz-border-radius: 0px;
  5486. -ms-border-radius: 0px;
  5487. -o-border-radius: 0px;
  5488. border-radius: 0px;
  5489. background-color: transparent;
  5490. background-position: 1000404px 1000404px; }
  5491. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5492. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
  5493. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
  5494. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
  5495. .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
  5496. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
  5497. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
  5498. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5499. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5500. zoom: 1;
  5501. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
  5502. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5503. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5504. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5505. zoom: 1;
  5506. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  5507. background-position: 0 0; }
  5508. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5509. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  5510. padding: 0px 2px 1px 2px; }
  5511. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5512. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
  5513. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  5514. position: relative;
  5515. right: 0; }
  5516. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5517. .x-panel-header-default-framed-collapsed-left {
  5518. -moz-border-radius-topleft: 4px;
  5519. -webkit-border-top-left-radius: 4px;
  5520. -ms-border-top-left-radius: 4px;
  5521. -o-border-top-left-radius: 4px;
  5522. border-top-left-radius: 4px;
  5523. -moz-border-radius-topright: 4px;
  5524. -webkit-border-top-right-radius: 4px;
  5525. -ms-border-top-right-radius: 4px;
  5526. -o-border-top-right-radius: 4px;
  5527. border-top-right-radius: 4px;
  5528. -moz-border-radius-bottomright: 4px;
  5529. -webkit-border-bottom-right-radius: 4px;
  5530. -ms-border-bottom-right-radius: 4px;
  5531. -o-border-bottom-right-radius: 4px;
  5532. border-bottom-right-radius: 4px;
  5533. -moz-border-radius-bottomleft: 4px;
  5534. -webkit-border-bottom-left-radius: 4px;
  5535. -ms-border-bottom-left-radius: 4px;
  5536. -o-border-bottom-left-radius: 4px;
  5537. border-bottom-left-radius: 4px;
  5538. padding: 5px 4px 5px 4px;
  5539. border-width: 1px;
  5540. border-style: solid;
  5541. background-image: none;
  5542. background-color: #d7d2d2;
  5543. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5544. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5545. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5546. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5547. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5548. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5549. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5550. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  5551. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  5552. background-color: #d7d2d2; }
  5553. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5554. .x-nbr .x-panel-header-default-framed-collapsed-left {
  5555. padding: 0 !important;
  5556. border-width: 0 !important;
  5557. -webkit-border-radius: 0px;
  5558. -moz-border-radius: 0px;
  5559. -ms-border-radius: 0px;
  5560. -o-border-radius: 0px;
  5561. border-radius: 0px;
  5562. background-color: transparent;
  5563. background-position: 1000404px 1100404px; }
  5564. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5565. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
  5566. .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
  5567. .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
  5568. .x-nbr .x-panel-header-default-framed-collapsed-left-br,
  5569. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5570. .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
  5571. .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
  5572. .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
  5573. zoom: 1;
  5574. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
  5575. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5576. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5577. .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
  5578. zoom: 1;
  5579. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  5580. background-position: 0 0;
  5581. background-repeat: repeat-x; }
  5582. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5583. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  5584. padding: 2px 1px 2px 1px; }
  5585. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5586. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
  5587. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  5588. position: relative;
  5589. right: 0; }
  5590. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5591. .x-panel-header-default-framed-right-tc,
  5592. .x-panel-header-default-framed-right-mc,
  5593. .x-panel-header-default-framed-right-bc {
  5594. background-position: right 0; }
  5595. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5596. .x-panel-header-default-framed-bottom-tc,
  5597. .x-panel-header-default-framed-bottom-mc,
  5598. .x-panel-header-default-framed-bottom-bc {
  5599. background-position: 0 bottom; }
  5600. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5601. .x-panel-header-plain,
  5602. .x-panel-body-plain {
  5603. border: 0;
  5604. padding: 0; }
  5605. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5606. .x-tip {
  5607. position: absolute;
  5608. overflow: visible;
  5609. /*pointer needs to be able to stick out*/
  5610. border-color: #868686; }
  5611. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5612. .x-tip .x-tip-header .x-box-item {
  5613. padding: 3px 3px 0; }
  5614. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5615. .x-tip .x-tip-header .x-tool {
  5616. padding: 0px 1px 0 0 !important; }
  5617. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5618. .x-tip {
  5619. -webkit-border-radius: 3px;
  5620. -moz-border-radius: 3px;
  5621. -ms-border-radius: 3px;
  5622. -o-border-radius: 3px;
  5623. border-radius: 3px;
  5624. padding: 2px 2px 2px 2px;
  5625. border-width: 1px;
  5626. border-style: solid;
  5627. background-color: #cccccc; }
  5628. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5629. .x-nlg .x-tip-mc {
  5630. background-color: #cccccc; }
  5631. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5632. .x-nbr .x-tip {
  5633. padding: 0 !important;
  5634. border-width: 0 !important;
  5635. -webkit-border-radius: 0px;
  5636. -moz-border-radius: 0px;
  5637. -ms-border-radius: 0px;
  5638. -o-border-radius: 0px;
  5639. border-radius: 0px;
  5640. background-color: transparent;
  5641. background-position: 1100303px 1000303px; }
  5642. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5643. .x-nbr .x-tip-tl,
  5644. .x-nbr .x-tip-bl,
  5645. .x-nbr .x-tip-tr,
  5646. .x-nbr .x-tip-br,
  5647. .x-nbr .x-tip-tc,
  5648. .x-nbr .x-tip-bc,
  5649. .x-nbr .x-tip-ml,
  5650. .x-nbr .x-tip-mr {
  5651. zoom: 1;
  5652. background-image: url('../../resources/themes/images/gray/tip/tip-corners.gif'); }
  5653. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5654. .x-nbr .x-tip-ml,
  5655. .x-nbr .x-tip-mr {
  5656. zoom: 1;
  5657. background-image: url('../../resources/themes/images/gray/tip/tip-sides.gif');
  5658. background-position: 0 0;
  5659. background-repeat: repeat-y; }
  5660. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5661. .x-nbr .x-tip-mc {
  5662. padding: 0px 0px 0px 0px; }
  5663. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5664. .x-strict .x-ie7 .x-tip-tl,
  5665. .x-strict .x-ie7 .x-tip-bl {
  5666. position: relative;
  5667. right: 0; }
  5668. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5669. .x-tip-header-text {
  5670. user-select: none;
  5671. -o-user-select: none;
  5672. -ms-user-select: none;
  5673. -moz-user-select: -moz-none;
  5674. -webkit-user-select: none;
  5675. cursor: default;
  5676. color: #444444;
  5677. font-size: 11px;
  5678. font-weight: bold; }
  5679. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5680. .x-tip-header-draggable .x-tip-header-text {
  5681. cursor: move; }
  5682. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5683. .x-tip-body,
  5684. .x-form-invalid-tip-body {
  5685. overflow: hidden;
  5686. position: relative;
  5687. padding: 3px; }
  5688. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5689. .x-tip-header,
  5690. .x-tip-body,
  5691. .x-form-invalid-tip-body {
  5692. color: #444444;
  5693. font-size: 11px;
  5694. font-weight: normal; }
  5695. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5696. .x-tip-header a,
  5697. .x-tip-body a,
  5698. .x-form-invalid-tip-body a {
  5699. color: #2a2a2a; }
  5700. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5701. .x-tip-anchor {
  5702. position: absolute;
  5703. overflow: hidden;
  5704. height: 0;
  5705. width: 0;
  5706. border-style: solid;
  5707. border-width: 5px;
  5708. border-color: #868686;
  5709. zoom: 1; }
  5710. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5711. .x-border-box .x-tip-anchor {
  5712. width: 10px;
  5713. height: 10px; }
  5714. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5715. .x-tip-anchor-top {
  5716. border-top-color: transparent;
  5717. border-left-color: transparent;
  5718. border-right-color: transparent;
  5719. _border-top-color: pink;
  5720. _border-left-color: pink;
  5721. _border-right-color: pink;
  5722. _filter: chroma(color=pink); }
  5723. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5724. .x-tip-anchor-bottom {
  5725. border-bottom-color: transparent;
  5726. border-left-color: transparent;
  5727. border-right-color: transparent;
  5728. _border-bottom-color: pink;
  5729. _border-left-color: pink;
  5730. _border-right-color: pink;
  5731. _filter: chroma(color=pink); }
  5732. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5733. .x-tip-anchor-left {
  5734. border-top-color: transparent;
  5735. border-bottom-color: transparent;
  5736. border-left-color: transparent;
  5737. _border-top-color: pink;
  5738. _border-bottom-color: pink;
  5739. _border-left-color: pink;
  5740. _filter: chroma(color=pink); }
  5741. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5742. .x-tip-anchor-right {
  5743. border-top-color: transparent;
  5744. border-bottom-color: transparent;
  5745. border-right-color: transparent;
  5746. _border-top-color: pink;
  5747. _border-bottom-color: pink;
  5748. _border-right-color: pink;
  5749. _filter: chroma(color=pink); }
  5750. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5751. .x-form-invalid-tip {
  5752. border-color: #a1311f;
  5753. -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;
  5754. -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;
  5755. 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; }
  5756. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5757. .x-form-invalid-tip-body {
  5758. background: 1px 1px no-repeat;
  5759. background-image: url('../../resources/themes/images/gray/form/exclamation.gif');
  5760. padding-left: 22px; }
  5761. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5762. .x-form-invalid-tip-body li {
  5763. margin-bottom: 4px; }
  5764. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5765. .x-form-invalid-tip-body li.last {
  5766. margin-bottom: 0; }
  5767. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5768. .x-form-invalid-tip-default {
  5769. -webkit-border-radius: 5px;
  5770. -moz-border-radius: 5px;
  5771. -ms-border-radius: 5px;
  5772. -o-border-radius: 5px;
  5773. border-radius: 5px;
  5774. padding: 4px 4px 4px 4px;
  5775. border-width: 1px;
  5776. border-style: solid;
  5777. background-color: white; }
  5778. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5779. .x-nlg .x-form-invalid-tip-default-mc {
  5780. background-color: white; }
  5781. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5782. .x-nbr .x-form-invalid-tip-default {
  5783. padding: 0 !important;
  5784. border-width: 0 !important;
  5785. -webkit-border-radius: 0px;
  5786. -moz-border-radius: 0px;
  5787. -ms-border-radius: 0px;
  5788. -o-border-radius: 0px;
  5789. border-radius: 0px;
  5790. background-color: transparent;
  5791. background-position: 1100505px 1000505px; }
  5792. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5793. .x-nbr .x-form-invalid-tip-default-tl,
  5794. .x-nbr .x-form-invalid-tip-default-bl,
  5795. .x-nbr .x-form-invalid-tip-default-tr,
  5796. .x-nbr .x-form-invalid-tip-default-br,
  5797. .x-nbr .x-form-invalid-tip-default-tc,
  5798. .x-nbr .x-form-invalid-tip-default-bc,
  5799. .x-nbr .x-form-invalid-tip-default-ml,
  5800. .x-nbr .x-form-invalid-tip-default-mr {
  5801. zoom: 1;
  5802. background-image: url('../../resources/themes/images/gray/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
  5803. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5804. .x-nbr .x-form-invalid-tip-default-ml,
  5805. .x-nbr .x-form-invalid-tip-default-mr {
  5806. zoom: 1;
  5807. background-image: url('../../resources/themes/images/gray/form-invalid-tip/form-invalid-tip-default-sides.gif');
  5808. background-position: 0 0;
  5809. background-repeat: repeat-y; }
  5810. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5811. .x-nbr .x-form-invalid-tip-default-mc {
  5812. padding: 0px 0px 0px 0px; }
  5813. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5814. .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
  5815. .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
  5816. position: relative;
  5817. right: 0; }
  5818. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5819. .x-slider {
  5820. zoom: 1; }
  5821. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5822. .x-slider-inner {
  5823. position: relative;
  5824. left: 0;
  5825. top: 0;
  5826. overflow: visible;
  5827. zoom: 1; }
  5828. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5829. .x-slider-focus {
  5830. position: absolute;
  5831. left: 0;
  5832. top: 0;
  5833. width: 1px;
  5834. height: 1px;
  5835. line-height: 1px;
  5836. font-size: 1px;
  5837. -moz-outline: 0 none;
  5838. outline: 0 none;
  5839. user-select: none;
  5840. -o-user-select: none;
  5841. -ms-user-select: none;
  5842. -moz-user-select: -moz-none;
  5843. -webkit-user-select: none;
  5844. cursor: default;
  5845. display: block;
  5846. overflow: hidden; }
  5847. /* Horizontal styles */
  5848. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5849. .x-slider-horz {
  5850. padding-left: 7px;
  5851. background: transparent no-repeat 0 -24px;
  5852. width: 100%; }
  5853. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5854. .x-slider-horz .x-slider-end {
  5855. padding-right: 7px;
  5856. zoom: 1;
  5857. background: transparent no-repeat right -46px; }
  5858. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5859. .x-slider-horz .x-slider-inner {
  5860. background: transparent repeat-x 0 -2px;
  5861. height: 18px; }
  5862. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5863. .x-slider-horz .x-slider-thumb {
  5864. width: 14px;
  5865. height: 15px;
  5866. margin-left: -7px;
  5867. position: absolute;
  5868. left: 0;
  5869. top: 1px;
  5870. background: transparent no-repeat 0 0; }
  5871. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5872. .x-slider-horz .x-slider-thumb-over {
  5873. background-position: -14px -15px; }
  5874. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5875. .x-slider-horz .x-slider-thumb-drag {
  5876. background-position: -28px -30px; }
  5877. /* Vertical styles */
  5878. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5879. .x-slider-vert {
  5880. padding-top: 7px;
  5881. background: transparent no-repeat -44px 0; }
  5882. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5883. .x-slider-vert .x-slider-end {
  5884. padding-bottom: 7px;
  5885. zoom: 1;
  5886. background: transparent no-repeat -22px bottom;
  5887. width: 22px; }
  5888. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5889. .x-slider-vert .x-slider-inner {
  5890. background: transparent repeat-y 0 0;
  5891. width: 22px; }
  5892. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5893. .x-slider-vert .x-slider-thumb {
  5894. width: 15px;
  5895. height: 14px;
  5896. margin-bottom: -7px;
  5897. position: absolute;
  5898. left: 3px;
  5899. bottom: 0;
  5900. background: transparent no-repeat 0 0; }
  5901. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5902. .x-slider-vert .x-slider-thumb-over {
  5903. background-position: -15px -14px; }
  5904. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5905. .x-slider-vert .x-slider-thumb-drag {
  5906. background-position: -30px -28px; }
  5907. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5908. .x-slider-horz,
  5909. .x-slider-horz .x-slider-end,
  5910. .x-slider-horz .x-slider-inner {
  5911. background-image: url('../../resources/themes/images/gray/slider/slider-bg.png'); }
  5912. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5913. .x-slider-horz .x-slider-thumb {
  5914. background-image: url('../../resources/themes/images/gray/slider/slider-thumb.png'); }
  5915. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5916. .x-slider-vert,
  5917. .x-slider-vert .x-slider-end,
  5918. .x-slider-vert .x-slider-inner {
  5919. background-image: url('../../resources/themes/images/gray/slider/slider-v-bg.png'); }
  5920. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5921. .x-slider-vert .x-slider-thumb {
  5922. background-image: url('../../resources/themes/images/gray/slider/slider-v-thumb.png'); }
  5923. /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5924. .x-ie6 .x-slider-horz,
  5925. .x-ie6 .x-slider-horz .x-slider-end,
  5926. .x-ie6 .x-slider-horz .x-slider-inner {
  5927. background-image: url('../../resources/themes/images/gray/slider/slider-bg.gif'); }
  5928. /* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5929. .x-ie6 .x-slider-horz .x-slider-thumb {
  5930. background-image: url('../../resources/themes/images/gray/slider/slider-thumb.gif'); }
  5931. /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5932. .x-ie6 .x-slider-vert,
  5933. .x-ie6 .x-slider-vert .x-slider-end,
  5934. .x-ie6 .x-slider-vert .x-slider-inner {
  5935. background-image: url('../../resources/themes/images/gray/slider/slider-v-bg.gif'); }
  5936. /* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5937. .x-ie6 .x-slider-vert .x-slider-thumb {
  5938. background-image: url('../../resources/themes/images/gray/slider/slider-v-thumb.gif'); }
  5939. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5940. .x-progress {
  5941. position: relative;
  5942. border-width: 1px;
  5943. border-style: solid;
  5944. -webkit-border-radius: 0;
  5945. -moz-border-radius: 0;
  5946. -ms-border-radius: 0;
  5947. -o-border-radius: 0;
  5948. border-radius: 0;
  5949. overflow: hidden;
  5950. height: 20px; }
  5951. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5952. .x-progress-bar {
  5953. height: 18px;
  5954. overflow: hidden;
  5955. position: absolute;
  5956. width: 0;
  5957. -webkit-border-radius: 0;
  5958. -moz-border-radius: 0;
  5959. -ms-border-radius: 0;
  5960. -o-border-radius: 0;
  5961. border-radius: 0;
  5962. border-right: 1px solid;
  5963. border-top: 1px solid; }
  5964. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5965. .x-progress-text {
  5966. overflow: hidden;
  5967. position: absolute;
  5968. padding: 0 5px;
  5969. height: 18px;
  5970. font-weight: bold;
  5971. font-size: 11px;
  5972. line-height: 16px;
  5973. text-align: center; }
  5974. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5975. .x-progress-text-back {
  5976. padding-top: 1px; }
  5977. /* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5978. .x-strict .x-ie7m .x-progress {
  5979. height: 18px; }
  5980. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5981. .x-progress-default {
  5982. border-color: #8e8e8e; }
  5983. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5984. .x-progress-default .x-progress-bar {
  5985. border-right-color: #8e8e8e;
  5986. border-top-color: #cecece;
  5987. background-image: none;
  5988. background-color: #ababab;
  5989. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d1d1d1), color-stop(50%, #b8b8b8), color-stop(51%, #ababab), color-stop(100%, #9e9e9e));
  5990. background-image: -webkit-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  5991. background-image: -moz-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  5992. background-image: -o-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  5993. background-image: -ms-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  5994. background-image: linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); }
  5995. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5996. .x-progress-default .x-progress-text {
  5997. color: white; }
  5998. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5999. .x-progress-default .x-progress-text-back {
  6000. color: #5d5d5d; }
  6001. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6002. .x-nlg .x-progress-default .x-progress-bar {
  6003. background: repeat-x;
  6004. background-image: url('../../resources/themes/images/gray/progress/progress-default-bg.gif'); }
  6005. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6006. .x-toolbar {
  6007. font-size: 11px;
  6008. border: 1px solid;
  6009. padding: 2px 0 2px 2px; }
  6010. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6011. .x-toolbar .x-form-item-label {
  6012. font-size: 11px;
  6013. line-height: 15px; }
  6014. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6015. .x-toolbar .x-toolbar-item {
  6016. margin: 0 2px 0 0; }
  6017. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6018. .x-toolbar .x-toolbar-text {
  6019. margin-left: 4px;
  6020. margin-right: 6px;
  6021. white-space: nowrap;
  6022. color: black;
  6023. line-height: 16px;
  6024. font-family: tahoma, arial, verdana, sans-serif;
  6025. font-size: 11px;
  6026. font-weight: normal; }
  6027. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6028. .x-toolbar .x-toolbar-separator {
  6029. display: block;
  6030. font-size: 1px;
  6031. overflow: hidden;
  6032. cursor: default;
  6033. border: 0; }
  6034. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6035. .x-toolbar .x-toolbar-separator-horizontal {
  6036. margin: 0 3px 0 2px;
  6037. height: 14px;
  6038. width: 0px;
  6039. border-left: 1px solid #aca899;
  6040. border-right: 1px solid white; }
  6041. /* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6042. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  6043. width: 2px; }
  6044. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6045. .x-toolbar-footer {
  6046. background: transparent;
  6047. border: 0px none;
  6048. margin-top: 3px;
  6049. padding: 2px 0 2px 6px; }
  6050. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6051. .x-toolbar-footer .x-box-inner {
  6052. border-width: 0; }
  6053. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6054. .x-toolbar-footer .x-toolbar-item {
  6055. margin: 0 6px 0 0; }
  6056. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6057. .x-toolbar-vertical {
  6058. padding: 2px 2px 0 2px; }
  6059. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6060. .x-toolbar-vertical .x-toolbar-item {
  6061. margin: 0 0 2px 0; }
  6062. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6063. .x-toolbar-vertical .x-toolbar-text {
  6064. margin-top: 4px;
  6065. margin-bottom: 6px; }
  6066. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6067. .x-toolbar-vertical .x-toolbar-separator-vertical {
  6068. margin: 2px 5px 3px 5px;
  6069. height: 0px;
  6070. width: 10px;
  6071. line-height: 0px;
  6072. border-top: 1px solid #aca899;
  6073. border-bottom: 1px solid white; }
  6074. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6075. .x-toolbar-scroller {
  6076. padding-left: 0; }
  6077. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6078. .x-toolbar-spacer {
  6079. width: 2px; }
  6080. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6081. .x-toolbar-more-icon {
  6082. background-image: url('../../resources/themes/images/gray/toolbar/more.gif') !important;
  6083. background-position: 2px center !important;
  6084. background-repeat: no-repeat; }
  6085. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6086. .x-toolbar-default {
  6087. border-color: #d0d0d0;
  6088. background-image: none;
  6089. background-color: #d8d8d8;
  6090. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #efefef));
  6091. background-image: -webkit-linear-gradient(top, #e6e6e6, #efefef);
  6092. background-image: -moz-linear-gradient(top, #e6e6e6, #efefef);
  6093. background-image: -o-linear-gradient(top, #e6e6e6, #efefef);
  6094. background-image: -ms-linear-gradient(top, #e6e6e6, #efefef);
  6095. background-image: linear-gradient(top, #e6e6e6, #efefef); }
  6096. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6097. .x-nlg .x-toolbar-default {
  6098. background-image: url('../../resources/themes/images/gray/toolbar/toolbar-default-bg.gif') !important;
  6099. background-repeat: repeat-x; }
  6100. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6101. .x-toolbar-plain {
  6102. border: 0; }
  6103. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6104. .x-window {
  6105. outline: none;
  6106. overflow: hidden; }
  6107. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6108. .x-window .x-window-wrap {
  6109. position: relative; }
  6110. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6111. .x-window-body {
  6112. position: relative;
  6113. border-style: solid;
  6114. overflow: hidden; }
  6115. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6116. .x-window-maximized .x-window-wrap .x-window-header {
  6117. -moz-border-radius: 0 !important;
  6118. -webkit-border-radius: 0 !important;
  6119. -o-border-radius: 0 !important;
  6120. -ms-border-radius: 0 !important;
  6121. -khtml-border-radius: 0 !important;
  6122. border-radius: 0 !important; }
  6123. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6124. .x-window-header-top {
  6125. margin-bottom: -2px; }
  6126. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6127. .x-window-header-body-horizontal {
  6128. margin-top: -1px; }
  6129. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6130. .x-window-header-bottom {
  6131. margin-top: -1px;
  6132. margin-bottom: -1px; }
  6133. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6134. .x-window-header-left {
  6135. margin-right: -1px; }
  6136. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6137. .x-window-header-right {
  6138. margin-left: -1px; }
  6139. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6140. .x-window-header-vertical .x-surface {
  6141. padding-left: 1px; }
  6142. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6143. .x-window-collapsed .x-window-header-vertical {
  6144. -webkit-border-radius: 5px;
  6145. -moz-border-radius: 5px;
  6146. -ms-border-radius: 5px;
  6147. -o-border-radius: 5px;
  6148. border-radius: 5px; }
  6149. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6150. .x-window-collapsed .x-window-header-horizontal {
  6151. -webkit-border-radius: 5px;
  6152. -moz-border-radius: 5px;
  6153. -ms-border-radius: 5px;
  6154. -o-border-radius: 5px;
  6155. border-radius: 5px; }
  6156. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6157. .x-window-collapsed .x-window-header-left {
  6158. padding-right: 5px !important;
  6159. margin-right: 0; }
  6160. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6161. .x-window-collapsed .x-window-header-right {
  6162. padding-left: 5px !important;
  6163. margin-left: 0; }
  6164. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6165. .x-window-collapsed .x-window-header-top {
  6166. padding-bottom: 5px !important;
  6167. margin-bottom: -1px; }
  6168. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6169. .x-window-collapsed .x-window-header-bottom {
  6170. padding-top: 5px !important;
  6171. margin-top: 0; }
  6172. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6173. .x-window-header-left .x-vml-base,
  6174. .x-window-header-right .x-vml-base {
  6175. left: -3px !important; }
  6176. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6177. .x-opera .x-window-header-vertical .x-surface,
  6178. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  6179. padding-left: 2px; }
  6180. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6181. .x-window-header-text-container {
  6182. overflow: hidden;
  6183. -o-text-overflow: ellipsis;
  6184. text-overflow: ellipsis; }
  6185. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6186. .x-window-header-text {
  6187. user-select: none;
  6188. -o-user-select: none;
  6189. -ms-user-select: none;
  6190. -moz-user-select: -moz-none;
  6191. -webkit-user-select: none;
  6192. cursor: default;
  6193. white-space: nowrap; }
  6194. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6195. .x-window-default {
  6196. border-color: #a9a9a9;
  6197. -webkit-border-radius: 5px 5px;
  6198. -moz-border-radius: 5px 5px;
  6199. -ms-border-radius: 5px 5px;
  6200. -o-border-radius: 5px 5px;
  6201. border-radius: 5px 5px;
  6202. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6203. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6204. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6205. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6206. .x-window-default {
  6207. -moz-border-radius-topleft: 5px;
  6208. -webkit-border-top-left-radius: 5px;
  6209. -ms-border-top-left-radius: 5px;
  6210. -o-border-top-left-radius: 5px;
  6211. border-top-left-radius: 5px;
  6212. -moz-border-radius-topright: 5px;
  6213. -webkit-border-top-right-radius: 5px;
  6214. -ms-border-top-right-radius: 5px;
  6215. -o-border-top-right-radius: 5px;
  6216. border-top-right-radius: 5px;
  6217. -moz-border-radius-bottomright: 5px;
  6218. -webkit-border-bottom-right-radius: 5px;
  6219. -ms-border-bottom-right-radius: 5px;
  6220. -o-border-bottom-right-radius: 5px;
  6221. border-bottom-right-radius: 5px;
  6222. -moz-border-radius-bottomleft: 5px;
  6223. -webkit-border-bottom-left-radius: 5px;
  6224. -ms-border-bottom-left-radius: 5px;
  6225. -o-border-bottom-left-radius: 5px;
  6226. border-bottom-left-radius: 5px;
  6227. padding: 4px 4px 4px 4px;
  6228. border-width: 1px;
  6229. border-style: solid;
  6230. background-color: #e8e8e8; }
  6231. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6232. .x-nlg .x-window-default-mc {
  6233. background-color: #e8e8e8; }
  6234. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6235. .x-nbr .x-window-default {
  6236. padding: 0 !important;
  6237. border-width: 0 !important;
  6238. -webkit-border-radius: 0px;
  6239. -moz-border-radius: 0px;
  6240. -ms-border-radius: 0px;
  6241. -o-border-radius: 0px;
  6242. border-radius: 0px;
  6243. background-color: transparent;
  6244. background-position: 1000505px 1000505px; }
  6245. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6246. .x-nbr .x-window-default-tl,
  6247. .x-nbr .x-window-default-bl,
  6248. .x-nbr .x-window-default-tr,
  6249. .x-nbr .x-window-default-br,
  6250. .x-nbr .x-window-default-tc,
  6251. .x-nbr .x-window-default-bc,
  6252. .x-nbr .x-window-default-ml,
  6253. .x-nbr .x-window-default-mr {
  6254. zoom: 1;
  6255. background-image: url('../../resources/themes/images/gray/window/window-default-corners.gif'); }
  6256. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6257. .x-nbr .x-window-default-ml,
  6258. .x-nbr .x-window-default-mr {
  6259. zoom: 1;
  6260. background-image: url('../../resources/themes/images/gray/window/window-default-sides.gif');
  6261. background-position: 0 0;
  6262. background-repeat: repeat-y; }
  6263. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6264. .x-nbr .x-window-default-mc {
  6265. padding: 0px 0px 0px 0px; }
  6266. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6267. .x-strict .x-ie7 .x-window-default-tl,
  6268. .x-strict .x-ie7 .x-window-default-bl {
  6269. position: relative;
  6270. right: 0; }
  6271. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6272. .x-window-body-default {
  6273. border-color: #bcb1b0;
  6274. border-width: 1px;
  6275. background: #e0e0e0;
  6276. color: black; }
  6277. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6278. .x-window-header-default {
  6279. font-size: 11px;
  6280. border-color: #a9a9a9;
  6281. zoom: 1; }
  6282. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6283. .x-window-header-text-default {
  6284. color: #333333;
  6285. font-weight: bold;
  6286. line-height: 17px;
  6287. font-family: tahoma, arial, verdana, sans-serif;
  6288. font-size: 11px; }
  6289. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6290. .x-window-header-default-top {
  6291. -moz-border-radius-topleft: 5px;
  6292. -webkit-border-top-left-radius: 5px;
  6293. -ms-border-top-left-radius: 5px;
  6294. -o-border-top-left-radius: 5px;
  6295. border-top-left-radius: 5px;
  6296. -moz-border-radius-topright: 5px;
  6297. -webkit-border-top-right-radius: 5px;
  6298. -ms-border-top-right-radius: 5px;
  6299. -o-border-top-right-radius: 5px;
  6300. border-top-right-radius: 5px;
  6301. -moz-border-radius-bottomright: 0;
  6302. -webkit-border-bottom-right-radius: 0;
  6303. -ms-border-bottom-right-radius: 0;
  6304. -o-border-bottom-right-radius: 0;
  6305. border-bottom-right-radius: 0;
  6306. -moz-border-radius-bottomleft: 0;
  6307. -webkit-border-bottom-left-radius: 0;
  6308. -ms-border-bottom-left-radius: 0;
  6309. -o-border-bottom-left-radius: 0;
  6310. border-bottom-left-radius: 0;
  6311. padding: 4px 5px 0 5px;
  6312. border-width: 1px 1px 0 1px;
  6313. border-style: solid;
  6314. background-color: #e8e8e8; }
  6315. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6316. .x-nlg .x-window-header-default-top-mc {
  6317. background-color: #e8e8e8; }
  6318. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6319. .x-nbr .x-window-header-default-top {
  6320. padding: 0 !important;
  6321. border-width: 0 !important;
  6322. -webkit-border-radius: 0px;
  6323. -moz-border-radius: 0px;
  6324. -ms-border-radius: 0px;
  6325. -o-border-radius: 0px;
  6326. border-radius: 0px;
  6327. background-color: transparent;
  6328. background-position: 1000505px 1000000px; }
  6329. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6330. .x-nbr .x-window-header-default-top-tl,
  6331. .x-nbr .x-window-header-default-top-bl,
  6332. .x-nbr .x-window-header-default-top-tr,
  6333. .x-nbr .x-window-header-default-top-br,
  6334. .x-nbr .x-window-header-default-top-tc,
  6335. .x-nbr .x-window-header-default-top-bc,
  6336. .x-nbr .x-window-header-default-top-ml,
  6337. .x-nbr .x-window-header-default-top-mr {
  6338. zoom: 1;
  6339. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-top-corners.gif'); }
  6340. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6341. .x-nbr .x-window-header-default-top-ml,
  6342. .x-nbr .x-window-header-default-top-mr {
  6343. zoom: 1;
  6344. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-top-sides.gif');
  6345. background-position: 0 0;
  6346. background-repeat: repeat-y; }
  6347. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6348. .x-nbr .x-window-header-default-top-mc {
  6349. padding: 0px 1px 0 1px; }
  6350. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6351. .x-strict .x-ie7 .x-window-header-default-top-tl,
  6352. .x-strict .x-ie7 .x-window-header-default-top-bl {
  6353. position: relative;
  6354. right: 0; }
  6355. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6356. .x-window-header-default-right {
  6357. -moz-border-radius-topleft: 0;
  6358. -webkit-border-top-left-radius: 0;
  6359. -ms-border-top-left-radius: 0;
  6360. -o-border-top-left-radius: 0;
  6361. border-top-left-radius: 0;
  6362. -moz-border-radius-topright: 5px;
  6363. -webkit-border-top-right-radius: 5px;
  6364. -ms-border-top-right-radius: 5px;
  6365. -o-border-top-right-radius: 5px;
  6366. border-top-right-radius: 5px;
  6367. -moz-border-radius-bottomright: 5px;
  6368. -webkit-border-bottom-right-radius: 5px;
  6369. -ms-border-bottom-right-radius: 5px;
  6370. -o-border-bottom-right-radius: 5px;
  6371. border-bottom-right-radius: 5px;
  6372. -moz-border-radius-bottomleft: 0;
  6373. -webkit-border-bottom-left-radius: 0;
  6374. -ms-border-bottom-left-radius: 0;
  6375. -o-border-bottom-left-radius: 0;
  6376. border-bottom-left-radius: 0;
  6377. padding: 5px 4px 5px 0;
  6378. border-width: 1px 1px 1px 0;
  6379. border-style: solid;
  6380. background-color: #e8e8e8; }
  6381. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6382. .x-nlg .x-window-header-default-right-mc {
  6383. background-color: #e8e8e8; }
  6384. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6385. .x-nbr .x-window-header-default-right {
  6386. padding: 0 !important;
  6387. border-width: 0 !important;
  6388. -webkit-border-radius: 0px;
  6389. -moz-border-radius: 0px;
  6390. -ms-border-radius: 0px;
  6391. -o-border-radius: 0px;
  6392. border-radius: 0px;
  6393. background-color: transparent;
  6394. background-position: 1000005px 1000500px; }
  6395. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6396. .x-nbr .x-window-header-default-right-tl,
  6397. .x-nbr .x-window-header-default-right-bl,
  6398. .x-nbr .x-window-header-default-right-tr,
  6399. .x-nbr .x-window-header-default-right-br,
  6400. .x-nbr .x-window-header-default-right-tc,
  6401. .x-nbr .x-window-header-default-right-bc,
  6402. .x-nbr .x-window-header-default-right-ml,
  6403. .x-nbr .x-window-header-default-right-mr {
  6404. zoom: 1;
  6405. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-right-corners.gif'); }
  6406. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6407. .x-nbr .x-window-header-default-right-ml,
  6408. .x-nbr .x-window-header-default-right-mr {
  6409. zoom: 1;
  6410. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-right-sides.gif');
  6411. background-position: 0 0;
  6412. background-repeat: repeat-y; }
  6413. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6414. .x-nbr .x-window-header-default-right-mc {
  6415. padding: 1px 0px 1px 0; }
  6416. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6417. .x-strict .x-ie7 .x-window-header-default-right-tl,
  6418. .x-strict .x-ie7 .x-window-header-default-right-bl {
  6419. position: relative;
  6420. right: 0; }
  6421. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6422. .x-window-header-default-bottom {
  6423. -moz-border-radius-topleft: 0;
  6424. -webkit-border-top-left-radius: 0;
  6425. -ms-border-top-left-radius: 0;
  6426. -o-border-top-left-radius: 0;
  6427. border-top-left-radius: 0;
  6428. -moz-border-radius-topright: 0;
  6429. -webkit-border-top-right-radius: 0;
  6430. -ms-border-top-right-radius: 0;
  6431. -o-border-top-right-radius: 0;
  6432. border-top-right-radius: 0;
  6433. -moz-border-radius-bottomright: 5px;
  6434. -webkit-border-bottom-right-radius: 5px;
  6435. -ms-border-bottom-right-radius: 5px;
  6436. -o-border-bottom-right-radius: 5px;
  6437. border-bottom-right-radius: 5px;
  6438. -moz-border-radius-bottomleft: 5px;
  6439. -webkit-border-bottom-left-radius: 5px;
  6440. -ms-border-bottom-left-radius: 5px;
  6441. -o-border-bottom-left-radius: 5px;
  6442. border-bottom-left-radius: 5px;
  6443. padding: 0 5px 4px 5px;
  6444. border-width: 0 1px 1px 1px;
  6445. border-style: solid;
  6446. background-color: #e8e8e8; }
  6447. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6448. .x-nlg .x-window-header-default-bottom-mc {
  6449. background-color: #e8e8e8; }
  6450. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6451. .x-nbr .x-window-header-default-bottom {
  6452. padding: 0 !important;
  6453. border-width: 0 !important;
  6454. -webkit-border-radius: 0px;
  6455. -moz-border-radius: 0px;
  6456. -ms-border-radius: 0px;
  6457. -o-border-radius: 0px;
  6458. border-radius: 0px;
  6459. background-color: transparent;
  6460. background-position: 1000000px 1000505px; }
  6461. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6462. .x-nbr .x-window-header-default-bottom-tl,
  6463. .x-nbr .x-window-header-default-bottom-bl,
  6464. .x-nbr .x-window-header-default-bottom-tr,
  6465. .x-nbr .x-window-header-default-bottom-br,
  6466. .x-nbr .x-window-header-default-bottom-tc,
  6467. .x-nbr .x-window-header-default-bottom-bc,
  6468. .x-nbr .x-window-header-default-bottom-ml,
  6469. .x-nbr .x-window-header-default-bottom-mr {
  6470. zoom: 1;
  6471. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-bottom-corners.gif'); }
  6472. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6473. .x-nbr .x-window-header-default-bottom-ml,
  6474. .x-nbr .x-window-header-default-bottom-mr {
  6475. zoom: 1;
  6476. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-bottom-sides.gif');
  6477. background-position: 0 0;
  6478. background-repeat: repeat-y; }
  6479. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6480. .x-nbr .x-window-header-default-bottom-mc {
  6481. padding: 0 1px 0px 1px; }
  6482. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6483. .x-strict .x-ie7 .x-window-header-default-bottom-tl,
  6484. .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  6485. position: relative;
  6486. right: 0; }
  6487. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6488. .x-window-header-default-left {
  6489. -moz-border-radius-topleft: 5px;
  6490. -webkit-border-top-left-radius: 5px;
  6491. -ms-border-top-left-radius: 5px;
  6492. -o-border-top-left-radius: 5px;
  6493. border-top-left-radius: 5px;
  6494. -moz-border-radius-topright: 0;
  6495. -webkit-border-top-right-radius: 0;
  6496. -ms-border-top-right-radius: 0;
  6497. -o-border-top-right-radius: 0;
  6498. border-top-right-radius: 0;
  6499. -moz-border-radius-bottomright: 0;
  6500. -webkit-border-bottom-right-radius: 0;
  6501. -ms-border-bottom-right-radius: 0;
  6502. -o-border-bottom-right-radius: 0;
  6503. border-bottom-right-radius: 0;
  6504. -moz-border-radius-bottomleft: 5px;
  6505. -webkit-border-bottom-left-radius: 5px;
  6506. -ms-border-bottom-left-radius: 5px;
  6507. -o-border-bottom-left-radius: 5px;
  6508. border-bottom-left-radius: 5px;
  6509. padding: 5px 0px 5px 4px;
  6510. border-width: 1px 0 1px 1px;
  6511. border-style: solid;
  6512. background-color: #e8e8e8; }
  6513. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6514. .x-nlg .x-window-header-default-left-mc {
  6515. background-color: #e8e8e8; }
  6516. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6517. .x-nbr .x-window-header-default-left {
  6518. padding: 0 !important;
  6519. border-width: 0 !important;
  6520. -webkit-border-radius: 0px;
  6521. -moz-border-radius: 0px;
  6522. -ms-border-radius: 0px;
  6523. -o-border-radius: 0px;
  6524. border-radius: 0px;
  6525. background-color: transparent;
  6526. background-position: 1000500px 1000005px; }
  6527. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6528. .x-nbr .x-window-header-default-left-tl,
  6529. .x-nbr .x-window-header-default-left-bl,
  6530. .x-nbr .x-window-header-default-left-tr,
  6531. .x-nbr .x-window-header-default-left-br,
  6532. .x-nbr .x-window-header-default-left-tc,
  6533. .x-nbr .x-window-header-default-left-bc,
  6534. .x-nbr .x-window-header-default-left-ml,
  6535. .x-nbr .x-window-header-default-left-mr {
  6536. zoom: 1;
  6537. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-left-corners.gif'); }
  6538. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6539. .x-nbr .x-window-header-default-left-ml,
  6540. .x-nbr .x-window-header-default-left-mr {
  6541. zoom: 1;
  6542. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-left-sides.gif');
  6543. background-position: 0 0;
  6544. background-repeat: repeat-y; }
  6545. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6546. .x-nbr .x-window-header-default-left-mc {
  6547. padding: 1px 0px 1px 0px; }
  6548. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6549. .x-strict .x-ie7 .x-window-header-default-left-tl,
  6550. .x-strict .x-ie7 .x-window-header-default-left-bl {
  6551. position: relative;
  6552. right: 0; }
  6553. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6554. .x-window-header-default-collapsed-top {
  6555. -moz-border-radius-topleft: 5px;
  6556. -webkit-border-top-left-radius: 5px;
  6557. -ms-border-top-left-radius: 5px;
  6558. -o-border-top-left-radius: 5px;
  6559. border-top-left-radius: 5px;
  6560. -moz-border-radius-topright: 5px;
  6561. -webkit-border-top-right-radius: 5px;
  6562. -ms-border-top-right-radius: 5px;
  6563. -o-border-top-right-radius: 5px;
  6564. border-top-right-radius: 5px;
  6565. -moz-border-radius-bottomright: 5px;
  6566. -webkit-border-bottom-right-radius: 5px;
  6567. -ms-border-bottom-right-radius: 5px;
  6568. -o-border-bottom-right-radius: 5px;
  6569. border-bottom-right-radius: 5px;
  6570. -moz-border-radius-bottomleft: 5px;
  6571. -webkit-border-bottom-left-radius: 5px;
  6572. -ms-border-bottom-left-radius: 5px;
  6573. -o-border-bottom-left-radius: 5px;
  6574. border-bottom-left-radius: 5px;
  6575. padding: 4px 5px 4px 5px;
  6576. border-width: 1px;
  6577. border-style: solid;
  6578. background-color: #e8e8e8; }
  6579. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6580. .x-nlg .x-window-header-default-collapsed-top-mc {
  6581. background-color: #e8e8e8; }
  6582. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6583. .x-nbr .x-window-header-default-collapsed-top {
  6584. padding: 0 !important;
  6585. border-width: 0 !important;
  6586. -webkit-border-radius: 0px;
  6587. -moz-border-radius: 0px;
  6588. -ms-border-radius: 0px;
  6589. -o-border-radius: 0px;
  6590. border-radius: 0px;
  6591. background-color: transparent;
  6592. background-position: 1000505px 1000505px; }
  6593. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6594. .x-nbr .x-window-header-default-collapsed-top-tl,
  6595. .x-nbr .x-window-header-default-collapsed-top-bl,
  6596. .x-nbr .x-window-header-default-collapsed-top-tr,
  6597. .x-nbr .x-window-header-default-collapsed-top-br,
  6598. .x-nbr .x-window-header-default-collapsed-top-tc,
  6599. .x-nbr .x-window-header-default-collapsed-top-bc,
  6600. .x-nbr .x-window-header-default-collapsed-top-ml,
  6601. .x-nbr .x-window-header-default-collapsed-top-mr {
  6602. zoom: 1;
  6603. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-top-corners.gif'); }
  6604. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6605. .x-nbr .x-window-header-default-collapsed-top-ml,
  6606. .x-nbr .x-window-header-default-collapsed-top-mr {
  6607. zoom: 1;
  6608. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-top-sides.gif');
  6609. background-position: 0 0;
  6610. background-repeat: repeat-y; }
  6611. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6612. .x-nbr .x-window-header-default-collapsed-top-mc {
  6613. padding: 0px 1px 0px 1px; }
  6614. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6615. .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
  6616. .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  6617. position: relative;
  6618. right: 0; }
  6619. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6620. .x-window-header-default-collapsed-right {
  6621. -moz-border-radius-topleft: 5px;
  6622. -webkit-border-top-left-radius: 5px;
  6623. -ms-border-top-left-radius: 5px;
  6624. -o-border-top-left-radius: 5px;
  6625. border-top-left-radius: 5px;
  6626. -moz-border-radius-topright: 5px;
  6627. -webkit-border-top-right-radius: 5px;
  6628. -ms-border-top-right-radius: 5px;
  6629. -o-border-top-right-radius: 5px;
  6630. border-top-right-radius: 5px;
  6631. -moz-border-radius-bottomright: 5px;
  6632. -webkit-border-bottom-right-radius: 5px;
  6633. -ms-border-bottom-right-radius: 5px;
  6634. -o-border-bottom-right-radius: 5px;
  6635. border-bottom-right-radius: 5px;
  6636. -moz-border-radius-bottomleft: 5px;
  6637. -webkit-border-bottom-left-radius: 5px;
  6638. -ms-border-bottom-left-radius: 5px;
  6639. -o-border-bottom-left-radius: 5px;
  6640. border-bottom-left-radius: 5px;
  6641. padding: 5px 4px 5px 4px;
  6642. border-width: 1px;
  6643. border-style: solid;
  6644. background-color: #e8e8e8; }
  6645. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6646. .x-nlg .x-window-header-default-collapsed-right-mc {
  6647. background-color: #e8e8e8; }
  6648. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6649. .x-nbr .x-window-header-default-collapsed-right {
  6650. padding: 0 !important;
  6651. border-width: 0 !important;
  6652. -webkit-border-radius: 0px;
  6653. -moz-border-radius: 0px;
  6654. -ms-border-radius: 0px;
  6655. -o-border-radius: 0px;
  6656. border-radius: 0px;
  6657. background-color: transparent;
  6658. background-position: 1000505px 1000505px; }
  6659. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6660. .x-nbr .x-window-header-default-collapsed-right-tl,
  6661. .x-nbr .x-window-header-default-collapsed-right-bl,
  6662. .x-nbr .x-window-header-default-collapsed-right-tr,
  6663. .x-nbr .x-window-header-default-collapsed-right-br,
  6664. .x-nbr .x-window-header-default-collapsed-right-tc,
  6665. .x-nbr .x-window-header-default-collapsed-right-bc,
  6666. .x-nbr .x-window-header-default-collapsed-right-ml,
  6667. .x-nbr .x-window-header-default-collapsed-right-mr {
  6668. zoom: 1;
  6669. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-right-corners.gif'); }
  6670. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6671. .x-nbr .x-window-header-default-collapsed-right-ml,
  6672. .x-nbr .x-window-header-default-collapsed-right-mr {
  6673. zoom: 1;
  6674. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-right-sides.gif');
  6675. background-position: 0 0;
  6676. background-repeat: repeat-y; }
  6677. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6678. .x-nbr .x-window-header-default-collapsed-right-mc {
  6679. padding: 1px 0px 1px 0px; }
  6680. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6681. .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
  6682. .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  6683. position: relative;
  6684. right: 0; }
  6685. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6686. .x-window-header-default-collapsed-bottom {
  6687. -moz-border-radius-topleft: 5px;
  6688. -webkit-border-top-left-radius: 5px;
  6689. -ms-border-top-left-radius: 5px;
  6690. -o-border-top-left-radius: 5px;
  6691. border-top-left-radius: 5px;
  6692. -moz-border-radius-topright: 5px;
  6693. -webkit-border-top-right-radius: 5px;
  6694. -ms-border-top-right-radius: 5px;
  6695. -o-border-top-right-radius: 5px;
  6696. border-top-right-radius: 5px;
  6697. -moz-border-radius-bottomright: 5px;
  6698. -webkit-border-bottom-right-radius: 5px;
  6699. -ms-border-bottom-right-radius: 5px;
  6700. -o-border-bottom-right-radius: 5px;
  6701. border-bottom-right-radius: 5px;
  6702. -moz-border-radius-bottomleft: 5px;
  6703. -webkit-border-bottom-left-radius: 5px;
  6704. -ms-border-bottom-left-radius: 5px;
  6705. -o-border-bottom-left-radius: 5px;
  6706. border-bottom-left-radius: 5px;
  6707. padding: 4px 5px 4px 5px;
  6708. border-width: 1px;
  6709. border-style: solid;
  6710. background-color: #e8e8e8; }
  6711. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6712. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  6713. background-color: #e8e8e8; }
  6714. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6715. .x-nbr .x-window-header-default-collapsed-bottom {
  6716. padding: 0 !important;
  6717. border-width: 0 !important;
  6718. -webkit-border-radius: 0px;
  6719. -moz-border-radius: 0px;
  6720. -ms-border-radius: 0px;
  6721. -o-border-radius: 0px;
  6722. border-radius: 0px;
  6723. background-color: transparent;
  6724. background-position: 1000505px 1000505px; }
  6725. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6726. .x-nbr .x-window-header-default-collapsed-bottom-tl,
  6727. .x-nbr .x-window-header-default-collapsed-bottom-bl,
  6728. .x-nbr .x-window-header-default-collapsed-bottom-tr,
  6729. .x-nbr .x-window-header-default-collapsed-bottom-br,
  6730. .x-nbr .x-window-header-default-collapsed-bottom-tc,
  6731. .x-nbr .x-window-header-default-collapsed-bottom-bc,
  6732. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6733. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6734. zoom: 1;
  6735. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-bottom-corners.gif'); }
  6736. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6737. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6738. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6739. zoom: 1;
  6740. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-bottom-sides.gif');
  6741. background-position: 0 0;
  6742. background-repeat: repeat-y; }
  6743. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6744. .x-nbr .x-window-header-default-collapsed-bottom-mc {
  6745. padding: 0px 1px 0px 1px; }
  6746. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6747. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
  6748. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  6749. position: relative;
  6750. right: 0; }
  6751. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6752. .x-window-header-default-collapsed-left {
  6753. -moz-border-radius-topleft: 5px;
  6754. -webkit-border-top-left-radius: 5px;
  6755. -ms-border-top-left-radius: 5px;
  6756. -o-border-top-left-radius: 5px;
  6757. border-top-left-radius: 5px;
  6758. -moz-border-radius-topright: 5px;
  6759. -webkit-border-top-right-radius: 5px;
  6760. -ms-border-top-right-radius: 5px;
  6761. -o-border-top-right-radius: 5px;
  6762. border-top-right-radius: 5px;
  6763. -moz-border-radius-bottomright: 5px;
  6764. -webkit-border-bottom-right-radius: 5px;
  6765. -ms-border-bottom-right-radius: 5px;
  6766. -o-border-bottom-right-radius: 5px;
  6767. border-bottom-right-radius: 5px;
  6768. -moz-border-radius-bottomleft: 5px;
  6769. -webkit-border-bottom-left-radius: 5px;
  6770. -ms-border-bottom-left-radius: 5px;
  6771. -o-border-bottom-left-radius: 5px;
  6772. border-bottom-left-radius: 5px;
  6773. padding: 5px 4px 5px 4px;
  6774. border-width: 1px;
  6775. border-style: solid;
  6776. background-color: #e8e8e8; }
  6777. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6778. .x-nlg .x-window-header-default-collapsed-left-mc {
  6779. background-color: #e8e8e8; }
  6780. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6781. .x-nbr .x-window-header-default-collapsed-left {
  6782. padding: 0 !important;
  6783. border-width: 0 !important;
  6784. -webkit-border-radius: 0px;
  6785. -moz-border-radius: 0px;
  6786. -ms-border-radius: 0px;
  6787. -o-border-radius: 0px;
  6788. border-radius: 0px;
  6789. background-color: transparent;
  6790. background-position: 1000505px 1000505px; }
  6791. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6792. .x-nbr .x-window-header-default-collapsed-left-tl,
  6793. .x-nbr .x-window-header-default-collapsed-left-bl,
  6794. .x-nbr .x-window-header-default-collapsed-left-tr,
  6795. .x-nbr .x-window-header-default-collapsed-left-br,
  6796. .x-nbr .x-window-header-default-collapsed-left-tc,
  6797. .x-nbr .x-window-header-default-collapsed-left-bc,
  6798. .x-nbr .x-window-header-default-collapsed-left-ml,
  6799. .x-nbr .x-window-header-default-collapsed-left-mr {
  6800. zoom: 1;
  6801. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-left-corners.gif'); }
  6802. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6803. .x-nbr .x-window-header-default-collapsed-left-ml,
  6804. .x-nbr .x-window-header-default-collapsed-left-mr {
  6805. zoom: 1;
  6806. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-left-sides.gif');
  6807. background-position: 0 0;
  6808. background-repeat: repeat-y; }
  6809. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6810. .x-nbr .x-window-header-default-collapsed-left-mc {
  6811. padding: 1px 0px 1px 0px; }
  6812. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6813. .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
  6814. .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  6815. position: relative;
  6816. right: 0; }
  6817. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6818. .x-window-header-default-top {
  6819. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6820. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6821. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6822. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6823. .x-window-header-default-right {
  6824. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset;
  6825. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset;
  6826. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; }
  6827. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6828. .x-window-header-default-bottom {
  6829. -webkit-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6830. -moz-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6831. box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6832. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6833. .x-window-header-default-left {
  6834. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6835. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6836. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6837. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6838. .x-window-body-plain {
  6839. background: transparent; }
  6840. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6841. .x-message-box .x-window-body {
  6842. background-color: #e8e8e8;
  6843. border: none; }
  6844. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6845. .x-message-box .x-progress-wrap {
  6846. margin-top: 4px; }
  6847. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6848. .x-message-box-icon {
  6849. width: 47px;
  6850. height: 32px; }
  6851. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6852. .x-message-box-info,
  6853. .x-message-box-warning,
  6854. .x-message-box-question,
  6855. .x-message-box-error {
  6856. background: transparent no-repeat top left; }
  6857. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6858. .x-message-box .x-msg-box-wait {
  6859. background-image: url('../../resources/themes/images/gray/shared/blue-loading.gif'); }
  6860. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6861. .x-message-box-info {
  6862. background-image: url('../../resources/themes/images/gray/shared/icon-info.gif'); }
  6863. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6864. .x-message-box-warning {
  6865. background-image: url('../../resources/themes/images/gray/shared/icon-warning.gif'); }
  6866. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6867. .x-message-box-question {
  6868. background-image: url('../../resources/themes/images/gray/shared/icon-question.gif'); }
  6869. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6870. .x-message-box-error {
  6871. background-image: url('../../resources/themes/images/gray/shared/icon-error.gif'); }
  6872. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6873. .x-tab-bar {
  6874. position: relative;
  6875. background-color: transparent;
  6876. background-image: none;
  6877. background-color: #d2d2d2;
  6878. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2));
  6879. background-image: -webkit-linear-gradient(top, #dfdede, #d2d2d2);
  6880. background-image: -moz-linear-gradient(top, #dfdede, #d2d2d2);
  6881. background-image: -o-linear-gradient(top, #dfdede, #d2d2d2);
  6882. background-image: -ms-linear-gradient(top, #dfdede, #d2d2d2);
  6883. background-image: linear-gradient(top, #dfdede, #d2d2d2);
  6884. font-size: 11px; }
  6885. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6886. .x-nlg .x-tab-bar {
  6887. background-image: url('../../resources/themes/images/gray/tab-bar/tab-bar-default-bg.gif'); }
  6888. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6889. .x-tab-bar-default-plain,
  6890. .x-nlg .x-tab-bar-default-plain {
  6891. background: transparent none; }
  6892. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6893. .x-tab-bar-body {
  6894. border-style: solid;
  6895. border-color: #d0d0d0;
  6896. position: relative;
  6897. z-index: 2;
  6898. zoom: 1; }
  6899. /* Top Tabs */
  6900. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6901. .x-tab-bar-top .x-tab-bar-body {
  6902. height: 20px;
  6903. border-width: 1px 1px 0;
  6904. padding: 1px 0 3px; }
  6905. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6906. .x-tab-bar-top .x-tab-bar-strip {
  6907. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6908. top: 22px;
  6909. border-width: 1px 1px 0;
  6910. height: 2px; }
  6911. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6912. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  6913. height: 25px; }
  6914. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6915. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  6916. height: 3px; }
  6917. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6918. .x-tab-bar-top .x-tab-bar-body-default-plain {
  6919. height: 20px;
  6920. border-width: 0;
  6921. padding: 0 0 2px; }
  6922. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6923. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6924. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6925. top: 20px;
  6926. border-width: 1px 1px 0 1px;
  6927. height: 2px; }
  6928. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6929. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  6930. height: 22px; }
  6931. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6932. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6933. height: 3px; }
  6934. /* Bottom Tabs */
  6935. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6936. .x-tab-bar-bottom .x-tab-bar-body {
  6937. height: 20px;
  6938. border-width: 0 1px 1px;
  6939. padding: 3px 0 1px; }
  6940. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6941. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  6942. position: relative;
  6943. top: -1px; }
  6944. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6945. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  6946. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  6947. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  6948. height: 22px; }
  6949. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6950. .x-tab-bar-bottom .x-tab-bar-strip {
  6951. top: 0;
  6952. border-width: 0 1px 1px 1px;
  6953. height: 2px; }
  6954. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6955. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  6956. height: 25px; }
  6957. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6958. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  6959. height: 3px; }
  6960. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6961. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6962. height: 20px;
  6963. border-width: 0;
  6964. padding: 3px 0 0; }
  6965. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6966. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  6967. position: relative;
  6968. top: -1px; }
  6969. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6970. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  6971. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  6972. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  6973. height: 21px; }
  6974. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6975. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6976. top: 0;
  6977. border-width: 0 1px 1px 1px;
  6978. height: 2px; }
  6979. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6980. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6981. height: 23px; }
  6982. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6983. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6984. height: 3px; }
  6985. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6986. .x-tab-bar-strip-default,
  6987. .x-tab-bar-strip-default-plain {
  6988. font-size: 0;
  6989. line-height: 0;
  6990. position: absolute;
  6991. z-index: 1;
  6992. border-style: solid;
  6993. overflow: hidden;
  6994. border-color: #d0d0d0;
  6995. background-color: #eaeaea;
  6996. zoom: 1; }
  6997. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6998. .x-tab-default-top {
  6999. -moz-border-radius-topleft: 4px;
  7000. -webkit-border-top-left-radius: 4px;
  7001. -ms-border-top-left-radius: 4px;
  7002. -o-border-top-left-radius: 4px;
  7003. border-top-left-radius: 4px;
  7004. -moz-border-radius-topright: 4px;
  7005. -webkit-border-top-right-radius: 4px;
  7006. -ms-border-top-right-radius: 4px;
  7007. -o-border-top-right-radius: 4px;
  7008. border-top-right-radius: 4px;
  7009. -moz-border-radius-bottomright: 0;
  7010. -webkit-border-bottom-right-radius: 0;
  7011. -ms-border-bottom-right-radius: 0;
  7012. -o-border-bottom-right-radius: 0;
  7013. border-bottom-right-radius: 0;
  7014. -moz-border-radius-bottomleft: 0;
  7015. -webkit-border-bottom-left-radius: 0;
  7016. -ms-border-bottom-left-radius: 0;
  7017. -o-border-bottom-left-radius: 0;
  7018. border-bottom-left-radius: 0;
  7019. padding: 3px 3px 0 3px;
  7020. border-width: 1px 1px 0 1px;
  7021. border-style: solid;
  7022. background-image: none;
  7023. background-color: #eaeaea;
  7024. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea));
  7025. background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea);
  7026. background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea);
  7027. background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea);
  7028. background-image: -ms-linear-gradient(top, #dcdcdc, #eaeaea);
  7029. background-image: linear-gradient(top, #dcdcdc, #eaeaea); }
  7030. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7031. .x-nlg .x-tab-default-top-mc {
  7032. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-bg.gif');
  7033. background-color: #eaeaea; }
  7034. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7035. .x-nbr .x-tab-default-top {
  7036. padding: 0 !important;
  7037. border-width: 0 !important;
  7038. -webkit-border-radius: 0px;
  7039. -moz-border-radius: 0px;
  7040. -ms-border-radius: 0px;
  7041. -o-border-radius: 0px;
  7042. border-radius: 0px;
  7043. background-color: transparent;
  7044. background-position: 1100404px 1000000px; }
  7045. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7046. .x-nbr .x-tab-default-top-tl,
  7047. .x-nbr .x-tab-default-top-bl,
  7048. .x-nbr .x-tab-default-top-tr,
  7049. .x-nbr .x-tab-default-top-br,
  7050. .x-nbr .x-tab-default-top-tc,
  7051. .x-nbr .x-tab-default-top-bc,
  7052. .x-nbr .x-tab-default-top-ml,
  7053. .x-nbr .x-tab-default-top-mr {
  7054. zoom: 1;
  7055. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-corners.gif'); }
  7056. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7057. .x-nbr .x-tab-default-top-ml,
  7058. .x-nbr .x-tab-default-top-mr {
  7059. zoom: 1;
  7060. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-sides.gif');
  7061. background-position: 0 0; }
  7062. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7063. .x-nbr .x-tab-default-top-mc {
  7064. padding: 0px 0px 0 0px; }
  7065. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7066. .x-strict .x-ie7 .x-tab-default-top-tl,
  7067. .x-strict .x-ie7 .x-tab-default-top-bl {
  7068. position: relative;
  7069. right: 0; }
  7070. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7071. .x-tab-default-bottom {
  7072. -moz-border-radius-topleft: 0;
  7073. -webkit-border-top-left-radius: 0;
  7074. -ms-border-top-left-radius: 0;
  7075. -o-border-top-left-radius: 0;
  7076. border-top-left-radius: 0;
  7077. -moz-border-radius-topright: 0;
  7078. -webkit-border-top-right-radius: 0;
  7079. -ms-border-top-right-radius: 0;
  7080. -o-border-top-right-radius: 0;
  7081. border-top-right-radius: 0;
  7082. -moz-border-radius-bottomright: 4px;
  7083. -webkit-border-bottom-right-radius: 4px;
  7084. -ms-border-bottom-right-radius: 4px;
  7085. -o-border-bottom-right-radius: 4px;
  7086. border-bottom-right-radius: 4px;
  7087. -moz-border-radius-bottomleft: 4px;
  7088. -webkit-border-bottom-left-radius: 4px;
  7089. -ms-border-bottom-left-radius: 4px;
  7090. -o-border-bottom-left-radius: 4px;
  7091. border-bottom-left-radius: 4px;
  7092. padding: 0 3px 3px 3px;
  7093. border-width: 0 1px 1px 1px;
  7094. border-style: solid;
  7095. background-image: none;
  7096. background-color: #eaeaea;
  7097. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea));
  7098. background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7099. background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7100. background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7101. background-image: -ms-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7102. background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); }
  7103. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7104. .x-nlg .x-tab-default-bottom-mc {
  7105. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-bg.gif');
  7106. background-color: #eaeaea; }
  7107. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7108. .x-nbr .x-tab-default-bottom {
  7109. padding: 0 !important;
  7110. border-width: 0 !important;
  7111. -webkit-border-radius: 0px;
  7112. -moz-border-radius: 0px;
  7113. -ms-border-radius: 0px;
  7114. -o-border-radius: 0px;
  7115. border-radius: 0px;
  7116. background-color: transparent;
  7117. background-position: 1100000px 1000404px; }
  7118. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7119. .x-nbr .x-tab-default-bottom-tl,
  7120. .x-nbr .x-tab-default-bottom-bl,
  7121. .x-nbr .x-tab-default-bottom-tr,
  7122. .x-nbr .x-tab-default-bottom-br,
  7123. .x-nbr .x-tab-default-bottom-tc,
  7124. .x-nbr .x-tab-default-bottom-bc,
  7125. .x-nbr .x-tab-default-bottom-ml,
  7126. .x-nbr .x-tab-default-bottom-mr {
  7127. zoom: 1;
  7128. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-corners.gif'); }
  7129. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7130. .x-nbr .x-tab-default-bottom-ml,
  7131. .x-nbr .x-tab-default-bottom-mr {
  7132. zoom: 1;
  7133. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-sides.gif');
  7134. background-position: 0 0; }
  7135. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7136. .x-nbr .x-tab-default-bottom-mc {
  7137. padding: 0 0px 0px 0px; }
  7138. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7139. .x-strict .x-ie7 .x-tab-default-bottom-tl,
  7140. .x-strict .x-ie7 .x-tab-default-bottom-bl {
  7141. position: relative;
  7142. right: 0; }
  7143. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7144. .x-tab {
  7145. z-index: 1;
  7146. margin: 0 0 0 2px;
  7147. display: inline-block;
  7148. zoom: 1;
  7149. *display: inline;
  7150. white-space: nowrap;
  7151. height: 20px;
  7152. border-color: #b5b5b5;
  7153. cursor: pointer;
  7154. cursor: hand; }
  7155. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7156. .x-tab button {
  7157. cursor: pointer;
  7158. cursor: hand; }
  7159. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7160. .x-tab em {
  7161. display: block;
  7162. padding: 0 6px;
  7163. line-height: 1px; }
  7164. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7165. .x-tab button {
  7166. background: none;
  7167. border: 0;
  7168. padding: 0;
  7169. margin: 0;
  7170. -webkit-appearance: none;
  7171. font-size: 11px;
  7172. font-weight: bold;
  7173. font-family: tahoma, arial, verdana, sans-serif;
  7174. color: #6f6f6f;
  7175. outline: 0 none;
  7176. overflow-x: visible; }
  7177. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7178. .x-tab button::-moz-focus-inner {
  7179. border: 0;
  7180. padding: 0; }
  7181. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7182. .x-tab button .x-tab-inner {
  7183. background-color: transparent;
  7184. background-repeat: no-repeat;
  7185. background-position: 0 -2px;
  7186. display: block;
  7187. text-align: center;
  7188. white-space: nowrap;
  7189. text-overflow: ellipsis;
  7190. -o-text-overflow: ellipsis;
  7191. overflow: hidden; }
  7192. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7193. .x-tab img {
  7194. display: none; }
  7195. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7196. .x-border-box .x-tab-default-top {
  7197. height: 21px; }
  7198. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7199. .x-border-box .x-tab-default-bottom {
  7200. height: 21px; }
  7201. /* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7202. * html .x-ie .x-tab button {
  7203. width: 1px; }
  7204. /* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7205. .x-strict .x-ie6 .x-tab .x-frame-mc,
  7206. .x-strict .x-ie7 .x-tab .x-frame-mc {
  7207. height: 100%; }
  7208. /* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7209. .x-ie .x-tab-active button:active {
  7210. position: relative;
  7211. top: -1px;
  7212. left: -1px; }
  7213. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7214. .x-tab-default-top {
  7215. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7216. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7217. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7218. border-bottom: 1px solid #d0d0d0 !important; }
  7219. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7220. .x-tab-default-top em {
  7221. padding-bottom: 3px; }
  7222. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7223. .x-tab-default-top button,
  7224. .x-tab-default-top .x-tab-inner {
  7225. height: 13px;
  7226. line-height: 13px; }
  7227. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7228. .x-safari4 .x-tab-default-top .x-tab-inner,
  7229. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  7230. line-height: 11px; }
  7231. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7232. .x-nbr .x-tab-default-top {
  7233. border-bottom-width: 1px !important; }
  7234. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7235. .x-tab-default-top-active {
  7236. border-bottom-color: #eaeaea !important; }
  7237. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7238. .x-tab-default-bottom {
  7239. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7240. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7241. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7242. border-top: 1px solid #d0d0d0 !important;
  7243. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7244. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7245. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  7246. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7247. .x-tab-default-bottom em {
  7248. padding-top: 3px; }
  7249. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7250. .x-tab-default-bottom button,
  7251. .x-tab-default-bottom .x-tab-inner {
  7252. height: 13px;
  7253. line-height: 13px; }
  7254. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7255. .x-nbr .x-tab-default-bottom {
  7256. border-top-width: 1px !important; }
  7257. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7258. .x-tab-default-bottom-active {
  7259. border-top-color: #eaeaea !important; }
  7260. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7261. .x-tab-default-disabled {
  7262. cursor: default;
  7263. border-color: #cec7c7;
  7264. background-image: none;
  7265. background-color: #e7dfdf;
  7266. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7267. background-image: -webkit-linear-gradient(top, #e7dfdf, #f2e3e4);
  7268. background-image: -moz-linear-gradient(top, #e7dfdf, #f2e3e4);
  7269. background-image: -o-linear-gradient(top, #e7dfdf, #f2e3e4);
  7270. background-image: -ms-linear-gradient(top, #e7dfdf, #f2e3e4);
  7271. background-image: linear-gradient(top, #e7dfdf, #f2e3e4); }
  7272. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7273. .x-tab-default-disabled button {
  7274. color: #c3b3b3 !important; }
  7275. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7276. .x-tab-icon-text-left .x-tab-inner {
  7277. padding-left: 20px; }
  7278. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7279. .x-tab button {
  7280. position: relative; }
  7281. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7282. .x-tab-icon {
  7283. position: absolute;
  7284. background-repeat: no-repeat;
  7285. background-position: 0 -1px;
  7286. top: 0;
  7287. left: 0;
  7288. right: auto;
  7289. bottom: 0;
  7290. width: 18px;
  7291. height: 18px; }
  7292. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7293. .x-strict .x-ie8 .x-tab button,
  7294. .x-strict .x-ie9 .x-tab button {
  7295. overflow-y: visible; }
  7296. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7297. .x-tab-default-disabled .x-tab-icon {
  7298. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7299. opacity: 0.5; }
  7300. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  7301. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7302. .x-tab-noicon .x-tab-icon {
  7303. display: none; }
  7304. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7305. .x-tab-top-over {
  7306. background-image: none;
  7307. background-color: #f2eeee;
  7308. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e6e6), color-stop(25%, #eeeaea), color-stop(45%, #f2eeee));
  7309. background-image: -webkit-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7310. background-image: -moz-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7311. background-image: -o-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7312. background-image: -ms-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7313. background-image: linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%); }
  7314. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7315. .x-tab-bottom-over {
  7316. background-image: none;
  7317. background-color: #f2eeee;
  7318. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e7e6e6), color-stop(25%, #eeeaea), color-stop(45%, #f2eeee));
  7319. background-image: -webkit-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7320. background-image: -moz-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7321. background-image: -o-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7322. background-image: -ms-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7323. background-image: linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%); }
  7324. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7325. .x-tab-active {
  7326. z-index: 3; }
  7327. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7328. .x-tab-active button {
  7329. color: #333333; }
  7330. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7331. .x-tab-top-active {
  7332. background-image: none;
  7333. background-color: #eaeaea;
  7334. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea));
  7335. background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
  7336. background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
  7337. background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
  7338. background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
  7339. background-image: linear-gradient(top, #ffffff, #eaeaea); }
  7340. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7341. .x-tab-bottom-active {
  7342. background-image: none;
  7343. background-color: #eaeaea;
  7344. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea));
  7345. background-image: -webkit-linear-gradient(bottom, #ffffff, #eaeaea);
  7346. background-image: -moz-linear-gradient(bottom, #ffffff, #eaeaea);
  7347. background-image: -o-linear-gradient(bottom, #ffffff, #eaeaea);
  7348. background-image: -ms-linear-gradient(bottom, #ffffff, #eaeaea);
  7349. background-image: linear-gradient(bottom, #ffffff, #eaeaea); }
  7350. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7351. .x-tab-disabled {
  7352. border-color: #cec7c7; }
  7353. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7354. .x-tab-disabled button {
  7355. color: #c3b3b3; }
  7356. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7357. .x-tab-top-disabled {
  7358. background-image: none;
  7359. background: transparent;
  7360. background-image: none;
  7361. background-color: #e7dfdf;
  7362. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7363. background-image: -webkit-linear-gradient(top, #e7dfdf, #f2e3e4);
  7364. background-image: -moz-linear-gradient(top, #e7dfdf, #f2e3e4);
  7365. background-image: -o-linear-gradient(top, #e7dfdf, #f2e3e4);
  7366. background-image: -ms-linear-gradient(top, #e7dfdf, #f2e3e4);
  7367. background-image: linear-gradient(top, #e7dfdf, #f2e3e4); }
  7368. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7369. .x-tab-bottom-disabled {
  7370. background-image: none;
  7371. background: transparent;
  7372. background-image: none;
  7373. background-color: #e7dfdf;
  7374. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7375. background-image: -webkit-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7376. background-image: -moz-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7377. background-image: -o-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7378. background-image: -ms-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7379. background-image: linear-gradient(bottom, #e7dfdf, #f2e3e4); }
  7380. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7381. .x-nlg .x-tab-top {
  7382. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-bg.gif'); }
  7383. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7384. .x-nlg .x-tab-bottom {
  7385. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-bg.gif'); }
  7386. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7387. .x-nlg .x-tab-top-over {
  7388. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-bg.gif'); }
  7389. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7390. .x-nlg .x-tab-bottom-over {
  7391. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-bg.gif'); }
  7392. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7393. .x-nlg .x-tab-top-active {
  7394. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-bg.gif'); }
  7395. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7396. .x-nlg .x-tab-bottom-active {
  7397. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-bg.gif'); }
  7398. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7399. .x-nlg .x-tab-top-disabled {
  7400. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-bg.gif') !important; }
  7401. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7402. .x-nlg .x-tab-bottom-disabled {
  7403. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-bg.gif') !important; }
  7404. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7405. .x-tab-closable em {
  7406. padding-right: 14px; }
  7407. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7408. .x-tab-close-btn {
  7409. position: absolute;
  7410. top: 2px;
  7411. right: 2px;
  7412. width: 11px;
  7413. height: 11px;
  7414. font-size: 0;
  7415. line-height: 0;
  7416. text-indent: -999px;
  7417. background: no-repeat;
  7418. background-image: url('../../resources/themes/images/gray/tab/tab-default-close.gif');
  7419. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7420. opacity: 0.6; }
  7421. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7422. .x-nbr .x-tab-close-btn {
  7423. top: 0px;
  7424. right: 0px; }
  7425. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  7426. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7427. a.x-tab-close-btn:hover {
  7428. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7429. opacity: 1; }
  7430. /* Include the element name to raise the specificity to equal the :hover */
  7431. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7432. .x-tab-default-disabled a.x-tab-close-btn {
  7433. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  7434. opacity: 0.3; }
  7435. /* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7436. .x-nbr .x-tab-top-over .x-frame-tl,
  7437. .x-nbr .x-tab-top-over .x-frame-bl,
  7438. .x-nbr .x-tab-top-over .x-frame-tr,
  7439. .x-nbr .x-tab-top-over .x-frame-br,
  7440. .x-nbr .x-tab-top-over .x-frame-tc,
  7441. .x-nbr .x-tab-top-over .x-frame-bc {
  7442. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-corners.gif'); }
  7443. /* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7444. .x-nbr .x-tab-top-over .x-frame-ml,
  7445. .x-nbr .x-tab-top-over .x-frame-mr {
  7446. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-sides.gif'); }
  7447. /* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7448. .x-nbr .x-tab-top-over .x-frame-mc {
  7449. background-color: #f2eeee;
  7450. background-repeat: repeat-x;
  7451. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-bg.gif'); }
  7452. /* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7453. .x-nbr .x-tab-bottom-over .x-frame-tl,
  7454. .x-nbr .x-tab-bottom-over .x-frame-bl,
  7455. .x-nbr .x-tab-bottom-over .x-frame-tr,
  7456. .x-nbr .x-tab-bottom-over .x-frame-br,
  7457. .x-nbr .x-tab-bottom-over .x-frame-tc,
  7458. .x-nbr .x-tab-bottom-over .x-frame-bc {
  7459. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-corners.gif'); }
  7460. /* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7461. .x-nbr .x-tab-bottom-over .x-frame-ml,
  7462. .x-nbr .x-tab-bottom-over .x-frame-mr {
  7463. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-sides.gif'); }
  7464. /* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7465. .x-nbr .x-tab-bottom-over .x-frame-mc {
  7466. background-color: #f2eeee;
  7467. background-repeat: repeat-x;
  7468. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-bg.gif'); }
  7469. /* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7470. .x-nbr .x-tab-top-active .x-frame-tl,
  7471. .x-nbr .x-tab-top-active .x-frame-bl,
  7472. .x-nbr .x-tab-top-active .x-frame-tr,
  7473. .x-nbr .x-tab-top-active .x-frame-br,
  7474. .x-nbr .x-tab-top-active .x-frame-tc,
  7475. .x-nbr .x-tab-top-active .x-frame-bc {
  7476. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-corners.gif'); }
  7477. /* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7478. .x-nbr .x-tab-top-active .x-frame-ml,
  7479. .x-nbr .x-tab-top-active .x-frame-mr {
  7480. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-sides.gif'); }
  7481. /* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7482. .x-nbr .x-tab-top-active .x-frame-mc {
  7483. background-color: #eaeaea;
  7484. background-repeat: repeat-x;
  7485. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-bg.gif'); }
  7486. /* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7487. .x-nbr .x-tab-bottom-active .x-frame-tl,
  7488. .x-nbr .x-tab-bottom-active .x-frame-bl,
  7489. .x-nbr .x-tab-bottom-active .x-frame-tr,
  7490. .x-nbr .x-tab-bottom-active .x-frame-br,
  7491. .x-nbr .x-tab-bottom-active .x-frame-tc,
  7492. .x-nbr .x-tab-bottom-active .x-frame-bc {
  7493. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-corners.gif'); }
  7494. /* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7495. .x-nbr .x-tab-bottom-active .x-frame-ml,
  7496. .x-nbr .x-tab-bottom-active .x-frame-mr {
  7497. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-sides.gif'); }
  7498. /* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7499. .x-nbr .x-tab-bottom-active .x-frame-mc {
  7500. background-color: #eaeaea;
  7501. background-repeat: repeat-x;
  7502. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-bg.gif'); }
  7503. /* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7504. .x-nbr .x-tab-top-disabled .x-frame-tl,
  7505. .x-nbr .x-tab-top-disabled .x-frame-bl,
  7506. .x-nbr .x-tab-top-disabled .x-frame-tr,
  7507. .x-nbr .x-tab-top-disabled .x-frame-br,
  7508. .x-nbr .x-tab-top-disabled .x-frame-tc,
  7509. .x-nbr .x-tab-top-disabled .x-frame-bc {
  7510. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-corners.gif'); }
  7511. /* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7512. .x-nbr .x-tab-top-disabled .x-frame-ml,
  7513. .x-nbr .x-tab-top-disabled .x-frame-mr {
  7514. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-sides.gif'); }
  7515. /* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7516. .x-nbr .x-tab-top-disabled .x-frame-mc {
  7517. background-repeat: repeat-x;
  7518. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-bg.gif'); }
  7519. /* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7520. .x-nbr .x-tab-bottom-disabled .x-frame-tl,
  7521. .x-nbr .x-tab-bottom-disabled .x-frame-bl,
  7522. .x-nbr .x-tab-bottom-disabled .x-frame-tr,
  7523. .x-nbr .x-tab-bottom-disabled .x-frame-br,
  7524. .x-nbr .x-tab-bottom-disabled .x-frame-tc,
  7525. .x-nbr .x-tab-bottom-disabled .x-frame-bc {
  7526. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-corners.gif'); }
  7527. /* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7528. .x-nbr .x-tab-bottom-disabled .x-frame-ml,
  7529. .x-nbr .x-tab-bottom-disabled .x-frame-mr {
  7530. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-sides.gif'); }
  7531. /* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7532. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  7533. background-repeat: repeat-x;
  7534. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-bg.gif'); }
  7535. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7536. .x-autowidth-table table.x-grid-table {
  7537. table-layout: auto;
  7538. width: auto!important; }
  7539. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7540. .x-tree-no-lines .x-tree-elbow {
  7541. background-color: transparent; }
  7542. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7543. .x-tree-no-lines .x-tree-elbow-end {
  7544. background-color: transparent; }
  7545. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7546. .x-tree-no-lines .x-tree-elbow-line {
  7547. background-color: transparent; }
  7548. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7549. .x-tree-arrows .x-tree-elbow-plus {
  7550. background: transparent no-repeat 0 0; }
  7551. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7552. .x-tree-arrows .x-tree-elbow-end-plus {
  7553. background: transparent no-repeat 0 0; }
  7554. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7555. .x-tree-arrows .x-tree-elbow-end-minus {
  7556. background: transparent no-repeat -16px 0; }
  7557. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7558. .x-tree-arrows .x-tree-elbow-minus {
  7559. background: transparent no-repeat -16px 0; }
  7560. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7561. .x-tree-arrows .x-tree-elbow {
  7562. background-color: transparent !important; }
  7563. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7564. .x-tree-arrows .x-tree-elbow-end {
  7565. background-color: transparent !important; }
  7566. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7567. .x-tree-arrows .x-tree-elbow-line {
  7568. background-color: transparent !important; }
  7569. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7570. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  7571. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  7572. background-position: -32px 0; }
  7573. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7574. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  7575. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  7576. background-position: -48px 0; }
  7577. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7578. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7579. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7580. background-position: -16px 0; }
  7581. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7582. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  7583. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  7584. background-position: -48px 0; }
  7585. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7586. .x-tree-elbow-plus,
  7587. .x-tree-elbow-minus,
  7588. .x-tree-elbow-end-plus,
  7589. .x-tree-elbow-end-minus {
  7590. cursor: pointer; }
  7591. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7592. .x-tree-lines .x-tree-elbow {
  7593. background-image: url('../../resources/themes/images/gray/tree/elbow.gif'); }
  7594. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7595. .x-tree-lines .x-tree-elbow-end {
  7596. background-image: url('../../resources/themes/images/gray/tree/elbow-end.gif'); }
  7597. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7598. .x-tree-lines .x-tree-elbow-plus {
  7599. background-image: url('../../resources/themes/images/gray/tree/elbow-plus.gif'); }
  7600. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7601. .x-tree-lines .x-tree-elbow-end-plus {
  7602. background-image: url('../../resources/themes/images/gray/tree/elbow-end-plus.gif'); }
  7603. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7604. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  7605. background-image: url('../../resources/themes/images/gray/tree/elbow-minus.gif'); }
  7606. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7607. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7608. background-image: url('../../resources/themes/images/gray/tree/elbow-end-minus.gif'); }
  7609. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7610. .x-tree-lines .x-tree-elbow-line {
  7611. background-image: url('../../resources/themes/images/gray/tree/elbow-line.gif'); }
  7612. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7613. .x-tree-no-lines .x-tree-elbow-plus,
  7614. .x-tree-no-lines .x-tree-elbow-end-plus {
  7615. background-image: url('../../resources/themes/images/gray/tree/elbow-plus-nl.gif'); }
  7616. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7617. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7618. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7619. background-image: url('../../resources/themes/images/gray/tree/elbow-end-minus-nl.gif'); }
  7620. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7621. .x-tree-arrows .x-tree-elbow-plus,
  7622. .x-tree-arrows .x-tree-elbow-minus,
  7623. .x-tree-arrows .x-tree-elbow-end-plus,
  7624. .x-tree-arrows .x-tree-elbow-end-minus {
  7625. background-image: url('../../resources/themes/images/gray/tree/arrows.gif'); }
  7626. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7627. .x-tree-icon {
  7628. margin: 2px 3px 0 0; }
  7629. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7630. .x-grid-with-row-lines .x-tree-icon {
  7631. margin-top: 1px; }
  7632. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7633. .x-tree-elbow,
  7634. .x-tree-elbow-end,
  7635. .x-tree-elbow-plus,
  7636. .x-tree-elbow-end-plus,
  7637. .x-tree-elbow-empty,
  7638. .x-tree-elbow-line {
  7639. height: 20px;
  7640. width: 16px; }
  7641. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7642. .x-grid-with-row-lines .x-tree-elbow,
  7643. .x-grid-with-row-lines .x-tree-elbow-end,
  7644. .x-grid-with-row-lines .x-tree-elbow-plus,
  7645. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  7646. .x-grid-with-row-lines .x-tree-elbow-empty,
  7647. .x-grid-with-row-lines .x-tree-elbow-line {
  7648. height: 19px;
  7649. background-position: 0 -1px; }
  7650. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7651. .x-tree-icon-leaf {
  7652. width: 16px;
  7653. background-image: url('../../resources/themes/images/gray/tree/leaf.gif'); }
  7654. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7655. .x-tree-icon-parent {
  7656. width: 16px;
  7657. background-image: url('../../resources/themes/images/gray/tree/folder.gif'); }
  7658. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7659. .x-grid-tree-node-expanded .x-tree-icon-parent {
  7660. background-image: url('../../resources/themes/images/gray/tree/folder-open.gif'); }
  7661. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7662. .x-grid-rowbody {
  7663. padding: 0; }
  7664. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7665. .x-grid-cell-treecolumn .x-grid-cell-inner {
  7666. padding: 0;
  7667. line-height: 19px; }
  7668. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7669. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  7670. line-height: 17px; }
  7671. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7672. .x-tree-panel .x-grid-cell-inner {
  7673. cursor: pointer; }
  7674. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7675. .x-tree-panel .x-grid-cell-inner img {
  7676. display: inline-block;
  7677. vertical-align: top; }
  7678. /* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7679. .x-ie .x-tree-panel .x-tree-elbow,
  7680. .x-ie .x-tree-panel .x-tree-elbow-end,
  7681. .x-ie .x-tree-panel .x-tree-elbow-plus,
  7682. .x-ie .x-tree-panel .x-tree-elbow-end-plus,
  7683. .x-ie .x-tree-panel .x-tree-elbow-empty,
  7684. .x-ie .x-tree-panel .x-tree-elbow-line {
  7685. vertical-align: -6px; }
  7686. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7687. .x-grid-editor-on-text-node .x-form-text {
  7688. padding-left: 1px;
  7689. padding-right: 1px; }
  7690. /* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7691. .x-ie .x-grid-editor-on-text-node .x-form-text {
  7692. padding-left: 2px;
  7693. padding-right: 2px; }
  7694. /* line 228, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7695. .x-opera .x-grid-editor-on-text-node .x-form-text {
  7696. padding-left: 2px;
  7697. padding-right: 2px; }
  7698. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7699. .x-tree-checkbox {
  7700. margin: 4px 3px 0 0;
  7701. display: inline-block;
  7702. vertical-align: top;
  7703. width: 13px;
  7704. height: 13px;
  7705. background: no-repeat;
  7706. background-image: url('../../resources/themes/images/gray/form/checkbox.gif');
  7707. overflow: hidden;
  7708. padding: 0;
  7709. border: 0; }
  7710. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7711. .x-tree-checkbox::-moz-focus-inner {
  7712. padding: 0;
  7713. border: 0; }
  7714. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7715. .x-grid-with-row-lines .x-tree-checkbox {
  7716. margin-top: 3px; }
  7717. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7718. .x-tree-checkbox-checked {
  7719. background-position: 0 -13px; }
  7720. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7721. .x-tree-drop-ok-append .x-dd-drop-icon {
  7722. background-image: url('../../resources/themes/images/gray/tree/drop-append.gif'); }
  7723. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7724. .x-tree-drop-ok-above .x-dd-drop-icon {
  7725. background-image: url('../../resources/themes/images/gray/tree/drop-above.gif'); }
  7726. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7727. .x-tree-drop-ok-below .x-dd-drop-icon {
  7728. background-image: url('../../resources/themes/images/gray/tree/drop-below.gif'); }
  7729. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7730. .x-tree-drop-ok-between .x-dd-drop-icon {
  7731. background-image: url('../../resources/themes/images/gray/tree/drop-between.gif'); }
  7732. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7733. .x-grid-tree-loading .x-tree-icon {
  7734. background-image: url('../../resources/themes/images/gray/tree/loading.gif'); }
  7735. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7736. .x-tree-ddindicator {
  7737. height: 1px;
  7738. border-width: 1px 0px 0px;
  7739. border-style: dotted;
  7740. border-color: green; }
  7741. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7742. .x-grid-tree-loading span {
  7743. font-style: italic;
  7744. color: #444444; }
  7745. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7746. .x-tree-animator-wrap {
  7747. overflow: hidden; }
  7748. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7749. .x-surface {
  7750. display: -moz-inline-box;
  7751. -moz-box-orient: vertical;
  7752. display: inline-block;
  7753. vertical-align: middle;
  7754. *vertical-align: auto;
  7755. overflow: hidden; }
  7756. /* line 7, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  7757. .x-surface {
  7758. *display: inline; }
  7759. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7760. .rvml {
  7761. behavior: url(#default#VML); }
  7762. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7763. .x-surface tspan {
  7764. user-select: none;
  7765. -o-user-select: none;
  7766. -ms-user-select: none;
  7767. -moz-user-select: -moz-none;
  7768. -webkit-user-select: none;
  7769. cursor: default; }
  7770. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7771. .x-vml-sprite {
  7772. position: absolute;
  7773. left: 0;
  7774. top: 0;
  7775. width: 1px;
  7776. height: 1px; }
  7777. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7778. .x-vml-group {
  7779. position: absolute;
  7780. left: 0;
  7781. top: 0;
  7782. width: 1000px;
  7783. height: 1000px; }
  7784. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7785. .x-vml-measure-span {
  7786. position: absolute;
  7787. left: -9999em;
  7788. top: -9999em;
  7789. padding: 0;
  7790. margin: 0;
  7791. display: inline; }
  7792. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7793. .x-vml-base {
  7794. position: relative;
  7795. top: 0;
  7796. left: 0;
  7797. overflow: hidden;
  7798. display: inline-block; }
  7799. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7800. .x-vml-base {
  7801. position: relative;
  7802. top: 0;
  7803. left: 0;
  7804. overflow: hidden;
  7805. display: inline-block; }
  7806. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7807. svg, vml {
  7808. overflow: hidden; }
  7809. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  7810. .x-viewport, .x-viewport body {
  7811. margin: 0;
  7812. padding: 0;
  7813. border: 0 none;
  7814. overflow: hidden;
  7815. height: 100%;
  7816. position: static; }
  7817. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7818. .x-dd-drag-proxy {
  7819. z-index: 1000000!important; }
  7820. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7821. .x-dd-drag-repair .x-dd-drag-ghost {
  7822. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7823. opacity: 0.6; }
  7824. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7825. .x-dd-drag-repair .x-dd-drop-icon {
  7826. display: none; }
  7827. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7828. .x-dd-drag-ghost {
  7829. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  7830. opacity: 0.85;
  7831. padding: 5px;
  7832. padding-left: 20px;
  7833. white-space: nowrap;
  7834. color: #000;
  7835. font: normal 11px tahoma, arial, verdana, sans-serif;
  7836. border: 1px solid;
  7837. border-color: #ddd #bbb #bbb #ddd;
  7838. background-color: #fff; }
  7839. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7840. .x-dd-drop-icon {
  7841. position: absolute;
  7842. top: 3px;
  7843. left: 3px;
  7844. display: block;
  7845. width: 16px;
  7846. height: 16px;
  7847. background-color: transparent;
  7848. background-position: center;
  7849. background-repeat: no-repeat;
  7850. z-index: 1; }
  7851. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7852. .x-view-selector {
  7853. position: absolute;
  7854. left: 0;
  7855. top: 0;
  7856. width: 0;
  7857. background-color: #c3daf9;
  7858. border: 1px dotted #3399bb;
  7859. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7860. opacity: 0.5;
  7861. zoom: 1; }
  7862. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7863. .x-dd-drop-nodrop .x-dd-drop-icon {
  7864. background-image: url('../../resources/themes/images/gray/dd/drop-no.gif'); }
  7865. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7866. .x-dd-drop-ok .x-dd-drop-icon {
  7867. background-image: url('../../resources/themes/images/gray/dd/drop-yes.gif'); }
  7868. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7869. .x-dd-drop-ok-add .x-dd-drop-icon {
  7870. background-image: url('../../resources/themes/images/gray/dd/drop-add.gif'); }
  7871. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7872. .x-resizable-handle {
  7873. position: absolute;
  7874. z-index: 100;
  7875. font-size: 1px;
  7876. line-height: 6px;
  7877. overflow: hidden;
  7878. zoom: 1;
  7879. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7880. opacity: 0;
  7881. background-color: #fff; }
  7882. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7883. .x-collapsed .x-resizable-handle {
  7884. display: none; }
  7885. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7886. .x-resizable-handle-east {
  7887. width: 6px;
  7888. height: 100%;
  7889. right: 0;
  7890. top: 0; }
  7891. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7892. .x-resizable-over .x-resizable-handle-east {
  7893. cursor: e-resize; }
  7894. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7895. .x-resizable-handle-south {
  7896. width: 100%;
  7897. height: 6px;
  7898. left: 0;
  7899. bottom: 0; }
  7900. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7901. .x-resizable-over .x-resizable-handle-south {
  7902. cursor: s-resize; }
  7903. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7904. .x-resizable-handle-west {
  7905. width: 6px;
  7906. height: 100%;
  7907. left: 0;
  7908. top: 0; }
  7909. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7910. .x-resizable-over .x-resizable-handle-west {
  7911. cursor: w-resize; }
  7912. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7913. .x-resizable-handle-north {
  7914. width: 100%;
  7915. height: 6px;
  7916. left: 0;
  7917. top: 0; }
  7918. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7919. .x-resizable-over .x-resizable-handle-north {
  7920. cursor: n-resize; }
  7921. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7922. .x-resizable-handle-southeast {
  7923. width: 6px;
  7924. height: 6px;
  7925. right: 0;
  7926. bottom: 0;
  7927. z-index: 101; }
  7928. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7929. .x-resizable-over .x-resizable-handle-southeast {
  7930. cursor: se-resize; }
  7931. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7932. .x-resizable-handle-northwest {
  7933. width: 6px;
  7934. height: 6px;
  7935. left: 0;
  7936. top: 0;
  7937. z-index: 101; }
  7938. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7939. .x-resizable-over .x-resizable-handle-northwest {
  7940. cursor: nw-resize; }
  7941. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7942. .x-resizable-handle-northeast {
  7943. width: 6px;
  7944. height: 6px;
  7945. right: 0;
  7946. top: 0;
  7947. z-index: 101; }
  7948. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7949. .x-resizable-over .x-resizable-handle-northeast {
  7950. cursor: ne-resize; }
  7951. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7952. .x-resizable-handle-southwest {
  7953. width: 6px;
  7954. height: 6px;
  7955. left: 0;
  7956. bottom: 0;
  7957. z-index: 101; }
  7958. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7959. .x-resizable-over .x-resizable-handle-southwest {
  7960. cursor: sw-resize; }
  7961. /*IE rounding error*/
  7962. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7963. .x-ie .x-resizable-handle-east {
  7964. margin-right: -1px;
  7965. /*IE rounding error*/ }
  7966. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7967. .x-ie .x-resizable-handle-south {
  7968. margin-bottom: -1px; }
  7969. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7970. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  7971. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7972. opacity: 1; }
  7973. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7974. .x-window .x-window-handle {
  7975. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7976. opacity: 0; }
  7977. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7978. .x-window-collapsed .x-window-handle {
  7979. display: none; }
  7980. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7981. .x-resizable-proxy {
  7982. border: 1px dashed #3b5a82;
  7983. position: absolute;
  7984. left: 0;
  7985. top: 0;
  7986. overflow: hidden;
  7987. z-index: 50000; }
  7988. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7989. .x-resizable-overlay {
  7990. position: absolute;
  7991. left: 0;
  7992. top: 0;
  7993. width: 100%;
  7994. height: 100%;
  7995. display: none;
  7996. z-index: 200000;
  7997. background-color: #fff;
  7998. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7999. opacity: 0; }
  8000. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8001. .x-resizable-over .x-resizable-handle-east,
  8002. .x-resizable-over .x-resizable-handle-west,
  8003. .x-resizable-pinned .x-resizable-handle-east,
  8004. .x-resizable-pinned .x-resizable-handle-west {
  8005. background-position: left;
  8006. background-image: url('../../resources/themes/images/gray/sizer/e-handle.gif'); }
  8007. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8008. .x-resizable-over .x-resizable-handle-south,
  8009. .x-resizable-over .x-resizable-handle-north,
  8010. .x-resizable-pinned .x-resizable-handle-south,
  8011. .x-resizable-pinned .x-resizable-handle-north {
  8012. background-position: top;
  8013. background-image: url('../../resources/themes/images/gray/sizer/s-handle.gif'); }
  8014. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8015. .x-resizable-over .x-resizable-handle-southeast,
  8016. .x-resizable-pinned .x-resizable-handle-southeast {
  8017. background-position: top left;
  8018. background-image: url('../../resources/themes/images/gray/sizer/se-handle.gif'); }
  8019. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8020. .x-resizable-over .x-resizable-handle-northwest,
  8021. .x-resizable-pinned .x-resizable-handle-northwest {
  8022. background-position: bottom right;
  8023. background-image: url('../../resources/themes/images/gray/sizer/nw-handle.gif'); }
  8024. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8025. .x-resizable-over .x-resizable-handle-northeast,
  8026. .x-resizable-pinned .x-resizable-handle-northeast {
  8027. background-position: bottom left;
  8028. background-image: url('../../resources/themes/images/gray/sizer/ne-handle.gif'); }
  8029. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8030. .x-resizable-over .x-resizable-handle-southwest,
  8031. .x-resizable-pinned .x-resizable-handle-southwest {
  8032. background-position: top right;
  8033. background-image: url('../../resources/themes/images/gray/sizer/sw-handle.gif'); }
  8034. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8035. .x-splitter .x-collapse-el {
  8036. position: absolute;
  8037. cursor: pointer;
  8038. background-color: transparent;
  8039. background-repeat: no-repeat !important; }
  8040. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8041. .x-layout-split-left,
  8042. .x-layout-split-right {
  8043. top: 50%;
  8044. margin-top: -17px;
  8045. width: 5px;
  8046. height: 35px; }
  8047. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8048. .x-layout-split-top,
  8049. .x-layout-split-bottom {
  8050. left: 50%;
  8051. width: 35px;
  8052. height: 5px;
  8053. margin-left: -17px; }
  8054. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8055. .x-layout-split-left {
  8056. background: no-repeat top right;
  8057. background-image: url('../../resources/themes/images/gray/util/splitter/mini-left.gif'); }
  8058. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8059. .x-layout-split-right {
  8060. background: no-repeat top left;
  8061. background-image: url('../../resources/themes/images/gray/util/splitter/mini-right.gif'); }
  8062. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8063. .x-layout-split-top {
  8064. background: no-repeat top left;
  8065. background-image: url('../../resources/themes/images/gray/util/splitter/mini-top.gif'); }
  8066. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8067. .x-layout-split-bottom {
  8068. background: no-repeat top left;
  8069. background-image: url('../../resources/themes/images/gray/util/splitter/mini-bottom.gif'); }
  8070. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8071. .x-splitter-collapsed .x-layout-split-left {
  8072. background: no-repeat top left;
  8073. background-image: url('../../resources/themes/images/gray/util/splitter/mini-right.gif'); }
  8074. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8075. .x-splitter-collapsed .x-layout-split-right {
  8076. background: no-repeat top right;
  8077. background-image: url('../../resources/themes/images/gray/util/splitter/mini-left.gif'); }
  8078. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8079. .x-splitter-collapsed .x-layout-split-top {
  8080. background: no-repeat top left;
  8081. background-image: url('../../resources/themes/images/gray/util/splitter/mini-bottom.gif'); }
  8082. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8083. .x-splitter-collapsed .x-layout-split-bottom {
  8084. background: no-repeat top left;
  8085. background-image: url('../../resources/themes/images/gray/util/splitter/mini-top.gif'); }
  8086. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8087. .x-splitter-horizontal {
  8088. cursor: e-resize;
  8089. cursor: row-resize;
  8090. font-size: 1px; }
  8091. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8092. .x-splitter-vertical {
  8093. cursor: e-resize;
  8094. cursor: col-resize;
  8095. font-size: 1px; }
  8096. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8097. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  8098. cursor: default; }
  8099. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8100. .x-splitter-active {
  8101. z-index: 4;
  8102. font-size: 1px;
  8103. background-color: #b4b4b4;
  8104. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  8105. opacity: 0.8; }
  8106. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8107. .x-splitter-active .x-collapse-el {
  8108. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  8109. opacity: 0.3; }
  8110. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8111. .x-proxy-el {
  8112. position: absolute;
  8113. background: #b4b4b4;
  8114. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  8115. opacity: 0.8; }
  8116. /*
  8117. * Dock Layouts
  8118. * @todo move this somewhere else?
  8119. */
  8120. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8121. .x-docked {
  8122. position: absolute !important;
  8123. z-index: 1; }
  8124. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8125. .x-docked-top {
  8126. border-bottom-width: 0 !important; }
  8127. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8128. .x-docked-bottom {
  8129. border-top-width: 0 !important; }
  8130. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8131. .x-docked-left {
  8132. border-right-width: 0 !important; }
  8133. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8134. .x-docked-right {
  8135. border-left-width: 0 !important; }
  8136. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8137. .x-docked-noborder-top {
  8138. border-top-width: 0 !important; }
  8139. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8140. .x-docked-noborder-right {
  8141. border-right-width: 0 !important; }
  8142. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8143. .x-docked-noborder-bottom {
  8144. border-bottom-width: 0 !important; }
  8145. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8146. .x-docked-noborder-left {
  8147. border-left-width: 0 !important; }
  8148. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8149. .x-box-inner {
  8150. overflow: hidden;
  8151. zoom: 1;
  8152. position: relative;
  8153. left: 0;
  8154. top: 0; }
  8155. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8156. .x-box-item {
  8157. position: absolute !important;
  8158. left: 0;
  8159. top: 0; }
  8160. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8161. .x-rtl .x-box-item {
  8162. right: 0;
  8163. left: auto; }
  8164. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8165. .x-box-layout-ct,
  8166. .x-border-layout-ct {
  8167. overflow: hidden;
  8168. zoom: 1; }
  8169. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8170. .x-border-layout-ct {
  8171. background-color: #e0e0e0;
  8172. position: relative; }
  8173. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8174. .x-overflow-hidden {
  8175. overflow: hidden !important; }
  8176. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8177. .x-inline-children > * {
  8178. display: inline-block !important; }
  8179. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8180. .x-abs-layout-ct {
  8181. position: relative; }
  8182. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8183. .x-abs-layout-item {
  8184. position: absolute !important; }
  8185. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8186. .x-fit-item {
  8187. position: relative; }
  8188. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8189. .x-border-region-slide-in {
  8190. z-index: 5; }
  8191. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8192. .x-region-collapsed-placeholder {
  8193. z-index: 4; }
  8194. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8195. .x-accordion-hd .x-panel-header-text {
  8196. color: black;
  8197. font-weight: normal; }
  8198. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8199. .x-accordion-hd {
  8200. background: #e5e5e5 !important;
  8201. -webkit-box-shadow: inset 0 0 0 0 #e5e5e5;
  8202. -moz-box-shadow: inset 0 0 0 0 #e5e5e5;
  8203. box-shadow: inset 0 0 0 0 #e5e5e5; }
  8204. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8205. .x-accordion-hd .x-tool-collapse-top,
  8206. .x-accordion-hd .x-tool-collapse-right,
  8207. .x-accordion-hd .x-tool-collapse-bottom,
  8208. .x-accordion-hd .x-tool-collapse-left {
  8209. background-position: 0 -255px; }
  8210. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8211. .x-accordion-hd .x-tool-expand-top,
  8212. .x-accordion-hd .x-tool-expand-right,
  8213. .x-accordion-hd .x-tool-expand-bottom,
  8214. .x-accordion-hd .x-tool-expand-left {
  8215. background-position: 0 -240px; }
  8216. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8217. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  8218. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  8219. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  8220. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  8221. background-position: -15px -255px; }
  8222. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8223. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  8224. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  8225. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  8226. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  8227. background-position: -15px -240px; }
  8228. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8229. .x-accordion-hd {
  8230. border-width: 1px 0 1px 0 !important;
  8231. padding: 4px 5px 5px 5px;
  8232. border-top-color: #ececec !important; }
  8233. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8234. .x-accordion-body {
  8235. border-width: 0 !important; }
  8236. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8237. .x-accordion-hd-sibling-expanded {
  8238. border-top-color: #d0d0d0 !important;
  8239. -webkit-box-shadow: inset 0 1px 0 0 #ececec;
  8240. -moz-box-shadow: inset 0 1px 0 0 #ececec;
  8241. box-shadow: inset 0 1px 0 0 #ececec; }
  8242. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8243. .x-accordion-hd-last-collapsed {
  8244. border-bottom-color: #e5e5e5 !important; }
  8245. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8246. .x-frame-tl,
  8247. .x-frame-tr,
  8248. .x-frame-tc,
  8249. .x-frame-bl,
  8250. .x-frame-br,
  8251. .x-frame-bc {
  8252. overflow: hidden;
  8253. background-repeat: no-repeat; }
  8254. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8255. .x-frame-tc,
  8256. .x-frame-bc {
  8257. background-repeat: repeat-x; }
  8258. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8259. .x-frame-mc {
  8260. position: relative;
  8261. background-repeat: repeat-x;
  8262. overflow: hidden; }
  8263. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8264. .x-box-scroller-left {
  8265. float: left;
  8266. height: 100%;
  8267. z-index: 5; }
  8268. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8269. .x-box-scroller-left .x-toolbar-scroll-left,
  8270. .x-box-scroller-left .x-tabbar-scroll-left {
  8271. width: 18px;
  8272. position: relative;
  8273. cursor: pointer;
  8274. height: 20px;
  8275. background: transparent no-repeat -18px 0;
  8276. background-image: url('../../resources/themes/images/gray/tab-bar/scroll-left.gif'); }
  8277. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8278. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  8279. background-position: 0 0; }
  8280. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8281. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  8282. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  8283. background-position: -18px 0;
  8284. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  8285. opacity: 0.5;
  8286. cursor: default; }
  8287. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8288. .x-box-scroller-left .x-toolbar-scroll-left {
  8289. background-image: url('../../resources/themes/images/gray/toolbar/scroll-left.gif');
  8290. background-position: -14px 0; }
  8291. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8292. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  8293. background-position: 0 0; }
  8294. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8295. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  8296. background-position: -14px 0; }
  8297. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8298. .x-box-scroller-left .x-toolbar-scroll-left {
  8299. width: 14px;
  8300. height: 22px;
  8301. border-bottom: 1px solid #8db2e3; }
  8302. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8303. .x-horizontal-box-overflow-body {
  8304. float: left; }
  8305. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8306. .x-box-scroller-right {
  8307. float: right;
  8308. height: 100%;
  8309. z-index: 5; }
  8310. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8311. .x-box-scroller-right .x-toolbar-scroll-right,
  8312. .x-box-scroller-right .x-tabbar-scroll-right {
  8313. width: 18px;
  8314. position: relative;
  8315. cursor: pointer;
  8316. height: 20px;
  8317. background: transparent no-repeat 0 0;
  8318. background-image: url('../../resources/themes/images/gray/tab-bar/scroll-right.gif'); }
  8319. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8320. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  8321. background-position: -18px 0; }
  8322. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8323. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  8324. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  8325. background-position: 0 0;
  8326. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  8327. opacity: 0.5;
  8328. cursor: default; }
  8329. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8330. .x-box-scroller-right .x-toolbar-scroll-right {
  8331. background-image: url('../../resources/themes/images/gray/toolbar/scroll-right.gif'); }
  8332. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8333. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  8334. background-position: -14px 0; }
  8335. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8336. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  8337. background-position: 0 0; }
  8338. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8339. .x-box-scroller-right .x-toolbar-scroll-right {
  8340. width: 14px;
  8341. height: 22px;
  8342. border-bottom: 1px solid #8db2e3; }
  8343. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8344. .x-box-scroller-top .x-box-scroller {
  8345. line-height: 0;
  8346. font-size: 0; }
  8347. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8348. .x-box-scroller-top .x-menu-scroll-top {
  8349. background: transparent no-repeat center center;
  8350. background-image: url('../../resources/themes/images/gray/layout/mini-top.gif');
  8351. height: 8px;
  8352. cursor: pointer; }
  8353. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8354. .x-box-scroller-bottom .x-box-scroller {
  8355. line-height: 0;
  8356. font-size: 0; }
  8357. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8358. .x-box-scroller-bottom .x-menu-scroll-bottom {
  8359. background: transparent no-repeat center center;
  8360. background-image: url('../../resources/themes/images/gray/layout/mini-bottom.gif');
  8361. height: 8px;
  8362. cursor: pointer; }
  8363. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8364. .x-box-menu-right {
  8365. float: right;
  8366. padding-right: 2px; }
  8367. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8368. .x-column {
  8369. float: left; }
  8370. /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8371. .x-ie6 .x-column {
  8372. display: inline;
  8373. /*prevent IE6 double-margin bug*/ }
  8374. /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8375. .x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  8376. position: relative; }
  8377. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8378. .x-tool {
  8379. height: 15px; }
  8380. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8381. .x-tool img {
  8382. overflow: hidden;
  8383. width: 15px;
  8384. height: 15px;
  8385. cursor: pointer;
  8386. background-color: transparent;
  8387. background-repeat: no-repeat;
  8388. background-image: url('../../resources/themes/images/gray/tools/tool-sprites.gif');
  8389. margin: 0; }
  8390. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8391. .x-panel-header-horizontal .x-tool,
  8392. .x-window-header-horizontal .x-tool {
  8393. margin-left: 2px; }
  8394. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8395. .x-panel-header-vertical .x-tool,
  8396. .x-window-header-vertical .x-tool {
  8397. margin-top: 2px; }
  8398. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8399. .x-panel-header-vertical .x-tool-top,
  8400. .x-window-header-vertical .x-tool-top {
  8401. margin: 0 0 4px; }
  8402. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8403. .x-tool-placeholder {
  8404. visibility: hidden; }
  8405. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8406. .x-tool-toggle {
  8407. background-position: 0 -60px; }
  8408. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8409. .x-tool-over .x-tool-toggle {
  8410. background-position: -15px -60px; }
  8411. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8412. .x-panel-collapsed .x-tool-toggle,
  8413. .x-fieldset-collapsed .x-tool-toggle {
  8414. background-position: 0 -75px; }
  8415. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8416. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  8417. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  8418. background-position: -15px -75px; }
  8419. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8420. .x-tool-close {
  8421. background-position: 0 0; }
  8422. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8423. .x-tool-minimize {
  8424. background-position: 0 -15px; }
  8425. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8426. .x-tool-maximize {
  8427. background-position: 0 -30px; }
  8428. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8429. .x-tool-restore {
  8430. background-position: 0 -45px; }
  8431. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8432. .x-tool-gear {
  8433. background-position: 0 -90px; }
  8434. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8435. .x-tool-prev {
  8436. background-position: 0 -105px; }
  8437. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8438. .x-tool-next {
  8439. background-position: 0 -120px; }
  8440. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8441. .x-tool-pin {
  8442. background-position: 0 -135px; }
  8443. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8444. .x-tool-unpin {
  8445. background-position: 0 -150px; }
  8446. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8447. .x-tool-right {
  8448. background-position: 0 -165px; }
  8449. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8450. .x-tool-left {
  8451. background-position: 0 -180px; }
  8452. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8453. .x-tool-help {
  8454. background-position: 0 -300px; }
  8455. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8456. .x-tool-save {
  8457. background-position: 0 -285px; }
  8458. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8459. .x-tool-search {
  8460. background-position: 0 -270px; }
  8461. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8462. .x-tool-minus {
  8463. background-position: 0 -255px; }
  8464. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8465. .x-tool-plus {
  8466. background-position: 0 -240px; }
  8467. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8468. .x-tool-refresh {
  8469. background-position: 0 -225px; }
  8470. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8471. .x-tool-up {
  8472. background-position: 0 -210px; }
  8473. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8474. .x-tool-down {
  8475. background-position: 0 -195px; }
  8476. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8477. .x-tool-collapse {
  8478. background-position: 0 -345px; }
  8479. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8480. .x-tool-expand {
  8481. background-position: 0 -330px; }
  8482. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8483. .x-tool-print {
  8484. background-position: 0 -315px; }
  8485. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8486. .x-tool-expand-bottom,
  8487. .x-tool-collapse-bottom {
  8488. background-position: 0 -195px; }
  8489. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8490. .x-tool-expand-top,
  8491. .x-tool-collapse-top {
  8492. background-position: 0 -210px; }
  8493. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8494. .x-tool-expand-left,
  8495. .x-tool-collapse-left {
  8496. background-position: 0 -180px; }
  8497. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8498. .x-tool-expand-right,
  8499. .x-tool-collapse-right {
  8500. background-position: 0 -165px; }
  8501. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8502. .x-tool-over .x-tool-close {
  8503. background-position: -15px 0; }
  8504. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8505. .x-tool-over .x-tool-minimize {
  8506. background-position: -15px -15px; }
  8507. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8508. .x-tool-over .x-tool-maximize {
  8509. background-position: -15px -30px; }
  8510. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8511. .x-tool-over .x-tool-restore {
  8512. background-position: -15px -45px; }
  8513. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8514. .x-tool-over .x-tool-gear {
  8515. background-position: -15px -90px; }
  8516. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8517. .x-tool-over .x-tool-prev {
  8518. background-position: -15px -105px; }
  8519. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8520. .x-tool-over .x-tool-next {
  8521. background-position: -15px -120px; }
  8522. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8523. .x-tool-over .x-tool-pin {
  8524. background-position: -15px -135px; }
  8525. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8526. .x-tool-over .x-tool-unpin {
  8527. background-position: -15px -150px; }
  8528. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8529. .x-tool-over .x-tool-right {
  8530. background-position: -15px -165px; }
  8531. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8532. .x-tool-over .x-tool-left {
  8533. background-position: -15px -180px; }
  8534. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8535. .x-tool-over .x-tool-down {
  8536. background-position: -15px -195px; }
  8537. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8538. .x-tool-over .x-tool-up {
  8539. background-position: -15px -210px; }
  8540. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8541. .x-tool-over .x-tool-refresh {
  8542. background-position: -15px -225px; }
  8543. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8544. .x-tool-over .x-tool-plus {
  8545. background-position: -15px -240px; }
  8546. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8547. .x-tool-over .x-tool-minus {
  8548. background-position: -15px -255px; }
  8549. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8550. .x-tool-over .x-tool-search {
  8551. background-position: -15px -270px; }
  8552. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8553. .x-tool-over .x-tool-save {
  8554. background-position: -15px -285px; }
  8555. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8556. .x-tool-over .x-tool-help {
  8557. background-position: -15px -300px; }
  8558. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8559. .x-tool-over .x-tool-print {
  8560. background-position: -15px -315px; }
  8561. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8562. .x-tool-over .x-tool-expand {
  8563. background-position: -15px -330px; }
  8564. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8565. .x-tool-over .x-tool-collapse {
  8566. background-position: -15px -345px; }
  8567. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8568. .x-tool-over .x-tool-expand-bottom,
  8569. .x-tool-over .x-tool-collapse-bottom {
  8570. background-position: -15px -195px; }
  8571. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8572. .x-tool-over .x-tool-expand-top,
  8573. .x-tool-over .x-tool-collapse-top {
  8574. background-position: -15px -210px; }
  8575. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8576. .x-tool-over .x-tool-expand-left,
  8577. .x-tool-over .x-tool-collapse-left {
  8578. background-position: -15px -180px; }
  8579. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8580. .x-tool-over .x-tool-expand-right,
  8581. .x-tool-over .x-tool-collapse-right {
  8582. background-position: -15px -165px; }
  8583. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8584. .x-horizontal-scroller-present .x-grid-body {
  8585. border-bottom-width: 0px; }
  8586. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8587. .x-vertical-scroller-present .x-grid-body {
  8588. border-right-width: 0px; }
  8589. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8590. .x-scroller {
  8591. overflow: hidden; }
  8592. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8593. .x-scroller-vertical {
  8594. border: 1px solid #d0d0d0;
  8595. border-top-color: #c5c5c5; }
  8596. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8597. .x-scroller-horizontal {
  8598. border: 1px solid #d0d0d0; }
  8599. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8600. .x-vertical-scroller-present .x-scroller-horizontal {
  8601. border-right-width: 0px; }
  8602. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8603. .x-scroller-ct {
  8604. overflow: hidden;
  8605. position: absolute;
  8606. margin: 0;
  8607. padding: 0;
  8608. border: none;
  8609. left: 0px;
  8610. top: 0px;
  8611. /*
  8612. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  8613. perpendicular dimension and breaks the scroll as well as offsets it by the left
  8614. offset that we use to try and keep some size on this element. This works on all
  8615. browsers (including IE9).
  8616. */
  8617. box-sizing: content-box !important;
  8618. -ms-box-sizing: content-box !important;
  8619. -moz-box-sizing: content-box !important;
  8620. -webkit-box-sizing: content-box !important; }
  8621. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8622. .x-scroller-vertical .x-scroller-ct {
  8623. overflow-y: scroll; }
  8624. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8625. .x-scroller-horizontal .x-scroller-ct {
  8626. overflow-x: scroll; }
  8627. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8628. .x-html {
  8629. /* Begin bidirectionality settings (do not change) */ }
  8630. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8631. .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 {
  8632. display: block; }
  8633. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8634. .x-html li {
  8635. display: list-item;
  8636. list-style: disc; }
  8637. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8638. .x-html head {
  8639. display: none; }
  8640. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8641. .x-html table {
  8642. display: table; }
  8643. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8644. .x-html tr {
  8645. display: table-row; }
  8646. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8647. .x-html thead {
  8648. display: table-header-group; }
  8649. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8650. .x-html tbody {
  8651. display: table-row-group; }
  8652. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8653. .x-html tfoot {
  8654. display: table-footer-group; }
  8655. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8656. .x-html col {
  8657. display: table-column; }
  8658. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8659. .x-html colgroup {
  8660. display: table-column-group; }
  8661. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8662. .x-html td, .x-html th {
  8663. display: table-cell; }
  8664. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8665. .x-html caption {
  8666. display: table-caption; }
  8667. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8668. .x-html th {
  8669. font-weight: bolder;
  8670. text-align: center; }
  8671. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8672. .x-html caption {
  8673. text-align: center; }
  8674. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8675. .x-html body {
  8676. margin: 8px; }
  8677. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8678. .x-html h1 {
  8679. font-size: 2em;
  8680. margin: .67em 0; }
  8681. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8682. .x-html h2 {
  8683. font-size: 1.5em;
  8684. margin: .75em 0; }
  8685. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8686. .x-html h3 {
  8687. font-size: 1.17em;
  8688. margin: .83em 0; }
  8689. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8690. .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 {
  8691. margin: 1.12em 0; }
  8692. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8693. .x-html h5 {
  8694. font-size: .83em;
  8695. margin: 1.5em 0; }
  8696. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8697. .x-html h6 {
  8698. font-size: .75em;
  8699. margin: 1.67em 0; }
  8700. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8701. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  8702. font-weight: bolder; }
  8703. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8704. .x-html blockquote {
  8705. margin-left: 40px;
  8706. margin-right: 40px; }
  8707. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8708. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  8709. font-style: italic; }
  8710. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8711. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  8712. font-family: monospace; }
  8713. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8714. .x-html pre {
  8715. white-space: pre; }
  8716. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8717. .x-html button, .x-html textarea, .x-html input, .x-html select {
  8718. display: inline-block; }
  8719. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8720. .x-html big {
  8721. font-size: 1.17em; }
  8722. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8723. .x-html small, .x-html sub, .x-html sup {
  8724. font-size: .83em; }
  8725. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8726. .x-html sub {
  8727. vertical-align: sub; }
  8728. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8729. .x-html sup {
  8730. vertical-align: super; }
  8731. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8732. .x-html table {
  8733. border-spacing: 2px; }
  8734. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8735. .x-html thead, .x-html tbody, .x-html tfoot {
  8736. vertical-align: middle; }
  8737. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8738. .x-html td, .x-html th {
  8739. vertical-align: inherit; }
  8740. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8741. .x-html s, .x-html strike, .x-html del {
  8742. text-decoration: line-through; }
  8743. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8744. .x-html hr {
  8745. border: 1px inset; }
  8746. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8747. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  8748. margin-left: 40px; }
  8749. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8750. .x-html ul, .x-html menu, .x-html dir {
  8751. list-style-type: disc; }
  8752. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8753. .x-html ol {
  8754. list-style-type: decimal; }
  8755. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8756. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  8757. margin-top: 0;
  8758. margin-bottom: 0; }
  8759. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8760. .x-html u, .x-html ins {
  8761. text-decoration: underline; }
  8762. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8763. .x-html br:before {
  8764. content: "\A"; }
  8765. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8766. .x-html :before, .x-html :after {
  8767. white-space: pre-line; }
  8768. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8769. .x-html center {
  8770. text-align: center; }
  8771. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8772. .x-html :link, .x-html :visited {
  8773. text-decoration: underline; }
  8774. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8775. .x-html :focus {
  8776. outline: invert dotted thin; }
  8777. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8778. .x-html BDO[DIR="ltr"] {
  8779. direction: ltr;
  8780. unicode-bidi: bidi-override; }
  8781. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8782. .x-html BDO[DIR="rtl"] {
  8783. direction: rtl;
  8784. unicode-bidi: bidi-override; }