ext-standard-debug.css 287 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as
  7. published by the Free Software Foundation and appearing in the file LICENSE included in the
  8. packaging of this file.
  9. Please review the following information to ensure the GNU General Public License version 3.0
  10. requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  11. If you are unsure which license is appropriate for your use, please contact the sales department
  12. at http://www.sencha.com/contact.
  13. Build date: 2012-07-04 21:11:01 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
  14. */
  15. /**
  16. * @class Global_CSS
  17. *
  18. * Global CSS variables and mixins of Sencha Touch.
  19. */
  20. /**
  21. * @var {string} $prefix
  22. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  23. * JavaScript application.
  24. */
  25. /**
  26. * @var {string} $theme-name
  27. * The name of the theme. This must match the the output directory of the images.
  28. * (defaults to 'default')
  29. */
  30. /**
  31. * @var {boolean/string} $relative-image-path-for-uis
  32. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  33. * It can also be a string of the path value.
  34. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  35. */
  36. /**
  37. * @var {string} $font-family
  38. * The default font-family to be used throughout the theme.
  39. */
  40. /**
  41. * @var {string} $base-gradient
  42. * The base gradient to be used throughout the theme.
  43. */
  44. /**
  45. * @var {color} $base-color
  46. * The base color to be used throughout the theme.
  47. */
  48. /**
  49. * @var {boolean} $include-not-found-images
  50. * True to include files which are not found when compiling your SASS
  51. */
  52. /**
  53. * @var {boolean} $include-ie
  54. * True to include Internet Explorer specific rules
  55. */
  56. /**
  57. * @var {boolean} $include-ff
  58. * True to include Firefox specific rules
  59. */
  60. /**
  61. * @var {boolean} $include-chrome
  62. * True to include Chrome specific rules
  63. */
  64. /**
  65. * @var {boolean} $include-safari
  66. * True to include Safari specific rules
  67. */
  68. /**
  69. * @var {boolean} $include-opera
  70. * True to include Opera specific rules
  71. */
  72. /**
  73. * @var {boolean} $include-webkit
  74. * True to include Webkit specific rules
  75. */
  76. /**
  77. * @var {boolean} $compile-all
  78. * True to copile all CSS, even if above include rules are false
  79. */
  80. /**
  81. * @var {boolean} $scope-reset-css
  82. * True to scope the reset CSS within the $prefix variable.
  83. */
  84. /**
  85. * @var {color} $css-shadow-background-color
  86. * The base color for CSS shadows
  87. */
  88. /**
  89. * @var {color} $include-shadow-images
  90. * True to include all shadow images.
  91. */
  92. /**
  93. * @class Ext.form.field.Base
  94. */
  95. /**
  96. * @var {measurement} $form-field-height
  97. * Height for form fields.
  98. */
  99. /**
  100. * @var {measurement} $form-toolbar-field-height
  101. * Height for form fields in toolbar.
  102. */
  103. /**
  104. * @var {measurement} $form-error-icon-width
  105. * Width for form error icons.
  106. */
  107. /**
  108. * @var {measurement} $form-field-padding
  109. * Padding around form fields.
  110. */
  111. /**
  112. * @var {measurement} $form-field-font-size
  113. * Font size for form fields.
  114. */
  115. /**
  116. * @var {font-family} $form-field-font-family
  117. * Font family for form fields.
  118. */
  119. /**
  120. * @var {font-weight} $form-field-font-weight
  121. * Font weight for form fields.
  122. */
  123. /**
  124. * @var {font} $form-field-font
  125. * Font for form fields.
  126. */
  127. /**
  128. * @var {color} $form-field-color
  129. * Text color for form fields.
  130. */
  131. /**
  132. * @var {color} $form-field-empty-color
  133. * Text color for empty form fields.
  134. */
  135. /**
  136. * @var {color} $form-field-border-color
  137. * Border color for form fields.
  138. */
  139. /**
  140. * @var {measurement} $form-field-border-width
  141. * Border width for form fields.
  142. */
  143. /**
  144. * @var {color} $form-field-focus-border-color
  145. * Border color for focused form fields.
  146. */
  147. /**
  148. * @var {color} $form-field-invalid-border-color
  149. * Border color for invalid form fields.
  150. */
  151. /**
  152. * @var {color} $form-field-background-color
  153. * Background color for form fields.
  154. */
  155. /**
  156. * @var {string} $form-field-background-image
  157. * Background image for form fields.
  158. */
  159. /**
  160. * @var {color} $form-field-invalid-background-color
  161. * Background color for invalid form fields.
  162. */
  163. /**
  164. * @var {string} $form-field-invalid-background-image
  165. * Background image for invalid form fields.
  166. */
  167. /**
  168. * @var {background-repeat} $form-field-invalid-background-repeat
  169. * Background repeat for invalid form fields.
  170. */
  171. /**
  172. * @var {background-position} $form-field-invalid-background-position
  173. * Background position for invalid form fields.
  174. */
  175. /**
  176. * @class Ext.form.field.TextArea
  177. */
  178. /**
  179. * @class Ext.form.Label
  180. */
  181. /**
  182. * @class Ext.form.field.Checkbox
  183. */
  184. /**
  185. * @class Ext.form.field.Radio
  186. */
  187. /* Error messages */
  188. /**
  189. * @class Ext.form.field.Trigger
  190. */
  191. /**
  192. * @class Ext.form.FieldSet
  193. */
  194. /**
  195. * @class Ext.slider.Multi
  196. */
  197. /**
  198. * Creates a background gradient.
  199. *
  200. * @param {Color} $bg-color The background color of the gradient
  201. * @param {String/List} [$type] The type of gradient to be used. Can either
  202. * be a String which is a predefined gradient, or it can can be a list of
  203. * color_stops. If none is set, it will still set the `background-color`
  204. * to the $background-color.
  205. * @param {String} [$direction=top] The direction of the gradient. Can either be
  206. * `top` or `left`.
  207. * @member Global_CSS
  208. */
  209. /*
  210. * Method which inserts a full background-image property for a theme image.
  211. * It checks if the file exists and if it doesn't, it'll throw an error.
  212. * By default it will not include the background-image property if it is not found,
  213. * but this can be changed by changing the default value of $include-missing-images to
  214. * be true.
  215. */
  216. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  217. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  218. h4, h5, h6, pre, code, form, fieldset, legend,
  219. input, textarea, p, blockquote, th, td {
  220. margin: 0;
  221. padding: 0; }
  222. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  223. table {
  224. border-collapse: collapse;
  225. border-spacing: 0; }
  226. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  227. fieldset, img {
  228. border: 0; }
  229. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  230. address, caption, cite, code,
  231. dfn, em, strong, th, var {
  232. font-style: normal;
  233. font-weight: normal; }
  234. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  235. li {
  236. list-style: none; }
  237. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  238. caption, th {
  239. text-align: left; }
  240. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  241. h1, h2, h3, h4, h5, h6 {
  242. font-size: 100%; }
  243. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  244. q:before,
  245. q:after {
  246. content: ""; }
  247. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  248. abbr, acronym {
  249. border: 0;
  250. font-variant: normal; }
  251. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  252. sup {
  253. vertical-align: text-top; }
  254. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  255. sub {
  256. vertical-align: text-bottom; }
  257. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  258. input, textarea, select {
  259. font-family: inherit;
  260. font-size: inherit;
  261. font-weight: inherit; }
  262. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  263. *:focus {
  264. outline: none; }
  265. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  266. .x-border-box,
  267. .x-border-box * {
  268. box-sizing: border-box;
  269. -moz-box-sizing: border-box;
  270. -ms-box-sizing: border-box;
  271. -webkit-box-sizing: border-box; }
  272. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  273. .x-body {
  274. color: black;
  275. font-size: 12px;
  276. font-family: tahoma, arial, verdana, sans-serif; }
  277. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  278. .x-rtl {
  279. direction: rtl; }
  280. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  281. .x-ltr {
  282. direction: ltr; }
  283. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  284. .x-clear {
  285. overflow: hidden;
  286. clear: both;
  287. font-size: 0;
  288. line-height: 0;
  289. display: table; }
  290. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  291. .x-strict .x-ie7 .x-clear {
  292. height: 0;
  293. width: 0; }
  294. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  295. .x-layer {
  296. position: absolute !important;
  297. overflow: hidden;
  298. zoom: 1; }
  299. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  300. .x-shim {
  301. position: absolute;
  302. left: 0;
  303. top: 0;
  304. overflow: hidden;
  305. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  306. opacity: 0; }
  307. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  308. .x-hide-display {
  309. display: none !important; }
  310. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  311. .x-hide-visibility {
  312. visibility: hidden !important; }
  313. /* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
  314. .x-item-disabled .x-form-item-label,
  315. .x-item-disabled .x-form-field,
  316. .x-item-disabled .x-form-cb-label,
  317. .x-item-disabled .x-form-trigger {
  318. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  319. opacity: 0.3; }
  320. /* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
  321. .x-ie6 .x-item-disabled {
  322. filter: none; }
  323. /* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
  324. .x-hidden,
  325. .x-hide-offsets {
  326. display: block !important;
  327. visibility: hidden !important;
  328. position: absolute!important;
  329. left: -10000px !important;
  330. top: -10000px !important; }
  331. /* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
  332. .x-hide-nosize {
  333. height: 0!important;
  334. width: 0!important; }
  335. /* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
  336. .x-masked-relative {
  337. position: relative; }
  338. /* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
  339. .x-css-shadow {
  340. position: absolute;
  341. -moz-border-radius: 5px 5px;
  342. -webkit-border-radius: 5px 5px;
  343. -o-border-radius: 5px 5px;
  344. -ms-border-radius: 5px 5px;
  345. -khtml-border-radius: 5px 5px;
  346. border-radius: 5px 5px; }
  347. /* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
  348. .x-ie-shadow {
  349. background-color: #777;
  350. display: none;
  351. position: absolute;
  352. overflow: hidden;
  353. zoom: 1; }
  354. /* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
  355. .x-box-tl {
  356. background: transparent no-repeat 0 0;
  357. zoom: 1; }
  358. /* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
  359. .x-box-tc {
  360. height: 8px;
  361. background: transparent repeat-x 0 0;
  362. overflow: hidden; }
  363. /* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
  364. .x-box-tr {
  365. background: transparent no-repeat right -8px; }
  366. /* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
  367. .x-box-ml {
  368. background: transparent repeat-y 0;
  369. padding-left: 4px;
  370. overflow: hidden;
  371. zoom: 1; }
  372. /* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
  373. .x-box-mc {
  374. background: repeat-x 0 -16px;
  375. padding: 4px 10px; }
  376. /* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
  377. .x-box-mc h3 {
  378. margin: 0 0 4px 0;
  379. zoom: 1; }
  380. /* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
  381. .x-box-mr {
  382. background: transparent repeat-y right;
  383. padding-right: 4px;
  384. overflow: hidden; }
  385. /* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
  386. .x-box-bl {
  387. background: transparent no-repeat 0 -16px;
  388. zoom: 1; }
  389. /* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
  390. .x-box-bc {
  391. background: transparent repeat-x 0 -8px;
  392. height: 8px;
  393. overflow: hidden; }
  394. /* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
  395. .x-box-br {
  396. background: transparent no-repeat right -24px; }
  397. /* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
  398. .x-box-tl, .x-box-bl {
  399. padding-left: 8px;
  400. overflow: hidden; }
  401. /* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
  402. .x-box-tr, .x-box-br {
  403. padding-right: 8px;
  404. overflow: hidden; }
  405. /* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
  406. .x-box-tl {
  407. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  408. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  409. .x-box-tc {
  410. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  411. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  412. .x-box-tr {
  413. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  414. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  415. .x-box-ml {
  416. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  417. /* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
  418. .x-box-mc {
  419. background-color: #eee;
  420. background-image: url('../../resources/themes/images/default/box/tb.gif');
  421. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  422. color: #393939;
  423. font-size: 15px; }
  424. /* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
  425. .x-box-mc h3 {
  426. font-size: 18px;
  427. font-weight: bold; }
  428. /* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
  429. .x-box-mr {
  430. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  431. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  432. .x-box-bl {
  433. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  434. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  435. .x-box-bc {
  436. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  437. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  438. .x-box-br {
  439. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  440. /* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
  441. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  442. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  443. /* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
  444. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  445. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  446. /* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
  447. .x-box-blue .x-box-mc {
  448. background-color: #c3daf9; }
  449. /* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
  450. .x-box-blue .x-box-mc h3 {
  451. color: #17385b; }
  452. /* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
  453. .x-box-blue .x-box-ml {
  454. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  455. /* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
  456. .x-box-blue .x-box-mr {
  457. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  458. /* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
  459. .x-container {
  460. zoom: 1; }
  461. /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
  462. .x-container:before {
  463. content: "";
  464. clear: both;
  465. display: table; }
  466. /* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
  467. table.x-container:before,
  468. tbody.x-container:before,
  469. tr.x-container:before {
  470. display: none; }
  471. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  472. .x-focus-element {
  473. position: absolute;
  474. top: -10px;
  475. left: -10px;
  476. width: 0px;
  477. height: 0px; }
  478. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  479. .x-focus-frame {
  480. position: absolute;
  481. left: 0px;
  482. top: 0px;
  483. z-index: 100000000;
  484. width: 0px;
  485. height: 0px; }
  486. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  487. .x-focus-frame-top,
  488. .x-focus-frame-bottom,
  489. .x-focus-frame-left,
  490. .x-focus-frame-right {
  491. position: absolute;
  492. top: 0px;
  493. left: 0px; }
  494. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  495. .x-focus-frame-top,
  496. .x-focus-frame-bottom {
  497. border-top: solid 2px #15428b;
  498. height: 2px; }
  499. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  500. .x-focus-frame-left,
  501. .x-focus-frame-right {
  502. border-left: solid 2px #15428b;
  503. width: 2px; }
  504. /**
  505. * Creates the base structure of a BoundList.
  506. * @member Ext.view.BoundList
  507. */
  508. /**
  509. * Creates the base structure of an Ext.Button
  510. * @member Ext.button.Button
  511. */
  512. /**
  513. * Creates a visual theme of an Ext.Button
  514. * @member Ext.button.Button
  515. */
  516. /**
  517. * Creates the base structure of a button group.
  518. * @member Ext.container.ButtonGroup
  519. */
  520. /**
  521. * Creates a visual theme of a button group.
  522. * @member Ext.container.ButtonGroup
  523. */
  524. /**
  525. * Creates the base structure of a date picker.
  526. * @member Ext.picker.Date
  527. */
  528. /**
  529. * Creates base structure for Ext.picker.Color
  530. * @member Ext.picker.Color
  531. */
  532. /**
  533. * Creates the base structure of a Menu
  534. * @member Ext.menu.Menu
  535. */
  536. /**
  537. * Create the base structure of an Ext.Panel
  538. * @member Ext.panel.Panel
  539. */
  540. /**
  541. * Creates a visual theme for an Ext.Panel
  542. * @member Ext.panel.Panel
  543. */
  544. /**
  545. * Creates base structure for Toolbar
  546. * @member Ext.toolbar.Toolbar
  547. */
  548. /**
  549. * Creates a visual theme for an Toolbar.
  550. * @param {String} $ui The name of the UI
  551. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  552. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  553. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  554. * @member Ext.toolbar.Toolbar
  555. */
  556. /**
  557. * Creates the base structure of Ext.form.Panel.
  558. * @member Ext.form.Panel
  559. */
  560. /**
  561. * Creates the base structure of form field.
  562. * @member Ext.form.field.Base
  563. */
  564. /**
  565. * Creates the base structure of FieldSet.
  566. * @member Ext.form.FieldSet
  567. */
  568. /**
  569. * Creates the base structure of file field.
  570. * @member Ext.form.field.File
  571. */
  572. /**
  573. * Creates the base structure of checkbox field.
  574. * @member Ext.form.field.Checkbox
  575. */
  576. /**
  577. * Creates the base structure of CheckboxGroup.
  578. * @member Ext.form.CheckboxGroup
  579. */
  580. /**
  581. * Creates the base structure of trigger field.
  582. * @member Ext.form.field.Trigger
  583. */
  584. /**
  585. * Creates the base structure of HtmlEditor field.
  586. * @member Ext.form.field.HtmlEditor
  587. */
  588. /**
  589. * Creates the base structure of QuickTip.
  590. * @member Ext.tip.QuickTip
  591. */
  592. /**
  593. * Creates the base structure of an Ext.Window
  594. * @member Ext.window.Window
  595. */
  596. /**
  597. * Creates a visual theme for an Ext.Panel
  598. * @member Ext.window.Window
  599. */
  600. /**
  601. * Creates a visual theme for TabBar
  602. * @member Ext.tab.Bar
  603. */
  604. /**
  605. * Creates the base structure of a Tab.
  606. * @member Ext.tab.Tab
  607. */
  608. /**
  609. * Creates the base structure of slider.
  610. * @member Ext.slider.Multi
  611. */
  612. /**
  613. * Creates base structure for a Grid.
  614. * @member Ext.grid.Panel
  615. */
  616. /**
  617. * Creates the base structure of Tree.
  618. * @member Ext.tree.Panel
  619. */
  620. /* Styles for Ext.LoadMask */
  621. /* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  622. .x-mask {
  623. z-index: 100;
  624. position: absolute;
  625. top: 0;
  626. left: 0;
  627. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  628. opacity: 0.5;
  629. width: 100%;
  630. height: 100%;
  631. zoom: 1;
  632. background: #cccccc; }
  633. /* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  634. .x-mask-msg {
  635. z-index: 20001;
  636. position: absolute;
  637. top: 0;
  638. left: 0;
  639. padding: 2px;
  640. border: 1px solid;
  641. border-color: #99bce8; }
  642. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  643. .x-mask-msg div {
  644. padding: 5px 10px 5px 25px;
  645. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  646. background-repeat: no-repeat;
  647. background-position: 5px center;
  648. cursor: wait;
  649. border: 1px solid #a3bad9;
  650. background-color: #eeeeee;
  651. color: #222222;
  652. font: normal 11px tahoma, arial, verdana, sans-serif; }
  653. /**
  654. * Creates the base structure of an Ext.ProgressBar
  655. * @member Ext.ProgressBar
  656. */
  657. /**
  658. * Creates a visual theme for an Ext.ProgressBar
  659. * @member Ext.ProgressBar
  660. */
  661. /**
  662. * Creates base structure for a Draw Component.
  663. * @member Ext.draw.Component
  664. */
  665. /**
  666. * Creates the base structure of Viewport.
  667. * @member Ext.container.Viewport
  668. */
  669. /**
  670. * W3C suggested default style sheet for HTML 4:
  671. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  672. *
  673. * @member Global_CSS
  674. */
  675. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  676. .x-boundlist {
  677. border-width: 1px;
  678. border-style: solid;
  679. border-color: #98c0f4;
  680. background: white; }
  681. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  682. .x-boundlist .x-toolbar {
  683. border-width: 1px 0 0 0; }
  684. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  685. .x-boundlist-item {
  686. padding: 2px;
  687. user-select: none;
  688. -o-user-select: none;
  689. -ms-user-select: none;
  690. -moz-user-select: -moz-none;
  691. -webkit-user-select: none;
  692. cursor: default;
  693. cursor: pointer;
  694. cursor: hand;
  695. position: relative;
  696. /*allow hover in IE on empty items*/
  697. border-width: 1px;
  698. border-style: dotted;
  699. border-color: white; }
  700. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  701. .x-boundlist-selected {
  702. background: #cbdaf0;
  703. border-color: #8eabe4; }
  704. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  705. .x-boundlist-item-over {
  706. background: #dfe8f6;
  707. border-color: #a3bae9; }
  708. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  709. .x-boundlist-floating {
  710. border-top-width: 0; }
  711. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  712. .x-boundlist-above {
  713. border-top-width: 1px;
  714. border-bottom-width: 1px; }
  715. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  716. .x-btn {
  717. display: inline-block;
  718. zoom: 1;
  719. *display: inline;
  720. position: relative;
  721. cursor: pointer;
  722. cursor: hand;
  723. white-space: nowrap;
  724. vertical-align: middle;
  725. background-repeat: no-repeat; }
  726. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  727. .x-btn * {
  728. cursor: pointer;
  729. cursor: hand; }
  730. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  731. .x-btn em {
  732. background-repeat: no-repeat; }
  733. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  734. .x-btn em a {
  735. text-decoration: none;
  736. display: block;
  737. color: inherit;
  738. width: 100%;
  739. zoom: 1; }
  740. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  741. .x-btn button {
  742. width: 100%;
  743. display: block;
  744. margin: 0;
  745. padding: 0;
  746. border: 0;
  747. background: none;
  748. outline: 0 none;
  749. overflow: hidden;
  750. vertical-align: bottom;
  751. -webkit-appearance: none; }
  752. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  753. .x-btn button::-moz-focus-inner {
  754. border: 0;
  755. padding: 0; }
  756. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  757. .x-btn .x-btn-inner {
  758. display: block;
  759. white-space: nowrap;
  760. background-color: transparent;
  761. background-repeat: no-repeat;
  762. background-position: left center;
  763. overflow: hidden; }
  764. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  765. .x-btn .x-btn-left .x-btn-inner {
  766. text-align: left; }
  767. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  768. .x-btn .x-btn-center .x-btn-inner {
  769. text-align: center; }
  770. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  771. .x-btn .x-btn-right .x-btn-inner {
  772. text-align: right; }
  773. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  774. .x-btn-disabled span {
  775. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  776. opacity: 0.5; }
  777. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  778. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  779. filter: none; }
  780. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  781. .x-ie7 .x-btn-disabled,
  782. .x-ie8 .x-btn-disabled {
  783. filter: none; }
  784. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  785. .x-ie6 .x-btn-disabled .x-btn-icon,
  786. .x-ie7 .x-btn-disabled .x-btn-icon,
  787. .x-ie8 .x-btn-disabled .x-btn-icon {
  788. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  789. opacity: 0.6; }
  790. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  791. .x-btn-icon-text-left .x-btn-icon {
  792. background-position: left center; }
  793. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  794. .x-btn-icon-text-right .x-btn-icon {
  795. background-position: right center; }
  796. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  797. .x-btn-icon-text-top .x-btn-icon {
  798. background-position: center top; }
  799. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  800. .x-btn-icon-text-bottom .x-btn-icon {
  801. background-position: center bottom; }
  802. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  803. .x-btn button, .x-btn a {
  804. position: relative; }
  805. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  806. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  807. position: absolute;
  808. background-repeat: no-repeat; }
  809. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  810. .x-btn-arrow-right {
  811. background: transparent no-repeat right center;
  812. padding-right: 12px; }
  813. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  814. .x-btn-arrow-right .x-btn-inner {
  815. padding-right: 0 !important; }
  816. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  817. .x-toolbar .x-btn-arrow-right {
  818. padding-right: 12px; }
  819. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  820. .x-btn-arrow-bottom {
  821. background: transparent no-repeat center bottom;
  822. padding-bottom: 12px; }
  823. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  824. .x-btn-arrow {
  825. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  826. display: block; }
  827. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  828. .x-btn-split-right,
  829. .x-btn-over .x-btn-split-right {
  830. background: transparent no-repeat right center;
  831. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  832. padding-right: 14px !important; }
  833. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  834. .x-btn-split-bottom,
  835. .x-btn-over .x-btn-split-bottom {
  836. background: transparent no-repeat center bottom;
  837. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  838. padding-bottom: 14px; }
  839. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  840. .x-toolbar .x-btn-split-right {
  841. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  842. padding-right: 12px !important; }
  843. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  844. .x-toolbar .x-btn-split-bottom {
  845. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  846. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  847. .x-btn-split {
  848. display: block; }
  849. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  850. .x-item-disabled,
  851. .x-item-disabled * {
  852. cursor: default; }
  853. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  854. .x-cycle-fixed-width .x-btn-inner {
  855. text-align: inherit; }
  856. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  857. .x-btn-over .x-btn-split-right {
  858. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  859. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  860. .x-btn-over .x-btn-split-bottom {
  861. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  862. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  863. .x-btn-default-small {
  864. border-color: #d1d1d1; }
  865. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  866. .x-btn-default-small {
  867. -moz-border-radius: 3px;
  868. -webkit-border-radius: 3px;
  869. -o-border-radius: 3px;
  870. -ms-border-radius: 3px;
  871. -khtml-border-radius: 3px;
  872. border-radius: 3px;
  873. padding: 2px 2px 2px 2px;
  874. border-width: 1px;
  875. border-style: solid;
  876. background-color: white; }
  877. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  878. .x-nlg .x-btn-default-small-mc {
  879. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  880. background-color: white; }
  881. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  882. .x-btn-default-small .x-btn-inner {
  883. font-size: 11px;
  884. font-weight: normal;
  885. font-family: tahoma, arial, verdana, sans-serif;
  886. color: #333333;
  887. background-repeat: no-repeat;
  888. padding: 0 4px; }
  889. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  890. .x-btn-default-small-icon button,
  891. .x-btn-default-small-icon a,
  892. .x-btn-default-small-icon .x-btn-inner,
  893. .x-btn-default-small-noicon button,
  894. .x-btn-default-small-noicon a,
  895. .x-btn-default-small-noicon .x-btn-inner {
  896. height: 16px;
  897. line-height: 16px; }
  898. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  899. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  900. padding: 0; }
  901. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  902. .x-btn-default-small-icon .x-btn-inner {
  903. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  904. width: 16px;
  905. padding: 0; }
  906. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  907. .x-btn-default-small-icon .x-btn-icon {
  908. width: 16px;
  909. height: 16px;
  910. top: 0;
  911. left: 0;
  912. bottom: 0;
  913. right: 0; }
  914. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  915. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  916. height: 16px; }
  917. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  918. .x-btn-default-small-icon-text-left .x-btn-inner {
  919. height: 16px;
  920. line-height: 16px;
  921. padding-left: 20px; }
  922. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  923. .x-btn-default-small-icon-text-left .x-btn-icon {
  924. width: 16px;
  925. height: auto;
  926. top: 0;
  927. left: 0;
  928. bottom: 0;
  929. right: auto; }
  930. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  931. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  932. height: 16px; }
  933. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  934. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  935. height: 16px; }
  936. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  937. .x-btn-default-small-icon-text-right .x-btn-inner {
  938. height: 16px;
  939. line-height: 16px;
  940. padding-right: 20px !important; }
  941. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  942. .x-btn-default-small-icon-text-right .x-btn-icon {
  943. width: 16px;
  944. height: auto;
  945. top: 0;
  946. left: auto;
  947. bottom: 0;
  948. right: 0; }
  949. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  950. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  951. height: 16px; }
  952. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  953. .x-btn-default-small-icon-text-top .x-btn-inner {
  954. padding-top: 20px; }
  955. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  956. .x-btn-default-small-icon-text-top .x-btn-icon {
  957. width: auto;
  958. height: 16px;
  959. top: 0;
  960. left: 0;
  961. bottom: auto;
  962. right: 0; }
  963. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  964. .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 {
  965. width: 16px; }
  966. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  967. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  968. padding-bottom: 20px; }
  969. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  970. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  971. width: auto;
  972. height: 16px;
  973. top: auto;
  974. left: 0;
  975. bottom: 0;
  976. right: 0; }
  977. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  978. .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 {
  979. width: 16px; }
  980. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  981. .x-btn-default-small-over {
  982. border-color: #b0ccf2;
  983. background-image: none;
  984. background-color: #e4f3ff;
  985. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  986. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  987. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  988. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  989. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  990. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  991. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  992. .x-btn-default-small-focus {
  993. border-color: #b0ccf2;
  994. background-image: none;
  995. background-color: #e4f3ff;
  996. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  997. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  998. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  999. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1000. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1001. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1002. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1003. .x-btn-default-small-menu-active,
  1004. .x-btn-default-small-pressed {
  1005. border-color: #9ebae1;
  1006. background-image: none;
  1007. background-color: #b6cbe4;
  1008. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1009. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1010. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1011. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1012. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1013. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1014. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1015. .x-btn-default-small-disabled {
  1016. border-color: #e1e1e1;
  1017. background-image: none;
  1018. background-color: #f7f7f7;
  1019. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1020. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1021. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1022. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1023. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1024. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1025. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1026. .x-btn-default-small-disabled .x-btn-inner {
  1027. color: #333333 !important; }
  1028. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1029. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1030. color: #595959 !important; }
  1031. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1032. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1033. color: #8c8c8c !important; }
  1034. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1035. .x-nlg .x-btn-default-small {
  1036. background-repeat: repeat-x;
  1037. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  1038. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1039. .x-nlg .x-btn-default-small-over {
  1040. background-repeat: repeat-x;
  1041. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1042. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1043. .x-nlg .x-btn-default-small-focus {
  1044. background-repeat: repeat-x;
  1045. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1046. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1047. .x-nlg .x-btn-default-small-menu-active,
  1048. .x-nlg .x-btn-default-small-pressed {
  1049. background-repeat: repeat-x;
  1050. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1051. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1052. .x-nlg .x-btn-default-small-disabled {
  1053. background-repeat: repeat-x;
  1054. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1055. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1056. .x-btn-default-medium {
  1057. border-color: #d1d1d1; }
  1058. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1059. .x-btn-default-medium {
  1060. -moz-border-radius: 3px;
  1061. -webkit-border-radius: 3px;
  1062. -o-border-radius: 3px;
  1063. -ms-border-radius: 3px;
  1064. -khtml-border-radius: 3px;
  1065. border-radius: 3px;
  1066. padding: 3px 3px 3px 3px;
  1067. border-width: 1px;
  1068. border-style: solid;
  1069. background-color: white; }
  1070. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1071. .x-nlg .x-btn-default-medium-mc {
  1072. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  1073. background-color: white; }
  1074. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1075. .x-btn-default-medium .x-btn-inner {
  1076. font-size: 11px;
  1077. font-weight: normal;
  1078. font-family: tahoma, arial, verdana, sans-serif;
  1079. color: #333333;
  1080. background-repeat: no-repeat;
  1081. padding: 0 3px; }
  1082. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1083. .x-btn-default-medium-icon button,
  1084. .x-btn-default-medium-icon a,
  1085. .x-btn-default-medium-icon .x-btn-inner,
  1086. .x-btn-default-medium-noicon button,
  1087. .x-btn-default-medium-noicon a,
  1088. .x-btn-default-medium-noicon .x-btn-inner {
  1089. height: 24px;
  1090. line-height: 24px; }
  1091. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1092. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1093. padding: 0; }
  1094. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1095. .x-btn-default-medium-icon .x-btn-inner {
  1096. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1097. width: 24px;
  1098. padding: 0; }
  1099. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1100. .x-btn-default-medium-icon .x-btn-icon {
  1101. width: 24px;
  1102. height: 24px;
  1103. top: 0;
  1104. left: 0;
  1105. bottom: 0;
  1106. right: 0; }
  1107. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1108. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1109. height: 24px; }
  1110. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1111. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1112. height: 24px;
  1113. line-height: 24px;
  1114. padding-left: 28px; }
  1115. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1116. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1117. width: 24px;
  1118. height: auto;
  1119. top: 0;
  1120. left: 0;
  1121. bottom: 0;
  1122. right: auto; }
  1123. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1124. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1125. height: 24px; }
  1126. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1127. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1128. height: 24px; }
  1129. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1130. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1131. height: 24px;
  1132. line-height: 24px;
  1133. padding-right: 28px !important; }
  1134. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1135. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1136. width: 24px;
  1137. height: auto;
  1138. top: 0;
  1139. left: auto;
  1140. bottom: 0;
  1141. right: 0; }
  1142. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1143. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1144. height: 24px; }
  1145. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1146. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1147. padding-top: 28px; }
  1148. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1149. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1150. width: auto;
  1151. height: 24px;
  1152. top: 0;
  1153. left: 0;
  1154. bottom: auto;
  1155. right: 0; }
  1156. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1157. .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 {
  1158. width: 24px; }
  1159. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1160. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1161. padding-bottom: 28px; }
  1162. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1163. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1164. width: auto;
  1165. height: 24px;
  1166. top: auto;
  1167. left: 0;
  1168. bottom: 0;
  1169. right: 0; }
  1170. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1171. .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 {
  1172. width: 24px; }
  1173. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1174. .x-btn-default-medium-over {
  1175. border-color: #b0ccf2;
  1176. background-image: none;
  1177. background-color: #e4f3ff;
  1178. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1179. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1180. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1181. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1182. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1183. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1184. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1185. .x-btn-default-medium-focus {
  1186. border-color: #b0ccf2;
  1187. background-image: none;
  1188. background-color: #e4f3ff;
  1189. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1190. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1191. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1192. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1193. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1194. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1195. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1196. .x-btn-default-medium-menu-active,
  1197. .x-btn-default-medium-pressed {
  1198. border-color: #9ebae1;
  1199. background-image: none;
  1200. background-color: #b6cbe4;
  1201. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1202. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1203. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1204. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1205. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1206. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1207. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1208. .x-btn-default-medium-disabled {
  1209. border-color: #e1e1e1;
  1210. background-image: none;
  1211. background-color: #f7f7f7;
  1212. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1213. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1214. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1215. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1216. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1217. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1218. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1219. .x-btn-default-medium-disabled .x-btn-inner {
  1220. color: #333333 !important; }
  1221. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1222. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1223. color: #595959 !important; }
  1224. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1225. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1226. color: #8c8c8c !important; }
  1227. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1228. .x-nlg .x-btn-default-medium {
  1229. background-repeat: repeat-x;
  1230. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1231. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1232. .x-nlg .x-btn-default-medium-over {
  1233. background-repeat: repeat-x;
  1234. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1235. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1236. .x-nlg .x-btn-default-medium-focus {
  1237. background-repeat: repeat-x;
  1238. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1239. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1240. .x-nlg .x-btn-default-medium-menu-active,
  1241. .x-nlg .x-btn-default-medium-pressed {
  1242. background-repeat: repeat-x;
  1243. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1244. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1245. .x-nlg .x-btn-default-medium-disabled {
  1246. background-repeat: repeat-x;
  1247. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1248. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1249. .x-btn-default-large {
  1250. border-color: #d1d1d1; }
  1251. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1252. .x-btn-default-large {
  1253. -moz-border-radius: 3px;
  1254. -webkit-border-radius: 3px;
  1255. -o-border-radius: 3px;
  1256. -ms-border-radius: 3px;
  1257. -khtml-border-radius: 3px;
  1258. border-radius: 3px;
  1259. padding: 3px 3px 3px 3px;
  1260. border-width: 1px;
  1261. border-style: solid;
  1262. background-color: white; }
  1263. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1264. .x-nlg .x-btn-default-large-mc {
  1265. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1266. background-color: white; }
  1267. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1268. .x-btn-default-large .x-btn-inner {
  1269. font-size: 11px;
  1270. font-weight: normal;
  1271. font-family: tahoma, arial, verdana, sans-serif;
  1272. color: #333333;
  1273. background-repeat: no-repeat;
  1274. padding: 0 3px; }
  1275. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1276. .x-btn-default-large-icon button,
  1277. .x-btn-default-large-icon a,
  1278. .x-btn-default-large-icon .x-btn-inner,
  1279. .x-btn-default-large-noicon button,
  1280. .x-btn-default-large-noicon a,
  1281. .x-btn-default-large-noicon .x-btn-inner {
  1282. height: 32px;
  1283. line-height: 32px; }
  1284. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1285. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1286. padding: 0; }
  1287. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1288. .x-btn-default-large-icon .x-btn-inner {
  1289. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1290. width: 32px;
  1291. padding: 0; }
  1292. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1293. .x-btn-default-large-icon .x-btn-icon {
  1294. width: 32px;
  1295. height: 32px;
  1296. top: 0;
  1297. left: 0;
  1298. bottom: 0;
  1299. right: 0; }
  1300. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1301. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1302. height: 32px; }
  1303. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1304. .x-btn-default-large-icon-text-left .x-btn-inner {
  1305. height: 32px;
  1306. line-height: 32px;
  1307. padding-left: 36px; }
  1308. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1309. .x-btn-default-large-icon-text-left .x-btn-icon {
  1310. width: 32px;
  1311. height: auto;
  1312. top: 0;
  1313. left: 0;
  1314. bottom: 0;
  1315. right: auto; }
  1316. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1317. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1318. height: 32px; }
  1319. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1320. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1321. height: 32px; }
  1322. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1323. .x-btn-default-large-icon-text-right .x-btn-inner {
  1324. height: 32px;
  1325. line-height: 32px;
  1326. padding-right: 36px !important; }
  1327. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1328. .x-btn-default-large-icon-text-right .x-btn-icon {
  1329. width: 32px;
  1330. height: auto;
  1331. top: 0;
  1332. left: auto;
  1333. bottom: 0;
  1334. right: 0; }
  1335. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1336. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1337. height: 32px; }
  1338. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1339. .x-btn-default-large-icon-text-top .x-btn-inner {
  1340. padding-top: 36px; }
  1341. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1342. .x-btn-default-large-icon-text-top .x-btn-icon {
  1343. width: auto;
  1344. height: 32px;
  1345. top: 0;
  1346. left: 0;
  1347. bottom: auto;
  1348. right: 0; }
  1349. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1350. .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 {
  1351. width: 32px; }
  1352. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1353. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1354. padding-bottom: 36px; }
  1355. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1356. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1357. width: auto;
  1358. height: 32px;
  1359. top: auto;
  1360. left: 0;
  1361. bottom: 0;
  1362. right: 0; }
  1363. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1364. .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 {
  1365. width: 32px; }
  1366. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1367. .x-btn-default-large-over {
  1368. border-color: #b0ccf2;
  1369. background-image: none;
  1370. background-color: #e4f3ff;
  1371. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1372. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1373. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1374. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1375. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1376. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1377. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1378. .x-btn-default-large-focus {
  1379. border-color: #b0ccf2;
  1380. background-image: none;
  1381. background-color: #e4f3ff;
  1382. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1383. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1384. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1385. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1386. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1387. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1388. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1389. .x-btn-default-large-menu-active,
  1390. .x-btn-default-large-pressed {
  1391. border-color: #9ebae1;
  1392. background-image: none;
  1393. background-color: #b6cbe4;
  1394. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1395. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1396. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1397. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1398. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1399. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1400. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1401. .x-btn-default-large-disabled {
  1402. border-color: #e1e1e1;
  1403. background-image: none;
  1404. background-color: #f7f7f7;
  1405. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1406. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1407. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1408. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1409. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1410. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1411. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1412. .x-btn-default-large-disabled .x-btn-inner {
  1413. color: #333333 !important; }
  1414. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1415. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1416. color: #595959 !important; }
  1417. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1418. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1419. color: #8c8c8c !important; }
  1420. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1421. .x-nlg .x-btn-default-large {
  1422. background-repeat: repeat-x;
  1423. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1424. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1425. .x-nlg .x-btn-default-large-over {
  1426. background-repeat: repeat-x;
  1427. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1428. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1429. .x-nlg .x-btn-default-large-focus {
  1430. background-repeat: repeat-x;
  1431. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1432. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1433. .x-nlg .x-btn-default-large-menu-active,
  1434. .x-nlg .x-btn-default-large-pressed {
  1435. background-repeat: repeat-x;
  1436. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1437. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1438. .x-nlg .x-btn-default-large-disabled {
  1439. background-repeat: repeat-x;
  1440. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1441. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1442. .x-btn-default-toolbar-small {
  1443. border-color: transparent; }
  1444. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1445. .x-btn-default-toolbar-small {
  1446. -moz-border-radius: 3px;
  1447. -webkit-border-radius: 3px;
  1448. -o-border-radius: 3px;
  1449. -ms-border-radius: 3px;
  1450. -khtml-border-radius: 3px;
  1451. border-radius: 3px;
  1452. padding: 2px 2px 2px 2px;
  1453. border-width: 1px;
  1454. border-style: solid;
  1455. background-color: transparent; }
  1456. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1457. .x-nlg .x-btn-default-toolbar-small-mc {
  1458. background-color: transparent; }
  1459. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1460. .x-btn-default-toolbar-small .x-btn-inner {
  1461. font-size: 11px;
  1462. font-weight: normal;
  1463. font-family: tahoma, arial, verdana, sans-serif;
  1464. color: #333333;
  1465. background-repeat: no-repeat;
  1466. padding: 0 4px; }
  1467. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1468. .x-btn-default-toolbar-small-icon button,
  1469. .x-btn-default-toolbar-small-icon a,
  1470. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1471. .x-btn-default-toolbar-small-noicon button,
  1472. .x-btn-default-toolbar-small-noicon a,
  1473. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1474. height: 16px;
  1475. line-height: 16px; }
  1476. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1477. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1478. padding: 0; }
  1479. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1480. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1481. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1482. width: 16px;
  1483. padding: 0; }
  1484. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1485. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1486. width: 16px;
  1487. height: 16px;
  1488. top: 0;
  1489. left: 0;
  1490. bottom: 0;
  1491. right: 0; }
  1492. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1493. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1494. height: 16px; }
  1495. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1496. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1497. height: 16px;
  1498. line-height: 16px;
  1499. padding-left: 20px; }
  1500. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1501. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1502. width: 16px;
  1503. height: auto;
  1504. top: 0;
  1505. left: 0;
  1506. bottom: 0;
  1507. right: auto; }
  1508. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1509. .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 {
  1510. height: 16px; }
  1511. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1512. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1513. height: 16px; }
  1514. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1515. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1516. height: 16px;
  1517. line-height: 16px;
  1518. padding-right: 20px !important; }
  1519. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1520. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1521. width: 16px;
  1522. height: auto;
  1523. top: 0;
  1524. left: auto;
  1525. bottom: 0;
  1526. right: 0; }
  1527. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1528. .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 {
  1529. height: 16px; }
  1530. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1531. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1532. padding-top: 20px; }
  1533. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1534. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1535. width: auto;
  1536. height: 16px;
  1537. top: 0;
  1538. left: 0;
  1539. bottom: auto;
  1540. right: 0; }
  1541. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1542. .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 {
  1543. width: 16px; }
  1544. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1545. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1546. padding-bottom: 20px; }
  1547. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1548. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1549. width: auto;
  1550. height: 16px;
  1551. top: auto;
  1552. left: 0;
  1553. bottom: 0;
  1554. right: 0; }
  1555. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1556. .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 {
  1557. width: 16px; }
  1558. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1559. .x-btn-default-toolbar-small-over {
  1560. border-color: #81a4d0;
  1561. background-image: none;
  1562. background-color: #dbeeff;
  1563. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1564. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1565. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1566. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1567. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1568. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1569. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1570. .x-btn-default-toolbar-small-focus {
  1571. border-color: #81a4d0;
  1572. background-image: none;
  1573. background-color: #dbeeff;
  1574. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1575. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1576. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1577. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1578. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1579. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1580. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1581. .x-btn-default-toolbar-small-menu-active,
  1582. .x-btn-default-toolbar-small-pressed {
  1583. border-color: #7a9ac4;
  1584. background-image: none;
  1585. background-color: #bccfe5;
  1586. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  1587. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1588. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1589. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1590. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1591. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1592. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1593. .x-btn-default-toolbar-small-disabled {
  1594. background-image: none;
  1595. background-color: transparent; }
  1596. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1597. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1598. color: #333333 !important; }
  1599. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1600. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1601. color: #595959 !important; }
  1602. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1603. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1604. color: #8c8c8c !important; }
  1605. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1606. .x-nlg .x-btn-default-toolbar-small-over {
  1607. background-repeat: repeat-x;
  1608. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1609. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1610. .x-nlg .x-btn-default-toolbar-small-focus {
  1611. background-repeat: repeat-x;
  1612. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  1613. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1614. .x-nlg .x-btn-default-toolbar-small-menu-active,
  1615. .x-nlg .x-btn-default-toolbar-small-pressed {
  1616. background-repeat: repeat-x;
  1617. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  1618. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1619. .x-btn-default-toolbar-medium {
  1620. border-color: transparent; }
  1621. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1622. .x-btn-default-toolbar-medium {
  1623. -moz-border-radius: 3px;
  1624. -webkit-border-radius: 3px;
  1625. -o-border-radius: 3px;
  1626. -ms-border-radius: 3px;
  1627. -khtml-border-radius: 3px;
  1628. border-radius: 3px;
  1629. padding: 3px 3px 3px 3px;
  1630. border-width: 1px;
  1631. border-style: solid;
  1632. background-color: transparent; }
  1633. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1634. .x-nlg .x-btn-default-toolbar-medium-mc {
  1635. background-color: transparent; }
  1636. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1637. .x-btn-default-toolbar-medium .x-btn-inner {
  1638. font-size: 11px;
  1639. font-weight: normal;
  1640. font-family: tahoma, arial, verdana, sans-serif;
  1641. color: #333333;
  1642. background-repeat: no-repeat;
  1643. padding: 0 3px; }
  1644. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1645. .x-btn-default-toolbar-medium-icon button,
  1646. .x-btn-default-toolbar-medium-icon a,
  1647. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  1648. .x-btn-default-toolbar-medium-noicon button,
  1649. .x-btn-default-toolbar-medium-noicon a,
  1650. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  1651. height: 24px;
  1652. line-height: 24px; }
  1653. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1654. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  1655. padding: 0; }
  1656. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1657. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  1658. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1659. width: 24px;
  1660. padding: 0; }
  1661. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1662. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  1663. width: 24px;
  1664. height: 24px;
  1665. top: 0;
  1666. left: 0;
  1667. bottom: 0;
  1668. right: 0; }
  1669. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1670. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  1671. height: 24px; }
  1672. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1673. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  1674. height: 24px;
  1675. line-height: 24px;
  1676. padding-left: 28px; }
  1677. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1678. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  1679. width: 24px;
  1680. height: auto;
  1681. top: 0;
  1682. left: 0;
  1683. bottom: 0;
  1684. right: auto; }
  1685. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1686. .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 {
  1687. height: 24px; }
  1688. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1689. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  1690. height: 24px; }
  1691. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1692. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  1693. height: 24px;
  1694. line-height: 24px;
  1695. padding-right: 28px !important; }
  1696. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1697. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  1698. width: 24px;
  1699. height: auto;
  1700. top: 0;
  1701. left: auto;
  1702. bottom: 0;
  1703. right: 0; }
  1704. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1705. .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 {
  1706. height: 24px; }
  1707. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1708. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  1709. padding-top: 28px; }
  1710. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1711. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  1712. width: auto;
  1713. height: 24px;
  1714. top: 0;
  1715. left: 0;
  1716. bottom: auto;
  1717. right: 0; }
  1718. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1719. .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 {
  1720. width: 24px; }
  1721. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1722. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  1723. padding-bottom: 28px; }
  1724. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1725. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  1726. width: auto;
  1727. height: 24px;
  1728. top: auto;
  1729. left: 0;
  1730. bottom: 0;
  1731. right: 0; }
  1732. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1733. .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 {
  1734. width: 24px; }
  1735. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1736. .x-btn-default-toolbar-medium-over {
  1737. border-color: #81a4d0;
  1738. background-image: none;
  1739. background-color: #dbeeff;
  1740. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1741. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1742. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1743. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1744. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1745. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1746. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1747. .x-btn-default-toolbar-medium-focus {
  1748. border-color: #81a4d0;
  1749. background-image: none;
  1750. background-color: #dbeeff;
  1751. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1752. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1753. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1754. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1755. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1756. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1757. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1758. .x-btn-default-toolbar-medium-menu-active,
  1759. .x-btn-default-toolbar-medium-pressed {
  1760. border-color: #7a9ac4;
  1761. background-image: none;
  1762. background-color: #bccfe5;
  1763. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  1764. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1765. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1766. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1767. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1768. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1769. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1770. .x-btn-default-toolbar-medium-disabled {
  1771. background-image: none;
  1772. background-color: transparent; }
  1773. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1774. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1775. color: #333333 !important; }
  1776. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1777. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1778. color: #595959 !important; }
  1779. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1780. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1781. color: #8c8c8c !important; }
  1782. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1783. .x-nlg .x-btn-default-toolbar-medium-over {
  1784. background-repeat: repeat-x;
  1785. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  1786. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1787. .x-nlg .x-btn-default-toolbar-medium-focus {
  1788. background-repeat: repeat-x;
  1789. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  1790. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1791. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  1792. .x-nlg .x-btn-default-toolbar-medium-pressed {
  1793. background-repeat: repeat-x;
  1794. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  1795. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1796. .x-btn-default-toolbar-large {
  1797. border-color: transparent; }
  1798. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1799. .x-btn-default-toolbar-large {
  1800. -moz-border-radius: 3px;
  1801. -webkit-border-radius: 3px;
  1802. -o-border-radius: 3px;
  1803. -ms-border-radius: 3px;
  1804. -khtml-border-radius: 3px;
  1805. border-radius: 3px;
  1806. padding: 3px 3px 3px 3px;
  1807. border-width: 1px;
  1808. border-style: solid;
  1809. background-color: transparent; }
  1810. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1811. .x-nlg .x-btn-default-toolbar-large-mc {
  1812. background-color: transparent; }
  1813. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1814. .x-btn-default-toolbar-large .x-btn-inner {
  1815. font-size: 11px;
  1816. font-weight: normal;
  1817. font-family: tahoma, arial, verdana, sans-serif;
  1818. color: #333333;
  1819. background-repeat: no-repeat;
  1820. padding: 0 3px; }
  1821. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1822. .x-btn-default-toolbar-large-icon button,
  1823. .x-btn-default-toolbar-large-icon a,
  1824. .x-btn-default-toolbar-large-icon .x-btn-inner,
  1825. .x-btn-default-toolbar-large-noicon button,
  1826. .x-btn-default-toolbar-large-noicon a,
  1827. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  1828. height: 32px;
  1829. line-height: 32px; }
  1830. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1831. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  1832. padding: 0; }
  1833. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1834. .x-btn-default-toolbar-large-icon .x-btn-inner {
  1835. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1836. width: 32px;
  1837. padding: 0; }
  1838. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1839. .x-btn-default-toolbar-large-icon .x-btn-icon {
  1840. width: 32px;
  1841. height: 32px;
  1842. top: 0;
  1843. left: 0;
  1844. bottom: 0;
  1845. right: 0; }
  1846. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1847. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  1848. height: 32px; }
  1849. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1850. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  1851. height: 32px;
  1852. line-height: 32px;
  1853. padding-left: 36px; }
  1854. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1855. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  1856. width: 32px;
  1857. height: auto;
  1858. top: 0;
  1859. left: 0;
  1860. bottom: 0;
  1861. right: auto; }
  1862. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1863. .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 {
  1864. height: 32px; }
  1865. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1866. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  1867. height: 32px; }
  1868. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1869. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  1870. height: 32px;
  1871. line-height: 32px;
  1872. padding-right: 36px !important; }
  1873. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1874. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  1875. width: 32px;
  1876. height: auto;
  1877. top: 0;
  1878. left: auto;
  1879. bottom: 0;
  1880. right: 0; }
  1881. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1882. .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 {
  1883. height: 32px; }
  1884. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1885. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  1886. padding-top: 36px; }
  1887. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1888. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  1889. width: auto;
  1890. height: 32px;
  1891. top: 0;
  1892. left: 0;
  1893. bottom: auto;
  1894. right: 0; }
  1895. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1896. .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 {
  1897. width: 32px; }
  1898. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1899. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  1900. padding-bottom: 36px; }
  1901. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1902. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  1903. width: auto;
  1904. height: 32px;
  1905. top: auto;
  1906. left: 0;
  1907. bottom: 0;
  1908. right: 0; }
  1909. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1910. .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 {
  1911. width: 32px; }
  1912. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1913. .x-btn-default-toolbar-large-over {
  1914. border-color: #81a4d0;
  1915. background-image: none;
  1916. background-color: #dbeeff;
  1917. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1918. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1919. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1920. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1921. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1922. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1923. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1924. .x-btn-default-toolbar-large-focus {
  1925. border-color: #81a4d0;
  1926. background-image: none;
  1927. background-color: #dbeeff;
  1928. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1929. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1930. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1931. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1932. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1933. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1934. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1935. .x-btn-default-toolbar-large-menu-active,
  1936. .x-btn-default-toolbar-large-pressed {
  1937. border-color: #7a9ac4;
  1938. background-image: none;
  1939. background-color: #bccfe5;
  1940. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  1941. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1942. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1943. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1944. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1945. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1946. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1947. .x-btn-default-toolbar-large-disabled {
  1948. background-image: none;
  1949. background-color: transparent; }
  1950. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1951. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1952. color: #333333 !important; }
  1953. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1954. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1955. color: #595959 !important; }
  1956. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1957. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1958. color: #8c8c8c !important; }
  1959. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1960. .x-nlg .x-btn-default-toolbar-large-over {
  1961. background-repeat: repeat-x;
  1962. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  1963. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1964. .x-nlg .x-btn-default-toolbar-large-focus {
  1965. background-repeat: repeat-x;
  1966. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  1967. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1968. .x-nlg .x-btn-default-toolbar-large-menu-active,
  1969. .x-nlg .x-btn-default-toolbar-large-pressed {
  1970. background-repeat: repeat-x;
  1971. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  1972. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1973. .x-btn-default-toolbar-small-disabled,
  1974. .x-btn-default-toolbar-medium-disabled,
  1975. .x-btn-default-toolbar-large-disabled {
  1976. border-color: transparent;
  1977. background-image: none;
  1978. background: transparent; }
  1979. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1980. .x-btn-group {
  1981. position: relative;
  1982. overflow: hidden; }
  1983. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1984. .x-btn-group-body {
  1985. position: relative;
  1986. zoom: 1;
  1987. padding: 0 1px; }
  1988. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1989. .x-btn-group-body .x-table-layout-cell {
  1990. vertical-align: top; }
  1991. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1992. .x-btn-group-header-text {
  1993. white-space: nowrap; }
  1994. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1995. .x-btn-group-default-framed {
  1996. -moz-border-radius: 2px;
  1997. -webkit-border-radius: 2px;
  1998. -o-border-radius: 2px;
  1999. -ms-border-radius: 2px;
  2000. -khtml-border-radius: 2px;
  2001. border-radius: 2px;
  2002. padding: 1px 1px 1px 1px;
  2003. border-width: 1px;
  2004. border-style: solid;
  2005. background-color: #d0def0; }
  2006. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2007. .x-nlg .x-btn-group-default-framed-mc {
  2008. background-color: #d0def0; }
  2009. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2010. .x-btn-group-default-framed {
  2011. border-color: #b7c8d7;
  2012. -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2013. -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2014. -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2015. box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; }
  2016. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2017. .x-btn-group-header-default-framed {
  2018. margin: 2px 2px 0 2px; }
  2019. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2020. .x-btn-group-header-body-default-framed {
  2021. padding: 1px 0;
  2022. background: #c2d8f0;
  2023. -moz-border-radius-topleft: 2px;
  2024. -webkit-border-top-left-radius: 2px;
  2025. -o-border-top-left-radius: 2px;
  2026. -ms-border-top-left-radius: 2px;
  2027. -khtml-border-top-left-radius: 2px;
  2028. border-top-left-radius: 2px;
  2029. -moz-border-radius-topright: 2px;
  2030. -webkit-border-top-right-radius: 2px;
  2031. -o-border-top-right-radius: 2px;
  2032. -ms-border-top-right-radius: 2px;
  2033. -khtml-border-top-right-radius: 2px;
  2034. border-top-right-radius: 2px; }
  2035. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2036. .x-btn-group-header-text-default-framed {
  2037. font: normal 11px tahoma, arial, verdana, sans-serif;
  2038. color: #3e6aaa; }
  2039. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2040. .x-datepicker {
  2041. border: 1px solid #1b376c;
  2042. background-color: white;
  2043. position: relative; }
  2044. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2045. .x-datepicker a {
  2046. -moz-outline: 0 none;
  2047. outline: 0 none;
  2048. color: #15428b;
  2049. text-decoration: none;
  2050. border-width: 0; }
  2051. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2052. .x-datepicker-inner,
  2053. .x-datepicker-inner td,
  2054. .x-datepicker-inner th {
  2055. border-collapse: separate; }
  2056. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2057. .x-datepicker-header {
  2058. position: relative;
  2059. height: 26px;
  2060. background-image: none;
  2061. background-color: #23427c;
  2062. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  2063. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2064. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2065. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2066. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2067. background-image: linear-gradient(top, #264888, #1f3a6c); }
  2068. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2069. .x-datepicker-prev,
  2070. .x-datepicker-next {
  2071. position: absolute;
  2072. top: 5px;
  2073. width: 18px; }
  2074. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2075. .x-datepicker-prev a,
  2076. .x-datepicker-next a {
  2077. display: block;
  2078. width: 16px;
  2079. height: 16px;
  2080. background-position: top;
  2081. background-repeat: no-repeat;
  2082. cursor: pointer;
  2083. text-decoration: none !important;
  2084. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2085. opacity: 0.7; }
  2086. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2087. .x-datepicker-prev a:hover,
  2088. .x-datepicker-next a:hover {
  2089. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2090. opacity: 1; }
  2091. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2092. .x-datepicker-next {
  2093. right: 5px; }
  2094. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2095. .x-datepicker-next a {
  2096. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  2097. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2098. .x-datepicker-prev {
  2099. left: 5px; }
  2100. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2101. .x-datepicker-prev a {
  2102. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  2103. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2104. .x-item-disabled .x-datepicker-prev a:hover,
  2105. .x-item-disabled .x-datepicker-next a:hover {
  2106. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2107. opacity: 0.6; }
  2108. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2109. .x-datepicker-month {
  2110. padding-top: 3px; }
  2111. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2112. .x-datepicker-month .x-btn,
  2113. .x-datepicker-month button,
  2114. .x-datepicker-month .x-btn-tc,
  2115. .x-datepicker-month .x-btn-tl,
  2116. .x-datepicker-month .x-btn-tr,
  2117. .x-datepicker-month .x-btn-mc,
  2118. .x-datepicker-month .x-btn-ml,
  2119. .x-datepicker-month .x-btn-mr,
  2120. .x-datepicker-month .x-btn-bc,
  2121. .x-datepicker-month .x-btn-bl,
  2122. .x-datepicker-month .x-btn-br {
  2123. background: transparent !important;
  2124. border-width: 0 !important; }
  2125. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2126. .x-datepicker-month span {
  2127. color: #fff !important; }
  2128. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2129. .x-datepicker-month .x-btn-split-right {
  2130. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2131. padding-right: 12px; }
  2132. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2133. .x-datepicker-next {
  2134. text-align: right; }
  2135. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2136. .x-datepicker-month {
  2137. text-align: center; }
  2138. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2139. .x-datepicker-month button {
  2140. color: white !important; }
  2141. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2142. table.x-datepicker-inner {
  2143. width: 100%;
  2144. table-layout: fixed; }
  2145. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2146. table.x-datepicker-inner th {
  2147. width: 25px;
  2148. height: 19px;
  2149. padding: 0;
  2150. color: #233d6d;
  2151. font: normal 10px tahoma, arial, verdana, sans-serif;
  2152. text-align: right;
  2153. border-bottom: 1px solid #b2d1f5;
  2154. border-collapse: separate;
  2155. background-image: none;
  2156. background-color: #dfecfb;
  2157. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  2158. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2159. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2160. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2161. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2162. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2163. cursor: default; }
  2164. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2165. table.x-datepicker-inner th span {
  2166. display: block;
  2167. padding-right: 7px; }
  2168. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2169. table.x-datepicker-inner tr {
  2170. height: 20px; }
  2171. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2172. table.x-datepicker-inner td {
  2173. border: 1px solid;
  2174. height: 17px;
  2175. border-color: white;
  2176. text-align: right;
  2177. padding: 0; }
  2178. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2179. table.x-datepicker-inner a {
  2180. padding-right: 4px;
  2181. display: block;
  2182. zoom: 1;
  2183. font: normal 11px tahoma, arial, verdana, sans-serif;
  2184. color: black;
  2185. text-decoration: none;
  2186. text-align: right; }
  2187. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2188. table.x-datepicker-inner .x-datepicker-active {
  2189. cursor: pointer;
  2190. color: black; }
  2191. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2192. table.x-datepicker-inner .x-datepicker-selected a {
  2193. background: repeat-x left top;
  2194. background-color: #dae5f3;
  2195. border: 1px solid #8db2e3; }
  2196. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2197. table.x-datepicker-inner .x-datepicker-selected span {
  2198. font-weight: bold; }
  2199. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2200. table.x-datepicker-inner .x-datepicker-today a {
  2201. border: 1px solid;
  2202. border-color: darkred; }
  2203. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2204. table.x-datepicker-inner .x-datepicker-prevday a,
  2205. table.x-datepicker-inner .x-datepicker-nextday a {
  2206. text-decoration: none !important;
  2207. color: #aaa; }
  2208. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2209. table.x-datepicker-inner a:hover,
  2210. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2211. text-decoration: none !important;
  2212. color: #000;
  2213. background-color: #ddecfe; }
  2214. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2215. table.x-datepicker-inner .x-datepicker-disabled a {
  2216. cursor: default;
  2217. background-color: #eee;
  2218. color: #bbb; }
  2219. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2220. .x-datepicker-footer,
  2221. .x-monthpicker-buttons {
  2222. position: relative;
  2223. border-top: 1px solid #b2d1f5;
  2224. background-image: none;
  2225. background-color: #dfecfb;
  2226. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee));
  2227. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2228. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2229. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2230. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2231. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2232. text-align: center; }
  2233. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2234. .x-datepicker-footer .x-btn,
  2235. .x-monthpicker-buttons .x-btn {
  2236. position: relative;
  2237. margin: 4px; }
  2238. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2239. .x-item-disabled .x-datepicker-inner a:hover {
  2240. background: none; }
  2241. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2242. .x-datepicker .x-monthpicker {
  2243. position: absolute;
  2244. left: 0;
  2245. top: 0; }
  2246. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2247. .x-monthpicker {
  2248. border: 1px solid #1b376c;
  2249. background-color: white; }
  2250. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2251. .x-monthpicker-months,
  2252. .x-monthpicker-years {
  2253. float: left;
  2254. height: 167px;
  2255. width: 88px; }
  2256. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2257. .x-monthpicker-item {
  2258. float: left;
  2259. margin: 4px 0 5px 0;
  2260. font: normal 11px tahoma, arial, verdana, sans-serif;
  2261. text-align: center;
  2262. vertical-align: middle;
  2263. height: 18px;
  2264. width: 43px;
  2265. border: 0 none; }
  2266. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2267. .x-monthpicker-item a {
  2268. display: block;
  2269. margin: 0 5px;
  2270. text-decoration: none;
  2271. color: #15428b;
  2272. border: 1px solid white;
  2273. line-height: 17px; }
  2274. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2275. .x-monthpicker-item a:hover {
  2276. background-color: #ddecfe; }
  2277. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2278. .x-monthpicker-item a.x-monthpicker-selected {
  2279. background-color: #dfecfb;
  2280. border: 1px solid #8db2e3; }
  2281. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2282. .x-monthpicker-months {
  2283. border-right: 1px solid #1b376c;
  2284. width: 87px; }
  2285. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2286. .x-monthpicker-years .x-monthpicker-item {
  2287. width: 44px; }
  2288. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2289. .x-monthpicker-yearnav {
  2290. height: 28px; }
  2291. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2292. .x-monthpicker-yearnav button {
  2293. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2294. height: 15px;
  2295. width: 15px;
  2296. padding: 0;
  2297. margin: 6px 12px 5px 15px;
  2298. border: 0;
  2299. outline: 0 none; }
  2300. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2301. .x-monthpicker-yearnav button::-moz-focus-inner {
  2302. border: 0;
  2303. padding: 0; }
  2304. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2305. .x-monthpicker-yearnav-next {
  2306. background-position: 0 -120px; }
  2307. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2308. .x-monthpicker-yearnav-next-over {
  2309. cursor: pointer;
  2310. cursor: hand;
  2311. background-position: -15px -120px; }
  2312. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2313. .x-monthpicker-yearnav-prev {
  2314. background-position: 0 -105px; }
  2315. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2316. .x-monthpicker-yearnav-prev-over {
  2317. cursor: pointer;
  2318. cursor: hand;
  2319. background-position: -15px -105px; }
  2320. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2321. .x-monthpicker-small .x-monthpicker-item {
  2322. margin: 2px 0 2px 0; }
  2323. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2324. .x-monthpicker-small .x-monthpicker-yearnav {
  2325. height: 23px; }
  2326. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2327. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  2328. height: 136px; }
  2329. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2330. .x-nlg .x-datepicker-header {
  2331. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  2332. background-repeat: repeat-x;
  2333. background-position: top left; }
  2334. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2335. .x-nlg .x-datepicker-footer,
  2336. .x-nlg .x-monthpicker-buttons {
  2337. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  2338. background-repeat: repeat-x;
  2339. background-position: top left; }
  2340. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2341. .x-color-picker {
  2342. width: 144px;
  2343. height: 90px;
  2344. cursor: pointer; }
  2345. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2346. .x-color-picker a {
  2347. border: 1px solid #fff;
  2348. float: left;
  2349. padding: 2px;
  2350. text-decoration: none;
  2351. -moz-outline: 0 none;
  2352. outline: 0 none;
  2353. cursor: pointer; }
  2354. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2355. .x-color-picker a:hover,
  2356. .x-color-picker a.x-color-picker-selected {
  2357. border-color: #8bb8f3;
  2358. background-color: #deecfd; }
  2359. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2360. .x-color-picker em {
  2361. display: block;
  2362. border: 1px solid #aca899; }
  2363. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2364. .x-color-picker em span {
  2365. cursor: pointer;
  2366. display: block;
  2367. height: 10px;
  2368. width: 10px;
  2369. line-height: 10px; }
  2370. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2371. .x-menu-body {
  2372. user-select: none;
  2373. -o-user-select: none;
  2374. -ms-user-select: none;
  2375. -moz-user-select: -moz-none;
  2376. -webkit-user-select: none;
  2377. cursor: default;
  2378. background: #f0f0f0 !important;
  2379. padding: 2px; }
  2380. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2381. .x-menu-item .x-form-text {
  2382. user-select: text;
  2383. -webkit-user-select: text;
  2384. -o-user-select: text;
  2385. -ie-user-select: text;
  2386. -moz-user-select: text;
  2387. -ie-user-select: text; }
  2388. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2389. .x-menu-icon-separator {
  2390. position: absolute;
  2391. top: 0px;
  2392. left: 27px;
  2393. z-index: 0;
  2394. border-left: solid 1px #e0e0e0;
  2395. background-color: white;
  2396. width: 2px;
  2397. overflow: hidden; }
  2398. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2399. .x-menu-plain .x-menu-icon-separator {
  2400. display: none; }
  2401. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2402. .x-menu-focus {
  2403. display: block;
  2404. position: absolute;
  2405. top: -10px;
  2406. left: -10px;
  2407. width: 0px;
  2408. height: 0px; }
  2409. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2410. .x-menu-item {
  2411. white-space: nowrap;
  2412. overflow: hidden;
  2413. z-index: 1; }
  2414. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2415. .x-menu-item-cmp {
  2416. margin-bottom: 1px; }
  2417. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2418. .x-menu-item-link {
  2419. display: block;
  2420. margin: 1px;
  2421. padding: 6px 2px 3px 32px;
  2422. text-decoration: none !important;
  2423. line-height: 16px;
  2424. cursor: default; }
  2425. /* line 70, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2426. .x-opera .x-menu-item-link {
  2427. position: relative; }
  2428. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2429. .x-menu-item-icon {
  2430. width: 16px;
  2431. height: 16px;
  2432. position: absolute;
  2433. top: 5px;
  2434. left: 4px;
  2435. background: no-repeat center center; }
  2436. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2437. .x-menu-item-icon-right {
  2438. width: 16px;
  2439. height: 16px;
  2440. position: absolute;
  2441. top: 6px;
  2442. right: 4px;
  2443. background: no-repeat center center; }
  2444. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2445. .x-menu-item-text {
  2446. font-size: 11px;
  2447. color: #222222; }
  2448. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2449. .x-menu-item-checked .x-menu-item-icon {
  2450. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  2451. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2452. .x-menu-item-checked .x-menu-group-icon {
  2453. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  2454. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2455. .x-menu-item-unchecked .x-menu-item-icon {
  2456. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  2457. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2458. .x-menu-item-unchecked .x-menu-group-icon {
  2459. background-image: none; }
  2460. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2461. .x-menu-item-separator {
  2462. height: 2px;
  2463. border-top: solid 1px #e0e0e0;
  2464. background-color: white;
  2465. margin: 2px 0px;
  2466. overflow: hidden; }
  2467. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2468. .x-menu-item-arrow {
  2469. position: absolute;
  2470. width: 12px;
  2471. height: 9px;
  2472. top: 9px;
  2473. right: 0px;
  2474. background: no-repeat center center;
  2475. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  2476. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2477. .x-menu-item-indent {
  2478. margin-left: 31px;
  2479. /* The 2px is the width of the seperator */ }
  2480. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2481. .x-menu-item-active {
  2482. cursor: pointer; }
  2483. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2484. .x-menu-item-active .x-menu-item-link {
  2485. background-image: none;
  2486. background-color: #d9e8fb;
  2487. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  2488. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  2489. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  2490. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  2491. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  2492. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  2493. margin: 0px;
  2494. border: 1px solid #a9cbf5;
  2495. cursor: pointer;
  2496. -moz-border-radius: 3px;
  2497. -webkit-border-radius: 3px;
  2498. -o-border-radius: 3px;
  2499. -ms-border-radius: 3px;
  2500. -khtml-border-radius: 3px;
  2501. border-radius: 3px; }
  2502. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2503. .x-menu-item-disabled {
  2504. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  2505. opacity: 0.5; }
  2506. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2507. .x-nlg .x-menu-item-active .x-menu-item-link {
  2508. background: #d9e8fb repeat-x left top;
  2509. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  2510. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2511. .x-menu-date-item {
  2512. border-color: #99BBE8; }
  2513. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2514. .x-panel .x-grid-body {
  2515. background: white;
  2516. border-color: #99bce8;
  2517. border-style: solid;
  2518. border-width: 1px;
  2519. border-top-color: #c5c5c5; }
  2520. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2521. .x-panel .x-grid-header-ct-hidden {
  2522. visibility: hidden; }
  2523. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2524. .x-grid-empty {
  2525. padding: 10px;
  2526. color: gray;
  2527. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  2528. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2529. .x-grid-header-hidden .x-grid-body {
  2530. border-top-color: #99bce8 !important; }
  2531. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2532. .x-grid-view {
  2533. overflow: hidden;
  2534. position: relative; }
  2535. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2536. .x-grid-table {
  2537. table-layout: fixed;
  2538. border-collapse: separate; }
  2539. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2540. .x-autowidth-table table.x-grid-table {
  2541. table-layout: auto;
  2542. width: auto!important; }
  2543. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2544. .x-grid-row .x-grid-table {
  2545. border-collapse: collapse; }
  2546. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2547. .x-grid-locked .x-grid-inner-locked {
  2548. border-width: 0 1px 0 0 !important;
  2549. border-style: solid; }
  2550. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2551. .x-grid-header-ct {
  2552. cursor: default;
  2553. zoom: 1;
  2554. padding: 0;
  2555. border: 1px solid #99bce8;
  2556. border-bottom-color: #c5c5c5; }
  2557. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2558. .x-accordion-item .x-grid-header-ct {
  2559. border-width: 0 0 1px 0!important; }
  2560. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2561. .x-column-header {
  2562. padding: 0;
  2563. position: absolute;
  2564. overflow: hidden;
  2565. border-right: 1px solid #c5c5c5;
  2566. border-left: 0 none;
  2567. border-top: 0 none;
  2568. border-bottom: 0 none;
  2569. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  2570. color: null;
  2571. font: normal 11px tahoma, arial, verdana, sans-serif; }
  2572. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2573. .x-group-header {
  2574. padding: 0;
  2575. border-left-width: 0; }
  2576. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2577. .x-group-sub-header {
  2578. background: transparent;
  2579. border-top: 1px solid #c5c5c5;
  2580. border-left-width: 0; }
  2581. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2582. .x-column-header-inner {
  2583. zoom: 1;
  2584. position: relative;
  2585. white-space: nowrap;
  2586. line-height: 15px;
  2587. padding: 3px 6px 4px; }
  2588. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2589. .x-column-header-inner .x-column-header-text {
  2590. white-space: nowrap; }
  2591. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2592. .x-column-header-over,
  2593. .x-column-header-sort-ASC,
  2594. .x-column-header-sort-DESC {
  2595. border-left-color: #aaccf6;
  2596. border-right-color: #aaccf6; }
  2597. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2598. .x-nlg .x-grid-header-ct,
  2599. .x-nlg .x-column-header {
  2600. background: repeat-x 0 top;
  2601. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  2602. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2603. .x-nlg .x-column-header-over,
  2604. .x-nlg .x-column-header-sort-ASC,
  2605. .x-nlg .x-column-header-sort-DESC {
  2606. background: #ebf3fd repeat-x 0 top;
  2607. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  2608. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2609. .x-column-header-trigger {
  2610. display: none;
  2611. height: 100%;
  2612. width: 14px;
  2613. background: no-repeat left center;
  2614. background-color: #c3daf9;
  2615. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  2616. position: absolute;
  2617. right: 0;
  2618. top: 0;
  2619. z-index: 2;
  2620. cursor: pointer; }
  2621. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2622. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  2623. display: block; }
  2624. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2625. .x-column-header-align-right {
  2626. text-align: right; }
  2627. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2628. .x-column-header-align-right .x-column-header-text {
  2629. padding-right: 0.5ex;
  2630. margin-right: 6px; }
  2631. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2632. .x-column-header-align-center {
  2633. text-align: center; }
  2634. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2635. .x-column-header-align-left {
  2636. text-align: left; }
  2637. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2638. .x-column-header-sort-ASC .x-column-header-text {
  2639. padding-right: 16px;
  2640. background: no-repeat right 6px;
  2641. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  2642. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2643. .x-column-header-sort-DESC .x-column-header-text {
  2644. padding-right: 16px;
  2645. background: no-repeat right 6px;
  2646. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  2647. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2648. .x-grid-row {
  2649. vertical-align: top; }
  2650. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2651. .x-grid-row .x-grid-cell {
  2652. color: null;
  2653. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2654. background-color: white;
  2655. border-color: #ededed;
  2656. border-style: solid;
  2657. border-top-color: #fafafa;
  2658. border-width: 0; }
  2659. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2660. .x-grid-with-row-lines .x-grid-cell {
  2661. border-width: 1px 0; }
  2662. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2663. .x-grid-rowwrap-div {
  2664. border-width: 1px 0;
  2665. border-color: #ededed;
  2666. border-style: solid;
  2667. border-top-color: #fafafa;
  2668. overflow: hidden; }
  2669. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2670. .x-grid-row-alt .x-grid-cell,
  2671. .x-grid-row-alt .x-grid-rowwrap-div {
  2672. background-color: #fafafa; }
  2673. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2674. .x-grid-row-over .x-grid-cell,
  2675. .x-grid-row-over .x-grid-rowwrap-div {
  2676. border-color: #dddddd;
  2677. background-color: #efefef; }
  2678. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2679. .x-grid-row-focused .x-grid-cell,
  2680. .x-grid-row-focused .x-grid-rowwrap-div {
  2681. border-color: #dddddd;
  2682. background-color: #efefef; }
  2683. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2684. .x-grid-row-selected .x-grid-cell,
  2685. .x-grid-row-selected .x-grid-rowwrap-div {
  2686. border-style: dotted;
  2687. border-color: #a3bae9;
  2688. background-color: #dfe8f6 !important; }
  2689. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2690. .x-grid-rowwrap-div .x-grid-cell,
  2691. .x-grid-rowwrap-div .x-grid-cell-inner {
  2692. border-width: 0;
  2693. background: transparent; }
  2694. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2695. .x-grid-row-body-hidden {
  2696. display: none; }
  2697. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2698. .x-grid-rowbody {
  2699. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  2700. padding: 4px; }
  2701. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2702. .x-grid-rowbody p {
  2703. margin: 5px 5px 10px 5px; }
  2704. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2705. .x-grid-cell {
  2706. overflow: hidden; }
  2707. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2708. .x-grid-cell-inner {
  2709. overflow: hidden;
  2710. -o-text-overflow: ellipsis;
  2711. text-overflow: ellipsis;
  2712. padding: 2px 6px 3px;
  2713. white-space: nowrap; }
  2714. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2715. .x-grid-with-row-lines .x-grid-cell-inner {
  2716. line-height: 13px;
  2717. padding-bottom: 4px; }
  2718. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2719. .x-action-col-cell .x-grid-cell-inner {
  2720. line-height: 0;
  2721. padding: 2px; }
  2722. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2723. .x-action-col-cell .x-item-disabled {
  2724. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  2725. opacity: 0.3; }
  2726. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2727. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  2728. padding-top: 1px; }
  2729. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2730. .x-grid-row .x-grid-cell-special {
  2731. padding: 0;
  2732. border-right: 1px solid #d0d0d0;
  2733. background-image: none;
  2734. background-color: #f6f6f6;
  2735. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  2736. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  2737. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  2738. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  2739. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  2740. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  2741. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2742. .x-grid-row .x-grid-cell-row-checker {
  2743. vertical-align: middle; }
  2744. /*
  2745. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  2746. use an IE-specific trick to make the row disappear. We cannot do this on any
  2747. other browser, because it is not a non-standard thing to do and those other
  2748. browsers will do whacky things with it.
  2749. */
  2750. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2751. .x-ie6 .x-grid-header-row,
  2752. .x-ie7 .x-grid-header-row,
  2753. .x-quirks .x-ie8 .x-grid-header-row {
  2754. position: absolute; }
  2755. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2756. .x-grid-row-selected .x-grid-cell-special {
  2757. border-right: 1px solid #aaccf6;
  2758. background-image: none;
  2759. background-color: #dfe8f6;
  2760. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  2761. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  2762. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  2763. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  2764. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  2765. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  2766. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2767. .x-grid-dirty-cell {
  2768. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  2769. background-position: 0 0;
  2770. background-repeat: no-repeat; }
  2771. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2772. .x-grid-cell-selected {
  2773. background-color: #B8CFEE !important; }
  2774. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2775. .x-nlg .x-grid-cell-special {
  2776. background-repeat: repeat-y;
  2777. background-position: top right; }
  2778. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2779. .x-nlg .x-grid-row .x-grid-cell-special,
  2780. .x-nlg .x-grid-row-over .x-grid-cell-special {
  2781. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  2782. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2783. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  2784. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  2785. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  2786. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2787. .x-grid-with-col-lines .x-grid-cell {
  2788. padding-right: 0;
  2789. border-right: 1px solid #d0d0d0; }
  2790. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2791. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2792. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2793. padding-left: 12px;
  2794. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  2795. background-repeat: no-repeat;
  2796. background-position: -16px 2px; }
  2797. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2798. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2799. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2800. background-position: -16px 1px; }
  2801. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2802. .x-unselectable {
  2803. user-select: none;
  2804. -o-user-select: none;
  2805. -ms-user-select: none;
  2806. -moz-user-select: -moz-none;
  2807. -webkit-user-select: none;
  2808. cursor: default; }
  2809. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2810. .x-grid-row-body-hidden {
  2811. display: none; }
  2812. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2813. .x-grid-group-collapsed {
  2814. display: none; }
  2815. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2816. .x-grid-view .x-grid-td-expander {
  2817. vertical-align: top; }
  2818. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2819. .x-grid-td-expander {
  2820. background: repeat-y right transparent; }
  2821. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2822. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  2823. padding: 0 !important; }
  2824. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2825. .x-grid-row-expander {
  2826. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2827. background-color: transparent;
  2828. width: 9px;
  2829. height: 13px;
  2830. margin-left: 3px;
  2831. background-repeat: no-repeat;
  2832. background-position: 0 -2px; }
  2833. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2834. .x-grid-row-collapsed .x-grid-row-expander {
  2835. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2836. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2837. .x-grid-resize-marker {
  2838. position: absolute;
  2839. z-index: 5;
  2840. top: 0;
  2841. width: 1px;
  2842. background-color: #0f0f0f; }
  2843. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2844. .col-move-top, .col-move-bottom {
  2845. width: 9px;
  2846. height: 9px;
  2847. position: absolute;
  2848. top: 0;
  2849. line-height: 0;
  2850. font-size: 0;
  2851. overflow: hidden;
  2852. z-index: 20000;
  2853. background: no-repeat left top transparent; }
  2854. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2855. .col-move-top {
  2856. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  2857. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2858. .col-move-bottom {
  2859. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  2860. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2861. .x-tbar-page-number {
  2862. width: 30px; }
  2863. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2864. .x-grid-group,
  2865. .x-grid-group-body,
  2866. .x-grid-group-hd {
  2867. zoom: 1; }
  2868. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2869. .x-grid-group-hd {
  2870. padding-top: 6px; }
  2871. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2872. .x-grid-group-hd .x-grid-cell-inner {
  2873. padding: 10px 4px 4px 4px;
  2874. background: white;
  2875. border-width: 0 0 2px 0;
  2876. border-style: solid;
  2877. border-color: #99bbe8;
  2878. cursor: pointer; }
  2879. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2880. .x-grid-group-hd-collapsible .x-grid-group-title {
  2881. background: transparent no-repeat 0 -1px;
  2882. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2883. padding: 0 0 0 14px; }
  2884. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2885. .x-grid-group-title {
  2886. color: #3764a0;
  2887. font: bold 11px tahoma, arial, verdana, sans-serif; }
  2888. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2889. .x-grid-group-hd-collapsed .x-grid-group-title {
  2890. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2891. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2892. .x-grid-group-collapsed .x-grid-group-body {
  2893. display: none; }
  2894. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2895. .x-grid-group-collapsed .x-grid-group-title {
  2896. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2897. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2898. .x-group-by-icon {
  2899. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2900. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2901. .x-show-groups-icon {
  2902. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2903. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2904. .x-column-header-checkbox .x-column-header-inner {
  2905. padding: 0; }
  2906. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2907. .x-grid-cell-special .x-grid-cell-inner {
  2908. padding-left: 4px;
  2909. padding-right: 4px; }
  2910. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2911. .x-grid-row-checker,
  2912. .x-column-header-checkbox .x-column-header-text {
  2913. height: 14px;
  2914. width: 14px;
  2915. line-height: 0;
  2916. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  2917. background-position: -1px -1px;
  2918. background-repeat: no-repeat;
  2919. background-color: transparent; }
  2920. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2921. .x-column-header-checkbox .x-column-header-text {
  2922. display: block;
  2923. margin: 0 5px; }
  2924. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2925. .x-grid-hd-checker-on .x-column-header-text {
  2926. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2927. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2928. .x-grid-cell-row-checker .x-grid-cell-inner {
  2929. padding-top: 4px;
  2930. padding-bottom: 2px;
  2931. line-height: 14px; }
  2932. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2933. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  2934. padding-top: 3px; }
  2935. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2936. .x-grid-row-checker {
  2937. margin-left: 1px;
  2938. background-position: 50% -2px; }
  2939. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2940. .x-grid-row-selected .x-grid-row-checker,
  2941. .x-grid-row-checked .x-grid-row-checker {
  2942. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2943. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2944. .x-tbar-page-first {
  2945. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  2946. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2947. .x-tbar-loading {
  2948. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  2949. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2950. .x-tbar-page-last {
  2951. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  2952. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2953. .x-tbar-page-next {
  2954. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  2955. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2956. .x-tbar-page-prev {
  2957. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  2958. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2959. .x-item-disabled .x-tbar-loading {
  2960. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  2961. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2962. .x-item-disabled .x-tbar-page-first {
  2963. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  2964. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2965. .x-item-disabled .x-tbar-page-last {
  2966. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  2967. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2968. .x-item-disabled .x-tbar-page-next {
  2969. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  2970. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2971. .x-item-disabled .x-tbar-page-prev {
  2972. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  2973. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2974. .x-hmenu-sort-asc .x-menu-item-icon {
  2975. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  2976. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2977. .x-hmenu-sort-desc .x-menu-item-icon {
  2978. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  2979. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2980. .x-hmenu-lock .x-menu-item-icon {
  2981. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  2982. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2983. .x-hmenu-unlock .x-menu-item-icon {
  2984. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  2985. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2986. .x-group-by-icon {
  2987. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2988. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2989. .x-cols-icon .x-menu-item-icon {
  2990. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  2991. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2992. .x-show-groups-icon {
  2993. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2994. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2995. .x-grid-drop-indicator {
  2996. position: absolute;
  2997. height: 1px;
  2998. line-height: 0px;
  2999. background-color: #77BC71;
  3000. overflow: visible; }
  3001. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3002. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3003. position: absolute;
  3004. top: -8px;
  3005. left: -12px;
  3006. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  3007. height: 16px;
  3008. width: 16px; }
  3009. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3010. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3011. position: absolute;
  3012. top: -8px;
  3013. right: -11px;
  3014. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3015. height: 16px;
  3016. width: 16px; }
  3017. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3018. .x-ie6 .x-grid-drop-indicator-left {
  3019. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  3020. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3021. .x-ie6 .x-grid-drop-indicator-right {
  3022. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  3023. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3024. .x-grid-editor .x-form-text {
  3025. padding: 0 4px; }
  3026. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3027. .x-grid-editor .x-form-cb-wrap {
  3028. padding-top: 3px; }
  3029. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3030. .x-grid-row-editor {
  3031. position: absolute !important;
  3032. z-index: 1;
  3033. zoom: 1;
  3034. overflow: visible !important; }
  3035. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3036. .x-grid-row-editor .x-form-text {
  3037. padding: 0 2px; }
  3038. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3039. .x-grid-row-editor .x-form-cb-wrap {
  3040. padding-top: 0; }
  3041. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3042. .x-grid-row-editor .x-form-checkbox {
  3043. margin-left: -4px; }
  3044. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3045. .x-grid-row-editor .x-form-display-field {
  3046. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3047. padding-top: 0;
  3048. padding-left: 2px; }
  3049. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3050. .x-grid-row-editor .x-panel-body {
  3051. background-color: #eaf1fb;
  3052. border-top: 1px solid #99bce8 !important;
  3053. border-bottom: 1px solid #99bce8 !important; }
  3054. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3055. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3056. text-align: center; }
  3057. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3058. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3059. height: 19px; }
  3060. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3061. .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 {
  3062. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3063. height: 10px !important; }
  3064. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3065. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3066. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3067. height: 18px; }
  3068. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3069. .x-border-box .x-grid-editor .x-form-trigger,
  3070. .x-border-box .x-grid-row-editor .x-form-trigger {
  3071. height: 20px; }
  3072. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3073. .x-border-box .x-grid-editor .x-form-text,
  3074. .x-border-box .x-grid-row-editor .x-form-text {
  3075. height: 20px;
  3076. padding-bottom: 1px; }
  3077. /* line 818, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3078. .x-opera .x-grid-editor .x-form-text {
  3079. padding-left: 5px; }
  3080. /* line 821, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3081. .x-opera .x-grid-row-editor .x-form-text {
  3082. padding-left: 3px; }
  3083. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3084. .x-grid-row-editor-buttons {
  3085. background-color: #eaf1fb;
  3086. position: absolute;
  3087. bottom: -31px;
  3088. padding: 4px;
  3089. height: 32px; }
  3090. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3091. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3092. width: 192px;
  3093. height: 24px; }
  3094. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3095. .x-grid-row-editor-buttons-ml,
  3096. .x-grid-row-editor-buttons-mr,
  3097. .x-grid-row-editor-buttons-bl,
  3098. .x-grid-row-editor-buttons-br,
  3099. .x-grid-row-editor-buttons-bc {
  3100. position: absolute;
  3101. overflow: hidden; }
  3102. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3103. .x-grid-row-editor-buttons-bl,
  3104. .x-grid-row-editor-buttons-br {
  3105. width: 4px;
  3106. height: 4px;
  3107. bottom: 0px;
  3108. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  3109. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3110. .x-grid-row-editor-buttons-bl {
  3111. left: 0px;
  3112. background-position: 0px -16px; }
  3113. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3114. .x-grid-row-editor-buttons-br {
  3115. right: 0px;
  3116. background-position: 0px -20px; }
  3117. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3118. .x-grid-row-editor-buttons-bc {
  3119. position: absolute;
  3120. left: 4px;
  3121. bottom: 0px;
  3122. width: 192px;
  3123. height: 1px;
  3124. background-color: #99bce8; }
  3125. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3126. .x-grid-row-editor-buttons-ml,
  3127. .x-grid-row-editor-buttons-mr {
  3128. height: 27px;
  3129. width: 1px;
  3130. top: 1px;
  3131. background-color: #99bce8; }
  3132. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3133. .x-grid-row-editor-buttons-ml {
  3134. left: 0px; }
  3135. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3136. .x-grid-row-editor-buttons-mr {
  3137. background-position: 0px -20px;
  3138. right: 0px; }
  3139. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3140. .x-grid-row-editor-errors ul {
  3141. margin-left: 5px; }
  3142. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3143. .x-grid-row-editor-errors li {
  3144. list-style: disc;
  3145. margin-left: 15px; }
  3146. /*misc*/
  3147. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3148. .x-webkit *:focus {
  3149. outline: none !important; }
  3150. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3151. .x-form-item {
  3152. vertical-align: top;
  3153. table-layout: fixed; }
  3154. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3155. .x-autocontainer-form-item,
  3156. .x-anchor-form-item,
  3157. .x-vbox-form-item,
  3158. .x-checkboxgroup-form-item,
  3159. .x-table-form-item {
  3160. margin-bottom: 5px; }
  3161. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3162. .x-form-layout-table {
  3163. border-collapse: separate;
  3164. border-spacing: 0 2px; }
  3165. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3166. .x-form-item-body {
  3167. position: relative; }
  3168. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3169. .x-form-form-item td {
  3170. border-top: 1px solid transparent; }
  3171. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3172. .x-ie6 .x-form-layout-table {
  3173. border-collapse: collapse;
  3174. border-spacing: 0; }
  3175. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3176. .x-ie6 .x-form-form-item td {
  3177. border-top-width: 0; }
  3178. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3179. .x-ie6 td.x-form-item-pad {
  3180. height: 5px; }
  3181. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3182. .x-editor .x-form-item-body {
  3183. padding-bottom: 0; }
  3184. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3185. .x-form-item-label {
  3186. display: block;
  3187. padding: 3px 0 0;
  3188. font-size: 12px;
  3189. user-select: none;
  3190. -o-user-select: none;
  3191. -ms-user-select: none;
  3192. -moz-user-select: -moz-none;
  3193. -webkit-user-select: none;
  3194. cursor: default; }
  3195. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3196. .x-form-item-label-top {
  3197. display: block;
  3198. zoom: 1;
  3199. padding: 0 0 5px 0; }
  3200. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3201. .x-form-item-label-right {
  3202. text-align: right; }
  3203. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3204. .x-form-invalid-under {
  3205. padding: 2px 2px 2px 18px;
  3206. color: #c0272b;
  3207. font: normal 11px tahoma, arial, verdana, sans-serif;
  3208. line-height: 16px;
  3209. background: no-repeat 0 2px;
  3210. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3211. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3212. .x-form-invalid-icon {
  3213. width: 18px;
  3214. height: 14px;
  3215. background: no-repeat center center;
  3216. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3217. overflow: hidden; }
  3218. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3219. .x-form-invalid-icon ul {
  3220. display: block;
  3221. width: 18px; }
  3222. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3223. .x-form-invalid-icon ul li {
  3224. /* prevent inner elements from interfering with QuickTip hovering */
  3225. display: none; }
  3226. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3227. .x-lbl-top-err-icon {
  3228. margin-bottom: 4px; }
  3229. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3230. .x-form-field,
  3231. .x-form-display-field {
  3232. margin: 0 0 0 0;
  3233. font: normal 12px tahoma, arial, verdana, sans-serif;
  3234. color: black; }
  3235. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3236. .x-form-item-hidden {
  3237. margin: 0; }
  3238. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3239. .x-form-text,
  3240. textarea.x-form-field {
  3241. padding: 1px 3px;
  3242. background: repeat-x 0 0;
  3243. border: 1px solid;
  3244. background-color: white;
  3245. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3246. border-color: #b5b8c8; }
  3247. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3248. .x-form-text {
  3249. height: 18px;
  3250. line-height: 15px;
  3251. vertical-align: top; }
  3252. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3253. .x-ie8m .x-form-text {
  3254. line-height: 15px; }
  3255. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3256. .x-border-box .x-form-text {
  3257. height: 22px; }
  3258. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3259. textarea.x-form-field {
  3260. color: black;
  3261. overflow: auto;
  3262. height: auto;
  3263. line-height: normal;
  3264. background: repeat-x 0 0;
  3265. background-color: white;
  3266. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3267. resize: none; }
  3268. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3269. .x-border-box textarea.x-form-field {
  3270. height: auto; }
  3271. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3272. .x-safari.x-mac textarea.x-form-field {
  3273. margin-bottom: -2px; }
  3274. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3275. .x-form-focus,
  3276. textarea.x-form-focus {
  3277. border-color: #7eadd9; }
  3278. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3279. .x-form-invalid-field,
  3280. textarea.x-form-invalid-field {
  3281. background-color: white;
  3282. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3283. background-repeat: repeat-x;
  3284. background-position: bottom;
  3285. border-color: #cc3300; }
  3286. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3287. .x-form-item {
  3288. font: normal 12px tahoma, arial, verdana, sans-serif; }
  3289. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3290. .x-form-empty-field, textarea.x-form-empty-field {
  3291. color: gray; }
  3292. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3293. .x-webkit .x-form-empty-field {
  3294. line-height: 15px; }
  3295. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3296. .x-form-display-field {
  3297. padding-top: 3px; }
  3298. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3299. .x-field-default-toolbar .x-form-text {
  3300. height: 16px; }
  3301. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3302. .x-border-box .x-field-default-toolbar .x-form-text {
  3303. height: 20px; }
  3304. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3305. .x-field-default-toolbar .x-form-item-label-left {
  3306. padding-left: 4px; }
  3307. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3308. .x-fieldset {
  3309. border: 1px solid #b5b8c8;
  3310. padding: 10px;
  3311. margin-bottom: 10px;
  3312. display: block;
  3313. /* preserve margins in IE */
  3314. position: relative; }
  3315. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3316. .x-ie .x-fieldset {
  3317. padding-top: 0; }
  3318. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3319. .x-ie .x-fieldset .x-fieldset-body {
  3320. padding-top: 10px; }
  3321. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3322. .x-fieldset-header-checkbox {
  3323. line-height: 14px; }
  3324. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3325. .x-fieldset-header {
  3326. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  3327. color: #15428b;
  3328. padding: 0 3px 1px;
  3329. overflow: hidden; }
  3330. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3331. .x-fieldset-header .x-fieldset-header-text {
  3332. float: left;
  3333. padding: 1px 0; }
  3334. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3335. .x-fieldset-header .x-fieldset-header-text-collapsible {
  3336. cursor: pointer; }
  3337. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3338. .x-fieldset-header .x-form-item,
  3339. .x-fieldset-header .x-tool {
  3340. float: left;
  3341. margin: 1px 0 0 0; }
  3342. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3343. .x-fieldset-header .x-form-cb-wrap {
  3344. padding: 1px 0;
  3345. font-size: 0;
  3346. line-height: 0; }
  3347. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3348. .x-fieldset-with-title .x-fieldset-header-checkbox,
  3349. .x-fieldset-with-title .x-tool {
  3350. margin-right: 3px; }
  3351. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3352. .x-webkit .x-fieldset-header {
  3353. -webkit-padding-start: 3px;
  3354. -webkit-padding-end: 3px; }
  3355. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3356. .x-opera .x-fieldset-with-legend {
  3357. margin-top: -1px; }
  3358. /* line 78, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3359. .x-opera.x-mac .x-fieldset-header-text {
  3360. padding: 2px 0 0; }
  3361. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3362. .x-fieldset-collapsed .x-fieldset-body {
  3363. display: none; }
  3364. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3365. .x-fieldset-collapsed {
  3366. padding-bottom: 0 !important;
  3367. border-width: 1px 1px 0 1px !important;
  3368. border-left-color: transparent !important;
  3369. border-right-color: transparent !important; }
  3370. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3371. .x-fieldset {
  3372. overflow: hidden; }
  3373. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3374. .x-fieldset-bwrap {
  3375. overflow: hidden;
  3376. zoom: 1; }
  3377. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3378. .x-fieldset-body {
  3379. overflow: hidden; }
  3380. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3381. .x-form-file-wrap .x-form-text {
  3382. color: #777; }
  3383. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3384. .x-form-file-wrap .x-form-file-btn {
  3385. overflow: hidden; }
  3386. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3387. .x-form-file-wrap .x-form-file-input {
  3388. position: absolute;
  3389. top: -4px;
  3390. right: -2px;
  3391. height: 30px;
  3392. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  3393. opacity: 0;
  3394. /* Yes, there's actually a good reason for this...
  3395. * If the configured buttonText is set to something longer than the default,
  3396. * then it will quickly exceed the width of the hidden file input's "Browse..."
  3397. * button, so part of the custom button's clickable area will be covered by
  3398. * the hidden file input's text box instead. This results in a text-selection
  3399. * mouse cursor over that part of the button, at least in Firefox, which is
  3400. * confusing to a user. Giving the hidden file input a huge font-size makes
  3401. * the native button part very large so it will cover the whole clickable area.
  3402. */
  3403. font-size: 100px; }
  3404. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3405. .x-form-cb-wrap {
  3406. padding-top: 3px; }
  3407. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3408. .x-form-checkbox,
  3409. .x-form-radio {
  3410. vertical-align: -1px;
  3411. width: 13px;
  3412. height: 13px;
  3413. background: no-repeat;
  3414. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  3415. overflow: hidden;
  3416. padding: 0;
  3417. border: 0; }
  3418. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3419. .x-form-checkbox::-moz-focus-inner,
  3420. .x-form-radio::-moz-focus-inner {
  3421. padding: 0;
  3422. border: 0; }
  3423. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3424. .x-form-cb-checked .x-form-checkbox,
  3425. .x-form-cb-checked .x-form-radio {
  3426. background-position: 0 -13px; }
  3427. /* Focused */
  3428. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3429. .x-form-cb-focus {
  3430. background-position: -13px 0; }
  3431. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3432. .x-form-cb-checked .x-form-cb-focus {
  3433. background-position: -13px -13px; }
  3434. /* Radios */
  3435. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3436. .x-form-radio {
  3437. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  3438. /* boxLabel */
  3439. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3440. .x-form-cb-label-before {
  3441. margin-right: 4px; }
  3442. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3443. .x-form-cb-label-after {
  3444. margin-left: 4px; }
  3445. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3446. .x-form-checkboxgroup-body {
  3447. padding: 1px 4px 1px 4px; }
  3448. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3449. .x-form-invalid .x-form-checkboxgroup-body {
  3450. border: 1px solid #c30!important;
  3451. background: transparent repeat-x bottom;
  3452. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3453. padding: 1px 3px 0 3px; }
  3454. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3455. .x-check-group-alt {
  3456. background: #d1ddef;
  3457. border-top: 1px dotted #b5b8c8;
  3458. border-bottom: 1px dotted #b5b8c8; }
  3459. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3460. .x-form-check-group-label {
  3461. color: #333;
  3462. border-bottom: 1px solid #333;
  3463. margin: 0 30px 5px 0;
  3464. padding: 2px; }
  3465. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3466. .x-form-trigger-wrap {
  3467. vertical-align: top; }
  3468. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3469. .x-form-trigger {
  3470. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  3471. background-position: 0 0;
  3472. width: 17px;
  3473. height: 21px;
  3474. border-bottom: 1px solid #b5b8c8;
  3475. cursor: pointer;
  3476. cursor: hand;
  3477. overflow: hidden; }
  3478. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3479. .x-border-box .x-form-trigger {
  3480. height: 22px; }
  3481. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3482. .x-field-default-toolbar .x-form-trigger {
  3483. height: 19px; }
  3484. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3485. .x-border-box .x-field-default-toolbar .x-form-trigger {
  3486. height: 20px; }
  3487. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3488. .x-form-trigger-over {
  3489. background-position: -17px 0;
  3490. border-bottom-color: #7eadd9; }
  3491. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3492. .x-form-trigger-wrap-focus .x-form-trigger {
  3493. background-position: -51px 0;
  3494. border-bottom-color: #7eadd9; }
  3495. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3496. .x-form-trigger-wrap-focus .x-form-trigger-over {
  3497. background-position: -68px 0;
  3498. border-bottom-color: null; }
  3499. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3500. .x-form-trigger-click,
  3501. .x-form-trigger-wrap-focus .x-form-trigger-click {
  3502. background-position: -34px 0;
  3503. border-bottom-color: null; }
  3504. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3505. .x-form-trigger-icon {
  3506. height: 16px;
  3507. background-repeat: no-repeat;
  3508. background-position: 7px 6px; }
  3509. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3510. .x-pickerfield-open .x-form-field {
  3511. -moz-border-radius-bottomleft: 0;
  3512. -webkit-border-bottom-left-radius: 0;
  3513. -o-border-bottom-left-radius: 0;
  3514. -ms-border-bottom-left-radius: 0;
  3515. -khtml-border-bottom-left-radius: 0;
  3516. border-bottom-left-radius: 0;
  3517. -moz-border-radius-bottomright: 0;
  3518. -webkit-border-bottom-right-radius: 0;
  3519. -o-border-bottom-right-radius: 0;
  3520. -ms-border-bottom-right-radius: 0;
  3521. -khtml-border-bottom-right-radius: 0;
  3522. border-bottom-right-radius: 0; }
  3523. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3524. .x-pickerfield-open-above .x-form-field {
  3525. -moz-border-radius-bottomleft: 3px;
  3526. -webkit-border-bottom-left-radius: 3px;
  3527. -o-border-bottom-left-radius: 3px;
  3528. -ms-border-bottom-left-radius: 3px;
  3529. -khtml-border-bottom-left-radius: 3px;
  3530. border-bottom-left-radius: 3px;
  3531. -moz-border-radius-topleft: 0;
  3532. -webkit-border-top-left-radius: 0;
  3533. -o-border-top-left-radius: 0;
  3534. -ms-border-top-left-radius: 0;
  3535. -khtml-border-top-left-radius: 0;
  3536. border-top-left-radius: 0;
  3537. -moz-border-radius-topright: 0;
  3538. -webkit-border-top-right-radius: 0;
  3539. -o-border-top-right-radius: 0;
  3540. -ms-border-top-right-radius: 0;
  3541. -khtml-border-top-right-radius: 0;
  3542. border-top-right-radius: 0; }
  3543. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3544. .x-form-arrow-trigger .x-form-trigger-icon {
  3545. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  3546. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3547. .x-form-date-trigger {
  3548. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  3549. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3550. .x-form-trigger-wrap .x-form-spinner-up,
  3551. .x-form-trigger-wrap .x-form-spinner-down {
  3552. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  3553. width: 17px !important;
  3554. height: 11px !important;
  3555. font-size: 0;
  3556. /*for IE*/
  3557. border-bottom: 0; }
  3558. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3559. .x-form-trigger-wrap .x-form-spinner-down {
  3560. background-position: 0 -11px; }
  3561. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3562. .x-form-trigger-wrap-focus .x-form-spinner-down {
  3563. background-position: -51px -11px; }
  3564. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3565. .x-form-trigger-wrap .x-form-spinner-down-over {
  3566. background-position: -17px -11px; }
  3567. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3568. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3569. background-position: -68px -11px; }
  3570. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3571. .x-form-trigger-wrap .x-form-spinner-down-click {
  3572. background-position: -34px -11px; }
  3573. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3574. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  3575. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3576. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3577. height: 10px !important; }
  3578. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3579. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3580. background-position: 0 -10px; }
  3581. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3582. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  3583. background-position: -51px -10px; }
  3584. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3585. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  3586. background-position: -17px -10px; }
  3587. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3588. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3589. background-position: -68px -10px; }
  3590. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3591. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  3592. background-position: -34px -10px; }
  3593. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3594. .x-trigger-noedit {
  3595. cursor: pointer;
  3596. cursor: hand; }
  3597. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3598. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  3599. cursor: auto; }
  3600. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3601. .x-form-clear-trigger {
  3602. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  3603. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3604. .x-form-search-trigger {
  3605. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  3606. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3607. .x-html-editor-wrap {
  3608. border: 1px solid #b5b8c8; }
  3609. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3610. .x-html-editor-wrap .x-toolbar {
  3611. border-top-width: 0;
  3612. border-left-width: 0;
  3613. border-right-width: 0; }
  3614. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3615. .x-html-editor-wrap textarea {
  3616. background-color: white; }
  3617. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3618. .x-html-editor-tb .x-btn-text {
  3619. background: transparent no-repeat;
  3620. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3621. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3622. .x-html-editor-tb .x-edit-bold,
  3623. .x-menu-item img.x-edit-bold {
  3624. background-position: 0 0;
  3625. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3626. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3627. .x-html-editor-tb .x-edit-italic,
  3628. .x-menu-item img.x-edit-italic {
  3629. background-position: -16px 0;
  3630. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3631. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3632. .x-html-editor-tb .x-edit-underline,
  3633. .x-menu-item img.x-edit-underline {
  3634. background-position: -32px 0;
  3635. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3636. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3637. .x-html-editor-tb .x-edit-forecolor,
  3638. .x-menu-item img.x-edit-forecolor {
  3639. background-position: -160px 0;
  3640. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3641. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3642. .x-html-editor-tb .x-edit-backcolor,
  3643. .x-menu-item img.x-edit-backcolor {
  3644. background-position: -176px 0;
  3645. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3646. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3647. .x-html-editor-tb .x-edit-justifyleft,
  3648. .x-menu-item img.x-edit-justifyleft {
  3649. background-position: -112px 0;
  3650. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3651. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3652. .x-html-editor-tb .x-edit-justifycenter,
  3653. .x-menu-item img.x-edit-justifycenter {
  3654. background-position: -128px 0;
  3655. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3656. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3657. .x-html-editor-tb .x-edit-justifyright,
  3658. .x-menu-item img.x-edit-justifyright {
  3659. background-position: -144px 0;
  3660. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3661. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3662. .x-html-editor-tb .x-edit-insertorderedlist,
  3663. .x-menu-item img.x-edit-insertorderedlist {
  3664. background-position: -80px 0;
  3665. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3666. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3667. .x-html-editor-tb .x-edit-insertunorderedlist,
  3668. .x-menu-item img.x-edit-insertunorderedlist {
  3669. background-position: -96px 0;
  3670. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3671. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3672. .x-html-editor-tb .x-edit-increasefontsize,
  3673. .x-menu-item img.x-edit-increasefontsize {
  3674. background-position: -48px 0;
  3675. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3676. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3677. .x-html-editor-tb .x-edit-decreasefontsize,
  3678. .x-menu-item img.x-edit-decreasefontsize {
  3679. background-position: -64px 0;
  3680. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3681. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3682. .x-html-editor-tb .x-edit-sourceedit,
  3683. .x-menu-item img.x-edit-sourceedit {
  3684. background-position: -192px 0;
  3685. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3686. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3687. .x-html-editor-tb .x-edit-createlink,
  3688. .x-menu-item img.x-edit-createlink {
  3689. background-position: -208px 0;
  3690. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3691. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3692. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  3693. padding: 5px;
  3694. padding-bottom: 1px; }
  3695. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3696. .x-html-editor-tb .x-toolbar {
  3697. position: static !important; }
  3698. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3699. .x-html-editor-tb .x-font-select {
  3700. font-size: 11px; }
  3701. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3702. .x-html-editor-wrap textarea {
  3703. border: 0;
  3704. padding: 3px 2px;
  3705. overflow: auto; }
  3706. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3707. .x-panel,
  3708. .x-plain {
  3709. overflow: hidden;
  3710. position: relative; }
  3711. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3712. .x-panel-header-horizontal {
  3713. padding: 3px 5px 4px; }
  3714. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3715. .x-panel-header-vertical {
  3716. padding: 5px 4px; }
  3717. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3718. .x-panel-header-icon,
  3719. .x-window-header-icon {
  3720. width: 16px;
  3721. height: 16px;
  3722. background-repeat: no-repeat;
  3723. background-position: 0 0;
  3724. vertical-align: middle;
  3725. margin-right: 4px; }
  3726. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3727. .x-vertical .x-panel-header-icon,
  3728. .x-vertical .x-window-header-icon {
  3729. margin: 0 0 4px; }
  3730. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3731. .x-panel-header-draggable,
  3732. .x-panel-header-draggable .x-panel-header-text,
  3733. .x-window-header-draggable,
  3734. .x-window-header-draggable .x-window-header-text {
  3735. cursor: move; }
  3736. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3737. .x-panel-ghost, .x-window-ghost {
  3738. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  3739. opacity: 0.65;
  3740. cursor: move; }
  3741. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3742. .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 {
  3743. width: 100%; }
  3744. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3745. .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 {
  3746. height: 100%; }
  3747. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3748. .x-panel-header-text-container {
  3749. overflow: hidden;
  3750. -o-text-overflow: ellipsis;
  3751. text-overflow: ellipsis; }
  3752. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3753. .x-panel-header-text {
  3754. user-select: none;
  3755. -o-user-select: none;
  3756. -ms-user-select: none;
  3757. -moz-user-select: -moz-none;
  3758. -webkit-user-select: none;
  3759. cursor: default;
  3760. white-space: nowrap; }
  3761. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3762. .x-panel-header-left .x-vml-base,
  3763. .x-panel-header-right .x-vml-base {
  3764. left: -3px !important; }
  3765. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3766. .x-panel-body {
  3767. overflow: hidden;
  3768. position: relative;
  3769. font-size: 12px; }
  3770. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3771. .x-panel-header-vertical .x-surface {
  3772. padding-left: 1px; }
  3773. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3774. .x-opera .x-panel-header-vertical .x-surface,
  3775. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  3776. padding-left: 2px; }
  3777. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3778. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  3779. border-bottom-width: 1px !important; }
  3780. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3781. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  3782. border-left-width: 1px !important; }
  3783. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3784. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  3785. border-top-width: 1px !important; }
  3786. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3787. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  3788. border-right-width: 1px !important; }
  3789. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3790. .x-nlg .x-panel-header-vertical .x-frame-mc {
  3791. background-repeat: repeat-y; }
  3792. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3793. .x-panel-default {
  3794. border-color: #99bce8; }
  3795. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3796. .x-panel-header-default {
  3797. font-size: 11px;
  3798. border-color: #99bce8;
  3799. border-width: 1px;
  3800. border-style: solid; }
  3801. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3802. .x-nlg .x-panel-header-default-top {
  3803. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3804. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3805. .x-nlg .x-panel-header-default-bottom {
  3806. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3807. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3808. .x-nlg .x-panel-header-default-left {
  3809. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3810. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3811. .x-nlg .x-panel-header-default-right {
  3812. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3813. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3814. .x-nlg .x-panel-header-default-right {
  3815. background-position: top right; }
  3816. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3817. .x-nlg .x-panel-header-default-bottom {
  3818. background-position: bottom left; }
  3819. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3820. .x-panel-header-text-default {
  3821. color: #04408c;
  3822. font-size: 11px;
  3823. font-weight: bold;
  3824. font-family: tahoma, arial, verdana, sans-serif;
  3825. line-height: 17px; }
  3826. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3827. .x-panel-body-default {
  3828. background: white;
  3829. border-color: #99bce8;
  3830. color: black;
  3831. border-width: 1px;
  3832. border-style: solid; }
  3833. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3834. .x-panel-collapsed .x-window-header-default,
  3835. .x-panel-collapsed .x-panel-header-default {
  3836. border-color: #99bce8; }
  3837. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3838. .x-panel-header-default-vertical {
  3839. border-color: #99bce8; }
  3840. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3841. .x-panel-collapsed .x-panel-header-default-top {
  3842. -moz-border-radius-bottomleft: null;
  3843. -webkit-border-bottom-left-radius: null;
  3844. -o-border-bottom-left-radius: null;
  3845. -ms-border-bottom-left-radius: null;
  3846. -khtml-border-bottom-left-radius: null;
  3847. border-bottom-left-radius: null;
  3848. -moz-border-radius-bottomright: null;
  3849. -webkit-border-bottom-right-radius: null;
  3850. -o-border-bottom-right-radius: null;
  3851. -ms-border-bottom-right-radius: null;
  3852. -khtml-border-bottom-right-radius: null;
  3853. border-bottom-right-radius: null; }
  3854. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3855. .x-panel-collapsed .x-panel-header-default-right {
  3856. -moz-border-radius-topleft: null;
  3857. -webkit-border-top-left-radius: null;
  3858. -o-border-top-left-radius: null;
  3859. -ms-border-top-left-radius: null;
  3860. -khtml-border-top-left-radius: null;
  3861. border-top-left-radius: null;
  3862. -moz-border-radius-bottomleft: null;
  3863. -webkit-border-bottom-left-radius: null;
  3864. -o-border-bottom-left-radius: null;
  3865. -ms-border-bottom-left-radius: null;
  3866. -khtml-border-bottom-left-radius: null;
  3867. border-bottom-left-radius: null; }
  3868. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3869. .x-panel-collapsed .x-panel-header-default-bottom {
  3870. -moz-border-radius-topleft: null;
  3871. -webkit-border-top-left-radius: null;
  3872. -o-border-top-left-radius: null;
  3873. -ms-border-top-left-radius: null;
  3874. -khtml-border-top-left-radius: null;
  3875. border-top-left-radius: null;
  3876. -moz-border-radius-topright: null;
  3877. -webkit-border-top-right-radius: null;
  3878. -o-border-top-right-radius: null;
  3879. -ms-border-top-right-radius: null;
  3880. -khtml-border-top-right-radius: null;
  3881. border-top-right-radius: null; }
  3882. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3883. .x-panel-collapsed .x-panel-header-default-left {
  3884. -moz-border-radius-topright: null;
  3885. -webkit-border-top-right-radius: null;
  3886. -o-border-top-right-radius: null;
  3887. -ms-border-top-right-radius: null;
  3888. -khtml-border-top-right-radius: null;
  3889. border-top-right-radius: null;
  3890. -moz-border-radius-bottomright: null;
  3891. -webkit-border-bottom-right-radius: null;
  3892. -o-border-bottom-right-radius: null;
  3893. -ms-border-bottom-right-radius: null;
  3894. -khtml-border-bottom-right-radius: null;
  3895. border-bottom-right-radius: null; }
  3896. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3897. .x-panel-header-default-top {
  3898. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3899. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3900. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3901. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  3902. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3903. .x-panel-header-default-right {
  3904. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3905. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3906. -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3907. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  3908. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3909. .x-panel-header-default-bottom {
  3910. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3911. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3912. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3913. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  3914. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3915. .x-panel-header-default-left {
  3916. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3917. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3918. -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3919. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  3920. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3921. .x-panel-header-default-right-tc,
  3922. .x-panel-header-default-right-mc,
  3923. .x-panel-header-default-right-bc {
  3924. background-position: right 0; }
  3925. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3926. .x-panel-header-default-bottom-tc,
  3927. .x-panel-header-default-bottom-mc,
  3928. .x-panel-header-default-bottom-bc {
  3929. background-position: 0 bottom; }
  3930. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3931. .x-panel-default-framed {
  3932. border-color: #99bce8; }
  3933. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3934. .x-panel-header-default-framed {
  3935. font-size: 11px;
  3936. border-color: #99bce8;
  3937. border-width: 1px;
  3938. border-style: solid; }
  3939. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3940. .x-nlg .x-panel-header-default-framed-top {
  3941. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  3942. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3943. .x-nlg .x-panel-header-default-framed-bottom {
  3944. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  3945. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3946. .x-nlg .x-panel-header-default-framed-left {
  3947. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  3948. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3949. .x-nlg .x-panel-header-default-framed-right {
  3950. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  3951. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3952. .x-nlg .x-panel-header-default-framed-right {
  3953. background-position: top right; }
  3954. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3955. .x-nlg .x-panel-header-default-framed-bottom {
  3956. background-position: bottom left; }
  3957. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3958. .x-nbr .x-panel-header-default-framed {
  3959. background-image: none; }
  3960. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3961. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  3962. .x-nlg.x-opera .x-panel-header-default-framed-top,
  3963. .x-nlg.x-safari .x-panel-header-default-framed-top {
  3964. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3965. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3966. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  3967. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  3968. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  3969. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3970. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3971. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  3972. .x-nlg.x-opera .x-panel-header-default-framed-left,
  3973. .x-nlg.x-safari .x-panel-header-default-framed-left {
  3974. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3975. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3976. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  3977. .x-nlg.x-opera .x-panel-header-default-framed-right,
  3978. .x-nlg.x-safari .x-panel-header-default-framed-right {
  3979. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3980. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3981. .x-panel-header-text-default-framed {
  3982. color: #04408c;
  3983. font-size: 11px;
  3984. font-weight: bold;
  3985. font-family: tahoma, arial, verdana, sans-serif;
  3986. line-height: 17px; }
  3987. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3988. .x-panel-body-default-framed {
  3989. background: #dfe9f6;
  3990. border-color: #99bce8;
  3991. color: black;
  3992. border-width: 0;
  3993. border-style: solid; }
  3994. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3995. .x-panel-collapsed .x-window-header-default-framed,
  3996. .x-panel-collapsed .x-panel-header-default-framed {
  3997. border-color: #99bce8; }
  3998. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3999. .x-panel-header-default-framed-vertical {
  4000. border-color: #99bce8; }
  4001. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4002. .x-panel-default-framed {
  4003. -moz-border-radius: 4px;
  4004. -webkit-border-radius: 4px;
  4005. -o-border-radius: 4px;
  4006. -ms-border-radius: 4px;
  4007. -khtml-border-radius: 4px;
  4008. border-radius: 4px;
  4009. padding: 4px 4px 4px 4px;
  4010. border-width: 1px;
  4011. border-style: solid;
  4012. background-color: #dfe9f6; }
  4013. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4014. .x-nlg .x-panel-default-framed-mc {
  4015. background-color: #dfe9f6; }
  4016. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4017. .x-panel-header-default-framed-top {
  4018. -moz-border-radius-topleft: 4px;
  4019. -webkit-border-top-left-radius: 4px;
  4020. -o-border-top-left-radius: 4px;
  4021. -ms-border-top-left-radius: 4px;
  4022. -khtml-border-top-left-radius: 4px;
  4023. border-top-left-radius: 4px;
  4024. -moz-border-radius-topright: 4px;
  4025. -webkit-border-top-right-radius: 4px;
  4026. -o-border-top-right-radius: 4px;
  4027. -ms-border-top-right-radius: 4px;
  4028. -khtml-border-top-right-radius: 4px;
  4029. border-top-right-radius: 4px;
  4030. -moz-border-radius-bottomright: 0;
  4031. -webkit-border-bottom-right-radius: 0;
  4032. -o-border-bottom-right-radius: 0;
  4033. -ms-border-bottom-right-radius: 0;
  4034. -khtml-border-bottom-right-radius: 0;
  4035. border-bottom-right-radius: 0;
  4036. -moz-border-radius-bottomleft: 0;
  4037. -webkit-border-bottom-left-radius: 0;
  4038. -o-border-bottom-left-radius: 0;
  4039. -ms-border-bottom-left-radius: 0;
  4040. -khtml-border-bottom-left-radius: 0;
  4041. border-bottom-left-radius: 0;
  4042. padding: 3px 5px 4px 5px;
  4043. border-width: 1px 1px 0 1px;
  4044. border-style: solid;
  4045. background-color: #cbddf3; }
  4046. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4047. .x-nlg .x-panel-header-default-framed-top-mc {
  4048. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4049. background-color: #cbddf3; }
  4050. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4051. .x-panel-header-default-framed-right {
  4052. -moz-border-radius-topleft: 0;
  4053. -webkit-border-top-left-radius: 0;
  4054. -o-border-top-left-radius: 0;
  4055. -ms-border-top-left-radius: 0;
  4056. -khtml-border-top-left-radius: 0;
  4057. border-top-left-radius: 0;
  4058. -moz-border-radius-topright: 4px;
  4059. -webkit-border-top-right-radius: 4px;
  4060. -o-border-top-right-radius: 4px;
  4061. -ms-border-top-right-radius: 4px;
  4062. -khtml-border-top-right-radius: 4px;
  4063. border-top-right-radius: 4px;
  4064. -moz-border-radius-bottomright: 4px;
  4065. -webkit-border-bottom-right-radius: 4px;
  4066. -o-border-bottom-right-radius: 4px;
  4067. -ms-border-bottom-right-radius: 4px;
  4068. -khtml-border-bottom-right-radius: 4px;
  4069. border-bottom-right-radius: 4px;
  4070. -moz-border-radius-bottomleft: 0;
  4071. -webkit-border-bottom-left-radius: 0;
  4072. -o-border-bottom-left-radius: 0;
  4073. -ms-border-bottom-left-radius: 0;
  4074. -khtml-border-bottom-left-radius: 0;
  4075. border-bottom-left-radius: 0;
  4076. padding: 5px 4px 5px 4px;
  4077. border-width: 1px 1px 1px 0;
  4078. border-style: solid;
  4079. background-color: #cbddf3; }
  4080. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4081. .x-nlg .x-panel-header-default-framed-right-mc {
  4082. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4083. background-color: #cbddf3; }
  4084. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4085. .x-panel-header-default-framed-bottom {
  4086. -moz-border-radius-topleft: 0;
  4087. -webkit-border-top-left-radius: 0;
  4088. -o-border-top-left-radius: 0;
  4089. -ms-border-top-left-radius: 0;
  4090. -khtml-border-top-left-radius: 0;
  4091. border-top-left-radius: 0;
  4092. -moz-border-radius-topright: 0;
  4093. -webkit-border-top-right-radius: 0;
  4094. -o-border-top-right-radius: 0;
  4095. -ms-border-top-right-radius: 0;
  4096. -khtml-border-top-right-radius: 0;
  4097. border-top-right-radius: 0;
  4098. -moz-border-radius-bottomright: 4px;
  4099. -webkit-border-bottom-right-radius: 4px;
  4100. -o-border-bottom-right-radius: 4px;
  4101. -ms-border-bottom-right-radius: 4px;
  4102. -khtml-border-bottom-right-radius: 4px;
  4103. border-bottom-right-radius: 4px;
  4104. -moz-border-radius-bottomleft: 4px;
  4105. -webkit-border-bottom-left-radius: 4px;
  4106. -o-border-bottom-left-radius: 4px;
  4107. -ms-border-bottom-left-radius: 4px;
  4108. -khtml-border-bottom-left-radius: 4px;
  4109. border-bottom-left-radius: 4px;
  4110. padding: 3px 5px 4px 5px;
  4111. border-width: 0 1px 1px 1px;
  4112. border-style: solid;
  4113. background-color: #cbddf3; }
  4114. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4115. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4116. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4117. background-color: #cbddf3; }
  4118. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4119. .x-panel-header-default-framed-left {
  4120. -moz-border-radius-topleft: 4px;
  4121. -webkit-border-top-left-radius: 4px;
  4122. -o-border-top-left-radius: 4px;
  4123. -ms-border-top-left-radius: 4px;
  4124. -khtml-border-top-left-radius: 4px;
  4125. border-top-left-radius: 4px;
  4126. -moz-border-radius-topright: 0;
  4127. -webkit-border-top-right-radius: 0;
  4128. -o-border-top-right-radius: 0;
  4129. -ms-border-top-right-radius: 0;
  4130. -khtml-border-top-right-radius: 0;
  4131. border-top-right-radius: 0;
  4132. -moz-border-radius-bottomright: 0;
  4133. -webkit-border-bottom-right-radius: 0;
  4134. -o-border-bottom-right-radius: 0;
  4135. -ms-border-bottom-right-radius: 0;
  4136. -khtml-border-bottom-right-radius: 0;
  4137. border-bottom-right-radius: 0;
  4138. -moz-border-radius-bottomleft: 4px;
  4139. -webkit-border-bottom-left-radius: 4px;
  4140. -o-border-bottom-left-radius: 4px;
  4141. -ms-border-bottom-left-radius: 4px;
  4142. -khtml-border-bottom-left-radius: 4px;
  4143. border-bottom-left-radius: 4px;
  4144. padding: 5px 4px 5px 4px;
  4145. border-width: 1px 0 1px 1px;
  4146. border-style: solid;
  4147. background-color: #cbddf3; }
  4148. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4149. .x-nlg .x-panel-header-default-framed-left-mc {
  4150. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4151. background-color: #cbddf3; }
  4152. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4153. .x-panel-header-default-framed-top {
  4154. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4155. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4156. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4157. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4158. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4159. .x-panel-header-default-framed-right {
  4160. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4161. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4162. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4163. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  4164. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4165. .x-panel-header-default-framed-bottom {
  4166. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4167. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4168. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4169. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4170. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4171. .x-panel-header-default-framed-left {
  4172. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4173. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4174. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4175. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4176. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4177. .x-panel .x-panel-header-default-framed-top {
  4178. border-bottom-width: 1px !important; }
  4179. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4180. .x-panel .x-panel-header-default-framed-right {
  4181. border-left-width: 1px !important; }
  4182. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4183. .x-panel .x-panel-header-default-framed-bottom {
  4184. border-top-width: 1px !important; }
  4185. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4186. .x-panel .x-panel-header-default-framed-left {
  4187. border-right-width: 1px !important; }
  4188. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4189. .x-panel-header-default-framed-collapsed {
  4190. -moz-border-radius: 4px;
  4191. -webkit-border-radius: 4px;
  4192. -o-border-radius: 4px;
  4193. -ms-border-radius: 4px;
  4194. -khtml-border-radius: 4px;
  4195. border-radius: 4px; }
  4196. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4197. .x-panel-header-default-framed-collapsed-top {
  4198. -moz-border-radius-topleft: 4px;
  4199. -webkit-border-top-left-radius: 4px;
  4200. -o-border-top-left-radius: 4px;
  4201. -ms-border-top-left-radius: 4px;
  4202. -khtml-border-top-left-radius: 4px;
  4203. border-top-left-radius: 4px;
  4204. -moz-border-radius-topright: 4px;
  4205. -webkit-border-top-right-radius: 4px;
  4206. -o-border-top-right-radius: 4px;
  4207. -ms-border-top-right-radius: 4px;
  4208. -khtml-border-top-right-radius: 4px;
  4209. border-top-right-radius: 4px;
  4210. -moz-border-radius-bottomright: 4px;
  4211. -webkit-border-bottom-right-radius: 4px;
  4212. -o-border-bottom-right-radius: 4px;
  4213. -ms-border-bottom-right-radius: 4px;
  4214. -khtml-border-bottom-right-radius: 4px;
  4215. border-bottom-right-radius: 4px;
  4216. -moz-border-radius-bottomleft: 4px;
  4217. -webkit-border-bottom-left-radius: 4px;
  4218. -o-border-bottom-left-radius: 4px;
  4219. -ms-border-bottom-left-radius: 4px;
  4220. -khtml-border-bottom-left-radius: 4px;
  4221. border-bottom-left-radius: 4px;
  4222. padding: 3px 5px 4px 5px;
  4223. border-width: 1px;
  4224. border-style: solid;
  4225. background-color: #cbddf3; }
  4226. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4227. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  4228. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  4229. background-color: #cbddf3; }
  4230. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4231. .x-panel-header-default-framed-collapsed-right {
  4232. -moz-border-radius-topleft: 4px;
  4233. -webkit-border-top-left-radius: 4px;
  4234. -o-border-top-left-radius: 4px;
  4235. -ms-border-top-left-radius: 4px;
  4236. -khtml-border-top-left-radius: 4px;
  4237. border-top-left-radius: 4px;
  4238. -moz-border-radius-topright: 4px;
  4239. -webkit-border-top-right-radius: 4px;
  4240. -o-border-top-right-radius: 4px;
  4241. -ms-border-top-right-radius: 4px;
  4242. -khtml-border-top-right-radius: 4px;
  4243. border-top-right-radius: 4px;
  4244. -moz-border-radius-bottomright: 4px;
  4245. -webkit-border-bottom-right-radius: 4px;
  4246. -o-border-bottom-right-radius: 4px;
  4247. -ms-border-bottom-right-radius: 4px;
  4248. -khtml-border-bottom-right-radius: 4px;
  4249. border-bottom-right-radius: 4px;
  4250. -moz-border-radius-bottomleft: 4px;
  4251. -webkit-border-bottom-left-radius: 4px;
  4252. -o-border-bottom-left-radius: 4px;
  4253. -ms-border-bottom-left-radius: 4px;
  4254. -khtml-border-bottom-left-radius: 4px;
  4255. border-bottom-left-radius: 4px;
  4256. padding: 5px 4px 5px 4px;
  4257. border-width: 1px;
  4258. border-style: solid;
  4259. background-color: #cbddf3; }
  4260. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4261. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  4262. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  4263. background-color: #cbddf3; }
  4264. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4265. .x-panel-header-default-framed-collapsed-bottom {
  4266. -moz-border-radius-topleft: 4px;
  4267. -webkit-border-top-left-radius: 4px;
  4268. -o-border-top-left-radius: 4px;
  4269. -ms-border-top-left-radius: 4px;
  4270. -khtml-border-top-left-radius: 4px;
  4271. border-top-left-radius: 4px;
  4272. -moz-border-radius-topright: 4px;
  4273. -webkit-border-top-right-radius: 4px;
  4274. -o-border-top-right-radius: 4px;
  4275. -ms-border-top-right-radius: 4px;
  4276. -khtml-border-top-right-radius: 4px;
  4277. border-top-right-radius: 4px;
  4278. -moz-border-radius-bottomright: 4px;
  4279. -webkit-border-bottom-right-radius: 4px;
  4280. -o-border-bottom-right-radius: 4px;
  4281. -ms-border-bottom-right-radius: 4px;
  4282. -khtml-border-bottom-right-radius: 4px;
  4283. border-bottom-right-radius: 4px;
  4284. -moz-border-radius-bottomleft: 4px;
  4285. -webkit-border-bottom-left-radius: 4px;
  4286. -o-border-bottom-left-radius: 4px;
  4287. -ms-border-bottom-left-radius: 4px;
  4288. -khtml-border-bottom-left-radius: 4px;
  4289. border-bottom-left-radius: 4px;
  4290. padding: 3px 5px 4px 5px;
  4291. border-width: 1px;
  4292. border-style: solid;
  4293. background-color: #cbddf3; }
  4294. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4295. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  4296. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  4297. background-color: #cbddf3; }
  4298. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4299. .x-panel-header-default-framed-collapsed-left {
  4300. -moz-border-radius-topleft: 4px;
  4301. -webkit-border-top-left-radius: 4px;
  4302. -o-border-top-left-radius: 4px;
  4303. -ms-border-top-left-radius: 4px;
  4304. -khtml-border-top-left-radius: 4px;
  4305. border-top-left-radius: 4px;
  4306. -moz-border-radius-topright: 4px;
  4307. -webkit-border-top-right-radius: 4px;
  4308. -o-border-top-right-radius: 4px;
  4309. -ms-border-top-right-radius: 4px;
  4310. -khtml-border-top-right-radius: 4px;
  4311. border-top-right-radius: 4px;
  4312. -moz-border-radius-bottomright: 4px;
  4313. -webkit-border-bottom-right-radius: 4px;
  4314. -o-border-bottom-right-radius: 4px;
  4315. -ms-border-bottom-right-radius: 4px;
  4316. -khtml-border-bottom-right-radius: 4px;
  4317. border-bottom-right-radius: 4px;
  4318. -moz-border-radius-bottomleft: 4px;
  4319. -webkit-border-bottom-left-radius: 4px;
  4320. -o-border-bottom-left-radius: 4px;
  4321. -ms-border-bottom-left-radius: 4px;
  4322. -khtml-border-bottom-left-radius: 4px;
  4323. border-bottom-left-radius: 4px;
  4324. padding: 5px 4px 5px 4px;
  4325. border-width: 1px;
  4326. border-style: solid;
  4327. background-color: #cbddf3; }
  4328. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4329. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  4330. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  4331. background-color: #cbddf3; }
  4332. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4333. .x-panel-header-default-framed-right-tc,
  4334. .x-panel-header-default-framed-right-mc,
  4335. .x-panel-header-default-framed-right-bc {
  4336. background-position: right 0; }
  4337. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4338. .x-panel-header-default-framed-bottom-tc,
  4339. .x-panel-header-default-framed-bottom-mc,
  4340. .x-panel-header-default-framed-bottom-bc {
  4341. background-position: 0 bottom; }
  4342. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4343. .x-panel-header-plain,
  4344. .x-panel-body-plain {
  4345. border: 0;
  4346. padding: 0; }
  4347. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4348. .x-tip {
  4349. position: absolute;
  4350. overflow: visible;
  4351. /*pointer needs to be able to stick out*/
  4352. border-color: #8eaace; }
  4353. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4354. .x-tip .x-tip-header .x-box-item {
  4355. padding: 3px 3px 0; }
  4356. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4357. .x-tip .x-tip-header .x-tool {
  4358. padding: 0px 1px 0 0 !important; }
  4359. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4360. .x-tip {
  4361. -moz-border-radius: 3px;
  4362. -webkit-border-radius: 3px;
  4363. -o-border-radius: 3px;
  4364. -ms-border-radius: 3px;
  4365. -khtml-border-radius: 3px;
  4366. border-radius: 3px;
  4367. padding: 2px 2px 2px 2px;
  4368. border-width: 1px;
  4369. border-style: solid;
  4370. background-color: #e9f2ff; }
  4371. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4372. .x-nlg .x-tip-mc {
  4373. background-color: #e9f2ff; }
  4374. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4375. .x-tip-header-text {
  4376. user-select: none;
  4377. -o-user-select: none;
  4378. -ms-user-select: none;
  4379. -moz-user-select: -moz-none;
  4380. -webkit-user-select: none;
  4381. cursor: default;
  4382. color: #444444;
  4383. font-size: 11px;
  4384. font-weight: bold; }
  4385. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4386. .x-tip-header-draggable .x-tip-header-text {
  4387. cursor: move; }
  4388. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4389. .x-tip-body,
  4390. .x-form-invalid-tip-body {
  4391. overflow: hidden;
  4392. position: relative;
  4393. padding: 3px; }
  4394. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4395. .x-tip-header,
  4396. .x-tip-body,
  4397. .x-form-invalid-tip-body {
  4398. color: #444444;
  4399. font-size: 11px;
  4400. font-weight: normal; }
  4401. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4402. .x-tip-header a,
  4403. .x-tip-body a,
  4404. .x-form-invalid-tip-body a {
  4405. color: #2a2a2a; }
  4406. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4407. .x-tip-anchor {
  4408. position: absolute;
  4409. overflow: hidden;
  4410. height: 0;
  4411. width: 0;
  4412. border-style: solid;
  4413. border-width: 5px;
  4414. border-color: #8eaace;
  4415. zoom: 1; }
  4416. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4417. .x-border-box .x-tip-anchor {
  4418. width: 10px;
  4419. height: 10px; }
  4420. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4421. .x-tip-anchor-top {
  4422. border-top-color: transparent;
  4423. border-left-color: transparent;
  4424. border-right-color: transparent; }
  4425. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4426. .x-tip-anchor-bottom {
  4427. border-bottom-color: transparent;
  4428. border-left-color: transparent;
  4429. border-right-color: transparent; }
  4430. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4431. .x-tip-anchor-left {
  4432. border-top-color: transparent;
  4433. border-bottom-color: transparent;
  4434. border-left-color: transparent; }
  4435. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4436. .x-tip-anchor-right {
  4437. border-top-color: transparent;
  4438. border-bottom-color: transparent;
  4439. border-right-color: transparent; }
  4440. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4441. .x-form-invalid-tip {
  4442. border-color: #a1311f;
  4443. -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;
  4444. -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;
  4445. -o-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  4446. 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; }
  4447. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4448. .x-form-invalid-tip-body {
  4449. background: 1px 1px no-repeat;
  4450. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  4451. padding-left: 22px; }
  4452. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4453. .x-form-invalid-tip-body li {
  4454. margin-bottom: 4px; }
  4455. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4456. .x-form-invalid-tip-body li.last {
  4457. margin-bottom: 0; }
  4458. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4459. .x-form-invalid-tip-default {
  4460. -moz-border-radius: 5px;
  4461. -webkit-border-radius: 5px;
  4462. -o-border-radius: 5px;
  4463. -ms-border-radius: 5px;
  4464. -khtml-border-radius: 5px;
  4465. border-radius: 5px;
  4466. padding: 4px 4px 4px 4px;
  4467. border-width: 1px;
  4468. border-style: solid;
  4469. background-color: white; }
  4470. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4471. .x-nlg .x-form-invalid-tip-default-mc {
  4472. background-color: white; }
  4473. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4474. .x-slider {
  4475. zoom: 1; }
  4476. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4477. .x-slider-inner {
  4478. position: relative;
  4479. left: 0;
  4480. top: 0;
  4481. overflow: visible;
  4482. zoom: 1; }
  4483. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4484. .x-slider-focus {
  4485. position: absolute;
  4486. left: 0;
  4487. top: 0;
  4488. width: 1px;
  4489. height: 1px;
  4490. line-height: 1px;
  4491. font-size: 1px;
  4492. -moz-outline: 0 none;
  4493. outline: 0 none;
  4494. user-select: none;
  4495. -o-user-select: none;
  4496. -ms-user-select: none;
  4497. -moz-user-select: -moz-none;
  4498. -webkit-user-select: none;
  4499. cursor: default;
  4500. display: block;
  4501. overflow: hidden; }
  4502. /* Horizontal styles */
  4503. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4504. .x-slider-horz {
  4505. padding-left: 7px;
  4506. background: transparent no-repeat 0 -24px;
  4507. width: 100%; }
  4508. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4509. .x-slider-horz .x-slider-end {
  4510. padding-right: 7px;
  4511. zoom: 1;
  4512. background: transparent no-repeat right -46px; }
  4513. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4514. .x-slider-horz .x-slider-inner {
  4515. background: transparent repeat-x 0 -2px;
  4516. height: 18px; }
  4517. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4518. .x-slider-horz .x-slider-thumb {
  4519. width: 14px;
  4520. height: 15px;
  4521. margin-left: -7px;
  4522. position: absolute;
  4523. left: 0;
  4524. top: 1px;
  4525. background: transparent no-repeat 0 0; }
  4526. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4527. .x-slider-horz .x-slider-thumb-over {
  4528. background-position: -14px -15px; }
  4529. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4530. .x-slider-horz .x-slider-thumb-drag {
  4531. background-position: -28px -30px; }
  4532. /* Vertical styles */
  4533. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4534. .x-slider-vert {
  4535. padding-top: 7px;
  4536. background: transparent no-repeat -44px 0; }
  4537. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4538. .x-slider-vert .x-slider-end {
  4539. padding-bottom: 7px;
  4540. zoom: 1;
  4541. background: transparent no-repeat -22px bottom;
  4542. width: 22px; }
  4543. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4544. .x-slider-vert .x-slider-inner {
  4545. background: transparent repeat-y 0 0;
  4546. width: 22px; }
  4547. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4548. .x-slider-vert .x-slider-thumb {
  4549. width: 15px;
  4550. height: 14px;
  4551. margin-bottom: -7px;
  4552. position: absolute;
  4553. left: 3px;
  4554. bottom: 0;
  4555. background: transparent no-repeat 0 0; }
  4556. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4557. .x-slider-vert .x-slider-thumb-over {
  4558. background-position: -15px -14px; }
  4559. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4560. .x-slider-vert .x-slider-thumb-drag {
  4561. background-position: -30px -28px; }
  4562. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4563. .x-slider-horz,
  4564. .x-slider-horz .x-slider-end,
  4565. .x-slider-horz .x-slider-inner {
  4566. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  4567. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4568. .x-slider-horz .x-slider-thumb {
  4569. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  4570. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4571. .x-slider-vert,
  4572. .x-slider-vert .x-slider-end,
  4573. .x-slider-vert .x-slider-inner {
  4574. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  4575. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4576. .x-slider-vert .x-slider-thumb {
  4577. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  4578. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4579. .x-progress {
  4580. position: relative;
  4581. border-width: 1px;
  4582. border-style: solid;
  4583. -moz-border-radius: 0;
  4584. -webkit-border-radius: 0;
  4585. -o-border-radius: 0;
  4586. -ms-border-radius: 0;
  4587. -khtml-border-radius: 0;
  4588. border-radius: 0;
  4589. overflow: hidden;
  4590. height: 20px; }
  4591. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4592. .x-progress-bar {
  4593. height: 18px;
  4594. overflow: hidden;
  4595. position: absolute;
  4596. width: 0;
  4597. -moz-border-radius: 0;
  4598. -webkit-border-radius: 0;
  4599. -o-border-radius: 0;
  4600. -ms-border-radius: 0;
  4601. -khtml-border-radius: 0;
  4602. border-radius: 0;
  4603. border-right: 1px solid;
  4604. border-top: 1px solid; }
  4605. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4606. .x-progress-text {
  4607. overflow: hidden;
  4608. position: absolute;
  4609. padding: 0 5px;
  4610. height: 18px;
  4611. font-weight: bold;
  4612. font-size: 11px;
  4613. line-height: 16px;
  4614. text-align: center; }
  4615. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4616. .x-progress-text-back {
  4617. padding-top: 1px; }
  4618. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4619. .x-progress-default {
  4620. border-color: #6594cf; }
  4621. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4622. .x-progress-default .x-progress-bar {
  4623. border-right-color: #6594cf;
  4624. border-top-color: #c6d8ed;
  4625. background-image: none;
  4626. background-color: #73a3e0;
  4627. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db));
  4628. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4629. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4630. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4631. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4632. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  4633. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4634. .x-progress-default .x-progress-text {
  4635. color: white; }
  4636. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4637. .x-progress-default .x-progress-text-back {
  4638. color: #396295; }
  4639. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4640. .x-nlg .x-progress-default .x-progress-bar {
  4641. background: repeat-x;
  4642. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  4643. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4644. .x-toolbar {
  4645. font-size: 11px;
  4646. border: 1px solid;
  4647. padding: 2px 0 2px 2px; }
  4648. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4649. .x-toolbar .x-form-item-label {
  4650. font-size: 11px;
  4651. line-height: 15px; }
  4652. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4653. .x-toolbar .x-toolbar-item {
  4654. margin: 0 2px 0 0; }
  4655. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4656. .x-toolbar .x-toolbar-text {
  4657. margin-left: 4px;
  4658. margin-right: 6px;
  4659. white-space: nowrap;
  4660. color: #4c4c4c;
  4661. line-height: 16px;
  4662. font-family: tahoma, arial, verdana, sans-serif;
  4663. font-size: 11px;
  4664. font-weight: normal; }
  4665. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4666. .x-toolbar .x-toolbar-separator {
  4667. display: block;
  4668. font-size: 1px;
  4669. overflow: hidden;
  4670. cursor: default;
  4671. border: 0; }
  4672. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4673. .x-toolbar .x-toolbar-separator-horizontal {
  4674. margin: 0 3px 0 2px;
  4675. height: 14px;
  4676. width: 0px;
  4677. border-left: 1px solid #98c8ff;
  4678. border-right: 1px solid white; }
  4679. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4680. .x-toolbar-footer {
  4681. background: transparent;
  4682. border: 0px none;
  4683. margin-top: 3px;
  4684. padding: 2px 0 2px 6px; }
  4685. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4686. .x-toolbar-footer .x-box-inner {
  4687. border-width: 0; }
  4688. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4689. .x-toolbar-footer .x-toolbar-item {
  4690. margin: 0 6px 0 0; }
  4691. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4692. .x-toolbar-vertical {
  4693. padding: 2px 2px 0 2px; }
  4694. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4695. .x-toolbar-vertical .x-toolbar-item {
  4696. margin: 0 0 2px 0; }
  4697. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4698. .x-toolbar-vertical .x-toolbar-text {
  4699. margin-top: 4px;
  4700. margin-bottom: 6px; }
  4701. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4702. .x-toolbar-vertical .x-toolbar-separator-vertical {
  4703. margin: 2px 5px 3px 5px;
  4704. height: 0px;
  4705. width: 10px;
  4706. line-height: 0px;
  4707. border-top: 1px solid #98c8ff;
  4708. border-bottom: 1px solid white; }
  4709. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4710. .x-toolbar-scroller {
  4711. padding-left: 0; }
  4712. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4713. .x-toolbar-spacer {
  4714. width: 2px; }
  4715. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4716. .x-toolbar-more-icon {
  4717. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  4718. background-position: 2px center !important;
  4719. background-repeat: no-repeat; }
  4720. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4721. .x-toolbar-default {
  4722. border-color: #99bce8;
  4723. background-image: none;
  4724. background-color: #d3e1f1;
  4725. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  4726. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  4727. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  4728. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  4729. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  4730. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  4731. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4732. .x-nlg .x-toolbar-default {
  4733. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  4734. background-repeat: repeat-x; }
  4735. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4736. .x-toolbar-plain {
  4737. border: 0; }
  4738. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4739. .x-window {
  4740. outline: none;
  4741. overflow: hidden; }
  4742. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4743. .x-window .x-window-wrap {
  4744. position: relative; }
  4745. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4746. .x-window-body {
  4747. position: relative;
  4748. border-style: solid;
  4749. overflow: hidden; }
  4750. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4751. .x-window-maximized .x-window-wrap .x-window-header {
  4752. -moz-border-radius: 0 !important;
  4753. -webkit-border-radius: 0 !important;
  4754. -o-border-radius: 0 !important;
  4755. -ms-border-radius: 0 !important;
  4756. -khtml-border-radius: 0 !important;
  4757. border-radius: 0 !important; }
  4758. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4759. .x-window-header-top {
  4760. margin-bottom: -2px; }
  4761. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4762. .x-window-header-body-horizontal {
  4763. margin-top: -1px; }
  4764. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4765. .x-window-header-bottom {
  4766. margin-top: -1px;
  4767. margin-bottom: -1px; }
  4768. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4769. .x-window-header-left {
  4770. margin-right: -1px; }
  4771. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4772. .x-window-header-right {
  4773. margin-left: -1px; }
  4774. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4775. .x-window-header-vertical .x-surface {
  4776. padding-left: 1px; }
  4777. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4778. .x-window-collapsed .x-window-header-vertical {
  4779. -moz-border-radius: 5px;
  4780. -webkit-border-radius: 5px;
  4781. -o-border-radius: 5px;
  4782. -ms-border-radius: 5px;
  4783. -khtml-border-radius: 5px;
  4784. border-radius: 5px; }
  4785. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4786. .x-window-collapsed .x-window-header-horizontal {
  4787. -moz-border-radius: 5px;
  4788. -webkit-border-radius: 5px;
  4789. -o-border-radius: 5px;
  4790. -ms-border-radius: 5px;
  4791. -khtml-border-radius: 5px;
  4792. border-radius: 5px; }
  4793. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4794. .x-window-collapsed .x-window-header-left {
  4795. padding-right: 5px !important;
  4796. margin-right: 0; }
  4797. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4798. .x-window-collapsed .x-window-header-right {
  4799. padding-left: 5px !important;
  4800. margin-left: 0; }
  4801. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4802. .x-window-collapsed .x-window-header-top {
  4803. padding-bottom: 5px !important;
  4804. margin-bottom: -1px; }
  4805. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4806. .x-window-collapsed .x-window-header-bottom {
  4807. padding-top: 5px !important;
  4808. margin-top: 0; }
  4809. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4810. .x-window-header-left .x-vml-base,
  4811. .x-window-header-right .x-vml-base {
  4812. left: -3px !important; }
  4813. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4814. .x-opera .x-window-header-vertical .x-surface,
  4815. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  4816. padding-left: 2px; }
  4817. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4818. .x-window-header-text-container {
  4819. overflow: hidden;
  4820. -o-text-overflow: ellipsis;
  4821. text-overflow: ellipsis; }
  4822. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4823. .x-window-header-text {
  4824. user-select: none;
  4825. -o-user-select: none;
  4826. -ms-user-select: none;
  4827. -moz-user-select: -moz-none;
  4828. -webkit-user-select: none;
  4829. cursor: default;
  4830. white-space: nowrap; }
  4831. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4832. .x-window-default {
  4833. border-color: #a2b1c5;
  4834. -moz-border-radius: 5px 5px;
  4835. -webkit-border-radius: 5px 5px;
  4836. -o-border-radius: 5px 5px;
  4837. -ms-border-radius: 5px 5px;
  4838. -khtml-border-radius: 5px 5px;
  4839. border-radius: 5px 5px;
  4840. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4841. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4842. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4843. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  4844. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4845. .x-window-default {
  4846. -moz-border-radius-topleft: 5px;
  4847. -webkit-border-top-left-radius: 5px;
  4848. -o-border-top-left-radius: 5px;
  4849. -ms-border-top-left-radius: 5px;
  4850. -khtml-border-top-left-radius: 5px;
  4851. border-top-left-radius: 5px;
  4852. -moz-border-radius-topright: 5px;
  4853. -webkit-border-top-right-radius: 5px;
  4854. -o-border-top-right-radius: 5px;
  4855. -ms-border-top-right-radius: 5px;
  4856. -khtml-border-top-right-radius: 5px;
  4857. border-top-right-radius: 5px;
  4858. -moz-border-radius-bottomright: 5px;
  4859. -webkit-border-bottom-right-radius: 5px;
  4860. -o-border-bottom-right-radius: 5px;
  4861. -ms-border-bottom-right-radius: 5px;
  4862. -khtml-border-bottom-right-radius: 5px;
  4863. border-bottom-right-radius: 5px;
  4864. -moz-border-radius-bottomleft: 5px;
  4865. -webkit-border-bottom-left-radius: 5px;
  4866. -o-border-bottom-left-radius: 5px;
  4867. -ms-border-bottom-left-radius: 5px;
  4868. -khtml-border-bottom-left-radius: 5px;
  4869. border-bottom-left-radius: 5px;
  4870. padding: 4px 4px 4px 4px;
  4871. border-width: 1px;
  4872. border-style: solid;
  4873. background-color: #ced9e7; }
  4874. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4875. .x-nlg .x-window-default-mc {
  4876. background-color: #ced9e7; }
  4877. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4878. .x-window-body-default {
  4879. border-color: #99bbe8;
  4880. border-width: 1px;
  4881. background: #dfe8f6;
  4882. color: black; }
  4883. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4884. .x-window-header-default {
  4885. font-size: 11px;
  4886. border-color: #a2b1c5;
  4887. zoom: 1; }
  4888. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4889. .x-window-header-text-default {
  4890. color: #04468c;
  4891. font-weight: bold;
  4892. line-height: 17px;
  4893. font-family: tahoma, arial, verdana, sans-serif;
  4894. font-size: 11px; }
  4895. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4896. .x-window-header-default-top {
  4897. -moz-border-radius-topleft: 5px;
  4898. -webkit-border-top-left-radius: 5px;
  4899. -o-border-top-left-radius: 5px;
  4900. -ms-border-top-left-radius: 5px;
  4901. -khtml-border-top-left-radius: 5px;
  4902. border-top-left-radius: 5px;
  4903. -moz-border-radius-topright: 5px;
  4904. -webkit-border-top-right-radius: 5px;
  4905. -o-border-top-right-radius: 5px;
  4906. -ms-border-top-right-radius: 5px;
  4907. -khtml-border-top-right-radius: 5px;
  4908. border-top-right-radius: 5px;
  4909. -moz-border-radius-bottomright: 0;
  4910. -webkit-border-bottom-right-radius: 0;
  4911. -o-border-bottom-right-radius: 0;
  4912. -ms-border-bottom-right-radius: 0;
  4913. -khtml-border-bottom-right-radius: 0;
  4914. border-bottom-right-radius: 0;
  4915. -moz-border-radius-bottomleft: 0;
  4916. -webkit-border-bottom-left-radius: 0;
  4917. -o-border-bottom-left-radius: 0;
  4918. -ms-border-bottom-left-radius: 0;
  4919. -khtml-border-bottom-left-radius: 0;
  4920. border-bottom-left-radius: 0;
  4921. padding: 4px 5px 0 5px;
  4922. border-width: 1px 1px 0 1px;
  4923. border-style: solid;
  4924. background-color: #ced9e7; }
  4925. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4926. .x-nlg .x-window-header-default-top-mc {
  4927. background-color: #ced9e7; }
  4928. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4929. .x-window-header-default-right {
  4930. -moz-border-radius-topleft: 0;
  4931. -webkit-border-top-left-radius: 0;
  4932. -o-border-top-left-radius: 0;
  4933. -ms-border-top-left-radius: 0;
  4934. -khtml-border-top-left-radius: 0;
  4935. border-top-left-radius: 0;
  4936. -moz-border-radius-topright: 5px;
  4937. -webkit-border-top-right-radius: 5px;
  4938. -o-border-top-right-radius: 5px;
  4939. -ms-border-top-right-radius: 5px;
  4940. -khtml-border-top-right-radius: 5px;
  4941. border-top-right-radius: 5px;
  4942. -moz-border-radius-bottomright: 5px;
  4943. -webkit-border-bottom-right-radius: 5px;
  4944. -o-border-bottom-right-radius: 5px;
  4945. -ms-border-bottom-right-radius: 5px;
  4946. -khtml-border-bottom-right-radius: 5px;
  4947. border-bottom-right-radius: 5px;
  4948. -moz-border-radius-bottomleft: 0;
  4949. -webkit-border-bottom-left-radius: 0;
  4950. -o-border-bottom-left-radius: 0;
  4951. -ms-border-bottom-left-radius: 0;
  4952. -khtml-border-bottom-left-radius: 0;
  4953. border-bottom-left-radius: 0;
  4954. padding: 5px 4px 5px 0;
  4955. border-width: 1px 1px 1px 0;
  4956. border-style: solid;
  4957. background-color: #ced9e7; }
  4958. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4959. .x-nlg .x-window-header-default-right-mc {
  4960. background-color: #ced9e7; }
  4961. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4962. .x-window-header-default-bottom {
  4963. -moz-border-radius-topleft: 0;
  4964. -webkit-border-top-left-radius: 0;
  4965. -o-border-top-left-radius: 0;
  4966. -ms-border-top-left-radius: 0;
  4967. -khtml-border-top-left-radius: 0;
  4968. border-top-left-radius: 0;
  4969. -moz-border-radius-topright: 0;
  4970. -webkit-border-top-right-radius: 0;
  4971. -o-border-top-right-radius: 0;
  4972. -ms-border-top-right-radius: 0;
  4973. -khtml-border-top-right-radius: 0;
  4974. border-top-right-radius: 0;
  4975. -moz-border-radius-bottomright: 5px;
  4976. -webkit-border-bottom-right-radius: 5px;
  4977. -o-border-bottom-right-radius: 5px;
  4978. -ms-border-bottom-right-radius: 5px;
  4979. -khtml-border-bottom-right-radius: 5px;
  4980. border-bottom-right-radius: 5px;
  4981. -moz-border-radius-bottomleft: 5px;
  4982. -webkit-border-bottom-left-radius: 5px;
  4983. -o-border-bottom-left-radius: 5px;
  4984. -ms-border-bottom-left-radius: 5px;
  4985. -khtml-border-bottom-left-radius: 5px;
  4986. border-bottom-left-radius: 5px;
  4987. padding: 0 5px 4px 5px;
  4988. border-width: 0 1px 1px 1px;
  4989. border-style: solid;
  4990. background-color: #ced9e7; }
  4991. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4992. .x-nlg .x-window-header-default-bottom-mc {
  4993. background-color: #ced9e7; }
  4994. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4995. .x-window-header-default-left {
  4996. -moz-border-radius-topleft: 5px;
  4997. -webkit-border-top-left-radius: 5px;
  4998. -o-border-top-left-radius: 5px;
  4999. -ms-border-top-left-radius: 5px;
  5000. -khtml-border-top-left-radius: 5px;
  5001. border-top-left-radius: 5px;
  5002. -moz-border-radius-topright: 0;
  5003. -webkit-border-top-right-radius: 0;
  5004. -o-border-top-right-radius: 0;
  5005. -ms-border-top-right-radius: 0;
  5006. -khtml-border-top-right-radius: 0;
  5007. border-top-right-radius: 0;
  5008. -moz-border-radius-bottomright: 0;
  5009. -webkit-border-bottom-right-radius: 0;
  5010. -o-border-bottom-right-radius: 0;
  5011. -ms-border-bottom-right-radius: 0;
  5012. -khtml-border-bottom-right-radius: 0;
  5013. border-bottom-right-radius: 0;
  5014. -moz-border-radius-bottomleft: 5px;
  5015. -webkit-border-bottom-left-radius: 5px;
  5016. -o-border-bottom-left-radius: 5px;
  5017. -ms-border-bottom-left-radius: 5px;
  5018. -khtml-border-bottom-left-radius: 5px;
  5019. border-bottom-left-radius: 5px;
  5020. padding: 5px 0px 5px 4px;
  5021. border-width: 1px 0 1px 1px;
  5022. border-style: solid;
  5023. background-color: #ced9e7; }
  5024. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5025. .x-nlg .x-window-header-default-left-mc {
  5026. background-color: #ced9e7; }
  5027. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5028. .x-window-header-default-collapsed-top {
  5029. -moz-border-radius-topleft: 5px;
  5030. -webkit-border-top-left-radius: 5px;
  5031. -o-border-top-left-radius: 5px;
  5032. -ms-border-top-left-radius: 5px;
  5033. -khtml-border-top-left-radius: 5px;
  5034. border-top-left-radius: 5px;
  5035. -moz-border-radius-topright: 5px;
  5036. -webkit-border-top-right-radius: 5px;
  5037. -o-border-top-right-radius: 5px;
  5038. -ms-border-top-right-radius: 5px;
  5039. -khtml-border-top-right-radius: 5px;
  5040. border-top-right-radius: 5px;
  5041. -moz-border-radius-bottomright: 5px;
  5042. -webkit-border-bottom-right-radius: 5px;
  5043. -o-border-bottom-right-radius: 5px;
  5044. -ms-border-bottom-right-radius: 5px;
  5045. -khtml-border-bottom-right-radius: 5px;
  5046. border-bottom-right-radius: 5px;
  5047. -moz-border-radius-bottomleft: 5px;
  5048. -webkit-border-bottom-left-radius: 5px;
  5049. -o-border-bottom-left-radius: 5px;
  5050. -ms-border-bottom-left-radius: 5px;
  5051. -khtml-border-bottom-left-radius: 5px;
  5052. border-bottom-left-radius: 5px;
  5053. padding: 4px 5px 4px 5px;
  5054. border-width: 1px;
  5055. border-style: solid;
  5056. background-color: #ced9e7; }
  5057. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5058. .x-nlg .x-window-header-default-collapsed-top-mc {
  5059. background-color: #ced9e7; }
  5060. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5061. .x-window-header-default-collapsed-right {
  5062. -moz-border-radius-topleft: 5px;
  5063. -webkit-border-top-left-radius: 5px;
  5064. -o-border-top-left-radius: 5px;
  5065. -ms-border-top-left-radius: 5px;
  5066. -khtml-border-top-left-radius: 5px;
  5067. border-top-left-radius: 5px;
  5068. -moz-border-radius-topright: 5px;
  5069. -webkit-border-top-right-radius: 5px;
  5070. -o-border-top-right-radius: 5px;
  5071. -ms-border-top-right-radius: 5px;
  5072. -khtml-border-top-right-radius: 5px;
  5073. border-top-right-radius: 5px;
  5074. -moz-border-radius-bottomright: 5px;
  5075. -webkit-border-bottom-right-radius: 5px;
  5076. -o-border-bottom-right-radius: 5px;
  5077. -ms-border-bottom-right-radius: 5px;
  5078. -khtml-border-bottom-right-radius: 5px;
  5079. border-bottom-right-radius: 5px;
  5080. -moz-border-radius-bottomleft: 5px;
  5081. -webkit-border-bottom-left-radius: 5px;
  5082. -o-border-bottom-left-radius: 5px;
  5083. -ms-border-bottom-left-radius: 5px;
  5084. -khtml-border-bottom-left-radius: 5px;
  5085. border-bottom-left-radius: 5px;
  5086. padding: 5px 4px 5px 4px;
  5087. border-width: 1px;
  5088. border-style: solid;
  5089. background-color: #ced9e7; }
  5090. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5091. .x-nlg .x-window-header-default-collapsed-right-mc {
  5092. background-color: #ced9e7; }
  5093. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5094. .x-window-header-default-collapsed-bottom {
  5095. -moz-border-radius-topleft: 5px;
  5096. -webkit-border-top-left-radius: 5px;
  5097. -o-border-top-left-radius: 5px;
  5098. -ms-border-top-left-radius: 5px;
  5099. -khtml-border-top-left-radius: 5px;
  5100. border-top-left-radius: 5px;
  5101. -moz-border-radius-topright: 5px;
  5102. -webkit-border-top-right-radius: 5px;
  5103. -o-border-top-right-radius: 5px;
  5104. -ms-border-top-right-radius: 5px;
  5105. -khtml-border-top-right-radius: 5px;
  5106. border-top-right-radius: 5px;
  5107. -moz-border-radius-bottomright: 5px;
  5108. -webkit-border-bottom-right-radius: 5px;
  5109. -o-border-bottom-right-radius: 5px;
  5110. -ms-border-bottom-right-radius: 5px;
  5111. -khtml-border-bottom-right-radius: 5px;
  5112. border-bottom-right-radius: 5px;
  5113. -moz-border-radius-bottomleft: 5px;
  5114. -webkit-border-bottom-left-radius: 5px;
  5115. -o-border-bottom-left-radius: 5px;
  5116. -ms-border-bottom-left-radius: 5px;
  5117. -khtml-border-bottom-left-radius: 5px;
  5118. border-bottom-left-radius: 5px;
  5119. padding: 4px 5px 4px 5px;
  5120. border-width: 1px;
  5121. border-style: solid;
  5122. background-color: #ced9e7; }
  5123. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5124. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  5125. background-color: #ced9e7; }
  5126. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5127. .x-window-header-default-collapsed-left {
  5128. -moz-border-radius-topleft: 5px;
  5129. -webkit-border-top-left-radius: 5px;
  5130. -o-border-top-left-radius: 5px;
  5131. -ms-border-top-left-radius: 5px;
  5132. -khtml-border-top-left-radius: 5px;
  5133. border-top-left-radius: 5px;
  5134. -moz-border-radius-topright: 5px;
  5135. -webkit-border-top-right-radius: 5px;
  5136. -o-border-top-right-radius: 5px;
  5137. -ms-border-top-right-radius: 5px;
  5138. -khtml-border-top-right-radius: 5px;
  5139. border-top-right-radius: 5px;
  5140. -moz-border-radius-bottomright: 5px;
  5141. -webkit-border-bottom-right-radius: 5px;
  5142. -o-border-bottom-right-radius: 5px;
  5143. -ms-border-bottom-right-radius: 5px;
  5144. -khtml-border-bottom-right-radius: 5px;
  5145. border-bottom-right-radius: 5px;
  5146. -moz-border-radius-bottomleft: 5px;
  5147. -webkit-border-bottom-left-radius: 5px;
  5148. -o-border-bottom-left-radius: 5px;
  5149. -ms-border-bottom-left-radius: 5px;
  5150. -khtml-border-bottom-left-radius: 5px;
  5151. border-bottom-left-radius: 5px;
  5152. padding: 5px 4px 5px 4px;
  5153. border-width: 1px;
  5154. border-style: solid;
  5155. background-color: #ced9e7; }
  5156. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5157. .x-nlg .x-window-header-default-collapsed-left-mc {
  5158. background-color: #ced9e7; }
  5159. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5160. .x-window-header-default-top {
  5161. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5162. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5163. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5164. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5165. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5166. .x-window-header-default-right {
  5167. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  5168. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  5169. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  5170. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  5171. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5172. .x-window-header-default-bottom {
  5173. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5174. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5175. -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5176. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5177. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5178. .x-window-header-default-left {
  5179. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5180. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5181. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5182. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5183. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5184. .x-window-body-plain {
  5185. background: transparent; }
  5186. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5187. .x-message-box .x-window-body {
  5188. background-color: #ced9e7;
  5189. border: none; }
  5190. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5191. .x-message-box .x-progress-wrap {
  5192. margin-top: 4px; }
  5193. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5194. .x-message-box-icon {
  5195. width: 47px;
  5196. height: 32px; }
  5197. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5198. .x-message-box-info,
  5199. .x-message-box-warning,
  5200. .x-message-box-question,
  5201. .x-message-box-error {
  5202. background: transparent no-repeat top left; }
  5203. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5204. .x-message-box .x-msg-box-wait {
  5205. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  5206. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5207. .x-message-box-info {
  5208. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  5209. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5210. .x-message-box-warning {
  5211. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  5212. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5213. .x-message-box-question {
  5214. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  5215. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5216. .x-message-box-error {
  5217. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  5218. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5219. .x-tab-bar {
  5220. position: relative;
  5221. background-color: transparent;
  5222. background-image: none;
  5223. background-color: #cbdbef;
  5224. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  5225. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  5226. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  5227. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  5228. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  5229. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  5230. font-size: 11px; }
  5231. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5232. .x-nlg .x-tab-bar {
  5233. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  5234. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5235. .x-tab-bar-default-plain,
  5236. .x-nlg .x-tab-bar-default-plain {
  5237. background: transparent none; }
  5238. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5239. .x-tab-bar-body {
  5240. border-style: solid;
  5241. border-color: #99bce8;
  5242. position: relative;
  5243. z-index: 2;
  5244. zoom: 1; }
  5245. /* Top Tabs */
  5246. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5247. .x-tab-bar-top .x-tab-bar-body {
  5248. height: 20px;
  5249. border-width: 1px 1px 0;
  5250. padding: 1px 0 3px; }
  5251. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5252. .x-tab-bar-top .x-tab-bar-strip {
  5253. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5254. top: 22px;
  5255. border-width: 1px 1px 0;
  5256. height: 2px; }
  5257. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5258. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  5259. height: 25px; }
  5260. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5261. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  5262. height: 3px; }
  5263. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5264. .x-tab-bar-top .x-tab-bar-body-default-plain {
  5265. height: 20px;
  5266. border-width: 0;
  5267. padding: 0 0 2px; }
  5268. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5269. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5270. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5271. top: 20px;
  5272. border-width: 1px 1px 0 1px;
  5273. height: 2px; }
  5274. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5275. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  5276. height: 22px; }
  5277. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5278. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5279. height: 3px; }
  5280. /* Bottom Tabs */
  5281. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5282. .x-tab-bar-bottom .x-tab-bar-body {
  5283. height: 20px;
  5284. border-width: 0 1px 1px;
  5285. padding: 3px 0 1px; }
  5286. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5287. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  5288. position: relative;
  5289. top: -1px; }
  5290. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5291. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  5292. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  5293. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  5294. height: 22px; }
  5295. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5296. .x-tab-bar-bottom .x-tab-bar-strip {
  5297. top: 0;
  5298. border-width: 0 1px 1px 1px;
  5299. height: 2px; }
  5300. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5301. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  5302. height: 25px; }
  5303. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5304. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  5305. height: 3px; }
  5306. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5307. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5308. height: 20px;
  5309. border-width: 0;
  5310. padding: 3px 0 0; }
  5311. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5312. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  5313. position: relative;
  5314. top: -1px; }
  5315. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5316. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  5317. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  5318. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  5319. height: 21px; }
  5320. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5321. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5322. top: 0;
  5323. border-width: 0 1px 1px 1px;
  5324. height: 2px; }
  5325. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5326. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5327. height: 23px; }
  5328. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5329. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5330. height: 3px; }
  5331. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5332. .x-tab-bar-strip-default,
  5333. .x-tab-bar-strip-default-plain {
  5334. font-size: 0;
  5335. line-height: 0;
  5336. position: absolute;
  5337. z-index: 1;
  5338. border-style: solid;
  5339. overflow: hidden;
  5340. border-color: #99bce8;
  5341. background-color: #deecfd;
  5342. zoom: 1; }
  5343. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5344. .x-tab-default-top {
  5345. -moz-border-radius-topleft: 4px;
  5346. -webkit-border-top-left-radius: 4px;
  5347. -o-border-top-left-radius: 4px;
  5348. -ms-border-top-left-radius: 4px;
  5349. -khtml-border-top-left-radius: 4px;
  5350. border-top-left-radius: 4px;
  5351. -moz-border-radius-topright: 4px;
  5352. -webkit-border-top-right-radius: 4px;
  5353. -o-border-top-right-radius: 4px;
  5354. -ms-border-top-right-radius: 4px;
  5355. -khtml-border-top-right-radius: 4px;
  5356. border-top-right-radius: 4px;
  5357. -moz-border-radius-bottomright: 0;
  5358. -webkit-border-bottom-right-radius: 0;
  5359. -o-border-bottom-right-radius: 0;
  5360. -ms-border-bottom-right-radius: 0;
  5361. -khtml-border-bottom-right-radius: 0;
  5362. border-bottom-right-radius: 0;
  5363. -moz-border-radius-bottomleft: 0;
  5364. -webkit-border-bottom-left-radius: 0;
  5365. -o-border-bottom-left-radius: 0;
  5366. -ms-border-bottom-left-radius: 0;
  5367. -khtml-border-bottom-left-radius: 0;
  5368. border-bottom-left-radius: 0;
  5369. padding: 3px 3px 0 3px;
  5370. border-width: 1px 1px 0 1px;
  5371. border-style: solid;
  5372. background-color: #deecfd; }
  5373. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5374. .x-nlg .x-tab-default-top-mc {
  5375. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  5376. background-color: #deecfd; }
  5377. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5378. .x-tab-default-bottom {
  5379. -moz-border-radius-topleft: 0;
  5380. -webkit-border-top-left-radius: 0;
  5381. -o-border-top-left-radius: 0;
  5382. -ms-border-top-left-radius: 0;
  5383. -khtml-border-top-left-radius: 0;
  5384. border-top-left-radius: 0;
  5385. -moz-border-radius-topright: 0;
  5386. -webkit-border-top-right-radius: 0;
  5387. -o-border-top-right-radius: 0;
  5388. -ms-border-top-right-radius: 0;
  5389. -khtml-border-top-right-radius: 0;
  5390. border-top-right-radius: 0;
  5391. -moz-border-radius-bottomright: 4px;
  5392. -webkit-border-bottom-right-radius: 4px;
  5393. -o-border-bottom-right-radius: 4px;
  5394. -ms-border-bottom-right-radius: 4px;
  5395. -khtml-border-bottom-right-radius: 4px;
  5396. border-bottom-right-radius: 4px;
  5397. -moz-border-radius-bottomleft: 4px;
  5398. -webkit-border-bottom-left-radius: 4px;
  5399. -o-border-bottom-left-radius: 4px;
  5400. -ms-border-bottom-left-radius: 4px;
  5401. -khtml-border-bottom-left-radius: 4px;
  5402. border-bottom-left-radius: 4px;
  5403. padding: 0 3px 3px 3px;
  5404. border-width: 0 1px 1px 1px;
  5405. border-style: solid;
  5406. background-color: #deecfd; }
  5407. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5408. .x-nlg .x-tab-default-bottom-mc {
  5409. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  5410. background-color: #deecfd; }
  5411. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5412. .x-tab {
  5413. z-index: 1;
  5414. margin: 0 0 0 2px;
  5415. display: inline-block;
  5416. zoom: 1;
  5417. *display: inline;
  5418. white-space: nowrap;
  5419. height: 20px;
  5420. border-color: #8db3e3;
  5421. cursor: pointer;
  5422. cursor: hand; }
  5423. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5424. .x-tab button {
  5425. cursor: pointer;
  5426. cursor: hand; }
  5427. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5428. .x-tab em {
  5429. display: block;
  5430. padding: 0 6px;
  5431. line-height: 1px; }
  5432. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5433. .x-tab button {
  5434. background: none;
  5435. border: 0;
  5436. padding: 0;
  5437. margin: 0;
  5438. -webkit-appearance: none;
  5439. font-size: 11px;
  5440. font-weight: bold;
  5441. font-family: tahoma, arial, verdana, sans-serif;
  5442. color: #416da3;
  5443. outline: 0 none;
  5444. overflow-x: visible; }
  5445. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5446. .x-tab button::-moz-focus-inner {
  5447. border: 0;
  5448. padding: 0; }
  5449. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5450. .x-tab button .x-tab-inner {
  5451. background-color: transparent;
  5452. background-repeat: no-repeat;
  5453. background-position: 0 -2px;
  5454. display: block;
  5455. text-align: center;
  5456. white-space: nowrap;
  5457. text-overflow: ellipsis;
  5458. -o-text-overflow: ellipsis;
  5459. overflow: hidden; }
  5460. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5461. .x-tab img {
  5462. display: none; }
  5463. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5464. .x-border-box .x-tab-default-top {
  5465. height: 21px; }
  5466. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5467. .x-border-box .x-tab-default-bottom {
  5468. height: 21px; }
  5469. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5470. .x-tab-default-top {
  5471. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5472. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5473. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5474. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5475. border-bottom: 1px solid #99bce8 !important; }
  5476. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5477. .x-tab-default-top em {
  5478. padding-bottom: 3px; }
  5479. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5480. .x-tab-default-top button,
  5481. .x-tab-default-top .x-tab-inner {
  5482. height: 13px;
  5483. line-height: 13px; }
  5484. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5485. .x-safari4 .x-tab-default-top .x-tab-inner,
  5486. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  5487. line-height: 11px; }
  5488. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5489. .x-nbr .x-tab-default-top {
  5490. border-bottom-width: 1px !important; }
  5491. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5492. .x-tab-default-top-active {
  5493. border-bottom-color: #deecfd !important; }
  5494. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5495. .x-tab-default-bottom {
  5496. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5497. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5498. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5499. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5500. border-top: 1px solid #99bce8 !important;
  5501. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5502. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5503. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5504. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  5505. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5506. .x-tab-default-bottom em {
  5507. padding-top: 3px; }
  5508. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5509. .x-tab-default-bottom button,
  5510. .x-tab-default-bottom .x-tab-inner {
  5511. height: 13px;
  5512. line-height: 13px; }
  5513. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5514. .x-nbr .x-tab-default-bottom {
  5515. border-top-width: 1px !important; }
  5516. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5517. .x-tab-default-bottom-active {
  5518. border-top-color: #deecfd !important; }
  5519. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5520. .x-tab-default-disabled {
  5521. cursor: default;
  5522. border-color: #bbd2ef;
  5523. background-image: none;
  5524. background-color: #e1ecfa;
  5525. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5526. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5527. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5528. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5529. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5530. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5531. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5532. .x-tab-default-disabled button {
  5533. color: #c3b3b3 !important; }
  5534. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5535. .x-tab-icon-text-left .x-tab-inner {
  5536. padding-left: 20px; }
  5537. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5538. .x-tab button {
  5539. position: relative; }
  5540. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5541. .x-tab-icon {
  5542. position: absolute;
  5543. background-repeat: no-repeat;
  5544. background-position: 0 -1px;
  5545. top: 0;
  5546. left: 0;
  5547. right: auto;
  5548. bottom: 0;
  5549. width: 18px;
  5550. height: 18px; }
  5551. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5552. .x-strict .x-ie8 .x-tab button,
  5553. .x-strict .x-ie9 .x-tab button {
  5554. overflow-y: visible; }
  5555. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5556. .x-tab-default-disabled .x-tab-icon {
  5557. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  5558. opacity: 0.5; }
  5559. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  5560. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5561. .x-tab-noicon .x-tab-icon {
  5562. display: none; }
  5563. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5564. .x-tab-top-over {
  5565. background-image: none;
  5566. background-color: #e8f2ff;
  5567. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5568. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5569. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5570. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5571. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5572. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5573. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5574. .x-tab-bottom-over {
  5575. background-image: none;
  5576. background-color: #e8f2ff;
  5577. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5578. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5579. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5580. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5581. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5582. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5583. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5584. .x-tab-active {
  5585. z-index: 3; }
  5586. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5587. .x-tab-active button {
  5588. color: #15498b; }
  5589. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5590. .x-tab-top-active {
  5591. background-image: none;
  5592. background-color: #deecfd;
  5593. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5594. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5595. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5596. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5597. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5598. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5599. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5600. .x-tab-bottom-active {
  5601. background-image: none;
  5602. background-color: #deecfd;
  5603. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5604. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5605. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5606. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5607. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5608. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5609. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5610. .x-tab-disabled {
  5611. border-color: #bbd2ef; }
  5612. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5613. .x-tab-disabled button {
  5614. color: #c3b3b3; }
  5615. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5616. .x-tab-top-disabled {
  5617. background-image: none;
  5618. background: transparent;
  5619. background-image: none;
  5620. background-color: #e1ecfa;
  5621. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5622. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5623. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5624. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5625. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5626. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5627. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5628. .x-tab-bottom-disabled {
  5629. background-image: none;
  5630. background: transparent;
  5631. background-image: none;
  5632. background-color: #e1ecfa;
  5633. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5634. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5635. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5636. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5637. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5638. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  5639. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5640. .x-nlg .x-tab-top {
  5641. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  5642. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5643. .x-nlg .x-tab-bottom {
  5644. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  5645. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5646. .x-nlg .x-tab-top-over {
  5647. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  5648. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5649. .x-nlg .x-tab-bottom-over {
  5650. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  5651. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5652. .x-nlg .x-tab-top-active {
  5653. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  5654. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5655. .x-nlg .x-tab-bottom-active {
  5656. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  5657. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5658. .x-nlg .x-tab-top-disabled {
  5659. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  5660. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5661. .x-nlg .x-tab-bottom-disabled {
  5662. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  5663. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5664. .x-tab-closable em {
  5665. padding-right: 14px; }
  5666. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5667. .x-tab-close-btn {
  5668. position: absolute;
  5669. top: 2px;
  5670. right: 2px;
  5671. width: 11px;
  5672. height: 11px;
  5673. font-size: 0;
  5674. line-height: 0;
  5675. text-indent: -999px;
  5676. background: no-repeat;
  5677. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  5678. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5679. opacity: 0.6; }
  5680. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5681. .x-nbr .x-tab-close-btn {
  5682. top: 0px;
  5683. right: 0px; }
  5684. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  5685. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5686. a.x-tab-close-btn:hover {
  5687. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  5688. opacity: 1; }
  5689. /* Include the element name to raise the specificity to equal the :hover */
  5690. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5691. .x-tab-default-disabled a.x-tab-close-btn {
  5692. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  5693. opacity: 0.3; }
  5694. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5695. .x-autowidth-table table.x-grid-table {
  5696. table-layout: auto;
  5697. width: auto!important; }
  5698. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5699. .x-tree-no-lines .x-tree-elbow {
  5700. background-color: transparent; }
  5701. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5702. .x-tree-no-lines .x-tree-elbow-end {
  5703. background-color: transparent; }
  5704. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5705. .x-tree-no-lines .x-tree-elbow-line {
  5706. background-color: transparent; }
  5707. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5708. .x-tree-arrows .x-tree-elbow-plus {
  5709. background: transparent no-repeat 0 0; }
  5710. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5711. .x-tree-arrows .x-tree-elbow-end-plus {
  5712. background: transparent no-repeat 0 0; }
  5713. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5714. .x-tree-arrows .x-tree-elbow-end-minus {
  5715. background: transparent no-repeat -16px 0; }
  5716. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5717. .x-tree-arrows .x-tree-elbow-minus {
  5718. background: transparent no-repeat -16px 0; }
  5719. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5720. .x-tree-arrows .x-tree-elbow {
  5721. background-color: transparent !important; }
  5722. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5723. .x-tree-arrows .x-tree-elbow-end {
  5724. background-color: transparent !important; }
  5725. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5726. .x-tree-arrows .x-tree-elbow-line {
  5727. background-color: transparent !important; }
  5728. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5729. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  5730. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  5731. background-position: -32px 0; }
  5732. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5733. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  5734. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  5735. background-position: -48px 0; }
  5736. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5737. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5738. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5739. background-position: -16px 0; }
  5740. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5741. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  5742. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  5743. background-position: -48px 0; }
  5744. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5745. .x-tree-elbow-plus,
  5746. .x-tree-elbow-minus,
  5747. .x-tree-elbow-end-plus,
  5748. .x-tree-elbow-end-minus {
  5749. cursor: pointer; }
  5750. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5751. .x-tree-lines .x-tree-elbow {
  5752. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  5753. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5754. .x-tree-lines .x-tree-elbow-end {
  5755. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  5756. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5757. .x-tree-lines .x-tree-elbow-plus {
  5758. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  5759. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5760. .x-tree-lines .x-tree-elbow-end-plus {
  5761. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  5762. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5763. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  5764. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  5765. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5766. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5767. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  5768. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5769. .x-tree-lines .x-tree-elbow-line {
  5770. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  5771. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5772. .x-tree-no-lines .x-tree-elbow-plus,
  5773. .x-tree-no-lines .x-tree-elbow-end-plus {
  5774. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  5775. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5776. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5777. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5778. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  5779. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5780. .x-tree-arrows .x-tree-elbow-plus,
  5781. .x-tree-arrows .x-tree-elbow-minus,
  5782. .x-tree-arrows .x-tree-elbow-end-plus,
  5783. .x-tree-arrows .x-tree-elbow-end-minus {
  5784. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  5785. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5786. .x-tree-icon {
  5787. margin: 2px 3px 0 0; }
  5788. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5789. .x-grid-with-row-lines .x-tree-icon {
  5790. margin-top: 1px; }
  5791. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5792. .x-tree-elbow,
  5793. .x-tree-elbow-end,
  5794. .x-tree-elbow-plus,
  5795. .x-tree-elbow-end-plus,
  5796. .x-tree-elbow-empty,
  5797. .x-tree-elbow-line {
  5798. height: 20px;
  5799. width: 16px; }
  5800. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5801. .x-grid-with-row-lines .x-tree-elbow,
  5802. .x-grid-with-row-lines .x-tree-elbow-end,
  5803. .x-grid-with-row-lines .x-tree-elbow-plus,
  5804. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  5805. .x-grid-with-row-lines .x-tree-elbow-empty,
  5806. .x-grid-with-row-lines .x-tree-elbow-line {
  5807. height: 19px;
  5808. background-position: 0 -1px; }
  5809. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5810. .x-tree-icon-leaf {
  5811. width: 16px;
  5812. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  5813. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5814. .x-tree-icon-parent {
  5815. width: 16px;
  5816. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  5817. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5818. .x-grid-tree-node-expanded .x-tree-icon-parent {
  5819. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  5820. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5821. .x-grid-rowbody {
  5822. padding: 0; }
  5823. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5824. .x-grid-cell-treecolumn .x-grid-cell-inner {
  5825. padding: 0;
  5826. line-height: 19px; }
  5827. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5828. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  5829. line-height: 17px; }
  5830. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5831. .x-tree-panel .x-grid-cell-inner {
  5832. cursor: pointer; }
  5833. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5834. .x-tree-panel .x-grid-cell-inner img {
  5835. display: inline-block;
  5836. vertical-align: top; }
  5837. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5838. .x-grid-editor-on-text-node .x-form-text {
  5839. padding-left: 1px;
  5840. padding-right: 1px; }
  5841. /* line 228, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5842. .x-opera .x-grid-editor-on-text-node .x-form-text {
  5843. padding-left: 2px;
  5844. padding-right: 2px; }
  5845. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5846. .x-tree-checkbox {
  5847. margin: 4px 3px 0 0;
  5848. display: inline-block;
  5849. vertical-align: top;
  5850. width: 13px;
  5851. height: 13px;
  5852. background: no-repeat;
  5853. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  5854. overflow: hidden;
  5855. padding: 0;
  5856. border: 0; }
  5857. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5858. .x-tree-checkbox::-moz-focus-inner {
  5859. padding: 0;
  5860. border: 0; }
  5861. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5862. .x-grid-with-row-lines .x-tree-checkbox {
  5863. margin-top: 3px; }
  5864. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5865. .x-tree-checkbox-checked {
  5866. background-position: 0 -13px; }
  5867. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5868. .x-tree-drop-ok-append .x-dd-drop-icon {
  5869. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  5870. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5871. .x-tree-drop-ok-above .x-dd-drop-icon {
  5872. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  5873. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5874. .x-tree-drop-ok-below .x-dd-drop-icon {
  5875. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  5876. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5877. .x-tree-drop-ok-between .x-dd-drop-icon {
  5878. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  5879. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5880. .x-grid-tree-loading .x-tree-icon {
  5881. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  5882. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5883. .x-tree-ddindicator {
  5884. height: 1px;
  5885. border-width: 1px 0px 0px;
  5886. border-style: dotted;
  5887. border-color: green; }
  5888. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5889. .x-grid-tree-loading span {
  5890. font-style: italic;
  5891. color: #444444; }
  5892. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5893. .x-tree-animator-wrap {
  5894. overflow: hidden; }
  5895. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5896. .x-surface {
  5897. display: -moz-inline-box;
  5898. -moz-box-orient: vertical;
  5899. display: inline-block;
  5900. vertical-align: middle;
  5901. *vertical-align: auto;
  5902. overflow: hidden; }
  5903. /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  5904. .x-surface {
  5905. *display: inline; }
  5906. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5907. .rvml {
  5908. behavior: url(#default#VML); }
  5909. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5910. .x-surface tspan {
  5911. user-select: none;
  5912. -o-user-select: none;
  5913. -ms-user-select: none;
  5914. -moz-user-select: -moz-none;
  5915. -webkit-user-select: none;
  5916. cursor: default; }
  5917. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5918. .x-vml-sprite {
  5919. position: absolute;
  5920. left: 0;
  5921. top: 0;
  5922. width: 1px;
  5923. height: 1px; }
  5924. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5925. .x-vml-group {
  5926. position: absolute;
  5927. left: 0;
  5928. top: 0;
  5929. width: 1000px;
  5930. height: 1000px; }
  5931. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5932. .x-vml-measure-span {
  5933. position: absolute;
  5934. left: -9999em;
  5935. top: -9999em;
  5936. padding: 0;
  5937. margin: 0;
  5938. display: inline; }
  5939. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5940. .x-vml-base {
  5941. position: relative;
  5942. top: 0;
  5943. left: 0;
  5944. overflow: hidden;
  5945. display: inline-block; }
  5946. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5947. .x-vml-base {
  5948. position: relative;
  5949. top: 0;
  5950. left: 0;
  5951. overflow: hidden;
  5952. display: inline-block; }
  5953. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5954. svg, vml {
  5955. overflow: hidden; }
  5956. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  5957. .x-viewport, .x-viewport body {
  5958. margin: 0;
  5959. padding: 0;
  5960. border: 0 none;
  5961. overflow: hidden;
  5962. height: 100%;
  5963. position: static; }
  5964. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5965. .x-dd-drag-proxy {
  5966. z-index: 1000000!important; }
  5967. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5968. .x-dd-drag-repair .x-dd-drag-ghost {
  5969. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5970. opacity: 0.6; }
  5971. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5972. .x-dd-drag-repair .x-dd-drop-icon {
  5973. display: none; }
  5974. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5975. .x-dd-drag-ghost {
  5976. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  5977. opacity: 0.85;
  5978. padding: 5px;
  5979. padding-left: 20px;
  5980. white-space: nowrap;
  5981. color: #000;
  5982. font: normal 11px tahoma, arial, verdana, sans-serif;
  5983. border: 1px solid;
  5984. border-color: #ddd #bbb #bbb #ddd;
  5985. background-color: #fff; }
  5986. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5987. .x-dd-drop-icon {
  5988. position: absolute;
  5989. top: 3px;
  5990. left: 3px;
  5991. display: block;
  5992. width: 16px;
  5993. height: 16px;
  5994. background-color: transparent;
  5995. background-position: center;
  5996. background-repeat: no-repeat;
  5997. z-index: 1; }
  5998. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5999. .x-view-selector {
  6000. position: absolute;
  6001. left: 0;
  6002. top: 0;
  6003. width: 0;
  6004. background-color: #c3daf9;
  6005. border: 1px dotted #3399bb;
  6006. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6007. opacity: 0.5;
  6008. zoom: 1; }
  6009. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  6010. .x-dd-drop-nodrop .x-dd-drop-icon {
  6011. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  6012. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  6013. .x-dd-drop-ok .x-dd-drop-icon {
  6014. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  6015. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  6016. .x-dd-drop-ok-add .x-dd-drop-icon {
  6017. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  6018. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6019. .x-resizable-handle {
  6020. position: absolute;
  6021. z-index: 100;
  6022. font-size: 1px;
  6023. line-height: 6px;
  6024. overflow: hidden;
  6025. zoom: 1;
  6026. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  6027. opacity: 0;
  6028. background-color: #fff; }
  6029. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6030. .x-collapsed .x-resizable-handle {
  6031. display: none; }
  6032. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6033. .x-resizable-handle-east {
  6034. width: 6px;
  6035. height: 100%;
  6036. right: 0;
  6037. top: 0; }
  6038. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6039. .x-resizable-over .x-resizable-handle-east {
  6040. cursor: e-resize; }
  6041. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6042. .x-resizable-handle-south {
  6043. width: 100%;
  6044. height: 6px;
  6045. left: 0;
  6046. bottom: 0; }
  6047. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6048. .x-resizable-over .x-resizable-handle-south {
  6049. cursor: s-resize; }
  6050. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6051. .x-resizable-handle-west {
  6052. width: 6px;
  6053. height: 100%;
  6054. left: 0;
  6055. top: 0; }
  6056. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6057. .x-resizable-over .x-resizable-handle-west {
  6058. cursor: w-resize; }
  6059. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6060. .x-resizable-handle-north {
  6061. width: 100%;
  6062. height: 6px;
  6063. left: 0;
  6064. top: 0; }
  6065. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6066. .x-resizable-over .x-resizable-handle-north {
  6067. cursor: n-resize; }
  6068. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6069. .x-resizable-handle-southeast {
  6070. width: 6px;
  6071. height: 6px;
  6072. right: 0;
  6073. bottom: 0;
  6074. z-index: 101; }
  6075. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6076. .x-resizable-over .x-resizable-handle-southeast {
  6077. cursor: se-resize; }
  6078. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6079. .x-resizable-handle-northwest {
  6080. width: 6px;
  6081. height: 6px;
  6082. left: 0;
  6083. top: 0;
  6084. z-index: 101; }
  6085. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6086. .x-resizable-over .x-resizable-handle-northwest {
  6087. cursor: nw-resize; }
  6088. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6089. .x-resizable-handle-northeast {
  6090. width: 6px;
  6091. height: 6px;
  6092. right: 0;
  6093. top: 0;
  6094. z-index: 101; }
  6095. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6096. .x-resizable-over .x-resizable-handle-northeast {
  6097. cursor: ne-resize; }
  6098. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6099. .x-resizable-handle-southwest {
  6100. width: 6px;
  6101. height: 6px;
  6102. left: 0;
  6103. bottom: 0;
  6104. z-index: 101; }
  6105. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6106. .x-resizable-over .x-resizable-handle-southwest {
  6107. cursor: sw-resize; }
  6108. /*IE rounding error*/
  6109. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6110. .x-ie .x-resizable-handle-east {
  6111. margin-right: -1px;
  6112. /*IE rounding error*/ }
  6113. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6114. .x-ie .x-resizable-handle-south {
  6115. margin-bottom: -1px; }
  6116. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6117. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  6118. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  6119. opacity: 1; }
  6120. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6121. .x-window .x-window-handle {
  6122. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  6123. opacity: 0; }
  6124. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6125. .x-window-collapsed .x-window-handle {
  6126. display: none; }
  6127. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6128. .x-resizable-proxy {
  6129. border: 1px dashed #3b5a82;
  6130. position: absolute;
  6131. left: 0;
  6132. top: 0;
  6133. overflow: hidden;
  6134. z-index: 50000; }
  6135. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6136. .x-resizable-overlay {
  6137. position: absolute;
  6138. left: 0;
  6139. top: 0;
  6140. width: 100%;
  6141. height: 100%;
  6142. display: none;
  6143. z-index: 200000;
  6144. background-color: #fff;
  6145. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  6146. opacity: 0; }
  6147. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6148. .x-resizable-over .x-resizable-handle-east,
  6149. .x-resizable-over .x-resizable-handle-west,
  6150. .x-resizable-pinned .x-resizable-handle-east,
  6151. .x-resizable-pinned .x-resizable-handle-west {
  6152. background-position: left;
  6153. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  6154. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6155. .x-resizable-over .x-resizable-handle-south,
  6156. .x-resizable-over .x-resizable-handle-north,
  6157. .x-resizable-pinned .x-resizable-handle-south,
  6158. .x-resizable-pinned .x-resizable-handle-north {
  6159. background-position: top;
  6160. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  6161. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6162. .x-resizable-over .x-resizable-handle-southeast,
  6163. .x-resizable-pinned .x-resizable-handle-southeast {
  6164. background-position: top left;
  6165. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  6166. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6167. .x-resizable-over .x-resizable-handle-northwest,
  6168. .x-resizable-pinned .x-resizable-handle-northwest {
  6169. background-position: bottom right;
  6170. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  6171. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6172. .x-resizable-over .x-resizable-handle-northeast,
  6173. .x-resizable-pinned .x-resizable-handle-northeast {
  6174. background-position: bottom left;
  6175. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  6176. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6177. .x-resizable-over .x-resizable-handle-southwest,
  6178. .x-resizable-pinned .x-resizable-handle-southwest {
  6179. background-position: top right;
  6180. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  6181. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6182. .x-splitter .x-collapse-el {
  6183. position: absolute;
  6184. cursor: pointer;
  6185. background-color: transparent;
  6186. background-repeat: no-repeat !important; }
  6187. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6188. .x-layout-split-left,
  6189. .x-layout-split-right {
  6190. top: 50%;
  6191. margin-top: -17px;
  6192. width: 5px;
  6193. height: 35px; }
  6194. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6195. .x-layout-split-top,
  6196. .x-layout-split-bottom {
  6197. left: 50%;
  6198. width: 35px;
  6199. height: 5px;
  6200. margin-left: -17px; }
  6201. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6202. .x-layout-split-left {
  6203. background: no-repeat top right;
  6204. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6205. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6206. .x-layout-split-right {
  6207. background: no-repeat top left;
  6208. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6209. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6210. .x-layout-split-top {
  6211. background: no-repeat top left;
  6212. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6213. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6214. .x-layout-split-bottom {
  6215. background: no-repeat top left;
  6216. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6217. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6218. .x-splitter-collapsed .x-layout-split-left {
  6219. background: no-repeat top left;
  6220. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6221. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6222. .x-splitter-collapsed .x-layout-split-right {
  6223. background: no-repeat top right;
  6224. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6225. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6226. .x-splitter-collapsed .x-layout-split-top {
  6227. background: no-repeat top left;
  6228. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6229. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6230. .x-splitter-collapsed .x-layout-split-bottom {
  6231. background: no-repeat top left;
  6232. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6233. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6234. .x-splitter-horizontal {
  6235. cursor: e-resize;
  6236. cursor: row-resize;
  6237. font-size: 1px; }
  6238. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6239. .x-splitter-vertical {
  6240. cursor: e-resize;
  6241. cursor: col-resize;
  6242. font-size: 1px; }
  6243. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6244. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  6245. cursor: default; }
  6246. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6247. .x-splitter-active {
  6248. z-index: 4;
  6249. font-size: 1px;
  6250. background-color: #b4b4b4;
  6251. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6252. opacity: 0.8; }
  6253. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6254. .x-splitter-active .x-collapse-el {
  6255. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6256. opacity: 0.3; }
  6257. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6258. .x-proxy-el {
  6259. position: absolute;
  6260. background: #b4b4b4;
  6261. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6262. opacity: 0.8; }
  6263. /*
  6264. * Dock Layouts
  6265. * @todo move this somewhere else?
  6266. */
  6267. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6268. .x-docked {
  6269. position: absolute !important;
  6270. z-index: 1; }
  6271. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6272. .x-docked-top {
  6273. border-bottom-width: 0 !important; }
  6274. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6275. .x-docked-bottom {
  6276. border-top-width: 0 !important; }
  6277. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6278. .x-docked-left {
  6279. border-right-width: 0 !important; }
  6280. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6281. .x-docked-right {
  6282. border-left-width: 0 !important; }
  6283. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6284. .x-docked-noborder-top {
  6285. border-top-width: 0 !important; }
  6286. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6287. .x-docked-noborder-right {
  6288. border-right-width: 0 !important; }
  6289. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6290. .x-docked-noborder-bottom {
  6291. border-bottom-width: 0 !important; }
  6292. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6293. .x-docked-noborder-left {
  6294. border-left-width: 0 !important; }
  6295. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6296. .x-box-inner {
  6297. overflow: hidden;
  6298. zoom: 1;
  6299. position: relative;
  6300. left: 0;
  6301. top: 0; }
  6302. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6303. .x-box-item {
  6304. position: absolute !important;
  6305. left: 0;
  6306. top: 0; }
  6307. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6308. .x-rtl .x-box-item {
  6309. right: 0;
  6310. left: auto; }
  6311. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6312. .x-box-layout-ct,
  6313. .x-border-layout-ct {
  6314. overflow: hidden;
  6315. zoom: 1; }
  6316. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6317. .x-border-layout-ct {
  6318. background-color: #dfe8f6;
  6319. position: relative; }
  6320. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6321. .x-overflow-hidden {
  6322. overflow: hidden !important; }
  6323. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6324. .x-inline-children > * {
  6325. display: inline-block !important; }
  6326. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6327. .x-abs-layout-ct {
  6328. position: relative; }
  6329. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6330. .x-abs-layout-item {
  6331. position: absolute !important; }
  6332. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6333. .x-fit-item {
  6334. position: relative; }
  6335. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6336. .x-border-region-slide-in {
  6337. z-index: 5; }
  6338. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6339. .x-region-collapsed-placeholder {
  6340. z-index: 4; }
  6341. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6342. .x-accordion-hd .x-panel-header-text {
  6343. color: black;
  6344. font-weight: normal; }
  6345. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6346. .x-accordion-hd {
  6347. background: #d9e7f8 !important;
  6348. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  6349. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  6350. -o-box-shadow: inset 0 0 0 0 #d9e7f8;
  6351. box-shadow: inset 0 0 0 0 #d9e7f8; }
  6352. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6353. .x-accordion-hd .x-tool-collapse-top,
  6354. .x-accordion-hd .x-tool-collapse-right,
  6355. .x-accordion-hd .x-tool-collapse-bottom,
  6356. .x-accordion-hd .x-tool-collapse-left {
  6357. background-position: 0 -255px; }
  6358. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6359. .x-accordion-hd .x-tool-expand-top,
  6360. .x-accordion-hd .x-tool-expand-right,
  6361. .x-accordion-hd .x-tool-expand-bottom,
  6362. .x-accordion-hd .x-tool-expand-left {
  6363. background-position: 0 -240px; }
  6364. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6365. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  6366. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  6367. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  6368. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  6369. background-position: -15px -255px; }
  6370. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6371. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  6372. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  6373. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  6374. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  6375. background-position: -15px -240px; }
  6376. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6377. .x-accordion-hd {
  6378. border-width: 1px 0 1px 0 !important;
  6379. padding: 4px 5px 5px 5px;
  6380. border-top-color: #f3f7fb !important; }
  6381. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6382. .x-accordion-body {
  6383. border-width: 0 !important; }
  6384. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6385. .x-accordion-hd-sibling-expanded {
  6386. border-top-color: #99bce8 !important;
  6387. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6388. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6389. -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6390. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  6391. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6392. .x-accordion-hd-last-collapsed {
  6393. border-bottom-color: #d9e7f8 !important; }
  6394. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6395. .x-frame-tl,
  6396. .x-frame-tr,
  6397. .x-frame-tc,
  6398. .x-frame-bl,
  6399. .x-frame-br,
  6400. .x-frame-bc {
  6401. overflow: hidden;
  6402. background-repeat: no-repeat; }
  6403. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6404. .x-frame-tc,
  6405. .x-frame-bc {
  6406. background-repeat: repeat-x; }
  6407. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6408. .x-frame-mc {
  6409. position: relative;
  6410. background-repeat: repeat-x;
  6411. overflow: hidden; }
  6412. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6413. .x-box-scroller-left {
  6414. float: left;
  6415. height: 100%;
  6416. z-index: 5; }
  6417. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6418. .x-box-scroller-left .x-toolbar-scroll-left,
  6419. .x-box-scroller-left .x-tabbar-scroll-left {
  6420. width: 18px;
  6421. position: relative;
  6422. cursor: pointer;
  6423. height: 20px;
  6424. background: transparent no-repeat -18px 0;
  6425. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  6426. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6427. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6428. background-position: 0 0; }
  6429. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6430. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  6431. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  6432. background-position: -18px 0;
  6433. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6434. opacity: 0.5;
  6435. cursor: default; }
  6436. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6437. .x-box-scroller-left .x-toolbar-scroll-left {
  6438. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  6439. background-position: -14px 0; }
  6440. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6441. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6442. background-position: 0 0; }
  6443. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6444. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  6445. background-position: -14px 0; }
  6446. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6447. .x-box-scroller-left .x-toolbar-scroll-left {
  6448. width: 14px;
  6449. height: 22px;
  6450. border-bottom: 1px solid #8db2e3; }
  6451. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6452. .x-horizontal-box-overflow-body {
  6453. float: left; }
  6454. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6455. .x-box-scroller-right {
  6456. float: right;
  6457. height: 100%;
  6458. z-index: 5; }
  6459. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6460. .x-box-scroller-right .x-toolbar-scroll-right,
  6461. .x-box-scroller-right .x-tabbar-scroll-right {
  6462. width: 18px;
  6463. position: relative;
  6464. cursor: pointer;
  6465. height: 20px;
  6466. background: transparent no-repeat 0 0;
  6467. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  6468. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6469. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6470. background-position: -18px 0; }
  6471. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6472. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  6473. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  6474. background-position: 0 0;
  6475. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6476. opacity: 0.5;
  6477. cursor: default; }
  6478. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6479. .x-box-scroller-right .x-toolbar-scroll-right {
  6480. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  6481. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6482. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6483. background-position: -14px 0; }
  6484. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6485. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  6486. background-position: 0 0; }
  6487. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6488. .x-box-scroller-right .x-toolbar-scroll-right {
  6489. width: 14px;
  6490. height: 22px;
  6491. border-bottom: 1px solid #8db2e3; }
  6492. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6493. .x-box-scroller-top .x-box-scroller {
  6494. line-height: 0;
  6495. font-size: 0; }
  6496. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6497. .x-box-scroller-top .x-menu-scroll-top {
  6498. background: transparent no-repeat center center;
  6499. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  6500. height: 8px;
  6501. cursor: pointer; }
  6502. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6503. .x-box-scroller-bottom .x-box-scroller {
  6504. line-height: 0;
  6505. font-size: 0; }
  6506. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6507. .x-box-scroller-bottom .x-menu-scroll-bottom {
  6508. background: transparent no-repeat center center;
  6509. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  6510. height: 8px;
  6511. cursor: pointer; }
  6512. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6513. .x-box-menu-right {
  6514. float: right;
  6515. padding-right: 2px; }
  6516. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6517. .x-column {
  6518. float: left; }
  6519. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6520. .x-tool {
  6521. height: 15px; }
  6522. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6523. .x-tool img {
  6524. overflow: hidden;
  6525. width: 15px;
  6526. height: 15px;
  6527. cursor: pointer;
  6528. background-color: transparent;
  6529. background-repeat: no-repeat;
  6530. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  6531. margin: 0; }
  6532. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6533. .x-panel-header-horizontal .x-tool,
  6534. .x-window-header-horizontal .x-tool {
  6535. margin-left: 2px; }
  6536. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6537. .x-panel-header-vertical .x-tool,
  6538. .x-window-header-vertical .x-tool {
  6539. margin-top: 2px; }
  6540. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6541. .x-panel-header-vertical .x-tool-top,
  6542. .x-window-header-vertical .x-tool-top {
  6543. margin: 0 0 4px; }
  6544. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6545. .x-tool-placeholder {
  6546. visibility: hidden; }
  6547. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6548. .x-tool-toggle {
  6549. background-position: 0 -60px; }
  6550. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6551. .x-tool-over .x-tool-toggle {
  6552. background-position: -15px -60px; }
  6553. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6554. .x-panel-collapsed .x-tool-toggle,
  6555. .x-fieldset-collapsed .x-tool-toggle {
  6556. background-position: 0 -75px; }
  6557. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6558. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  6559. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  6560. background-position: -15px -75px; }
  6561. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6562. .x-tool-close {
  6563. background-position: 0 0; }
  6564. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6565. .x-tool-minimize {
  6566. background-position: 0 -15px; }
  6567. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6568. .x-tool-maximize {
  6569. background-position: 0 -30px; }
  6570. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6571. .x-tool-restore {
  6572. background-position: 0 -45px; }
  6573. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6574. .x-tool-gear {
  6575. background-position: 0 -90px; }
  6576. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6577. .x-tool-prev {
  6578. background-position: 0 -105px; }
  6579. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6580. .x-tool-next {
  6581. background-position: 0 -120px; }
  6582. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6583. .x-tool-pin {
  6584. background-position: 0 -135px; }
  6585. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6586. .x-tool-unpin {
  6587. background-position: 0 -150px; }
  6588. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6589. .x-tool-right {
  6590. background-position: 0 -165px; }
  6591. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6592. .x-tool-left {
  6593. background-position: 0 -180px; }
  6594. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6595. .x-tool-help {
  6596. background-position: 0 -300px; }
  6597. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6598. .x-tool-save {
  6599. background-position: 0 -285px; }
  6600. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6601. .x-tool-search {
  6602. background-position: 0 -270px; }
  6603. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6604. .x-tool-minus {
  6605. background-position: 0 -255px; }
  6606. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6607. .x-tool-plus {
  6608. background-position: 0 -240px; }
  6609. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6610. .x-tool-refresh {
  6611. background-position: 0 -225px; }
  6612. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6613. .x-tool-up {
  6614. background-position: 0 -210px; }
  6615. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6616. .x-tool-down {
  6617. background-position: 0 -195px; }
  6618. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6619. .x-tool-collapse {
  6620. background-position: 0 -345px; }
  6621. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6622. .x-tool-expand {
  6623. background-position: 0 -330px; }
  6624. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6625. .x-tool-print {
  6626. background-position: 0 -315px; }
  6627. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6628. .x-tool-expand-bottom,
  6629. .x-tool-collapse-bottom {
  6630. background-position: 0 -195px; }
  6631. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6632. .x-tool-expand-top,
  6633. .x-tool-collapse-top {
  6634. background-position: 0 -210px; }
  6635. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6636. .x-tool-expand-left,
  6637. .x-tool-collapse-left {
  6638. background-position: 0 -180px; }
  6639. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6640. .x-tool-expand-right,
  6641. .x-tool-collapse-right {
  6642. background-position: 0 -165px; }
  6643. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6644. .x-tool-over .x-tool-close {
  6645. background-position: -15px 0; }
  6646. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6647. .x-tool-over .x-tool-minimize {
  6648. background-position: -15px -15px; }
  6649. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6650. .x-tool-over .x-tool-maximize {
  6651. background-position: -15px -30px; }
  6652. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6653. .x-tool-over .x-tool-restore {
  6654. background-position: -15px -45px; }
  6655. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6656. .x-tool-over .x-tool-gear {
  6657. background-position: -15px -90px; }
  6658. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6659. .x-tool-over .x-tool-prev {
  6660. background-position: -15px -105px; }
  6661. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6662. .x-tool-over .x-tool-next {
  6663. background-position: -15px -120px; }
  6664. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6665. .x-tool-over .x-tool-pin {
  6666. background-position: -15px -135px; }
  6667. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6668. .x-tool-over .x-tool-unpin {
  6669. background-position: -15px -150px; }
  6670. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6671. .x-tool-over .x-tool-right {
  6672. background-position: -15px -165px; }
  6673. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6674. .x-tool-over .x-tool-left {
  6675. background-position: -15px -180px; }
  6676. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6677. .x-tool-over .x-tool-down {
  6678. background-position: -15px -195px; }
  6679. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6680. .x-tool-over .x-tool-up {
  6681. background-position: -15px -210px; }
  6682. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6683. .x-tool-over .x-tool-refresh {
  6684. background-position: -15px -225px; }
  6685. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6686. .x-tool-over .x-tool-plus {
  6687. background-position: -15px -240px; }
  6688. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6689. .x-tool-over .x-tool-minus {
  6690. background-position: -15px -255px; }
  6691. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6692. .x-tool-over .x-tool-search {
  6693. background-position: -15px -270px; }
  6694. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6695. .x-tool-over .x-tool-save {
  6696. background-position: -15px -285px; }
  6697. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6698. .x-tool-over .x-tool-help {
  6699. background-position: -15px -300px; }
  6700. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6701. .x-tool-over .x-tool-print {
  6702. background-position: -15px -315px; }
  6703. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6704. .x-tool-over .x-tool-expand {
  6705. background-position: -15px -330px; }
  6706. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6707. .x-tool-over .x-tool-collapse {
  6708. background-position: -15px -345px; }
  6709. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6710. .x-tool-over .x-tool-expand-bottom,
  6711. .x-tool-over .x-tool-collapse-bottom {
  6712. background-position: -15px -195px; }
  6713. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6714. .x-tool-over .x-tool-expand-top,
  6715. .x-tool-over .x-tool-collapse-top {
  6716. background-position: -15px -210px; }
  6717. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6718. .x-tool-over .x-tool-expand-left,
  6719. .x-tool-over .x-tool-collapse-left {
  6720. background-position: -15px -180px; }
  6721. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6722. .x-tool-over .x-tool-expand-right,
  6723. .x-tool-over .x-tool-collapse-right {
  6724. background-position: -15px -165px; }
  6725. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6726. .x-horizontal-scroller-present .x-grid-body {
  6727. border-bottom-width: 0px; }
  6728. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6729. .x-vertical-scroller-present .x-grid-body {
  6730. border-right-width: 0px; }
  6731. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6732. .x-scroller {
  6733. overflow: hidden; }
  6734. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6735. .x-scroller-vertical {
  6736. border: 1px solid #99bce8;
  6737. border-top-color: #c5c5c5; }
  6738. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6739. .x-scroller-horizontal {
  6740. border: 1px solid #99bce8; }
  6741. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6742. .x-vertical-scroller-present .x-scroller-horizontal {
  6743. border-right-width: 0px; }
  6744. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6745. .x-scroller-ct {
  6746. overflow: hidden;
  6747. position: absolute;
  6748. margin: 0;
  6749. padding: 0;
  6750. border: none;
  6751. left: 0px;
  6752. top: 0px;
  6753. /*
  6754. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  6755. perpendicular dimension and breaks the scroll as well as offsets it by the left
  6756. offset that we use to try and keep some size on this element. This works on all
  6757. browsers (including IE9).
  6758. */
  6759. box-sizing: content-box !important;
  6760. -ms-box-sizing: content-box !important;
  6761. -moz-box-sizing: content-box !important;
  6762. -webkit-box-sizing: content-box !important; }
  6763. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6764. .x-scroller-vertical .x-scroller-ct {
  6765. overflow-y: scroll; }
  6766. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6767. .x-scroller-horizontal .x-scroller-ct {
  6768. overflow-x: scroll; }
  6769. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6770. .x-html {
  6771. /* Begin bidirectionality settings (do not change) */ }
  6772. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6773. .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 {
  6774. display: block; }
  6775. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6776. .x-html li {
  6777. display: list-item;
  6778. list-style: disc; }
  6779. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6780. .x-html head {
  6781. display: none; }
  6782. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6783. .x-html table {
  6784. display: table; }
  6785. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6786. .x-html tr {
  6787. display: table-row; }
  6788. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6789. .x-html thead {
  6790. display: table-header-group; }
  6791. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6792. .x-html tbody {
  6793. display: table-row-group; }
  6794. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6795. .x-html tfoot {
  6796. display: table-footer-group; }
  6797. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6798. .x-html col {
  6799. display: table-column; }
  6800. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6801. .x-html colgroup {
  6802. display: table-column-group; }
  6803. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6804. .x-html td, .x-html th {
  6805. display: table-cell; }
  6806. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6807. .x-html caption {
  6808. display: table-caption; }
  6809. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6810. .x-html th {
  6811. font-weight: bolder;
  6812. text-align: center; }
  6813. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6814. .x-html caption {
  6815. text-align: center; }
  6816. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6817. .x-html body {
  6818. margin: 8px; }
  6819. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6820. .x-html h1 {
  6821. font-size: 2em;
  6822. margin: .67em 0; }
  6823. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6824. .x-html h2 {
  6825. font-size: 1.5em;
  6826. margin: .75em 0; }
  6827. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6828. .x-html h3 {
  6829. font-size: 1.17em;
  6830. margin: .83em 0; }
  6831. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6832. .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 {
  6833. margin: 1.12em 0; }
  6834. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6835. .x-html h5 {
  6836. font-size: .83em;
  6837. margin: 1.5em 0; }
  6838. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6839. .x-html h6 {
  6840. font-size: .75em;
  6841. margin: 1.67em 0; }
  6842. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6843. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  6844. font-weight: bolder; }
  6845. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6846. .x-html blockquote {
  6847. margin-left: 40px;
  6848. margin-right: 40px; }
  6849. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6850. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  6851. font-style: italic; }
  6852. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6853. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  6854. font-family: monospace; }
  6855. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6856. .x-html pre {
  6857. white-space: pre; }
  6858. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6859. .x-html button, .x-html textarea, .x-html input, .x-html select {
  6860. display: inline-block; }
  6861. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6862. .x-html big {
  6863. font-size: 1.17em; }
  6864. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6865. .x-html small, .x-html sub, .x-html sup {
  6866. font-size: .83em; }
  6867. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6868. .x-html sub {
  6869. vertical-align: sub; }
  6870. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6871. .x-html sup {
  6872. vertical-align: super; }
  6873. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6874. .x-html table {
  6875. border-spacing: 2px; }
  6876. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6877. .x-html thead, .x-html tbody, .x-html tfoot {
  6878. vertical-align: middle; }
  6879. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6880. .x-html td, .x-html th {
  6881. vertical-align: inherit; }
  6882. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6883. .x-html s, .x-html strike, .x-html del {
  6884. text-decoration: line-through; }
  6885. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6886. .x-html hr {
  6887. border: 1px inset; }
  6888. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6889. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  6890. margin-left: 40px; }
  6891. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6892. .x-html ul, .x-html menu, .x-html dir {
  6893. list-style-type: disc; }
  6894. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6895. .x-html ol {
  6896. list-style-type: decimal; }
  6897. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6898. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  6899. margin-top: 0;
  6900. margin-bottom: 0; }
  6901. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6902. .x-html u, .x-html ins {
  6903. text-decoration: underline; }
  6904. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6905. .x-html br:before {
  6906. content: "\A"; }
  6907. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6908. .x-html :before, .x-html :after {
  6909. white-space: pre-line; }
  6910. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6911. .x-html center {
  6912. text-align: center; }
  6913. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6914. .x-html :link, .x-html :visited {
  6915. text-decoration: underline; }
  6916. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6917. .x-html :focus {
  6918. outline: invert dotted thin; }
  6919. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6920. .x-html BDO[DIR="ltr"] {
  6921. direction: ltr;
  6922. unicode-bidi: bidi-override; }
  6923. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6924. .x-html BDO[DIR="rtl"] {
  6925. direction: rtl;
  6926. unicode-bidi: bidi-override; }