ext-standard-debug.css 283 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as
  7. published by the Free Software Foundation and appearing in the file LICENSE included in the
  8. packaging of this file.
  9. Please review the following information to ensure the GNU General Public License version 3.0
  10. requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  11. If you are unsure which license is appropriate for your use, please contact the sales department
  12. at http://www.sencha.com/contact.
  13. Build date: 2012-04-20 14:10:47 (19f55ab932145a3443b228045fa80950dfeaf9cc)
  14. */
  15. /**
  16. * @var {string} $prefix
  17. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  18. * JavaScript application.
  19. */
  20. /**
  21. * @var {string} $theme-name
  22. * The name of the theme. This must match the the output directory of the images.
  23. * (defaults to 'default')
  24. */
  25. /**
  26. * @var {boolean/string} $relative-image-path-for-uis
  27. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  28. * It can also be a string of the path value.
  29. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  30. */
  31. /**
  32. * @var {string} $font-family
  33. * The default font-family to be used throughout the theme.
  34. */
  35. /**
  36. * @var {string} $base-gradient
  37. * The base gradient to be used throughout the theme.
  38. */
  39. /**
  40. * @var {color} $base-color
  41. * The base color to be used throughout the theme.
  42. */
  43. /**
  44. * @var {boolean} $include-not-found-images
  45. * True to include files which are not found when compiling your SASS
  46. */
  47. /**
  48. * @var {boolean} $include-ie
  49. * True to include Internet Explorer specific rules
  50. */
  51. /**
  52. * @var {boolean} $include-ff
  53. * True to include Firefox specific rules
  54. */
  55. /**
  56. * @var {boolean} $include-chrome
  57. * True to include Chrome specific rules
  58. */
  59. /**
  60. * @var {boolean} $include-safari
  61. * True to include Safari specific rules
  62. */
  63. /**
  64. * @var {boolean} $include-opera
  65. * True to include Opera specific rules
  66. */
  67. /**
  68. * @var {boolean} $include-webkit
  69. * True to include Webkit specific rules
  70. */
  71. /**
  72. * @var {boolean} $compile-all
  73. * True to copile all CSS, even if above include rules are false
  74. */
  75. /**
  76. * @var {boolean} $scope-reset-css
  77. * True to scope the reset CSS within the $prefix variable.
  78. */
  79. /**
  80. * @var {color} $css-shadow-background-color
  81. * The base color for CSS shadows
  82. */
  83. /**
  84. * @var {color} $include-shadow-images
  85. * True to include all shadow images.
  86. */
  87. /**
  88. * Toolbar buttons
  89. */
  90. /**
  91. * @class Ext.form.*
  92. */
  93. /**
  94. * @class Ext.form.field.Base
  95. */
  96. /**
  97. * @class Ext.form.field.TextArea
  98. */
  99. /**
  100. * @class Ext.form.Label
  101. */
  102. /**
  103. * @class Ext.form.field.Checkbox
  104. */
  105. /**
  106. * @class Ext.form.field.Radio
  107. */
  108. /**
  109. * Error messages
  110. */
  111. /**
  112. * Trigger Field
  113. */
  114. /**
  115. * Fieldsets
  116. */
  117. /**
  118. * Sliders
  119. */
  120. /**
  121. * @mixin background-gradient
  122. *
  123. * @param {Color} $background-color The background color of the gradient
  124. * @param {String/List} $type The type of gradient to be used. Can either be a String which is a predefined gradient, or it can
  125. * can be a list of color_stops. If none is set, it will still set the `background-color` to the $background-color.
  126. * @param {String} $direction The direction of the gradient. Can either me `top` or `left`. (defaults to `top`)
  127. */
  128. /**
  129. * Method which inserts a full background-image property for a theme image.
  130. * It checks if the file exists and if it doesn't, it'll throw an error.
  131. * By default it will not include the background-image property if it is not found,
  132. * but this can be changed by changing the default value of $include-missing-images to
  133. * be true.
  134. */
  135. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  136. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  137. h4, h5, h6, pre, code, form, fieldset, legend,
  138. input, textarea, p, blockquote, th, td {
  139. margin: 0;
  140. padding: 0; }
  141. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  142. table {
  143. border-collapse: collapse;
  144. border-spacing: 0; }
  145. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  146. fieldset, img {
  147. border: 0; }
  148. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  149. address, caption, cite, code,
  150. dfn, em, strong, th, var {
  151. font-style: normal;
  152. font-weight: normal; }
  153. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  154. li {
  155. list-style: none; }
  156. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  157. caption, th {
  158. text-align: left; }
  159. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  160. h1, h2, h3, h4, h5, h6 {
  161. font-size: 100%; }
  162. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  163. q:before,
  164. q:after {
  165. content: ""; }
  166. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  167. abbr, acronym {
  168. border: 0;
  169. font-variant: normal; }
  170. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  171. sup {
  172. vertical-align: text-top; }
  173. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  174. sub {
  175. vertical-align: text-bottom; }
  176. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  177. input, textarea, select {
  178. font-family: inherit;
  179. font-size: inherit;
  180. font-weight: inherit; }
  181. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  182. *:focus {
  183. outline: none; }
  184. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  185. .x-border-box,
  186. .x-border-box * {
  187. box-sizing: border-box;
  188. -moz-box-sizing: border-box;
  189. -ms-box-sizing: border-box;
  190. -webkit-box-sizing: border-box; }
  191. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  192. .x-body {
  193. color: black;
  194. font-size: 12px;
  195. font-family: tahoma, arial, verdana, sans-serif; }
  196. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  197. .x-rtl {
  198. direction: rtl; }
  199. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  200. .x-ltr {
  201. direction: ltr; }
  202. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  203. .x-clear {
  204. overflow: hidden;
  205. clear: both;
  206. font-size: 0;
  207. line-height: 0;
  208. display: table; }
  209. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  210. .x-strict .x-ie7 .x-clear {
  211. height: 0;
  212. width: 0; }
  213. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  214. .x-layer {
  215. position: absolute !important;
  216. overflow: hidden;
  217. zoom: 1; }
  218. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  219. .x-shim {
  220. position: absolute;
  221. left: 0;
  222. top: 0;
  223. overflow: hidden;
  224. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  225. opacity: 0; }
  226. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  227. .x-hide-display {
  228. display: none !important; }
  229. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  230. .x-hide-visibility {
  231. visibility: hidden !important; }
  232. /* line 55, ../themes/stylesheets/ext4/default/core/_core.scss */
  233. .x-item-disabled .x-form-item-label,
  234. .x-item-disabled .x-form-field,
  235. .x-item-disabled .x-form-cb-label {
  236. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  237. opacity: 0.3; }
  238. /* line 59, ../themes/stylesheets/ext4/default/core/_core.scss */
  239. .x-ie6 .x-item-disabled {
  240. filter: none; }
  241. /* line 64, ../themes/stylesheets/ext4/default/core/_core.scss */
  242. .x-hidden,
  243. .x-hide-offsets {
  244. display: block !important;
  245. visibility: hidden !important;
  246. position: absolute!important;
  247. left: -10000px !important;
  248. top: -10000px !important; }
  249. /* line 74, ../themes/stylesheets/ext4/default/core/_core.scss */
  250. .x-hide-nosize {
  251. height: 0!important;
  252. width: 0!important; }
  253. /* line 79, ../themes/stylesheets/ext4/default/core/_core.scss */
  254. .x-masked-relative {
  255. position: relative; }
  256. /* line 91, ../themes/stylesheets/ext4/default/core/_core.scss */
  257. .x-css-shadow {
  258. position: absolute;
  259. -moz-border-radius: 5px 5px;
  260. -webkit-border-radius: 5px 5px;
  261. -o-border-radius: 5px 5px;
  262. -ms-border-radius: 5px 5px;
  263. -khtml-border-radius: 5px 5px;
  264. border-radius: 5px 5px; }
  265. /* line 97, ../themes/stylesheets/ext4/default/core/_core.scss */
  266. .x-ie-shadow {
  267. background-color: #777;
  268. display: none;
  269. position: absolute;
  270. overflow: hidden;
  271. zoom: 1; }
  272. /* line 106, ../themes/stylesheets/ext4/default/core/_core.scss */
  273. .x-box-tl {
  274. background: transparent no-repeat 0 0;
  275. zoom: 1; }
  276. /* line 111, ../themes/stylesheets/ext4/default/core/_core.scss */
  277. .x-box-tc {
  278. height: 8px;
  279. background: transparent repeat-x 0 0;
  280. overflow: hidden; }
  281. /* line 117, ../themes/stylesheets/ext4/default/core/_core.scss */
  282. .x-box-tr {
  283. background: transparent no-repeat right -8px; }
  284. /* line 121, ../themes/stylesheets/ext4/default/core/_core.scss */
  285. .x-box-ml {
  286. background: transparent repeat-y 0;
  287. padding-left: 4px;
  288. overflow: hidden;
  289. zoom: 1; }
  290. /* line 128, ../themes/stylesheets/ext4/default/core/_core.scss */
  291. .x-box-mc {
  292. background: repeat-x 0 -16px;
  293. padding: 4px 10px; }
  294. /* line 133, ../themes/stylesheets/ext4/default/core/_core.scss */
  295. .x-box-mc h3 {
  296. margin: 0 0 4px 0;
  297. zoom: 1; }
  298. /* line 138, ../themes/stylesheets/ext4/default/core/_core.scss */
  299. .x-box-mr {
  300. background: transparent repeat-y right;
  301. padding-right: 4px;
  302. overflow: hidden; }
  303. /* line 144, ../themes/stylesheets/ext4/default/core/_core.scss */
  304. .x-box-bl {
  305. background: transparent no-repeat 0 -16px;
  306. zoom: 1; }
  307. /* line 149, ../themes/stylesheets/ext4/default/core/_core.scss */
  308. .x-box-bc {
  309. background: transparent repeat-x 0 -8px;
  310. height: 8px;
  311. overflow: hidden; }
  312. /* line 155, ../themes/stylesheets/ext4/default/core/_core.scss */
  313. .x-box-br {
  314. background: transparent no-repeat right -24px; }
  315. /* line 159, ../themes/stylesheets/ext4/default/core/_core.scss */
  316. .x-box-tl, .x-box-bl {
  317. padding-left: 8px;
  318. overflow: hidden; }
  319. /* line 164, ../themes/stylesheets/ext4/default/core/_core.scss */
  320. .x-box-tr, .x-box-br {
  321. padding-right: 8px;
  322. overflow: hidden; }
  323. /* line 169, ../themes/stylesheets/ext4/default/core/_core.scss */
  324. .x-box-tl {
  325. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  326. /* line 173, ../themes/stylesheets/ext4/default/core/_core.scss */
  327. .x-box-tc {
  328. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  329. /* line 177, ../themes/stylesheets/ext4/default/core/_core.scss */
  330. .x-box-tr {
  331. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  332. /* line 181, ../themes/stylesheets/ext4/default/core/_core.scss */
  333. .x-box-ml {
  334. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  335. /* line 185, ../themes/stylesheets/ext4/default/core/_core.scss */
  336. .x-box-mc {
  337. background-color: #eee;
  338. background-image: url('../../resources/themes/images/default/box/tb.gif');
  339. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  340. color: #393939;
  341. font-size: 15px; }
  342. /* line 193, ../themes/stylesheets/ext4/default/core/_core.scss */
  343. .x-box-mc h3 {
  344. font-size: 18px;
  345. font-weight: bold; }
  346. /* line 198, ../themes/stylesheets/ext4/default/core/_core.scss */
  347. .x-box-mr {
  348. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  349. /* line 202, ../themes/stylesheets/ext4/default/core/_core.scss */
  350. .x-box-bl {
  351. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  352. /* line 206, ../themes/stylesheets/ext4/default/core/_core.scss */
  353. .x-box-bc {
  354. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  355. /* line 210, ../themes/stylesheets/ext4/default/core/_core.scss */
  356. .x-box-br {
  357. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  358. /* line 214, ../themes/stylesheets/ext4/default/core/_core.scss */
  359. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  360. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  361. /* line 218, ../themes/stylesheets/ext4/default/core/_core.scss */
  362. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  363. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  364. /* line 222, ../themes/stylesheets/ext4/default/core/_core.scss */
  365. .x-box-blue .x-box-mc {
  366. background-color: #c3daf9; }
  367. /* line 226, ../themes/stylesheets/ext4/default/core/_core.scss */
  368. .x-box-blue .x-box-mc h3 {
  369. color: #17385b; }
  370. /* line 230, ../themes/stylesheets/ext4/default/core/_core.scss */
  371. .x-box-blue .x-box-ml {
  372. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  373. /* line 234, ../themes/stylesheets/ext4/default/core/_core.scss */
  374. .x-box-blue .x-box-mr {
  375. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  376. /* line 238, ../themes/stylesheets/ext4/default/core/_core.scss */
  377. .x-container {
  378. zoom: 1; }
  379. /* line 243, ../themes/stylesheets/ext4/default/core/_core.scss */
  380. .x-container:before {
  381. content: "";
  382. clear: both;
  383. display: table; }
  384. /* line 253, ../themes/stylesheets/ext4/default/core/_core.scss */
  385. table.x-container:before,
  386. tbody.x-container:before,
  387. tr.x-container:before {
  388. display: none; }
  389. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  390. .x-focus-element {
  391. position: absolute;
  392. top: -10px;
  393. left: -10px;
  394. width: 0px;
  395. height: 0px; }
  396. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  397. .x-focus-frame {
  398. position: absolute;
  399. left: 0px;
  400. top: 0px;
  401. z-index: 100000000;
  402. width: 0px;
  403. height: 0px; }
  404. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  405. .x-focus-frame-top,
  406. .x-focus-frame-bottom,
  407. .x-focus-frame-left,
  408. .x-focus-frame-right {
  409. position: absolute;
  410. top: 0px;
  411. left: 0px; }
  412. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  413. .x-focus-frame-top,
  414. .x-focus-frame-bottom {
  415. border-top: solid 2px #15428b;
  416. height: 2px; }
  417. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  418. .x-focus-frame-left,
  419. .x-focus-frame-right {
  420. border-left: solid 2px #15428b;
  421. width: 2px; }
  422. /**
  423. * @class Ext.Button
  424. * Used to create the base structure of an Ext.Button
  425. */
  426. /**
  427. * @mixin extjs-btn-group-ui
  428. * @class Ext.ButtonGroup
  429. */
  430. /**
  431. * @class Ext.menu.*
  432. */
  433. /**
  434. * @class Ext.Panel
  435. * Used to create the base structure of an Ext.Panel
  436. */
  437. /**
  438. * @class Ext.Panel
  439. * Used to create a visual theme for an Ext.Panel
  440. */
  441. /**
  442. * @mixin ext-toolbar-ui
  443. * @class Ext.toolbar.Toolbar
  444. * @param {String} $ui The name of the UI
  445. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  446. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  447. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  448. */
  449. /**
  450. * @class Ext.Window
  451. * Used to create a visual theme for an Ext.Panel
  452. */
  453. /**
  454. * @class Ext.tab.Bar
  455. */
  456. /**
  457. * @class Ext.Tab
  458. */
  459. /**
  460. * @class Ext.LoadMask
  461. * Component used to mask a component
  462. */
  463. /* line 5, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  464. .x-mask {
  465. z-index: 100;
  466. position: absolute;
  467. top: 0;
  468. left: 0;
  469. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  470. opacity: 0.5;
  471. width: 100%;
  472. height: 100%;
  473. zoom: 1;
  474. background: #cccccc; }
  475. /* line 21, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  476. .x-mask-msg {
  477. z-index: 20001;
  478. position: absolute;
  479. top: 0;
  480. left: 0;
  481. padding: 2px;
  482. border: 1px solid;
  483. border-color: #99bce8; }
  484. /* line 40, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  485. .x-mask-msg div {
  486. padding: 5px 10px 5px 25px;
  487. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  488. background-repeat: no-repeat;
  489. background-position: 5px center;
  490. cursor: wait;
  491. border: 1px solid #a3bad9;
  492. background-color: #eeeeee;
  493. color: #222222;
  494. font: normal 11px tahoma, arial, verdana, sans-serif; }
  495. /**
  496. * @mixin extjs-progress-ui
  497. */
  498. /**
  499. * W3C Suggested Default style sheet for HTML 4
  500. * http://www.w3.org/TR/CSS21/sample.html
  501. */
  502. /* line 2, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  503. .x-boundlist {
  504. border-width: 1px;
  505. border-style: solid;
  506. border-color: #98c0f4;
  507. background: white; }
  508. /* line 8, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  509. .x-boundlist .x-toolbar {
  510. border-width: 1px 0 0 0; }
  511. /* line 25, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  512. .x-boundlist-item {
  513. padding: 2px;
  514. user-select: none;
  515. -o-user-select: none;
  516. -ms-user-select: none;
  517. -moz-user-select: -moz-none;
  518. -webkit-user-select: none;
  519. cursor: default;
  520. cursor: pointer;
  521. cursor: hand;
  522. position: relative;
  523. /*allow hover in IE on empty items*/
  524. border-width: 1px;
  525. border-style: dotted;
  526. border-color: white; }
  527. /* line 39, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  528. .x-boundlist-selected {
  529. background: #cbdaf0;
  530. border-color: #8eabe4; }
  531. /* line 44, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  532. .x-boundlist-item-over {
  533. background: #dfe8f6;
  534. border-color: #a3bae9; }
  535. /* line 49, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  536. .x-boundlist-floating {
  537. border-top-width: 0; }
  538. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  539. .x-boundlist-above {
  540. border-top-width: 1px;
  541. border-bottom-width: 1px; }
  542. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  543. .x-btn {
  544. display: inline-block;
  545. zoom: 1;
  546. *display: inline;
  547. position: relative;
  548. cursor: pointer;
  549. cursor: hand;
  550. white-space: nowrap;
  551. vertical-align: middle;
  552. background-repeat: no-repeat; }
  553. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  554. .x-btn * {
  555. cursor: pointer;
  556. cursor: hand; }
  557. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  558. .x-btn em {
  559. background-repeat: no-repeat; }
  560. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  561. .x-btn em a {
  562. text-decoration: none;
  563. display: block;
  564. color: inherit;
  565. width: 100%;
  566. zoom: 1; }
  567. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  568. .x-btn button {
  569. width: 100%;
  570. display: block;
  571. margin: 0;
  572. padding: 0;
  573. border: 0;
  574. background: none;
  575. outline: 0 none;
  576. overflow: hidden;
  577. vertical-align: bottom;
  578. -webkit-appearance: none; }
  579. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  580. .x-btn button::-moz-focus-inner {
  581. border: 0;
  582. padding: 0; }
  583. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  584. .x-btn .x-btn-inner {
  585. display: block;
  586. white-space: nowrap;
  587. background-color: transparent;
  588. background-repeat: no-repeat;
  589. background-position: left center;
  590. overflow: hidden; }
  591. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  592. .x-btn .x-btn-left .x-btn-inner {
  593. text-align: left; }
  594. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  595. .x-btn .x-btn-center .x-btn-inner {
  596. text-align: center; }
  597. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  598. .x-btn .x-btn-right .x-btn-inner {
  599. text-align: right; }
  600. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  601. .x-btn-disabled span {
  602. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  603. opacity: 0.5; }
  604. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  605. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  606. filter: none; }
  607. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  608. .x-ie7 .x-btn-disabled,
  609. .x-ie8 .x-btn-disabled {
  610. filter: none; }
  611. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  612. .x-ie6 .x-btn-disabled .x-btn-icon,
  613. .x-ie7 .x-btn-disabled .x-btn-icon,
  614. .x-ie8 .x-btn-disabled .x-btn-icon {
  615. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  616. opacity: 0.6; }
  617. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  618. .x-btn-icon-text-left .x-btn-icon {
  619. background-position: left center; }
  620. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  621. .x-btn-icon-text-right .x-btn-icon {
  622. background-position: right center; }
  623. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  624. .x-btn-icon-text-top .x-btn-icon {
  625. background-position: center top; }
  626. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  627. .x-btn-icon-text-bottom .x-btn-icon {
  628. background-position: center bottom; }
  629. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  630. .x-btn button, .x-btn a {
  631. position: relative; }
  632. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  633. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  634. position: absolute;
  635. background-repeat: no-repeat; }
  636. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  637. .x-btn-arrow-right {
  638. background: transparent no-repeat right center;
  639. padding-right: 12px; }
  640. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  641. .x-btn-arrow-right .x-btn-inner {
  642. padding-right: 0 !important; }
  643. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  644. .x-toolbar .x-btn-arrow-right {
  645. padding-right: 12px; }
  646. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  647. .x-btn-arrow-bottom {
  648. background: transparent no-repeat center bottom;
  649. padding-bottom: 12px; }
  650. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  651. .x-btn-arrow {
  652. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  653. display: block; }
  654. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  655. .x-btn-split-right,
  656. .x-btn-over .x-btn-split-right {
  657. background: transparent no-repeat right center;
  658. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  659. padding-right: 14px !important; }
  660. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  661. .x-btn-split-bottom,
  662. .x-btn-over .x-btn-split-bottom {
  663. background: transparent no-repeat center bottom;
  664. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  665. padding-bottom: 14px; }
  666. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  667. .x-toolbar .x-btn-split-right {
  668. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  669. padding-right: 12px !important; }
  670. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  671. .x-toolbar .x-btn-split-bottom {
  672. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  673. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  674. .x-btn-split {
  675. display: block; }
  676. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  677. .x-item-disabled,
  678. .x-item-disabled * {
  679. cursor: default; }
  680. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  681. .x-cycle-fixed-width .x-btn-inner {
  682. text-align: inherit; }
  683. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  684. .x-btn-over .x-btn-split-right {
  685. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  686. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  687. .x-btn-over .x-btn-split-bottom {
  688. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  689. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  690. .x-btn-default-small {
  691. border-color: #d1d1d1; }
  692. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  693. .x-btn-default-small {
  694. -moz-border-radius: 3px;
  695. -webkit-border-radius: 3px;
  696. -o-border-radius: 3px;
  697. -ms-border-radius: 3px;
  698. -khtml-border-radius: 3px;
  699. border-radius: 3px;
  700. padding: 2px 2px 2px 2px;
  701. border-width: 1px;
  702. border-style: solid;
  703. background-color: white; }
  704. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  705. .x-nlg .x-btn-default-small-mc {
  706. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  707. background-color: white; }
  708. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  709. .x-btn-default-small .x-btn-inner {
  710. font-size: 11px;
  711. font-weight: normal;
  712. font-family: tahoma, arial, verdana, sans-serif;
  713. color: #333333;
  714. background-repeat: no-repeat;
  715. padding: 0 4px; }
  716. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  717. .x-btn-default-small-icon button,
  718. .x-btn-default-small-icon a,
  719. .x-btn-default-small-icon .x-btn-inner,
  720. .x-btn-default-small-noicon button,
  721. .x-btn-default-small-noicon a,
  722. .x-btn-default-small-noicon .x-btn-inner {
  723. height: 16px;
  724. line-height: 16px; }
  725. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  726. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  727. padding: 0; }
  728. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  729. .x-btn-default-small-icon .x-btn-inner {
  730. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  731. width: 16px;
  732. padding: 0; }
  733. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  734. .x-btn-default-small-icon .x-btn-icon {
  735. width: 16px;
  736. height: 16px;
  737. top: 0;
  738. left: 0;
  739. bottom: 0;
  740. right: 0; }
  741. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  742. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  743. height: 16px; }
  744. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  745. .x-btn-default-small-icon-text-left .x-btn-inner {
  746. height: 16px;
  747. line-height: 16px;
  748. padding-left: 20px; }
  749. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  750. .x-btn-default-small-icon-text-left .x-btn-icon {
  751. width: 16px;
  752. height: auto;
  753. top: 0;
  754. left: 0;
  755. bottom: 0;
  756. right: auto; }
  757. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  758. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  759. height: 16px; }
  760. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  761. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  762. height: 16px; }
  763. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  764. .x-btn-default-small-icon-text-right .x-btn-inner {
  765. height: 16px;
  766. line-height: 16px;
  767. padding-right: 20px !important; }
  768. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  769. .x-btn-default-small-icon-text-right .x-btn-icon {
  770. width: 16px;
  771. height: auto;
  772. top: 0;
  773. left: auto;
  774. bottom: 0;
  775. right: 0; }
  776. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  777. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  778. height: 16px; }
  779. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  780. .x-btn-default-small-icon-text-top .x-btn-inner {
  781. padding-top: 20px; }
  782. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  783. .x-btn-default-small-icon-text-top .x-btn-icon {
  784. width: auto;
  785. height: 16px;
  786. top: 0;
  787. left: 0;
  788. bottom: auto;
  789. right: 0; }
  790. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  791. .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 {
  792. width: 16px; }
  793. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  794. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  795. padding-bottom: 20px; }
  796. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  797. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  798. width: auto;
  799. height: 16px;
  800. top: auto;
  801. left: 0;
  802. bottom: 0;
  803. right: 0; }
  804. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  805. .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 {
  806. width: 16px; }
  807. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  808. .x-btn-default-small-over {
  809. border-color: #b0ccf2;
  810. background-image: none;
  811. background-color: #e4f3ff;
  812. 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));
  813. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  814. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  815. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  816. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  817. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  818. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  819. .x-btn-default-small-focus {
  820. border-color: #b0ccf2;
  821. background-image: none;
  822. background-color: #e4f3ff;
  823. 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));
  824. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  825. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  826. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  827. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  828. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  829. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  830. .x-btn-default-small-menu-active,
  831. .x-btn-default-small-pressed {
  832. border-color: #9ebae1;
  833. background-image: none;
  834. background-color: #b6cbe4;
  835. 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));
  836. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  837. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  838. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  839. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  840. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  841. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  842. .x-btn-default-small-disabled {
  843. border-color: #e1e1e1;
  844. background-image: none;
  845. background-color: #f7f7f7;
  846. 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));
  847. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  848. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  849. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  850. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  851. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  852. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  853. .x-btn-default-small-disabled .x-btn-inner {
  854. color: #333333 !important; }
  855. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  856. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  857. color: #595959 !important; }
  858. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  859. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  860. color: #8c8c8c !important; }
  861. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  862. .x-nlg .x-btn-default-small {
  863. background-repeat: repeat-x;
  864. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  865. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  866. .x-nlg .x-btn-default-small-over {
  867. background-repeat: repeat-x;
  868. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  869. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  870. .x-nlg .x-btn-default-small-focus {
  871. background-repeat: repeat-x;
  872. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  873. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  874. .x-nlg .x-btn-default-small-menu-active,
  875. .x-nlg .x-btn-default-small-pressed {
  876. background-repeat: repeat-x;
  877. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  878. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  879. .x-nlg .x-btn-default-small-disabled {
  880. background-repeat: repeat-x;
  881. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  882. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  883. .x-btn-default-medium {
  884. border-color: #d1d1d1; }
  885. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  886. .x-btn-default-medium {
  887. -moz-border-radius: 3px;
  888. -webkit-border-radius: 3px;
  889. -o-border-radius: 3px;
  890. -ms-border-radius: 3px;
  891. -khtml-border-radius: 3px;
  892. border-radius: 3px;
  893. padding: 3px 3px 3px 3px;
  894. border-width: 1px;
  895. border-style: solid;
  896. background-color: white; }
  897. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  898. .x-nlg .x-btn-default-medium-mc {
  899. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  900. background-color: white; }
  901. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  902. .x-btn-default-medium .x-btn-inner {
  903. font-size: 11px;
  904. font-weight: normal;
  905. font-family: tahoma, arial, verdana, sans-serif;
  906. color: #333333;
  907. background-repeat: no-repeat;
  908. padding: 0 3px; }
  909. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  910. .x-btn-default-medium-icon button,
  911. .x-btn-default-medium-icon a,
  912. .x-btn-default-medium-icon .x-btn-inner,
  913. .x-btn-default-medium-noicon button,
  914. .x-btn-default-medium-noicon a,
  915. .x-btn-default-medium-noicon .x-btn-inner {
  916. height: 24px;
  917. line-height: 24px; }
  918. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  919. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  920. padding: 0; }
  921. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  922. .x-btn-default-medium-icon .x-btn-inner {
  923. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  924. width: 24px;
  925. padding: 0; }
  926. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  927. .x-btn-default-medium-icon .x-btn-icon {
  928. width: 24px;
  929. height: 24px;
  930. top: 0;
  931. left: 0;
  932. bottom: 0;
  933. right: 0; }
  934. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  935. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  936. height: 24px; }
  937. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  938. .x-btn-default-medium-icon-text-left .x-btn-inner {
  939. height: 24px;
  940. line-height: 24px;
  941. padding-left: 28px; }
  942. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  943. .x-btn-default-medium-icon-text-left .x-btn-icon {
  944. width: 24px;
  945. height: auto;
  946. top: 0;
  947. left: 0;
  948. bottom: 0;
  949. right: auto; }
  950. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  951. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  952. height: 24px; }
  953. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  954. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  955. height: 24px; }
  956. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  957. .x-btn-default-medium-icon-text-right .x-btn-inner {
  958. height: 24px;
  959. line-height: 24px;
  960. padding-right: 28px !important; }
  961. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  962. .x-btn-default-medium-icon-text-right .x-btn-icon {
  963. width: 24px;
  964. height: auto;
  965. top: 0;
  966. left: auto;
  967. bottom: 0;
  968. right: 0; }
  969. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  970. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  971. height: 24px; }
  972. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  973. .x-btn-default-medium-icon-text-top .x-btn-inner {
  974. padding-top: 28px; }
  975. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  976. .x-btn-default-medium-icon-text-top .x-btn-icon {
  977. width: auto;
  978. height: 24px;
  979. top: 0;
  980. left: 0;
  981. bottom: auto;
  982. right: 0; }
  983. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  984. .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 {
  985. width: 24px; }
  986. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  987. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  988. padding-bottom: 28px; }
  989. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  990. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  991. width: auto;
  992. height: 24px;
  993. top: auto;
  994. left: 0;
  995. bottom: 0;
  996. right: 0; }
  997. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  998. .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 {
  999. width: 24px; }
  1000. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1001. .x-btn-default-medium-over {
  1002. border-color: #b0ccf2;
  1003. background-image: none;
  1004. background-color: #e4f3ff;
  1005. 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));
  1006. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1007. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1008. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1009. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1010. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1011. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1012. .x-btn-default-medium-focus {
  1013. border-color: #b0ccf2;
  1014. background-image: none;
  1015. background-color: #e4f3ff;
  1016. 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));
  1017. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1018. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1019. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1020. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1021. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1022. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1023. .x-btn-default-medium-menu-active,
  1024. .x-btn-default-medium-pressed {
  1025. border-color: #9ebae1;
  1026. background-image: none;
  1027. background-color: #b6cbe4;
  1028. 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));
  1029. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1030. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1031. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1032. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1033. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1034. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1035. .x-btn-default-medium-disabled {
  1036. border-color: #e1e1e1;
  1037. background-image: none;
  1038. background-color: #f7f7f7;
  1039. 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));
  1040. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1041. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1042. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1043. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1044. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1045. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1046. .x-btn-default-medium-disabled .x-btn-inner {
  1047. color: #333333 !important; }
  1048. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1049. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1050. color: #595959 !important; }
  1051. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1052. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1053. color: #8c8c8c !important; }
  1054. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1055. .x-nlg .x-btn-default-medium {
  1056. background-repeat: repeat-x;
  1057. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1058. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1059. .x-nlg .x-btn-default-medium-over {
  1060. background-repeat: repeat-x;
  1061. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1062. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1063. .x-nlg .x-btn-default-medium-focus {
  1064. background-repeat: repeat-x;
  1065. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1066. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1067. .x-nlg .x-btn-default-medium-menu-active,
  1068. .x-nlg .x-btn-default-medium-pressed {
  1069. background-repeat: repeat-x;
  1070. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1071. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1072. .x-nlg .x-btn-default-medium-disabled {
  1073. background-repeat: repeat-x;
  1074. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1075. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1076. .x-btn-default-large {
  1077. border-color: #d1d1d1; }
  1078. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1079. .x-btn-default-large {
  1080. -moz-border-radius: 3px;
  1081. -webkit-border-radius: 3px;
  1082. -o-border-radius: 3px;
  1083. -ms-border-radius: 3px;
  1084. -khtml-border-radius: 3px;
  1085. border-radius: 3px;
  1086. padding: 3px 3px 3px 3px;
  1087. border-width: 1px;
  1088. border-style: solid;
  1089. background-color: white; }
  1090. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1091. .x-nlg .x-btn-default-large-mc {
  1092. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1093. background-color: white; }
  1094. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1095. .x-btn-default-large .x-btn-inner {
  1096. font-size: 11px;
  1097. font-weight: normal;
  1098. font-family: tahoma, arial, verdana, sans-serif;
  1099. color: #333333;
  1100. background-repeat: no-repeat;
  1101. padding: 0 3px; }
  1102. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1103. .x-btn-default-large-icon button,
  1104. .x-btn-default-large-icon a,
  1105. .x-btn-default-large-icon .x-btn-inner,
  1106. .x-btn-default-large-noicon button,
  1107. .x-btn-default-large-noicon a,
  1108. .x-btn-default-large-noicon .x-btn-inner {
  1109. height: 32px;
  1110. line-height: 32px; }
  1111. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1112. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1113. padding: 0; }
  1114. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1115. .x-btn-default-large-icon .x-btn-inner {
  1116. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1117. width: 32px;
  1118. padding: 0; }
  1119. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1120. .x-btn-default-large-icon .x-btn-icon {
  1121. width: 32px;
  1122. height: 32px;
  1123. top: 0;
  1124. left: 0;
  1125. bottom: 0;
  1126. right: 0; }
  1127. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1128. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1129. height: 32px; }
  1130. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1131. .x-btn-default-large-icon-text-left .x-btn-inner {
  1132. height: 32px;
  1133. line-height: 32px;
  1134. padding-left: 36px; }
  1135. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1136. .x-btn-default-large-icon-text-left .x-btn-icon {
  1137. width: 32px;
  1138. height: auto;
  1139. top: 0;
  1140. left: 0;
  1141. bottom: 0;
  1142. right: auto; }
  1143. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1144. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1145. height: 32px; }
  1146. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1147. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1148. height: 32px; }
  1149. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1150. .x-btn-default-large-icon-text-right .x-btn-inner {
  1151. height: 32px;
  1152. line-height: 32px;
  1153. padding-right: 36px !important; }
  1154. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1155. .x-btn-default-large-icon-text-right .x-btn-icon {
  1156. width: 32px;
  1157. height: auto;
  1158. top: 0;
  1159. left: auto;
  1160. bottom: 0;
  1161. right: 0; }
  1162. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1163. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1164. height: 32px; }
  1165. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1166. .x-btn-default-large-icon-text-top .x-btn-inner {
  1167. padding-top: 36px; }
  1168. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1169. .x-btn-default-large-icon-text-top .x-btn-icon {
  1170. width: auto;
  1171. height: 32px;
  1172. top: 0;
  1173. left: 0;
  1174. bottom: auto;
  1175. right: 0; }
  1176. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1177. .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 {
  1178. width: 32px; }
  1179. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1180. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1181. padding-bottom: 36px; }
  1182. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1183. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1184. width: auto;
  1185. height: 32px;
  1186. top: auto;
  1187. left: 0;
  1188. bottom: 0;
  1189. right: 0; }
  1190. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1191. .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 {
  1192. width: 32px; }
  1193. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1194. .x-btn-default-large-over {
  1195. border-color: #b0ccf2;
  1196. background-image: none;
  1197. background-color: #e4f3ff;
  1198. 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));
  1199. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1200. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1201. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1202. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1203. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1204. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1205. .x-btn-default-large-focus {
  1206. border-color: #b0ccf2;
  1207. background-image: none;
  1208. background-color: #e4f3ff;
  1209. 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));
  1210. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1211. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1212. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1213. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1214. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1215. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1216. .x-btn-default-large-menu-active,
  1217. .x-btn-default-large-pressed {
  1218. border-color: #9ebae1;
  1219. background-image: none;
  1220. background-color: #b6cbe4;
  1221. 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));
  1222. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1223. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1224. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1225. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1226. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1227. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1228. .x-btn-default-large-disabled {
  1229. border-color: #e1e1e1;
  1230. background-image: none;
  1231. background-color: #f7f7f7;
  1232. 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));
  1233. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1234. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1235. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1236. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1237. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1238. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1239. .x-btn-default-large-disabled .x-btn-inner {
  1240. color: #333333 !important; }
  1241. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1242. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1243. color: #595959 !important; }
  1244. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1245. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1246. color: #8c8c8c !important; }
  1247. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1248. .x-nlg .x-btn-default-large {
  1249. background-repeat: repeat-x;
  1250. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1251. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1252. .x-nlg .x-btn-default-large-over {
  1253. background-repeat: repeat-x;
  1254. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1255. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1256. .x-nlg .x-btn-default-large-focus {
  1257. background-repeat: repeat-x;
  1258. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1259. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1260. .x-nlg .x-btn-default-large-menu-active,
  1261. .x-nlg .x-btn-default-large-pressed {
  1262. background-repeat: repeat-x;
  1263. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1264. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1265. .x-nlg .x-btn-default-large-disabled {
  1266. background-repeat: repeat-x;
  1267. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1268. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1269. .x-btn-default-toolbar-small {
  1270. border-color: transparent; }
  1271. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1272. .x-btn-default-toolbar-small {
  1273. -moz-border-radius: 3px;
  1274. -webkit-border-radius: 3px;
  1275. -o-border-radius: 3px;
  1276. -ms-border-radius: 3px;
  1277. -khtml-border-radius: 3px;
  1278. border-radius: 3px;
  1279. padding: 2px 2px 2px 2px;
  1280. border-width: 1px;
  1281. border-style: solid;
  1282. background-color: transparent; }
  1283. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1284. .x-nlg .x-btn-default-toolbar-small-mc {
  1285. background-color: transparent; }
  1286. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1287. .x-btn-default-toolbar-small .x-btn-inner {
  1288. font-size: 11px;
  1289. font-weight: normal;
  1290. font-family: tahoma, arial, verdana, sans-serif;
  1291. color: #333333;
  1292. background-repeat: no-repeat;
  1293. padding: 0 4px; }
  1294. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1295. .x-btn-default-toolbar-small-icon button,
  1296. .x-btn-default-toolbar-small-icon a,
  1297. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1298. .x-btn-default-toolbar-small-noicon button,
  1299. .x-btn-default-toolbar-small-noicon a,
  1300. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1301. height: 16px;
  1302. line-height: 16px; }
  1303. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1304. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1305. padding: 0; }
  1306. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1307. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1308. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1309. width: 16px;
  1310. padding: 0; }
  1311. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1312. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1313. width: 16px;
  1314. height: 16px;
  1315. top: 0;
  1316. left: 0;
  1317. bottom: 0;
  1318. right: 0; }
  1319. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1320. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1321. height: 16px; }
  1322. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1323. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1324. height: 16px;
  1325. line-height: 16px;
  1326. padding-left: 20px; }
  1327. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1328. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1329. width: 16px;
  1330. height: auto;
  1331. top: 0;
  1332. left: 0;
  1333. bottom: 0;
  1334. right: auto; }
  1335. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1336. .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 {
  1337. height: 16px; }
  1338. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1339. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1340. height: 16px; }
  1341. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1342. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1343. height: 16px;
  1344. line-height: 16px;
  1345. padding-right: 20px !important; }
  1346. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1347. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1348. width: 16px;
  1349. height: auto;
  1350. top: 0;
  1351. left: auto;
  1352. bottom: 0;
  1353. right: 0; }
  1354. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1355. .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 {
  1356. height: 16px; }
  1357. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1358. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1359. padding-top: 20px; }
  1360. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1361. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1362. width: auto;
  1363. height: 16px;
  1364. top: 0;
  1365. left: 0;
  1366. bottom: auto;
  1367. right: 0; }
  1368. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1369. .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 {
  1370. width: 16px; }
  1371. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1372. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1373. padding-bottom: 20px; }
  1374. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1375. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1376. width: auto;
  1377. height: 16px;
  1378. top: auto;
  1379. left: 0;
  1380. bottom: 0;
  1381. right: 0; }
  1382. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1383. .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 {
  1384. width: 16px; }
  1385. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1386. .x-btn-default-toolbar-small-over {
  1387. border-color: #81a4d0;
  1388. background-image: none;
  1389. background-color: #dbeeff;
  1390. 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));
  1391. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1392. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1393. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1394. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1395. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1396. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1397. .x-btn-default-toolbar-small-focus {
  1398. border-color: #81a4d0;
  1399. background-image: none;
  1400. background-color: #dbeeff;
  1401. 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));
  1402. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1403. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1404. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1405. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1406. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1407. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1408. .x-btn-default-toolbar-small-menu-active,
  1409. .x-btn-default-toolbar-small-pressed {
  1410. border-color: #7a9ac4;
  1411. background-image: none;
  1412. background-color: #bccfe5;
  1413. 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));
  1414. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1415. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1416. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1417. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1418. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1419. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1420. .x-btn-default-toolbar-small-disabled {
  1421. background-image: none;
  1422. background-color: transparent; }
  1423. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1424. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1425. color: #333333 !important; }
  1426. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1427. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1428. color: #595959 !important; }
  1429. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1430. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1431. color: #8c8c8c !important; }
  1432. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1433. .x-nlg .x-btn-default-toolbar-small-over {
  1434. background-repeat: repeat-x;
  1435. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1436. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1437. .x-nlg .x-btn-default-toolbar-small-focus {
  1438. background-repeat: repeat-x;
  1439. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  1440. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1441. .x-nlg .x-btn-default-toolbar-small-menu-active,
  1442. .x-nlg .x-btn-default-toolbar-small-pressed {
  1443. background-repeat: repeat-x;
  1444. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  1445. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1446. .x-btn-default-toolbar-medium {
  1447. border-color: transparent; }
  1448. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1449. .x-btn-default-toolbar-medium {
  1450. -moz-border-radius: 3px;
  1451. -webkit-border-radius: 3px;
  1452. -o-border-radius: 3px;
  1453. -ms-border-radius: 3px;
  1454. -khtml-border-radius: 3px;
  1455. border-radius: 3px;
  1456. padding: 3px 3px 3px 3px;
  1457. border-width: 1px;
  1458. border-style: solid;
  1459. background-color: transparent; }
  1460. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1461. .x-nlg .x-btn-default-toolbar-medium-mc {
  1462. background-color: transparent; }
  1463. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1464. .x-btn-default-toolbar-medium .x-btn-inner {
  1465. font-size: 11px;
  1466. font-weight: normal;
  1467. font-family: tahoma, arial, verdana, sans-serif;
  1468. color: #333333;
  1469. background-repeat: no-repeat;
  1470. padding: 0 3px; }
  1471. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1472. .x-btn-default-toolbar-medium-icon button,
  1473. .x-btn-default-toolbar-medium-icon a,
  1474. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  1475. .x-btn-default-toolbar-medium-noicon button,
  1476. .x-btn-default-toolbar-medium-noicon a,
  1477. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  1478. height: 24px;
  1479. line-height: 24px; }
  1480. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1481. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  1482. padding: 0; }
  1483. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1484. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  1485. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1486. width: 24px;
  1487. padding: 0; }
  1488. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1489. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  1490. width: 24px;
  1491. height: 24px;
  1492. top: 0;
  1493. left: 0;
  1494. bottom: 0;
  1495. right: 0; }
  1496. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1497. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  1498. height: 24px; }
  1499. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1500. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  1501. height: 24px;
  1502. line-height: 24px;
  1503. padding-left: 28px; }
  1504. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1505. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  1506. width: 24px;
  1507. height: auto;
  1508. top: 0;
  1509. left: 0;
  1510. bottom: 0;
  1511. right: auto; }
  1512. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1513. .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 {
  1514. height: 24px; }
  1515. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1516. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  1517. height: 24px; }
  1518. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1519. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  1520. height: 24px;
  1521. line-height: 24px;
  1522. padding-right: 28px !important; }
  1523. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1524. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  1525. width: 24px;
  1526. height: auto;
  1527. top: 0;
  1528. left: auto;
  1529. bottom: 0;
  1530. right: 0; }
  1531. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1532. .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 {
  1533. height: 24px; }
  1534. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1535. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  1536. padding-top: 28px; }
  1537. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1538. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  1539. width: auto;
  1540. height: 24px;
  1541. top: 0;
  1542. left: 0;
  1543. bottom: auto;
  1544. right: 0; }
  1545. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1546. .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 {
  1547. width: 24px; }
  1548. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1549. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  1550. padding-bottom: 28px; }
  1551. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1552. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  1553. width: auto;
  1554. height: 24px;
  1555. top: auto;
  1556. left: 0;
  1557. bottom: 0;
  1558. right: 0; }
  1559. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1560. .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 {
  1561. width: 24px; }
  1562. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1563. .x-btn-default-toolbar-medium-over {
  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 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1574. .x-btn-default-toolbar-medium-focus {
  1575. border-color: #81a4d0;
  1576. background-image: none;
  1577. background-color: #dbeeff;
  1578. 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));
  1579. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1580. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1581. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1582. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1583. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1584. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1585. .x-btn-default-toolbar-medium-menu-active,
  1586. .x-btn-default-toolbar-medium-pressed {
  1587. border-color: #7a9ac4;
  1588. background-image: none;
  1589. background-color: #bccfe5;
  1590. 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));
  1591. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1592. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1593. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1594. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1595. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1596. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1597. .x-btn-default-toolbar-medium-disabled {
  1598. background-image: none;
  1599. background-color: transparent; }
  1600. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1601. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1602. color: #333333 !important; }
  1603. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1604. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1605. color: #595959 !important; }
  1606. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1607. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  1608. color: #8c8c8c !important; }
  1609. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1610. .x-nlg .x-btn-default-toolbar-medium-over {
  1611. background-repeat: repeat-x;
  1612. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  1613. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1614. .x-nlg .x-btn-default-toolbar-medium-focus {
  1615. background-repeat: repeat-x;
  1616. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  1617. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1618. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  1619. .x-nlg .x-btn-default-toolbar-medium-pressed {
  1620. background-repeat: repeat-x;
  1621. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  1622. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1623. .x-btn-default-toolbar-large {
  1624. border-color: transparent; }
  1625. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1626. .x-btn-default-toolbar-large {
  1627. -moz-border-radius: 3px;
  1628. -webkit-border-radius: 3px;
  1629. -o-border-radius: 3px;
  1630. -ms-border-radius: 3px;
  1631. -khtml-border-radius: 3px;
  1632. border-radius: 3px;
  1633. padding: 3px 3px 3px 3px;
  1634. border-width: 1px;
  1635. border-style: solid;
  1636. background-color: transparent; }
  1637. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1638. .x-nlg .x-btn-default-toolbar-large-mc {
  1639. background-color: transparent; }
  1640. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1641. .x-btn-default-toolbar-large .x-btn-inner {
  1642. font-size: 11px;
  1643. font-weight: normal;
  1644. font-family: tahoma, arial, verdana, sans-serif;
  1645. color: #333333;
  1646. background-repeat: no-repeat;
  1647. padding: 0 3px; }
  1648. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1649. .x-btn-default-toolbar-large-icon button,
  1650. .x-btn-default-toolbar-large-icon a,
  1651. .x-btn-default-toolbar-large-icon .x-btn-inner,
  1652. .x-btn-default-toolbar-large-noicon button,
  1653. .x-btn-default-toolbar-large-noicon a,
  1654. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  1655. height: 32px;
  1656. line-height: 32px; }
  1657. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1658. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  1659. padding: 0; }
  1660. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1661. .x-btn-default-toolbar-large-icon .x-btn-inner {
  1662. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1663. width: 32px;
  1664. padding: 0; }
  1665. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1666. .x-btn-default-toolbar-large-icon .x-btn-icon {
  1667. width: 32px;
  1668. height: 32px;
  1669. top: 0;
  1670. left: 0;
  1671. bottom: 0;
  1672. right: 0; }
  1673. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1674. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  1675. height: 32px; }
  1676. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1677. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  1678. height: 32px;
  1679. line-height: 32px;
  1680. padding-left: 36px; }
  1681. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1682. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  1683. width: 32px;
  1684. height: auto;
  1685. top: 0;
  1686. left: 0;
  1687. bottom: 0;
  1688. right: auto; }
  1689. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1690. .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 {
  1691. height: 32px; }
  1692. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1693. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  1694. height: 32px; }
  1695. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1696. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  1697. height: 32px;
  1698. line-height: 32px;
  1699. padding-right: 36px !important; }
  1700. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1701. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  1702. width: 32px;
  1703. height: auto;
  1704. top: 0;
  1705. left: auto;
  1706. bottom: 0;
  1707. right: 0; }
  1708. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1709. .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 {
  1710. height: 32px; }
  1711. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1712. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  1713. padding-top: 36px; }
  1714. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1715. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  1716. width: auto;
  1717. height: 32px;
  1718. top: 0;
  1719. left: 0;
  1720. bottom: auto;
  1721. right: 0; }
  1722. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1723. .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 {
  1724. width: 32px; }
  1725. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1726. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  1727. padding-bottom: 36px; }
  1728. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1729. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  1730. width: auto;
  1731. height: 32px;
  1732. top: auto;
  1733. left: 0;
  1734. bottom: 0;
  1735. right: 0; }
  1736. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1737. .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 {
  1738. width: 32px; }
  1739. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1740. .x-btn-default-toolbar-large-over {
  1741. border-color: #81a4d0;
  1742. background-image: none;
  1743. background-color: #dbeeff;
  1744. 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));
  1745. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1746. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1747. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1748. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1749. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1750. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1751. .x-btn-default-toolbar-large-focus {
  1752. border-color: #81a4d0;
  1753. background-image: none;
  1754. background-color: #dbeeff;
  1755. 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));
  1756. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1757. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1758. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1759. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1760. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1761. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1762. .x-btn-default-toolbar-large-menu-active,
  1763. .x-btn-default-toolbar-large-pressed {
  1764. border-color: #7a9ac4;
  1765. background-image: none;
  1766. background-color: #bccfe5;
  1767. 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));
  1768. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1769. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1770. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1771. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1772. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1773. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1774. .x-btn-default-toolbar-large-disabled {
  1775. background-image: none;
  1776. background-color: transparent; }
  1777. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1778. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1779. color: #333333 !important; }
  1780. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1781. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1782. color: #595959 !important; }
  1783. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1784. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  1785. color: #8c8c8c !important; }
  1786. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1787. .x-nlg .x-btn-default-toolbar-large-over {
  1788. background-repeat: repeat-x;
  1789. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  1790. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1791. .x-nlg .x-btn-default-toolbar-large-focus {
  1792. background-repeat: repeat-x;
  1793. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  1794. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1795. .x-nlg .x-btn-default-toolbar-large-menu-active,
  1796. .x-nlg .x-btn-default-toolbar-large-pressed {
  1797. background-repeat: repeat-x;
  1798. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  1799. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1800. .x-btn-default-toolbar-small-disabled,
  1801. .x-btn-default-toolbar-medium-disabled,
  1802. .x-btn-default-toolbar-large-disabled {
  1803. border-color: transparent;
  1804. background-image: none;
  1805. background: transparent; }
  1806. /* line 2, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1807. .x-btn-group {
  1808. position: relative;
  1809. overflow: hidden; }
  1810. /* line 7, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1811. .x-btn-group-body {
  1812. position: relative;
  1813. zoom: 1;
  1814. padding: 0 1px; }
  1815. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1816. .x-btn-group-body .x-table-layout-cell {
  1817. vertical-align: top; }
  1818. /* line 16, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1819. .x-btn-group-header-text {
  1820. white-space: nowrap; }
  1821. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1822. .x-btn-group-default-framed {
  1823. -moz-border-radius: 2px;
  1824. -webkit-border-radius: 2px;
  1825. -o-border-radius: 2px;
  1826. -ms-border-radius: 2px;
  1827. -khtml-border-radius: 2px;
  1828. border-radius: 2px;
  1829. padding: 1px 1px 1px 1px;
  1830. border-width: 1px;
  1831. border-style: solid;
  1832. background-color: #d0def0; }
  1833. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1834. .x-nlg .x-btn-group-default-framed-mc {
  1835. background-color: #d0def0; }
  1836. /* line 56, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1837. .x-btn-group-default-framed {
  1838. border-color: #b7c8d7;
  1839. -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;
  1840. -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;
  1841. -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  1842. 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; }
  1843. /* line 64, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1844. .x-btn-group-header-default-framed {
  1845. margin: 2px 2px 0 2px; }
  1846. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1847. .x-btn-group-header-body-default-framed {
  1848. padding: 1px 0;
  1849. background: #c2d8f0;
  1850. -moz-border-radius-topleft: 2px;
  1851. -webkit-border-top-left-radius: 2px;
  1852. -o-border-top-left-radius: 2px;
  1853. -ms-border-top-left-radius: 2px;
  1854. -khtml-border-top-left-radius: 2px;
  1855. border-top-left-radius: 2px;
  1856. -moz-border-radius-topright: 2px;
  1857. -webkit-border-top-right-radius: 2px;
  1858. -o-border-top-right-radius: 2px;
  1859. -ms-border-top-right-radius: 2px;
  1860. -khtml-border-top-right-radius: 2px;
  1861. border-top-right-radius: 2px; }
  1862. /* line 76, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  1863. .x-btn-group-header-text-default-framed {
  1864. font: normal 11px tahoma, arial, verdana, sans-serif;
  1865. color: #3e6aaa; }
  1866. /* line 2, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1867. .x-datepicker {
  1868. border: 1px solid #1b376c;
  1869. background-color: white;
  1870. position: relative; }
  1871. /* line 8, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1872. .x-datepicker a {
  1873. -moz-outline: 0 none;
  1874. outline: 0 none;
  1875. color: #15428b;
  1876. text-decoration: none;
  1877. border-width: 0; }
  1878. /* line 21, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1879. .x-datepicker-inner,
  1880. .x-datepicker-inner td,
  1881. .x-datepicker-inner th {
  1882. border-collapse: separate; }
  1883. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1884. .x-datepicker-header {
  1885. position: relative;
  1886. height: 26px;
  1887. background-image: none;
  1888. background-color: #23427c;
  1889. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  1890. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  1891. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  1892. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  1893. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  1894. background-image: linear-gradient(top, #264888, #1f3a6c); }
  1895. /* line 38, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1896. .x-datepicker-prev,
  1897. .x-datepicker-next {
  1898. position: absolute;
  1899. top: 5px;
  1900. width: 18px; }
  1901. /* line 44, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1902. .x-datepicker-prev a,
  1903. .x-datepicker-next a {
  1904. display: block;
  1905. width: 16px;
  1906. height: 16px;
  1907. background-position: top;
  1908. background-repeat: no-repeat;
  1909. cursor: pointer;
  1910. text-decoration: none !important;
  1911. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  1912. opacity: 0.7; }
  1913. /* line 59, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1914. .x-datepicker-prev a:hover,
  1915. .x-datepicker-next a:hover {
  1916. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  1917. opacity: 1; }
  1918. /* line 65, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1919. .x-datepicker-next {
  1920. right: 5px; }
  1921. /* line 68, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1922. .x-datepicker-next a {
  1923. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  1924. /* line 73, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1925. .x-datepicker-prev {
  1926. left: 5px; }
  1927. /* line 76, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1928. .x-datepicker-prev a {
  1929. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  1930. /* line 82, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1931. .x-item-disabled .x-datepicker-prev a:hover,
  1932. .x-item-disabled .x-datepicker-next a:hover {
  1933. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  1934. opacity: 0.6; }
  1935. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1936. .x-datepicker-month {
  1937. padding-top: 3px; }
  1938. /* line 99, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1939. .x-datepicker-month .x-btn,
  1940. .x-datepicker-month button,
  1941. .x-datepicker-month .x-btn-tc,
  1942. .x-datepicker-month .x-btn-tl,
  1943. .x-datepicker-month .x-btn-tr,
  1944. .x-datepicker-month .x-btn-mc,
  1945. .x-datepicker-month .x-btn-ml,
  1946. .x-datepicker-month .x-btn-mr,
  1947. .x-datepicker-month .x-btn-bc,
  1948. .x-datepicker-month .x-btn-bl,
  1949. .x-datepicker-month .x-btn-br {
  1950. background: transparent !important;
  1951. border-width: 0 !important; }
  1952. /* line 104, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1953. .x-datepicker-month span {
  1954. color: #fff !important; }
  1955. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1956. .x-datepicker-month .x-btn-split-right {
  1957. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  1958. padding-right: 12px; }
  1959. /* line 114, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1960. .x-datepicker-next {
  1961. text-align: right; }
  1962. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1963. .x-datepicker-month {
  1964. text-align: center; }
  1965. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1966. .x-datepicker-month button {
  1967. color: white !important; }
  1968. /* line 128, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1969. table.x-datepicker-inner {
  1970. width: 100%;
  1971. table-layout: fixed; }
  1972. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1973. table.x-datepicker-inner th {
  1974. width: 25px;
  1975. height: 19px;
  1976. padding: 0;
  1977. color: #233d6d;
  1978. font: normal 10px tahoma, arial, verdana, sans-serif;
  1979. text-align: right;
  1980. border-bottom: 1px solid #b2d1f5;
  1981. border-collapse: separate;
  1982. background-image: none;
  1983. background-color: #dfecfb;
  1984. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  1985. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  1986. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  1987. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  1988. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  1989. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  1990. cursor: default; }
  1991. /* line 153, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1992. table.x-datepicker-inner th span {
  1993. display: block;
  1994. padding-right: 7px; }
  1995. /* line 159, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1996. table.x-datepicker-inner tr {
  1997. height: 20px; }
  1998. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  1999. table.x-datepicker-inner td {
  2000. border: 1px solid;
  2001. height: 17px;
  2002. border-color: white;
  2003. text-align: right;
  2004. padding: 0; }
  2005. /* line 171, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2006. table.x-datepicker-inner a {
  2007. padding-right: 4px;
  2008. display: block;
  2009. zoom: 1;
  2010. font: normal 11px tahoma, arial, verdana, sans-serif;
  2011. color: black;
  2012. text-decoration: none;
  2013. text-align: right; }
  2014. /* line 184, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2015. table.x-datepicker-inner .x-datepicker-active {
  2016. cursor: pointer;
  2017. color: black; }
  2018. /* line 190, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2019. table.x-datepicker-inner .x-datepicker-selected a {
  2020. background: repeat-x left top;
  2021. background-color: #dae5f3;
  2022. border: 1px solid #8db2e3; }
  2023. /* line 196, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2024. table.x-datepicker-inner .x-datepicker-selected span {
  2025. font-weight: bold; }
  2026. /* line 202, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2027. table.x-datepicker-inner .x-datepicker-today a {
  2028. border: 1px solid;
  2029. border-color: darkred; }
  2030. /* line 210, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2031. table.x-datepicker-inner .x-datepicker-prevday a,
  2032. table.x-datepicker-inner .x-datepicker-nextday a {
  2033. text-decoration: none !important;
  2034. color: #aaa; }
  2035. /* line 217, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2036. table.x-datepicker-inner a:hover,
  2037. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2038. text-decoration: none !important;
  2039. color: #000;
  2040. background-color: #ddecfe; }
  2041. /* line 225, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2042. table.x-datepicker-inner .x-datepicker-disabled a {
  2043. cursor: default;
  2044. background-color: #eee;
  2045. color: #bbb; }
  2046. /* line 233, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2047. .x-datepicker-footer,
  2048. .x-monthpicker-buttons {
  2049. position: relative;
  2050. border-top: 1px solid #b2d1f5;
  2051. background-image: none;
  2052. background-color: #dfecfb;
  2053. 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));
  2054. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2055. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2056. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2057. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2058. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2059. text-align: center; }
  2060. /* line 246, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2061. .x-datepicker-footer .x-btn,
  2062. .x-monthpicker-buttons .x-btn {
  2063. position: relative;
  2064. margin: 4px; }
  2065. /* line 252, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2066. .x-item-disabled .x-datepicker-inner a:hover {
  2067. background: none; }
  2068. /* line 257, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2069. .x-datepicker .x-monthpicker {
  2070. position: absolute;
  2071. left: 0;
  2072. top: 0; }
  2073. /* line 264, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2074. .x-monthpicker {
  2075. border: 1px solid #1b376c;
  2076. background-color: white; }
  2077. /* line 270, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2078. .x-monthpicker-months,
  2079. .x-monthpicker-years {
  2080. float: left;
  2081. height: 167px;
  2082. width: 88px; }
  2083. /* line 277, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2084. .x-monthpicker-item {
  2085. float: left;
  2086. margin: 4px 0 5px 0;
  2087. font: normal 11px tahoma, arial, verdana, sans-serif;
  2088. text-align: center;
  2089. vertical-align: middle;
  2090. height: 18px;
  2091. width: 43px;
  2092. border: 0 none; }
  2093. /* line 291, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2094. .x-monthpicker-item a {
  2095. display: block;
  2096. margin: 0 5px;
  2097. text-decoration: none;
  2098. color: #15428b;
  2099. border: 1px solid white;
  2100. line-height: 17px; }
  2101. /* line 304, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2102. .x-monthpicker-item a:hover {
  2103. background-color: #ddecfe; }
  2104. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2105. .x-monthpicker-item a.x-monthpicker-selected {
  2106. background-color: #dfecfb;
  2107. border: 1px solid #8db2e3; }
  2108. /* line 315, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2109. .x-monthpicker-months {
  2110. border-right: 1px solid #1b376c;
  2111. width: 87px; }
  2112. /* line 320, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2113. .x-monthpicker-years .x-monthpicker-item {
  2114. width: 44px; }
  2115. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2116. .x-monthpicker-yearnav {
  2117. height: 28px; }
  2118. /* line 327, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2119. .x-monthpicker-yearnav button {
  2120. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2121. height: 15px;
  2122. width: 15px;
  2123. padding: 0;
  2124. margin: 6px 12px 5px 15px;
  2125. border: 0;
  2126. outline: 0 none; }
  2127. /* line 335, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2128. .x-monthpicker-yearnav button::-moz-focus-inner {
  2129. border: 0;
  2130. padding: 0; }
  2131. /* line 342, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2132. .x-monthpicker-yearnav-next {
  2133. background-position: 0 -120px; }
  2134. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2135. .x-monthpicker-yearnav-next-over {
  2136. cursor: pointer;
  2137. cursor: hand;
  2138. background-position: -15px -120px; }
  2139. /* line 352, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2140. .x-monthpicker-yearnav-prev {
  2141. background-position: 0 -105px; }
  2142. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2143. .x-monthpicker-yearnav-prev-over {
  2144. cursor: pointer;
  2145. cursor: hand;
  2146. background-position: -15px -105px; }
  2147. /* line 363, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2148. .x-monthpicker-small .x-monthpicker-item {
  2149. margin: 2px 0 2px 0; }
  2150. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2151. .x-monthpicker-small .x-monthpicker-yearnav {
  2152. height: 23px; }
  2153. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2154. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  2155. height: 136px; }
  2156. /* line 403, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2157. .x-nlg .x-datepicker-header {
  2158. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  2159. background-repeat: repeat-x;
  2160. background-position: top left; }
  2161. /* line 412, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2162. .x-nlg .x-datepicker-footer,
  2163. .x-nlg .x-monthpicker-buttons {
  2164. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  2165. background-repeat: repeat-x;
  2166. background-position: top left; }
  2167. /* line 2, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2168. .x-color-picker {
  2169. width: 144px;
  2170. height: 90px;
  2171. cursor: pointer; }
  2172. /* line 8, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2173. .x-color-picker a {
  2174. border: 1px solid #fff;
  2175. float: left;
  2176. padding: 2px;
  2177. text-decoration: none;
  2178. -moz-outline: 0 none;
  2179. outline: 0 none;
  2180. cursor: pointer; }
  2181. /* line 24, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2182. .x-color-picker a:hover,
  2183. .x-color-picker a.x-color-picker-selected {
  2184. border-color: #8bb8f3;
  2185. background-color: #deecfd; }
  2186. /* line 29, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2187. .x-color-picker em {
  2188. display: block;
  2189. border: 1px solid #aca899; }
  2190. /* line 35, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2191. .x-color-picker em span {
  2192. cursor: pointer;
  2193. display: block;
  2194. height: 10px;
  2195. width: 10px;
  2196. line-height: 10px; }
  2197. /* line 5, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2198. .x-menu-body {
  2199. user-select: none;
  2200. -o-user-select: none;
  2201. -ms-user-select: none;
  2202. -moz-user-select: -moz-none;
  2203. -webkit-user-select: none;
  2204. cursor: default;
  2205. background: #f0f0f0 !important;
  2206. padding: 2px; }
  2207. /* line 11, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2208. .x-menu-item .x-form-text {
  2209. user-select: text;
  2210. -webkit-user-select: text;
  2211. -o-user-select: text;
  2212. -ie-user-select: text;
  2213. -moz-user-select: text;
  2214. -ie-user-select: text; }
  2215. /* line 20, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2216. .x-menu-icon-separator {
  2217. position: absolute;
  2218. top: 0px;
  2219. left: 27px;
  2220. z-index: 0;
  2221. border-left: solid 1px #e0e0e0;
  2222. background-color: white;
  2223. width: 2px;
  2224. overflow: hidden; }
  2225. /* line 32, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2226. .x-menu-plain .x-menu-icon-separator {
  2227. display: none; }
  2228. /* line 37, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2229. .x-menu-focus {
  2230. display: block;
  2231. position: absolute;
  2232. top: -10px;
  2233. left: -10px;
  2234. width: 0px;
  2235. height: 0px; }
  2236. /* line 46, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2237. .x-menu-item {
  2238. white-space: nowrap;
  2239. overflow: hidden;
  2240. z-index: 1; }
  2241. /* line 52, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2242. .x-menu-item-cmp {
  2243. margin-bottom: 1px; }
  2244. /* line 56, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2245. .x-menu-item-link {
  2246. display: block;
  2247. margin: 1px;
  2248. padding: 6px 2px 3px 32px;
  2249. text-decoration: none !important;
  2250. line-height: 16px;
  2251. cursor: default; }
  2252. /* line 69, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2253. .x-opera .x-menu-item-link {
  2254. position: relative; }
  2255. /* line 75, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2256. .x-menu-item-icon {
  2257. width: 16px;
  2258. height: 16px;
  2259. position: absolute;
  2260. top: 5px;
  2261. left: 4px;
  2262. background: no-repeat center center; }
  2263. /* line 84, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2264. .x-menu-item-text {
  2265. font-size: 11px;
  2266. color: #222222; }
  2267. /* line 90, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2268. .x-menu-item-checked .x-menu-item-icon {
  2269. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  2270. /* line 93, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2271. .x-menu-item-checked .x-menu-group-icon {
  2272. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  2273. /* line 99, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2274. .x-menu-item-unchecked .x-menu-item-icon {
  2275. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  2276. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2277. .x-menu-item-unchecked .x-menu-group-icon {
  2278. background-image: none; }
  2279. /* line 107, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2280. .x-menu-item-separator {
  2281. height: 2px;
  2282. border-top: solid 1px #e0e0e0;
  2283. background-color: white;
  2284. margin: 2px 0px;
  2285. overflow: hidden; }
  2286. /* line 115, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2287. .x-menu-item-arrow {
  2288. position: absolute;
  2289. width: 12px;
  2290. height: 9px;
  2291. top: 9px;
  2292. right: 0px;
  2293. background: no-repeat center center;
  2294. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  2295. /* line 125, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2296. .x-menu-item-indent {
  2297. margin-left: 31px;
  2298. /* The 2px is the width of the seperator */ }
  2299. /* line 129, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2300. .x-menu-item-active {
  2301. cursor: pointer; }
  2302. /* line 132, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2303. .x-menu-item-active .x-menu-item-link {
  2304. background-image: none;
  2305. background-color: #d9e8fb;
  2306. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  2307. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  2308. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  2309. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  2310. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  2311. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  2312. margin: 0px;
  2313. border: 1px solid #a9cbf5;
  2314. cursor: pointer;
  2315. -moz-border-radius: 3px;
  2316. -webkit-border-radius: 3px;
  2317. -o-border-radius: 3px;
  2318. -ms-border-radius: 3px;
  2319. -khtml-border-radius: 3px;
  2320. border-radius: 3px; }
  2321. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2322. .x-menu-item-disabled {
  2323. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  2324. opacity: 0.5; }
  2325. /* line 180, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2326. .x-nlg .x-menu-item-active .x-menu-item-link {
  2327. background: #d9e8fb repeat-x left top;
  2328. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  2329. /* line 187, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2330. .x-menu-date-item {
  2331. border-color: #99BBE8; }
  2332. /* line 4, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2333. .x-panel .x-grid-body {
  2334. background: white;
  2335. border-color: #99bce8;
  2336. border-style: solid;
  2337. border-width: 1px;
  2338. border-top-color: #c5c5c5; }
  2339. /* line 13, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2340. .x-panel .x-grid-header-ct-hidden {
  2341. visibility: hidden; }
  2342. /* line 18, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2343. .x-grid-empty {
  2344. padding: 10px;
  2345. color: gray;
  2346. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  2347. /* line 24, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2348. .x-grid-header-hidden .x-grid-body {
  2349. border-top-color: #99bce8 !important; }
  2350. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2351. .x-grid-view {
  2352. overflow: hidden;
  2353. position: relative; }
  2354. /* line 34, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2355. .x-grid-table {
  2356. table-layout: fixed;
  2357. border-collapse: separate; }
  2358. /* line 41, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2359. .x-autowidth-table table.x-grid-table {
  2360. table-layout: auto;
  2361. width: auto!important; }
  2362. /* line 46, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2363. .x-grid-row .x-grid-table {
  2364. border-collapse: collapse; }
  2365. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2366. .x-grid-locked .x-grid-inner-locked {
  2367. border-width: 0 1px 0 0 !important;
  2368. border-style: solid; }
  2369. /* line 55, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2370. .x-grid-header-ct {
  2371. cursor: default;
  2372. zoom: 1;
  2373. padding: 0;
  2374. border: 1px solid #99bce8;
  2375. border-bottom-color: #c5c5c5; }
  2376. /* line 69, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2377. .x-accordion-item .x-grid-header-ct {
  2378. border-width: 0 0 1px 0!important; }
  2379. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2380. .x-column-header {
  2381. padding: 0;
  2382. position: absolute;
  2383. overflow: hidden;
  2384. border-right: 1px solid #c5c5c5;
  2385. border-left: 0 none;
  2386. border-top: 0 none;
  2387. border-bottom: 0 none;
  2388. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  2389. color: null;
  2390. font: normal 11px tahoma, arial, verdana, sans-serif; }
  2391. /* line 95, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2392. .x-group-header {
  2393. padding: 0;
  2394. border-left-width: 0; }
  2395. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2396. .x-group-sub-header {
  2397. background: transparent;
  2398. border-top: 1px solid #c5c5c5;
  2399. border-left-width: 0; }
  2400. /* line 105, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2401. .x-column-header-inner {
  2402. zoom: 1;
  2403. position: relative;
  2404. white-space: nowrap;
  2405. line-height: 15px;
  2406. padding: 3px 6px 4px; }
  2407. /* line 112, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2408. .x-column-header-inner .x-column-header-text {
  2409. white-space: nowrap; }
  2410. /* line 119, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2411. .x-column-header-over,
  2412. .x-column-header-sort-ASC,
  2413. .x-column-header-sort-DESC {
  2414. border-left-color: #aaccf6;
  2415. border-right-color: #aaccf6; }
  2416. /* line 131, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2417. .x-nlg .x-grid-header-ct,
  2418. .x-nlg .x-column-header {
  2419. background: repeat-x 0 top;
  2420. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  2421. /* line 138, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2422. .x-nlg .x-column-header-over,
  2423. .x-nlg .x-column-header-sort-ASC,
  2424. .x-nlg .x-column-header-sort-DESC {
  2425. background: #ebf3fd repeat-x 0 top;
  2426. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  2427. /* line 145, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2428. .x-column-header-trigger {
  2429. display: none;
  2430. height: 100%;
  2431. width: 14px;
  2432. background: no-repeat left center;
  2433. background-color: #c3daf9;
  2434. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  2435. position: absolute;
  2436. right: 0;
  2437. top: 0;
  2438. z-index: 2;
  2439. cursor: pointer; }
  2440. /* line 160, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2441. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  2442. display: block; }
  2443. /* line 165, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2444. .x-column-header-align-right {
  2445. text-align: right; }
  2446. /* line 168, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2447. .x-column-header-align-right .x-column-header-text {
  2448. padding-right: 0.5ex;
  2449. margin-right: 6px; }
  2450. /* line 173, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2451. .x-column-header-align-center {
  2452. text-align: center; }
  2453. /* line 176, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2454. .x-column-header-align-left {
  2455. text-align: left; }
  2456. /* line 181, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2457. .x-column-header-sort-ASC .x-column-header-text {
  2458. padding-right: 16px;
  2459. background: no-repeat right 6px;
  2460. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  2461. /* line 186, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2462. .x-column-header-sort-DESC .x-column-header-text {
  2463. padding-right: 16px;
  2464. background: no-repeat right 6px;
  2465. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  2466. /* line 193, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2467. .x-grid-row {
  2468. vertical-align: top; }
  2469. /* line 195, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2470. .x-grid-row .x-grid-cell {
  2471. color: null;
  2472. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2473. background-color: white;
  2474. border-color: #ededed;
  2475. border-style: solid;
  2476. border-top-color: #fafafa;
  2477. border-width: 0; }
  2478. /* line 208, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2479. .x-grid-with-row-lines .x-grid-cell {
  2480. border-width: 1px 0; }
  2481. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2482. .x-grid-rowwrap-div {
  2483. border-width: 1px 0;
  2484. border-color: #ededed;
  2485. border-style: solid;
  2486. border-top-color: #fafafa;
  2487. overflow: hidden; }
  2488. /* line 222, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2489. .x-grid-row-alt .x-grid-cell,
  2490. .x-grid-row-alt .x-grid-rowwrap-div {
  2491. background-color: #fafafa; }
  2492. /* line 227, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2493. .x-grid-row-over .x-grid-cell,
  2494. .x-grid-row-over .x-grid-rowwrap-div {
  2495. border-color: #dddddd;
  2496. background-color: #efefef; }
  2497. /* line 234, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2498. .x-grid-row-focused .x-grid-cell,
  2499. .x-grid-row-focused .x-grid-rowwrap-div {
  2500. border-color: #dddddd;
  2501. background-color: #efefef; }
  2502. /* line 241, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2503. .x-grid-row-selected .x-grid-cell,
  2504. .x-grid-row-selected .x-grid-rowwrap-div {
  2505. border-style: dotted;
  2506. border-color: #a3bae9;
  2507. background-color: #dfe8f6 !important; }
  2508. /* line 250, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2509. .x-grid-rowwrap-div .x-grid-cell,
  2510. .x-grid-rowwrap-div .x-grid-cell-inner {
  2511. border-width: 0;
  2512. background: transparent; }
  2513. /* line 257, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2514. .x-grid-row-body-hidden {
  2515. display: none; }
  2516. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2517. .x-grid-rowbody {
  2518. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  2519. padding: 4px; }
  2520. /* line 266, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2521. .x-grid-rowbody p {
  2522. margin: 5px 5px 10px 5px; }
  2523. /* line 272, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2524. .x-grid-cell {
  2525. overflow: hidden; }
  2526. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2527. .x-grid-cell-inner {
  2528. overflow: hidden;
  2529. -o-text-overflow: ellipsis;
  2530. text-overflow: ellipsis;
  2531. padding: 2px 6px 3px;
  2532. white-space: nowrap; }
  2533. /* line 287, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2534. .x-grid-with-row-lines .x-grid-cell-inner {
  2535. line-height: 13px;
  2536. padding-bottom: 4px; }
  2537. /* line 293, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2538. .x-action-col-cell .x-grid-cell-inner {
  2539. line-height: 0;
  2540. padding: 2px; }
  2541. /* line 298, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2542. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  2543. padding-top: 1px; }
  2544. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2545. .x-grid-row .x-grid-cell-special {
  2546. padding: 0;
  2547. border-right: 1px solid #d0d0d0;
  2548. background-image: none;
  2549. background-color: #f6f6f6;
  2550. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  2551. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  2552. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  2553. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  2554. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  2555. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  2556. /* line 308, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2557. .x-grid-row .x-grid-cell-row-checker {
  2558. vertical-align: middle; }
  2559. /*
  2560. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  2561. use an IE-specific trick to make the row disappear. We cannot do this on any
  2562. other browser, because it is not a non-standard thing to do and those other
  2563. browsers will do whacky things with it.
  2564. */
  2565. /* line 322, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2566. .x-ie6 .x-grid-header-row,
  2567. .x-ie7 .x-grid-header-row,
  2568. .x-quirks .x-ie8 .x-grid-header-row {
  2569. position: absolute; }
  2570. /* line 327, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2571. .x-grid-row-selected .x-grid-cell-special {
  2572. border-right: 1px solid #aaccf6;
  2573. background-image: none;
  2574. background-color: #dfe8f6;
  2575. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  2576. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  2577. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  2578. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  2579. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  2580. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  2581. /* line 333, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2582. .x-grid-dirty-cell {
  2583. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  2584. background-position: 0 0;
  2585. background-repeat: no-repeat; }
  2586. /* line 339, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2587. .x-grid-cell-selected {
  2588. background-color: #B8CFEE !important; }
  2589. /* line 345, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2590. .x-nlg .x-grid-cell-special {
  2591. background-repeat: repeat-y;
  2592. background-position: top right; }
  2593. /* line 351, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2594. .x-nlg .x-grid-row .x-grid-cell-special,
  2595. .x-nlg .x-grid-row-over .x-grid-cell-special {
  2596. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  2597. /* line 357, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2598. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  2599. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  2600. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  2601. /* line 363, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2602. .x-grid-with-col-lines .x-grid-cell {
  2603. padding-right: 0;
  2604. border-right: 1px solid #d0d0d0; }
  2605. /* line 370, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2606. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2607. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2608. padding-left: 12px;
  2609. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  2610. background-repeat: no-repeat;
  2611. background-position: -16px 2px; }
  2612. /* line 380, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2613. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  2614. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  2615. background-position: -16px 1px; }
  2616. /* line 391, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2617. .x-unselectable {
  2618. user-select: none;
  2619. -o-user-select: none;
  2620. -ms-user-select: none;
  2621. -moz-user-select: -moz-none;
  2622. -webkit-user-select: none;
  2623. cursor: default; }
  2624. /* line 395, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2625. .x-grid-row-body-hidden {
  2626. display: none; }
  2627. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2628. .x-grid-group-collapsed {
  2629. display: none; }
  2630. /* line 405, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2631. .x-grid-view .x-grid-td-expander {
  2632. vertical-align: top; }
  2633. /* line 410, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2634. .x-grid-td-expander {
  2635. background: repeat-y right transparent; }
  2636. /* line 416, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2637. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  2638. padding: 0 !important; }
  2639. /* line 422, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2640. .x-grid-row-expander {
  2641. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2642. background-color: transparent;
  2643. width: 9px;
  2644. height: 13px;
  2645. margin-left: 3px;
  2646. background-repeat: no-repeat;
  2647. background-position: 0 -2px; }
  2648. /* line 436, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2649. .x-grid-row-collapsed .x-grid-row-expander {
  2650. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2651. /* line 441, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2652. .x-grid-resize-marker {
  2653. position: absolute;
  2654. z-index: 5;
  2655. top: 0;
  2656. width: 1px;
  2657. background-color: #0f0f0f; }
  2658. /* line 451, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2659. .col-move-top, .col-move-bottom {
  2660. width: 9px;
  2661. height: 9px;
  2662. position: absolute;
  2663. top: 0;
  2664. line-height: 0;
  2665. font-size: 0;
  2666. overflow: hidden;
  2667. z-index: 20000;
  2668. background: no-repeat left top transparent; }
  2669. /* line 463, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2670. .col-move-top {
  2671. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  2672. /* line 467, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2673. .col-move-bottom {
  2674. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  2675. /* line 472, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2676. .x-tbar-page-number {
  2677. width: 30px; }
  2678. /* line 479, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2679. .x-grid-group,
  2680. .x-grid-group-body,
  2681. .x-grid-group-hd {
  2682. zoom: 1; }
  2683. /* line 483, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2684. .x-grid-group-hd {
  2685. padding-top: 6px; }
  2686. /* line 486, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2687. .x-grid-group-hd .x-grid-cell-inner {
  2688. padding: 10px 4px 4px 4px;
  2689. background: white;
  2690. border-width: 0 0 2px 0;
  2691. border-style: solid;
  2692. border-color: #99bbe8;
  2693. cursor: pointer; }
  2694. /* line 499, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2695. .x-grid-group-title {
  2696. background: transparent no-repeat 0 -1px;
  2697. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  2698. color: #3764a0;
  2699. font: bold 11px tahoma, arial, verdana, sans-serif;
  2700. padding: 0 0 0 14px; }
  2701. /* line 510, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2702. .x-grid-group-hd-collapsed .x-grid-group-title {
  2703. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2704. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2705. .x-grid-group-collapsed .x-grid-group-body {
  2706. display: none; }
  2707. /* line 519, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2708. .x-grid-group-collapsed .x-grid-group-title {
  2709. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  2710. /* line 523, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2711. .x-group-by-icon {
  2712. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2713. /* line 527, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2714. .x-show-groups-icon {
  2715. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2716. /* line 531, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2717. .x-column-header-checkbox .x-column-header-inner {
  2718. padding: 0; }
  2719. /* line 535, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2720. .x-grid-cell-special .x-grid-cell-inner {
  2721. padding-left: 4px;
  2722. padding-right: 4px; }
  2723. /* line 541, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2724. .x-grid-row-checker,
  2725. .x-column-header-checkbox .x-column-header-text {
  2726. height: 14px;
  2727. width: 14px;
  2728. line-height: 0;
  2729. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  2730. background-position: -1px -1px;
  2731. background-repeat: no-repeat;
  2732. background-color: transparent; }
  2733. /* line 553, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2734. .x-column-header-checkbox .x-column-header-text {
  2735. display: block;
  2736. margin: 0 5px; }
  2737. /* line 568, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2738. .x-grid-hd-checker-on .x-column-header-text {
  2739. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2740. /* line 572, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2741. .x-grid-cell-row-checker .x-grid-cell-inner {
  2742. padding-top: 4px;
  2743. padding-bottom: 2px;
  2744. line-height: 14px; }
  2745. /* line 577, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2746. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  2747. padding-top: 3px; }
  2748. /* line 580, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2749. .x-grid-row-checker {
  2750. margin-left: 1px;
  2751. background-position: 50% -2px; }
  2752. /* line 587, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2753. .x-grid-row-selected .x-grid-row-checker,
  2754. .x-grid-row-checked .x-grid-row-checker {
  2755. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  2756. /* line 592, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2757. .x-tbar-page-first {
  2758. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  2759. /* line 596, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2760. .x-tbar-loading {
  2761. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  2762. /* line 600, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2763. .x-tbar-page-last {
  2764. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  2765. /* line 604, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2766. .x-tbar-page-next {
  2767. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  2768. /* line 608, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2769. .x-tbar-page-prev {
  2770. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  2771. /* line 613, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2772. .x-item-disabled .x-tbar-loading {
  2773. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  2774. /* line 617, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2775. .x-item-disabled .x-tbar-page-first {
  2776. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  2777. /* line 621, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2778. .x-item-disabled .x-tbar-page-last {
  2779. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  2780. /* line 625, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2781. .x-item-disabled .x-tbar-page-next {
  2782. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  2783. /* line 629, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2784. .x-item-disabled .x-tbar-page-prev {
  2785. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  2786. /* line 635, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2787. .x-hmenu-sort-asc .x-menu-item-icon {
  2788. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  2789. /* line 639, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2790. .x-hmenu-sort-desc .x-menu-item-icon {
  2791. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  2792. /* line 643, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2793. .x-hmenu-lock .x-menu-item-icon {
  2794. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  2795. /* line 647, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2796. .x-hmenu-unlock .x-menu-item-icon {
  2797. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  2798. /* line 651, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2799. .x-group-by-icon {
  2800. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2801. /* line 655, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2802. .x-cols-icon .x-menu-item-icon {
  2803. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  2804. /* line 659, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2805. .x-show-groups-icon {
  2806. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  2807. /* line 664, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2808. .x-grid-drop-indicator {
  2809. position: absolute;
  2810. height: 1px;
  2811. line-height: 0px;
  2812. background-color: #77BC71;
  2813. overflow: visible; }
  2814. /* line 671, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2815. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  2816. position: absolute;
  2817. top: -8px;
  2818. left: -12px;
  2819. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  2820. height: 16px;
  2821. width: 16px; }
  2822. /* line 680, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2823. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  2824. position: absolute;
  2825. top: -8px;
  2826. right: -11px;
  2827. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  2828. height: 16px;
  2829. width: 16px; }
  2830. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2831. .x-ie6 .x-grid-drop-indicator-left {
  2832. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  2833. /* line 695, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2834. .x-ie6 .x-grid-drop-indicator-right {
  2835. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  2836. /* line 703, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2837. .x-grid-editor .x-form-text {
  2838. padding: 0 4px; }
  2839. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2840. .x-grid-editor .x-form-cb-wrap {
  2841. padding-top: 3px; }
  2842. /* line 712, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2843. .x-grid-row-editor {
  2844. position: absolute !important;
  2845. z-index: 1;
  2846. zoom: 1;
  2847. overflow: visible !important; }
  2848. /* line 718, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2849. .x-grid-row-editor .x-form-text {
  2850. padding: 0 2px; }
  2851. /* line 721, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2852. .x-grid-row-editor .x-form-cb-wrap {
  2853. padding-top: 0; }
  2854. /* line 724, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2855. .x-grid-row-editor .x-form-checkbox {
  2856. margin-left: -4px; }
  2857. /* line 727, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2858. .x-grid-row-editor .x-form-display-field {
  2859. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2860. padding-top: 0;
  2861. padding-left: 2px; }
  2862. /* line 733, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2863. .x-grid-row-editor .x-panel-body {
  2864. background-color: #eaf1fb;
  2865. border-top: 1px solid #99bce8 !important;
  2866. border-bottom: 1px solid #99bce8 !important; }
  2867. /* line 743, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2868. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  2869. text-align: center; }
  2870. /* line 746, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2871. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  2872. height: 19px; }
  2873. /* line 750, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2874. .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 {
  2875. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  2876. height: 10px !important; }
  2877. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2878. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  2879. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  2880. height: 18px; }
  2881. /* line 765, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2882. .x-border-box .x-grid-editor .x-form-trigger,
  2883. .x-border-box .x-grid-row-editor .x-form-trigger {
  2884. height: 20px; }
  2885. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2886. .x-border-box .x-grid-editor .x-form-text,
  2887. .x-border-box .x-grid-row-editor .x-form-text {
  2888. height: 20px;
  2889. padding-bottom: 1px; }
  2890. /* line 807, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2891. .x-opera .x-grid-editor .x-form-text {
  2892. padding-left: 5px; }
  2893. /* line 810, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2894. .x-opera .x-grid-row-editor .x-form-text {
  2895. padding-left: 3px; }
  2896. /* line 817, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2897. .x-grid-row-editor-buttons {
  2898. background-color: #eaf1fb;
  2899. position: absolute;
  2900. bottom: -31px;
  2901. padding: 4px;
  2902. height: 32px; }
  2903. /* line 824, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2904. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  2905. width: 192px;
  2906. height: 24px; }
  2907. /* line 834, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2908. .x-grid-row-editor-buttons-ml,
  2909. .x-grid-row-editor-buttons-mr,
  2910. .x-grid-row-editor-buttons-bl,
  2911. .x-grid-row-editor-buttons-br,
  2912. .x-grid-row-editor-buttons-bc {
  2913. position: absolute;
  2914. overflow: hidden; }
  2915. /* line 840, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2916. .x-grid-row-editor-buttons-bl,
  2917. .x-grid-row-editor-buttons-br {
  2918. width: 4px;
  2919. height: 4px;
  2920. bottom: 0px;
  2921. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  2922. /* line 846, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2923. .x-grid-row-editor-buttons-bl {
  2924. left: 0px;
  2925. background-position: 0px -16px; }
  2926. /* line 850, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2927. .x-grid-row-editor-buttons-br {
  2928. right: 0px;
  2929. background-position: 0px -20px; }
  2930. /* line 855, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2931. .x-grid-row-editor-buttons-bc {
  2932. position: absolute;
  2933. left: 4px;
  2934. bottom: 0px;
  2935. width: 192px;
  2936. height: 1px;
  2937. background-color: #99bce8; }
  2938. /* line 865, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2939. .x-grid-row-editor-buttons-ml,
  2940. .x-grid-row-editor-buttons-mr {
  2941. height: 27px;
  2942. width: 1px;
  2943. top: 1px;
  2944. background-color: #99bce8; }
  2945. /* line 871, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2946. .x-grid-row-editor-buttons-ml {
  2947. left: 0px; }
  2948. /* line 874, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2949. .x-grid-row-editor-buttons-mr {
  2950. background-position: 0px -20px;
  2951. right: 0px; }
  2952. /* line 880, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2953. .x-grid-row-editor-errors ul {
  2954. margin-left: 5px; }
  2955. /* line 883, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  2956. .x-grid-row-editor-errors li {
  2957. list-style: disc;
  2958. margin-left: 15px; }
  2959. /*misc*/
  2960. /* line 5, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2961. .x-webkit *:focus {
  2962. outline: none !important; }
  2963. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2964. .x-form-item {
  2965. vertical-align: top;
  2966. table-layout: fixed; }
  2967. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2968. .x-autocontainer-form-item,
  2969. .x-anchor-form-item,
  2970. .x-vbox-form-item,
  2971. .x-checkboxgroup-form-item,
  2972. .x-table-form-item {
  2973. margin-bottom: 5px; }
  2974. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2975. .x-form-layout-table {
  2976. border-collapse: separate;
  2977. border-spacing: 0 2px; }
  2978. /* line 33, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2979. .x-form-item-body {
  2980. position: relative; }
  2981. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2982. .x-form-form-item td {
  2983. border-top: 1px solid transparent; }
  2984. /* line 47, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2985. .x-ie6 .x-form-layout-table {
  2986. border-collapse: collapse;
  2987. border-spacing: 0; }
  2988. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2989. .x-ie6 .x-form-form-item td {
  2990. border-top-width: 0; }
  2991. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2992. .x-ie6 td.x-form-item-pad {
  2993. height: 5px; }
  2994. /* line 64, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2995. .x-editor .x-form-item-body {
  2996. padding-bottom: 0; }
  2997. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  2998. .x-form-item-label {
  2999. display: block;
  3000. padding: 3px 0 0;
  3001. font-size: 12px;
  3002. user-select: none;
  3003. -o-user-select: none;
  3004. -ms-user-select: none;
  3005. -moz-user-select: -moz-none;
  3006. -webkit-user-select: none;
  3007. cursor: default; }
  3008. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3009. .x-form-item-label-top {
  3010. padding: 0; }
  3011. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3012. .x-form-item-label-right {
  3013. text-align: right; }
  3014. /* line 83, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3015. .x-form-invalid-under {
  3016. padding: 2px 2px 2px 18px;
  3017. color: #c0272b;
  3018. font: normal 11px tahoma, arial, verdana, sans-serif;
  3019. line-height: 16px;
  3020. background: no-repeat 0 2px;
  3021. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3022. /* line 94, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3023. .x-external-error-icon {
  3024. position: absolute;
  3025. right: 10px;
  3026. height: 22px; }
  3027. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3028. .x-form-invalid-icon {
  3029. width: 18px;
  3030. background: no-repeat 2px 3px;
  3031. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3032. overflow: hidden; }
  3033. /* line 111, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3034. .x-form-invalid-icon ul {
  3035. display: block;
  3036. width: 18px; }
  3037. /* line 114, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3038. .x-form-invalid-icon ul li {
  3039. /* prevent inner elements from interfering with QuickTip hovering */
  3040. display: none; }
  3041. /* line 3, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3042. .x-form-field,
  3043. .x-form-display-field {
  3044. margin: 0 0 0 0;
  3045. font: normal 12px tahoma, arial, verdana, sans-serif;
  3046. color: black; }
  3047. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3048. .x-form-text,
  3049. textarea.x-form-field {
  3050. padding: 1px 3px;
  3051. background: repeat-x 0 0;
  3052. border: 1px solid;
  3053. background-color: white;
  3054. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3055. border-color: #b5b8c8; }
  3056. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3057. .x-form-text {
  3058. height: 18px;
  3059. line-height: 18px;
  3060. vertical-align: top; }
  3061. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3062. .x-ie8m .x-form-text {
  3063. line-height: 15px; }
  3064. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3065. .x-border-box .x-form-text {
  3066. height: 22px; }
  3067. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3068. textarea.x-form-field {
  3069. color: black;
  3070. overflow: auto;
  3071. height: auto;
  3072. line-height: normal;
  3073. background: repeat-x 0 0;
  3074. background-color: white;
  3075. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3076. resize: none; }
  3077. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3078. .x-border-box textarea.x-form-field {
  3079. height: auto; }
  3080. /* line 61, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3081. .x-safari.x-mac textarea.x-form-field {
  3082. margin-bottom: -2px; }
  3083. /* line 67, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3084. .x-form-focus,
  3085. textarea.x-form-focus {
  3086. border-color: #7eadd9; }
  3087. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3088. .x-form-invalid-field,
  3089. textarea.x-form-invalid-field {
  3090. background-color: white;
  3091. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3092. background-repeat: repeat-x;
  3093. background-position: bottom;
  3094. border-color: #cc3300; }
  3095. /* line 82, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3096. .x-form-item {
  3097. font: normal 12px tahoma, arial, verdana, sans-serif; }
  3098. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3099. .x-form-empty-field, textarea.x-form-empty-field {
  3100. color: gray; }
  3101. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3102. .x-webkit .x-form-empty-field {
  3103. line-height: 15px; }
  3104. /* line 96, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3105. .x-form-display-field {
  3106. padding-top: 3px; }
  3107. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3108. .x-field-default-toolbar .x-form-text {
  3109. height: 16px; }
  3110. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3111. .x-border-box .x-field-default-toolbar .x-form-text {
  3112. height: 20px; }
  3113. /* line 134, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3114. .x-field-default-toolbar .x-form-item-label-left {
  3115. padding-left: 4px; }
  3116. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3117. .x-fieldset {
  3118. border: 1px solid #b5b8c8;
  3119. padding: 10px;
  3120. margin-bottom: 10px;
  3121. display: block;
  3122. /* preserve margins in IE */
  3123. position: relative; }
  3124. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3125. .x-ie .x-fieldset {
  3126. padding-top: 0; }
  3127. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3128. .x-ie .x-fieldset .x-fieldset-body {
  3129. padding-top: 10px; }
  3130. /* line 21, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3131. .x-fieldset-header-checkbox {
  3132. line-height: 14px; }
  3133. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3134. .x-fieldset-header {
  3135. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  3136. color: #15428b;
  3137. padding: 0 3px 1px;
  3138. overflow: hidden; }
  3139. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3140. .x-fieldset-header .x-fieldset-header-text {
  3141. float: left;
  3142. padding: 1px 0; }
  3143. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3144. .x-fieldset-header .x-fieldset-header-text-collapsible {
  3145. cursor: pointer; }
  3146. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3147. .x-fieldset-header .x-form-item,
  3148. .x-fieldset-header .x-tool {
  3149. float: left;
  3150. margin: 1px 0 0 0; }
  3151. /* line 45, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3152. .x-fieldset-header .x-form-cb-wrap {
  3153. padding: 1px 0;
  3154. font-size: 0;
  3155. line-height: 0; }
  3156. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3157. .x-fieldset-with-title .x-form-item,
  3158. .x-fieldset-with-title .x-tool {
  3159. margin-right: 3px; }
  3160. /* line 61, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3161. .x-webkit .x-fieldset-header {
  3162. -webkit-padding-start: 3px;
  3163. -webkit-padding-end: 3px; }
  3164. /* line 71, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3165. .x-opera .x-fieldset-with-legend {
  3166. margin-top: -1px; }
  3167. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3168. .x-opera.x-mac .x-fieldset-header-text {
  3169. padding: 2px 0 0; }
  3170. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3171. .x-fieldset-collapsed .x-fieldset-body {
  3172. display: none; }
  3173. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3174. .x-fieldset-collapsed {
  3175. padding-bottom: 0 !important;
  3176. border-width: 1px 1px 0 1px !important;
  3177. border-left-color: transparent !important;
  3178. border-right-color: transparent !important; }
  3179. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3180. .x-fieldset {
  3181. overflow: hidden; }
  3182. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3183. .x-fieldset-bwrap {
  3184. overflow: hidden;
  3185. zoom: 1; }
  3186. /* line 155, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3187. .x-fieldset-body {
  3188. overflow: hidden; }
  3189. /* line 4, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3190. .x-form-file-wrap .x-form-text {
  3191. color: #777; }
  3192. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3193. .x-form-file-wrap .x-form-file-btn {
  3194. overflow: hidden; }
  3195. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3196. .x-form-file-wrap .x-form-file-input {
  3197. position: absolute;
  3198. top: -4px;
  3199. right: -2px;
  3200. height: 30px;
  3201. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  3202. opacity: 0;
  3203. /* Yes, there's actually a good reason for this...
  3204. * If the configured buttonText is set to something longer than the default,
  3205. * then it will quickly exceed the width of the hidden file input's "Browse..."
  3206. * button, so part of the custom button's clickable area will be covered by
  3207. * the hidden file input's text box instead. This results in a text-selection
  3208. * mouse cursor over that part of the button, at least in Firefox, which is
  3209. * confusing to a user. Giving the hidden file input a huge font-size makes
  3210. * the native button part very large so it will cover the whole clickable area.
  3211. */
  3212. font-size: 100px; }
  3213. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3214. .x-form-cb-wrap {
  3215. padding-top: 3px; }
  3216. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3217. .x-form-checkbox,
  3218. .x-form-radio {
  3219. vertical-align: -1px;
  3220. width: 13px;
  3221. height: 13px;
  3222. background: no-repeat;
  3223. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  3224. overflow: hidden;
  3225. padding: 0;
  3226. border: 0; }
  3227. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3228. .x-form-checkbox::-moz-focus-inner,
  3229. .x-form-radio::-moz-focus-inner {
  3230. padding: 0;
  3231. border: 0; }
  3232. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3233. .x-form-cb-checked .x-form-checkbox,
  3234. .x-form-cb-checked .x-form-radio {
  3235. background-position: 0 -13px; }
  3236. /* Focused */
  3237. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3238. .x-form-cb-focus {
  3239. background-position: -13px 0; }
  3240. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3241. .x-form-cb-checked .x-form-cb-focus {
  3242. background-position: -13px -13px; }
  3243. /* Radios */
  3244. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3245. .x-form-radio {
  3246. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  3247. /* boxLabel */
  3248. /* line 55, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3249. .x-form-cb-label-before {
  3250. margin-right: 4px; }
  3251. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3252. .x-form-cb-label-after {
  3253. margin-left: 4px; }
  3254. /* line 3, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3255. .x-form-checkboxgroup-body {
  3256. padding: 1px 4px 1px 4px; }
  3257. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3258. .x-form-invalid .x-form-checkboxgroup-body {
  3259. border: 1px solid #c30;
  3260. background: transparent repeat-x bottom;
  3261. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3262. padding: 0 3px 0 3px; }
  3263. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3264. .x-check-group-alt {
  3265. background: #d1ddef;
  3266. border-top: 1px dotted #b5b8c8;
  3267. border-bottom: 1px dotted #b5b8c8; }
  3268. /* line 23, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  3269. .x-form-check-group-label {
  3270. color: #333;
  3271. border-bottom: 1px solid #333;
  3272. margin: 0 30px 5px 0;
  3273. padding: 2px; }
  3274. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3275. .x-form-trigger-wrap {
  3276. vertical-align: top; }
  3277. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3278. .x-form-trigger {
  3279. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  3280. background-position: 0 0;
  3281. width: 17px;
  3282. height: 21px;
  3283. border-bottom: 1px solid #b5b8c8;
  3284. cursor: pointer;
  3285. cursor: hand;
  3286. overflow: hidden; }
  3287. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3288. .x-border-box .x-form-trigger {
  3289. height: 22px; }
  3290. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3291. .x-field-default-toolbar .x-form-trigger {
  3292. height: 19px; }
  3293. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3294. .x-border-box .x-field-default-toolbar .x-form-trigger {
  3295. height: 20px; }
  3296. /* line 33, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3297. .x-form-trigger-over {
  3298. background-position: -17px 0;
  3299. border-bottom-color: #7eadd9; }
  3300. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3301. .x-form-trigger-wrap-focus .x-form-trigger {
  3302. background-position: -51px 0;
  3303. border-bottom-color: #7eadd9; }
  3304. /* line 45, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3305. .x-form-trigger-wrap-focus .x-form-trigger-over {
  3306. background-position: -68px 0;
  3307. border-bottom-color: null; }
  3308. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3309. .x-form-trigger-click,
  3310. .x-form-trigger-wrap-focus .x-form-trigger-click {
  3311. background-position: -34px 0;
  3312. border-bottom-color: null; }
  3313. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3314. .x-form-trigger-icon {
  3315. height: 16px;
  3316. background-repeat: no-repeat;
  3317. background-position: 7px 6px; }
  3318. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3319. .x-pickerfield-open .x-form-field {
  3320. -moz-border-radius-bottomleft: 0;
  3321. -webkit-border-bottom-left-radius: 0;
  3322. -o-border-bottom-left-radius: 0;
  3323. -ms-border-bottom-left-radius: 0;
  3324. -khtml-border-bottom-left-radius: 0;
  3325. border-bottom-left-radius: 0;
  3326. -moz-border-radius-bottomright: 0;
  3327. -webkit-border-bottom-right-radius: 0;
  3328. -o-border-bottom-right-radius: 0;
  3329. -ms-border-bottom-right-radius: 0;
  3330. -khtml-border-bottom-right-radius: 0;
  3331. border-bottom-right-radius: 0; }
  3332. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3333. .x-pickerfield-open-above .x-form-field {
  3334. -moz-border-radius-bottomleft: 3px;
  3335. -webkit-border-bottom-left-radius: 3px;
  3336. -o-border-bottom-left-radius: 3px;
  3337. -ms-border-bottom-left-radius: 3px;
  3338. -khtml-border-bottom-left-radius: 3px;
  3339. border-bottom-left-radius: 3px;
  3340. -moz-border-radius-topleft: 0;
  3341. -webkit-border-top-left-radius: 0;
  3342. -o-border-top-left-radius: 0;
  3343. -ms-border-top-left-radius: 0;
  3344. -khtml-border-top-left-radius: 0;
  3345. border-top-left-radius: 0;
  3346. -moz-border-radius-topright: 0;
  3347. -webkit-border-top-right-radius: 0;
  3348. -o-border-top-right-radius: 0;
  3349. -ms-border-top-right-radius: 0;
  3350. -khtml-border-top-right-radius: 0;
  3351. border-top-right-radius: 0; }
  3352. /* line 83, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3353. .x-form-arrow-trigger .x-form-trigger-icon {
  3354. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  3355. /* line 88, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3356. .x-form-date-trigger {
  3357. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  3358. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3359. .x-form-trigger-wrap .x-form-spinner-up,
  3360. .x-form-trigger-wrap .x-form-spinner-down {
  3361. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  3362. width: 17px !important;
  3363. height: 11px !important;
  3364. font-size: 0;
  3365. /*for IE*/
  3366. border-bottom: 0; }
  3367. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3368. .x-form-trigger-wrap .x-form-spinner-down {
  3369. background-position: 0 -11px; }
  3370. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3371. .x-form-trigger-wrap-focus .x-form-spinner-down {
  3372. background-position: -51px -11px; }
  3373. /* line 112, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3374. .x-form-trigger-wrap .x-form-spinner-down-over {
  3375. background-position: -17px -11px; }
  3376. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3377. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3378. background-position: -68px -11px; }
  3379. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3380. .x-form-trigger-wrap .x-form-spinner-down-click {
  3381. background-position: -34px -11px; }
  3382. /* line 127, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3383. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  3384. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3385. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3386. height: 10px !important; }
  3387. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3388. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  3389. background-position: 0 -10px; }
  3390. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3391. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  3392. background-position: -51px -10px; }
  3393. /* line 138, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3394. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  3395. background-position: -17px -10px; }
  3396. /* line 141, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3397. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  3398. background-position: -68px -10px; }
  3399. /* line 144, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3400. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  3401. background-position: -34px -10px; }
  3402. /* line 150, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3403. .x-trigger-noedit {
  3404. cursor: pointer;
  3405. cursor: hand; }
  3406. /* line 156, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3407. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  3408. cursor: auto; }
  3409. /* line 162, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3410. .x-form-clear-trigger {
  3411. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  3412. /* line 165, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  3413. .x-form-search-trigger {
  3414. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  3415. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3416. .x-html-editor-wrap {
  3417. border: 1px solid #b5b8c8; }
  3418. /* line 5, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3419. .x-html-editor-wrap .x-toolbar {
  3420. border-top-width: 0;
  3421. border-left-width: 0;
  3422. border-right-width: 0; }
  3423. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3424. .x-html-editor-wrap textarea {
  3425. background-color: white; }
  3426. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3427. .x-html-editor-tb .x-btn-text {
  3428. background: transparent no-repeat;
  3429. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3430. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3431. .x-html-editor-tb .x-edit-bold,
  3432. .x-menu-item img.x-edit-bold {
  3433. background-position: 0 0;
  3434. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3435. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3436. .x-html-editor-tb .x-edit-italic,
  3437. .x-menu-item img.x-edit-italic {
  3438. background-position: -16px 0;
  3439. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3440. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3441. .x-html-editor-tb .x-edit-underline,
  3442. .x-menu-item img.x-edit-underline {
  3443. background-position: -32px 0;
  3444. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3445. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3446. .x-html-editor-tb .x-edit-forecolor,
  3447. .x-menu-item img.x-edit-forecolor {
  3448. background-position: -160px 0;
  3449. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3450. /* line 46, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3451. .x-html-editor-tb .x-edit-backcolor,
  3452. .x-menu-item img.x-edit-backcolor {
  3453. background-position: -176px 0;
  3454. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3455. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3456. .x-html-editor-tb .x-edit-justifyleft,
  3457. .x-menu-item img.x-edit-justifyleft {
  3458. background-position: -112px 0;
  3459. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3460. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3461. .x-html-editor-tb .x-edit-justifycenter,
  3462. .x-menu-item img.x-edit-justifycenter {
  3463. background-position: -128px 0;
  3464. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3465. /* line 64, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3466. .x-html-editor-tb .x-edit-justifyright,
  3467. .x-menu-item img.x-edit-justifyright {
  3468. background-position: -144px 0;
  3469. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3470. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3471. .x-html-editor-tb .x-edit-insertorderedlist,
  3472. .x-menu-item img.x-edit-insertorderedlist {
  3473. background-position: -80px 0;
  3474. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3475. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3476. .x-html-editor-tb .x-edit-insertunorderedlist,
  3477. .x-menu-item img.x-edit-insertunorderedlist {
  3478. background-position: -96px 0;
  3479. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3480. /* line 82, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3481. .x-html-editor-tb .x-edit-increasefontsize,
  3482. .x-menu-item img.x-edit-increasefontsize {
  3483. background-position: -48px 0;
  3484. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3485. /* line 88, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3486. .x-html-editor-tb .x-edit-decreasefontsize,
  3487. .x-menu-item img.x-edit-decreasefontsize {
  3488. background-position: -64px 0;
  3489. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3490. /* line 94, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3491. .x-html-editor-tb .x-edit-sourceedit,
  3492. .x-menu-item img.x-edit-sourceedit {
  3493. background-position: -192px 0;
  3494. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3495. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3496. .x-html-editor-tb .x-edit-createlink,
  3497. .x-menu-item img.x-edit-createlink {
  3498. background-position: -208px 0;
  3499. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  3500. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3501. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  3502. padding: 5px;
  3503. padding-bottom: 1px; }
  3504. /* line 111, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3505. .x-html-editor-tb .x-toolbar {
  3506. position: static !important; }
  3507. /* line 114, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3508. .x-html-editor-tb .x-font-select {
  3509. font-size: 11px; }
  3510. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  3511. .x-html-editor-wrap textarea {
  3512. border: 0;
  3513. padding: 3px 2px;
  3514. overflow: auto; }
  3515. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3516. .x-panel,
  3517. .x-plain {
  3518. overflow: hidden;
  3519. position: relative; }
  3520. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3521. .x-panel-header-horizontal {
  3522. padding: 3px 5px 4px; }
  3523. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3524. .x-panel-header-vertical {
  3525. padding: 5px 4px; }
  3526. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3527. .x-panel-header-icon,
  3528. .x-window-header-icon {
  3529. width: 16px;
  3530. height: 16px;
  3531. background-repeat: no-repeat;
  3532. background-position: 0 0;
  3533. vertical-align: middle;
  3534. margin-right: 4px; }
  3535. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3536. .x-vertical .x-panel-header-icon,
  3537. .x-vertical .x-window-header-icon {
  3538. margin: 0 0 4px; }
  3539. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3540. .x-panel-header-draggable,
  3541. .x-panel-header-draggable .x-panel-header-text,
  3542. .x-window-header-draggable,
  3543. .x-window-header-draggable .x-window-header-text {
  3544. cursor: move; }
  3545. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3546. .x-panel-ghost, .x-window-ghost {
  3547. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  3548. opacity: 0.65;
  3549. cursor: move; }
  3550. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3551. .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 {
  3552. width: 100%; }
  3553. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3554. .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 {
  3555. height: 100%; }
  3556. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3557. .x-panel-header-text-container {
  3558. overflow: hidden;
  3559. -o-text-overflow: ellipsis;
  3560. text-overflow: ellipsis; }
  3561. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3562. .x-panel-header-text {
  3563. user-select: none;
  3564. -o-user-select: none;
  3565. -ms-user-select: none;
  3566. -moz-user-select: -moz-none;
  3567. -webkit-user-select: none;
  3568. cursor: default;
  3569. white-space: nowrap; }
  3570. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3571. .x-panel-header-left .x-vml-base,
  3572. .x-panel-header-right .x-vml-base {
  3573. left: -3px !important; }
  3574. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3575. .x-panel-body {
  3576. overflow: hidden;
  3577. position: relative;
  3578. font-size: 12px; }
  3579. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3580. .x-panel-header-vertical .x-surface {
  3581. padding-left: 1px; }
  3582. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3583. .x-opera .x-panel-header-vertical .x-surface,
  3584. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  3585. padding-left: 2px; }
  3586. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3587. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  3588. border-bottom-width: 1px !important; }
  3589. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3590. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  3591. border-left-width: 1px !important; }
  3592. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3593. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  3594. border-top-width: 1px !important; }
  3595. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3596. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  3597. border-right-width: 1px !important; }
  3598. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3599. .x-nlg .x-panel-header-vertical .x-frame-mc {
  3600. background-repeat: repeat-y; }
  3601. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3602. .x-panel-default {
  3603. border-color: #99bce8; }
  3604. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3605. .x-panel-header-default {
  3606. font-size: 11px;
  3607. border-color: #99bce8;
  3608. border-width: 1px;
  3609. border-style: solid; }
  3610. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3611. .x-nlg .x-panel-header-default-top {
  3612. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3613. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3614. .x-nlg .x-panel-header-default-bottom {
  3615. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3616. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3617. .x-nlg .x-panel-header-default-left {
  3618. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3619. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3620. .x-nlg .x-panel-header-default-right {
  3621. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3622. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3623. .x-nlg .x-panel-header-default-right {
  3624. background-position: top right; }
  3625. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3626. .x-nlg .x-panel-header-default-bottom {
  3627. background-position: bottom left; }
  3628. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3629. .x-panel-header-text-default {
  3630. color: #04408c;
  3631. font-size: 11px;
  3632. font-weight: bold;
  3633. font-family: tahoma, arial, verdana, sans-serif;
  3634. line-height: 17px; }
  3635. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3636. .x-panel-body-default {
  3637. background: white;
  3638. border-color: #99bce8;
  3639. color: black;
  3640. border-width: 1px;
  3641. border-style: solid; }
  3642. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3643. .x-panel-collapsed .x-window-header-default,
  3644. .x-panel-collapsed .x-panel-header-default {
  3645. border-color: #99bce8; }
  3646. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3647. .x-panel-header-default-vertical {
  3648. border-color: #99bce8; }
  3649. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3650. .x-panel-collapsed .x-panel-header-default-top {
  3651. -moz-border-radius-bottomleft: null;
  3652. -webkit-border-bottom-left-radius: null;
  3653. -o-border-bottom-left-radius: null;
  3654. -ms-border-bottom-left-radius: null;
  3655. -khtml-border-bottom-left-radius: null;
  3656. border-bottom-left-radius: null;
  3657. -moz-border-radius-bottomright: null;
  3658. -webkit-border-bottom-right-radius: null;
  3659. -o-border-bottom-right-radius: null;
  3660. -ms-border-bottom-right-radius: null;
  3661. -khtml-border-bottom-right-radius: null;
  3662. border-bottom-right-radius: null; }
  3663. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3664. .x-panel-collapsed .x-panel-header-default-right {
  3665. -moz-border-radius-topleft: null;
  3666. -webkit-border-top-left-radius: null;
  3667. -o-border-top-left-radius: null;
  3668. -ms-border-top-left-radius: null;
  3669. -khtml-border-top-left-radius: null;
  3670. border-top-left-radius: null;
  3671. -moz-border-radius-bottomleft: null;
  3672. -webkit-border-bottom-left-radius: null;
  3673. -o-border-bottom-left-radius: null;
  3674. -ms-border-bottom-left-radius: null;
  3675. -khtml-border-bottom-left-radius: null;
  3676. border-bottom-left-radius: null; }
  3677. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3678. .x-panel-collapsed .x-panel-header-default-bottom {
  3679. -moz-border-radius-topleft: null;
  3680. -webkit-border-top-left-radius: null;
  3681. -o-border-top-left-radius: null;
  3682. -ms-border-top-left-radius: null;
  3683. -khtml-border-top-left-radius: null;
  3684. border-top-left-radius: null;
  3685. -moz-border-radius-topright: null;
  3686. -webkit-border-top-right-radius: null;
  3687. -o-border-top-right-radius: null;
  3688. -ms-border-top-right-radius: null;
  3689. -khtml-border-top-right-radius: null;
  3690. border-top-right-radius: null; }
  3691. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3692. .x-panel-collapsed .x-panel-header-default-left {
  3693. -moz-border-radius-topright: null;
  3694. -webkit-border-top-right-radius: null;
  3695. -o-border-top-right-radius: null;
  3696. -ms-border-top-right-radius: null;
  3697. -khtml-border-top-right-radius: null;
  3698. border-top-right-radius: null;
  3699. -moz-border-radius-bottomright: null;
  3700. -webkit-border-bottom-right-radius: null;
  3701. -o-border-bottom-right-radius: null;
  3702. -ms-border-bottom-right-radius: null;
  3703. -khtml-border-bottom-right-radius: null;
  3704. border-bottom-right-radius: null; }
  3705. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3706. .x-panel-header-default-top {
  3707. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3708. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3709. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  3710. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  3711. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3712. .x-panel-header-default-right {
  3713. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3714. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3715. -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  3716. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  3717. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3718. .x-panel-header-default-bottom {
  3719. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3720. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3721. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  3722. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  3723. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3724. .x-panel-header-default-left {
  3725. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3726. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3727. -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  3728. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  3729. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3730. .x-panel-header-default-right-tc,
  3731. .x-panel-header-default-right-mc,
  3732. .x-panel-header-default-right-bc {
  3733. background-position: right 0; }
  3734. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3735. .x-panel-header-default-bottom-tc,
  3736. .x-panel-header-default-bottom-mc,
  3737. .x-panel-header-default-bottom-bc {
  3738. background-position: 0 bottom; }
  3739. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3740. .x-panel-default-framed {
  3741. border-color: #99bce8; }
  3742. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3743. .x-panel-header-default-framed {
  3744. font-size: 11px;
  3745. border-color: #99bce8;
  3746. border-width: 1px;
  3747. border-style: solid; }
  3748. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3749. .x-nlg .x-panel-header-default-framed-top {
  3750. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  3751. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3752. .x-nlg .x-panel-header-default-framed-bottom {
  3753. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  3754. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3755. .x-nlg .x-panel-header-default-framed-left {
  3756. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  3757. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3758. .x-nlg .x-panel-header-default-framed-right {
  3759. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  3760. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3761. .x-nlg .x-panel-header-default-framed-right {
  3762. background-position: top right; }
  3763. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3764. .x-nlg .x-panel-header-default-framed-bottom {
  3765. background-position: bottom left; }
  3766. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3767. .x-nbr .x-panel-header-default-framed {
  3768. background-image: none; }
  3769. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3770. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  3771. .x-nlg.x-opera .x-panel-header-default-framed-top,
  3772. .x-nlg.x-safari .x-panel-header-default-framed-top {
  3773. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  3774. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3775. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  3776. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  3777. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  3778. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  3779. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3780. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  3781. .x-nlg.x-opera .x-panel-header-default-framed-left,
  3782. .x-nlg.x-safari .x-panel-header-default-framed-left {
  3783. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  3784. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3785. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  3786. .x-nlg.x-opera .x-panel-header-default-framed-right,
  3787. .x-nlg.x-safari .x-panel-header-default-framed-right {
  3788. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  3789. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3790. .x-panel-header-text-default-framed {
  3791. color: #04408c;
  3792. font-size: 11px;
  3793. font-weight: bold;
  3794. font-family: tahoma, arial, verdana, sans-serif;
  3795. line-height: 17px; }
  3796. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3797. .x-panel-body-default-framed {
  3798. background: #dfe9f6;
  3799. border-color: #99bce8;
  3800. color: black;
  3801. border-width: 0;
  3802. border-style: solid; }
  3803. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3804. .x-panel-collapsed .x-window-header-default-framed,
  3805. .x-panel-collapsed .x-panel-header-default-framed {
  3806. border-color: #99bce8; }
  3807. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3808. .x-panel-header-default-framed-vertical {
  3809. border-color: #99bce8; }
  3810. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3811. .x-panel-default-framed {
  3812. -moz-border-radius: 4px;
  3813. -webkit-border-radius: 4px;
  3814. -o-border-radius: 4px;
  3815. -ms-border-radius: 4px;
  3816. -khtml-border-radius: 4px;
  3817. border-radius: 4px;
  3818. padding: 4px 4px 4px 4px;
  3819. border-width: 1px;
  3820. border-style: solid;
  3821. background-color: #dfe9f6; }
  3822. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3823. .x-nlg .x-panel-default-framed-mc {
  3824. background-color: #dfe9f6; }
  3825. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3826. .x-panel-header-default-framed-top {
  3827. -moz-border-radius-topleft: 4px;
  3828. -webkit-border-top-left-radius: 4px;
  3829. -o-border-top-left-radius: 4px;
  3830. -ms-border-top-left-radius: 4px;
  3831. -khtml-border-top-left-radius: 4px;
  3832. border-top-left-radius: 4px;
  3833. -moz-border-radius-topright: 4px;
  3834. -webkit-border-top-right-radius: 4px;
  3835. -o-border-top-right-radius: 4px;
  3836. -ms-border-top-right-radius: 4px;
  3837. -khtml-border-top-right-radius: 4px;
  3838. border-top-right-radius: 4px;
  3839. -moz-border-radius-bottomright: 0;
  3840. -webkit-border-bottom-right-radius: 0;
  3841. -o-border-bottom-right-radius: 0;
  3842. -ms-border-bottom-right-radius: 0;
  3843. -khtml-border-bottom-right-radius: 0;
  3844. border-bottom-right-radius: 0;
  3845. -moz-border-radius-bottomleft: 0;
  3846. -webkit-border-bottom-left-radius: 0;
  3847. -o-border-bottom-left-radius: 0;
  3848. -ms-border-bottom-left-radius: 0;
  3849. -khtml-border-bottom-left-radius: 0;
  3850. border-bottom-left-radius: 0;
  3851. padding: 3px 5px 4px 5px;
  3852. border-width: 1px 1px 0 1px;
  3853. border-style: solid;
  3854. background-color: #cbddf3; }
  3855. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3856. .x-nlg .x-panel-header-default-framed-top-mc {
  3857. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  3858. background-color: #cbddf3; }
  3859. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3860. .x-panel-header-default-framed-right {
  3861. -moz-border-radius-topleft: 0;
  3862. -webkit-border-top-left-radius: 0;
  3863. -o-border-top-left-radius: 0;
  3864. -ms-border-top-left-radius: 0;
  3865. -khtml-border-top-left-radius: 0;
  3866. border-top-left-radius: 0;
  3867. -moz-border-radius-topright: 4px;
  3868. -webkit-border-top-right-radius: 4px;
  3869. -o-border-top-right-radius: 4px;
  3870. -ms-border-top-right-radius: 4px;
  3871. -khtml-border-top-right-radius: 4px;
  3872. border-top-right-radius: 4px;
  3873. -moz-border-radius-bottomright: 4px;
  3874. -webkit-border-bottom-right-radius: 4px;
  3875. -o-border-bottom-right-radius: 4px;
  3876. -ms-border-bottom-right-radius: 4px;
  3877. -khtml-border-bottom-right-radius: 4px;
  3878. border-bottom-right-radius: 4px;
  3879. -moz-border-radius-bottomleft: 0;
  3880. -webkit-border-bottom-left-radius: 0;
  3881. -o-border-bottom-left-radius: 0;
  3882. -ms-border-bottom-left-radius: 0;
  3883. -khtml-border-bottom-left-radius: 0;
  3884. border-bottom-left-radius: 0;
  3885. padding: 5px 4px 5px 4px;
  3886. border-width: 1px 1px 1px 0;
  3887. border-style: solid;
  3888. background-color: #cbddf3; }
  3889. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3890. .x-nlg .x-panel-header-default-framed-right-mc {
  3891. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  3892. background-color: #cbddf3; }
  3893. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3894. .x-panel-header-default-framed-bottom {
  3895. -moz-border-radius-topleft: 0;
  3896. -webkit-border-top-left-radius: 0;
  3897. -o-border-top-left-radius: 0;
  3898. -ms-border-top-left-radius: 0;
  3899. -khtml-border-top-left-radius: 0;
  3900. border-top-left-radius: 0;
  3901. -moz-border-radius-topright: 0;
  3902. -webkit-border-top-right-radius: 0;
  3903. -o-border-top-right-radius: 0;
  3904. -ms-border-top-right-radius: 0;
  3905. -khtml-border-top-right-radius: 0;
  3906. border-top-right-radius: 0;
  3907. -moz-border-radius-bottomright: 4px;
  3908. -webkit-border-bottom-right-radius: 4px;
  3909. -o-border-bottom-right-radius: 4px;
  3910. -ms-border-bottom-right-radius: 4px;
  3911. -khtml-border-bottom-right-radius: 4px;
  3912. border-bottom-right-radius: 4px;
  3913. -moz-border-radius-bottomleft: 4px;
  3914. -webkit-border-bottom-left-radius: 4px;
  3915. -o-border-bottom-left-radius: 4px;
  3916. -ms-border-bottom-left-radius: 4px;
  3917. -khtml-border-bottom-left-radius: 4px;
  3918. border-bottom-left-radius: 4px;
  3919. padding: 3px 5px 4px 5px;
  3920. border-width: 0 1px 1px 1px;
  3921. border-style: solid;
  3922. background-color: #cbddf3; }
  3923. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3924. .x-nlg .x-panel-header-default-framed-bottom-mc {
  3925. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  3926. background-color: #cbddf3; }
  3927. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3928. .x-panel-header-default-framed-left {
  3929. -moz-border-radius-topleft: 4px;
  3930. -webkit-border-top-left-radius: 4px;
  3931. -o-border-top-left-radius: 4px;
  3932. -ms-border-top-left-radius: 4px;
  3933. -khtml-border-top-left-radius: 4px;
  3934. border-top-left-radius: 4px;
  3935. -moz-border-radius-topright: 0;
  3936. -webkit-border-top-right-radius: 0;
  3937. -o-border-top-right-radius: 0;
  3938. -ms-border-top-right-radius: 0;
  3939. -khtml-border-top-right-radius: 0;
  3940. border-top-right-radius: 0;
  3941. -moz-border-radius-bottomright: 0;
  3942. -webkit-border-bottom-right-radius: 0;
  3943. -o-border-bottom-right-radius: 0;
  3944. -ms-border-bottom-right-radius: 0;
  3945. -khtml-border-bottom-right-radius: 0;
  3946. border-bottom-right-radius: 0;
  3947. -moz-border-radius-bottomleft: 4px;
  3948. -webkit-border-bottom-left-radius: 4px;
  3949. -o-border-bottom-left-radius: 4px;
  3950. -ms-border-bottom-left-radius: 4px;
  3951. -khtml-border-bottom-left-radius: 4px;
  3952. border-bottom-left-radius: 4px;
  3953. padding: 5px 4px 5px 4px;
  3954. border-width: 1px 0 1px 1px;
  3955. border-style: solid;
  3956. background-color: #cbddf3; }
  3957. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  3958. .x-nlg .x-panel-header-default-framed-left-mc {
  3959. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  3960. background-color: #cbddf3; }
  3961. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3962. .x-panel-header-default-framed-top {
  3963. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3964. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3965. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3966. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  3967. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3968. .x-panel-header-default-framed-right {
  3969. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  3970. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  3971. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  3972. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  3973. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3974. .x-panel-header-default-framed-bottom {
  3975. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3976. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3977. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3978. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  3979. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3980. .x-panel-header-default-framed-left {
  3981. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3982. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3983. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  3984. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  3985. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3986. .x-panel .x-panel-header-default-framed-top {
  3987. border-bottom-width: 1px !important; }
  3988. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3989. .x-panel .x-panel-header-default-framed-right {
  3990. border-left-width: 1px !important; }
  3991. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3992. .x-panel .x-panel-header-default-framed-bottom {
  3993. border-top-width: 1px !important; }
  3994. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3995. .x-panel .x-panel-header-default-framed-left {
  3996. border-right-width: 1px !important; }
  3997. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  3998. .x-panel-header-default-framed-collapsed {
  3999. -moz-border-radius: 4px;
  4000. -webkit-border-radius: 4px;
  4001. -o-border-radius: 4px;
  4002. -ms-border-radius: 4px;
  4003. -khtml-border-radius: 4px;
  4004. border-radius: 4px; }
  4005. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4006. .x-panel-header-default-framed-collapsed-top {
  4007. -moz-border-radius-topleft: 4px;
  4008. -webkit-border-top-left-radius: 4px;
  4009. -o-border-top-left-radius: 4px;
  4010. -ms-border-top-left-radius: 4px;
  4011. -khtml-border-top-left-radius: 4px;
  4012. border-top-left-radius: 4px;
  4013. -moz-border-radius-topright: 4px;
  4014. -webkit-border-top-right-radius: 4px;
  4015. -o-border-top-right-radius: 4px;
  4016. -ms-border-top-right-radius: 4px;
  4017. -khtml-border-top-right-radius: 4px;
  4018. border-top-right-radius: 4px;
  4019. -moz-border-radius-bottomright: 4px;
  4020. -webkit-border-bottom-right-radius: 4px;
  4021. -o-border-bottom-right-radius: 4px;
  4022. -ms-border-bottom-right-radius: 4px;
  4023. -khtml-border-bottom-right-radius: 4px;
  4024. border-bottom-right-radius: 4px;
  4025. -moz-border-radius-bottomleft: 4px;
  4026. -webkit-border-bottom-left-radius: 4px;
  4027. -o-border-bottom-left-radius: 4px;
  4028. -ms-border-bottom-left-radius: 4px;
  4029. -khtml-border-bottom-left-radius: 4px;
  4030. border-bottom-left-radius: 4px;
  4031. padding: 3px 5px 4px 5px;
  4032. border-width: 1px;
  4033. border-style: solid;
  4034. background-color: #cbddf3; }
  4035. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4036. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  4037. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  4038. background-color: #cbddf3; }
  4039. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4040. .x-panel-header-default-framed-collapsed-right {
  4041. -moz-border-radius-topleft: 4px;
  4042. -webkit-border-top-left-radius: 4px;
  4043. -o-border-top-left-radius: 4px;
  4044. -ms-border-top-left-radius: 4px;
  4045. -khtml-border-top-left-radius: 4px;
  4046. border-top-left-radius: 4px;
  4047. -moz-border-radius-topright: 4px;
  4048. -webkit-border-top-right-radius: 4px;
  4049. -o-border-top-right-radius: 4px;
  4050. -ms-border-top-right-radius: 4px;
  4051. -khtml-border-top-right-radius: 4px;
  4052. border-top-right-radius: 4px;
  4053. -moz-border-radius-bottomright: 4px;
  4054. -webkit-border-bottom-right-radius: 4px;
  4055. -o-border-bottom-right-radius: 4px;
  4056. -ms-border-bottom-right-radius: 4px;
  4057. -khtml-border-bottom-right-radius: 4px;
  4058. border-bottom-right-radius: 4px;
  4059. -moz-border-radius-bottomleft: 4px;
  4060. -webkit-border-bottom-left-radius: 4px;
  4061. -o-border-bottom-left-radius: 4px;
  4062. -ms-border-bottom-left-radius: 4px;
  4063. -khtml-border-bottom-left-radius: 4px;
  4064. border-bottom-left-radius: 4px;
  4065. padding: 5px 4px 5px 4px;
  4066. border-width: 1px;
  4067. border-style: solid;
  4068. background-color: #cbddf3; }
  4069. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4070. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  4071. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  4072. background-color: #cbddf3; }
  4073. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4074. .x-panel-header-default-framed-collapsed-bottom {
  4075. -moz-border-radius-topleft: 4px;
  4076. -webkit-border-top-left-radius: 4px;
  4077. -o-border-top-left-radius: 4px;
  4078. -ms-border-top-left-radius: 4px;
  4079. -khtml-border-top-left-radius: 4px;
  4080. border-top-left-radius: 4px;
  4081. -moz-border-radius-topright: 4px;
  4082. -webkit-border-top-right-radius: 4px;
  4083. -o-border-top-right-radius: 4px;
  4084. -ms-border-top-right-radius: 4px;
  4085. -khtml-border-top-right-radius: 4px;
  4086. border-top-right-radius: 4px;
  4087. -moz-border-radius-bottomright: 4px;
  4088. -webkit-border-bottom-right-radius: 4px;
  4089. -o-border-bottom-right-radius: 4px;
  4090. -ms-border-bottom-right-radius: 4px;
  4091. -khtml-border-bottom-right-radius: 4px;
  4092. border-bottom-right-radius: 4px;
  4093. -moz-border-radius-bottomleft: 4px;
  4094. -webkit-border-bottom-left-radius: 4px;
  4095. -o-border-bottom-left-radius: 4px;
  4096. -ms-border-bottom-left-radius: 4px;
  4097. -khtml-border-bottom-left-radius: 4px;
  4098. border-bottom-left-radius: 4px;
  4099. padding: 3px 5px 4px 5px;
  4100. border-width: 1px;
  4101. border-style: solid;
  4102. background-color: #cbddf3; }
  4103. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4104. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  4105. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  4106. background-color: #cbddf3; }
  4107. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4108. .x-panel-header-default-framed-collapsed-left {
  4109. -moz-border-radius-topleft: 4px;
  4110. -webkit-border-top-left-radius: 4px;
  4111. -o-border-top-left-radius: 4px;
  4112. -ms-border-top-left-radius: 4px;
  4113. -khtml-border-top-left-radius: 4px;
  4114. border-top-left-radius: 4px;
  4115. -moz-border-radius-topright: 4px;
  4116. -webkit-border-top-right-radius: 4px;
  4117. -o-border-top-right-radius: 4px;
  4118. -ms-border-top-right-radius: 4px;
  4119. -khtml-border-top-right-radius: 4px;
  4120. border-top-right-radius: 4px;
  4121. -moz-border-radius-bottomright: 4px;
  4122. -webkit-border-bottom-right-radius: 4px;
  4123. -o-border-bottom-right-radius: 4px;
  4124. -ms-border-bottom-right-radius: 4px;
  4125. -khtml-border-bottom-right-radius: 4px;
  4126. border-bottom-right-radius: 4px;
  4127. -moz-border-radius-bottomleft: 4px;
  4128. -webkit-border-bottom-left-radius: 4px;
  4129. -o-border-bottom-left-radius: 4px;
  4130. -ms-border-bottom-left-radius: 4px;
  4131. -khtml-border-bottom-left-radius: 4px;
  4132. border-bottom-left-radius: 4px;
  4133. padding: 5px 4px 5px 4px;
  4134. border-width: 1px;
  4135. border-style: solid;
  4136. background-color: #cbddf3; }
  4137. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4138. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  4139. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  4140. background-color: #cbddf3; }
  4141. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4142. .x-panel-header-default-framed-right-tc,
  4143. .x-panel-header-default-framed-right-mc,
  4144. .x-panel-header-default-framed-right-bc {
  4145. background-position: right 0; }
  4146. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4147. .x-panel-header-default-framed-bottom-tc,
  4148. .x-panel-header-default-framed-bottom-mc,
  4149. .x-panel-header-default-framed-bottom-bc {
  4150. background-position: 0 bottom; }
  4151. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4152. .x-panel-header-plain,
  4153. .x-panel-body-plain {
  4154. border: 0;
  4155. padding: 0; }
  4156. /* line 2, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4157. .x-tip {
  4158. position: absolute;
  4159. overflow: visible;
  4160. /*pointer needs to be able to stick out*/
  4161. border-color: #8eaace; }
  4162. /* line 8, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4163. .x-tip .x-tip-header .x-box-item {
  4164. padding: 3px 3px 0; }
  4165. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4166. .x-tip .x-tip-header .x-tool {
  4167. padding: 0px 1px 0 0 !important; }
  4168. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4169. .x-tip {
  4170. -moz-border-radius: 3px;
  4171. -webkit-border-radius: 3px;
  4172. -o-border-radius: 3px;
  4173. -ms-border-radius: 3px;
  4174. -khtml-border-radius: 3px;
  4175. border-radius: 3px;
  4176. padding: 2px 2px 2px 2px;
  4177. border-width: 1px;
  4178. border-style: solid;
  4179. background-color: #e9f2ff; }
  4180. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4181. .x-nlg .x-tip-mc {
  4182. background-color: #e9f2ff; }
  4183. /* line 27, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4184. .x-tip-header-text {
  4185. user-select: none;
  4186. -o-user-select: none;
  4187. -ms-user-select: none;
  4188. -moz-user-select: -moz-none;
  4189. -webkit-user-select: none;
  4190. cursor: default;
  4191. color: #444444;
  4192. font-size: 11px;
  4193. font-weight: bold; }
  4194. /* line 36, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4195. .x-tip-header-draggable .x-tip-header-text {
  4196. cursor: move; }
  4197. /* line 43, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4198. .x-tip-body,
  4199. .x-form-invalid-tip-body {
  4200. overflow: hidden;
  4201. position: relative;
  4202. padding: 3px; }
  4203. /* line 51, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4204. .x-tip-header,
  4205. .x-tip-body,
  4206. .x-form-invalid-tip-body {
  4207. color: #444444;
  4208. font-size: 11px;
  4209. font-weight: normal; }
  4210. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4211. .x-tip-header a,
  4212. .x-tip-body a,
  4213. .x-form-invalid-tip-body a {
  4214. color: #2a2a2a; }
  4215. /* line 60, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4216. .x-tip-anchor {
  4217. position: absolute;
  4218. overflow: hidden;
  4219. height: 0;
  4220. width: 0;
  4221. border-style: solid;
  4222. border-width: 5px;
  4223. border-color: #8eaace;
  4224. zoom: 1; }
  4225. /* line 75, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4226. .x-border-box .x-tip-anchor {
  4227. width: 10px;
  4228. height: 10px; }
  4229. /* line 80, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4230. .x-tip-anchor-top {
  4231. border-top-color: transparent;
  4232. border-left-color: transparent;
  4233. border-right-color: transparent; }
  4234. /* line 93, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4235. .x-tip-anchor-bottom {
  4236. border-bottom-color: transparent;
  4237. border-left-color: transparent;
  4238. border-right-color: transparent; }
  4239. /* line 106, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4240. .x-tip-anchor-left {
  4241. border-top-color: transparent;
  4242. border-bottom-color: transparent;
  4243. border-left-color: transparent; }
  4244. /* line 119, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4245. .x-tip-anchor-right {
  4246. border-top-color: transparent;
  4247. border-bottom-color: transparent;
  4248. border-right-color: transparent; }
  4249. /* line 133, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4250. .x-form-invalid-tip {
  4251. border-color: #a1311f;
  4252. -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;
  4253. -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;
  4254. -o-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  4255. 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; }
  4256. /* line 142, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4257. .x-form-invalid-tip-body {
  4258. background: 1px 1px no-repeat;
  4259. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  4260. padding-left: 22px; }
  4261. /* line 147, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4262. .x-form-invalid-tip-body li {
  4263. margin-bottom: 4px; }
  4264. /* line 149, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  4265. .x-form-invalid-tip-body li.last {
  4266. margin-bottom: 0; }
  4267. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4268. .x-form-invalid-tip-default {
  4269. -moz-border-radius: 5px;
  4270. -webkit-border-radius: 5px;
  4271. -o-border-radius: 5px;
  4272. -ms-border-radius: 5px;
  4273. -khtml-border-radius: 5px;
  4274. border-radius: 5px;
  4275. padding: 4px 4px 4px 4px;
  4276. border-width: 1px;
  4277. border-style: solid;
  4278. background-color: white; }
  4279. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4280. .x-nlg .x-form-invalid-tip-default-mc {
  4281. background-color: white; }
  4282. /* line 2, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4283. .x-slider {
  4284. zoom: 1; }
  4285. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4286. .x-slider-inner {
  4287. position: relative;
  4288. left: 0;
  4289. top: 0;
  4290. overflow: visible;
  4291. zoom: 1; }
  4292. /* line 14, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4293. .x-slider-focus {
  4294. position: absolute;
  4295. left: 0;
  4296. top: 0;
  4297. width: 1px;
  4298. height: 1px;
  4299. line-height: 1px;
  4300. font-size: 1px;
  4301. -moz-outline: 0 none;
  4302. outline: 0 none;
  4303. user-select: none;
  4304. -o-user-select: none;
  4305. -ms-user-select: none;
  4306. -moz-user-select: -moz-none;
  4307. -webkit-user-select: none;
  4308. cursor: default;
  4309. display: block;
  4310. overflow: hidden; }
  4311. /* Horizontal styles */
  4312. /* line 30, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4313. .x-slider-horz {
  4314. padding-left: 7px;
  4315. background: transparent no-repeat 0 -24px;
  4316. width: 100%; }
  4317. /* line 36, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4318. .x-slider-horz .x-slider-end {
  4319. padding-right: 7px;
  4320. zoom: 1;
  4321. background: transparent no-repeat right -46px; }
  4322. /* line 42, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4323. .x-slider-horz .x-slider-inner {
  4324. background: transparent repeat-x 0 -2px;
  4325. height: 18px; }
  4326. /* line 47, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4327. .x-slider-horz .x-slider-thumb {
  4328. width: 14px;
  4329. height: 15px;
  4330. margin-left: -7px;
  4331. position: absolute;
  4332. left: 0;
  4333. top: 1px;
  4334. background: transparent no-repeat 0 0; }
  4335. /* line 57, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4336. .x-slider-horz .x-slider-thumb-over {
  4337. background-position: -14px -15px; }
  4338. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4339. .x-slider-horz .x-slider-thumb-drag {
  4340. background-position: -28px -30px; }
  4341. /* Vertical styles */
  4342. /* line 66, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4343. .x-slider-vert {
  4344. padding-top: 7px;
  4345. background: transparent no-repeat -44px 0; }
  4346. /* line 71, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4347. .x-slider-vert .x-slider-end {
  4348. padding-bottom: 7px;
  4349. zoom: 1;
  4350. background: transparent no-repeat -22px bottom;
  4351. width: 22px; }
  4352. /* line 78, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4353. .x-slider-vert .x-slider-inner {
  4354. background: transparent repeat-y 0 0;
  4355. width: 22px; }
  4356. /* line 83, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4357. .x-slider-vert .x-slider-thumb {
  4358. width: 15px;
  4359. height: 14px;
  4360. margin-bottom: -7px;
  4361. position: absolute;
  4362. left: 3px;
  4363. bottom: 0;
  4364. background: transparent no-repeat 0 0; }
  4365. /* line 93, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4366. .x-slider-vert .x-slider-thumb-over {
  4367. background-position: -15px -14px; }
  4368. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4369. .x-slider-vert .x-slider-thumb-drag {
  4370. background-position: -30px -28px; }
  4371. /* line 103, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4372. .x-slider-horz,
  4373. .x-slider-horz .x-slider-end,
  4374. .x-slider-horz .x-slider-inner {
  4375. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  4376. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4377. .x-slider-horz .x-slider-thumb {
  4378. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  4379. /* line 113, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4380. .x-slider-vert,
  4381. .x-slider-vert .x-slider-end,
  4382. .x-slider-vert .x-slider-inner {
  4383. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  4384. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  4385. .x-slider-vert .x-slider-thumb {
  4386. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  4387. /* line 2, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4388. .x-progress {
  4389. position: relative;
  4390. border-width: 1px;
  4391. border-style: solid;
  4392. -moz-border-radius: 0;
  4393. -webkit-border-radius: 0;
  4394. -o-border-radius: 0;
  4395. -ms-border-radius: 0;
  4396. -khtml-border-radius: 0;
  4397. border-radius: 0;
  4398. overflow: hidden;
  4399. height: 20px; }
  4400. /* line 13, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4401. .x-progress-bar {
  4402. height: 18px;
  4403. overflow: hidden;
  4404. position: absolute;
  4405. width: 0;
  4406. -moz-border-radius: 0;
  4407. -webkit-border-radius: 0;
  4408. -o-border-radius: 0;
  4409. -ms-border-radius: 0;
  4410. -khtml-border-radius: 0;
  4411. border-radius: 0;
  4412. border-right: 1px solid;
  4413. border-top: 1px solid; }
  4414. /* line 26, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4415. .x-progress-text {
  4416. overflow: hidden;
  4417. position: absolute;
  4418. padding: 0 5px;
  4419. height: 18px;
  4420. font-weight: bold;
  4421. font-size: 11px;
  4422. line-height: 16px;
  4423. text-align: center; }
  4424. /* line 41, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4425. .x-progress-text-back {
  4426. padding-top: 1px; }
  4427. /* line 88, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4428. .x-progress-default {
  4429. border-color: #6594cf; }
  4430. /* line 91, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4431. .x-progress-default .x-progress-bar {
  4432. border-right-color: #6594cf;
  4433. border-top-color: #c6d8ed;
  4434. background-image: none;
  4435. background-color: #73a3e0;
  4436. 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));
  4437. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4438. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4439. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4440. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  4441. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  4442. /* line 98, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4443. .x-progress-default .x-progress-text {
  4444. color: white; }
  4445. /* line 102, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4446. .x-progress-default .x-progress-text-back {
  4447. color: #396295; }
  4448. /* line 111, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  4449. .x-nlg .x-progress-default .x-progress-bar {
  4450. background: repeat-x;
  4451. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  4452. /* line 2, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4453. .x-toolbar {
  4454. font-size: 11px;
  4455. border: 1px solid;
  4456. padding: 2px 0 2px 2px; }
  4457. /* line 9, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4458. .x-toolbar .x-form-item-label {
  4459. font-size: 11px;
  4460. line-height: 15px; }
  4461. /* line 14, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4462. .x-toolbar .x-toolbar-item {
  4463. margin: 0 2px 0 0; }
  4464. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4465. .x-toolbar .x-toolbar-text {
  4466. margin-left: 4px;
  4467. margin-right: 6px;
  4468. white-space: nowrap;
  4469. color: #4c4c4c;
  4470. line-height: 16px;
  4471. font-family: tahoma, arial, verdana, sans-serif;
  4472. font-size: 11px;
  4473. font-weight: normal; }
  4474. /* line 29, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4475. .x-toolbar .x-toolbar-separator {
  4476. display: block;
  4477. font-size: 1px;
  4478. overflow: hidden;
  4479. cursor: default;
  4480. border: 0; }
  4481. /* line 37, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4482. .x-toolbar .x-toolbar-separator-horizontal {
  4483. margin: 0 3px 0 2px;
  4484. height: 14px;
  4485. width: 0px;
  4486. border-left: 1px solid #98c8ff;
  4487. border-right: 1px solid white; }
  4488. /* line 54, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4489. .x-toolbar-footer {
  4490. background: transparent;
  4491. border: 0px none;
  4492. margin-top: 3px;
  4493. padding: 2px 0 2px 6px; }
  4494. /* line 61, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4495. .x-toolbar-footer .x-box-inner {
  4496. border-width: 0; }
  4497. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4498. .x-toolbar-footer .x-toolbar-item {
  4499. margin: 0 6px 0 0; }
  4500. /* line 70, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4501. .x-toolbar-vertical {
  4502. padding: 2px 2px 0 2px; }
  4503. /* line 73, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4504. .x-toolbar-vertical .x-toolbar-item {
  4505. margin: 0 0 2px 0; }
  4506. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4507. .x-toolbar-vertical .x-toolbar-text {
  4508. margin-top: 4px;
  4509. margin-bottom: 6px; }
  4510. /* line 82, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4511. .x-toolbar-vertical .x-toolbar-separator-vertical {
  4512. margin: 2px 5px 3px 5px;
  4513. height: 0px;
  4514. width: 10px;
  4515. line-height: 0px;
  4516. border-top: 1px solid #98c8ff;
  4517. border-bottom: 1px solid white; }
  4518. /* line 94, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4519. .x-toolbar-scroller {
  4520. padding-left: 0; }
  4521. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4522. .x-toolbar-spacer {
  4523. width: 2px; }
  4524. /* line 103, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4525. .x-toolbar-more-icon {
  4526. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  4527. background-position: 2px center !important;
  4528. background-repeat: no-repeat; }
  4529. /* line 140, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4530. .x-toolbar-default {
  4531. border-color: #99bce8;
  4532. background-image: none;
  4533. background-color: #d3e1f1;
  4534. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  4535. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  4536. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  4537. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  4538. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  4539. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  4540. /* line 151, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4541. .x-nlg .x-toolbar-default {
  4542. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  4543. background-repeat: repeat-x; }
  4544. /* line 119, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  4545. .x-toolbar-plain {
  4546. border: 0; }
  4547. /* line 2, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4548. .x-window {
  4549. outline: none;
  4550. overflow: hidden; }
  4551. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4552. .x-window .x-window-wrap {
  4553. position: relative; }
  4554. /* line 11, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4555. .x-window-body {
  4556. position: relative;
  4557. border-style: solid;
  4558. overflow: hidden; }
  4559. /* line 20, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4560. .x-window-maximized .x-window-wrap .x-window-header {
  4561. -moz-border-radius: 0 !important;
  4562. -webkit-border-radius: 0 !important;
  4563. -o-border-radius: 0 !important;
  4564. -ms-border-radius: 0 !important;
  4565. -khtml-border-radius: 0 !important;
  4566. border-radius: 0 !important; }
  4567. /* line 26, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4568. .x-window-header-top {
  4569. margin-bottom: -2px; }
  4570. /* line 29, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4571. .x-window-header-body-horizontal {
  4572. margin-top: -1px; }
  4573. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4574. .x-window-header-bottom {
  4575. margin-top: -1px;
  4576. margin-bottom: -1px; }
  4577. /* line 38, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4578. .x-window-header-left {
  4579. margin-right: -1px; }
  4580. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4581. .x-window-header-right {
  4582. margin-left: -1px; }
  4583. /* line 47, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4584. .x-window-header-vertical .x-surface {
  4585. padding-left: 1px; }
  4586. /* line 54, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4587. .x-window-collapsed .x-window-header-vertical {
  4588. -moz-border-radius: 5px;
  4589. -webkit-border-radius: 5px;
  4590. -o-border-radius: 5px;
  4591. -ms-border-radius: 5px;
  4592. -khtml-border-radius: 5px;
  4593. border-radius: 5px; }
  4594. /* line 57, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4595. .x-window-collapsed .x-window-header-horizontal {
  4596. -moz-border-radius: 5px;
  4597. -webkit-border-radius: 5px;
  4598. -o-border-radius: 5px;
  4599. -ms-border-radius: 5px;
  4600. -khtml-border-radius: 5px;
  4601. border-radius: 5px; }
  4602. /* line 62, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4603. .x-window-collapsed .x-window-header-left {
  4604. padding-right: 5px !important;
  4605. margin-right: 0; }
  4606. /* line 67, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4607. .x-window-collapsed .x-window-header-right {
  4608. padding-left: 5px !important;
  4609. margin-left: 0; }
  4610. /* line 72, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4611. .x-window-collapsed .x-window-header-top {
  4612. padding-bottom: 5px !important;
  4613. margin-bottom: -1px; }
  4614. /* line 77, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4615. .x-window-collapsed .x-window-header-bottom {
  4616. padding-top: 5px !important;
  4617. margin-top: 0; }
  4618. /* line 85, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4619. .x-window-header-left .x-vml-base,
  4620. .x-window-header-right .x-vml-base {
  4621. left: -3px !important; }
  4622. /* line 93, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4623. .x-opera .x-window-header-vertical .x-surface,
  4624. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  4625. padding-left: 2px; }
  4626. /* line 99, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4627. .x-window-header-text-container {
  4628. overflow: hidden;
  4629. -o-text-overflow: ellipsis;
  4630. text-overflow: ellipsis; }
  4631. /* line 105, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4632. .x-window-header-text {
  4633. user-select: none;
  4634. -o-user-select: none;
  4635. -ms-user-select: none;
  4636. -moz-user-select: -moz-none;
  4637. -webkit-user-select: none;
  4638. cursor: default;
  4639. white-space: nowrap; }
  4640. /* line 155, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4641. .x-window-default {
  4642. border-color: #a2b1c5;
  4643. -moz-border-radius: 5px 5px;
  4644. -webkit-border-radius: 5px 5px;
  4645. -o-border-radius: 5px 5px;
  4646. -ms-border-radius: 5px 5px;
  4647. -khtml-border-radius: 5px 5px;
  4648. border-radius: 5px 5px;
  4649. -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;
  4650. -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;
  4651. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4652. 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; }
  4653. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4654. .x-window-default {
  4655. -moz-border-radius-topleft: 5px;
  4656. -webkit-border-top-left-radius: 5px;
  4657. -o-border-top-left-radius: 5px;
  4658. -ms-border-top-left-radius: 5px;
  4659. -khtml-border-top-left-radius: 5px;
  4660. border-top-left-radius: 5px;
  4661. -moz-border-radius-topright: 5px;
  4662. -webkit-border-top-right-radius: 5px;
  4663. -o-border-top-right-radius: 5px;
  4664. -ms-border-top-right-radius: 5px;
  4665. -khtml-border-top-right-radius: 5px;
  4666. border-top-right-radius: 5px;
  4667. -moz-border-radius-bottomright: 5px;
  4668. -webkit-border-bottom-right-radius: 5px;
  4669. -o-border-bottom-right-radius: 5px;
  4670. -ms-border-bottom-right-radius: 5px;
  4671. -khtml-border-bottom-right-radius: 5px;
  4672. border-bottom-right-radius: 5px;
  4673. -moz-border-radius-bottomleft: 5px;
  4674. -webkit-border-bottom-left-radius: 5px;
  4675. -o-border-bottom-left-radius: 5px;
  4676. -ms-border-bottom-left-radius: 5px;
  4677. -khtml-border-bottom-left-radius: 5px;
  4678. border-bottom-left-radius: 5px;
  4679. padding: 4px 4px 4px 4px;
  4680. border-width: 1px;
  4681. border-style: solid;
  4682. background-color: #ced9e7; }
  4683. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4684. .x-nlg .x-window-default-mc {
  4685. background-color: #ced9e7; }
  4686. /* line 174, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4687. .x-window-body-default {
  4688. border-color: #99bbe8;
  4689. border-width: 1px;
  4690. background: #dfe8f6;
  4691. color: black; }
  4692. /* line 184, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4693. .x-window-header-default {
  4694. font-size: 11px;
  4695. border-color: #a2b1c5;
  4696. zoom: 1; }
  4697. /* line 190, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4698. .x-window-header-text-default {
  4699. color: #04468c;
  4700. font-weight: bold;
  4701. line-height: 17px;
  4702. font-family: tahoma, arial, verdana, sans-serif;
  4703. font-size: 11px; }
  4704. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4705. .x-window-header-default-top {
  4706. -moz-border-radius-topleft: 5px;
  4707. -webkit-border-top-left-radius: 5px;
  4708. -o-border-top-left-radius: 5px;
  4709. -ms-border-top-left-radius: 5px;
  4710. -khtml-border-top-left-radius: 5px;
  4711. border-top-left-radius: 5px;
  4712. -moz-border-radius-topright: 5px;
  4713. -webkit-border-top-right-radius: 5px;
  4714. -o-border-top-right-radius: 5px;
  4715. -ms-border-top-right-radius: 5px;
  4716. -khtml-border-top-right-radius: 5px;
  4717. border-top-right-radius: 5px;
  4718. -moz-border-radius-bottomright: 0;
  4719. -webkit-border-bottom-right-radius: 0;
  4720. -o-border-bottom-right-radius: 0;
  4721. -ms-border-bottom-right-radius: 0;
  4722. -khtml-border-bottom-right-radius: 0;
  4723. border-bottom-right-radius: 0;
  4724. -moz-border-radius-bottomleft: 0;
  4725. -webkit-border-bottom-left-radius: 0;
  4726. -o-border-bottom-left-radius: 0;
  4727. -ms-border-bottom-left-radius: 0;
  4728. -khtml-border-bottom-left-radius: 0;
  4729. border-bottom-left-radius: 0;
  4730. padding: 4px 5px 0 5px;
  4731. border-width: 1px 1px 0 1px;
  4732. border-style: solid;
  4733. background-color: #ced9e7; }
  4734. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4735. .x-nlg .x-window-header-default-top-mc {
  4736. background-color: #ced9e7; }
  4737. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4738. .x-window-header-default-right {
  4739. -moz-border-radius-topleft: 0;
  4740. -webkit-border-top-left-radius: 0;
  4741. -o-border-top-left-radius: 0;
  4742. -ms-border-top-left-radius: 0;
  4743. -khtml-border-top-left-radius: 0;
  4744. border-top-left-radius: 0;
  4745. -moz-border-radius-topright: 5px;
  4746. -webkit-border-top-right-radius: 5px;
  4747. -o-border-top-right-radius: 5px;
  4748. -ms-border-top-right-radius: 5px;
  4749. -khtml-border-top-right-radius: 5px;
  4750. border-top-right-radius: 5px;
  4751. -moz-border-radius-bottomright: 5px;
  4752. -webkit-border-bottom-right-radius: 5px;
  4753. -o-border-bottom-right-radius: 5px;
  4754. -ms-border-bottom-right-radius: 5px;
  4755. -khtml-border-bottom-right-radius: 5px;
  4756. border-bottom-right-radius: 5px;
  4757. -moz-border-radius-bottomleft: 0;
  4758. -webkit-border-bottom-left-radius: 0;
  4759. -o-border-bottom-left-radius: 0;
  4760. -ms-border-bottom-left-radius: 0;
  4761. -khtml-border-bottom-left-radius: 0;
  4762. border-bottom-left-radius: 0;
  4763. padding: 5px 4px 5px 0;
  4764. border-width: 1px 1px 1px 0;
  4765. border-style: solid;
  4766. background-color: #ced9e7; }
  4767. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4768. .x-nlg .x-window-header-default-right-mc {
  4769. background-color: #ced9e7; }
  4770. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4771. .x-window-header-default-bottom {
  4772. -moz-border-radius-topleft: 0;
  4773. -webkit-border-top-left-radius: 0;
  4774. -o-border-top-left-radius: 0;
  4775. -ms-border-top-left-radius: 0;
  4776. -khtml-border-top-left-radius: 0;
  4777. border-top-left-radius: 0;
  4778. -moz-border-radius-topright: 0;
  4779. -webkit-border-top-right-radius: 0;
  4780. -o-border-top-right-radius: 0;
  4781. -ms-border-top-right-radius: 0;
  4782. -khtml-border-top-right-radius: 0;
  4783. border-top-right-radius: 0;
  4784. -moz-border-radius-bottomright: 5px;
  4785. -webkit-border-bottom-right-radius: 5px;
  4786. -o-border-bottom-right-radius: 5px;
  4787. -ms-border-bottom-right-radius: 5px;
  4788. -khtml-border-bottom-right-radius: 5px;
  4789. border-bottom-right-radius: 5px;
  4790. -moz-border-radius-bottomleft: 5px;
  4791. -webkit-border-bottom-left-radius: 5px;
  4792. -o-border-bottom-left-radius: 5px;
  4793. -ms-border-bottom-left-radius: 5px;
  4794. -khtml-border-bottom-left-radius: 5px;
  4795. border-bottom-left-radius: 5px;
  4796. padding: 0 5px 4px 5px;
  4797. border-width: 0 1px 1px 1px;
  4798. border-style: solid;
  4799. background-color: #ced9e7; }
  4800. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4801. .x-nlg .x-window-header-default-bottom-mc {
  4802. background-color: #ced9e7; }
  4803. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4804. .x-window-header-default-left {
  4805. -moz-border-radius-topleft: 5px;
  4806. -webkit-border-top-left-radius: 5px;
  4807. -o-border-top-left-radius: 5px;
  4808. -ms-border-top-left-radius: 5px;
  4809. -khtml-border-top-left-radius: 5px;
  4810. border-top-left-radius: 5px;
  4811. -moz-border-radius-topright: 0;
  4812. -webkit-border-top-right-radius: 0;
  4813. -o-border-top-right-radius: 0;
  4814. -ms-border-top-right-radius: 0;
  4815. -khtml-border-top-right-radius: 0;
  4816. border-top-right-radius: 0;
  4817. -moz-border-radius-bottomright: 0;
  4818. -webkit-border-bottom-right-radius: 0;
  4819. -o-border-bottom-right-radius: 0;
  4820. -ms-border-bottom-right-radius: 0;
  4821. -khtml-border-bottom-right-radius: 0;
  4822. border-bottom-right-radius: 0;
  4823. -moz-border-radius-bottomleft: 5px;
  4824. -webkit-border-bottom-left-radius: 5px;
  4825. -o-border-bottom-left-radius: 5px;
  4826. -ms-border-bottom-left-radius: 5px;
  4827. -khtml-border-bottom-left-radius: 5px;
  4828. border-bottom-left-radius: 5px;
  4829. padding: 5px 0px 5px 4px;
  4830. border-width: 1px 0 1px 1px;
  4831. border-style: solid;
  4832. background-color: #ced9e7; }
  4833. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4834. .x-nlg .x-window-header-default-left-mc {
  4835. background-color: #ced9e7; }
  4836. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4837. .x-window-header-default-collapsed-top {
  4838. -moz-border-radius-topleft: 5px;
  4839. -webkit-border-top-left-radius: 5px;
  4840. -o-border-top-left-radius: 5px;
  4841. -ms-border-top-left-radius: 5px;
  4842. -khtml-border-top-left-radius: 5px;
  4843. border-top-left-radius: 5px;
  4844. -moz-border-radius-topright: 5px;
  4845. -webkit-border-top-right-radius: 5px;
  4846. -o-border-top-right-radius: 5px;
  4847. -ms-border-top-right-radius: 5px;
  4848. -khtml-border-top-right-radius: 5px;
  4849. border-top-right-radius: 5px;
  4850. -moz-border-radius-bottomright: 5px;
  4851. -webkit-border-bottom-right-radius: 5px;
  4852. -o-border-bottom-right-radius: 5px;
  4853. -ms-border-bottom-right-radius: 5px;
  4854. -khtml-border-bottom-right-radius: 5px;
  4855. border-bottom-right-radius: 5px;
  4856. -moz-border-radius-bottomleft: 5px;
  4857. -webkit-border-bottom-left-radius: 5px;
  4858. -o-border-bottom-left-radius: 5px;
  4859. -ms-border-bottom-left-radius: 5px;
  4860. -khtml-border-bottom-left-radius: 5px;
  4861. border-bottom-left-radius: 5px;
  4862. padding: 4px 5px 4px 5px;
  4863. border-width: 1px;
  4864. border-style: solid;
  4865. background-color: #ced9e7; }
  4866. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4867. .x-nlg .x-window-header-default-collapsed-top-mc {
  4868. background-color: #ced9e7; }
  4869. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4870. .x-window-header-default-collapsed-right {
  4871. -moz-border-radius-topleft: 5px;
  4872. -webkit-border-top-left-radius: 5px;
  4873. -o-border-top-left-radius: 5px;
  4874. -ms-border-top-left-radius: 5px;
  4875. -khtml-border-top-left-radius: 5px;
  4876. border-top-left-radius: 5px;
  4877. -moz-border-radius-topright: 5px;
  4878. -webkit-border-top-right-radius: 5px;
  4879. -o-border-top-right-radius: 5px;
  4880. -ms-border-top-right-radius: 5px;
  4881. -khtml-border-top-right-radius: 5px;
  4882. border-top-right-radius: 5px;
  4883. -moz-border-radius-bottomright: 5px;
  4884. -webkit-border-bottom-right-radius: 5px;
  4885. -o-border-bottom-right-radius: 5px;
  4886. -ms-border-bottom-right-radius: 5px;
  4887. -khtml-border-bottom-right-radius: 5px;
  4888. border-bottom-right-radius: 5px;
  4889. -moz-border-radius-bottomleft: 5px;
  4890. -webkit-border-bottom-left-radius: 5px;
  4891. -o-border-bottom-left-radius: 5px;
  4892. -ms-border-bottom-left-radius: 5px;
  4893. -khtml-border-bottom-left-radius: 5px;
  4894. border-bottom-left-radius: 5px;
  4895. padding: 5px 4px 5px 4px;
  4896. border-width: 1px;
  4897. border-style: solid;
  4898. background-color: #ced9e7; }
  4899. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4900. .x-nlg .x-window-header-default-collapsed-right-mc {
  4901. background-color: #ced9e7; }
  4902. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4903. .x-window-header-default-collapsed-bottom {
  4904. -moz-border-radius-topleft: 5px;
  4905. -webkit-border-top-left-radius: 5px;
  4906. -o-border-top-left-radius: 5px;
  4907. -ms-border-top-left-radius: 5px;
  4908. -khtml-border-top-left-radius: 5px;
  4909. border-top-left-radius: 5px;
  4910. -moz-border-radius-topright: 5px;
  4911. -webkit-border-top-right-radius: 5px;
  4912. -o-border-top-right-radius: 5px;
  4913. -ms-border-top-right-radius: 5px;
  4914. -khtml-border-top-right-radius: 5px;
  4915. border-top-right-radius: 5px;
  4916. -moz-border-radius-bottomright: 5px;
  4917. -webkit-border-bottom-right-radius: 5px;
  4918. -o-border-bottom-right-radius: 5px;
  4919. -ms-border-bottom-right-radius: 5px;
  4920. -khtml-border-bottom-right-radius: 5px;
  4921. border-bottom-right-radius: 5px;
  4922. -moz-border-radius-bottomleft: 5px;
  4923. -webkit-border-bottom-left-radius: 5px;
  4924. -o-border-bottom-left-radius: 5px;
  4925. -ms-border-bottom-left-radius: 5px;
  4926. -khtml-border-bottom-left-radius: 5px;
  4927. border-bottom-left-radius: 5px;
  4928. padding: 4px 5px 4px 5px;
  4929. border-width: 1px;
  4930. border-style: solid;
  4931. background-color: #ced9e7; }
  4932. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4933. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  4934. background-color: #ced9e7; }
  4935. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4936. .x-window-header-default-collapsed-left {
  4937. -moz-border-radius-topleft: 5px;
  4938. -webkit-border-top-left-radius: 5px;
  4939. -o-border-top-left-radius: 5px;
  4940. -ms-border-top-left-radius: 5px;
  4941. -khtml-border-top-left-radius: 5px;
  4942. border-top-left-radius: 5px;
  4943. -moz-border-radius-topright: 5px;
  4944. -webkit-border-top-right-radius: 5px;
  4945. -o-border-top-right-radius: 5px;
  4946. -ms-border-top-right-radius: 5px;
  4947. -khtml-border-top-right-radius: 5px;
  4948. border-top-right-radius: 5px;
  4949. -moz-border-radius-bottomright: 5px;
  4950. -webkit-border-bottom-right-radius: 5px;
  4951. -o-border-bottom-right-radius: 5px;
  4952. -ms-border-bottom-right-radius: 5px;
  4953. -khtml-border-bottom-right-radius: 5px;
  4954. border-bottom-right-radius: 5px;
  4955. -moz-border-radius-bottomleft: 5px;
  4956. -webkit-border-bottom-left-radius: 5px;
  4957. -o-border-bottom-left-radius: 5px;
  4958. -ms-border-bottom-left-radius: 5px;
  4959. -khtml-border-bottom-left-radius: 5px;
  4960. border-bottom-left-radius: 5px;
  4961. padding: 5px 4px 5px 4px;
  4962. border-width: 1px;
  4963. border-style: solid;
  4964. background-color: #ced9e7; }
  4965. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4966. .x-nlg .x-window-header-default-collapsed-left-mc {
  4967. background-color: #ced9e7; }
  4968. /* line 213, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4969. .x-window-header-default-top {
  4970. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4971. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4972. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4973. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  4974. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4975. .x-window-header-default-right {
  4976. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  4977. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  4978. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  4979. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  4980. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4981. .x-window-header-default-bottom {
  4982. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4983. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4984. -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4985. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  4986. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4987. .x-window-header-default-left {
  4988. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4989. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4990. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  4991. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  4992. /* line 126, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  4993. .x-window-body-plain {
  4994. background: transparent; }
  4995. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  4996. .x-message-box .x-window-body {
  4997. background-color: #ced9e7;
  4998. border: none; }
  4999. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5000. .x-message-box .x-progress-wrap {
  5001. margin-top: 4px; }
  5002. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5003. .x-message-box-icon {
  5004. width: 47px;
  5005. height: 32px; }
  5006. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5007. .x-message-box-info,
  5008. .x-message-box-warning,
  5009. .x-message-box-question,
  5010. .x-message-box-error {
  5011. background: transparent no-repeat top left; }
  5012. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5013. .x-message-box .x-msg-box-wait {
  5014. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  5015. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5016. .x-message-box-info {
  5017. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  5018. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5019. .x-message-box-warning {
  5020. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  5021. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5022. .x-message-box-question {
  5023. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  5024. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  5025. .x-message-box-error {
  5026. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  5027. /* line 71, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5028. .x-tab-bar {
  5029. position: relative;
  5030. background-color: transparent;
  5031. background-image: none;
  5032. background-color: #cbdbef;
  5033. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  5034. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  5035. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  5036. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  5037. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  5038. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  5039. font-size: 11px; }
  5040. /* line 78, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5041. .x-nlg .x-tab-bar {
  5042. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  5043. /* line 83, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5044. .x-tab-bar-default-plain,
  5045. .x-nlg .x-tab-bar-default-plain {
  5046. background: transparent none; }
  5047. /* line 88, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5048. .x-tab-bar-body {
  5049. border-style: solid;
  5050. border-color: #99bce8;
  5051. position: relative;
  5052. z-index: 2;
  5053. zoom: 1; }
  5054. /* Top Tabs */
  5055. /* line 3, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5056. .x-tab-bar-top .x-tab-bar-body {
  5057. height: 20px;
  5058. border-width: 1px 1px 0;
  5059. padding: 1px 0 3px; }
  5060. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5061. .x-tab-bar-top .x-tab-bar-strip {
  5062. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5063. top: 22px;
  5064. border-width: 1px 1px 0;
  5065. height: 2px; }
  5066. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5067. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  5068. height: 25px; }
  5069. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5070. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  5071. height: 3px; }
  5072. /* line 3, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5073. .x-tab-bar-top .x-tab-bar-body-default-plain {
  5074. height: 20px;
  5075. border-width: 0;
  5076. padding: 0 0 2px; }
  5077. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5078. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5079. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  5080. top: 20px;
  5081. border-width: 1px 1px 0 1px;
  5082. height: 2px; }
  5083. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5084. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  5085. height: 22px; }
  5086. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5087. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  5088. height: 3px; }
  5089. /* Bottom Tabs */
  5090. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5091. .x-tab-bar-bottom .x-tab-bar-body {
  5092. height: 20px;
  5093. border-width: 0 1px 1px;
  5094. padding: 3px 0 1px; }
  5095. /* line 36, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5096. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  5097. position: relative;
  5098. top: -1px; }
  5099. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5100. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  5101. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  5102. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  5103. height: 22px; }
  5104. /* line 48, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5105. .x-tab-bar-bottom .x-tab-bar-strip {
  5106. top: 0;
  5107. border-width: 0 1px 1px 1px;
  5108. height: 2px; }
  5109. /* line 56, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5110. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  5111. height: 25px; }
  5112. /* line 60, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5113. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  5114. height: 3px; }
  5115. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5116. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5117. height: 20px;
  5118. border-width: 0;
  5119. padding: 3px 0 0; }
  5120. /* line 36, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5121. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  5122. position: relative;
  5123. top: -1px; }
  5124. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5125. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  5126. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  5127. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  5128. height: 21px; }
  5129. /* line 48, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5130. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5131. top: 0;
  5132. border-width: 0 1px 1px 1px;
  5133. height: 2px; }
  5134. /* line 56, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5135. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  5136. height: 23px; }
  5137. /* line 60, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5138. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  5139. height: 3px; }
  5140. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  5141. .x-tab-bar-strip-default,
  5142. .x-tab-bar-strip-default-plain {
  5143. font-size: 0;
  5144. line-height: 0;
  5145. position: absolute;
  5146. z-index: 1;
  5147. border-style: solid;
  5148. overflow: hidden;
  5149. border-color: #99bce8;
  5150. background-color: #deecfd;
  5151. zoom: 1; }
  5152. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5153. .x-tab-default-top {
  5154. -moz-border-radius-topleft: 4px;
  5155. -webkit-border-top-left-radius: 4px;
  5156. -o-border-top-left-radius: 4px;
  5157. -ms-border-top-left-radius: 4px;
  5158. -khtml-border-top-left-radius: 4px;
  5159. border-top-left-radius: 4px;
  5160. -moz-border-radius-topright: 4px;
  5161. -webkit-border-top-right-radius: 4px;
  5162. -o-border-top-right-radius: 4px;
  5163. -ms-border-top-right-radius: 4px;
  5164. -khtml-border-top-right-radius: 4px;
  5165. border-top-right-radius: 4px;
  5166. -moz-border-radius-bottomright: 0;
  5167. -webkit-border-bottom-right-radius: 0;
  5168. -o-border-bottom-right-radius: 0;
  5169. -ms-border-bottom-right-radius: 0;
  5170. -khtml-border-bottom-right-radius: 0;
  5171. border-bottom-right-radius: 0;
  5172. -moz-border-radius-bottomleft: 0;
  5173. -webkit-border-bottom-left-radius: 0;
  5174. -o-border-bottom-left-radius: 0;
  5175. -ms-border-bottom-left-radius: 0;
  5176. -khtml-border-bottom-left-radius: 0;
  5177. border-bottom-left-radius: 0;
  5178. padding: 3px 3px 0 3px;
  5179. border-width: 1px 1px 0 1px;
  5180. border-style: solid;
  5181. background-color: #deecfd; }
  5182. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5183. .x-nlg .x-tab-default-top-mc {
  5184. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  5185. background-color: #deecfd; }
  5186. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5187. .x-tab-default-bottom {
  5188. -moz-border-radius-topleft: 0;
  5189. -webkit-border-top-left-radius: 0;
  5190. -o-border-top-left-radius: 0;
  5191. -ms-border-top-left-radius: 0;
  5192. -khtml-border-top-left-radius: 0;
  5193. border-top-left-radius: 0;
  5194. -moz-border-radius-topright: 0;
  5195. -webkit-border-top-right-radius: 0;
  5196. -o-border-top-right-radius: 0;
  5197. -ms-border-top-right-radius: 0;
  5198. -khtml-border-top-right-radius: 0;
  5199. border-top-right-radius: 0;
  5200. -moz-border-radius-bottomright: 4px;
  5201. -webkit-border-bottom-right-radius: 4px;
  5202. -o-border-bottom-right-radius: 4px;
  5203. -ms-border-bottom-right-radius: 4px;
  5204. -khtml-border-bottom-right-radius: 4px;
  5205. border-bottom-right-radius: 4px;
  5206. -moz-border-radius-bottomleft: 4px;
  5207. -webkit-border-bottom-left-radius: 4px;
  5208. -o-border-bottom-left-radius: 4px;
  5209. -ms-border-bottom-left-radius: 4px;
  5210. -khtml-border-bottom-left-radius: 4px;
  5211. border-bottom-left-radius: 4px;
  5212. padding: 0 3px 3px 3px;
  5213. border-width: 0 1px 1px 1px;
  5214. border-style: solid;
  5215. background-color: #deecfd; }
  5216. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5217. .x-nlg .x-tab-default-bottom-mc {
  5218. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  5219. background-color: #deecfd; }
  5220. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5221. .x-tab {
  5222. z-index: 1;
  5223. margin: 0 0 0 2px;
  5224. display: inline-block;
  5225. zoom: 1;
  5226. *display: inline;
  5227. white-space: nowrap;
  5228. height: 20px;
  5229. border-color: #8db3e3;
  5230. cursor: pointer;
  5231. cursor: hand; }
  5232. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5233. .x-tab button {
  5234. cursor: pointer;
  5235. cursor: hand; }
  5236. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5237. .x-tab em {
  5238. display: block;
  5239. padding: 0 6px;
  5240. line-height: 1px; }
  5241. /* line 50, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5242. .x-tab button {
  5243. background: none;
  5244. border: 0;
  5245. padding: 0;
  5246. margin: 0;
  5247. -webkit-appearance: none;
  5248. font-size: 11px;
  5249. font-weight: bold;
  5250. font-family: tahoma, arial, verdana, sans-serif;
  5251. color: #416da3;
  5252. outline: 0 none;
  5253. overflow-x: visible; }
  5254. /* line 68, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5255. .x-tab button::-moz-focus-inner {
  5256. border: 0;
  5257. padding: 0; }
  5258. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5259. .x-tab button .x-tab-inner {
  5260. background-color: transparent;
  5261. background-repeat: no-repeat;
  5262. background-position: 0 -2px;
  5263. display: block;
  5264. text-align: center;
  5265. white-space: nowrap;
  5266. text-overflow: ellipsis;
  5267. -o-text-overflow: ellipsis;
  5268. overflow: hidden; }
  5269. /* line 86, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5270. .x-tab img {
  5271. display: none; }
  5272. /* line 92, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5273. .x-border-box .x-tab-default-top {
  5274. height: 21px; }
  5275. /* line 95, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5276. .x-border-box .x-tab-default-bottom {
  5277. height: 21px; }
  5278. /* line 123, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5279. .x-tab-default-top {
  5280. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5281. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5282. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5283. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5284. border-bottom: 1px solid #99bce8 !important; }
  5285. /* line 133, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5286. .x-tab-default-top em {
  5287. padding-bottom: 3px; }
  5288. /* line 138, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5289. .x-tab-default-top button,
  5290. .x-tab-default-top .x-tab-inner {
  5291. height: 13px;
  5292. line-height: 13px; }
  5293. /* line 147, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5294. .x-safari4 .x-tab-default-top .x-tab-inner,
  5295. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  5296. line-height: 11px; }
  5297. /* line 152, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5298. .x-nbr .x-tab-default-top {
  5299. border-bottom-width: 1px !important; }
  5300. /* line 156, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5301. .x-tab-default-top-active {
  5302. border-bottom-color: #deecfd !important; }
  5303. /* line 162, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5304. .x-tab-default-bottom {
  5305. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5306. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5307. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5308. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5309. border-top: 1px solid #99bce8 !important;
  5310. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5311. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5312. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  5313. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  5314. /* line 177, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5315. .x-tab-default-bottom em {
  5316. padding-top: 3px; }
  5317. /* line 182, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5318. .x-tab-default-bottom button,
  5319. .x-tab-default-bottom .x-tab-inner {
  5320. height: 13px;
  5321. line-height: 13px; }
  5322. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5323. .x-nbr .x-tab-default-bottom {
  5324. border-top-width: 1px !important; }
  5325. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5326. .x-tab-default-bottom-active {
  5327. border-top-color: #deecfd !important; }
  5328. /* line 196, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5329. .x-tab-default-disabled {
  5330. cursor: default;
  5331. border-color: #bbd2ef;
  5332. background-image: none;
  5333. background-color: #e1ecfa;
  5334. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5335. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5336. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5337. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5338. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5339. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5340. /* line 202, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5341. .x-tab-default-disabled button {
  5342. color: #c3b3b3 !important; }
  5343. /* line 208, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5344. .x-tab-icon-text-left .x-tab-inner {
  5345. padding-left: 20px; }
  5346. /* line 213, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5347. .x-tab button {
  5348. position: relative; }
  5349. /* line 217, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5350. .x-tab-icon {
  5351. position: absolute;
  5352. background-repeat: no-repeat;
  5353. background-position: 0 -1px;
  5354. top: 0;
  5355. left: 0;
  5356. right: auto;
  5357. bottom: 0;
  5358. width: 18px;
  5359. height: 18px; }
  5360. /* line 232, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5361. .x-strict .x-ie8 .x-tab button,
  5362. .x-strict .x-ie9 .x-tab button {
  5363. overflow-y: visible; }
  5364. /* line 237, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5365. .x-tab-default-disabled .x-tab-icon {
  5366. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  5367. opacity: 0.5; }
  5368. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  5369. /* line 242, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5370. .x-tab-noicon .x-tab-icon {
  5371. display: none; }
  5372. /* line 268, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5373. .x-tab-top-over {
  5374. background-image: none;
  5375. background-color: #e8f2ff;
  5376. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5377. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5378. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5379. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5380. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5381. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5382. /* line 271, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5383. .x-tab-bottom-over {
  5384. background-image: none;
  5385. background-color: #e8f2ff;
  5386. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  5387. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5388. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5389. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5390. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  5391. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  5392. /* line 276, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5393. .x-tab-active {
  5394. z-index: 3; }
  5395. /* line 282, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5396. .x-tab-active button {
  5397. color: #15498b; }
  5398. /* line 298, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5399. .x-tab-top-active {
  5400. background-image: none;
  5401. background-color: #deecfd;
  5402. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5403. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5404. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5405. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5406. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5407. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5408. /* line 301, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5409. .x-tab-bottom-active {
  5410. background-image: none;
  5411. background-color: #deecfd;
  5412. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  5413. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5414. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5415. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5416. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  5417. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  5418. /* line 306, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5419. .x-tab-disabled {
  5420. border-color: #bbd2ef; }
  5421. /* line 311, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5422. .x-tab-disabled button {
  5423. color: #c3b3b3; }
  5424. /* line 327, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5425. .x-tab-top-disabled {
  5426. background-image: none;
  5427. background: transparent;
  5428. background-image: none;
  5429. background-color: #e1ecfa;
  5430. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5431. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  5432. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  5433. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  5434. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  5435. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  5436. /* line 332, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5437. .x-tab-bottom-disabled {
  5438. background-image: none;
  5439. background: transparent;
  5440. background-image: none;
  5441. background-color: #e1ecfa;
  5442. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  5443. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5444. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5445. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5446. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  5447. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  5448. /* line 341, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5449. .x-nlg .x-tab-top {
  5450. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  5451. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5452. .x-nlg .x-tab-bottom {
  5453. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  5454. /* line 346, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5455. .x-nlg .x-tab-top-over {
  5456. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  5457. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5458. .x-nlg .x-tab-bottom-over {
  5459. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  5460. /* line 351, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5461. .x-nlg .x-tab-top-active {
  5462. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  5463. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5464. .x-nlg .x-tab-bottom-active {
  5465. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  5466. /* line 356, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5467. .x-nlg .x-tab-top-disabled {
  5468. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  5469. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5470. .x-nlg .x-tab-bottom-disabled {
  5471. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  5472. /* line 362, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5473. .x-tab-closable em {
  5474. padding-right: 14px; }
  5475. /* line 366, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5476. .x-tab-close-btn {
  5477. position: absolute;
  5478. top: 2px;
  5479. right: 2px;
  5480. width: 11px;
  5481. height: 11px;
  5482. font-size: 0;
  5483. line-height: 0;
  5484. text-indent: -999px;
  5485. background: no-repeat;
  5486. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  5487. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5488. opacity: 0.6; }
  5489. /* line 380, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5490. .x-nbr .x-tab-close-btn {
  5491. top: 0px;
  5492. right: 0px; }
  5493. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  5494. /* line 386, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5495. a.x-tab-close-btn:hover {
  5496. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  5497. opacity: 1; }
  5498. /* Include the element name to raise the specificity to equal the :hover */
  5499. /* line 391, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  5500. .x-tab-default-disabled a.x-tab-close-btn {
  5501. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  5502. opacity: 0.3; }
  5503. /* line 5, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5504. .x-autowidth-table table.x-grid-table {
  5505. table-layout: auto;
  5506. width: auto!important; }
  5507. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5508. .x-tree-no-lines .x-tree-elbow {
  5509. background-color: transparent; }
  5510. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5511. .x-tree-no-lines .x-tree-elbow-end {
  5512. background-color: transparent; }
  5513. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5514. .x-tree-no-lines .x-tree-elbow-line {
  5515. background-color: transparent; }
  5516. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5517. .x-tree-arrows .x-tree-elbow-plus {
  5518. background: transparent no-repeat 0 0; }
  5519. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5520. .x-tree-arrows .x-tree-elbow-end-plus {
  5521. background: transparent no-repeat 0 0; }
  5522. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5523. .x-tree-arrows .x-tree-elbow-end-minus {
  5524. background: transparent no-repeat -16px 0; }
  5525. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5526. .x-tree-arrows .x-tree-elbow-minus {
  5527. background: transparent no-repeat -16px 0; }
  5528. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5529. .x-tree-arrows .x-tree-elbow {
  5530. background-color: transparent !important; }
  5531. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5532. .x-tree-arrows .x-tree-elbow-end {
  5533. background-color: transparent !important; }
  5534. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5535. .x-tree-arrows .x-tree-elbow-line {
  5536. background-color: transparent !important; }
  5537. /* line 53, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5538. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  5539. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  5540. background-position: -32px 0; }
  5541. /* line 58, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5542. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  5543. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  5544. background-position: -48px 0; }
  5545. /* line 63, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5546. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5547. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5548. background-position: -16px 0; }
  5549. /* line 68, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5550. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  5551. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  5552. background-position: -48px 0; }
  5553. /* line 75, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5554. .x-tree-elbow-plus,
  5555. .x-tree-elbow-minus,
  5556. .x-tree-elbow-end-plus,
  5557. .x-tree-elbow-end-minus {
  5558. cursor: pointer; }
  5559. /* line 81, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5560. .x-tree-lines .x-tree-elbow {
  5561. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  5562. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5563. .x-tree-lines .x-tree-elbow-end {
  5564. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  5565. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5566. .x-tree-lines .x-tree-elbow-plus {
  5567. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  5568. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5569. .x-tree-lines .x-tree-elbow-end-plus {
  5570. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  5571. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5572. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  5573. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  5574. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5575. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5576. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  5577. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5578. .x-tree-lines .x-tree-elbow-line {
  5579. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  5580. /* line 112, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5581. .x-tree-no-lines .x-tree-elbow-plus,
  5582. .x-tree-no-lines .x-tree-elbow-end-plus {
  5583. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  5584. /* line 117, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5585. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  5586. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  5587. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  5588. /* line 126, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5589. .x-tree-arrows .x-tree-elbow-plus,
  5590. .x-tree-arrows .x-tree-elbow-minus,
  5591. .x-tree-arrows .x-tree-elbow-end-plus,
  5592. .x-tree-arrows .x-tree-elbow-end-minus {
  5593. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  5594. /* line 131, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5595. .x-tree-icon {
  5596. margin: 2px 3px 0 0; }
  5597. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5598. .x-grid-with-row-lines .x-tree-icon {
  5599. margin-top: 1px; }
  5600. /* line 144, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5601. .x-tree-elbow,
  5602. .x-tree-elbow-end,
  5603. .x-tree-elbow-plus,
  5604. .x-tree-elbow-end-plus,
  5605. .x-tree-elbow-empty,
  5606. .x-tree-elbow-line {
  5607. height: 20px;
  5608. width: 16px; }
  5609. /* line 155, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5610. .x-grid-with-row-lines .x-tree-elbow,
  5611. .x-grid-with-row-lines .x-tree-elbow-end,
  5612. .x-grid-with-row-lines .x-tree-elbow-plus,
  5613. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  5614. .x-grid-with-row-lines .x-tree-elbow-empty,
  5615. .x-grid-with-row-lines .x-tree-elbow-line {
  5616. height: 19px;
  5617. background-position: 0 -1px; }
  5618. /* line 161, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5619. .x-tree-icon-leaf {
  5620. width: 16px;
  5621. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  5622. /* line 166, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5623. .x-tree-icon-parent {
  5624. width: 16px;
  5625. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  5626. /* line 171, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5627. .x-grid-tree-node-expanded .x-tree-icon-parent {
  5628. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  5629. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5630. .x-grid-rowbody {
  5631. padding: 0; }
  5632. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5633. .x-grid-cell-treecolumn .x-grid-cell-inner {
  5634. padding: 0;
  5635. line-height: 19px; }
  5636. /* line 184, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5637. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  5638. line-height: 17px; }
  5639. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5640. .x-tree-panel .x-grid-cell-inner {
  5641. cursor: pointer; }
  5642. /* line 190, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5643. .x-tree-panel .x-grid-cell-inner img {
  5644. display: inline-block;
  5645. vertical-align: top; }
  5646. /* line 211, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5647. .x-grid-editor-on-text-node .x-form-text {
  5648. padding-left: 1px;
  5649. padding-right: 1px; }
  5650. /* line 224, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5651. .x-opera .x-grid-editor-on-text-node .x-form-text {
  5652. padding-left: 2px;
  5653. padding-right: 2px; }
  5654. /* line 230, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5655. .x-tree-checkbox {
  5656. margin: 4px 3px 0 0;
  5657. display: inline-block;
  5658. vertical-align: top;
  5659. width: 13px;
  5660. height: 13px;
  5661. background: no-repeat;
  5662. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  5663. overflow: hidden;
  5664. padding: 0;
  5665. border: 0; }
  5666. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5667. .x-tree-checkbox::-moz-focus-inner {
  5668. padding: 0;
  5669. border: 0; }
  5670. /* line 249, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5671. .x-grid-with-row-lines .x-tree-checkbox {
  5672. margin-top: 3px; }
  5673. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5674. .x-tree-checkbox-checked {
  5675. background-position: 0 -13px; }
  5676. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5677. .x-tree-drop-ok-append .x-dd-drop-icon {
  5678. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  5679. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5680. .x-tree-drop-ok-above .x-dd-drop-icon {
  5681. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  5682. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5683. .x-tree-drop-ok-below .x-dd-drop-icon {
  5684. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  5685. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5686. .x-tree-drop-ok-between .x-dd-drop-icon {
  5687. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  5688. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5689. .x-grid-tree-loading .x-tree-icon {
  5690. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  5691. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5692. .x-tree-ddindicator {
  5693. height: 1px;
  5694. border-width: 1px 0px 0px;
  5695. border-style: dotted;
  5696. border-color: green; }
  5697. /* line 284, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5698. .x-grid-tree-loading span {
  5699. font-style: italic;
  5700. color: #444444; }
  5701. /* line 289, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  5702. .x-tree-animator-wrap {
  5703. overflow: hidden; }
  5704. /* line 2, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5705. .x-surface {
  5706. display: -moz-inline-box;
  5707. -moz-box-orient: vertical;
  5708. display: inline-block;
  5709. vertical-align: middle;
  5710. *vertical-align: auto;
  5711. overflow: hidden; }
  5712. /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  5713. .x-surface {
  5714. *display: inline; }
  5715. /* line 7, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5716. .rvml {
  5717. behavior: url(#default#VML); }
  5718. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5719. .x-surface tspan {
  5720. user-select: none;
  5721. -o-user-select: none;
  5722. -ms-user-select: none;
  5723. -moz-user-select: -moz-none;
  5724. -webkit-user-select: none;
  5725. cursor: default; }
  5726. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5727. .x-vml-sprite {
  5728. position: absolute;
  5729. left: 0;
  5730. top: 0;
  5731. width: 1px;
  5732. height: 1px; }
  5733. /* line 23, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5734. .x-vml-group {
  5735. position: absolute;
  5736. left: 0;
  5737. top: 0;
  5738. width: 1000px;
  5739. height: 1000px; }
  5740. /* line 31, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5741. .x-vml-measure-span {
  5742. position: absolute;
  5743. left: -9999em;
  5744. top: -9999em;
  5745. padding: 0;
  5746. margin: 0;
  5747. display: inline; }
  5748. /* line 40, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5749. .x-vml-base {
  5750. position: relative;
  5751. top: 0;
  5752. left: 0;
  5753. overflow: hidden;
  5754. display: inline-block; }
  5755. /* line 48, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5756. .x-vml-base {
  5757. position: relative;
  5758. top: 0;
  5759. left: 0;
  5760. overflow: hidden;
  5761. display: inline-block; }
  5762. /* line 56, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  5763. svg, vml {
  5764. overflow: hidden; }
  5765. /* line 2, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  5766. .x-viewport, .x-viewport body {
  5767. margin: 0;
  5768. padding: 0;
  5769. border: 0 none;
  5770. overflow: hidden;
  5771. height: 100%;
  5772. position: static; }
  5773. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5774. .x-dd-drag-proxy {
  5775. z-index: 1000000!important; }
  5776. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5777. .x-dd-drag-repair .x-dd-drag-ghost {
  5778. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  5779. opacity: 0.6; }
  5780. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5781. .x-dd-drag-repair .x-dd-drop-icon {
  5782. display: none; }
  5783. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5784. .x-dd-drag-ghost {
  5785. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  5786. opacity: 0.85;
  5787. padding: 5px;
  5788. padding-left: 20px;
  5789. white-space: nowrap;
  5790. color: #000;
  5791. font: normal 11px tahoma, arial, verdana, sans-serif;
  5792. border: 1px solid;
  5793. border-color: #ddd #bbb #bbb #ddd;
  5794. background-color: #fff; }
  5795. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5796. .x-dd-drop-icon {
  5797. position: absolute;
  5798. top: 3px;
  5799. left: 3px;
  5800. display: block;
  5801. width: 16px;
  5802. height: 16px;
  5803. background-color: transparent;
  5804. background-position: center;
  5805. background-repeat: no-repeat;
  5806. z-index: 1; }
  5807. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5808. .x-view-selector {
  5809. position: absolute;
  5810. left: 0;
  5811. top: 0;
  5812. width: 0;
  5813. background-color: #c3daf9;
  5814. border: 1px dotted #3399bb;
  5815. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  5816. opacity: 0.5;
  5817. zoom: 1; }
  5818. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5819. .x-dd-drop-nodrop .x-dd-drop-icon {
  5820. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  5821. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5822. .x-dd-drop-ok .x-dd-drop-icon {
  5823. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  5824. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  5825. .x-dd-drop-ok-add .x-dd-drop-icon {
  5826. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  5827. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5828. .x-resizable-handle {
  5829. position: absolute;
  5830. z-index: 100;
  5831. font-size: 1px;
  5832. line-height: 6px;
  5833. overflow: hidden;
  5834. zoom: 1;
  5835. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  5836. opacity: 0;
  5837. background-color: #fff; }
  5838. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5839. .x-collapsed .x-resizable-handle {
  5840. display: none; }
  5841. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5842. .x-resizable-handle-east {
  5843. width: 6px;
  5844. height: 100%;
  5845. right: 0;
  5846. top: 0; }
  5847. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5848. .x-resizable-over .x-resizable-handle-east {
  5849. cursor: e-resize; }
  5850. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5851. .x-resizable-handle-south {
  5852. width: 100%;
  5853. height: 6px;
  5854. left: 0;
  5855. bottom: 0; }
  5856. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5857. .x-resizable-over .x-resizable-handle-south {
  5858. cursor: s-resize; }
  5859. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5860. .x-resizable-handle-west {
  5861. width: 6px;
  5862. height: 100%;
  5863. left: 0;
  5864. top: 0; }
  5865. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5866. .x-resizable-over .x-resizable-handle-west {
  5867. cursor: w-resize; }
  5868. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5869. .x-resizable-handle-north {
  5870. width: 100%;
  5871. height: 6px;
  5872. left: 0;
  5873. top: 0; }
  5874. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5875. .x-resizable-over .x-resizable-handle-north {
  5876. cursor: n-resize; }
  5877. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5878. .x-resizable-handle-southeast {
  5879. width: 6px;
  5880. height: 6px;
  5881. right: 0;
  5882. bottom: 0;
  5883. z-index: 101; }
  5884. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5885. .x-resizable-over .x-resizable-handle-southeast {
  5886. cursor: se-resize; }
  5887. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5888. .x-resizable-handle-northwest {
  5889. width: 6px;
  5890. height: 6px;
  5891. left: 0;
  5892. top: 0;
  5893. z-index: 101; }
  5894. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5895. .x-resizable-over .x-resizable-handle-northwest {
  5896. cursor: nw-resize; }
  5897. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5898. .x-resizable-handle-northeast {
  5899. width: 6px;
  5900. height: 6px;
  5901. right: 0;
  5902. top: 0;
  5903. z-index: 101; }
  5904. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5905. .x-resizable-over .x-resizable-handle-northeast {
  5906. cursor: ne-resize; }
  5907. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5908. .x-resizable-handle-southwest {
  5909. width: 6px;
  5910. height: 6px;
  5911. left: 0;
  5912. bottom: 0;
  5913. z-index: 101; }
  5914. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5915. .x-resizable-over .x-resizable-handle-southwest {
  5916. cursor: sw-resize; }
  5917. /*IE rounding error*/
  5918. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5919. .x-ie .x-resizable-handle-east {
  5920. margin-right: -1px;
  5921. /*IE rounding error*/ }
  5922. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5923. .x-ie .x-resizable-handle-south {
  5924. margin-bottom: -1px; }
  5925. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5926. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  5927. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  5928. opacity: 1; }
  5929. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5930. .x-window .x-window-handle {
  5931. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  5932. opacity: 0; }
  5933. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5934. .x-window-collapsed .x-window-handle {
  5935. display: none; }
  5936. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5937. .x-resizable-proxy {
  5938. border: 1px dashed #3b5a82;
  5939. position: absolute;
  5940. left: 0;
  5941. top: 0;
  5942. overflow: hidden;
  5943. z-index: 50000; }
  5944. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5945. .x-resizable-overlay {
  5946. position: absolute;
  5947. left: 0;
  5948. top: 0;
  5949. width: 100%;
  5950. height: 100%;
  5951. display: none;
  5952. z-index: 200000;
  5953. background-color: #fff;
  5954. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  5955. opacity: 0; }
  5956. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5957. .x-resizable-over .x-resizable-handle-east,
  5958. .x-resizable-over .x-resizable-handle-west,
  5959. .x-resizable-pinned .x-resizable-handle-east,
  5960. .x-resizable-pinned .x-resizable-handle-west {
  5961. background-position: left;
  5962. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  5963. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5964. .x-resizable-over .x-resizable-handle-south,
  5965. .x-resizable-over .x-resizable-handle-north,
  5966. .x-resizable-pinned .x-resizable-handle-south,
  5967. .x-resizable-pinned .x-resizable-handle-north {
  5968. background-position: top;
  5969. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  5970. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5971. .x-resizable-over .x-resizable-handle-southeast,
  5972. .x-resizable-pinned .x-resizable-handle-southeast {
  5973. background-position: top left;
  5974. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  5975. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5976. .x-resizable-over .x-resizable-handle-northwest,
  5977. .x-resizable-pinned .x-resizable-handle-northwest {
  5978. background-position: bottom right;
  5979. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  5980. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5981. .x-resizable-over .x-resizable-handle-northeast,
  5982. .x-resizable-pinned .x-resizable-handle-northeast {
  5983. background-position: bottom left;
  5984. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  5985. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  5986. .x-resizable-over .x-resizable-handle-southwest,
  5987. .x-resizable-pinned .x-resizable-handle-southwest {
  5988. background-position: top right;
  5989. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  5990. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  5991. .x-splitter .x-collapse-el {
  5992. position: absolute;
  5993. cursor: pointer;
  5994. background-color: transparent;
  5995. background-repeat: no-repeat !important; }
  5996. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  5997. .x-layout-split-left,
  5998. .x-layout-split-right {
  5999. top: 50%;
  6000. margin-top: -17px;
  6001. width: 5px;
  6002. height: 35px; }
  6003. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6004. .x-layout-split-top,
  6005. .x-layout-split-bottom {
  6006. left: 50%;
  6007. width: 35px;
  6008. height: 5px;
  6009. margin-left: -17px; }
  6010. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6011. .x-layout-split-left {
  6012. background: no-repeat top right;
  6013. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6014. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6015. .x-layout-split-right {
  6016. background: no-repeat top left;
  6017. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6018. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6019. .x-layout-split-top {
  6020. background: no-repeat top left;
  6021. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6022. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6023. .x-layout-split-bottom {
  6024. background: no-repeat top left;
  6025. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6026. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6027. .x-splitter-collapsed .x-layout-split-left {
  6028. background: no-repeat top left;
  6029. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  6030. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6031. .x-splitter-collapsed .x-layout-split-right {
  6032. background: no-repeat top right;
  6033. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  6034. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6035. .x-splitter-collapsed .x-layout-split-top {
  6036. background: no-repeat top left;
  6037. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  6038. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6039. .x-splitter-collapsed .x-layout-split-bottom {
  6040. background: no-repeat top left;
  6041. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  6042. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6043. .x-splitter-horizontal {
  6044. cursor: e-resize;
  6045. cursor: row-resize;
  6046. font-size: 1px; }
  6047. /* line 80, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6048. .x-splitter-vertical {
  6049. cursor: e-resize;
  6050. cursor: col-resize;
  6051. font-size: 1px; }
  6052. /* line 85, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6053. .x-splitter-collapsed {
  6054. cursor: default; }
  6055. /* line 89, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6056. .x-splitter-active {
  6057. z-index: 4;
  6058. font-size: 1px;
  6059. background-color: #b4b4b4;
  6060. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6061. opacity: 0.8; }
  6062. /* line 96, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6063. .x-splitter-active .x-collapse-el {
  6064. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6065. opacity: 0.3; }
  6066. /* line 101, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  6067. .x-proxy-el {
  6068. position: absolute;
  6069. background: #b4b4b4;
  6070. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  6071. opacity: 0.8; }
  6072. /**
  6073. * Dock Layouts
  6074. * @todo move this somewhere else?
  6075. */
  6076. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6077. .x-docked {
  6078. position: absolute !important;
  6079. z-index: 1; }
  6080. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6081. .x-docked-top {
  6082. border-bottom-width: 0 !important; }
  6083. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6084. .x-docked-bottom {
  6085. border-top-width: 0 !important; }
  6086. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6087. .x-docked-left {
  6088. border-right-width: 0 !important; }
  6089. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6090. .x-docked-right {
  6091. border-left-width: 0 !important; }
  6092. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6093. .x-docked-noborder-top {
  6094. border-top-width: 0 !important; }
  6095. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6096. .x-docked-noborder-right {
  6097. border-right-width: 0 !important; }
  6098. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6099. .x-docked-noborder-bottom {
  6100. border-bottom-width: 0 !important; }
  6101. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6102. .x-docked-noborder-left {
  6103. border-left-width: 0 !important; }
  6104. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6105. .x-box-inner {
  6106. overflow: hidden;
  6107. zoom: 1;
  6108. position: relative;
  6109. left: 0;
  6110. top: 0; }
  6111. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6112. .x-box-item {
  6113. position: absolute !important;
  6114. left: 0;
  6115. top: 0; }
  6116. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6117. .x-rtl .x-box-item {
  6118. right: 0;
  6119. left: auto; }
  6120. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6121. .x-box-layout-ct,
  6122. .x-border-layout-ct {
  6123. overflow: hidden;
  6124. zoom: 1; }
  6125. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6126. .x-border-layout-ct {
  6127. background-color: #dfe8f6;
  6128. position: relative; }
  6129. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6130. .x-overflow-hidden {
  6131. overflow: hidden !important; }
  6132. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6133. .x-inline-children > * {
  6134. display: inline-block !important; }
  6135. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6136. .x-abs-layout-ct {
  6137. position: relative; }
  6138. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6139. .x-abs-layout-item {
  6140. position: absolute !important; }
  6141. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6142. .x-fit-item {
  6143. position: relative; }
  6144. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6145. .x-border-region-slide-in {
  6146. z-index: 5; }
  6147. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6148. .x-region-collapsed-placeholder {
  6149. z-index: 4; }
  6150. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6151. .x-accordion-hd .x-panel-header-text {
  6152. color: black;
  6153. font-weight: normal; }
  6154. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6155. .x-accordion-hd {
  6156. background: #d9e7f8 !important;
  6157. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  6158. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  6159. -o-box-shadow: inset 0 0 0 0 #d9e7f8;
  6160. box-shadow: inset 0 0 0 0 #d9e7f8; }
  6161. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6162. .x-accordion-hd .x-tool-collapse-top,
  6163. .x-accordion-hd .x-tool-collapse-right,
  6164. .x-accordion-hd .x-tool-collapse-bottom,
  6165. .x-accordion-hd .x-tool-collapse-left {
  6166. background-position: 0 -255px; }
  6167. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6168. .x-accordion-hd .x-tool-expand-top,
  6169. .x-accordion-hd .x-tool-expand-right,
  6170. .x-accordion-hd .x-tool-expand-bottom,
  6171. .x-accordion-hd .x-tool-expand-left {
  6172. background-position: 0 -240px; }
  6173. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6174. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  6175. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  6176. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  6177. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  6178. background-position: -15px -255px; }
  6179. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6180. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  6181. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  6182. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  6183. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  6184. background-position: -15px -240px; }
  6185. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6186. .x-accordion-hd {
  6187. border-width: 1px 0 1px 0 !important;
  6188. padding: 4px 5px 5px 5px;
  6189. border-top-color: #f3f7fb !important; }
  6190. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6191. .x-accordion-body {
  6192. border-width: 0 !important; }
  6193. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6194. .x-accordion-hd-sibling-expanded {
  6195. border-top-color: #99bce8 !important;
  6196. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6197. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6198. -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
  6199. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  6200. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6201. .x-accordion-hd-last-collapsed {
  6202. border-bottom-color: #d9e7f8 !important; }
  6203. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6204. .x-frame-tl,
  6205. .x-frame-tr,
  6206. .x-frame-tc,
  6207. .x-frame-bl,
  6208. .x-frame-br,
  6209. .x-frame-bc {
  6210. overflow: hidden;
  6211. background-repeat: no-repeat; }
  6212. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6213. .x-frame-tc,
  6214. .x-frame-bc {
  6215. background-repeat: repeat-x; }
  6216. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6217. .x-frame-mc {
  6218. position: relative;
  6219. background-repeat: repeat-x;
  6220. overflow: hidden; }
  6221. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6222. .x-box-scroller-left {
  6223. float: left;
  6224. height: 100%;
  6225. z-index: 5; }
  6226. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6227. .x-box-scroller-left .x-toolbar-scroll-left,
  6228. .x-box-scroller-left .x-tabbar-scroll-left {
  6229. width: 18px;
  6230. position: relative;
  6231. cursor: pointer;
  6232. height: 20px;
  6233. background: transparent no-repeat -18px 0;
  6234. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  6235. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6236. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6237. background-position: 0 0; }
  6238. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6239. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  6240. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  6241. background-position: -18px 0;
  6242. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6243. opacity: 0.5;
  6244. cursor: default; }
  6245. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6246. .x-box-scroller-left .x-toolbar-scroll-left {
  6247. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  6248. background-position: -14px 0; }
  6249. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6250. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  6251. background-position: 0 0; }
  6252. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6253. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  6254. background-position: -14px 0; }
  6255. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6256. .x-box-scroller-left .x-toolbar-scroll-left {
  6257. width: 14px;
  6258. height: 22px;
  6259. border-bottom: 1px solid #8db2e3; }
  6260. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6261. .x-horizontal-box-overflow-body {
  6262. float: left; }
  6263. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6264. .x-box-scroller-right {
  6265. float: right;
  6266. height: 100%;
  6267. z-index: 5; }
  6268. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6269. .x-box-scroller-right .x-toolbar-scroll-right,
  6270. .x-box-scroller-right .x-tabbar-scroll-right {
  6271. width: 18px;
  6272. position: relative;
  6273. cursor: pointer;
  6274. height: 20px;
  6275. background: transparent no-repeat 0 0;
  6276. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  6277. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6278. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6279. background-position: -18px 0; }
  6280. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6281. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  6282. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  6283. background-position: 0 0;
  6284. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6285. opacity: 0.5;
  6286. cursor: default; }
  6287. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6288. .x-box-scroller-right .x-toolbar-scroll-right {
  6289. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  6290. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6291. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  6292. background-position: -14px 0; }
  6293. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6294. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  6295. background-position: 0 0; }
  6296. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6297. .x-box-scroller-right .x-toolbar-scroll-right {
  6298. width: 14px;
  6299. height: 22px;
  6300. border-bottom: 1px solid #8db2e3; }
  6301. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6302. .x-box-scroller-top .x-box-scroller {
  6303. line-height: 0;
  6304. font-size: 0; }
  6305. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6306. .x-box-scroller-top .x-menu-scroll-top {
  6307. background: transparent no-repeat center center;
  6308. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  6309. height: 8px;
  6310. cursor: pointer; }
  6311. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6312. .x-box-scroller-bottom .x-box-scroller {
  6313. line-height: 0;
  6314. font-size: 0; }
  6315. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6316. .x-box-scroller-bottom .x-menu-scroll-bottom {
  6317. background: transparent no-repeat center center;
  6318. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  6319. height: 8px;
  6320. cursor: pointer; }
  6321. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6322. .x-box-menu-right {
  6323. float: right;
  6324. padding-right: 2px; }
  6325. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  6326. .x-column {
  6327. float: left; }
  6328. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6329. .x-tool {
  6330. height: 15px; }
  6331. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6332. .x-tool img {
  6333. overflow: hidden;
  6334. width: 15px;
  6335. height: 15px;
  6336. cursor: pointer;
  6337. background-color: transparent;
  6338. background-repeat: no-repeat;
  6339. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  6340. margin: 0; }
  6341. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6342. .x-panel-header-horizontal .x-tool,
  6343. .x-window-header-horizontal .x-tool {
  6344. margin-left: 2px; }
  6345. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6346. .x-panel-header-vertical .x-tool,
  6347. .x-window-header-vertical .x-tool {
  6348. margin-top: 2px; }
  6349. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6350. .x-panel-header-vertical .x-tool-top,
  6351. .x-window-header-vertical .x-tool-top {
  6352. margin: 0 0 4px; }
  6353. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6354. .x-tool-placeholder {
  6355. visibility: hidden; }
  6356. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6357. .x-tool-toggle {
  6358. background-position: 0 -60px; }
  6359. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6360. .x-tool-over .x-tool-toggle {
  6361. background-position: -15px -60px; }
  6362. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6363. .x-panel-collapsed .x-tool-toggle,
  6364. .x-fieldset-collapsed .x-tool-toggle {
  6365. background-position: 0 -75px; }
  6366. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6367. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  6368. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  6369. background-position: -15px -75px; }
  6370. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6371. .x-tool-close {
  6372. background-position: 0 0; }
  6373. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6374. .x-tool-minimize {
  6375. background-position: 0 -15px; }
  6376. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6377. .x-tool-maximize {
  6378. background-position: 0 -30px; }
  6379. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6380. .x-tool-restore {
  6381. background-position: 0 -45px; }
  6382. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6383. .x-tool-gear {
  6384. background-position: 0 -90px; }
  6385. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6386. .x-tool-prev {
  6387. background-position: 0 -105px; }
  6388. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6389. .x-tool-next {
  6390. background-position: 0 -120px; }
  6391. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6392. .x-tool-pin {
  6393. background-position: 0 -135px; }
  6394. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6395. .x-tool-unpin {
  6396. background-position: 0 -150px; }
  6397. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6398. .x-tool-right {
  6399. background-position: 0 -165px; }
  6400. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6401. .x-tool-left {
  6402. background-position: 0 -180px; }
  6403. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6404. .x-tool-help {
  6405. background-position: 0 -300px; }
  6406. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6407. .x-tool-save {
  6408. background-position: 0 -285px; }
  6409. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6410. .x-tool-search {
  6411. background-position: 0 -270px; }
  6412. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6413. .x-tool-minus {
  6414. background-position: 0 -255px; }
  6415. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6416. .x-tool-plus {
  6417. background-position: 0 -240px; }
  6418. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6419. .x-tool-refresh {
  6420. background-position: 0 -225px; }
  6421. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6422. .x-tool-up {
  6423. background-position: 0 -210px; }
  6424. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6425. .x-tool-down {
  6426. background-position: 0 -195px; }
  6427. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6428. .x-tool-collapse {
  6429. background-position: 0 -345px; }
  6430. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6431. .x-tool-expand {
  6432. background-position: 0 -330px; }
  6433. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6434. .x-tool-print {
  6435. background-position: 0 -315px; }
  6436. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6437. .x-tool-expand-bottom,
  6438. .x-tool-collapse-bottom {
  6439. background-position: 0 -195px; }
  6440. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6441. .x-tool-expand-top,
  6442. .x-tool-collapse-top {
  6443. background-position: 0 -210px; }
  6444. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6445. .x-tool-expand-left,
  6446. .x-tool-collapse-left {
  6447. background-position: 0 -180px; }
  6448. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6449. .x-tool-expand-right,
  6450. .x-tool-collapse-right {
  6451. background-position: 0 -165px; }
  6452. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6453. .x-tool-over .x-tool-close {
  6454. background-position: -15px 0; }
  6455. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6456. .x-tool-over .x-tool-minimize {
  6457. background-position: -15px -15px; }
  6458. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6459. .x-tool-over .x-tool-maximize {
  6460. background-position: -15px -30px; }
  6461. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6462. .x-tool-over .x-tool-restore {
  6463. background-position: -15px -45px; }
  6464. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6465. .x-tool-over .x-tool-gear {
  6466. background-position: -15px -90px; }
  6467. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6468. .x-tool-over .x-tool-prev {
  6469. background-position: -15px -105px; }
  6470. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6471. .x-tool-over .x-tool-next {
  6472. background-position: -15px -120px; }
  6473. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6474. .x-tool-over .x-tool-pin {
  6475. background-position: -15px -135px; }
  6476. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6477. .x-tool-over .x-tool-unpin {
  6478. background-position: -15px -150px; }
  6479. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6480. .x-tool-over .x-tool-right {
  6481. background-position: -15px -165px; }
  6482. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6483. .x-tool-over .x-tool-left {
  6484. background-position: -15px -180px; }
  6485. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6486. .x-tool-over .x-tool-down {
  6487. background-position: -15px -195px; }
  6488. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6489. .x-tool-over .x-tool-up {
  6490. background-position: -15px -210px; }
  6491. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6492. .x-tool-over .x-tool-refresh {
  6493. background-position: -15px -225px; }
  6494. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6495. .x-tool-over .x-tool-plus {
  6496. background-position: -15px -240px; }
  6497. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6498. .x-tool-over .x-tool-minus {
  6499. background-position: -15px -255px; }
  6500. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6501. .x-tool-over .x-tool-search {
  6502. background-position: -15px -270px; }
  6503. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6504. .x-tool-over .x-tool-save {
  6505. background-position: -15px -285px; }
  6506. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6507. .x-tool-over .x-tool-help {
  6508. background-position: -15px -300px; }
  6509. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6510. .x-tool-over .x-tool-print {
  6511. background-position: -15px -315px; }
  6512. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6513. .x-tool-over .x-tool-expand {
  6514. background-position: -15px -330px; }
  6515. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6516. .x-tool-over .x-tool-collapse {
  6517. background-position: -15px -345px; }
  6518. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6519. .x-tool-over .x-tool-expand-bottom,
  6520. .x-tool-over .x-tool-collapse-bottom {
  6521. background-position: -15px -195px; }
  6522. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6523. .x-tool-over .x-tool-expand-top,
  6524. .x-tool-over .x-tool-collapse-top {
  6525. background-position: -15px -210px; }
  6526. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6527. .x-tool-over .x-tool-expand-left,
  6528. .x-tool-over .x-tool-collapse-left {
  6529. background-position: -15px -180px; }
  6530. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  6531. .x-tool-over .x-tool-expand-right,
  6532. .x-tool-over .x-tool-collapse-right {
  6533. background-position: -15px -165px; }
  6534. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6535. .x-horizontal-scroller-present .x-grid-body {
  6536. border-bottom-width: 0px; }
  6537. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6538. .x-vertical-scroller-present .x-grid-body {
  6539. border-right-width: 0px; }
  6540. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6541. .x-scroller {
  6542. overflow: hidden; }
  6543. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6544. .x-scroller-vertical {
  6545. border: 1px solid #99bce8;
  6546. border-top-color: #c5c5c5; }
  6547. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6548. .x-scroller-horizontal {
  6549. border: 1px solid #99bce8; }
  6550. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6551. .x-vertical-scroller-present .x-scroller-horizontal {
  6552. border-right-width: 0px; }
  6553. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6554. .x-scroller-ct {
  6555. overflow: hidden;
  6556. position: absolute;
  6557. margin: 0;
  6558. padding: 0;
  6559. border: none;
  6560. left: 0px;
  6561. top: 0px;
  6562. /*
  6563. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  6564. perpendicular dimension and breaks the scroll as well as offsets it by the left
  6565. offset that we use to try and keep some size on this element. This works on all
  6566. browsers (including IE9).
  6567. */
  6568. box-sizing: content-box !important;
  6569. -ms-box-sizing: content-box !important;
  6570. -moz-box-sizing: content-box !important;
  6571. -webkit-box-sizing: content-box !important; }
  6572. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6573. .x-scroller-vertical .x-scroller-ct {
  6574. overflow-y: scroll; }
  6575. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  6576. .x-scroller-horizontal .x-scroller-ct {
  6577. overflow-x: scroll; }
  6578. /* line 6, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6579. .x-html {
  6580. /* Begin bidirectionality settings (do not change) */ }
  6581. /* line 32, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6582. .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 {
  6583. display: block; }
  6584. /* line 33, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6585. .x-html li {
  6586. display: list-item;
  6587. list-style: disc; }
  6588. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6589. .x-html head {
  6590. display: none; }
  6591. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6592. .x-html table {
  6593. display: table; }
  6594. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6595. .x-html tr {
  6596. display: table-row; }
  6597. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6598. .x-html thead {
  6599. display: table-header-group; }
  6600. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6601. .x-html tbody {
  6602. display: table-row-group; }
  6603. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6604. .x-html tfoot {
  6605. display: table-footer-group; }
  6606. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6607. .x-html col {
  6608. display: table-column; }
  6609. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6610. .x-html colgroup {
  6611. display: table-column-group; }
  6612. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6613. .x-html td, .x-html th {
  6614. display: table-cell; }
  6615. /* line 44, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6616. .x-html caption {
  6617. display: table-caption; }
  6618. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6619. .x-html th {
  6620. font-weight: bolder;
  6621. text-align: center; }
  6622. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6623. .x-html caption {
  6624. text-align: center; }
  6625. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6626. .x-html body {
  6627. margin: 8px; }
  6628. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6629. .x-html h1 {
  6630. font-size: 2em;
  6631. margin: .67em 0; }
  6632. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6633. .x-html h2 {
  6634. font-size: 1.5em;
  6635. margin: .75em 0; }
  6636. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6637. .x-html h3 {
  6638. font-size: 1.17em;
  6639. margin: .83em 0; }
  6640. /* line 60, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6641. .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 {
  6642. margin: 1.12em 0; }
  6643. /* line 61, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6644. .x-html h5 {
  6645. font-size: .83em;
  6646. margin: 1.5em 0; }
  6647. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6648. .x-html h6 {
  6649. font-size: .75em;
  6650. margin: 1.67em 0; }
  6651. /* line 70, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6652. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  6653. font-weight: bolder; }
  6654. /* line 71, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6655. .x-html blockquote {
  6656. margin-left: 40px;
  6657. margin-right: 40px; }
  6658. /* line 76, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6659. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  6660. font-style: italic; }
  6661. /* line 81, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6662. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  6663. font-family: monospace; }
  6664. /* line 82, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6665. .x-html pre {
  6666. white-space: pre; }
  6667. /* line 86, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6668. .x-html button, .x-html textarea, .x-html input, .x-html select {
  6669. display: inline-block; }
  6670. /* line 87, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6671. .x-html big {
  6672. font-size: 1.17em; }
  6673. /* line 90, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6674. .x-html small, .x-html sub, .x-html sup {
  6675. font-size: .83em; }
  6676. /* line 91, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6677. .x-html sub {
  6678. vertical-align: sub; }
  6679. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6680. .x-html sup {
  6681. vertical-align: super; }
  6682. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6683. .x-html table {
  6684. border-spacing: 2px; }
  6685. /* line 96, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6686. .x-html thead, .x-html tbody, .x-html tfoot {
  6687. vertical-align: middle; }
  6688. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6689. .x-html td, .x-html th {
  6690. vertical-align: inherit; }
  6691. /* line 101, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6692. .x-html s, .x-html strike, .x-html del {
  6693. text-decoration: line-through; }
  6694. /* line 102, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6695. .x-html hr {
  6696. border: 1px inset; }
  6697. /* line 107, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6698. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  6699. margin-left: 40px; }
  6700. /* line 108, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6701. .x-html ul, .x-html menu, .x-html dir {
  6702. list-style-type: disc; }
  6703. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6704. .x-html ol {
  6705. list-style-type: decimal; }
  6706. /* line 113, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6707. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  6708. margin-top: 0;
  6709. margin-bottom: 0; }
  6710. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6711. .x-html u, .x-html ins {
  6712. text-decoration: underline; }
  6713. /* line 116, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6714. .x-html br:before {
  6715. content: "\A"; }
  6716. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6717. .x-html :before, .x-html :after {
  6718. white-space: pre-line; }
  6719. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6720. .x-html center {
  6721. text-align: center; }
  6722. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6723. .x-html :link, .x-html :visited {
  6724. text-decoration: underline; }
  6725. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6726. .x-html :focus {
  6727. outline: invert dotted thin; }
  6728. /* line 123, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6729. .x-html BDO[DIR="ltr"] {
  6730. direction: ltr;
  6731. unicode-bidi: bidi-override; }
  6732. /* line 124, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  6733. .x-html BDO[DIR="rtl"] {
  6734. direction: rtl;
  6735. unicode-bidi: bidi-override; }