ext-standard-debug.css 281 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. Commercial Usage
  6. Licensees holding valid commercial licenses may use this file in accordance with the Commercial
  7. Software License Agreement provided with the Software or, alternatively, in accordance with the
  8. terms contained in a written agreement between you and Sencha.
  9. If you are unsure which license is appropriate for your use, please contact the sales department
  10. at http://www.sencha.com/contact.
  11. Build date: 2012-07-04 21:23:42 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
  12. */
  13. /**
  14. * @class Global_CSS
  15. *
  16. * Global CSS variables and mixins of Sencha Touch.
  17. */
  18. /**
  19. * @var {string} $prefix
  20. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  21. * JavaScript application.
  22. */
  23. /**
  24. * @var {string} $theme-name
  25. * The name of the theme. This must match the the output directory of the images.
  26. * (defaults to 'default')
  27. */
  28. /**
  29. * @var {boolean/string} $relative-image-path-for-uis
  30. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  31. * It can also be a string of the path value.
  32. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  33. */
  34. /**
  35. * @var {string} $font-family
  36. * The default font-family to be used throughout the theme.
  37. */
  38. /**
  39. * @var {string} $base-gradient
  40. * The base gradient to be used throughout the theme.
  41. */
  42. /**
  43. * @var {color} $base-color
  44. * The base color to be used throughout the theme.
  45. */
  46. /**
  47. * @var {boolean} $include-not-found-images
  48. * True to include files which are not found when compiling your SASS
  49. */
  50. /**
  51. * @var {boolean} $include-ie
  52. * True to include Internet Explorer specific rules
  53. */
  54. /**
  55. * @var {boolean} $include-ff
  56. * True to include Firefox specific rules
  57. */
  58. /**
  59. * @var {boolean} $include-chrome
  60. * True to include Chrome specific rules
  61. */
  62. /**
  63. * @var {boolean} $include-safari
  64. * True to include Safari specific rules
  65. */
  66. /**
  67. * @var {boolean} $include-opera
  68. * True to include Opera specific rules
  69. */
  70. /**
  71. * @var {boolean} $include-webkit
  72. * True to include Webkit specific rules
  73. */
  74. /**
  75. * @var {boolean} $compile-all
  76. * True to copile all CSS, even if above include rules are false
  77. */
  78. /**
  79. * @var {boolean} $scope-reset-css
  80. * True to scope the reset CSS within the $prefix variable.
  81. */
  82. /**
  83. * @var {color} $css-shadow-background-color
  84. * The base color for CSS shadows
  85. */
  86. /**
  87. * @var {color} $include-shadow-images
  88. * True to include all shadow images.
  89. */
  90. /**
  91. * @class Ext.form.field.Base
  92. */
  93. /**
  94. * @var {measurement} $form-field-height
  95. * Height for form fields.
  96. */
  97. /**
  98. * @var {measurement} $form-toolbar-field-height
  99. * Height for form fields in toolbar.
  100. */
  101. /**
  102. * @var {measurement} $form-error-icon-width
  103. * Width for form error icons.
  104. */
  105. /**
  106. * @var {measurement} $form-field-padding
  107. * Padding around form fields.
  108. */
  109. /**
  110. * @var {measurement} $form-field-font-size
  111. * Font size for form fields.
  112. */
  113. /**
  114. * @var {font-family} $form-field-font-family
  115. * Font family for form fields.
  116. */
  117. /**
  118. * @var {font-weight} $form-field-font-weight
  119. * Font weight for form fields.
  120. */
  121. /**
  122. * @var {font} $form-field-font
  123. * Font for form fields.
  124. */
  125. /**
  126. * @var {color} $form-field-color
  127. * Text color for form fields.
  128. */
  129. /**
  130. * @var {color} $form-field-empty-color
  131. * Text color for empty form fields.
  132. */
  133. /**
  134. * @var {color} $form-field-border-color
  135. * Border color for form fields.
  136. */
  137. /**
  138. * @var {measurement} $form-field-border-width
  139. * Border width for form fields.
  140. */
  141. /**
  142. * @var {color} $form-field-focus-border-color
  143. * Border color for focused form fields.
  144. */
  145. /**
  146. * @var {color} $form-field-invalid-border-color
  147. * Border color for invalid form fields.
  148. */
  149. /**
  150. * @var {color} $form-field-background-color
  151. * Background color for form fields.
  152. */
  153. /**
  154. * @var {string} $form-field-background-image
  155. * Background image for form fields.
  156. */
  157. /**
  158. * @var {color} $form-field-invalid-background-color
  159. * Background color for invalid form fields.
  160. */
  161. /**
  162. * @var {string} $form-field-invalid-background-image
  163. * Background image for invalid form fields.
  164. */
  165. /**
  166. * @var {background-repeat} $form-field-invalid-background-repeat
  167. * Background repeat for invalid form fields.
  168. */
  169. /**
  170. * @var {background-position} $form-field-invalid-background-position
  171. * Background position for invalid form fields.
  172. */
  173. /**
  174. * @class Ext.form.field.TextArea
  175. */
  176. /**
  177. * @class Ext.form.Label
  178. */
  179. /**
  180. * @class Ext.form.field.Checkbox
  181. */
  182. /**
  183. * @class Ext.form.field.Radio
  184. */
  185. /* Error messages */
  186. /**
  187. * @class Ext.form.field.Trigger
  188. */
  189. /**
  190. * @class Ext.form.FieldSet
  191. */
  192. /**
  193. * @class Ext.slider.Multi
  194. */
  195. /**
  196. * Creates a background gradient.
  197. *
  198. * @param {Color} $bg-color The background color of the gradient
  199. * @param {String/List} [$type] The type of gradient to be used. Can either
  200. * be a String which is a predefined gradient, or it can can be a list of
  201. * color_stops. If none is set, it will still set the `background-color`
  202. * to the $background-color.
  203. * @param {String} [$direction=top] The direction of the gradient. Can either be
  204. * `top` or `left`.
  205. * @member Global_CSS
  206. */
  207. /*
  208. * Method which inserts a full background-image property for a theme image.
  209. * It checks if the file exists and if it doesn't, it'll throw an error.
  210. * By default it will not include the background-image property if it is not found,
  211. * but this can be changed by changing the default value of $include-missing-images to
  212. * be true.
  213. */
  214. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  215. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  216. h4, h5, h6, pre, code, form, fieldset, legend,
  217. input, textarea, p, blockquote, th, td {
  218. margin: 0;
  219. padding: 0; }
  220. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  221. table {
  222. border-collapse: collapse;
  223. border-spacing: 0; }
  224. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  225. fieldset, img {
  226. border: 0; }
  227. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  228. address, caption, cite, code,
  229. dfn, em, strong, th, var {
  230. font-style: normal;
  231. font-weight: normal; }
  232. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  233. li {
  234. list-style: none; }
  235. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  236. caption, th {
  237. text-align: left; }
  238. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  239. h1, h2, h3, h4, h5, h6 {
  240. font-size: 100%; }
  241. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  242. q:before,
  243. q:after {
  244. content: ""; }
  245. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  246. abbr, acronym {
  247. border: 0;
  248. font-variant: normal; }
  249. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  250. sup {
  251. vertical-align: text-top; }
  252. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  253. sub {
  254. vertical-align: text-bottom; }
  255. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  256. input, textarea, select {
  257. font-family: inherit;
  258. font-size: inherit;
  259. font-weight: inherit; }
  260. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  261. *:focus {
  262. outline: none; }
  263. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  264. .x-border-box,
  265. .x-border-box * {
  266. box-sizing: border-box;
  267. -moz-box-sizing: border-box;
  268. -ms-box-sizing: border-box;
  269. -webkit-box-sizing: border-box; }
  270. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  271. .x-body {
  272. color: black;
  273. font-size: 12px;
  274. font-family: tahoma, arial, verdana, sans-serif; }
  275. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  276. .x-rtl {
  277. direction: rtl; }
  278. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  279. .x-ltr {
  280. direction: ltr; }
  281. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  282. .x-clear {
  283. overflow: hidden;
  284. clear: both;
  285. font-size: 0;
  286. line-height: 0;
  287. display: table; }
  288. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  289. .x-strict .x-ie7 .x-clear {
  290. height: 0;
  291. width: 0; }
  292. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  293. .x-layer {
  294. position: absolute !important;
  295. overflow: hidden;
  296. zoom: 1; }
  297. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  298. .x-shim {
  299. position: absolute;
  300. left: 0;
  301. top: 0;
  302. overflow: hidden;
  303. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  304. opacity: 0; }
  305. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  306. .x-hide-display {
  307. display: none !important; }
  308. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  309. .x-hide-visibility {
  310. visibility: hidden !important; }
  311. /* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
  312. .x-item-disabled .x-form-item-label,
  313. .x-item-disabled .x-form-field,
  314. .x-item-disabled .x-form-cb-label,
  315. .x-item-disabled .x-form-trigger {
  316. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  317. opacity: 0.3; }
  318. /* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
  319. .x-ie6 .x-item-disabled {
  320. filter: none; }
  321. /* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
  322. .x-hidden,
  323. .x-hide-offsets {
  324. display: block !important;
  325. visibility: hidden !important;
  326. position: absolute!important;
  327. left: -10000px !important;
  328. top: -10000px !important; }
  329. /* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
  330. .x-hide-nosize {
  331. height: 0!important;
  332. width: 0!important; }
  333. /* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
  334. .x-masked-relative {
  335. position: relative; }
  336. /* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
  337. .x-css-shadow {
  338. position: absolute;
  339. -webkit-border-radius: 5px 5px;
  340. -moz-border-radius: 5px 5px;
  341. -ms-border-radius: 5px 5px;
  342. -o-border-radius: 5px 5px;
  343. border-radius: 5px 5px; }
  344. /* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
  345. .x-ie-shadow {
  346. background-color: #777;
  347. display: none;
  348. position: absolute;
  349. overflow: hidden;
  350. zoom: 1; }
  351. /* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
  352. .x-box-tl {
  353. background: transparent no-repeat 0 0;
  354. zoom: 1; }
  355. /* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
  356. .x-box-tc {
  357. height: 8px;
  358. background: transparent repeat-x 0 0;
  359. overflow: hidden; }
  360. /* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
  361. .x-box-tr {
  362. background: transparent no-repeat right -8px; }
  363. /* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
  364. .x-box-ml {
  365. background: transparent repeat-y 0;
  366. padding-left: 4px;
  367. overflow: hidden;
  368. zoom: 1; }
  369. /* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
  370. .x-box-mc {
  371. background: repeat-x 0 -16px;
  372. padding: 4px 10px; }
  373. /* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
  374. .x-box-mc h3 {
  375. margin: 0 0 4px 0;
  376. zoom: 1; }
  377. /* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
  378. .x-box-mr {
  379. background: transparent repeat-y right;
  380. padding-right: 4px;
  381. overflow: hidden; }
  382. /* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
  383. .x-box-bl {
  384. background: transparent no-repeat 0 -16px;
  385. zoom: 1; }
  386. /* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
  387. .x-box-bc {
  388. background: transparent repeat-x 0 -8px;
  389. height: 8px;
  390. overflow: hidden; }
  391. /* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
  392. .x-box-br {
  393. background: transparent no-repeat right -24px; }
  394. /* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
  395. .x-box-tl, .x-box-bl {
  396. padding-left: 8px;
  397. overflow: hidden; }
  398. /* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
  399. .x-box-tr, .x-box-br {
  400. padding-right: 8px;
  401. overflow: hidden; }
  402. /* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
  403. .x-box-tl {
  404. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  405. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  406. .x-box-tc {
  407. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  408. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  409. .x-box-tr {
  410. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  411. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  412. .x-box-ml {
  413. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  414. /* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
  415. .x-box-mc {
  416. background-color: #eee;
  417. background-image: url('../../resources/themes/images/default/box/tb.gif');
  418. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  419. color: #393939;
  420. font-size: 15px; }
  421. /* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
  422. .x-box-mc h3 {
  423. font-size: 18px;
  424. font-weight: bold; }
  425. /* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
  426. .x-box-mr {
  427. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  428. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  429. .x-box-bl {
  430. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  431. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  432. .x-box-bc {
  433. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  434. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  435. .x-box-br {
  436. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  437. /* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
  438. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  439. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  440. /* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
  441. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  442. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  443. /* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
  444. .x-box-blue .x-box-mc {
  445. background-color: #c3daf9; }
  446. /* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
  447. .x-box-blue .x-box-mc h3 {
  448. color: #17385b; }
  449. /* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
  450. .x-box-blue .x-box-ml {
  451. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  452. /* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
  453. .x-box-blue .x-box-mr {
  454. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  455. /* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
  456. .x-container {
  457. zoom: 1; }
  458. /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
  459. .x-container:before {
  460. content: "";
  461. clear: both;
  462. display: table; }
  463. /* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
  464. table.x-container:before,
  465. tbody.x-container:before,
  466. tr.x-container:before {
  467. display: none; }
  468. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  469. .x-focus-element {
  470. position: absolute;
  471. top: -10px;
  472. left: -10px;
  473. width: 0px;
  474. height: 0px; }
  475. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  476. .x-focus-frame {
  477. position: absolute;
  478. left: 0px;
  479. top: 0px;
  480. z-index: 100000000;
  481. width: 0px;
  482. height: 0px; }
  483. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  484. .x-focus-frame-top,
  485. .x-focus-frame-bottom,
  486. .x-focus-frame-left,
  487. .x-focus-frame-right {
  488. position: absolute;
  489. top: 0px;
  490. left: 0px; }
  491. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  492. .x-focus-frame-top,
  493. .x-focus-frame-bottom {
  494. border-top: solid 2px #15428b;
  495. height: 2px; }
  496. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  497. .x-focus-frame-left,
  498. .x-focus-frame-right {
  499. border-left: solid 2px #15428b;
  500. width: 2px; }
  501. /**
  502. * Creates the base structure of a BoundList.
  503. * @member Ext.view.BoundList
  504. */
  505. /**
  506. * Creates the base structure of an Ext.Button
  507. * @member Ext.button.Button
  508. */
  509. /**
  510. * Creates a visual theme of an Ext.Button
  511. * @member Ext.button.Button
  512. */
  513. /**
  514. * Creates the base structure of a button group.
  515. * @member Ext.container.ButtonGroup
  516. */
  517. /**
  518. * Creates a visual theme of a button group.
  519. * @member Ext.container.ButtonGroup
  520. */
  521. /**
  522. * Creates the base structure of a date picker.
  523. * @member Ext.picker.Date
  524. */
  525. /**
  526. * Creates base structure for Ext.picker.Color
  527. * @member Ext.picker.Color
  528. */
  529. /**
  530. * Creates the base structure of a Menu
  531. * @member Ext.menu.Menu
  532. */
  533. /**
  534. * Create the base structure of an Ext.Panel
  535. * @member Ext.panel.Panel
  536. */
  537. /**
  538. * Creates a visual theme for an Ext.Panel
  539. * @member Ext.panel.Panel
  540. */
  541. /**
  542. * Creates base structure for Toolbar
  543. * @member Ext.toolbar.Toolbar
  544. */
  545. /**
  546. * Creates a visual theme for an Toolbar.
  547. * @param {String} $ui The name of the UI
  548. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  549. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  550. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  551. * @member Ext.toolbar.Toolbar
  552. */
  553. /**
  554. * Creates the base structure of Ext.form.Panel.
  555. * @member Ext.form.Panel
  556. */
  557. /**
  558. * Creates the base structure of form field.
  559. * @member Ext.form.field.Base
  560. */
  561. /**
  562. * Creates the base structure of FieldSet.
  563. * @member Ext.form.FieldSet
  564. */
  565. /**
  566. * Creates the base structure of file field.
  567. * @member Ext.form.field.File
  568. */
  569. /**
  570. * Creates the base structure of checkbox field.
  571. * @member Ext.form.field.Checkbox
  572. */
  573. /**
  574. * Creates the base structure of CheckboxGroup.
  575. * @member Ext.form.CheckboxGroup
  576. */
  577. /**
  578. * Creates the base structure of trigger field.
  579. * @member Ext.form.field.Trigger
  580. */
  581. /**
  582. * Creates the base structure of HtmlEditor field.
  583. * @member Ext.form.field.HtmlEditor
  584. */
  585. /**
  586. * Creates the base structure of QuickTip.
  587. * @member Ext.tip.QuickTip
  588. */
  589. /**
  590. * Creates the base structure of an Ext.Window
  591. * @member Ext.window.Window
  592. */
  593. /**
  594. * Creates a visual theme for an Ext.Panel
  595. * @member Ext.window.Window
  596. */
  597. /**
  598. * Creates a visual theme for TabBar
  599. * @member Ext.tab.Bar
  600. */
  601. /**
  602. * Creates the base structure of a Tab.
  603. * @member Ext.tab.Tab
  604. */
  605. /**
  606. * Creates the base structure of slider.
  607. * @member Ext.slider.Multi
  608. */
  609. /**
  610. * Creates base structure for a Grid.
  611. * @member Ext.grid.Panel
  612. */
  613. /**
  614. * Creates the base structure of Tree.
  615. * @member Ext.tree.Panel
  616. */
  617. /* Styles for Ext.LoadMask */
  618. /* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  619. .x-mask {
  620. z-index: 100;
  621. position: absolute;
  622. top: 0;
  623. left: 0;
  624. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  625. opacity: 0.5;
  626. width: 100%;
  627. height: 100%;
  628. zoom: 1;
  629. background: #cccccc; }
  630. /* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  631. .x-mask-msg {
  632. z-index: 20001;
  633. position: absolute;
  634. top: 0;
  635. left: 0;
  636. padding: 2px;
  637. border: 1px solid;
  638. border-color: #99bce8; }
  639. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  640. .x-mask-msg div {
  641. padding: 5px 10px 5px 25px;
  642. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  643. background-repeat: no-repeat;
  644. background-position: 5px center;
  645. cursor: wait;
  646. border: 1px solid #a3bad9;
  647. background-color: #eeeeee;
  648. color: #222222;
  649. font: normal 11px tahoma, arial, verdana, sans-serif; }
  650. /**
  651. * Creates the base structure of an Ext.ProgressBar
  652. * @member Ext.ProgressBar
  653. */
  654. /**
  655. * Creates a visual theme for an Ext.ProgressBar
  656. * @member Ext.ProgressBar
  657. */
  658. /**
  659. * Creates base structure for a Draw Component.
  660. * @member Ext.draw.Component
  661. */
  662. /**
  663. * Creates the base structure of Viewport.
  664. * @member Ext.container.Viewport
  665. */
  666. /**
  667. * W3C suggested default style sheet for HTML 4:
  668. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  669. *
  670. * @member Global_CSS
  671. */
  672. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  673. .x-boundlist {
  674. border-width: 1px;
  675. border-style: solid;
  676. border-color: #98c0f4;
  677. background: white; }
  678. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  679. .x-boundlist .x-toolbar {
  680. border-width: 1px 0 0 0; }
  681. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  682. .x-boundlist-item {
  683. padding: 2px;
  684. user-select: none;
  685. -o-user-select: none;
  686. -ms-user-select: none;
  687. -moz-user-select: -moz-none;
  688. -webkit-user-select: none;
  689. cursor: default;
  690. cursor: pointer;
  691. cursor: hand;
  692. position: relative;
  693. /*allow hover in IE on empty items*/
  694. border-width: 1px;
  695. border-style: dotted;
  696. border-color: white; }
  697. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  698. .x-boundlist-selected {
  699. background: #cbdaf0;
  700. border-color: #8eabe4; }
  701. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  702. .x-boundlist-item-over {
  703. background: #dfe8f6;
  704. border-color: #a3bae9; }
  705. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  706. .x-boundlist-floating {
  707. border-top-width: 0; }
  708. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  709. .x-boundlist-above {
  710. border-top-width: 1px;
  711. border-bottom-width: 1px; }
  712. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  713. .x-btn {
  714. display: inline-block;
  715. zoom: 1;
  716. *display: inline;
  717. position: relative;
  718. cursor: pointer;
  719. cursor: hand;
  720. white-space: nowrap;
  721. vertical-align: middle;
  722. background-repeat: no-repeat; }
  723. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  724. .x-btn * {
  725. cursor: pointer;
  726. cursor: hand; }
  727. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  728. .x-btn em {
  729. background-repeat: no-repeat; }
  730. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  731. .x-btn em a {
  732. text-decoration: none;
  733. display: block;
  734. color: inherit;
  735. width: 100%;
  736. zoom: 1; }
  737. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  738. .x-btn button {
  739. width: 100%;
  740. display: block;
  741. margin: 0;
  742. padding: 0;
  743. border: 0;
  744. background: none;
  745. outline: 0 none;
  746. overflow: hidden;
  747. vertical-align: bottom;
  748. -webkit-appearance: none; }
  749. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  750. .x-btn button::-moz-focus-inner {
  751. border: 0;
  752. padding: 0; }
  753. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  754. .x-btn .x-btn-inner {
  755. display: block;
  756. white-space: nowrap;
  757. background-color: transparent;
  758. background-repeat: no-repeat;
  759. background-position: left center;
  760. overflow: hidden; }
  761. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  762. .x-btn .x-btn-left .x-btn-inner {
  763. text-align: left; }
  764. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  765. .x-btn .x-btn-center .x-btn-inner {
  766. text-align: center; }
  767. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  768. .x-btn .x-btn-right .x-btn-inner {
  769. text-align: right; }
  770. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  771. .x-btn-disabled span {
  772. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  773. opacity: 0.5; }
  774. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  775. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  776. filter: none; }
  777. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  778. .x-ie7 .x-btn-disabled,
  779. .x-ie8 .x-btn-disabled {
  780. filter: none; }
  781. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  782. .x-ie6 .x-btn-disabled .x-btn-icon,
  783. .x-ie7 .x-btn-disabled .x-btn-icon,
  784. .x-ie8 .x-btn-disabled .x-btn-icon {
  785. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  786. opacity: 0.6; }
  787. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  788. .x-btn-icon-text-left .x-btn-icon {
  789. background-position: left center; }
  790. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  791. .x-btn-icon-text-right .x-btn-icon {
  792. background-position: right center; }
  793. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  794. .x-btn-icon-text-top .x-btn-icon {
  795. background-position: center top; }
  796. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  797. .x-btn-icon-text-bottom .x-btn-icon {
  798. background-position: center bottom; }
  799. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  800. .x-btn button, .x-btn a {
  801. position: relative; }
  802. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  803. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  804. position: absolute;
  805. background-repeat: no-repeat; }
  806. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  807. .x-btn-arrow-right {
  808. background: transparent no-repeat right center;
  809. padding-right: 12px; }
  810. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  811. .x-btn-arrow-right .x-btn-inner {
  812. padding-right: 0 !important; }
  813. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  814. .x-toolbar .x-btn-arrow-right {
  815. padding-right: 12px; }
  816. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  817. .x-btn-arrow-bottom {
  818. background: transparent no-repeat center bottom;
  819. padding-bottom: 12px; }
  820. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  821. .x-btn-arrow {
  822. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  823. display: block; }
  824. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  825. .x-btn-split-right,
  826. .x-btn-over .x-btn-split-right {
  827. background: transparent no-repeat right center;
  828. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  829. padding-right: 14px !important; }
  830. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  831. .x-btn-split-bottom,
  832. .x-btn-over .x-btn-split-bottom {
  833. background: transparent no-repeat center bottom;
  834. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  835. padding-bottom: 14px; }
  836. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  837. .x-toolbar .x-btn-split-right {
  838. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  839. padding-right: 12px !important; }
  840. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  841. .x-toolbar .x-btn-split-bottom {
  842. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  843. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  844. .x-btn-split {
  845. display: block; }
  846. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  847. .x-item-disabled,
  848. .x-item-disabled * {
  849. cursor: default; }
  850. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  851. .x-cycle-fixed-width .x-btn-inner {
  852. text-align: inherit; }
  853. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  854. .x-btn-over .x-btn-split-right {
  855. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  856. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  857. .x-btn-over .x-btn-split-bottom {
  858. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  859. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  860. .x-btn-default-small {
  861. border-color: #d1d1d1; }
  862. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  863. .x-btn-default-small {
  864. -webkit-border-radius: 3px;
  865. -moz-border-radius: 3px;
  866. -ms-border-radius: 3px;
  867. -o-border-radius: 3px;
  868. border-radius: 3px;
  869. padding: 2px 2px 2px 2px;
  870. border-width: 1px;
  871. border-style: solid;
  872. background-color: white; }
  873. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  874. .x-nlg .x-btn-default-small-mc {
  875. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  876. background-color: white; }
  877. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  878. .x-btn-default-small .x-btn-inner {
  879. font-size: 11px;
  880. font-weight: normal;
  881. font-family: tahoma, arial, verdana, sans-serif;
  882. color: #333333;
  883. background-repeat: no-repeat;
  884. padding: 0 4px; }
  885. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  886. .x-btn-default-small-icon button,
  887. .x-btn-default-small-icon a,
  888. .x-btn-default-small-icon .x-btn-inner,
  889. .x-btn-default-small-noicon button,
  890. .x-btn-default-small-noicon a,
  891. .x-btn-default-small-noicon .x-btn-inner {
  892. height: 16px;
  893. line-height: 16px; }
  894. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  895. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  896. padding: 0; }
  897. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  898. .x-btn-default-small-icon .x-btn-inner {
  899. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  900. width: 16px;
  901. padding: 0; }
  902. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  903. .x-btn-default-small-icon .x-btn-icon {
  904. width: 16px;
  905. height: 16px;
  906. top: 0;
  907. left: 0;
  908. bottom: 0;
  909. right: 0; }
  910. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  911. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  912. height: 16px; }
  913. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  914. .x-btn-default-small-icon-text-left .x-btn-inner {
  915. height: 16px;
  916. line-height: 16px;
  917. padding-left: 20px; }
  918. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  919. .x-btn-default-small-icon-text-left .x-btn-icon {
  920. width: 16px;
  921. height: auto;
  922. top: 0;
  923. left: 0;
  924. bottom: 0;
  925. right: auto; }
  926. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  927. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  928. height: 16px; }
  929. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  930. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  931. height: 16px; }
  932. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  933. .x-btn-default-small-icon-text-right .x-btn-inner {
  934. height: 16px;
  935. line-height: 16px;
  936. padding-right: 20px !important; }
  937. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  938. .x-btn-default-small-icon-text-right .x-btn-icon {
  939. width: 16px;
  940. height: auto;
  941. top: 0;
  942. left: auto;
  943. bottom: 0;
  944. right: 0; }
  945. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  946. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  947. height: 16px; }
  948. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  949. .x-btn-default-small-icon-text-top .x-btn-inner {
  950. padding-top: 20px; }
  951. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  952. .x-btn-default-small-icon-text-top .x-btn-icon {
  953. width: auto;
  954. height: 16px;
  955. top: 0;
  956. left: 0;
  957. bottom: auto;
  958. right: 0; }
  959. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  960. .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 {
  961. width: 16px; }
  962. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  963. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  964. padding-bottom: 20px; }
  965. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  966. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  967. width: auto;
  968. height: 16px;
  969. top: auto;
  970. left: 0;
  971. bottom: 0;
  972. right: 0; }
  973. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  974. .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 {
  975. width: 16px; }
  976. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  977. .x-btn-default-small-over {
  978. border-color: #b0ccf2;
  979. background-image: none;
  980. background-color: #e4f3ff;
  981. 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));
  982. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  983. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  984. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  985. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  986. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  987. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  988. .x-btn-default-small-focus {
  989. border-color: #b0ccf2;
  990. background-image: none;
  991. background-color: #e4f3ff;
  992. 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));
  993. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  994. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  995. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  996. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  997. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  998. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  999. .x-btn-default-small-menu-active,
  1000. .x-btn-default-small-pressed {
  1001. border-color: #9ebae1;
  1002. background-image: none;
  1003. background-color: #b6cbe4;
  1004. 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));
  1005. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1006. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1007. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1008. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1009. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1010. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1011. .x-btn-default-small-disabled {
  1012. border-color: #e1e1e1;
  1013. background-image: none;
  1014. background-color: #f7f7f7;
  1015. 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));
  1016. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1017. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1018. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1019. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1020. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1021. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1022. .x-btn-default-small-disabled .x-btn-inner {
  1023. color: #333333 !important; }
  1024. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1025. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1026. color: #595959 !important; }
  1027. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1028. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1029. color: #8c8c8c !important; }
  1030. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1031. .x-nlg .x-btn-default-small {
  1032. background-repeat: repeat-x;
  1033. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  1034. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1035. .x-nlg .x-btn-default-small-over {
  1036. background-repeat: repeat-x;
  1037. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1038. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1039. .x-nlg .x-btn-default-small-focus {
  1040. background-repeat: repeat-x;
  1041. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1042. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1043. .x-nlg .x-btn-default-small-menu-active,
  1044. .x-nlg .x-btn-default-small-pressed {
  1045. background-repeat: repeat-x;
  1046. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1047. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1048. .x-nlg .x-btn-default-small-disabled {
  1049. background-repeat: repeat-x;
  1050. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1051. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1052. .x-btn-default-medium {
  1053. border-color: #d1d1d1; }
  1054. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1055. .x-btn-default-medium {
  1056. -webkit-border-radius: 3px;
  1057. -moz-border-radius: 3px;
  1058. -ms-border-radius: 3px;
  1059. -o-border-radius: 3px;
  1060. border-radius: 3px;
  1061. padding: 3px 3px 3px 3px;
  1062. border-width: 1px;
  1063. border-style: solid;
  1064. background-color: white; }
  1065. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1066. .x-nlg .x-btn-default-medium-mc {
  1067. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  1068. background-color: white; }
  1069. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1070. .x-btn-default-medium .x-btn-inner {
  1071. font-size: 11px;
  1072. font-weight: normal;
  1073. font-family: tahoma, arial, verdana, sans-serif;
  1074. color: #333333;
  1075. background-repeat: no-repeat;
  1076. padding: 0 3px; }
  1077. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1078. .x-btn-default-medium-icon button,
  1079. .x-btn-default-medium-icon a,
  1080. .x-btn-default-medium-icon .x-btn-inner,
  1081. .x-btn-default-medium-noicon button,
  1082. .x-btn-default-medium-noicon a,
  1083. .x-btn-default-medium-noicon .x-btn-inner {
  1084. height: 24px;
  1085. line-height: 24px; }
  1086. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1087. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1088. padding: 0; }
  1089. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1090. .x-btn-default-medium-icon .x-btn-inner {
  1091. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1092. width: 24px;
  1093. padding: 0; }
  1094. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1095. .x-btn-default-medium-icon .x-btn-icon {
  1096. width: 24px;
  1097. height: 24px;
  1098. top: 0;
  1099. left: 0;
  1100. bottom: 0;
  1101. right: 0; }
  1102. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1103. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1104. height: 24px; }
  1105. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1106. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1107. height: 24px;
  1108. line-height: 24px;
  1109. padding-left: 28px; }
  1110. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1111. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1112. width: 24px;
  1113. height: auto;
  1114. top: 0;
  1115. left: 0;
  1116. bottom: 0;
  1117. right: auto; }
  1118. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1119. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1120. height: 24px; }
  1121. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1122. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1123. height: 24px; }
  1124. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1125. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1126. height: 24px;
  1127. line-height: 24px;
  1128. padding-right: 28px !important; }
  1129. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1130. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1131. width: 24px;
  1132. height: auto;
  1133. top: 0;
  1134. left: auto;
  1135. bottom: 0;
  1136. right: 0; }
  1137. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1138. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1139. height: 24px; }
  1140. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1141. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1142. padding-top: 28px; }
  1143. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1144. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1145. width: auto;
  1146. height: 24px;
  1147. top: 0;
  1148. left: 0;
  1149. bottom: auto;
  1150. right: 0; }
  1151. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1152. .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 {
  1153. width: 24px; }
  1154. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1155. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1156. padding-bottom: 28px; }
  1157. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1158. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1159. width: auto;
  1160. height: 24px;
  1161. top: auto;
  1162. left: 0;
  1163. bottom: 0;
  1164. right: 0; }
  1165. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1166. .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 {
  1167. width: 24px; }
  1168. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1169. .x-btn-default-medium-over {
  1170. border-color: #b0ccf2;
  1171. background-image: none;
  1172. background-color: #e4f3ff;
  1173. 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));
  1174. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1175. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1176. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1177. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1178. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1179. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1180. .x-btn-default-medium-focus {
  1181. border-color: #b0ccf2;
  1182. background-image: none;
  1183. background-color: #e4f3ff;
  1184. 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));
  1185. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1186. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1187. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1188. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1189. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1190. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1191. .x-btn-default-medium-menu-active,
  1192. .x-btn-default-medium-pressed {
  1193. border-color: #9ebae1;
  1194. background-image: none;
  1195. background-color: #b6cbe4;
  1196. 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));
  1197. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1198. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1199. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1200. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1201. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1202. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1203. .x-btn-default-medium-disabled {
  1204. border-color: #e1e1e1;
  1205. background-image: none;
  1206. background-color: #f7f7f7;
  1207. 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));
  1208. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1209. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1210. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1211. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1212. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1213. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1214. .x-btn-default-medium-disabled .x-btn-inner {
  1215. color: #333333 !important; }
  1216. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1217. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1218. color: #595959 !important; }
  1219. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1220. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1221. color: #8c8c8c !important; }
  1222. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1223. .x-nlg .x-btn-default-medium {
  1224. background-repeat: repeat-x;
  1225. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1226. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1227. .x-nlg .x-btn-default-medium-over {
  1228. background-repeat: repeat-x;
  1229. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1230. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1231. .x-nlg .x-btn-default-medium-focus {
  1232. background-repeat: repeat-x;
  1233. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1234. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1235. .x-nlg .x-btn-default-medium-menu-active,
  1236. .x-nlg .x-btn-default-medium-pressed {
  1237. background-repeat: repeat-x;
  1238. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1239. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1240. .x-nlg .x-btn-default-medium-disabled {
  1241. background-repeat: repeat-x;
  1242. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1243. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1244. .x-btn-default-large {
  1245. border-color: #d1d1d1; }
  1246. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1247. .x-btn-default-large {
  1248. -webkit-border-radius: 3px;
  1249. -moz-border-radius: 3px;
  1250. -ms-border-radius: 3px;
  1251. -o-border-radius: 3px;
  1252. border-radius: 3px;
  1253. padding: 3px 3px 3px 3px;
  1254. border-width: 1px;
  1255. border-style: solid;
  1256. background-color: white; }
  1257. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1258. .x-nlg .x-btn-default-large-mc {
  1259. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1260. background-color: white; }
  1261. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1262. .x-btn-default-large .x-btn-inner {
  1263. font-size: 11px;
  1264. font-weight: normal;
  1265. font-family: tahoma, arial, verdana, sans-serif;
  1266. color: #333333;
  1267. background-repeat: no-repeat;
  1268. padding: 0 3px; }
  1269. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1270. .x-btn-default-large-icon button,
  1271. .x-btn-default-large-icon a,
  1272. .x-btn-default-large-icon .x-btn-inner,
  1273. .x-btn-default-large-noicon button,
  1274. .x-btn-default-large-noicon a,
  1275. .x-btn-default-large-noicon .x-btn-inner {
  1276. height: 32px;
  1277. line-height: 32px; }
  1278. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1279. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1280. padding: 0; }
  1281. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1282. .x-btn-default-large-icon .x-btn-inner {
  1283. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1284. width: 32px;
  1285. padding: 0; }
  1286. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1287. .x-btn-default-large-icon .x-btn-icon {
  1288. width: 32px;
  1289. height: 32px;
  1290. top: 0;
  1291. left: 0;
  1292. bottom: 0;
  1293. right: 0; }
  1294. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1295. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1296. height: 32px; }
  1297. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1298. .x-btn-default-large-icon-text-left .x-btn-inner {
  1299. height: 32px;
  1300. line-height: 32px;
  1301. padding-left: 36px; }
  1302. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1303. .x-btn-default-large-icon-text-left .x-btn-icon {
  1304. width: 32px;
  1305. height: auto;
  1306. top: 0;
  1307. left: 0;
  1308. bottom: 0;
  1309. right: auto; }
  1310. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1311. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1312. height: 32px; }
  1313. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1314. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1315. height: 32px; }
  1316. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1317. .x-btn-default-large-icon-text-right .x-btn-inner {
  1318. height: 32px;
  1319. line-height: 32px;
  1320. padding-right: 36px !important; }
  1321. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1322. .x-btn-default-large-icon-text-right .x-btn-icon {
  1323. width: 32px;
  1324. height: auto;
  1325. top: 0;
  1326. left: auto;
  1327. bottom: 0;
  1328. right: 0; }
  1329. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1330. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1331. height: 32px; }
  1332. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1333. .x-btn-default-large-icon-text-top .x-btn-inner {
  1334. padding-top: 36px; }
  1335. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1336. .x-btn-default-large-icon-text-top .x-btn-icon {
  1337. width: auto;
  1338. height: 32px;
  1339. top: 0;
  1340. left: 0;
  1341. bottom: auto;
  1342. right: 0; }
  1343. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1344. .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 {
  1345. width: 32px; }
  1346. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1347. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1348. padding-bottom: 36px; }
  1349. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1350. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1351. width: auto;
  1352. height: 32px;
  1353. top: auto;
  1354. left: 0;
  1355. bottom: 0;
  1356. right: 0; }
  1357. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1358. .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 {
  1359. width: 32px; }
  1360. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1361. .x-btn-default-large-over {
  1362. border-color: #b0ccf2;
  1363. background-image: none;
  1364. background-color: #e4f3ff;
  1365. 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));
  1366. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1367. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1368. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1369. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1370. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1371. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1372. .x-btn-default-large-focus {
  1373. border-color: #b0ccf2;
  1374. background-image: none;
  1375. background-color: #e4f3ff;
  1376. 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));
  1377. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1378. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1379. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1380. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1381. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1382. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1383. .x-btn-default-large-menu-active,
  1384. .x-btn-default-large-pressed {
  1385. border-color: #9ebae1;
  1386. background-image: none;
  1387. background-color: #b6cbe4;
  1388. 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));
  1389. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1390. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1391. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1392. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1393. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1394. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1395. .x-btn-default-large-disabled {
  1396. border-color: #e1e1e1;
  1397. background-image: none;
  1398. background-color: #f7f7f7;
  1399. 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));
  1400. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1401. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1402. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1403. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1404. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1405. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1406. .x-btn-default-large-disabled .x-btn-inner {
  1407. color: #333333 !important; }
  1408. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1409. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1410. color: #595959 !important; }
  1411. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1412. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1413. color: #8c8c8c !important; }
  1414. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1415. .x-nlg .x-btn-default-large {
  1416. background-repeat: repeat-x;
  1417. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1418. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1419. .x-nlg .x-btn-default-large-over {
  1420. background-repeat: repeat-x;
  1421. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1422. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1423. .x-nlg .x-btn-default-large-focus {
  1424. background-repeat: repeat-x;
  1425. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1426. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1427. .x-nlg .x-btn-default-large-menu-active,
  1428. .x-nlg .x-btn-default-large-pressed {
  1429. background-repeat: repeat-x;
  1430. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1431. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1432. .x-nlg .x-btn-default-large-disabled {
  1433. background-repeat: repeat-x;
  1434. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1435. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1436. .x-btn-default-toolbar-small {
  1437. border-color: transparent; }
  1438. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1439. .x-btn-default-toolbar-small {
  1440. -webkit-border-radius: 3px;
  1441. -moz-border-radius: 3px;
  1442. -ms-border-radius: 3px;
  1443. -o-border-radius: 3px;
  1444. border-radius: 3px;
  1445. padding: 2px 2px 2px 2px;
  1446. border-width: 1px;
  1447. border-style: solid;
  1448. background-color: transparent; }
  1449. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1450. .x-nlg .x-btn-default-toolbar-small-mc {
  1451. background-color: transparent; }
  1452. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1453. .x-btn-default-toolbar-small .x-btn-inner {
  1454. font-size: 11px;
  1455. font-weight: normal;
  1456. font-family: tahoma, arial, verdana, sans-serif;
  1457. color: #333333;
  1458. background-repeat: no-repeat;
  1459. padding: 0 4px; }
  1460. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1461. .x-btn-default-toolbar-small-icon button,
  1462. .x-btn-default-toolbar-small-icon a,
  1463. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1464. .x-btn-default-toolbar-small-noicon button,
  1465. .x-btn-default-toolbar-small-noicon a,
  1466. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1467. height: 16px;
  1468. line-height: 16px; }
  1469. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1470. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1471. padding: 0; }
  1472. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1473. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1474. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1475. width: 16px;
  1476. padding: 0; }
  1477. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1478. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1479. width: 16px;
  1480. height: 16px;
  1481. top: 0;
  1482. left: 0;
  1483. bottom: 0;
  1484. right: 0; }
  1485. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1486. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1487. height: 16px; }
  1488. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1489. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1490. height: 16px;
  1491. line-height: 16px;
  1492. padding-left: 20px; }
  1493. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1494. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1495. width: 16px;
  1496. height: auto;
  1497. top: 0;
  1498. left: 0;
  1499. bottom: 0;
  1500. right: auto; }
  1501. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1502. .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 {
  1503. height: 16px; }
  1504. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1505. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1506. height: 16px; }
  1507. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1508. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1509. height: 16px;
  1510. line-height: 16px;
  1511. padding-right: 20px !important; }
  1512. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1513. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1514. width: 16px;
  1515. height: auto;
  1516. top: 0;
  1517. left: auto;
  1518. bottom: 0;
  1519. right: 0; }
  1520. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1521. .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 {
  1522. height: 16px; }
  1523. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1524. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1525. padding-top: 20px; }
  1526. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1527. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1528. width: auto;
  1529. height: 16px;
  1530. top: 0;
  1531. left: 0;
  1532. bottom: auto;
  1533. right: 0; }
  1534. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1535. .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 {
  1536. width: 16px; }
  1537. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1538. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1539. padding-bottom: 20px; }
  1540. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1541. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1542. width: auto;
  1543. height: 16px;
  1544. top: auto;
  1545. left: 0;
  1546. bottom: 0;
  1547. right: 0; }
  1548. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1549. .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 {
  1550. width: 16px; }
  1551. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1552. .x-btn-default-toolbar-small-over {
  1553. border-color: #81a4d0;
  1554. background-image: none;
  1555. background-color: #dbeeff;
  1556. 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));
  1557. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1558. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1559. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1560. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1561. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1562. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1563. .x-btn-default-toolbar-small-focus {
  1564. border-color: #81a4d0;
  1565. background-image: none;
  1566. background-color: #dbeeff;
  1567. 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));
  1568. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1569. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1570. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1571. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1572. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1573. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1574. .x-btn-default-toolbar-small-menu-active,
  1575. .x-btn-default-toolbar-small-pressed {
  1576. border-color: #7a9ac4;
  1577. background-image: none;
  1578. background-color: #bccfe5;
  1579. 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));
  1580. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1581. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1582. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1583. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1584. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1585. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1586. .x-btn-default-toolbar-small-disabled {
  1587. background-image: none;
  1588. background-color: transparent; }
  1589. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1590. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1591. color: #333333 !important; }
  1592. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1593. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1594. color: #595959 !important; }
  1595. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1596. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1597. color: #8c8c8c !important; }
  1598. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1599. .x-nlg .x-btn-default-toolbar-small-over {
  1600. background-repeat: repeat-x;
  1601. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1602. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1603. .x-nlg .x-btn-default-toolbar-small-focus {
  1604. background-repeat: repeat-x;
  1605. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  1606. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1607. .x-nlg .x-btn-default-toolbar-small-menu-active,
  1608. .x-nlg .x-btn-default-toolbar-small-pressed {
  1609. background-repeat: repeat-x;
  1610. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  1611. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1612. .x-btn-default-toolbar-medium {
  1613. border-color: transparent; }
  1614. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1615. .x-btn-default-toolbar-medium {
  1616. -webkit-border-radius: 3px;
  1617. -moz-border-radius: 3px;
  1618. -ms-border-radius: 3px;
  1619. -o-border-radius: 3px;
  1620. border-radius: 3px;
  1621. padding: 3px 3px 3px 3px;
  1622. border-width: 1px;
  1623. border-style: solid;
  1624. background-color: transparent; }
  1625. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1626. .x-nlg .x-btn-default-toolbar-medium-mc {
  1627. background-color: transparent; }
  1628. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1629. .x-btn-default-toolbar-medium .x-btn-inner {
  1630. font-size: 11px;
  1631. font-weight: normal;
  1632. font-family: tahoma, arial, verdana, sans-serif;
  1633. color: #333333;
  1634. background-repeat: no-repeat;
  1635. padding: 0 3px; }
  1636. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1637. .x-btn-default-toolbar-medium-icon button,
  1638. .x-btn-default-toolbar-medium-icon a,
  1639. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  1640. .x-btn-default-toolbar-medium-noicon button,
  1641. .x-btn-default-toolbar-medium-noicon a,
  1642. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  1643. height: 24px;
  1644. line-height: 24px; }
  1645. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1646. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  1647. padding: 0; }
  1648. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1649. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  1650. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1651. width: 24px;
  1652. padding: 0; }
  1653. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1654. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  1655. width: 24px;
  1656. height: 24px;
  1657. top: 0;
  1658. left: 0;
  1659. bottom: 0;
  1660. right: 0; }
  1661. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1662. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  1663. height: 24px; }
  1664. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1665. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  1666. height: 24px;
  1667. line-height: 24px;
  1668. padding-left: 28px; }
  1669. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1670. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  1671. width: 24px;
  1672. height: auto;
  1673. top: 0;
  1674. left: 0;
  1675. bottom: 0;
  1676. right: auto; }
  1677. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1678. .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 {
  1679. height: 24px; }
  1680. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1681. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  1682. height: 24px; }
  1683. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1684. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  1685. height: 24px;
  1686. line-height: 24px;
  1687. padding-right: 28px !important; }
  1688. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1689. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  1690. width: 24px;
  1691. height: auto;
  1692. top: 0;
  1693. left: auto;
  1694. bottom: 0;
  1695. right: 0; }
  1696. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1697. .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 {
  1698. height: 24px; }
  1699. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1700. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  1701. padding-top: 28px; }
  1702. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1703. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  1704. width: auto;
  1705. height: 24px;
  1706. top: 0;
  1707. left: 0;
  1708. bottom: auto;
  1709. right: 0; }
  1710. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1711. .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 {
  1712. width: 24px; }
  1713. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1714. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  1715. padding-bottom: 28px; }
  1716. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1717. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  1718. width: auto;
  1719. height: 24px;
  1720. top: auto;
  1721. left: 0;
  1722. bottom: 0;
  1723. right: 0; }
  1724. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1725. .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 {
  1726. width: 24px; }
  1727. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1728. .x-btn-default-toolbar-medium-over {
  1729. border-color: #81a4d0;
  1730. background-image: none;
  1731. background-color: #dbeeff;
  1732. 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));
  1733. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1734. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1735. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1736. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1737. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1738. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1739. .x-btn-default-toolbar-medium-focus {
  1740. border-color: #81a4d0;
  1741. background-image: none;
  1742. background-color: #dbeeff;
  1743. 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));
  1744. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1745. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1746. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1747. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1748. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1749. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1750. .x-btn-default-toolbar-medium-menu-active,
  1751. .x-btn-default-toolbar-medium-pressed {
  1752. border-color: #7a9ac4;
  1753. background-image: none;
  1754. background-color: #bccfe5;
  1755. 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));
  1756. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1757. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1758. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1759. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1760. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1761. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1762. .x-btn-default-toolbar-medium-disabled {
  1763. background-image: none;
  1764. background-color: transparent; }
  1765. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1766. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1767. color: #333333 !important; }
  1768. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1769. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1770. color: #595959 !important; }
  1771. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1772. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1773. color: #8c8c8c !important; }
  1774. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1775. .x-nlg .x-btn-default-toolbar-medium-over {
  1776. background-repeat: repeat-x;
  1777. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  1778. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1779. .x-nlg .x-btn-default-toolbar-medium-focus {
  1780. background-repeat: repeat-x;
  1781. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  1782. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1783. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  1784. .x-nlg .x-btn-default-toolbar-medium-pressed {
  1785. background-repeat: repeat-x;
  1786. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  1787. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1788. .x-btn-default-toolbar-large {
  1789. border-color: transparent; }
  1790. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1791. .x-btn-default-toolbar-large {
  1792. -webkit-border-radius: 3px;
  1793. -moz-border-radius: 3px;
  1794. -ms-border-radius: 3px;
  1795. -o-border-radius: 3px;
  1796. border-radius: 3px;
  1797. padding: 3px 3px 3px 3px;
  1798. border-width: 1px;
  1799. border-style: solid;
  1800. background-color: transparent; }
  1801. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1802. .x-nlg .x-btn-default-toolbar-large-mc {
  1803. background-color: transparent; }
  1804. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1805. .x-btn-default-toolbar-large .x-btn-inner {
  1806. font-size: 11px;
  1807. font-weight: normal;
  1808. font-family: tahoma, arial, verdana, sans-serif;
  1809. color: #333333;
  1810. background-repeat: no-repeat;
  1811. padding: 0 3px; }
  1812. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1813. .x-btn-default-toolbar-large-icon button,
  1814. .x-btn-default-toolbar-large-icon a,
  1815. .x-btn-default-toolbar-large-icon .x-btn-inner,
  1816. .x-btn-default-toolbar-large-noicon button,
  1817. .x-btn-default-toolbar-large-noicon a,
  1818. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  1819. height: 32px;
  1820. line-height: 32px; }
  1821. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1822. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  1823. padding: 0; }
  1824. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1825. .x-btn-default-toolbar-large-icon .x-btn-inner {
  1826. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1827. width: 32px;
  1828. padding: 0; }
  1829. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1830. .x-btn-default-toolbar-large-icon .x-btn-icon {
  1831. width: 32px;
  1832. height: 32px;
  1833. top: 0;
  1834. left: 0;
  1835. bottom: 0;
  1836. right: 0; }
  1837. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1838. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  1839. height: 32px; }
  1840. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1841. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  1842. height: 32px;
  1843. line-height: 32px;
  1844. padding-left: 36px; }
  1845. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1846. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  1847. width: 32px;
  1848. height: auto;
  1849. top: 0;
  1850. left: 0;
  1851. bottom: 0;
  1852. right: auto; }
  1853. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1854. .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 {
  1855. height: 32px; }
  1856. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1857. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  1858. height: 32px; }
  1859. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1860. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  1861. height: 32px;
  1862. line-height: 32px;
  1863. padding-right: 36px !important; }
  1864. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1865. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  1866. width: 32px;
  1867. height: auto;
  1868. top: 0;
  1869. left: auto;
  1870. bottom: 0;
  1871. right: 0; }
  1872. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1873. .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 {
  1874. height: 32px; }
  1875. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1876. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  1877. padding-top: 36px; }
  1878. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1879. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  1880. width: auto;
  1881. height: 32px;
  1882. top: 0;
  1883. left: 0;
  1884. bottom: auto;
  1885. right: 0; }
  1886. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1887. .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 {
  1888. width: 32px; }
  1889. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1890. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  1891. padding-bottom: 36px; }
  1892. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1893. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  1894. width: auto;
  1895. height: 32px;
  1896. top: auto;
  1897. left: 0;
  1898. bottom: 0;
  1899. right: 0; }
  1900. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1901. .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 {
  1902. width: 32px; }
  1903. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1904. .x-btn-default-toolbar-large-over {
  1905. border-color: #81a4d0;
  1906. background-image: none;
  1907. background-color: #dbeeff;
  1908. 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));
  1909. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1910. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1911. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1912. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1913. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1914. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1915. .x-btn-default-toolbar-large-focus {
  1916. border-color: #81a4d0;
  1917. background-image: none;
  1918. background-color: #dbeeff;
  1919. 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));
  1920. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1921. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1922. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1923. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1924. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1925. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1926. .x-btn-default-toolbar-large-menu-active,
  1927. .x-btn-default-toolbar-large-pressed {
  1928. border-color: #7a9ac4;
  1929. background-image: none;
  1930. background-color: #bccfe5;
  1931. 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));
  1932. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1933. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1934. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1935. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1936. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1937. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1938. .x-btn-default-toolbar-large-disabled {
  1939. background-image: none;
  1940. background-color: transparent; }
  1941. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1942. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1943. color: #333333 !important; }
  1944. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1945. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1946. color: #595959 !important; }
  1947. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1948. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1949. color: #8c8c8c !important; }
  1950. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1951. .x-nlg .x-btn-default-toolbar-large-over {
  1952. background-repeat: repeat-x;
  1953. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  1954. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1955. .x-nlg .x-btn-default-toolbar-large-focus {
  1956. background-repeat: repeat-x;
  1957. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  1958. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1959. .x-nlg .x-btn-default-toolbar-large-menu-active,
  1960. .x-nlg .x-btn-default-toolbar-large-pressed {
  1961. background-repeat: repeat-x;
  1962. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  1963. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1964. .x-btn-default-toolbar-small-disabled,
  1965. .x-btn-default-toolbar-medium-disabled,
  1966. .x-btn-default-toolbar-large-disabled {
  1967. border-color: transparent;
  1968. background-image: none;
  1969. background: transparent; }
  1970. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1971. .x-btn-group {
  1972. position: relative;
  1973. overflow: hidden; }
  1974. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1975. .x-btn-group-body {
  1976. position: relative;
  1977. zoom: 1;
  1978. padding: 0 1px; }
  1979. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1980. .x-btn-group-body .x-table-layout-cell {
  1981. vertical-align: top; }
  1982. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1983. .x-btn-group-header-text {
  1984. white-space: nowrap; }
  1985. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1986. .x-btn-group-default-framed {
  1987. -webkit-border-radius: 2px;
  1988. -moz-border-radius: 2px;
  1989. -ms-border-radius: 2px;
  1990. -o-border-radius: 2px;
  1991. border-radius: 2px;
  1992. padding: 1px 1px 1px 1px;
  1993. border-width: 1px;
  1994. border-style: solid;
  1995. background-color: #d0def0; }
  1996. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1997. .x-nlg .x-btn-group-default-framed-mc {
  1998. background-color: #d0def0; }
  1999. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2000. .x-btn-group-default-framed {
  2001. border-color: #b7c8d7;
  2002. -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;
  2003. -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;
  2004. 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; }
  2005. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2006. .x-btn-group-header-default-framed {
  2007. margin: 2px 2px 0 2px; }
  2008. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2009. .x-btn-group-header-body-default-framed {
  2010. padding: 1px 0;
  2011. background: #c2d8f0;
  2012. -moz-border-radius-topleft: 2px;
  2013. -webkit-border-top-left-radius: 2px;
  2014. -ms-border-top-left-radius: 2px;
  2015. -o-border-top-left-radius: 2px;
  2016. border-top-left-radius: 2px;
  2017. -moz-border-radius-topright: 2px;
  2018. -webkit-border-top-right-radius: 2px;
  2019. -ms-border-top-right-radius: 2px;
  2020. -o-border-top-right-radius: 2px;
  2021. border-top-right-radius: 2px; }
  2022. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2023. .x-btn-group-header-text-default-framed {
  2024. font: normal 11px tahoma, arial, verdana, sans-serif;
  2025. color: #3e6aaa; }
  2026. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2027. .x-datepicker {
  2028. border: 1px solid #1b376c;
  2029. background-color: white;
  2030. position: relative; }
  2031. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2032. .x-datepicker a {
  2033. -moz-outline: 0 none;
  2034. outline: 0 none;
  2035. color: #15428b;
  2036. text-decoration: none;
  2037. border-width: 0; }
  2038. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2039. .x-datepicker-inner,
  2040. .x-datepicker-inner td,
  2041. .x-datepicker-inner th {
  2042. border-collapse: separate; }
  2043. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2044. .x-datepicker-header {
  2045. position: relative;
  2046. height: 26px;
  2047. background-image: none;
  2048. background-color: #23427c;
  2049. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  2050. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2051. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2052. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2053. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2054. background-image: linear-gradient(top, #264888, #1f3a6c); }
  2055. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2056. .x-datepicker-prev,
  2057. .x-datepicker-next {
  2058. position: absolute;
  2059. top: 5px;
  2060. width: 18px; }
  2061. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2062. .x-datepicker-prev a,
  2063. .x-datepicker-next a {
  2064. display: block;
  2065. width: 16px;
  2066. height: 16px;
  2067. background-position: top;
  2068. background-repeat: no-repeat;
  2069. cursor: pointer;
  2070. text-decoration: none !important;
  2071. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2072. opacity: 0.7; }
  2073. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2074. .x-datepicker-prev a:hover,
  2075. .x-datepicker-next a:hover {
  2076. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2077. opacity: 1; }
  2078. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2079. .x-datepicker-next {
  2080. right: 5px; }
  2081. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2082. .x-datepicker-next a {
  2083. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  2084. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2085. .x-datepicker-prev {
  2086. left: 5px; }
  2087. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2088. .x-datepicker-prev a {
  2089. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  2090. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2091. .x-item-disabled .x-datepicker-prev a:hover,
  2092. .x-item-disabled .x-datepicker-next a:hover {
  2093. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2094. opacity: 0.6; }
  2095. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2096. .x-datepicker-month {
  2097. padding-top: 3px; }
  2098. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2099. .x-datepicker-month .x-btn,
  2100. .x-datepicker-month button,
  2101. .x-datepicker-month .x-btn-tc,
  2102. .x-datepicker-month .x-btn-tl,
  2103. .x-datepicker-month .x-btn-tr,
  2104. .x-datepicker-month .x-btn-mc,
  2105. .x-datepicker-month .x-btn-ml,
  2106. .x-datepicker-month .x-btn-mr,
  2107. .x-datepicker-month .x-btn-bc,
  2108. .x-datepicker-month .x-btn-bl,
  2109. .x-datepicker-month .x-btn-br {
  2110. background: transparent !important;
  2111. border-width: 0 !important; }
  2112. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2113. .x-datepicker-month span {
  2114. color: #fff !important; }
  2115. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2116. .x-datepicker-month .x-btn-split-right {
  2117. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2118. padding-right: 12px; }
  2119. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2120. .x-datepicker-next {
  2121. text-align: right; }
  2122. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2123. .x-datepicker-month {
  2124. text-align: center; }
  2125. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2126. .x-datepicker-month button {
  2127. color: white !important; }
  2128. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2129. table.x-datepicker-inner {
  2130. width: 100%;
  2131. table-layout: fixed; }
  2132. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2133. table.x-datepicker-inner th {
  2134. width: 25px;
  2135. height: 19px;
  2136. padding: 0;
  2137. color: #233d6d;
  2138. font: normal 10px tahoma, arial, verdana, sans-serif;
  2139. text-align: right;
  2140. border-bottom: 1px solid #b2d1f5;
  2141. border-collapse: separate;
  2142. background-image: none;
  2143. background-color: #dfecfb;
  2144. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  2145. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2146. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2147. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2148. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2149. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2150. cursor: default; }
  2151. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2152. table.x-datepicker-inner th span {
  2153. display: block;
  2154. padding-right: 7px; }
  2155. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2156. table.x-datepicker-inner tr {
  2157. height: 20px; }
  2158. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2159. table.x-datepicker-inner td {
  2160. border: 1px solid;
  2161. height: 17px;
  2162. border-color: white;
  2163. text-align: right;
  2164. padding: 0; }
  2165. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2166. table.x-datepicker-inner a {
  2167. padding-right: 4px;
  2168. display: block;
  2169. zoom: 1;
  2170. font: normal 11px tahoma, arial, verdana, sans-serif;
  2171. color: black;
  2172. text-decoration: none;
  2173. text-align: right; }
  2174. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2175. table.x-datepicker-inner .x-datepicker-active {
  2176. cursor: pointer;
  2177. color: black; }
  2178. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2179. table.x-datepicker-inner .x-datepicker-selected a {
  2180. background: repeat-x left top;
  2181. background-color: #dae5f3;
  2182. border: 1px solid #8db2e3; }
  2183. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2184. table.x-datepicker-inner .x-datepicker-selected span {
  2185. font-weight: bold; }
  2186. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2187. table.x-datepicker-inner .x-datepicker-today a {
  2188. border: 1px solid;
  2189. border-color: darkred; }
  2190. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2191. table.x-datepicker-inner .x-datepicker-prevday a,
  2192. table.x-datepicker-inner .x-datepicker-nextday a {
  2193. text-decoration: none !important;
  2194. color: #aaa; }
  2195. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2196. table.x-datepicker-inner a:hover,
  2197. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2198. text-decoration: none !important;
  2199. color: #000;
  2200. background-color: #ddecfe; }
  2201. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2202. table.x-datepicker-inner .x-datepicker-disabled a {
  2203. cursor: default;
  2204. background-color: #eee;
  2205. color: #bbb; }
  2206. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2207. .x-datepicker-footer,
  2208. .x-monthpicker-buttons {
  2209. position: relative;
  2210. border-top: 1px solid #b2d1f5;
  2211. background-image: none;
  2212. background-color: #dfecfb;
  2213. 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));
  2214. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2215. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2216. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2217. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2218. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2219. text-align: center; }
  2220. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2221. .x-datepicker-footer .x-btn,
  2222. .x-monthpicker-buttons .x-btn {
  2223. position: relative;
  2224. margin: 4px; }
  2225. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2226. .x-item-disabled .x-datepicker-inner a:hover {
  2227. background: none; }
  2228. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2229. .x-datepicker .x-monthpicker {
  2230. position: absolute;
  2231. left: 0;
  2232. top: 0; }
  2233. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2234. .x-monthpicker {
  2235. border: 1px solid #1b376c;
  2236. background-color: white; }
  2237. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2238. .x-monthpicker-months,
  2239. .x-monthpicker-years {
  2240. float: left;
  2241. height: 167px;
  2242. width: 88px; }
  2243. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2244. .x-monthpicker-item {
  2245. float: left;
  2246. margin: 4px 0 5px 0;
  2247. font: normal 11px tahoma, arial, verdana, sans-serif;
  2248. text-align: center;
  2249. vertical-align: middle;
  2250. height: 18px;
  2251. width: 43px;
  2252. border: 0 none; }
  2253. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2254. .x-monthpicker-item a {
  2255. display: block;
  2256. margin: 0 5px;
  2257. text-decoration: none;
  2258. color: #15428b;
  2259. border: 1px solid white;
  2260. line-height: 17px; }
  2261. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2262. .x-monthpicker-item a:hover {
  2263. background-color: #ddecfe; }
  2264. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2265. .x-monthpicker-item a.x-monthpicker-selected {
  2266. background-color: #dfecfb;
  2267. border: 1px solid #8db2e3; }
  2268. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2269. .x-monthpicker-months {
  2270. border-right: 1px solid #1b376c;
  2271. width: 87px; }
  2272. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2273. .x-monthpicker-years .x-monthpicker-item {
  2274. width: 44px; }
  2275. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2276. .x-monthpicker-yearnav {
  2277. height: 28px; }
  2278. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2279. .x-monthpicker-yearnav button {
  2280. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2281. height: 15px;
  2282. width: 15px;
  2283. padding: 0;
  2284. margin: 6px 12px 5px 15px;
  2285. border: 0;
  2286. outline: 0 none; }
  2287. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2288. .x-monthpicker-yearnav button::-moz-focus-inner {
  2289. border: 0;
  2290. padding: 0; }
  2291. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2292. .x-monthpicker-yearnav-next {
  2293. background-position: 0 -120px; }
  2294. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2295. .x-monthpicker-yearnav-next-over {
  2296. cursor: pointer;
  2297. cursor: hand;
  2298. background-position: -15px -120px; }
  2299. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2300. .x-monthpicker-yearnav-prev {
  2301. background-position: 0 -105px; }
  2302. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2303. .x-monthpicker-yearnav-prev-over {
  2304. cursor: pointer;
  2305. cursor: hand;
  2306. background-position: -15px -105px; }
  2307. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2308. .x-monthpicker-small .x-monthpicker-item {
  2309. margin: 2px 0 2px 0; }
  2310. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2311. .x-monthpicker-small .x-monthpicker-yearnav {
  2312. height: 23px; }
  2313. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2314. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  2315. height: 136px; }
  2316. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2317. .x-nlg .x-datepicker-header {
  2318. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  2319. background-repeat: repeat-x;
  2320. background-position: top left; }
  2321. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2322. .x-nlg .x-datepicker-footer,
  2323. .x-nlg .x-monthpicker-buttons {
  2324. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  2325. background-repeat: repeat-x;
  2326. background-position: top left; }
  2327. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2328. .x-color-picker {
  2329. width: 144px;
  2330. height: 90px;
  2331. cursor: pointer; }
  2332. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2333. .x-color-picker a {
  2334. border: 1px solid #fff;
  2335. float: left;
  2336. padding: 2px;
  2337. text-decoration: none;
  2338. -moz-outline: 0 none;
  2339. outline: 0 none;
  2340. cursor: pointer; }
  2341. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2342. .x-color-picker a:hover,
  2343. .x-color-picker a.x-color-picker-selected {
  2344. border-color: #8bb8f3;
  2345. background-color: #deecfd; }
  2346. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2347. .x-color-picker em {
  2348. display: block;
  2349. border: 1px solid #aca899; }
  2350. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2351. .x-color-picker em span {
  2352. cursor: pointer;
  2353. display: block;
  2354. height: 10px;
  2355. width: 10px;
  2356. line-height: 10px; }
  2357. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2358. .x-menu-body {
  2359. user-select: none;
  2360. -o-user-select: none;
  2361. -ms-user-select: none;
  2362. -moz-user-select: -moz-none;
  2363. -webkit-user-select: none;
  2364. cursor: default;
  2365. background: #f0f0f0 !important;
  2366. padding: 2px; }
  2367. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2368. .x-menu-item .x-form-text {
  2369. user-select: text;
  2370. -webkit-user-select: text;
  2371. -o-user-select: text;
  2372. -ie-user-select: text;
  2373. -moz-user-select: text;
  2374. -ie-user-select: text; }
  2375. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2376. .x-menu-icon-separator {
  2377. position: absolute;
  2378. top: 0px;
  2379. left: 27px;
  2380. z-index: 0;
  2381. border-left: solid 1px #e0e0e0;
  2382. background-color: white;
  2383. width: 2px;
  2384. overflow: hidden; }
  2385. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2386. .x-menu-plain .x-menu-icon-separator {
  2387. display: none; }
  2388. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2389. .x-menu-focus {
  2390. display: block;
  2391. position: absolute;
  2392. top: -10px;
  2393. left: -10px;
  2394. width: 0px;
  2395. height: 0px; }
  2396. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2397. .x-menu-item {
  2398. white-space: nowrap;
  2399. overflow: hidden;
  2400. z-index: 1; }
  2401. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2402. .x-menu-item-cmp {
  2403. margin-bottom: 1px; }
  2404. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2405. .x-menu-item-link {
  2406. display: block;
  2407. margin: 1px;
  2408. padding: 6px 2px 3px 32px;
  2409. text-decoration: none !important;
  2410. line-height: 16px;
  2411. cursor: default; }
  2412. /* line 70, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2413. .x-opera .x-menu-item-link {
  2414. position: relative; }
  2415. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2416. .x-menu-item-icon {
  2417. width: 16px;
  2418. height: 16px;
  2419. position: absolute;
  2420. top: 5px;
  2421. left: 4px;
  2422. background: no-repeat center center; }
  2423. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2424. .x-menu-item-icon-right {
  2425. width: 16px;
  2426. height: 16px;
  2427. position: absolute;
  2428. top: 6px;
  2429. right: 4px;
  2430. background: no-repeat center center; }
  2431. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2432. .x-menu-item-text {
  2433. font-size: 11px;
  2434. color: #222222; }
  2435. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2436. .x-menu-item-checked .x-menu-item-icon {
  2437. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  2438. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2439. .x-menu-item-checked .x-menu-group-icon {
  2440. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  2441. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2442. .x-menu-item-unchecked .x-menu-item-icon {
  2443. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  2444. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2445. .x-menu-item-unchecked .x-menu-group-icon {
  2446. background-image: none; }
  2447. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2448. .x-menu-item-separator {
  2449. height: 2px;
  2450. border-top: solid 1px #e0e0e0;
  2451. background-color: white;
  2452. margin: 2px 0px;
  2453. overflow: hidden; }
  2454. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2455. .x-menu-item-arrow {
  2456. position: absolute;
  2457. width: 12px;
  2458. height: 9px;
  2459. top: 9px;
  2460. right: 0px;
  2461. background: no-repeat center center;
  2462. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  2463. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2464. .x-menu-item-indent {
  2465. margin-left: 31px;
  2466. /* The 2px is the width of the seperator */ }
  2467. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2468. .x-menu-item-active {
  2469. cursor: pointer; }
  2470. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2471. .x-menu-item-active .x-menu-item-link {
  2472. background-image: none;
  2473. background-color: #d9e8fb;
  2474. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  2475. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  2476. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  2477. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  2478. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  2479. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  2480. margin: 0px;
  2481. border: 1px solid #a9cbf5;
  2482. cursor: pointer;
  2483. -webkit-border-radius: 3px;
  2484. -moz-border-radius: 3px;
  2485. -ms-border-radius: 3px;
  2486. -o-border-radius: 3px;
  2487. border-radius: 3px; }
  2488. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2489. .x-menu-item-disabled {
  2490. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  2491. opacity: 0.5; }
  2492. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2493. .x-nlg .x-menu-item-active .x-menu-item-link {
  2494. background: #d9e8fb repeat-x left top;
  2495. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  2496. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2497. .x-menu-date-item {
  2498. border-color: #99BBE8; }
  2499. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2500. .x-panel .x-grid-body {
  2501. background: white;
  2502. border-color: #99bce8;
  2503. border-style: solid;
  2504. border-width: 1px;
  2505. border-top-color: #c5c5c5; }
  2506. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2507. .x-panel .x-grid-header-ct-hidden {
  2508. visibility: hidden; }
  2509. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2510. .x-grid-empty {
  2511. padding: 10px;
  2512. color: gray;
  2513. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  2514. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2515. .x-grid-header-hidden .x-grid-body {
  2516. border-top-color: #99bce8 !important; }
  2517. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2518. .x-grid-view {
  2519. overflow: hidden;
  2520. position: relative; }
  2521. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2522. .x-grid-table {
  2523. table-layout: fixed;
  2524. border-collapse: separate; }
  2525. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2526. .x-autowidth-table table.x-grid-table {
  2527. table-layout: auto;
  2528. width: auto!important; }
  2529. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2530. .x-grid-row .x-grid-table {
  2531. border-collapse: collapse; }
  2532. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2533. .x-grid-locked .x-grid-inner-locked {
  2534. border-width: 0 1px 0 0 !important;
  2535. border-style: solid; }
  2536. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2537. .x-grid-header-ct {
  2538. cursor: default;
  2539. zoom: 1;
  2540. padding: 0;
  2541. border: 1px solid #99bce8;
  2542. border-bottom-color: #c5c5c5; }
  2543. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2544. .x-accordion-item .x-grid-header-ct {
  2545. border-width: 0 0 1px 0!important; }
  2546. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2547. .x-column-header {
  2548. padding: 0;
  2549. position: absolute;
  2550. overflow: hidden;
  2551. border-right: 1px solid #c5c5c5;
  2552. border-left: 0 none;
  2553. border-top: 0 none;
  2554. border-bottom: 0 none;
  2555. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  2556. color: null;
  2557. font: normal 11px tahoma, arial, verdana, sans-serif; }
  2558. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2559. .x-group-header {
  2560. padding: 0;
  2561. border-left-width: 0; }
  2562. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2563. .x-group-sub-header {
  2564. background: transparent;
  2565. border-top: 1px solid #c5c5c5;
  2566. border-left-width: 0; }
  2567. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2568. .x-column-header-inner {
  2569. zoom: 1;
  2570. position: relative;
  2571. white-space: nowrap;
  2572. line-height: 15px;
  2573. padding: 3px 6px 4px; }
  2574. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2575. .x-column-header-inner .x-column-header-text {
  2576. white-space: nowrap; }
  2577. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2578. .x-column-header-over,
  2579. .x-column-header-sort-ASC,
  2580. .x-column-header-sort-DESC {
  2581. border-left-color: #aaccf6;
  2582. border-right-color: #aaccf6; }
  2583. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2584. .x-nlg .x-grid-header-ct,
  2585. .x-nlg .x-column-header {
  2586. background: repeat-x 0 top;
  2587. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  2588. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2589. .x-nlg .x-column-header-over,
  2590. .x-nlg .x-column-header-sort-ASC,
  2591. .x-nlg .x-column-header-sort-DESC {
  2592. background: #ebf3fd repeat-x 0 top;
  2593. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  2594. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2595. .x-column-header-trigger {
  2596. display: none;
  2597. height: 100%;
  2598. width: 14px;
  2599. background: no-repeat left center;
  2600. background-color: #c3daf9;
  2601. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  2602. position: absolute;
  2603. right: 0;
  2604. top: 0;
  2605. z-index: 2;
  2606. cursor: pointer; }
  2607. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2608. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  2609. display: block; }
  2610. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2611. .x-column-header-align-right {
  2612. text-align: right; }
  2613. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2614. .x-column-header-align-right .x-column-header-text {
  2615. padding-right: 0.5ex;
  2616. margin-right: 6px; }
  2617. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2618. .x-column-header-align-center {
  2619. text-align: center; }
  2620. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2621. .x-column-header-align-left {
  2622. text-align: left; }
  2623. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2624. .x-column-header-sort-ASC .x-column-header-text {
  2625. padding-right: 16px;
  2626. background: no-repeat right 6px;
  2627. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  2628. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2629. .x-column-header-sort-DESC .x-column-header-text {
  2630. padding-right: 16px;
  2631. background: no-repeat right 6px;
  2632. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  2633. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2634. .x-grid-row {
  2635. vertical-align: top; }
  2636. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2637. .x-grid-row .x-grid-cell {
  2638. color: null;
  2639. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2640. background-color: white;
  2641. border-color: #ededed;
  2642. border-style: solid;
  2643. border-top-color: #fafafa;
  2644. border-width: 0; }
  2645. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2646. .x-grid-with-row-lines .x-grid-cell {
  2647. border-width: 1px 0; }
  2648. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2649. .x-grid-rowwrap-div {
  2650. border-width: 1px 0;
  2651. border-color: #ededed;
  2652. border-style: solid;
  2653. border-top-color: #fafafa;
  2654. overflow: hidden; }
  2655. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2656. .x-grid-row-alt .x-grid-cell,
  2657. .x-grid-row-alt .x-grid-rowwrap-div {
  2658. background-color: #fafafa; }
  2659. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2660. .x-grid-row-over .x-grid-cell,
  2661. .x-grid-row-over .x-grid-rowwrap-div {
  2662. border-color: #dddddd;
  2663. background-color: #efefef; }
  2664. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2665. .x-grid-row-focused .x-grid-cell,
  2666. .x-grid-row-focused .x-grid-rowwrap-div {
  2667. border-color: #dddddd;
  2668. background-color: #efefef; }
  2669. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2670. .x-grid-row-selected .x-grid-cell,
  2671. .x-grid-row-selected .x-grid-rowwrap-div {
  2672. border-style: dotted;
  2673. border-color: #a3bae9;
  2674. background-color: #dfe8f6 !important; }
  2675. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2676. .x-grid-rowwrap-div .x-grid-cell,
  2677. .x-grid-rowwrap-div .x-grid-cell-inner {
  2678. border-width: 0;
  2679. background: transparent; }
  2680. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2681. .x-grid-row-body-hidden {
  2682. display: none; }
  2683. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2684. .x-grid-rowbody {
  2685. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  2686. padding: 4px; }
  2687. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2688. .x-grid-rowbody p {
  2689. margin: 5px 5px 10px 5px; }
  2690. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2691. .x-grid-cell {
  2692. overflow: hidden; }
  2693. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2694. .x-grid-cell-inner {
  2695. overflow: hidden;
  2696. -o-text-overflow: ellipsis;
  2697. text-overflow: ellipsis;
  2698. padding: 2px 6px 3px;
  2699. white-space: nowrap; }
  2700. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2701. .x-grid-with-row-lines .x-grid-cell-inner {
  2702. line-height: 13px;
  2703. padding-bottom: 4px; }
  2704. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2705. .x-action-col-cell .x-grid-cell-inner {
  2706. line-height: 0;
  2707. padding: 2px; }
  2708. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2709. .x-action-col-cell .x-item-disabled {
  2710. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  2711. opacity: 0.3; }
  2712. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2713. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  2714. padding-top: 1px; }
  2715. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2716. .x-grid-row .x-grid-cell-special {
  2717. padding: 0;
  2718. border-right: 1px solid #d0d0d0;
  2719. background-image: none;
  2720. background-color: #f6f6f6;
  2721. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  2722. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  2723. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  2724. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  2725. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  2726. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  2727. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2728. .x-grid-row .x-grid-cell-row-checker {
  2729. vertical-align: middle; }
  2730. /*
  2731. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  2732. use an IE-specific trick to make the row disappear. We cannot do this on any
  2733. other browser, because it is not a non-standard thing to do and those other
  2734. browsers will do whacky things with it.
  2735. */
  2736. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2737. .x-ie6 .x-grid-header-row,
  2738. .x-ie7 .x-grid-header-row,
  2739. .x-quirks .x-ie8 .x-grid-header-row {
  2740. position: absolute; }
  2741. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2742. .x-grid-row-selected .x-grid-cell-special {
  2743. border-right: 1px solid #aaccf6;
  2744. background-image: none;
  2745. background-color: #dfe8f6;
  2746. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  2747. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  2748. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  2749. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  2750. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  2751. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  2752. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2753. .x-grid-dirty-cell {
  2754. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  2755. background-position: 0 0;
  2756. background-repeat: no-repeat; }
  2757. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2758. .x-grid-cell-selected {
  2759. background-color: #B8CFEE !important; }
  2760. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2761. .x-nlg .x-grid-cell-special {
  2762. background-repeat: repeat-y;
  2763. background-position: top right; }
  2764. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2765. .x-nlg .x-grid-row .x-grid-cell-special,
  2766. .x-nlg .x-grid-row-over .x-grid-cell-special {
  2767. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  2768. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2769. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  2770. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  2771. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  2772. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2773. .x-grid-with-col-lines .x-grid-cell {
  2774. padding-right: 0;
  2775. border-right: 1px solid #d0d0d0; }
  2776. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2777. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2778. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2779. padding-left: 12px;
  2780. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  2781. background-repeat: no-repeat;
  2782. background-position: -16px 2px; }
  2783. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2784. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2785. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2786. background-position: -16px 1px; }
  2787. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2788. .x-unselectable {
  2789. user-select: none;
  2790. -o-user-select: none;
  2791. -ms-user-select: none;
  2792. -moz-user-select: -moz-none;
  2793. -webkit-user-select: none;
  2794. cursor: default; }
  2795. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2796. .x-grid-row-body-hidden {
  2797. display: none; }
  2798. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2799. .x-grid-group-collapsed {
  2800. display: none; }
  2801. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2802. .x-grid-view .x-grid-td-expander {
  2803. vertical-align: top; }
  2804. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2805. .x-grid-td-expander {
  2806. background: repeat-y right transparent; }
  2807. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2808. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  2809. padding: 0 !important; }
  2810. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2811. .x-grid-row-expander {
  2812. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2813. background-color: transparent;
  2814. width: 9px;
  2815. height: 13px;
  2816. margin-left: 3px;
  2817. background-repeat: no-repeat;
  2818. background-position: 0 -2px; }
  2819. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2820. .x-grid-row-collapsed .x-grid-row-expander {
  2821. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2822. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2823. .x-grid-resize-marker {
  2824. position: absolute;
  2825. z-index: 5;
  2826. top: 0;
  2827. width: 1px;
  2828. background-color: #0f0f0f; }
  2829. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2830. .col-move-top, .col-move-bottom {
  2831. width: 9px;
  2832. height: 9px;
  2833. position: absolute;
  2834. top: 0;
  2835. line-height: 0;
  2836. font-size: 0;
  2837. overflow: hidden;
  2838. z-index: 20000;
  2839. background: no-repeat left top transparent; }
  2840. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2841. .col-move-top {
  2842. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  2843. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2844. .col-move-bottom {
  2845. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  2846. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2847. .x-tbar-page-number {
  2848. width: 30px; }
  2849. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2850. .x-grid-group,
  2851. .x-grid-group-body,
  2852. .x-grid-group-hd {
  2853. zoom: 1; }
  2854. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2855. .x-grid-group-hd {
  2856. padding-top: 6px; }
  2857. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2858. .x-grid-group-hd .x-grid-cell-inner {
  2859. padding: 10px 4px 4px 4px;
  2860. background: white;
  2861. border-width: 0 0 2px 0;
  2862. border-style: solid;
  2863. border-color: #99bbe8;
  2864. cursor: pointer; }
  2865. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2866. .x-grid-group-hd-collapsible .x-grid-group-title {
  2867. background: transparent no-repeat 0 -1px;
  2868. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2869. padding: 0 0 0 14px; }
  2870. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2871. .x-grid-group-title {
  2872. color: #3764a0;
  2873. font: bold 11px tahoma, arial, verdana, sans-serif; }
  2874. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2875. .x-grid-group-hd-collapsed .x-grid-group-title {
  2876. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2877. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2878. .x-grid-group-collapsed .x-grid-group-body {
  2879. display: none; }
  2880. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2881. .x-grid-group-collapsed .x-grid-group-title {
  2882. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2883. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2884. .x-group-by-icon {
  2885. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2886. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2887. .x-show-groups-icon {
  2888. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2889. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2890. .x-column-header-checkbox .x-column-header-inner {
  2891. padding: 0; }
  2892. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2893. .x-grid-cell-special .x-grid-cell-inner {
  2894. padding-left: 4px;
  2895. padding-right: 4px; }
  2896. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2897. .x-grid-row-checker,
  2898. .x-column-header-checkbox .x-column-header-text {
  2899. height: 14px;
  2900. width: 14px;
  2901. line-height: 0;
  2902. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  2903. background-position: -1px -1px;
  2904. background-repeat: no-repeat;
  2905. background-color: transparent; }
  2906. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2907. .x-column-header-checkbox .x-column-header-text {
  2908. display: block;
  2909. margin: 0 5px; }
  2910. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2911. .x-grid-hd-checker-on .x-column-header-text {
  2912. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2913. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2914. .x-grid-cell-row-checker .x-grid-cell-inner {
  2915. padding-top: 4px;
  2916. padding-bottom: 2px;
  2917. line-height: 14px; }
  2918. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2919. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  2920. padding-top: 3px; }
  2921. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2922. .x-grid-row-checker {
  2923. margin-left: 1px;
  2924. background-position: 50% -2px; }
  2925. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2926. .x-grid-row-selected .x-grid-row-checker,
  2927. .x-grid-row-checked .x-grid-row-checker {
  2928. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2929. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2930. .x-tbar-page-first {
  2931. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  2932. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2933. .x-tbar-loading {
  2934. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  2935. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2936. .x-tbar-page-last {
  2937. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  2938. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2939. .x-tbar-page-next {
  2940. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  2941. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2942. .x-tbar-page-prev {
  2943. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  2944. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2945. .x-item-disabled .x-tbar-loading {
  2946. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  2947. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2948. .x-item-disabled .x-tbar-page-first {
  2949. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  2950. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2951. .x-item-disabled .x-tbar-page-last {
  2952. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  2953. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2954. .x-item-disabled .x-tbar-page-next {
  2955. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  2956. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2957. .x-item-disabled .x-tbar-page-prev {
  2958. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  2959. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2960. .x-hmenu-sort-asc .x-menu-item-icon {
  2961. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  2962. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2963. .x-hmenu-sort-desc .x-menu-item-icon {
  2964. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  2965. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2966. .x-hmenu-lock .x-menu-item-icon {
  2967. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  2968. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2969. .x-hmenu-unlock .x-menu-item-icon {
  2970. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  2971. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2972. .x-group-by-icon {
  2973. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2974. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2975. .x-cols-icon .x-menu-item-icon {
  2976. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  2977. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2978. .x-show-groups-icon {
  2979. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2980. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2981. .x-grid-drop-indicator {
  2982. position: absolute;
  2983. height: 1px;
  2984. line-height: 0px;
  2985. background-color: #77BC71;
  2986. overflow: visible; }
  2987. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2988. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  2989. position: absolute;
  2990. top: -8px;
  2991. left: -12px;
  2992. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  2993. height: 16px;
  2994. width: 16px; }
  2995. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2996. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  2997. position: absolute;
  2998. top: -8px;
  2999. right: -11px;
  3000. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3001. height: 16px;
  3002. width: 16px; }
  3003. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3004. .x-ie6 .x-grid-drop-indicator-left {
  3005. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  3006. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3007. .x-ie6 .x-grid-drop-indicator-right {
  3008. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  3009. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3010. .x-grid-editor .x-form-text {
  3011. padding: 0 4px; }
  3012. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3013. .x-grid-editor .x-form-cb-wrap {
  3014. padding-top: 3px; }
  3015. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3016. .x-grid-row-editor {
  3017. position: absolute !important;
  3018. z-index: 1;
  3019. zoom: 1;
  3020. overflow: visible !important; }
  3021. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3022. .x-grid-row-editor .x-form-text {
  3023. padding: 0 2px; }
  3024. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3025. .x-grid-row-editor .x-form-cb-wrap {
  3026. padding-top: 0; }
  3027. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3028. .x-grid-row-editor .x-form-checkbox {
  3029. margin-left: -4px; }
  3030. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3031. .x-grid-row-editor .x-form-display-field {
  3032. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3033. padding-top: 0;
  3034. padding-left: 2px; }
  3035. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3036. .x-grid-row-editor .x-panel-body {
  3037. background-color: #eaf1fb;
  3038. border-top: 1px solid #99bce8 !important;
  3039. border-bottom: 1px solid #99bce8 !important; }
  3040. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3041. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3042. text-align: center; }
  3043. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3044. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3045. height: 19px; }
  3046. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3047. .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 {
  3048. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3049. height: 10px !important; }
  3050. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3051. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3052. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3053. height: 18px; }
  3054. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3055. .x-border-box .x-grid-editor .x-form-trigger,
  3056. .x-border-box .x-grid-row-editor .x-form-trigger {
  3057. height: 20px; }
  3058. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3059. .x-border-box .x-grid-editor .x-form-text,
  3060. .x-border-box .x-grid-row-editor .x-form-text {
  3061. height: 20px;
  3062. padding-bottom: 1px; }
  3063. /* line 818, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3064. .x-opera .x-grid-editor .x-form-text {
  3065. padding-left: 5px; }
  3066. /* line 821, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3067. .x-opera .x-grid-row-editor .x-form-text {
  3068. padding-left: 3px; }
  3069. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3070. .x-grid-row-editor-buttons {
  3071. background-color: #eaf1fb;
  3072. position: absolute;
  3073. bottom: -31px;
  3074. padding: 4px;
  3075. height: 32px; }
  3076. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3077. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3078. width: 192px;
  3079. height: 24px; }
  3080. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3081. .x-grid-row-editor-buttons-ml,
  3082. .x-grid-row-editor-buttons-mr,
  3083. .x-grid-row-editor-buttons-bl,
  3084. .x-grid-row-editor-buttons-br,
  3085. .x-grid-row-editor-buttons-bc {
  3086. position: absolute;
  3087. overflow: hidden; }
  3088. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3089. .x-grid-row-editor-buttons-bl,
  3090. .x-grid-row-editor-buttons-br {
  3091. width: 4px;
  3092. height: 4px;
  3093. bottom: 0px;
  3094. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  3095. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3096. .x-grid-row-editor-buttons-bl {
  3097. left: 0px;
  3098. background-position: 0px -16px; }
  3099. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3100. .x-grid-row-editor-buttons-br {
  3101. right: 0px;
  3102. background-position: 0px -20px; }
  3103. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3104. .x-grid-row-editor-buttons-bc {
  3105. position: absolute;
  3106. left: 4px;
  3107. bottom: 0px;
  3108. width: 192px;
  3109. height: 1px;
  3110. background-color: #99bce8; }
  3111. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3112. .x-grid-row-editor-buttons-ml,
  3113. .x-grid-row-editor-buttons-mr {
  3114. height: 27px;
  3115. width: 1px;
  3116. top: 1px;
  3117. background-color: #99bce8; }
  3118. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3119. .x-grid-row-editor-buttons-ml {
  3120. left: 0px; }
  3121. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3122. .x-grid-row-editor-buttons-mr {
  3123. background-position: 0px -20px;
  3124. right: 0px; }
  3125. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3126. .x-grid-row-editor-errors ul {
  3127. margin-left: 5px; }
  3128. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3129. .x-grid-row-editor-errors li {
  3130. list-style: disc;
  3131. margin-left: 15px; }
  3132. /*misc*/
  3133. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3134. .x-webkit *:focus {
  3135. outline: none !important; }
  3136. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3137. .x-form-item {
  3138. vertical-align: top;
  3139. table-layout: fixed; }
  3140. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3141. .x-autocontainer-form-item,
  3142. .x-anchor-form-item,
  3143. .x-vbox-form-item,
  3144. .x-checkboxgroup-form-item,
  3145. .x-table-form-item {
  3146. margin-bottom: 5px; }
  3147. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3148. .x-form-layout-table {
  3149. border-collapse: separate;
  3150. border-spacing: 0 2px; }
  3151. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3152. .x-form-item-body {
  3153. position: relative; }
  3154. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3155. .x-form-form-item td {
  3156. border-top: 1px solid transparent; }
  3157. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3158. .x-ie6 .x-form-layout-table {
  3159. border-collapse: collapse;
  3160. border-spacing: 0; }
  3161. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3162. .x-ie6 .x-form-form-item td {
  3163. border-top-width: 0; }
  3164. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3165. .x-ie6 td.x-form-item-pad {
  3166. height: 5px; }
  3167. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3168. .x-editor .x-form-item-body {
  3169. padding-bottom: 0; }
  3170. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3171. .x-form-item-label {
  3172. display: block;
  3173. padding: 3px 0 0;
  3174. font-size: 12px;
  3175. user-select: none;
  3176. -o-user-select: none;
  3177. -ms-user-select: none;
  3178. -moz-user-select: -moz-none;
  3179. -webkit-user-select: none;
  3180. cursor: default; }
  3181. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3182. .x-form-item-label-top {
  3183. display: block;
  3184. zoom: 1;
  3185. padding: 0 0 5px 0; }
  3186. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3187. .x-form-item-label-right {
  3188. text-align: right; }
  3189. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3190. .x-form-invalid-under {
  3191. padding: 2px 2px 2px 18px;
  3192. color: #c0272b;
  3193. font: normal 11px tahoma, arial, verdana, sans-serif;
  3194. line-height: 16px;
  3195. background: no-repeat 0 2px;
  3196. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3197. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3198. .x-form-invalid-icon {
  3199. width: 18px;
  3200. height: 14px;
  3201. background: no-repeat center center;
  3202. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3203. overflow: hidden; }
  3204. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3205. .x-form-invalid-icon ul {
  3206. display: block;
  3207. width: 18px; }
  3208. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3209. .x-form-invalid-icon ul li {
  3210. /* prevent inner elements from interfering with QuickTip hovering */
  3211. display: none; }
  3212. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3213. .x-lbl-top-err-icon {
  3214. margin-bottom: 4px; }
  3215. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3216. .x-form-field,
  3217. .x-form-display-field {
  3218. margin: 0 0 0 0;
  3219. font: normal 12px tahoma, arial, verdana, sans-serif;
  3220. color: black; }
  3221. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3222. .x-form-item-hidden {
  3223. margin: 0; }
  3224. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3225. .x-form-text,
  3226. textarea.x-form-field {
  3227. padding: 1px 3px;
  3228. background: repeat-x 0 0;
  3229. border: 1px solid;
  3230. background-color: white;
  3231. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3232. border-color: #b5b8c8; }
  3233. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3234. .x-form-text {
  3235. height: 18px;
  3236. line-height: 15px;
  3237. vertical-align: top; }
  3238. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3239. .x-ie8m .x-form-text {
  3240. line-height: 15px; }
  3241. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3242. .x-border-box .x-form-text {
  3243. height: 22px; }
  3244. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3245. textarea.x-form-field {
  3246. color: black;
  3247. overflow: auto;
  3248. height: auto;
  3249. line-height: normal;
  3250. background: repeat-x 0 0;
  3251. background-color: white;
  3252. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3253. resize: none; }
  3254. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3255. .x-border-box textarea.x-form-field {
  3256. height: auto; }
  3257. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3258. .x-safari.x-mac textarea.x-form-field {
  3259. margin-bottom: -2px; }
  3260. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3261. .x-form-focus,
  3262. textarea.x-form-focus {
  3263. border-color: #7eadd9; }
  3264. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3265. .x-form-invalid-field,
  3266. textarea.x-form-invalid-field {
  3267. background-color: white;
  3268. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3269. background-repeat: repeat-x;
  3270. background-position: bottom;
  3271. border-color: #cc3300; }
  3272. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3273. .x-form-item {
  3274. font: normal 12px tahoma, arial, verdana, sans-serif; }
  3275. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3276. .x-form-empty-field, textarea.x-form-empty-field {
  3277. color: gray; }
  3278. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3279. .x-webkit .x-form-empty-field {
  3280. line-height: 15px; }
  3281. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3282. .x-form-display-field {
  3283. padding-top: 3px; }
  3284. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3285. .x-field-default-toolbar .x-form-text {
  3286. height: 16px; }
  3287. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3288. .x-border-box .x-field-default-toolbar .x-form-text {
  3289. height: 20px; }
  3290. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3291. .x-field-default-toolbar .x-form-item-label-left {
  3292. padding-left: 4px; }
  3293. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3294. .x-fieldset {
  3295. border: 1px solid #b5b8c8;
  3296. padding: 10px;
  3297. margin-bottom: 10px;
  3298. display: block;
  3299. /* preserve margins in IE */
  3300. position: relative; }
  3301. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3302. .x-ie .x-fieldset {
  3303. padding-top: 0; }
  3304. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3305. .x-ie .x-fieldset .x-fieldset-body {
  3306. padding-top: 10px; }
  3307. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3308. .x-fieldset-header-checkbox {
  3309. line-height: 14px; }
  3310. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3311. .x-fieldset-header {
  3312. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  3313. color: #15428b;
  3314. padding: 0 3px 1px;
  3315. overflow: hidden; }
  3316. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3317. .x-fieldset-header .x-fieldset-header-text {
  3318. float: left;
  3319. padding: 1px 0; }
  3320. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3321. .x-fieldset-header .x-fieldset-header-text-collapsible {
  3322. cursor: pointer; }
  3323. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3324. .x-fieldset-header .x-form-item,
  3325. .x-fieldset-header .x-tool {
  3326. float: left;
  3327. margin: 1px 0 0 0; }
  3328. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3329. .x-fieldset-header .x-form-cb-wrap {
  3330. padding: 1px 0;
  3331. font-size: 0;
  3332. line-height: 0; }
  3333. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3334. .x-fieldset-with-title .x-fieldset-header-checkbox,
  3335. .x-fieldset-with-title .x-tool {
  3336. margin-right: 3px; }
  3337. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3338. .x-webkit .x-fieldset-header {
  3339. -webkit-padding-start: 3px;
  3340. -webkit-padding-end: 3px; }
  3341. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3342. .x-opera .x-fieldset-with-legend {
  3343. margin-top: -1px; }
  3344. /* line 78, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3345. .x-opera.x-mac .x-fieldset-header-text {
  3346. padding: 2px 0 0; }
  3347. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3348. .x-fieldset-collapsed .x-fieldset-body {
  3349. display: none; }
  3350. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3351. .x-fieldset-collapsed {
  3352. padding-bottom: 0 !important;
  3353. border-width: 1px 1px 0 1px !important;
  3354. border-left-color: transparent !important;
  3355. border-right-color: transparent !important; }
  3356. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3357. .x-fieldset {
  3358. overflow: hidden; }
  3359. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3360. .x-fieldset-bwrap {
  3361. overflow: hidden;
  3362. zoom: 1; }
  3363. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3364. .x-fieldset-body {
  3365. overflow: hidden; }
  3366. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3367. .x-form-file-wrap .x-form-text {
  3368. color: #777; }
  3369. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3370. .x-form-file-wrap .x-form-file-btn {
  3371. overflow: hidden; }
  3372. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3373. .x-form-file-wrap .x-form-file-input {
  3374. position: absolute;
  3375. top: -4px;
  3376. right: -2px;
  3377. height: 30px;
  3378. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  3379. opacity: 0;
  3380. /* Yes, there's actually a good reason for this...
  3381. * If the configured buttonText is set to something longer than the default,
  3382. * then it will quickly exceed the width of the hidden file input's "Browse..."
  3383. * button, so part of the custom button's clickable area will be covered by
  3384. * the hidden file input's text box instead. This results in a text-selection
  3385. * mouse cursor over that part of the button, at least in Firefox, which is
  3386. * confusing to a user. Giving the hidden file input a huge font-size makes
  3387. * the native button part very large so it will cover the whole clickable area.
  3388. */
  3389. font-size: 100px; }
  3390. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3391. .x-form-cb-wrap {
  3392. padding-top: 3px; }
  3393. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3394. .x-form-checkbox,
  3395. .x-form-radio {
  3396. vertical-align: -1px;
  3397. width: 13px;
  3398. height: 13px;
  3399. background: no-repeat;
  3400. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  3401. overflow: hidden;
  3402. padding: 0;
  3403. border: 0; }
  3404. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3405. .x-form-checkbox::-moz-focus-inner,
  3406. .x-form-radio::-moz-focus-inner {
  3407. padding: 0;
  3408. border: 0; }
  3409. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3410. .x-form-cb-checked .x-form-checkbox,
  3411. .x-form-cb-checked .x-form-radio {
  3412. background-position: 0 -13px; }
  3413. /* Focused */
  3414. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3415. .x-form-cb-focus {
  3416. background-position: -13px 0; }
  3417. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3418. .x-form-cb-checked .x-form-cb-focus {
  3419. background-position: -13px -13px; }
  3420. /* Radios */
  3421. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3422. .x-form-radio {
  3423. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  3424. /* boxLabel */
  3425. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3426. .x-form-cb-label-before {
  3427. margin-right: 4px; }
  3428. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3429. .x-form-cb-label-after {
  3430. margin-left: 4px; }
  3431. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3432. .x-form-checkboxgroup-body {
  3433. padding: 1px 4px 1px 4px; }
  3434. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3435. .x-form-invalid .x-form-checkboxgroup-body {
  3436. border: 1px solid #c30!important;
  3437. background: transparent repeat-x bottom;
  3438. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3439. padding: 1px 3px 0 3px; }
  3440. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3441. .x-check-group-alt {
  3442. background: #d1ddef;
  3443. border-top: 1px dotted #b5b8c8;
  3444. border-bottom: 1px dotted #b5b8c8; }
  3445. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3446. .x-form-check-group-label {
  3447. color: #333;
  3448. border-bottom: 1px solid #333;
  3449. margin: 0 30px 5px 0;
  3450. padding: 2px; }
  3451. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3452. .x-form-trigger-wrap {
  3453. vertical-align: top; }
  3454. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3455. .x-form-trigger {
  3456. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  3457. background-position: 0 0;
  3458. width: 17px;
  3459. height: 21px;
  3460. border-bottom: 1px solid #b5b8c8;
  3461. cursor: pointer;
  3462. cursor: hand;
  3463. overflow: hidden; }
  3464. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3465. .x-border-box .x-form-trigger {
  3466. height: 22px; }
  3467. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3468. .x-field-default-toolbar .x-form-trigger {
  3469. height: 19px; }
  3470. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3471. .x-border-box .x-field-default-toolbar .x-form-trigger {
  3472. height: 20px; }
  3473. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3474. .x-form-trigger-over {
  3475. background-position: -17px 0;
  3476. border-bottom-color: #7eadd9; }
  3477. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3478. .x-form-trigger-wrap-focus .x-form-trigger {
  3479. background-position: -51px 0;
  3480. border-bottom-color: #7eadd9; }
  3481. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3482. .x-form-trigger-wrap-focus .x-form-trigger-over {
  3483. background-position: -68px 0;
  3484. border-bottom-color: null; }
  3485. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3486. .x-form-trigger-click,
  3487. .x-form-trigger-wrap-focus .x-form-trigger-click {
  3488. background-position: -34px 0;
  3489. border-bottom-color: null; }
  3490. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3491. .x-form-trigger-icon {
  3492. height: 16px;
  3493. background-repeat: no-repeat;
  3494. background-position: 7px 6px; }
  3495. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3496. .x-pickerfield-open .x-form-field {
  3497. -moz-border-radius-bottomleft: 0;
  3498. -webkit-border-bottom-left-radius: 0;
  3499. -ms-border-bottom-left-radius: 0;
  3500. -o-border-bottom-left-radius: 0;
  3501. border-bottom-left-radius: 0;
  3502. -moz-border-radius-bottomright: 0;
  3503. -webkit-border-bottom-right-radius: 0;
  3504. -ms-border-bottom-right-radius: 0;
  3505. -o-border-bottom-right-radius: 0;
  3506. border-bottom-right-radius: 0; }
  3507. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3508. .x-pickerfield-open-above .x-form-field {
  3509. -moz-border-radius-bottomleft: 3px;
  3510. -webkit-border-bottom-left-radius: 3px;
  3511. -ms-border-bottom-left-radius: 3px;
  3512. -o-border-bottom-left-radius: 3px;
  3513. border-bottom-left-radius: 3px;
  3514. -moz-border-radius-topleft: 0;
  3515. -webkit-border-top-left-radius: 0;
  3516. -ms-border-top-left-radius: 0;
  3517. -o-border-top-left-radius: 0;
  3518. border-top-left-radius: 0;
  3519. -moz-border-radius-topright: 0;
  3520. -webkit-border-top-right-radius: 0;
  3521. -ms-border-top-right-radius: 0;
  3522. -o-border-top-right-radius: 0;
  3523. border-top-right-radius: 0; }
  3524. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3525. .x-form-arrow-trigger .x-form-trigger-icon {
  3526. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  3527. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3528. .x-form-date-trigger {
  3529. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  3530. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3531. .x-form-trigger-wrap .x-form-spinner-up,
  3532. .x-form-trigger-wrap .x-form-spinner-down {
  3533. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  3534. width: 17px !important;
  3535. height: 11px !important;
  3536. font-size: 0;
  3537. /*for IE*/
  3538. border-bottom: 0; }
  3539. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3540. .x-form-trigger-wrap .x-form-spinner-down {
  3541. background-position: 0 -11px; }
  3542. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3543. .x-form-trigger-wrap-focus .x-form-spinner-down {
  3544. background-position: -51px -11px; }
  3545. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3546. .x-form-trigger-wrap .x-form-spinner-down-over {
  3547. background-position: -17px -11px; }
  3548. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3549. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3550. background-position: -68px -11px; }
  3551. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3552. .x-form-trigger-wrap .x-form-spinner-down-click {
  3553. background-position: -34px -11px; }
  3554. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3555. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  3556. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3557. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3558. height: 10px !important; }
  3559. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3560. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3561. background-position: 0 -10px; }
  3562. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3563. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  3564. background-position: -51px -10px; }
  3565. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3566. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  3567. background-position: -17px -10px; }
  3568. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3569. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3570. background-position: -68px -10px; }
  3571. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3572. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  3573. background-position: -34px -10px; }
  3574. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3575. .x-trigger-noedit {
  3576. cursor: pointer;
  3577. cursor: hand; }
  3578. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3579. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  3580. cursor: auto; }
  3581. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3582. .x-form-clear-trigger {
  3583. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  3584. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3585. .x-form-search-trigger {
  3586. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  3587. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3588. .x-html-editor-wrap {
  3589. border: 1px solid #b5b8c8; }
  3590. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3591. .x-html-editor-wrap .x-toolbar {
  3592. border-top-width: 0;
  3593. border-left-width: 0;
  3594. border-right-width: 0; }
  3595. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3596. .x-html-editor-wrap textarea {
  3597. background-color: white; }
  3598. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3599. .x-html-editor-tb .x-btn-text {
  3600. background: transparent no-repeat;
  3601. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3602. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3603. .x-html-editor-tb .x-edit-bold,
  3604. .x-menu-item img.x-edit-bold {
  3605. background-position: 0 0;
  3606. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3607. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3608. .x-html-editor-tb .x-edit-italic,
  3609. .x-menu-item img.x-edit-italic {
  3610. background-position: -16px 0;
  3611. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3612. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3613. .x-html-editor-tb .x-edit-underline,
  3614. .x-menu-item img.x-edit-underline {
  3615. background-position: -32px 0;
  3616. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3617. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3618. .x-html-editor-tb .x-edit-forecolor,
  3619. .x-menu-item img.x-edit-forecolor {
  3620. background-position: -160px 0;
  3621. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3622. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3623. .x-html-editor-tb .x-edit-backcolor,
  3624. .x-menu-item img.x-edit-backcolor {
  3625. background-position: -176px 0;
  3626. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3627. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3628. .x-html-editor-tb .x-edit-justifyleft,
  3629. .x-menu-item img.x-edit-justifyleft {
  3630. background-position: -112px 0;
  3631. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3632. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3633. .x-html-editor-tb .x-edit-justifycenter,
  3634. .x-menu-item img.x-edit-justifycenter {
  3635. background-position: -128px 0;
  3636. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3637. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3638. .x-html-editor-tb .x-edit-justifyright,
  3639. .x-menu-item img.x-edit-justifyright {
  3640. background-position: -144px 0;
  3641. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3642. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3643. .x-html-editor-tb .x-edit-insertorderedlist,
  3644. .x-menu-item img.x-edit-insertorderedlist {
  3645. background-position: -80px 0;
  3646. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3647. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3648. .x-html-editor-tb .x-edit-insertunorderedlist,
  3649. .x-menu-item img.x-edit-insertunorderedlist {
  3650. background-position: -96px 0;
  3651. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3652. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3653. .x-html-editor-tb .x-edit-increasefontsize,
  3654. .x-menu-item img.x-edit-increasefontsize {
  3655. background-position: -48px 0;
  3656. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3657. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3658. .x-html-editor-tb .x-edit-decreasefontsize,
  3659. .x-menu-item img.x-edit-decreasefontsize {
  3660. background-position: -64px 0;
  3661. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3662. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3663. .x-html-editor-tb .x-edit-sourceedit,
  3664. .x-menu-item img.x-edit-sourceedit {
  3665. background-position: -192px 0;
  3666. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3667. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3668. .x-html-editor-tb .x-edit-createlink,
  3669. .x-menu-item img.x-edit-createlink {
  3670. background-position: -208px 0;
  3671. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3672. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3673. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  3674. padding: 5px;
  3675. padding-bottom: 1px; }
  3676. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3677. .x-html-editor-tb .x-toolbar {
  3678. position: static !important; }
  3679. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3680. .x-html-editor-tb .x-font-select {
  3681. font-size: 11px; }
  3682. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3683. .x-html-editor-wrap textarea {
  3684. border: 0;
  3685. padding: 3px 2px;
  3686. overflow: auto; }
  3687. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3688. .x-panel,
  3689. .x-plain {
  3690. overflow: hidden;
  3691. position: relative; }
  3692. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3693. .x-panel-header-horizontal {
  3694. padding: 3px 5px 4px; }
  3695. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3696. .x-panel-header-vertical {
  3697. padding: 5px 4px; }
  3698. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3699. .x-panel-header-icon,
  3700. .x-window-header-icon {
  3701. width: 16px;
  3702. height: 16px;
  3703. background-repeat: no-repeat;
  3704. background-position: 0 0;
  3705. vertical-align: middle;
  3706. margin-right: 4px; }
  3707. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3708. .x-vertical .x-panel-header-icon,
  3709. .x-vertical .x-window-header-icon {
  3710. margin: 0 0 4px; }
  3711. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3712. .x-panel-header-draggable,
  3713. .x-panel-header-draggable .x-panel-header-text,
  3714. .x-window-header-draggable,
  3715. .x-window-header-draggable .x-window-header-text {
  3716. cursor: move; }
  3717. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3718. .x-panel-ghost, .x-window-ghost {
  3719. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  3720. opacity: 0.65;
  3721. cursor: move; }
  3722. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3723. .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 {
  3724. width: 100%; }
  3725. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3726. .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 {
  3727. height: 100%; }
  3728. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3729. .x-panel-header-text-container {
  3730. overflow: hidden;
  3731. -o-text-overflow: ellipsis;
  3732. text-overflow: ellipsis; }
  3733. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3734. .x-panel-header-text {
  3735. user-select: none;
  3736. -o-user-select: none;
  3737. -ms-user-select: none;
  3738. -moz-user-select: -moz-none;
  3739. -webkit-user-select: none;
  3740. cursor: default;
  3741. white-space: nowrap; }
  3742. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3743. .x-panel-header-left .x-vml-base,
  3744. .x-panel-header-right .x-vml-base {
  3745. left: -3px !important; }
  3746. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3747. .x-panel-body {
  3748. overflow: hidden;
  3749. position: relative;
  3750. font-size: 12px; }
  3751. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3752. .x-panel-header-vertical .x-surface {
  3753. padding-left: 1px; }
  3754. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3755. .x-opera .x-panel-header-vertical .x-surface,
  3756. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  3757. padding-left: 2px; }
  3758. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3759. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  3760. border-bottom-width: 1px !important; }
  3761. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3762. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  3763. border-left-width: 1px !important; }
  3764. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3765. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  3766. border-top-width: 1px !important; }
  3767. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3768. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  3769. border-right-width: 1px !important; }
  3770. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3771. .x-nlg .x-panel-header-vertical .x-frame-mc {
  3772. background-repeat: repeat-y; }
  3773. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3774. .x-panel-default {
  3775. border-color: #99bce8; }
  3776. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3777. .x-panel-header-default {
  3778. font-size: 11px;
  3779. border-color: #99bce8;
  3780. border-width: 1px;
  3781. border-style: solid; }
  3782. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3783. .x-nlg .x-panel-header-default-top {
  3784. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3785. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3786. .x-nlg .x-panel-header-default-bottom {
  3787. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3788. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3789. .x-nlg .x-panel-header-default-left {
  3790. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3791. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3792. .x-nlg .x-panel-header-default-right {
  3793. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3794. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3795. .x-nlg .x-panel-header-default-right {
  3796. background-position: top right; }
  3797. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3798. .x-nlg .x-panel-header-default-bottom {
  3799. background-position: bottom left; }
  3800. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3801. .x-panel-header-text-default {
  3802. color: #04408c;
  3803. font-size: 11px;
  3804. font-weight: bold;
  3805. font-family: tahoma, arial, verdana, sans-serif;
  3806. line-height: 17px; }
  3807. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3808. .x-panel-body-default {
  3809. background: white;
  3810. border-color: #99bce8;
  3811. color: black;
  3812. border-width: 1px;
  3813. border-style: solid; }
  3814. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3815. .x-panel-collapsed .x-window-header-default,
  3816. .x-panel-collapsed .x-panel-header-default {
  3817. border-color: #99bce8; }
  3818. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3819. .x-panel-header-default-vertical {
  3820. border-color: #99bce8; }
  3821. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3822. .x-panel-collapsed .x-panel-header-default-top {
  3823. -moz-border-radius-bottomleft: null;
  3824. -webkit-border-bottom-left-radius: null;
  3825. -ms-border-bottom-left-radius: null;
  3826. -o-border-bottom-left-radius: null;
  3827. border-bottom-left-radius: null;
  3828. -moz-border-radius-bottomright: null;
  3829. -webkit-border-bottom-right-radius: null;
  3830. -ms-border-bottom-right-radius: null;
  3831. -o-border-bottom-right-radius: null;
  3832. border-bottom-right-radius: null; }
  3833. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3834. .x-panel-collapsed .x-panel-header-default-right {
  3835. -moz-border-radius-topleft: null;
  3836. -webkit-border-top-left-radius: null;
  3837. -ms-border-top-left-radius: null;
  3838. -o-border-top-left-radius: null;
  3839. border-top-left-radius: null;
  3840. -moz-border-radius-bottomleft: null;
  3841. -webkit-border-bottom-left-radius: null;
  3842. -ms-border-bottom-left-radius: null;
  3843. -o-border-bottom-left-radius: null;
  3844. border-bottom-left-radius: null; }
  3845. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3846. .x-panel-collapsed .x-panel-header-default-bottom {
  3847. -moz-border-radius-topleft: null;
  3848. -webkit-border-top-left-radius: null;
  3849. -ms-border-top-left-radius: null;
  3850. -o-border-top-left-radius: null;
  3851. border-top-left-radius: null;
  3852. -moz-border-radius-topright: null;
  3853. -webkit-border-top-right-radius: null;
  3854. -ms-border-top-right-radius: null;
  3855. -o-border-top-right-radius: null;
  3856. border-top-right-radius: null; }
  3857. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3858. .x-panel-collapsed .x-panel-header-default-left {
  3859. -moz-border-radius-topright: null;
  3860. -webkit-border-top-right-radius: null;
  3861. -ms-border-top-right-radius: null;
  3862. -o-border-top-right-radius: null;
  3863. border-top-right-radius: null;
  3864. -moz-border-radius-bottomright: null;
  3865. -webkit-border-bottom-right-radius: null;
  3866. -ms-border-bottom-right-radius: null;
  3867. -o-border-bottom-right-radius: null;
  3868. border-bottom-right-radius: null; }
  3869. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3870. .x-panel-header-default-top {
  3871. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3872. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3873. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  3874. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3875. .x-panel-header-default-right {
  3876. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3877. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3878. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  3879. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3880. .x-panel-header-default-bottom {
  3881. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3882. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3883. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  3884. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3885. .x-panel-header-default-left {
  3886. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3887. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3888. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  3889. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3890. .x-panel-header-default-right-tc,
  3891. .x-panel-header-default-right-mc,
  3892. .x-panel-header-default-right-bc {
  3893. background-position: right 0; }
  3894. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3895. .x-panel-header-default-bottom-tc,
  3896. .x-panel-header-default-bottom-mc,
  3897. .x-panel-header-default-bottom-bc {
  3898. background-position: 0 bottom; }
  3899. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3900. .x-panel-default-framed {
  3901. border-color: #99bce8; }
  3902. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3903. .x-panel-header-default-framed {
  3904. font-size: 11px;
  3905. border-color: #99bce8;
  3906. border-width: 1px;
  3907. border-style: solid; }
  3908. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3909. .x-nlg .x-panel-header-default-framed-top {
  3910. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  3911. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3912. .x-nlg .x-panel-header-default-framed-bottom {
  3913. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  3914. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3915. .x-nlg .x-panel-header-default-framed-left {
  3916. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  3917. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3918. .x-nlg .x-panel-header-default-framed-right {
  3919. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  3920. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3921. .x-nlg .x-panel-header-default-framed-right {
  3922. background-position: top right; }
  3923. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3924. .x-nlg .x-panel-header-default-framed-bottom {
  3925. background-position: bottom left; }
  3926. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3927. .x-nbr .x-panel-header-default-framed {
  3928. background-image: none; }
  3929. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3930. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  3931. .x-nlg.x-opera .x-panel-header-default-framed-top,
  3932. .x-nlg.x-safari .x-panel-header-default-framed-top {
  3933. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3934. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3935. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  3936. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  3937. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  3938. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3939. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3940. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  3941. .x-nlg.x-opera .x-panel-header-default-framed-left,
  3942. .x-nlg.x-safari .x-panel-header-default-framed-left {
  3943. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3944. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3945. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  3946. .x-nlg.x-opera .x-panel-header-default-framed-right,
  3947. .x-nlg.x-safari .x-panel-header-default-framed-right {
  3948. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3949. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3950. .x-panel-header-text-default-framed {
  3951. color: #04408c;
  3952. font-size: 11px;
  3953. font-weight: bold;
  3954. font-family: tahoma, arial, verdana, sans-serif;
  3955. line-height: 17px; }
  3956. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3957. .x-panel-body-default-framed {
  3958. background: #dfe9f6;
  3959. border-color: #99bce8;
  3960. color: black;
  3961. border-width: 0;
  3962. border-style: solid; }
  3963. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3964. .x-panel-collapsed .x-window-header-default-framed,
  3965. .x-panel-collapsed .x-panel-header-default-framed {
  3966. border-color: #99bce8; }
  3967. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3968. .x-panel-header-default-framed-vertical {
  3969. border-color: #99bce8; }
  3970. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3971. .x-panel-default-framed {
  3972. -webkit-border-radius: 4px;
  3973. -moz-border-radius: 4px;
  3974. -ms-border-radius: 4px;
  3975. -o-border-radius: 4px;
  3976. border-radius: 4px;
  3977. padding: 4px 4px 4px 4px;
  3978. border-width: 1px;
  3979. border-style: solid;
  3980. background-color: #dfe9f6; }
  3981. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3982. .x-nlg .x-panel-default-framed-mc {
  3983. background-color: #dfe9f6; }
  3984. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3985. .x-panel-header-default-framed-top {
  3986. -moz-border-radius-topleft: 4px;
  3987. -webkit-border-top-left-radius: 4px;
  3988. -ms-border-top-left-radius: 4px;
  3989. -o-border-top-left-radius: 4px;
  3990. border-top-left-radius: 4px;
  3991. -moz-border-radius-topright: 4px;
  3992. -webkit-border-top-right-radius: 4px;
  3993. -ms-border-top-right-radius: 4px;
  3994. -o-border-top-right-radius: 4px;
  3995. border-top-right-radius: 4px;
  3996. -moz-border-radius-bottomright: 0;
  3997. -webkit-border-bottom-right-radius: 0;
  3998. -ms-border-bottom-right-radius: 0;
  3999. -o-border-bottom-right-radius: 0;
  4000. border-bottom-right-radius: 0;
  4001. -moz-border-radius-bottomleft: 0;
  4002. -webkit-border-bottom-left-radius: 0;
  4003. -ms-border-bottom-left-radius: 0;
  4004. -o-border-bottom-left-radius: 0;
  4005. border-bottom-left-radius: 0;
  4006. padding: 3px 5px 4px 5px;
  4007. border-width: 1px 1px 0 1px;
  4008. border-style: solid;
  4009. background-color: #cbddf3; }
  4010. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4011. .x-nlg .x-panel-header-default-framed-top-mc {
  4012. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4013. background-color: #cbddf3; }
  4014. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4015. .x-panel-header-default-framed-right {
  4016. -moz-border-radius-topleft: 0;
  4017. -webkit-border-top-left-radius: 0;
  4018. -ms-border-top-left-radius: 0;
  4019. -o-border-top-left-radius: 0;
  4020. border-top-left-radius: 0;
  4021. -moz-border-radius-topright: 4px;
  4022. -webkit-border-top-right-radius: 4px;
  4023. -ms-border-top-right-radius: 4px;
  4024. -o-border-top-right-radius: 4px;
  4025. border-top-right-radius: 4px;
  4026. -moz-border-radius-bottomright: 4px;
  4027. -webkit-border-bottom-right-radius: 4px;
  4028. -ms-border-bottom-right-radius: 4px;
  4029. -o-border-bottom-right-radius: 4px;
  4030. border-bottom-right-radius: 4px;
  4031. -moz-border-radius-bottomleft: 0;
  4032. -webkit-border-bottom-left-radius: 0;
  4033. -ms-border-bottom-left-radius: 0;
  4034. -o-border-bottom-left-radius: 0;
  4035. border-bottom-left-radius: 0;
  4036. padding: 5px 4px 5px 4px;
  4037. border-width: 1px 1px 1px 0;
  4038. border-style: solid;
  4039. background-color: #cbddf3; }
  4040. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4041. .x-nlg .x-panel-header-default-framed-right-mc {
  4042. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4043. background-color: #cbddf3; }
  4044. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4045. .x-panel-header-default-framed-bottom {
  4046. -moz-border-radius-topleft: 0;
  4047. -webkit-border-top-left-radius: 0;
  4048. -ms-border-top-left-radius: 0;
  4049. -o-border-top-left-radius: 0;
  4050. border-top-left-radius: 0;
  4051. -moz-border-radius-topright: 0;
  4052. -webkit-border-top-right-radius: 0;
  4053. -ms-border-top-right-radius: 0;
  4054. -o-border-top-right-radius: 0;
  4055. border-top-right-radius: 0;
  4056. -moz-border-radius-bottomright: 4px;
  4057. -webkit-border-bottom-right-radius: 4px;
  4058. -ms-border-bottom-right-radius: 4px;
  4059. -o-border-bottom-right-radius: 4px;
  4060. border-bottom-right-radius: 4px;
  4061. -moz-border-radius-bottomleft: 4px;
  4062. -webkit-border-bottom-left-radius: 4px;
  4063. -ms-border-bottom-left-radius: 4px;
  4064. -o-border-bottom-left-radius: 4px;
  4065. border-bottom-left-radius: 4px;
  4066. padding: 3px 5px 4px 5px;
  4067. border-width: 0 1px 1px 1px;
  4068. border-style: solid;
  4069. background-color: #cbddf3; }
  4070. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4071. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4072. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4073. background-color: #cbddf3; }
  4074. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4075. .x-panel-header-default-framed-left {
  4076. -moz-border-radius-topleft: 4px;
  4077. -webkit-border-top-left-radius: 4px;
  4078. -ms-border-top-left-radius: 4px;
  4079. -o-border-top-left-radius: 4px;
  4080. border-top-left-radius: 4px;
  4081. -moz-border-radius-topright: 0;
  4082. -webkit-border-top-right-radius: 0;
  4083. -ms-border-top-right-radius: 0;
  4084. -o-border-top-right-radius: 0;
  4085. border-top-right-radius: 0;
  4086. -moz-border-radius-bottomright: 0;
  4087. -webkit-border-bottom-right-radius: 0;
  4088. -ms-border-bottom-right-radius: 0;
  4089. -o-border-bottom-right-radius: 0;
  4090. border-bottom-right-radius: 0;
  4091. -moz-border-radius-bottomleft: 4px;
  4092. -webkit-border-bottom-left-radius: 4px;
  4093. -ms-border-bottom-left-radius: 4px;
  4094. -o-border-bottom-left-radius: 4px;
  4095. border-bottom-left-radius: 4px;
  4096. padding: 5px 4px 5px 4px;
  4097. border-width: 1px 0 1px 1px;
  4098. border-style: solid;
  4099. background-color: #cbddf3; }
  4100. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4101. .x-nlg .x-panel-header-default-framed-left-mc {
  4102. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4103. background-color: #cbddf3; }
  4104. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4105. .x-panel-header-default-framed-top {
  4106. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4107. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4108. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4109. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4110. .x-panel-header-default-framed-right {
  4111. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4112. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4113. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  4114. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4115. .x-panel-header-default-framed-bottom {
  4116. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4117. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4118. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4119. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4120. .x-panel-header-default-framed-left {
  4121. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4122. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4123. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4124. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4125. .x-panel .x-panel-header-default-framed-top {
  4126. border-bottom-width: 1px !important; }
  4127. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4128. .x-panel .x-panel-header-default-framed-right {
  4129. border-left-width: 1px !important; }
  4130. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4131. .x-panel .x-panel-header-default-framed-bottom {
  4132. border-top-width: 1px !important; }
  4133. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4134. .x-panel .x-panel-header-default-framed-left {
  4135. border-right-width: 1px !important; }
  4136. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4137. .x-panel-header-default-framed-collapsed {
  4138. -webkit-border-radius: 4px;
  4139. -moz-border-radius: 4px;
  4140. -ms-border-radius: 4px;
  4141. -o-border-radius: 4px;
  4142. border-radius: 4px; }
  4143. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4144. .x-panel-header-default-framed-collapsed-top {
  4145. -moz-border-radius-topleft: 4px;
  4146. -webkit-border-top-left-radius: 4px;
  4147. -ms-border-top-left-radius: 4px;
  4148. -o-border-top-left-radius: 4px;
  4149. border-top-left-radius: 4px;
  4150. -moz-border-radius-topright: 4px;
  4151. -webkit-border-top-right-radius: 4px;
  4152. -ms-border-top-right-radius: 4px;
  4153. -o-border-top-right-radius: 4px;
  4154. border-top-right-radius: 4px;
  4155. -moz-border-radius-bottomright: 4px;
  4156. -webkit-border-bottom-right-radius: 4px;
  4157. -ms-border-bottom-right-radius: 4px;
  4158. -o-border-bottom-right-radius: 4px;
  4159. border-bottom-right-radius: 4px;
  4160. -moz-border-radius-bottomleft: 4px;
  4161. -webkit-border-bottom-left-radius: 4px;
  4162. -ms-border-bottom-left-radius: 4px;
  4163. -o-border-bottom-left-radius: 4px;
  4164. border-bottom-left-radius: 4px;
  4165. padding: 3px 5px 4px 5px;
  4166. border-width: 1px;
  4167. border-style: solid;
  4168. background-color: #cbddf3; }
  4169. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4170. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  4171. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  4172. background-color: #cbddf3; }
  4173. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4174. .x-panel-header-default-framed-collapsed-right {
  4175. -moz-border-radius-topleft: 4px;
  4176. -webkit-border-top-left-radius: 4px;
  4177. -ms-border-top-left-radius: 4px;
  4178. -o-border-top-left-radius: 4px;
  4179. border-top-left-radius: 4px;
  4180. -moz-border-radius-topright: 4px;
  4181. -webkit-border-top-right-radius: 4px;
  4182. -ms-border-top-right-radius: 4px;
  4183. -o-border-top-right-radius: 4px;
  4184. border-top-right-radius: 4px;
  4185. -moz-border-radius-bottomright: 4px;
  4186. -webkit-border-bottom-right-radius: 4px;
  4187. -ms-border-bottom-right-radius: 4px;
  4188. -o-border-bottom-right-radius: 4px;
  4189. border-bottom-right-radius: 4px;
  4190. -moz-border-radius-bottomleft: 4px;
  4191. -webkit-border-bottom-left-radius: 4px;
  4192. -ms-border-bottom-left-radius: 4px;
  4193. -o-border-bottom-left-radius: 4px;
  4194. border-bottom-left-radius: 4px;
  4195. padding: 5px 4px 5px 4px;
  4196. border-width: 1px;
  4197. border-style: solid;
  4198. background-color: #cbddf3; }
  4199. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4200. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  4201. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  4202. background-color: #cbddf3; }
  4203. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4204. .x-panel-header-default-framed-collapsed-bottom {
  4205. -moz-border-radius-topleft: 4px;
  4206. -webkit-border-top-left-radius: 4px;
  4207. -ms-border-top-left-radius: 4px;
  4208. -o-border-top-left-radius: 4px;
  4209. border-top-left-radius: 4px;
  4210. -moz-border-radius-topright: 4px;
  4211. -webkit-border-top-right-radius: 4px;
  4212. -ms-border-top-right-radius: 4px;
  4213. -o-border-top-right-radius: 4px;
  4214. border-top-right-radius: 4px;
  4215. -moz-border-radius-bottomright: 4px;
  4216. -webkit-border-bottom-right-radius: 4px;
  4217. -ms-border-bottom-right-radius: 4px;
  4218. -o-border-bottom-right-radius: 4px;
  4219. border-bottom-right-radius: 4px;
  4220. -moz-border-radius-bottomleft: 4px;
  4221. -webkit-border-bottom-left-radius: 4px;
  4222. -ms-border-bottom-left-radius: 4px;
  4223. -o-border-bottom-left-radius: 4px;
  4224. border-bottom-left-radius: 4px;
  4225. padding: 3px 5px 4px 5px;
  4226. border-width: 1px;
  4227. border-style: solid;
  4228. background-color: #cbddf3; }
  4229. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4230. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  4231. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  4232. background-color: #cbddf3; }
  4233. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4234. .x-panel-header-default-framed-collapsed-left {
  4235. -moz-border-radius-topleft: 4px;
  4236. -webkit-border-top-left-radius: 4px;
  4237. -ms-border-top-left-radius: 4px;
  4238. -o-border-top-left-radius: 4px;
  4239. border-top-left-radius: 4px;
  4240. -moz-border-radius-topright: 4px;
  4241. -webkit-border-top-right-radius: 4px;
  4242. -ms-border-top-right-radius: 4px;
  4243. -o-border-top-right-radius: 4px;
  4244. border-top-right-radius: 4px;
  4245. -moz-border-radius-bottomright: 4px;
  4246. -webkit-border-bottom-right-radius: 4px;
  4247. -ms-border-bottom-right-radius: 4px;
  4248. -o-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. -ms-border-bottom-left-radius: 4px;
  4253. -o-border-bottom-left-radius: 4px;
  4254. border-bottom-left-radius: 4px;
  4255. padding: 5px 4px 5px 4px;
  4256. border-width: 1px;
  4257. border-style: solid;
  4258. background-color: #cbddf3; }
  4259. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4260. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  4261. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  4262. background-color: #cbddf3; }
  4263. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4264. .x-panel-header-default-framed-right-tc,
  4265. .x-panel-header-default-framed-right-mc,
  4266. .x-panel-header-default-framed-right-bc {
  4267. background-position: right 0; }
  4268. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4269. .x-panel-header-default-framed-bottom-tc,
  4270. .x-panel-header-default-framed-bottom-mc,
  4271. .x-panel-header-default-framed-bottom-bc {
  4272. background-position: 0 bottom; }
  4273. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4274. .x-panel-header-plain,
  4275. .x-panel-body-plain {
  4276. border: 0;
  4277. padding: 0; }
  4278. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4279. .x-tip {
  4280. position: absolute;
  4281. overflow: visible;
  4282. /*pointer needs to be able to stick out*/
  4283. border-color: #8eaace; }
  4284. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4285. .x-tip .x-tip-header .x-box-item {
  4286. padding: 3px 3px 0; }
  4287. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4288. .x-tip .x-tip-header .x-tool {
  4289. padding: 0px 1px 0 0 !important; }
  4290. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4291. .x-tip {
  4292. -webkit-border-radius: 3px;
  4293. -moz-border-radius: 3px;
  4294. -ms-border-radius: 3px;
  4295. -o-border-radius: 3px;
  4296. border-radius: 3px;
  4297. padding: 2px 2px 2px 2px;
  4298. border-width: 1px;
  4299. border-style: solid;
  4300. background-color: #e9f2ff; }
  4301. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4302. .x-nlg .x-tip-mc {
  4303. background-color: #e9f2ff; }
  4304. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4305. .x-tip-header-text {
  4306. user-select: none;
  4307. -o-user-select: none;
  4308. -ms-user-select: none;
  4309. -moz-user-select: -moz-none;
  4310. -webkit-user-select: none;
  4311. cursor: default;
  4312. color: #444444;
  4313. font-size: 11px;
  4314. font-weight: bold; }
  4315. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4316. .x-tip-header-draggable .x-tip-header-text {
  4317. cursor: move; }
  4318. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4319. .x-tip-body,
  4320. .x-form-invalid-tip-body {
  4321. overflow: hidden;
  4322. position: relative;
  4323. padding: 3px; }
  4324. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4325. .x-tip-header,
  4326. .x-tip-body,
  4327. .x-form-invalid-tip-body {
  4328. color: #444444;
  4329. font-size: 11px;
  4330. font-weight: normal; }
  4331. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4332. .x-tip-header a,
  4333. .x-tip-body a,
  4334. .x-form-invalid-tip-body a {
  4335. color: #2a2a2a; }
  4336. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4337. .x-tip-anchor {
  4338. position: absolute;
  4339. overflow: hidden;
  4340. height: 0;
  4341. width: 0;
  4342. border-style: solid;
  4343. border-width: 5px;
  4344. border-color: #8eaace;
  4345. zoom: 1; }
  4346. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4347. .x-border-box .x-tip-anchor {
  4348. width: 10px;
  4349. height: 10px; }
  4350. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4351. .x-tip-anchor-top {
  4352. border-top-color: transparent;
  4353. border-left-color: transparent;
  4354. border-right-color: transparent; }
  4355. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4356. .x-tip-anchor-bottom {
  4357. border-bottom-color: transparent;
  4358. border-left-color: transparent;
  4359. border-right-color: transparent; }
  4360. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4361. .x-tip-anchor-left {
  4362. border-top-color: transparent;
  4363. border-bottom-color: transparent;
  4364. border-left-color: transparent; }
  4365. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4366. .x-tip-anchor-right {
  4367. border-top-color: transparent;
  4368. border-bottom-color: transparent;
  4369. border-right-color: transparent; }
  4370. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4371. .x-form-invalid-tip {
  4372. border-color: #a1311f;
  4373. -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;
  4374. -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;
  4375. 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; }
  4376. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4377. .x-form-invalid-tip-body {
  4378. background: 1px 1px no-repeat;
  4379. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  4380. padding-left: 22px; }
  4381. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4382. .x-form-invalid-tip-body li {
  4383. margin-bottom: 4px; }
  4384. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4385. .x-form-invalid-tip-body li.last {
  4386. margin-bottom: 0; }
  4387. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4388. .x-form-invalid-tip-default {
  4389. -webkit-border-radius: 5px;
  4390. -moz-border-radius: 5px;
  4391. -ms-border-radius: 5px;
  4392. -o-border-radius: 5px;
  4393. border-radius: 5px;
  4394. padding: 4px 4px 4px 4px;
  4395. border-width: 1px;
  4396. border-style: solid;
  4397. background-color: white; }
  4398. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4399. .x-nlg .x-form-invalid-tip-default-mc {
  4400. background-color: white; }
  4401. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4402. .x-slider {
  4403. zoom: 1; }
  4404. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4405. .x-slider-inner {
  4406. position: relative;
  4407. left: 0;
  4408. top: 0;
  4409. overflow: visible;
  4410. zoom: 1; }
  4411. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4412. .x-slider-focus {
  4413. position: absolute;
  4414. left: 0;
  4415. top: 0;
  4416. width: 1px;
  4417. height: 1px;
  4418. line-height: 1px;
  4419. font-size: 1px;
  4420. -moz-outline: 0 none;
  4421. outline: 0 none;
  4422. user-select: none;
  4423. -o-user-select: none;
  4424. -ms-user-select: none;
  4425. -moz-user-select: -moz-none;
  4426. -webkit-user-select: none;
  4427. cursor: default;
  4428. display: block;
  4429. overflow: hidden; }
  4430. /* Horizontal styles */
  4431. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4432. .x-slider-horz {
  4433. padding-left: 7px;
  4434. background: transparent no-repeat 0 -24px;
  4435. width: 100%; }
  4436. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4437. .x-slider-horz .x-slider-end {
  4438. padding-right: 7px;
  4439. zoom: 1;
  4440. background: transparent no-repeat right -46px; }
  4441. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4442. .x-slider-horz .x-slider-inner {
  4443. background: transparent repeat-x 0 -2px;
  4444. height: 18px; }
  4445. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4446. .x-slider-horz .x-slider-thumb {
  4447. width: 14px;
  4448. height: 15px;
  4449. margin-left: -7px;
  4450. position: absolute;
  4451. left: 0;
  4452. top: 1px;
  4453. background: transparent no-repeat 0 0; }
  4454. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4455. .x-slider-horz .x-slider-thumb-over {
  4456. background-position: -14px -15px; }
  4457. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4458. .x-slider-horz .x-slider-thumb-drag {
  4459. background-position: -28px -30px; }
  4460. /* Vertical styles */
  4461. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4462. .x-slider-vert {
  4463. padding-top: 7px;
  4464. background: transparent no-repeat -44px 0; }
  4465. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4466. .x-slider-vert .x-slider-end {
  4467. padding-bottom: 7px;
  4468. zoom: 1;
  4469. background: transparent no-repeat -22px bottom;
  4470. width: 22px; }
  4471. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4472. .x-slider-vert .x-slider-inner {
  4473. background: transparent repeat-y 0 0;
  4474. width: 22px; }
  4475. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4476. .x-slider-vert .x-slider-thumb {
  4477. width: 15px;
  4478. height: 14px;
  4479. margin-bottom: -7px;
  4480. position: absolute;
  4481. left: 3px;
  4482. bottom: 0;
  4483. background: transparent no-repeat 0 0; }
  4484. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4485. .x-slider-vert .x-slider-thumb-over {
  4486. background-position: -15px -14px; }
  4487. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4488. .x-slider-vert .x-slider-thumb-drag {
  4489. background-position: -30px -28px; }
  4490. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4491. .x-slider-horz,
  4492. .x-slider-horz .x-slider-end,
  4493. .x-slider-horz .x-slider-inner {
  4494. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  4495. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4496. .x-slider-horz .x-slider-thumb {
  4497. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  4498. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4499. .x-slider-vert,
  4500. .x-slider-vert .x-slider-end,
  4501. .x-slider-vert .x-slider-inner {
  4502. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  4503. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4504. .x-slider-vert .x-slider-thumb {
  4505. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  4506. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4507. .x-progress {
  4508. position: relative;
  4509. border-width: 1px;
  4510. border-style: solid;
  4511. -webkit-border-radius: 0;
  4512. -moz-border-radius: 0;
  4513. -ms-border-radius: 0;
  4514. -o-border-radius: 0;
  4515. border-radius: 0;
  4516. overflow: hidden;
  4517. height: 20px; }
  4518. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4519. .x-progress-bar {
  4520. height: 18px;
  4521. overflow: hidden;
  4522. position: absolute;
  4523. width: 0;
  4524. -webkit-border-radius: 0;
  4525. -moz-border-radius: 0;
  4526. -ms-border-radius: 0;
  4527. -o-border-radius: 0;
  4528. border-radius: 0;
  4529. border-right: 1px solid;
  4530. border-top: 1px solid; }
  4531. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4532. .x-progress-text {
  4533. overflow: hidden;
  4534. position: absolute;
  4535. padding: 0 5px;
  4536. height: 18px;
  4537. font-weight: bold;
  4538. font-size: 11px;
  4539. line-height: 16px;
  4540. text-align: center; }
  4541. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4542. .x-progress-text-back {
  4543. padding-top: 1px; }
  4544. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4545. .x-progress-default {
  4546. border-color: #6594cf; }
  4547. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4548. .x-progress-default .x-progress-bar {
  4549. border-right-color: #6594cf;
  4550. border-top-color: #c6d8ed;
  4551. background-image: none;
  4552. background-color: #73a3e0;
  4553. 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));
  4554. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4555. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4556. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4557. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4558. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  4559. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4560. .x-progress-default .x-progress-text {
  4561. color: white; }
  4562. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4563. .x-progress-default .x-progress-text-back {
  4564. color: #396295; }
  4565. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4566. .x-nlg .x-progress-default .x-progress-bar {
  4567. background: repeat-x;
  4568. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  4569. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4570. .x-toolbar {
  4571. font-size: 11px;
  4572. border: 1px solid;
  4573. padding: 2px 0 2px 2px; }
  4574. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4575. .x-toolbar .x-form-item-label {
  4576. font-size: 11px;
  4577. line-height: 15px; }
  4578. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4579. .x-toolbar .x-toolbar-item {
  4580. margin: 0 2px 0 0; }
  4581. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4582. .x-toolbar .x-toolbar-text {
  4583. margin-left: 4px;
  4584. margin-right: 6px;
  4585. white-space: nowrap;
  4586. color: #4c4c4c;
  4587. line-height: 16px;
  4588. font-family: tahoma, arial, verdana, sans-serif;
  4589. font-size: 11px;
  4590. font-weight: normal; }
  4591. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4592. .x-toolbar .x-toolbar-separator {
  4593. display: block;
  4594. font-size: 1px;
  4595. overflow: hidden;
  4596. cursor: default;
  4597. border: 0; }
  4598. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4599. .x-toolbar .x-toolbar-separator-horizontal {
  4600. margin: 0 3px 0 2px;
  4601. height: 14px;
  4602. width: 0px;
  4603. border-left: 1px solid #98c8ff;
  4604. border-right: 1px solid white; }
  4605. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4606. .x-toolbar-footer {
  4607. background: transparent;
  4608. border: 0px none;
  4609. margin-top: 3px;
  4610. padding: 2px 0 2px 6px; }
  4611. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4612. .x-toolbar-footer .x-box-inner {
  4613. border-width: 0; }
  4614. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4615. .x-toolbar-footer .x-toolbar-item {
  4616. margin: 0 6px 0 0; }
  4617. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4618. .x-toolbar-vertical {
  4619. padding: 2px 2px 0 2px; }
  4620. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4621. .x-toolbar-vertical .x-toolbar-item {
  4622. margin: 0 0 2px 0; }
  4623. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4624. .x-toolbar-vertical .x-toolbar-text {
  4625. margin-top: 4px;
  4626. margin-bottom: 6px; }
  4627. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4628. .x-toolbar-vertical .x-toolbar-separator-vertical {
  4629. margin: 2px 5px 3px 5px;
  4630. height: 0px;
  4631. width: 10px;
  4632. line-height: 0px;
  4633. border-top: 1px solid #98c8ff;
  4634. border-bottom: 1px solid white; }
  4635. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4636. .x-toolbar-scroller {
  4637. padding-left: 0; }
  4638. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4639. .x-toolbar-spacer {
  4640. width: 2px; }
  4641. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4642. .x-toolbar-more-icon {
  4643. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  4644. background-position: 2px center !important;
  4645. background-repeat: no-repeat; }
  4646. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4647. .x-toolbar-default {
  4648. border-color: #99bce8;
  4649. background-image: none;
  4650. background-color: #d3e1f1;
  4651. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  4652. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  4653. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  4654. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  4655. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  4656. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  4657. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4658. .x-nlg .x-toolbar-default {
  4659. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  4660. background-repeat: repeat-x; }
  4661. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4662. .x-toolbar-plain {
  4663. border: 0; }
  4664. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4665. .x-window {
  4666. outline: none;
  4667. overflow: hidden; }
  4668. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4669. .x-window .x-window-wrap {
  4670. position: relative; }
  4671. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4672. .x-window-body {
  4673. position: relative;
  4674. border-style: solid;
  4675. overflow: hidden; }
  4676. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4677. .x-window-maximized .x-window-wrap .x-window-header {
  4678. -moz-border-radius: 0 !important;
  4679. -webkit-border-radius: 0 !important;
  4680. -o-border-radius: 0 !important;
  4681. -ms-border-radius: 0 !important;
  4682. -khtml-border-radius: 0 !important;
  4683. border-radius: 0 !important; }
  4684. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4685. .x-window-header-top {
  4686. margin-bottom: -2px; }
  4687. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4688. .x-window-header-body-horizontal {
  4689. margin-top: -1px; }
  4690. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4691. .x-window-header-bottom {
  4692. margin-top: -1px;
  4693. margin-bottom: -1px; }
  4694. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4695. .x-window-header-left {
  4696. margin-right: -1px; }
  4697. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4698. .x-window-header-right {
  4699. margin-left: -1px; }
  4700. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4701. .x-window-header-vertical .x-surface {
  4702. padding-left: 1px; }
  4703. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4704. .x-window-collapsed .x-window-header-vertical {
  4705. -webkit-border-radius: 5px;
  4706. -moz-border-radius: 5px;
  4707. -ms-border-radius: 5px;
  4708. -o-border-radius: 5px;
  4709. border-radius: 5px; }
  4710. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4711. .x-window-collapsed .x-window-header-horizontal {
  4712. -webkit-border-radius: 5px;
  4713. -moz-border-radius: 5px;
  4714. -ms-border-radius: 5px;
  4715. -o-border-radius: 5px;
  4716. border-radius: 5px; }
  4717. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4718. .x-window-collapsed .x-window-header-left {
  4719. padding-right: 5px !important;
  4720. margin-right: 0; }
  4721. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4722. .x-window-collapsed .x-window-header-right {
  4723. padding-left: 5px !important;
  4724. margin-left: 0; }
  4725. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4726. .x-window-collapsed .x-window-header-top {
  4727. padding-bottom: 5px !important;
  4728. margin-bottom: -1px; }
  4729. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4730. .x-window-collapsed .x-window-header-bottom {
  4731. padding-top: 5px !important;
  4732. margin-top: 0; }
  4733. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4734. .x-window-header-left .x-vml-base,
  4735. .x-window-header-right .x-vml-base {
  4736. left: -3px !important; }
  4737. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4738. .x-opera .x-window-header-vertical .x-surface,
  4739. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  4740. padding-left: 2px; }
  4741. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4742. .x-window-header-text-container {
  4743. overflow: hidden;
  4744. -o-text-overflow: ellipsis;
  4745. text-overflow: ellipsis; }
  4746. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4747. .x-window-header-text {
  4748. user-select: none;
  4749. -o-user-select: none;
  4750. -ms-user-select: none;
  4751. -moz-user-select: -moz-none;
  4752. -webkit-user-select: none;
  4753. cursor: default;
  4754. white-space: nowrap; }
  4755. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4756. .x-window-default {
  4757. border-color: #a2b1c5;
  4758. -webkit-border-radius: 5px 5px;
  4759. -moz-border-radius: 5px 5px;
  4760. -ms-border-radius: 5px 5px;
  4761. -o-border-radius: 5px 5px;
  4762. border-radius: 5px 5px;
  4763. -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;
  4764. -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;
  4765. 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; }
  4766. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4767. .x-window-default {
  4768. -moz-border-radius-topleft: 5px;
  4769. -webkit-border-top-left-radius: 5px;
  4770. -ms-border-top-left-radius: 5px;
  4771. -o-border-top-left-radius: 5px;
  4772. border-top-left-radius: 5px;
  4773. -moz-border-radius-topright: 5px;
  4774. -webkit-border-top-right-radius: 5px;
  4775. -ms-border-top-right-radius: 5px;
  4776. -o-border-top-right-radius: 5px;
  4777. border-top-right-radius: 5px;
  4778. -moz-border-radius-bottomright: 5px;
  4779. -webkit-border-bottom-right-radius: 5px;
  4780. -ms-border-bottom-right-radius: 5px;
  4781. -o-border-bottom-right-radius: 5px;
  4782. border-bottom-right-radius: 5px;
  4783. -moz-border-radius-bottomleft: 5px;
  4784. -webkit-border-bottom-left-radius: 5px;
  4785. -ms-border-bottom-left-radius: 5px;
  4786. -o-border-bottom-left-radius: 5px;
  4787. border-bottom-left-radius: 5px;
  4788. padding: 4px 4px 4px 4px;
  4789. border-width: 1px;
  4790. border-style: solid;
  4791. background-color: #ced9e7; }
  4792. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4793. .x-nlg .x-window-default-mc {
  4794. background-color: #ced9e7; }
  4795. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4796. .x-window-body-default {
  4797. border-color: #99bbe8;
  4798. border-width: 1px;
  4799. background: #dfe8f6;
  4800. color: black; }
  4801. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4802. .x-window-header-default {
  4803. font-size: 11px;
  4804. border-color: #a2b1c5;
  4805. zoom: 1; }
  4806. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4807. .x-window-header-text-default {
  4808. color: #04468c;
  4809. font-weight: bold;
  4810. line-height: 17px;
  4811. font-family: tahoma, arial, verdana, sans-serif;
  4812. font-size: 11px; }
  4813. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4814. .x-window-header-default-top {
  4815. -moz-border-radius-topleft: 5px;
  4816. -webkit-border-top-left-radius: 5px;
  4817. -ms-border-top-left-radius: 5px;
  4818. -o-border-top-left-radius: 5px;
  4819. border-top-left-radius: 5px;
  4820. -moz-border-radius-topright: 5px;
  4821. -webkit-border-top-right-radius: 5px;
  4822. -ms-border-top-right-radius: 5px;
  4823. -o-border-top-right-radius: 5px;
  4824. border-top-right-radius: 5px;
  4825. -moz-border-radius-bottomright: 0;
  4826. -webkit-border-bottom-right-radius: 0;
  4827. -ms-border-bottom-right-radius: 0;
  4828. -o-border-bottom-right-radius: 0;
  4829. border-bottom-right-radius: 0;
  4830. -moz-border-radius-bottomleft: 0;
  4831. -webkit-border-bottom-left-radius: 0;
  4832. -ms-border-bottom-left-radius: 0;
  4833. -o-border-bottom-left-radius: 0;
  4834. border-bottom-left-radius: 0;
  4835. padding: 4px 5px 0 5px;
  4836. border-width: 1px 1px 0 1px;
  4837. border-style: solid;
  4838. background-color: #ced9e7; }
  4839. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4840. .x-nlg .x-window-header-default-top-mc {
  4841. background-color: #ced9e7; }
  4842. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4843. .x-window-header-default-right {
  4844. -moz-border-radius-topleft: 0;
  4845. -webkit-border-top-left-radius: 0;
  4846. -ms-border-top-left-radius: 0;
  4847. -o-border-top-left-radius: 0;
  4848. border-top-left-radius: 0;
  4849. -moz-border-radius-topright: 5px;
  4850. -webkit-border-top-right-radius: 5px;
  4851. -ms-border-top-right-radius: 5px;
  4852. -o-border-top-right-radius: 5px;
  4853. border-top-right-radius: 5px;
  4854. -moz-border-radius-bottomright: 5px;
  4855. -webkit-border-bottom-right-radius: 5px;
  4856. -ms-border-bottom-right-radius: 5px;
  4857. -o-border-bottom-right-radius: 5px;
  4858. border-bottom-right-radius: 5px;
  4859. -moz-border-radius-bottomleft: 0;
  4860. -webkit-border-bottom-left-radius: 0;
  4861. -ms-border-bottom-left-radius: 0;
  4862. -o-border-bottom-left-radius: 0;
  4863. border-bottom-left-radius: 0;
  4864. padding: 5px 4px 5px 0;
  4865. border-width: 1px 1px 1px 0;
  4866. border-style: solid;
  4867. background-color: #ced9e7; }
  4868. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4869. .x-nlg .x-window-header-default-right-mc {
  4870. background-color: #ced9e7; }
  4871. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4872. .x-window-header-default-bottom {
  4873. -moz-border-radius-topleft: 0;
  4874. -webkit-border-top-left-radius: 0;
  4875. -ms-border-top-left-radius: 0;
  4876. -o-border-top-left-radius: 0;
  4877. border-top-left-radius: 0;
  4878. -moz-border-radius-topright: 0;
  4879. -webkit-border-top-right-radius: 0;
  4880. -ms-border-top-right-radius: 0;
  4881. -o-border-top-right-radius: 0;
  4882. border-top-right-radius: 0;
  4883. -moz-border-radius-bottomright: 5px;
  4884. -webkit-border-bottom-right-radius: 5px;
  4885. -ms-border-bottom-right-radius: 5px;
  4886. -o-border-bottom-right-radius: 5px;
  4887. border-bottom-right-radius: 5px;
  4888. -moz-border-radius-bottomleft: 5px;
  4889. -webkit-border-bottom-left-radius: 5px;
  4890. -ms-border-bottom-left-radius: 5px;
  4891. -o-border-bottom-left-radius: 5px;
  4892. border-bottom-left-radius: 5px;
  4893. padding: 0 5px 4px 5px;
  4894. border-width: 0 1px 1px 1px;
  4895. border-style: solid;
  4896. background-color: #ced9e7; }
  4897. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4898. .x-nlg .x-window-header-default-bottom-mc {
  4899. background-color: #ced9e7; }
  4900. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4901. .x-window-header-default-left {
  4902. -moz-border-radius-topleft: 5px;
  4903. -webkit-border-top-left-radius: 5px;
  4904. -ms-border-top-left-radius: 5px;
  4905. -o-border-top-left-radius: 5px;
  4906. border-top-left-radius: 5px;
  4907. -moz-border-radius-topright: 0;
  4908. -webkit-border-top-right-radius: 0;
  4909. -ms-border-top-right-radius: 0;
  4910. -o-border-top-right-radius: 0;
  4911. border-top-right-radius: 0;
  4912. -moz-border-radius-bottomright: 0;
  4913. -webkit-border-bottom-right-radius: 0;
  4914. -ms-border-bottom-right-radius: 0;
  4915. -o-border-bottom-right-radius: 0;
  4916. border-bottom-right-radius: 0;
  4917. -moz-border-radius-bottomleft: 5px;
  4918. -webkit-border-bottom-left-radius: 5px;
  4919. -ms-border-bottom-left-radius: 5px;
  4920. -o-border-bottom-left-radius: 5px;
  4921. border-bottom-left-radius: 5px;
  4922. padding: 5px 0px 5px 4px;
  4923. border-width: 1px 0 1px 1px;
  4924. border-style: solid;
  4925. background-color: #ced9e7; }
  4926. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4927. .x-nlg .x-window-header-default-left-mc {
  4928. background-color: #ced9e7; }
  4929. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4930. .x-window-header-default-collapsed-top {
  4931. -moz-border-radius-topleft: 5px;
  4932. -webkit-border-top-left-radius: 5px;
  4933. -ms-border-top-left-radius: 5px;
  4934. -o-border-top-left-radius: 5px;
  4935. border-top-left-radius: 5px;
  4936. -moz-border-radius-topright: 5px;
  4937. -webkit-border-top-right-radius: 5px;
  4938. -ms-border-top-right-radius: 5px;
  4939. -o-border-top-right-radius: 5px;
  4940. border-top-right-radius: 5px;
  4941. -moz-border-radius-bottomright: 5px;
  4942. -webkit-border-bottom-right-radius: 5px;
  4943. -ms-border-bottom-right-radius: 5px;
  4944. -o-border-bottom-right-radius: 5px;
  4945. border-bottom-right-radius: 5px;
  4946. -moz-border-radius-bottomleft: 5px;
  4947. -webkit-border-bottom-left-radius: 5px;
  4948. -ms-border-bottom-left-radius: 5px;
  4949. -o-border-bottom-left-radius: 5px;
  4950. border-bottom-left-radius: 5px;
  4951. padding: 4px 5px 4px 5px;
  4952. border-width: 1px;
  4953. border-style: solid;
  4954. background-color: #ced9e7; }
  4955. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4956. .x-nlg .x-window-header-default-collapsed-top-mc {
  4957. background-color: #ced9e7; }
  4958. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4959. .x-window-header-default-collapsed-right {
  4960. -moz-border-radius-topleft: 5px;
  4961. -webkit-border-top-left-radius: 5px;
  4962. -ms-border-top-left-radius: 5px;
  4963. -o-border-top-left-radius: 5px;
  4964. border-top-left-radius: 5px;
  4965. -moz-border-radius-topright: 5px;
  4966. -webkit-border-top-right-radius: 5px;
  4967. -ms-border-top-right-radius: 5px;
  4968. -o-border-top-right-radius: 5px;
  4969. border-top-right-radius: 5px;
  4970. -moz-border-radius-bottomright: 5px;
  4971. -webkit-border-bottom-right-radius: 5px;
  4972. -ms-border-bottom-right-radius: 5px;
  4973. -o-border-bottom-right-radius: 5px;
  4974. border-bottom-right-radius: 5px;
  4975. -moz-border-radius-bottomleft: 5px;
  4976. -webkit-border-bottom-left-radius: 5px;
  4977. -ms-border-bottom-left-radius: 5px;
  4978. -o-border-bottom-left-radius: 5px;
  4979. border-bottom-left-radius: 5px;
  4980. padding: 5px 4px 5px 4px;
  4981. border-width: 1px;
  4982. border-style: solid;
  4983. background-color: #ced9e7; }
  4984. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4985. .x-nlg .x-window-header-default-collapsed-right-mc {
  4986. background-color: #ced9e7; }
  4987. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4988. .x-window-header-default-collapsed-bottom {
  4989. -moz-border-radius-topleft: 5px;
  4990. -webkit-border-top-left-radius: 5px;
  4991. -ms-border-top-left-radius: 5px;
  4992. -o-border-top-left-radius: 5px;
  4993. border-top-left-radius: 5px;
  4994. -moz-border-radius-topright: 5px;
  4995. -webkit-border-top-right-radius: 5px;
  4996. -ms-border-top-right-radius: 5px;
  4997. -o-border-top-right-radius: 5px;
  4998. border-top-right-radius: 5px;
  4999. -moz-border-radius-bottomright: 5px;
  5000. -webkit-border-bottom-right-radius: 5px;
  5001. -ms-border-bottom-right-radius: 5px;
  5002. -o-border-bottom-right-radius: 5px;
  5003. border-bottom-right-radius: 5px;
  5004. -moz-border-radius-bottomleft: 5px;
  5005. -webkit-border-bottom-left-radius: 5px;
  5006. -ms-border-bottom-left-radius: 5px;
  5007. -o-border-bottom-left-radius: 5px;
  5008. border-bottom-left-radius: 5px;
  5009. padding: 4px 5px 4px 5px;
  5010. border-width: 1px;
  5011. border-style: solid;
  5012. background-color: #ced9e7; }
  5013. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5014. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  5015. background-color: #ced9e7; }
  5016. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5017. .x-window-header-default-collapsed-left {
  5018. -moz-border-radius-topleft: 5px;
  5019. -webkit-border-top-left-radius: 5px;
  5020. -ms-border-top-left-radius: 5px;
  5021. -o-border-top-left-radius: 5px;
  5022. border-top-left-radius: 5px;
  5023. -moz-border-radius-topright: 5px;
  5024. -webkit-border-top-right-radius: 5px;
  5025. -ms-border-top-right-radius: 5px;
  5026. -o-border-top-right-radius: 5px;
  5027. border-top-right-radius: 5px;
  5028. -moz-border-radius-bottomright: 5px;
  5029. -webkit-border-bottom-right-radius: 5px;
  5030. -ms-border-bottom-right-radius: 5px;
  5031. -o-border-bottom-right-radius: 5px;
  5032. border-bottom-right-radius: 5px;
  5033. -moz-border-radius-bottomleft: 5px;
  5034. -webkit-border-bottom-left-radius: 5px;
  5035. -ms-border-bottom-left-radius: 5px;
  5036. -o-border-bottom-left-radius: 5px;
  5037. border-bottom-left-radius: 5px;
  5038. padding: 5px 4px 5px 4px;
  5039. border-width: 1px;
  5040. border-style: solid;
  5041. background-color: #ced9e7; }
  5042. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5043. .x-nlg .x-window-header-default-collapsed-left-mc {
  5044. background-color: #ced9e7; }
  5045. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5046. .x-window-header-default-top {
  5047. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5048. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5049. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5050. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5051. .x-window-header-default-right {
  5052. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  5053. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  5054. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  5055. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5056. .x-window-header-default-bottom {
  5057. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5058. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5059. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5060. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5061. .x-window-header-default-left {
  5062. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5063. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5064. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5065. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5066. .x-window-body-plain {
  5067. background: transparent; }
  5068. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5069. .x-message-box .x-window-body {
  5070. background-color: #ced9e7;
  5071. border: none; }
  5072. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5073. .x-message-box .x-progress-wrap {
  5074. margin-top: 4px; }
  5075. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5076. .x-message-box-icon {
  5077. width: 47px;
  5078. height: 32px; }
  5079. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5080. .x-message-box-info,
  5081. .x-message-box-warning,
  5082. .x-message-box-question,
  5083. .x-message-box-error {
  5084. background: transparent no-repeat top left; }
  5085. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5086. .x-message-box .x-msg-box-wait {
  5087. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  5088. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5089. .x-message-box-info {
  5090. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  5091. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5092. .x-message-box-warning {
  5093. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  5094. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5095. .x-message-box-question {
  5096. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  5097. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5098. .x-message-box-error {
  5099. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  5100. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5101. .x-tab-bar {
  5102. position: relative;
  5103. background-color: transparent;
  5104. background-image: none;
  5105. background-color: #cbdbef;
  5106. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  5107. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  5108. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  5109. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  5110. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  5111. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  5112. font-size: 11px; }
  5113. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5114. .x-nlg .x-tab-bar {
  5115. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  5116. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5117. .x-tab-bar-default-plain,
  5118. .x-nlg .x-tab-bar-default-plain {
  5119. background: transparent none; }
  5120. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5121. .x-tab-bar-body {
  5122. border-style: solid;
  5123. border-color: #99bce8;
  5124. position: relative;
  5125. z-index: 2;
  5126. zoom: 1; }
  5127. /* Top Tabs */
  5128. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5129. .x-tab-bar-top .x-tab-bar-body {
  5130. height: 20px;
  5131. border-width: 1px 1px 0;
  5132. padding: 1px 0 3px; }
  5133. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5134. .x-tab-bar-top .x-tab-bar-strip {
  5135. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5136. top: 22px;
  5137. border-width: 1px 1px 0;
  5138. height: 2px; }
  5139. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5140. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  5141. height: 25px; }
  5142. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5143. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  5144. height: 3px; }
  5145. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5146. .x-tab-bar-top .x-tab-bar-body-default-plain {
  5147. height: 20px;
  5148. border-width: 0;
  5149. padding: 0 0 2px; }
  5150. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5151. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5152. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5153. top: 20px;
  5154. border-width: 1px 1px 0 1px;
  5155. height: 2px; }
  5156. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5157. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  5158. height: 22px; }
  5159. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5160. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5161. height: 3px; }
  5162. /* Bottom Tabs */
  5163. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5164. .x-tab-bar-bottom .x-tab-bar-body {
  5165. height: 20px;
  5166. border-width: 0 1px 1px;
  5167. padding: 3px 0 1px; }
  5168. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5169. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  5170. position: relative;
  5171. top: -1px; }
  5172. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5173. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  5174. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  5175. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  5176. height: 22px; }
  5177. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5178. .x-tab-bar-bottom .x-tab-bar-strip {
  5179. top: 0;
  5180. border-width: 0 1px 1px 1px;
  5181. height: 2px; }
  5182. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5183. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  5184. height: 25px; }
  5185. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5186. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  5187. height: 3px; }
  5188. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5189. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5190. height: 20px;
  5191. border-width: 0;
  5192. padding: 3px 0 0; }
  5193. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5194. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  5195. position: relative;
  5196. top: -1px; }
  5197. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5198. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  5199. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  5200. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  5201. height: 21px; }
  5202. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5203. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5204. top: 0;
  5205. border-width: 0 1px 1px 1px;
  5206. height: 2px; }
  5207. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5208. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5209. height: 23px; }
  5210. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5211. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5212. height: 3px; }
  5213. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5214. .x-tab-bar-strip-default,
  5215. .x-tab-bar-strip-default-plain {
  5216. font-size: 0;
  5217. line-height: 0;
  5218. position: absolute;
  5219. z-index: 1;
  5220. border-style: solid;
  5221. overflow: hidden;
  5222. border-color: #99bce8;
  5223. background-color: #deecfd;
  5224. zoom: 1; }
  5225. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5226. .x-tab-default-top {
  5227. -moz-border-radius-topleft: 4px;
  5228. -webkit-border-top-left-radius: 4px;
  5229. -ms-border-top-left-radius: 4px;
  5230. -o-border-top-left-radius: 4px;
  5231. border-top-left-radius: 4px;
  5232. -moz-border-radius-topright: 4px;
  5233. -webkit-border-top-right-radius: 4px;
  5234. -ms-border-top-right-radius: 4px;
  5235. -o-border-top-right-radius: 4px;
  5236. border-top-right-radius: 4px;
  5237. -moz-border-radius-bottomright: 0;
  5238. -webkit-border-bottom-right-radius: 0;
  5239. -ms-border-bottom-right-radius: 0;
  5240. -o-border-bottom-right-radius: 0;
  5241. border-bottom-right-radius: 0;
  5242. -moz-border-radius-bottomleft: 0;
  5243. -webkit-border-bottom-left-radius: 0;
  5244. -ms-border-bottom-left-radius: 0;
  5245. -o-border-bottom-left-radius: 0;
  5246. border-bottom-left-radius: 0;
  5247. padding: 3px 3px 0 3px;
  5248. border-width: 1px 1px 0 1px;
  5249. border-style: solid;
  5250. background-color: #deecfd; }
  5251. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5252. .x-nlg .x-tab-default-top-mc {
  5253. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  5254. background-color: #deecfd; }
  5255. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5256. .x-tab-default-bottom {
  5257. -moz-border-radius-topleft: 0;
  5258. -webkit-border-top-left-radius: 0;
  5259. -ms-border-top-left-radius: 0;
  5260. -o-border-top-left-radius: 0;
  5261. border-top-left-radius: 0;
  5262. -moz-border-radius-topright: 0;
  5263. -webkit-border-top-right-radius: 0;
  5264. -ms-border-top-right-radius: 0;
  5265. -o-border-top-right-radius: 0;
  5266. border-top-right-radius: 0;
  5267. -moz-border-radius-bottomright: 4px;
  5268. -webkit-border-bottom-right-radius: 4px;
  5269. -ms-border-bottom-right-radius: 4px;
  5270. -o-border-bottom-right-radius: 4px;
  5271. border-bottom-right-radius: 4px;
  5272. -moz-border-radius-bottomleft: 4px;
  5273. -webkit-border-bottom-left-radius: 4px;
  5274. -ms-border-bottom-left-radius: 4px;
  5275. -o-border-bottom-left-radius: 4px;
  5276. border-bottom-left-radius: 4px;
  5277. padding: 0 3px 3px 3px;
  5278. border-width: 0 1px 1px 1px;
  5279. border-style: solid;
  5280. background-color: #deecfd; }
  5281. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5282. .x-nlg .x-tab-default-bottom-mc {
  5283. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  5284. background-color: #deecfd; }
  5285. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5286. .x-tab {
  5287. z-index: 1;
  5288. margin: 0 0 0 2px;
  5289. display: inline-block;
  5290. zoom: 1;
  5291. *display: inline;
  5292. white-space: nowrap;
  5293. height: 20px;
  5294. border-color: #8db3e3;
  5295. cursor: pointer;
  5296. cursor: hand; }
  5297. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5298. .x-tab button {
  5299. cursor: pointer;
  5300. cursor: hand; }
  5301. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5302. .x-tab em {
  5303. display: block;
  5304. padding: 0 6px;
  5305. line-height: 1px; }
  5306. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5307. .x-tab button {
  5308. background: none;
  5309. border: 0;
  5310. padding: 0;
  5311. margin: 0;
  5312. -webkit-appearance: none;
  5313. font-size: 11px;
  5314. font-weight: bold;
  5315. font-family: tahoma, arial, verdana, sans-serif;
  5316. color: #416da3;
  5317. outline: 0 none;
  5318. overflow-x: visible; }
  5319. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5320. .x-tab button::-moz-focus-inner {
  5321. border: 0;
  5322. padding: 0; }
  5323. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5324. .x-tab button .x-tab-inner {
  5325. background-color: transparent;
  5326. background-repeat: no-repeat;
  5327. background-position: 0 -2px;
  5328. display: block;
  5329. text-align: center;
  5330. white-space: nowrap;
  5331. text-overflow: ellipsis;
  5332. -o-text-overflow: ellipsis;
  5333. overflow: hidden; }
  5334. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5335. .x-tab img {
  5336. display: none; }
  5337. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5338. .x-border-box .x-tab-default-top {
  5339. height: 21px; }
  5340. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5341. .x-border-box .x-tab-default-bottom {
  5342. height: 21px; }
  5343. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5344. .x-tab-default-top {
  5345. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5346. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5347. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5348. border-bottom: 1px solid #99bce8 !important; }
  5349. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5350. .x-tab-default-top em {
  5351. padding-bottom: 3px; }
  5352. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5353. .x-tab-default-top button,
  5354. .x-tab-default-top .x-tab-inner {
  5355. height: 13px;
  5356. line-height: 13px; }
  5357. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5358. .x-safari4 .x-tab-default-top .x-tab-inner,
  5359. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  5360. line-height: 11px; }
  5361. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5362. .x-nbr .x-tab-default-top {
  5363. border-bottom-width: 1px !important; }
  5364. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5365. .x-tab-default-top-active {
  5366. border-bottom-color: #deecfd !important; }
  5367. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5368. .x-tab-default-bottom {
  5369. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5370. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5371. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5372. border-top: 1px solid #99bce8 !important;
  5373. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5374. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5375. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  5376. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5377. .x-tab-default-bottom em {
  5378. padding-top: 3px; }
  5379. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5380. .x-tab-default-bottom button,
  5381. .x-tab-default-bottom .x-tab-inner {
  5382. height: 13px;
  5383. line-height: 13px; }
  5384. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5385. .x-nbr .x-tab-default-bottom {
  5386. border-top-width: 1px !important; }
  5387. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5388. .x-tab-default-bottom-active {
  5389. border-top-color: #deecfd !important; }
  5390. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5391. .x-tab-default-disabled {
  5392. cursor: default;
  5393. border-color: #bbd2ef;
  5394. background-image: none;
  5395. background-color: #e1ecfa;
  5396. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5397. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5398. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5399. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5400. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5401. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5402. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5403. .x-tab-default-disabled button {
  5404. color: #c3b3b3 !important; }
  5405. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5406. .x-tab-icon-text-left .x-tab-inner {
  5407. padding-left: 20px; }
  5408. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5409. .x-tab button {
  5410. position: relative; }
  5411. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5412. .x-tab-icon {
  5413. position: absolute;
  5414. background-repeat: no-repeat;
  5415. background-position: 0 -1px;
  5416. top: 0;
  5417. left: 0;
  5418. right: auto;
  5419. bottom: 0;
  5420. width: 18px;
  5421. height: 18px; }
  5422. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5423. .x-strict .x-ie8 .x-tab button,
  5424. .x-strict .x-ie9 .x-tab button {
  5425. overflow-y: visible; }
  5426. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5427. .x-tab-default-disabled .x-tab-icon {
  5428. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  5429. opacity: 0.5; }
  5430. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  5431. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5432. .x-tab-noicon .x-tab-icon {
  5433. display: none; }
  5434. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5435. .x-tab-top-over {
  5436. background-image: none;
  5437. background-color: #e8f2ff;
  5438. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5439. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5440. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5441. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5442. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5443. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5444. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5445. .x-tab-bottom-over {
  5446. background-image: none;
  5447. background-color: #e8f2ff;
  5448. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5449. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5450. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5451. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5452. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5453. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5454. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5455. .x-tab-active {
  5456. z-index: 3; }
  5457. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5458. .x-tab-active button {
  5459. color: #15498b; }
  5460. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5461. .x-tab-top-active {
  5462. background-image: none;
  5463. background-color: #deecfd;
  5464. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5465. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5466. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5467. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5468. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5469. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5470. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5471. .x-tab-bottom-active {
  5472. background-image: none;
  5473. background-color: #deecfd;
  5474. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5475. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5476. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5477. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5478. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5479. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5480. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5481. .x-tab-disabled {
  5482. border-color: #bbd2ef; }
  5483. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5484. .x-tab-disabled button {
  5485. color: #c3b3b3; }
  5486. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5487. .x-tab-top-disabled {
  5488. background-image: none;
  5489. background: transparent;
  5490. background-image: none;
  5491. background-color: #e1ecfa;
  5492. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5493. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5494. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5495. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5496. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5497. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5498. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5499. .x-tab-bottom-disabled {
  5500. background-image: none;
  5501. background: transparent;
  5502. background-image: none;
  5503. background-color: #e1ecfa;
  5504. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5505. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5506. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5507. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5508. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5509. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  5510. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5511. .x-nlg .x-tab-top {
  5512. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  5513. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5514. .x-nlg .x-tab-bottom {
  5515. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  5516. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5517. .x-nlg .x-tab-top-over {
  5518. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  5519. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5520. .x-nlg .x-tab-bottom-over {
  5521. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  5522. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5523. .x-nlg .x-tab-top-active {
  5524. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  5525. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5526. .x-nlg .x-tab-bottom-active {
  5527. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  5528. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5529. .x-nlg .x-tab-top-disabled {
  5530. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  5531. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5532. .x-nlg .x-tab-bottom-disabled {
  5533. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  5534. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5535. .x-tab-closable em {
  5536. padding-right: 14px; }
  5537. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5538. .x-tab-close-btn {
  5539. position: absolute;
  5540. top: 2px;
  5541. right: 2px;
  5542. width: 11px;
  5543. height: 11px;
  5544. font-size: 0;
  5545. line-height: 0;
  5546. text-indent: -999px;
  5547. background: no-repeat;
  5548. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  5549. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5550. opacity: 0.6; }
  5551. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5552. .x-nbr .x-tab-close-btn {
  5553. top: 0px;
  5554. right: 0px; }
  5555. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  5556. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5557. a.x-tab-close-btn:hover {
  5558. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  5559. opacity: 1; }
  5560. /* Include the element name to raise the specificity to equal the :hover */
  5561. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5562. .x-tab-default-disabled a.x-tab-close-btn {
  5563. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  5564. opacity: 0.3; }
  5565. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5566. .x-autowidth-table table.x-grid-table {
  5567. table-layout: auto;
  5568. width: auto!important; }
  5569. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5570. .x-tree-no-lines .x-tree-elbow {
  5571. background-color: transparent; }
  5572. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5573. .x-tree-no-lines .x-tree-elbow-end {
  5574. background-color: transparent; }
  5575. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5576. .x-tree-no-lines .x-tree-elbow-line {
  5577. background-color: transparent; }
  5578. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5579. .x-tree-arrows .x-tree-elbow-plus {
  5580. background: transparent no-repeat 0 0; }
  5581. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5582. .x-tree-arrows .x-tree-elbow-end-plus {
  5583. background: transparent no-repeat 0 0; }
  5584. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5585. .x-tree-arrows .x-tree-elbow-end-minus {
  5586. background: transparent no-repeat -16px 0; }
  5587. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5588. .x-tree-arrows .x-tree-elbow-minus {
  5589. background: transparent no-repeat -16px 0; }
  5590. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5591. .x-tree-arrows .x-tree-elbow {
  5592. background-color: transparent !important; }
  5593. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5594. .x-tree-arrows .x-tree-elbow-end {
  5595. background-color: transparent !important; }
  5596. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5597. .x-tree-arrows .x-tree-elbow-line {
  5598. background-color: transparent !important; }
  5599. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5600. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  5601. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  5602. background-position: -32px 0; }
  5603. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5604. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  5605. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  5606. background-position: -48px 0; }
  5607. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5608. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5609. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5610. background-position: -16px 0; }
  5611. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5612. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  5613. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  5614. background-position: -48px 0; }
  5615. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5616. .x-tree-elbow-plus,
  5617. .x-tree-elbow-minus,
  5618. .x-tree-elbow-end-plus,
  5619. .x-tree-elbow-end-minus {
  5620. cursor: pointer; }
  5621. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5622. .x-tree-lines .x-tree-elbow {
  5623. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  5624. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5625. .x-tree-lines .x-tree-elbow-end {
  5626. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  5627. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5628. .x-tree-lines .x-tree-elbow-plus {
  5629. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  5630. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5631. .x-tree-lines .x-tree-elbow-end-plus {
  5632. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  5633. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5634. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  5635. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  5636. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5637. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5638. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  5639. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5640. .x-tree-lines .x-tree-elbow-line {
  5641. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  5642. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5643. .x-tree-no-lines .x-tree-elbow-plus,
  5644. .x-tree-no-lines .x-tree-elbow-end-plus {
  5645. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  5646. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5647. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5648. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5649. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  5650. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5651. .x-tree-arrows .x-tree-elbow-plus,
  5652. .x-tree-arrows .x-tree-elbow-minus,
  5653. .x-tree-arrows .x-tree-elbow-end-plus,
  5654. .x-tree-arrows .x-tree-elbow-end-minus {
  5655. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  5656. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5657. .x-tree-icon {
  5658. margin: 2px 3px 0 0; }
  5659. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5660. .x-grid-with-row-lines .x-tree-icon {
  5661. margin-top: 1px; }
  5662. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5663. .x-tree-elbow,
  5664. .x-tree-elbow-end,
  5665. .x-tree-elbow-plus,
  5666. .x-tree-elbow-end-plus,
  5667. .x-tree-elbow-empty,
  5668. .x-tree-elbow-line {
  5669. height: 20px;
  5670. width: 16px; }
  5671. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5672. .x-grid-with-row-lines .x-tree-elbow,
  5673. .x-grid-with-row-lines .x-tree-elbow-end,
  5674. .x-grid-with-row-lines .x-tree-elbow-plus,
  5675. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  5676. .x-grid-with-row-lines .x-tree-elbow-empty,
  5677. .x-grid-with-row-lines .x-tree-elbow-line {
  5678. height: 19px;
  5679. background-position: 0 -1px; }
  5680. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5681. .x-tree-icon-leaf {
  5682. width: 16px;
  5683. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  5684. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5685. .x-tree-icon-parent {
  5686. width: 16px;
  5687. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  5688. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5689. .x-grid-tree-node-expanded .x-tree-icon-parent {
  5690. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  5691. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5692. .x-grid-rowbody {
  5693. padding: 0; }
  5694. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5695. .x-grid-cell-treecolumn .x-grid-cell-inner {
  5696. padding: 0;
  5697. line-height: 19px; }
  5698. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5699. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  5700. line-height: 17px; }
  5701. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5702. .x-tree-panel .x-grid-cell-inner {
  5703. cursor: pointer; }
  5704. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5705. .x-tree-panel .x-grid-cell-inner img {
  5706. display: inline-block;
  5707. vertical-align: top; }
  5708. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5709. .x-grid-editor-on-text-node .x-form-text {
  5710. padding-left: 1px;
  5711. padding-right: 1px; }
  5712. /* line 228, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5713. .x-opera .x-grid-editor-on-text-node .x-form-text {
  5714. padding-left: 2px;
  5715. padding-right: 2px; }
  5716. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5717. .x-tree-checkbox {
  5718. margin: 4px 3px 0 0;
  5719. display: inline-block;
  5720. vertical-align: top;
  5721. width: 13px;
  5722. height: 13px;
  5723. background: no-repeat;
  5724. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  5725. overflow: hidden;
  5726. padding: 0;
  5727. border: 0; }
  5728. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5729. .x-tree-checkbox::-moz-focus-inner {
  5730. padding: 0;
  5731. border: 0; }
  5732. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5733. .x-grid-with-row-lines .x-tree-checkbox {
  5734. margin-top: 3px; }
  5735. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5736. .x-tree-checkbox-checked {
  5737. background-position: 0 -13px; }
  5738. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5739. .x-tree-drop-ok-append .x-dd-drop-icon {
  5740. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  5741. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5742. .x-tree-drop-ok-above .x-dd-drop-icon {
  5743. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  5744. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5745. .x-tree-drop-ok-below .x-dd-drop-icon {
  5746. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  5747. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5748. .x-tree-drop-ok-between .x-dd-drop-icon {
  5749. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  5750. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5751. .x-grid-tree-loading .x-tree-icon {
  5752. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  5753. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5754. .x-tree-ddindicator {
  5755. height: 1px;
  5756. border-width: 1px 0px 0px;
  5757. border-style: dotted;
  5758. border-color: green; }
  5759. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5760. .x-grid-tree-loading span {
  5761. font-style: italic;
  5762. color: #444444; }
  5763. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5764. .x-tree-animator-wrap {
  5765. overflow: hidden; }
  5766. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5767. .x-surface {
  5768. display: -moz-inline-box;
  5769. -moz-box-orient: vertical;
  5770. display: inline-block;
  5771. vertical-align: middle;
  5772. *vertical-align: auto;
  5773. overflow: hidden; }
  5774. /* line 7, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  5775. .x-surface {
  5776. *display: inline; }
  5777. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5778. .rvml {
  5779. behavior: url(#default#VML); }
  5780. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5781. .x-surface tspan {
  5782. user-select: none;
  5783. -o-user-select: none;
  5784. -ms-user-select: none;
  5785. -moz-user-select: -moz-none;
  5786. -webkit-user-select: none;
  5787. cursor: default; }
  5788. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5789. .x-vml-sprite {
  5790. position: absolute;
  5791. left: 0;
  5792. top: 0;
  5793. width: 1px;
  5794. height: 1px; }
  5795. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5796. .x-vml-group {
  5797. position: absolute;
  5798. left: 0;
  5799. top: 0;
  5800. width: 1000px;
  5801. height: 1000px; }
  5802. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5803. .x-vml-measure-span {
  5804. position: absolute;
  5805. left: -9999em;
  5806. top: -9999em;
  5807. padding: 0;
  5808. margin: 0;
  5809. display: inline; }
  5810. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5811. .x-vml-base {
  5812. position: relative;
  5813. top: 0;
  5814. left: 0;
  5815. overflow: hidden;
  5816. display: inline-block; }
  5817. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5818. .x-vml-base {
  5819. position: relative;
  5820. top: 0;
  5821. left: 0;
  5822. overflow: hidden;
  5823. display: inline-block; }
  5824. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5825. svg, vml {
  5826. overflow: hidden; }
  5827. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  5828. .x-viewport, .x-viewport body {
  5829. margin: 0;
  5830. padding: 0;
  5831. border: 0 none;
  5832. overflow: hidden;
  5833. height: 100%;
  5834. position: static; }
  5835. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5836. .x-dd-drag-proxy {
  5837. z-index: 1000000!important; }
  5838. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5839. .x-dd-drag-repair .x-dd-drag-ghost {
  5840. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5841. opacity: 0.6; }
  5842. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5843. .x-dd-drag-repair .x-dd-drop-icon {
  5844. display: none; }
  5845. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5846. .x-dd-drag-ghost {
  5847. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  5848. opacity: 0.85;
  5849. padding: 5px;
  5850. padding-left: 20px;
  5851. white-space: nowrap;
  5852. color: #000;
  5853. font: normal 11px tahoma, arial, verdana, sans-serif;
  5854. border: 1px solid;
  5855. border-color: #ddd #bbb #bbb #ddd;
  5856. background-color: #fff; }
  5857. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5858. .x-dd-drop-icon {
  5859. position: absolute;
  5860. top: 3px;
  5861. left: 3px;
  5862. display: block;
  5863. width: 16px;
  5864. height: 16px;
  5865. background-color: transparent;
  5866. background-position: center;
  5867. background-repeat: no-repeat;
  5868. z-index: 1; }
  5869. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5870. .x-view-selector {
  5871. position: absolute;
  5872. left: 0;
  5873. top: 0;
  5874. width: 0;
  5875. background-color: #c3daf9;
  5876. border: 1px dotted #3399bb;
  5877. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  5878. opacity: 0.5;
  5879. zoom: 1; }
  5880. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5881. .x-dd-drop-nodrop .x-dd-drop-icon {
  5882. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  5883. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5884. .x-dd-drop-ok .x-dd-drop-icon {
  5885. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  5886. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5887. .x-dd-drop-ok-add .x-dd-drop-icon {
  5888. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  5889. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5890. .x-resizable-handle {
  5891. position: absolute;
  5892. z-index: 100;
  5893. font-size: 1px;
  5894. line-height: 6px;
  5895. overflow: hidden;
  5896. zoom: 1;
  5897. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  5898. opacity: 0;
  5899. background-color: #fff; }
  5900. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5901. .x-collapsed .x-resizable-handle {
  5902. display: none; }
  5903. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5904. .x-resizable-handle-east {
  5905. width: 6px;
  5906. height: 100%;
  5907. right: 0;
  5908. top: 0; }
  5909. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5910. .x-resizable-over .x-resizable-handle-east {
  5911. cursor: e-resize; }
  5912. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5913. .x-resizable-handle-south {
  5914. width: 100%;
  5915. height: 6px;
  5916. left: 0;
  5917. bottom: 0; }
  5918. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5919. .x-resizable-over .x-resizable-handle-south {
  5920. cursor: s-resize; }
  5921. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5922. .x-resizable-handle-west {
  5923. width: 6px;
  5924. height: 100%;
  5925. left: 0;
  5926. top: 0; }
  5927. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5928. .x-resizable-over .x-resizable-handle-west {
  5929. cursor: w-resize; }
  5930. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5931. .x-resizable-handle-north {
  5932. width: 100%;
  5933. height: 6px;
  5934. left: 0;
  5935. top: 0; }
  5936. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5937. .x-resizable-over .x-resizable-handle-north {
  5938. cursor: n-resize; }
  5939. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5940. .x-resizable-handle-southeast {
  5941. width: 6px;
  5942. height: 6px;
  5943. right: 0;
  5944. bottom: 0;
  5945. z-index: 101; }
  5946. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5947. .x-resizable-over .x-resizable-handle-southeast {
  5948. cursor: se-resize; }
  5949. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5950. .x-resizable-handle-northwest {
  5951. width: 6px;
  5952. height: 6px;
  5953. left: 0;
  5954. top: 0;
  5955. z-index: 101; }
  5956. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5957. .x-resizable-over .x-resizable-handle-northwest {
  5958. cursor: nw-resize; }
  5959. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5960. .x-resizable-handle-northeast {
  5961. width: 6px;
  5962. height: 6px;
  5963. right: 0;
  5964. top: 0;
  5965. z-index: 101; }
  5966. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5967. .x-resizable-over .x-resizable-handle-northeast {
  5968. cursor: ne-resize; }
  5969. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5970. .x-resizable-handle-southwest {
  5971. width: 6px;
  5972. height: 6px;
  5973. left: 0;
  5974. bottom: 0;
  5975. z-index: 101; }
  5976. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5977. .x-resizable-over .x-resizable-handle-southwest {
  5978. cursor: sw-resize; }
  5979. /*IE rounding error*/
  5980. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5981. .x-ie .x-resizable-handle-east {
  5982. margin-right: -1px;
  5983. /*IE rounding error*/ }
  5984. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5985. .x-ie .x-resizable-handle-south {
  5986. margin-bottom: -1px; }
  5987. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5988. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  5989. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  5990. opacity: 1; }
  5991. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5992. .x-window .x-window-handle {
  5993. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  5994. opacity: 0; }
  5995. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5996. .x-window-collapsed .x-window-handle {
  5997. display: none; }
  5998. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5999. .x-resizable-proxy {
  6000. border: 1px dashed #3b5a82;
  6001. position: absolute;
  6002. left: 0;
  6003. top: 0;
  6004. overflow: hidden;
  6005. z-index: 50000; }
  6006. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6007. .x-resizable-overlay {
  6008. position: absolute;
  6009. left: 0;
  6010. top: 0;
  6011. width: 100%;
  6012. height: 100%;
  6013. display: none;
  6014. z-index: 200000;
  6015. background-color: #fff;
  6016. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  6017. opacity: 0; }
  6018. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6019. .x-resizable-over .x-resizable-handle-east,
  6020. .x-resizable-over .x-resizable-handle-west,
  6021. .x-resizable-pinned .x-resizable-handle-east,
  6022. .x-resizable-pinned .x-resizable-handle-west {
  6023. background-position: left;
  6024. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  6025. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6026. .x-resizable-over .x-resizable-handle-south,
  6027. .x-resizable-over .x-resizable-handle-north,
  6028. .x-resizable-pinned .x-resizable-handle-south,
  6029. .x-resizable-pinned .x-resizable-handle-north {
  6030. background-position: top;
  6031. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  6032. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6033. .x-resizable-over .x-resizable-handle-southeast,
  6034. .x-resizable-pinned .x-resizable-handle-southeast {
  6035. background-position: top left;
  6036. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  6037. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6038. .x-resizable-over .x-resizable-handle-northwest,
  6039. .x-resizable-pinned .x-resizable-handle-northwest {
  6040. background-position: bottom right;
  6041. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  6042. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6043. .x-resizable-over .x-resizable-handle-northeast,
  6044. .x-resizable-pinned .x-resizable-handle-northeast {
  6045. background-position: bottom left;
  6046. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  6047. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  6048. .x-resizable-over .x-resizable-handle-southwest,
  6049. .x-resizable-pinned .x-resizable-handle-southwest {
  6050. background-position: top right;
  6051. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  6052. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6053. .x-splitter .x-collapse-el {
  6054. position: absolute;
  6055. cursor: pointer;
  6056. background-color: transparent;
  6057. background-repeat: no-repeat !important; }
  6058. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6059. .x-layout-split-left,
  6060. .x-layout-split-right {
  6061. top: 50%;
  6062. margin-top: -17px;
  6063. width: 5px;
  6064. height: 35px; }
  6065. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6066. .x-layout-split-top,
  6067. .x-layout-split-bottom {
  6068. left: 50%;
  6069. width: 35px;
  6070. height: 5px;
  6071. margin-left: -17px; }
  6072. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6073. .x-layout-split-left {
  6074. background: no-repeat top right;
  6075. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6076. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6077. .x-layout-split-right {
  6078. background: no-repeat top left;
  6079. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6080. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6081. .x-layout-split-top {
  6082. background: no-repeat top left;
  6083. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6084. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6085. .x-layout-split-bottom {
  6086. background: no-repeat top left;
  6087. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6088. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6089. .x-splitter-collapsed .x-layout-split-left {
  6090. background: no-repeat top left;
  6091. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6092. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6093. .x-splitter-collapsed .x-layout-split-right {
  6094. background: no-repeat top right;
  6095. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6096. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6097. .x-splitter-collapsed .x-layout-split-top {
  6098. background: no-repeat top left;
  6099. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6100. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6101. .x-splitter-collapsed .x-layout-split-bottom {
  6102. background: no-repeat top left;
  6103. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6104. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6105. .x-splitter-horizontal {
  6106. cursor: e-resize;
  6107. cursor: row-resize;
  6108. font-size: 1px; }
  6109. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6110. .x-splitter-vertical {
  6111. cursor: e-resize;
  6112. cursor: col-resize;
  6113. font-size: 1px; }
  6114. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6115. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  6116. cursor: default; }
  6117. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6118. .x-splitter-active {
  6119. z-index: 4;
  6120. font-size: 1px;
  6121. background-color: #b4b4b4;
  6122. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6123. opacity: 0.8; }
  6124. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6125. .x-splitter-active .x-collapse-el {
  6126. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6127. opacity: 0.3; }
  6128. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6129. .x-proxy-el {
  6130. position: absolute;
  6131. background: #b4b4b4;
  6132. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6133. opacity: 0.8; }
  6134. /*
  6135. * Dock Layouts
  6136. * @todo move this somewhere else?
  6137. */
  6138. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6139. .x-docked {
  6140. position: absolute !important;
  6141. z-index: 1; }
  6142. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6143. .x-docked-top {
  6144. border-bottom-width: 0 !important; }
  6145. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6146. .x-docked-bottom {
  6147. border-top-width: 0 !important; }
  6148. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6149. .x-docked-left {
  6150. border-right-width: 0 !important; }
  6151. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6152. .x-docked-right {
  6153. border-left-width: 0 !important; }
  6154. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6155. .x-docked-noborder-top {
  6156. border-top-width: 0 !important; }
  6157. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6158. .x-docked-noborder-right {
  6159. border-right-width: 0 !important; }
  6160. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6161. .x-docked-noborder-bottom {
  6162. border-bottom-width: 0 !important; }
  6163. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6164. .x-docked-noborder-left {
  6165. border-left-width: 0 !important; }
  6166. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6167. .x-box-inner {
  6168. overflow: hidden;
  6169. zoom: 1;
  6170. position: relative;
  6171. left: 0;
  6172. top: 0; }
  6173. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6174. .x-box-item {
  6175. position: absolute !important;
  6176. left: 0;
  6177. top: 0; }
  6178. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6179. .x-rtl .x-box-item {
  6180. right: 0;
  6181. left: auto; }
  6182. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6183. .x-box-layout-ct,
  6184. .x-border-layout-ct {
  6185. overflow: hidden;
  6186. zoom: 1; }
  6187. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6188. .x-border-layout-ct {
  6189. background-color: #dfe8f6;
  6190. position: relative; }
  6191. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6192. .x-overflow-hidden {
  6193. overflow: hidden !important; }
  6194. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6195. .x-inline-children > * {
  6196. display: inline-block !important; }
  6197. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6198. .x-abs-layout-ct {
  6199. position: relative; }
  6200. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6201. .x-abs-layout-item {
  6202. position: absolute !important; }
  6203. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6204. .x-fit-item {
  6205. position: relative; }
  6206. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6207. .x-border-region-slide-in {
  6208. z-index: 5; }
  6209. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6210. .x-region-collapsed-placeholder {
  6211. z-index: 4; }
  6212. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6213. .x-accordion-hd .x-panel-header-text {
  6214. color: black;
  6215. font-weight: normal; }
  6216. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6217. .x-accordion-hd {
  6218. background: #d9e7f8 !important;
  6219. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  6220. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  6221. box-shadow: inset 0 0 0 0 #d9e7f8; }
  6222. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6223. .x-accordion-hd .x-tool-collapse-top,
  6224. .x-accordion-hd .x-tool-collapse-right,
  6225. .x-accordion-hd .x-tool-collapse-bottom,
  6226. .x-accordion-hd .x-tool-collapse-left {
  6227. background-position: 0 -255px; }
  6228. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6229. .x-accordion-hd .x-tool-expand-top,
  6230. .x-accordion-hd .x-tool-expand-right,
  6231. .x-accordion-hd .x-tool-expand-bottom,
  6232. .x-accordion-hd .x-tool-expand-left {
  6233. background-position: 0 -240px; }
  6234. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6235. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  6236. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  6237. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  6238. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  6239. background-position: -15px -255px; }
  6240. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6241. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  6242. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  6243. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  6244. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  6245. background-position: -15px -240px; }
  6246. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6247. .x-accordion-hd {
  6248. border-width: 1px 0 1px 0 !important;
  6249. padding: 4px 5px 5px 5px;
  6250. border-top-color: #f3f7fb !important; }
  6251. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6252. .x-accordion-body {
  6253. border-width: 0 !important; }
  6254. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6255. .x-accordion-hd-sibling-expanded {
  6256. border-top-color: #99bce8 !important;
  6257. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6258. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6259. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  6260. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6261. .x-accordion-hd-last-collapsed {
  6262. border-bottom-color: #d9e7f8 !important; }
  6263. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6264. .x-frame-tl,
  6265. .x-frame-tr,
  6266. .x-frame-tc,
  6267. .x-frame-bl,
  6268. .x-frame-br,
  6269. .x-frame-bc {
  6270. overflow: hidden;
  6271. background-repeat: no-repeat; }
  6272. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6273. .x-frame-tc,
  6274. .x-frame-bc {
  6275. background-repeat: repeat-x; }
  6276. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6277. .x-frame-mc {
  6278. position: relative;
  6279. background-repeat: repeat-x;
  6280. overflow: hidden; }
  6281. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6282. .x-box-scroller-left {
  6283. float: left;
  6284. height: 100%;
  6285. z-index: 5; }
  6286. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6287. .x-box-scroller-left .x-toolbar-scroll-left,
  6288. .x-box-scroller-left .x-tabbar-scroll-left {
  6289. width: 18px;
  6290. position: relative;
  6291. cursor: pointer;
  6292. height: 20px;
  6293. background: transparent no-repeat -18px 0;
  6294. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  6295. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6296. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6297. background-position: 0 0; }
  6298. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6299. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  6300. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  6301. background-position: -18px 0;
  6302. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6303. opacity: 0.5;
  6304. cursor: default; }
  6305. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6306. .x-box-scroller-left .x-toolbar-scroll-left {
  6307. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  6308. background-position: -14px 0; }
  6309. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6310. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6311. background-position: 0 0; }
  6312. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6313. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  6314. background-position: -14px 0; }
  6315. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6316. .x-box-scroller-left .x-toolbar-scroll-left {
  6317. width: 14px;
  6318. height: 22px;
  6319. border-bottom: 1px solid #8db2e3; }
  6320. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6321. .x-horizontal-box-overflow-body {
  6322. float: left; }
  6323. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6324. .x-box-scroller-right {
  6325. float: right;
  6326. height: 100%;
  6327. z-index: 5; }
  6328. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6329. .x-box-scroller-right .x-toolbar-scroll-right,
  6330. .x-box-scroller-right .x-tabbar-scroll-right {
  6331. width: 18px;
  6332. position: relative;
  6333. cursor: pointer;
  6334. height: 20px;
  6335. background: transparent no-repeat 0 0;
  6336. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  6337. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6338. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6339. background-position: -18px 0; }
  6340. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6341. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  6342. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  6343. background-position: 0 0;
  6344. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6345. opacity: 0.5;
  6346. cursor: default; }
  6347. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6348. .x-box-scroller-right .x-toolbar-scroll-right {
  6349. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  6350. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6351. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6352. background-position: -14px 0; }
  6353. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6354. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  6355. background-position: 0 0; }
  6356. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6357. .x-box-scroller-right .x-toolbar-scroll-right {
  6358. width: 14px;
  6359. height: 22px;
  6360. border-bottom: 1px solid #8db2e3; }
  6361. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6362. .x-box-scroller-top .x-box-scroller {
  6363. line-height: 0;
  6364. font-size: 0; }
  6365. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6366. .x-box-scroller-top .x-menu-scroll-top {
  6367. background: transparent no-repeat center center;
  6368. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  6369. height: 8px;
  6370. cursor: pointer; }
  6371. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6372. .x-box-scroller-bottom .x-box-scroller {
  6373. line-height: 0;
  6374. font-size: 0; }
  6375. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6376. .x-box-scroller-bottom .x-menu-scroll-bottom {
  6377. background: transparent no-repeat center center;
  6378. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  6379. height: 8px;
  6380. cursor: pointer; }
  6381. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6382. .x-box-menu-right {
  6383. float: right;
  6384. padding-right: 2px; }
  6385. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6386. .x-column {
  6387. float: left; }
  6388. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6389. .x-tool {
  6390. height: 15px; }
  6391. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6392. .x-tool img {
  6393. overflow: hidden;
  6394. width: 15px;
  6395. height: 15px;
  6396. cursor: pointer;
  6397. background-color: transparent;
  6398. background-repeat: no-repeat;
  6399. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  6400. margin: 0; }
  6401. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6402. .x-panel-header-horizontal .x-tool,
  6403. .x-window-header-horizontal .x-tool {
  6404. margin-left: 2px; }
  6405. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6406. .x-panel-header-vertical .x-tool,
  6407. .x-window-header-vertical .x-tool {
  6408. margin-top: 2px; }
  6409. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6410. .x-panel-header-vertical .x-tool-top,
  6411. .x-window-header-vertical .x-tool-top {
  6412. margin: 0 0 4px; }
  6413. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6414. .x-tool-placeholder {
  6415. visibility: hidden; }
  6416. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6417. .x-tool-toggle {
  6418. background-position: 0 -60px; }
  6419. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6420. .x-tool-over .x-tool-toggle {
  6421. background-position: -15px -60px; }
  6422. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6423. .x-panel-collapsed .x-tool-toggle,
  6424. .x-fieldset-collapsed .x-tool-toggle {
  6425. background-position: 0 -75px; }
  6426. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6427. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  6428. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  6429. background-position: -15px -75px; }
  6430. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6431. .x-tool-close {
  6432. background-position: 0 0; }
  6433. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6434. .x-tool-minimize {
  6435. background-position: 0 -15px; }
  6436. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6437. .x-tool-maximize {
  6438. background-position: 0 -30px; }
  6439. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6440. .x-tool-restore {
  6441. background-position: 0 -45px; }
  6442. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6443. .x-tool-gear {
  6444. background-position: 0 -90px; }
  6445. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6446. .x-tool-prev {
  6447. background-position: 0 -105px; }
  6448. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6449. .x-tool-next {
  6450. background-position: 0 -120px; }
  6451. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6452. .x-tool-pin {
  6453. background-position: 0 -135px; }
  6454. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6455. .x-tool-unpin {
  6456. background-position: 0 -150px; }
  6457. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6458. .x-tool-right {
  6459. background-position: 0 -165px; }
  6460. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6461. .x-tool-left {
  6462. background-position: 0 -180px; }
  6463. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6464. .x-tool-help {
  6465. background-position: 0 -300px; }
  6466. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6467. .x-tool-save {
  6468. background-position: 0 -285px; }
  6469. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6470. .x-tool-search {
  6471. background-position: 0 -270px; }
  6472. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6473. .x-tool-minus {
  6474. background-position: 0 -255px; }
  6475. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6476. .x-tool-plus {
  6477. background-position: 0 -240px; }
  6478. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6479. .x-tool-refresh {
  6480. background-position: 0 -225px; }
  6481. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6482. .x-tool-up {
  6483. background-position: 0 -210px; }
  6484. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6485. .x-tool-down {
  6486. background-position: 0 -195px; }
  6487. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6488. .x-tool-collapse {
  6489. background-position: 0 -345px; }
  6490. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6491. .x-tool-expand {
  6492. background-position: 0 -330px; }
  6493. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6494. .x-tool-print {
  6495. background-position: 0 -315px; }
  6496. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6497. .x-tool-expand-bottom,
  6498. .x-tool-collapse-bottom {
  6499. background-position: 0 -195px; }
  6500. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6501. .x-tool-expand-top,
  6502. .x-tool-collapse-top {
  6503. background-position: 0 -210px; }
  6504. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6505. .x-tool-expand-left,
  6506. .x-tool-collapse-left {
  6507. background-position: 0 -180px; }
  6508. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6509. .x-tool-expand-right,
  6510. .x-tool-collapse-right {
  6511. background-position: 0 -165px; }
  6512. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6513. .x-tool-over .x-tool-close {
  6514. background-position: -15px 0; }
  6515. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6516. .x-tool-over .x-tool-minimize {
  6517. background-position: -15px -15px; }
  6518. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6519. .x-tool-over .x-tool-maximize {
  6520. background-position: -15px -30px; }
  6521. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6522. .x-tool-over .x-tool-restore {
  6523. background-position: -15px -45px; }
  6524. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6525. .x-tool-over .x-tool-gear {
  6526. background-position: -15px -90px; }
  6527. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6528. .x-tool-over .x-tool-prev {
  6529. background-position: -15px -105px; }
  6530. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6531. .x-tool-over .x-tool-next {
  6532. background-position: -15px -120px; }
  6533. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6534. .x-tool-over .x-tool-pin {
  6535. background-position: -15px -135px; }
  6536. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6537. .x-tool-over .x-tool-unpin {
  6538. background-position: -15px -150px; }
  6539. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6540. .x-tool-over .x-tool-right {
  6541. background-position: -15px -165px; }
  6542. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6543. .x-tool-over .x-tool-left {
  6544. background-position: -15px -180px; }
  6545. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6546. .x-tool-over .x-tool-down {
  6547. background-position: -15px -195px; }
  6548. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6549. .x-tool-over .x-tool-up {
  6550. background-position: -15px -210px; }
  6551. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6552. .x-tool-over .x-tool-refresh {
  6553. background-position: -15px -225px; }
  6554. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6555. .x-tool-over .x-tool-plus {
  6556. background-position: -15px -240px; }
  6557. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6558. .x-tool-over .x-tool-minus {
  6559. background-position: -15px -255px; }
  6560. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6561. .x-tool-over .x-tool-search {
  6562. background-position: -15px -270px; }
  6563. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6564. .x-tool-over .x-tool-save {
  6565. background-position: -15px -285px; }
  6566. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6567. .x-tool-over .x-tool-help {
  6568. background-position: -15px -300px; }
  6569. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6570. .x-tool-over .x-tool-print {
  6571. background-position: -15px -315px; }
  6572. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6573. .x-tool-over .x-tool-expand {
  6574. background-position: -15px -330px; }
  6575. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6576. .x-tool-over .x-tool-collapse {
  6577. background-position: -15px -345px; }
  6578. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6579. .x-tool-over .x-tool-expand-bottom,
  6580. .x-tool-over .x-tool-collapse-bottom {
  6581. background-position: -15px -195px; }
  6582. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6583. .x-tool-over .x-tool-expand-top,
  6584. .x-tool-over .x-tool-collapse-top {
  6585. background-position: -15px -210px; }
  6586. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6587. .x-tool-over .x-tool-expand-left,
  6588. .x-tool-over .x-tool-collapse-left {
  6589. background-position: -15px -180px; }
  6590. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6591. .x-tool-over .x-tool-expand-right,
  6592. .x-tool-over .x-tool-collapse-right {
  6593. background-position: -15px -165px; }
  6594. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6595. .x-horizontal-scroller-present .x-grid-body {
  6596. border-bottom-width: 0px; }
  6597. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6598. .x-vertical-scroller-present .x-grid-body {
  6599. border-right-width: 0px; }
  6600. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6601. .x-scroller {
  6602. overflow: hidden; }
  6603. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6604. .x-scroller-vertical {
  6605. border: 1px solid #99bce8;
  6606. border-top-color: #c5c5c5; }
  6607. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6608. .x-scroller-horizontal {
  6609. border: 1px solid #99bce8; }
  6610. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6611. .x-vertical-scroller-present .x-scroller-horizontal {
  6612. border-right-width: 0px; }
  6613. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6614. .x-scroller-ct {
  6615. overflow: hidden;
  6616. position: absolute;
  6617. margin: 0;
  6618. padding: 0;
  6619. border: none;
  6620. left: 0px;
  6621. top: 0px;
  6622. /*
  6623. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  6624. perpendicular dimension and breaks the scroll as well as offsets it by the left
  6625. offset that we use to try and keep some size on this element. This works on all
  6626. browsers (including IE9).
  6627. */
  6628. box-sizing: content-box !important;
  6629. -ms-box-sizing: content-box !important;
  6630. -moz-box-sizing: content-box !important;
  6631. -webkit-box-sizing: content-box !important; }
  6632. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6633. .x-scroller-vertical .x-scroller-ct {
  6634. overflow-y: scroll; }
  6635. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6636. .x-scroller-horizontal .x-scroller-ct {
  6637. overflow-x: scroll; }
  6638. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6639. .x-html {
  6640. /* Begin bidirectionality settings (do not change) */ }
  6641. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6642. .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 {
  6643. display: block; }
  6644. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6645. .x-html li {
  6646. display: list-item;
  6647. list-style: disc; }
  6648. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6649. .x-html head {
  6650. display: none; }
  6651. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6652. .x-html table {
  6653. display: table; }
  6654. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6655. .x-html tr {
  6656. display: table-row; }
  6657. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6658. .x-html thead {
  6659. display: table-header-group; }
  6660. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6661. .x-html tbody {
  6662. display: table-row-group; }
  6663. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6664. .x-html tfoot {
  6665. display: table-footer-group; }
  6666. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6667. .x-html col {
  6668. display: table-column; }
  6669. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6670. .x-html colgroup {
  6671. display: table-column-group; }
  6672. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6673. .x-html td, .x-html th {
  6674. display: table-cell; }
  6675. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6676. .x-html caption {
  6677. display: table-caption; }
  6678. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6679. .x-html th {
  6680. font-weight: bolder;
  6681. text-align: center; }
  6682. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6683. .x-html caption {
  6684. text-align: center; }
  6685. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6686. .x-html body {
  6687. margin: 8px; }
  6688. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6689. .x-html h1 {
  6690. font-size: 2em;
  6691. margin: .67em 0; }
  6692. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6693. .x-html h2 {
  6694. font-size: 1.5em;
  6695. margin: .75em 0; }
  6696. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6697. .x-html h3 {
  6698. font-size: 1.17em;
  6699. margin: .83em 0; }
  6700. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6701. .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 {
  6702. margin: 1.12em 0; }
  6703. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6704. .x-html h5 {
  6705. font-size: .83em;
  6706. margin: 1.5em 0; }
  6707. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6708. .x-html h6 {
  6709. font-size: .75em;
  6710. margin: 1.67em 0; }
  6711. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6712. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  6713. font-weight: bolder; }
  6714. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6715. .x-html blockquote {
  6716. margin-left: 40px;
  6717. margin-right: 40px; }
  6718. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6719. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  6720. font-style: italic; }
  6721. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6722. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  6723. font-family: monospace; }
  6724. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6725. .x-html pre {
  6726. white-space: pre; }
  6727. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6728. .x-html button, .x-html textarea, .x-html input, .x-html select {
  6729. display: inline-block; }
  6730. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6731. .x-html big {
  6732. font-size: 1.17em; }
  6733. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6734. .x-html small, .x-html sub, .x-html sup {
  6735. font-size: .83em; }
  6736. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6737. .x-html sub {
  6738. vertical-align: sub; }
  6739. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6740. .x-html sup {
  6741. vertical-align: super; }
  6742. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6743. .x-html table {
  6744. border-spacing: 2px; }
  6745. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6746. .x-html thead, .x-html tbody, .x-html tfoot {
  6747. vertical-align: middle; }
  6748. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6749. .x-html td, .x-html th {
  6750. vertical-align: inherit; }
  6751. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6752. .x-html s, .x-html strike, .x-html del {
  6753. text-decoration: line-through; }
  6754. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6755. .x-html hr {
  6756. border: 1px inset; }
  6757. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6758. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  6759. margin-left: 40px; }
  6760. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6761. .x-html ul, .x-html menu, .x-html dir {
  6762. list-style-type: disc; }
  6763. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6764. .x-html ol {
  6765. list-style-type: decimal; }
  6766. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6767. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  6768. margin-top: 0;
  6769. margin-bottom: 0; }
  6770. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6771. .x-html u, .x-html ins {
  6772. text-decoration: underline; }
  6773. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6774. .x-html br:before {
  6775. content: "\A"; }
  6776. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6777. .x-html :before, .x-html :after {
  6778. white-space: pre-line; }
  6779. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6780. .x-html center {
  6781. text-align: center; }
  6782. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6783. .x-html :link, .x-html :visited {
  6784. text-decoration: underline; }
  6785. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6786. .x-html :focus {
  6787. outline: invert dotted thin; }
  6788. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6789. .x-html BDO[DIR="ltr"] {
  6790. direction: ltr;
  6791. unicode-bidi: bidi-override; }
  6792. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6793. .x-html BDO[DIR="rtl"] {
  6794. direction: rtl;
  6795. unicode-bidi: bidi-override; }