bb6.css 491 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813
  1. /* line 3, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  2. body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  3. h4, h5, h6, pre, code, form, fieldset, legend,
  4. input, textarea, p, blockquote, th, td {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. /* line 8, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  9. table {
  10. border-collapse: collapse;
  11. border-spacing: 0;
  12. }
  13. /* line 13, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  14. fieldset, img {
  15. border: 0;
  16. }
  17. /* line 18, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  18. address, caption, cite, code,
  19. dfn, em, strong, th, var {
  20. font-style: normal;
  21. font-weight: normal;
  22. }
  23. /* line 23, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  24. li {
  25. list-style: none;
  26. }
  27. /* line 27, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  28. caption, th {
  29. text-align: left;
  30. }
  31. /* line 31, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  32. h1, h2, h3, h4, h5, h6 {
  33. font-size: 100%;
  34. font-weight: normal;
  35. }
  36. /* line 37, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  37. q:before,
  38. q:after {
  39. content: "";
  40. }
  41. /* line 41, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  42. abbr, acronym {
  43. border: 0;
  44. font-variant: normal;
  45. }
  46. /* line 46, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  47. sup {
  48. vertical-align: text-top;
  49. }
  50. /* line 50, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  51. sub {
  52. vertical-align: text-bottom;
  53. }
  54. /* line 54, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  55. input, textarea, select {
  56. font-family: inherit;
  57. font-size: inherit;
  58. font-weight: inherit;
  59. }
  60. /* line 60, ../themes/stylesheets/sencha-touch/default/core/_reset.scss */
  61. *:focus {
  62. outline: none;
  63. }
  64. /**
  65. * @class Global_CSS
  66. *
  67. * Global CSS variables and mixins of Sencha Touch.
  68. */
  69. /**
  70. * @var {boolean} $include-html-style
  71. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  72. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  73. */
  74. /**
  75. * @var {boolean} $include-default-icons
  76. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  77. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  78. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  79. * and user. Set to false to reduce CSS weight.
  80. */
  81. /**
  82. * @var {boolean} $include-form-sliders
  83. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  84. */
  85. /**
  86. * @var {boolean} $include-floating-panels
  87. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  88. */
  89. /**
  90. * @var {boolean} $include-default-uis
  91. * Decides whether or not to include the default UIs for all components.
  92. */
  93. /**
  94. * @var {boolean} $include-highlights=true
  95. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  96. * non-performant browsers, or minimalist designs.
  97. */
  98. /**
  99. * @var {boolean} $include-border-radius
  100. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  101. */
  102. /**
  103. * @var {boolean} $basic-slider
  104. * Optionally remove CSS3 effects from the slider component for improved performance.
  105. */
  106. /**
  107. * @var {color} $base-color
  108. * The primary color variable from which most elements derive their color scheme.
  109. */
  110. /**
  111. * @var {string} $base-gradient
  112. * The primary gradient variable from which most elements derive their color scheme.
  113. * @see background-gradient
  114. */
  115. /**
  116. * @var {font-family} $font-family
  117. * The font-family to be used throughout the theme.
  118. * @see background-gradient
  119. */
  120. /**
  121. * @var {color} $alert-color
  122. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  123. */
  124. /**
  125. * @var {color} $confirm-color
  126. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  127. */
  128. /**
  129. * @var {color} $active-color
  130. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  131. */
  132. /**
  133. * @var {color} $neutral-color
  134. * Color used for the neautral `ui` for Toolbars and Tabbars.
  135. */
  136. /**
  137. * @var {color} $page-bg-color
  138. * Background color for fullscreen components.
  139. */
  140. /**
  141. * @var {measurement} $global-row-height
  142. * The minimum row height for items like toolbars.
  143. */
  144. /**
  145. * @var {measurement} $global-list-height
  146. * The minimum row height for items like toolbars.
  147. */
  148. /**
  149. * Background noise recipe
  150. *
  151. * This recipe use a sass function to generate a .png file
  152. *
  153. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  154. * @link https://github.com/DanielRapp/Noisy
  155. *
  156. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  157. * @link https://gist.github.com/1021332
  158. *
  159. * Ported to a sass gem by Antti Salonen @antsa
  160. * @link https://github.com/antsa/sassy_noise
  161. *
  162. * Mixin: background-noise
  163. * Function: background_noise
  164. *
  165. * @author Daniel Rapp @DanielRapp
  166. * @author Aaron Russell @aaronrussell
  167. * @author Philipp Bosch @philippbosch
  168. * @author Antti Salonen @antsa
  169. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  170. */
  171. /**
  172. *
  173. * @class Gradients
  174. * @author David Kaneda http://www.davidkaneda.com/
  175. *
  176. */
  177. /**
  178. * Adds a background gradient into a specified selector.
  179. *
  180. * @include background-gradient(#444, 'glossy');
  181. *
  182. * You can also use color-stops if you want full control of the gradient:
  183. *
  184. * @include background-gradient(#444, color-stops(#333, #222, #111));
  185. *
  186. * @param {color} $bg-color
  187. * The base color of the gradient.
  188. *
  189. * @param {string/list} $type
  190. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  191. *
  192. * @include background-gradient(red, 'glossy');
  193. *
  194. * It can also accept a list of color-stop values:;
  195. *
  196. * @include background-gradient(black, color-stops(#333, #111, #000));
  197. *
  198. * @param {string} $direction
  199. * The direction of the gradient.
  200. */
  201. /**
  202. * Blueprint grid background pattern
  203. *
  204. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  205. *
  206. * @author Lea Verou http://lea.verou.me/ for the original pattern
  207. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  208. */
  209. /**
  210. * Background overlay inspired by Google Chrome modal overlay
  211. *
  212. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  213. */
  214. /**
  215. * Striped background pattern
  216. *
  217. * @link http://lea.verou.me/css3patterns/
  218. *
  219. * @author Lea Verou http://lea.verou.me/ for the original pattern
  220. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  221. */
  222. /**
  223. *
  224. * Before compass 0.11.5, you need to add
  225. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  226. * To your configuration (config.rb)
  227. * @see https://github.com/chriseppstein/compass/issues/401
  228. *
  229. * @link http://lea.verou.me/css3patterns/#tartan
  230. *
  231. * @author Marta Armada http://swwweet.com/ for the original pattern
  232. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  233. */
  234. /**
  235. * Carbon Fiber background pattern
  236. *
  237. * @author Lea Verou http://lea.verou.me/ for the original pattern
  238. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  239. *
  240. * @link http://lea.verou.me/css3patterns/
  241. *
  242. */
  243. /**
  244. * Striped background patterns
  245. *
  246. * Before compass 0.11.5, you need to add
  247. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  248. * To your configuration (config.rb)
  249. * @see https://github.com/chriseppstein/compass/issues/401
  250. *
  251. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  252. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  253. *
  254. * @author Lea Verou http://lea.verou.me/ for the original pattern
  255. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  256. */
  257. /**
  258. * Cicada background pattern
  259. *
  260. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  261. *
  262. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  263. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  264. */
  265. /**
  266. *
  267. * Tablecloth background pattern
  268. *
  269. * @link http://lea.verou.me/css3patterns/#tablecloth
  270. *
  271. * @author Lea Verou http://lea.verou.me/ for the original pattern
  272. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  273. */
  274. /**
  275. * Lined paper background pattern
  276. *
  277. * @link http://lea.verou.me/css3patterns/#lined-paper
  278. *
  279. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  280. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  281. */
  282. /**
  283. * Madras background pattern
  284. *
  285. * Before compass 0.11.5, you need to add
  286. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  287. * To your configuration (config.rb)
  288. * @see https://github.com/chriseppstein/compass/issues/401
  289. *
  290. * @link http://lea.verou.me/css3patterns/#madras
  291. *
  292. * @author Divya Manian http://nimbupani.com/ for the original pattern
  293. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  294. */
  295. /**
  296. * Checkerboard background pattern
  297. *
  298. * @link http://lea.verou.me/css3patterns/#checkerboard
  299. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  300. *
  301. * @author Lea Verou http://lea.verou.me/ for the original pattern
  302. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  303. */
  304. /**
  305. *
  306. * Houndstooth background pattern
  307. *
  308. * @link http://lea.verou.me/css3patterns/#houndstooth
  309. *
  310. * @author Antoine Bernier http://abernier.name for the original pattern
  311. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  312. */
  313. /**
  314. *
  315. * Polkadot background pattern
  316. *
  317. * @link http://lea.verou.me/css3patterns/#polka-dot
  318. *
  319. * @author Lea Verou http://lea.verou.me/ for the original pattern
  320. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  321. */
  322. /**
  323. *
  324. * @class Color
  325. * @author David Kaneda - http://www.davidkaneda.com
  326. *
  327. */
  328. /**
  329. * Returns the brightness (out of 100) of a specified color.
  330. * @todo explain why this is useful
  331. * @param {color} $color The color you want the brightness value of
  332. * @return {measurement}
  333. */
  334. /**
  335. * Returns the luminosity for a specified color
  336. * @param {color} The color to check
  337. * @return {measurement}
  338. */
  339. /**
  340. * Returns the contrast ratio between two colors
  341. * @param {color1} The color to check
  342. * @return {measurement}
  343. */
  344. /**
  345. * Colors the text of an element based on lightness of its background.
  346. *
  347. * .my-element {
  348. * @include color-by-background(#fff); // Colors text black.
  349. * }
  350. *
  351. * .my-element {
  352. * @include color-by-background(#fff, 40%); // Colors text gray.
  353. * }
  354. *
  355. * @param {color} $bg-color Background color of element.
  356. * @param {percent} $contrast Contrast of text color to its background.
  357. *
  358. */
  359. /**
  360. * @class Global_CSS
  361. */
  362. /**
  363. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  364. *
  365. * @include pictos-iconmask('attachment');
  366. *
  367. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  368. */
  369. /**
  370. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  371. *
  372. * @param {color} $bg-color Base color to be used for the button.
  373. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  374. */
  375. /**
  376. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  377. *
  378. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  379. */
  380. /**
  381. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  382. *
  383. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  384. */
  385. /**
  386. * Adds basic styles to :before or :after pseudo-elements.
  387. *
  388. * .my-element:after {
  389. * @include insertion(50px, 50px);
  390. * }
  391. *
  392. * @param {measurement} $width Height of pseudo-element.
  393. * @param {measurement} $height Height of pseudo-element.
  394. * @param {measurement} $top Top positioning of pseudo-element.
  395. * @param {measurement} $left Left positioning of pseudo-element.
  396. *
  397. */
  398. /**
  399. * Makes an element stretch to its parent's bounds.
  400. */
  401. /**
  402. * Bevels the text based on its background.
  403. *
  404. * @param {color} $bg-color Background color of element.
  405. * @see bevel-text
  406. *
  407. */
  408. /**
  409. * Creates a background gradient for masked elements, based on the lightness of their background.
  410. *
  411. * @param {color} $bg-color Background color of element.
  412. * @param {percent} $percent Contrast of the new gradient to its background.
  413. * @param {percent} $style Gradient style of the gradient.
  414. * @see background-gradient
  415. *
  416. */
  417. /**
  418. * Makes the element text overflow to use ellipsis.
  419. */
  420. /* line 10, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  421. html, body {
  422. font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;
  423. font-weight: normal;
  424. position: relative;
  425. -webkit-text-size-adjust: none;
  426. }
  427. /* line 17, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  428. body.x-desktop {
  429. overflow: hidden;
  430. }
  431. /* line 21, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  432. *, *:after, *:before {
  433. -webkit-box-sizing: border-box;
  434. box-sizing: border-box;
  435. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  436. -webkit-user-select: none;
  437. -webkit-touch-callout: none;
  438. -webkit-user-drag: none;
  439. }
  440. /* line 29, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  441. .x-ios.x-tablet .x-landscape * {
  442. -webkit-text-stroke: 1px transparent;
  443. }
  444. /* line 33, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  445. body {
  446. font-size: 104%;
  447. }
  448. /* line 37, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  449. body.x-android.x-phone {
  450. font-size: 116%;
  451. }
  452. /* line 41, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  453. body.x-android.x-phone.x-silk {
  454. font-size: 130%;
  455. }
  456. /* line 45, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  457. body.x-ios.x-phone {
  458. font-size: 114%;
  459. }
  460. /* line 49, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  461. body.x-desktop {
  462. font-size: 114%;
  463. }
  464. /* line 53, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  465. input, textarea {
  466. -webkit-user-select: text;
  467. }
  468. /* line 57, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  469. .x-hidden-visibility {
  470. visibility: hidden !important;
  471. }
  472. /* line 61, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  473. .x-hidden-display, .x-field-hidden {
  474. display: none !important;
  475. }
  476. /* line 65, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  477. .x-hidden-offsets {
  478. position: absolute !important;
  479. left: -10000em;
  480. top: -10000em;
  481. visibility: hidden;
  482. }
  483. /* line 72, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  484. .x-fullscreen {
  485. position: absolute !important;
  486. }
  487. /* line 79, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  488. .x-desktop .x-body-stretcher {
  489. margin-bottom: 0px;
  490. }
  491. /* line 83, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  492. .x-mask {
  493. position: absolute;
  494. top: 0;
  495. left: 0;
  496. bottom: 0;
  497. right: 0;
  498. height: 100%;
  499. z-index: 10;
  500. display: -webkit-box;
  501. display: box;
  502. -webkit-box-align: center;
  503. box-align: center;
  504. -webkit-box-pack: center;
  505. box-pack: center;
  506. background: rgba(0, 0, 0, 0.3) center center no-repeat;
  507. }
  508. /* line 100, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  509. .x-mask.x-mask-gray {
  510. background-color: rgba(0, 0, 0, 0.5);
  511. }
  512. /* line 104, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  513. .x-mask.x-mask-transparent {
  514. background-color: transparent;
  515. }
  516. /* line 108, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  517. .x-mask .x-mask-inner {
  518. position: relative;
  519. background: rgba(0, 0, 0, 0.25);
  520. color: #fff;
  521. text-align: center;
  522. padding: .4em;
  523. font-size: .95em;
  524. font-weight: bold;
  525. }
  526. /* line 119, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  527. .x-mask .x-loading-spinner-outer {
  528. display: -webkit-box;
  529. display: box;
  530. -webkit-box-orient: vertical;
  531. box-orient: vertical;
  532. -webkit-box-align: center;
  533. box-align: center;
  534. -webkit-box-pack: center;
  535. box-pack: center;
  536. width: 100%;
  537. min-width: 8.5em;
  538. height: 8.5em;
  539. }
  540. /* line 130, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  541. .x-mask.x-indicator-hidden .x-mask-inner {
  542. padding-bottom: 0 !important;
  543. }
  544. /* line 133, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  545. .x-mask.x-indicator-hidden .x-loading-spinner-outer {
  546. display: none;
  547. }
  548. /* line 136, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  549. .x-mask.x-indicator-hidden .x-mask-message {
  550. position: relative;
  551. bottom: .25em;
  552. }
  553. /* line 142, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  554. .x-mask .x-mask-message {
  555. position: absolute;
  556. bottom: 1.7em;
  557. -webkit-box-flex: 0 !important;
  558. max-width: 13em;
  559. min-width: 8.5em;
  560. }
  561. /* line 152, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  562. .x-mask.x-has-message .x-mask-inner {
  563. padding-bottom: 2em;
  564. }
  565. /* line 156, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  566. .x-mask.x-has-message .x-loading-spinner-outer {
  567. height: 7.5em;
  568. }
  569. /* line 162, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  570. .x-draggable {
  571. z-index: 1;
  572. }
  573. /* line 166, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  574. .x-dragging {
  575. opacity: 0.7;
  576. }
  577. /* line 170, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  578. .x-panel-list {
  579. background-color: #afbfce;
  580. }
  581. /* line 175, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  582. .x-html {
  583. -webkit-user-select: auto;
  584. -webkit-touch-callout: inherit;
  585. line-height: 1.5;
  586. color: #333;
  587. font-size: .8em;
  588. padding: 1.2em;
  589. }
  590. /* line 33, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  591. .x-html body {
  592. line-height: 1.5;
  593. font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  594. color: #333333;
  595. font-size: 75%;
  596. }
  597. /* line 51, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  598. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 {
  599. font-weight: normal;
  600. color: #222222;
  601. }
  602. /* line 52, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  603. .x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img {
  604. margin: 0;
  605. }
  606. /* line 53, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  607. .x-html h1 {
  608. font-size: 3em;
  609. line-height: 1;
  610. margin-bottom: 0.50em;
  611. }
  612. /* line 54, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  613. .x-html h2 {
  614. font-size: 2em;
  615. margin-bottom: 0.75em;
  616. }
  617. /* line 55, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  618. .x-html h3 {
  619. font-size: 1.5em;
  620. line-height: 1;
  621. margin-bottom: 1.00em;
  622. }
  623. /* line 56, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  624. .x-html h4 {
  625. font-size: 1.2em;
  626. line-height: 1.25;
  627. margin-bottom: 1.25em;
  628. }
  629. /* line 57, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  630. .x-html h5 {
  631. font-size: 1em;
  632. font-weight: bold;
  633. margin-bottom: 1.50em;
  634. }
  635. /* line 58, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  636. .x-html h6 {
  637. font-size: 1em;
  638. font-weight: bold;
  639. }
  640. /* line 59, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  641. .x-html p {
  642. margin: 0 0 1.5em;
  643. }
  644. /* line 60, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  645. .x-html p .left {
  646. display: inline;
  647. float: left;
  648. margin: 1.5em 1.5em 1.5em 0;
  649. padding: 0;
  650. }
  651. /* line 61, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  652. .x-html p .right {
  653. display: inline;
  654. float: right;
  655. margin: 1.5em 0 1.5em 1.5em;
  656. padding: 0;
  657. }
  658. /* line 62, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  659. .x-html a {
  660. text-decoration: underline;
  661. color: #0066cc;
  662. }
  663. /* line 18, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
  664. .x-html a:visited {
  665. color: #004c99;
  666. }
  667. /* line 21, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
  668. .x-html a:focus {
  669. color: #0099ff;
  670. }
  671. /* line 24, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
  672. .x-html a:hover {
  673. color: #0099ff;
  674. }
  675. /* line 27, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
  676. .x-html a:active {
  677. color: #bf00ff;
  678. }
  679. /* line 63, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  680. .x-html blockquote {
  681. margin: 1.5em;
  682. color: #666666;
  683. font-style: italic;
  684. }
  685. /* line 64, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  686. .x-html strong, .x-html dfn {
  687. font-weight: bold;
  688. }
  689. /* line 65, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  690. .x-html em, .x-html dfn {
  691. font-style: italic;
  692. }
  693. /* line 66, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  694. .x-html sup, .x-html sub {
  695. line-height: 0;
  696. }
  697. /* line 67, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  698. .x-html abbr, .x-html acronym {
  699. border-bottom: 1px dotted #666666;
  700. }
  701. /* line 68, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  702. .x-html address {
  703. margin: 0 0 1.5em;
  704. font-style: italic;
  705. }
  706. /* line 69, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  707. .x-html del {
  708. color: #666666;
  709. }
  710. /* line 70, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  711. .x-html pre {
  712. margin: 1.5em 0;
  713. white-space: pre;
  714. }
  715. /* line 71, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  716. .x-html pre, .x-html code, .x-html tt {
  717. font: 1em "andale mono", "lucida console", monospace;
  718. line-height: 1.5;
  719. }
  720. /* line 72, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  721. .x-html li ul, .x-html li ol {
  722. margin: 0;
  723. }
  724. /* line 73, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  725. .x-html ul, .x-html ol {
  726. margin: 0 1.5em 1.5em 0;
  727. padding-left: 1.5em;
  728. }
  729. /* line 74, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  730. .x-html ul {
  731. list-style-type: disc;
  732. }
  733. /* line 75, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  734. .x-html ol {
  735. list-style-type: decimal;
  736. }
  737. /* line 76, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  738. .x-html dl {
  739. margin: 0 0 1.5em 0;
  740. }
  741. /* line 77, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  742. .x-html dl dt {
  743. font-weight: bold;
  744. }
  745. /* line 78, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  746. .x-html dd {
  747. margin-left: 1.5em;
  748. }
  749. /* line 79, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  750. .x-html table {
  751. margin-bottom: 1.4em;
  752. width: 100%;
  753. }
  754. /* line 80, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  755. .x-html th {
  756. font-weight: bold;
  757. }
  758. /* line 81, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  759. .x-html thead th {
  760. background: #c3d9ff;
  761. }
  762. /* line 82, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  763. .x-html th, .x-html td, .x-html caption {
  764. padding: 4px 10px 4px 5px;
  765. }
  766. /* line 85, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  767. .x-html table.striped tr:nth-child(even) td, .x-html table tr.even td {
  768. background: #e5ecf9;
  769. }
  770. /* line 86, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  771. .x-html tfoot {
  772. font-style: italic;
  773. }
  774. /* line 87, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  775. .x-html caption {
  776. background: #eeeeee;
  777. }
  778. /* line 88, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  779. .x-html .quiet {
  780. color: #666666;
  781. }
  782. /* line 89, /Library/Ruby/Gems/1.8/gems/compass-0.11.5/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
  783. .x-html .loud {
  784. color: #111111;
  785. }
  786. /* line 185, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  787. .x-html ul li {
  788. list-style-type: circle;
  789. }
  790. /* line 188, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  791. .x-html ol li {
  792. list-style-type: decimal;
  793. }
  794. /* line 194, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  795. .x-video {
  796. background-color: #000;
  797. }
  798. /* line 198, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  799. .x-sortable .x-dragging {
  800. opacity: 1;
  801. z-index: 5;
  802. }
  803. /* line 203, ../themes/stylesheets/sencha-touch/default/core/_core.scss */
  804. .x-layout-card-item {
  805. background: #eeeeee;
  806. }
  807. /* line 1, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
  808. .x-map {
  809. background-color: #edeae2;
  810. }
  811. /* line 3, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
  812. .x-map * {
  813. -webkit-box-sizing: content-box;
  814. box-sizing: content-box;
  815. }
  816. /* line 9, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
  817. .x-mask-map {
  818. background: transparent !important;
  819. }
  820. /* line 13, ../themes/stylesheets/sencha-touch/default/widgets/_map.scss */
  821. .x-map-container {
  822. position: absolute !important;
  823. top: 0;
  824. left: 0;
  825. right: 0;
  826. bottom: 0;
  827. }
  828. /**
  829. * @class Global_CSS
  830. *
  831. * Global CSS variables and mixins of Sencha Touch.
  832. */
  833. /**
  834. * @var {boolean} $include-html-style
  835. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  836. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  837. */
  838. /**
  839. * @var {boolean} $include-default-icons
  840. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  841. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  842. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  843. * and user. Set to false to reduce CSS weight.
  844. */
  845. /**
  846. * @var {boolean} $include-form-sliders
  847. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  848. */
  849. /**
  850. * @var {boolean} $include-floating-panels
  851. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  852. */
  853. /**
  854. * @var {boolean} $include-default-uis
  855. * Decides whether or not to include the default UIs for all components.
  856. */
  857. /**
  858. * @var {boolean} $include-highlights=true
  859. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  860. * non-performant browsers, or minimalist designs.
  861. */
  862. /**
  863. * @var {boolean} $include-border-radius
  864. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  865. */
  866. /**
  867. * @var {boolean} $basic-slider
  868. * Optionally remove CSS3 effects from the slider component for improved performance.
  869. */
  870. /**
  871. * @var {color} $base-color
  872. * The primary color variable from which most elements derive their color scheme.
  873. */
  874. /**
  875. * @var {string} $base-gradient
  876. * The primary gradient variable from which most elements derive their color scheme.
  877. * @see background-gradient
  878. */
  879. /**
  880. * @var {font-family} $font-family
  881. * The font-family to be used throughout the theme.
  882. * @see background-gradient
  883. */
  884. /**
  885. * @var {color} $alert-color
  886. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  887. */
  888. /**
  889. * @var {color} $confirm-color
  890. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  891. */
  892. /**
  893. * @var {color} $active-color
  894. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  895. */
  896. /**
  897. * @var {color} $neutral-color
  898. * Color used for the neautral `ui` for Toolbars and Tabbars.
  899. */
  900. /**
  901. * @var {color} $page-bg-color
  902. * Background color for fullscreen components.
  903. */
  904. /**
  905. * @var {measurement} $global-row-height
  906. * The minimum row height for items like toolbars.
  907. */
  908. /**
  909. * @var {measurement} $global-list-height
  910. * The minimum row height for items like toolbars.
  911. */
  912. /**
  913. * Background noise recipe
  914. *
  915. * This recipe use a sass function to generate a .png file
  916. *
  917. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  918. * @link https://github.com/DanielRapp/Noisy
  919. *
  920. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  921. * @link https://gist.github.com/1021332
  922. *
  923. * Ported to a sass gem by Antti Salonen @antsa
  924. * @link https://github.com/antsa/sassy_noise
  925. *
  926. * Mixin: background-noise
  927. * Function: background_noise
  928. *
  929. * @author Daniel Rapp @DanielRapp
  930. * @author Aaron Russell @aaronrussell
  931. * @author Philipp Bosch @philippbosch
  932. * @author Antti Salonen @antsa
  933. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  934. */
  935. /**
  936. *
  937. * @class Gradients
  938. * @author David Kaneda http://www.davidkaneda.com/
  939. *
  940. */
  941. /**
  942. * Adds a background gradient into a specified selector.
  943. *
  944. * @include background-gradient(#444, 'glossy');
  945. *
  946. * You can also use color-stops if you want full control of the gradient:
  947. *
  948. * @include background-gradient(#444, color-stops(#333, #222, #111));
  949. *
  950. * @param {color} $bg-color
  951. * The base color of the gradient.
  952. *
  953. * @param {string/list} $type
  954. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  955. *
  956. * @include background-gradient(red, 'glossy');
  957. *
  958. * It can also accept a list of color-stop values:;
  959. *
  960. * @include background-gradient(black, color-stops(#333, #111, #000));
  961. *
  962. * @param {string} $direction
  963. * The direction of the gradient.
  964. */
  965. /**
  966. * Blueprint grid background pattern
  967. *
  968. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  969. *
  970. * @author Lea Verou http://lea.verou.me/ for the original pattern
  971. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  972. */
  973. /**
  974. * Background overlay inspired by Google Chrome modal overlay
  975. *
  976. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  977. */
  978. /**
  979. * Striped background pattern
  980. *
  981. * @link http://lea.verou.me/css3patterns/
  982. *
  983. * @author Lea Verou http://lea.verou.me/ for the original pattern
  984. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  985. */
  986. /**
  987. *
  988. * Before compass 0.11.5, you need to add
  989. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  990. * To your configuration (config.rb)
  991. * @see https://github.com/chriseppstein/compass/issues/401
  992. *
  993. * @link http://lea.verou.me/css3patterns/#tartan
  994. *
  995. * @author Marta Armada http://swwweet.com/ for the original pattern
  996. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  997. */
  998. /**
  999. * Carbon Fiber background pattern
  1000. *
  1001. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1002. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  1003. *
  1004. * @link http://lea.verou.me/css3patterns/
  1005. *
  1006. */
  1007. /**
  1008. * Striped background patterns
  1009. *
  1010. * Before compass 0.11.5, you need to add
  1011. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1012. * To your configuration (config.rb)
  1013. * @see https://github.com/chriseppstein/compass/issues/401
  1014. *
  1015. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  1016. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  1017. *
  1018. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1019. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1020. */
  1021. /**
  1022. * Cicada background pattern
  1023. *
  1024. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  1025. *
  1026. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  1027. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1028. */
  1029. /**
  1030. *
  1031. * Tablecloth background pattern
  1032. *
  1033. * @link http://lea.verou.me/css3patterns/#tablecloth
  1034. *
  1035. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1036. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1037. */
  1038. /**
  1039. * Lined paper background pattern
  1040. *
  1041. * @link http://lea.verou.me/css3patterns/#lined-paper
  1042. *
  1043. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  1044. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1045. */
  1046. /**
  1047. * Madras background pattern
  1048. *
  1049. * Before compass 0.11.5, you need to add
  1050. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1051. * To your configuration (config.rb)
  1052. * @see https://github.com/chriseppstein/compass/issues/401
  1053. *
  1054. * @link http://lea.verou.me/css3patterns/#madras
  1055. *
  1056. * @author Divya Manian http://nimbupani.com/ for the original pattern
  1057. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1058. */
  1059. /**
  1060. * Checkerboard background pattern
  1061. *
  1062. * @link http://lea.verou.me/css3patterns/#checkerboard
  1063. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  1064. *
  1065. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1066. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1067. */
  1068. /**
  1069. *
  1070. * Houndstooth background pattern
  1071. *
  1072. * @link http://lea.verou.me/css3patterns/#houndstooth
  1073. *
  1074. * @author Antoine Bernier http://abernier.name for the original pattern
  1075. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1076. */
  1077. /**
  1078. *
  1079. * Polkadot background pattern
  1080. *
  1081. * @link http://lea.verou.me/css3patterns/#polka-dot
  1082. *
  1083. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1084. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1085. */
  1086. /**
  1087. *
  1088. * @class Color
  1089. * @author David Kaneda - http://www.davidkaneda.com
  1090. *
  1091. */
  1092. /**
  1093. * Returns the brightness (out of 100) of a specified color.
  1094. * @todo explain why this is useful
  1095. * @param {color} $color The color you want the brightness value of
  1096. * @return {measurement}
  1097. */
  1098. /**
  1099. * Returns the luminosity for a specified color
  1100. * @param {color} The color to check
  1101. * @return {measurement}
  1102. */
  1103. /**
  1104. * Returns the contrast ratio between two colors
  1105. * @param {color1} The color to check
  1106. * @return {measurement}
  1107. */
  1108. /**
  1109. * Colors the text of an element based on lightness of its background.
  1110. *
  1111. * .my-element {
  1112. * @include color-by-background(#fff); // Colors text black.
  1113. * }
  1114. *
  1115. * .my-element {
  1116. * @include color-by-background(#fff, 40%); // Colors text gray.
  1117. * }
  1118. *
  1119. * @param {color} $bg-color Background color of element.
  1120. * @param {percent} $contrast Contrast of text color to its background.
  1121. *
  1122. */
  1123. /**
  1124. * @class Global_CSS
  1125. */
  1126. /**
  1127. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  1128. *
  1129. * @include pictos-iconmask('attachment');
  1130. *
  1131. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  1132. */
  1133. /**
  1134. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  1135. *
  1136. * @param {color} $bg-color Base color to be used for the button.
  1137. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  1138. */
  1139. /**
  1140. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  1141. *
  1142. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1143. */
  1144. /**
  1145. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  1146. *
  1147. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1148. */
  1149. /**
  1150. * Adds basic styles to :before or :after pseudo-elements.
  1151. *
  1152. * .my-element:after {
  1153. * @include insertion(50px, 50px);
  1154. * }
  1155. *
  1156. * @param {measurement} $width Height of pseudo-element.
  1157. * @param {measurement} $height Height of pseudo-element.
  1158. * @param {measurement} $top Top positioning of pseudo-element.
  1159. * @param {measurement} $left Left positioning of pseudo-element.
  1160. *
  1161. */
  1162. /**
  1163. * Makes an element stretch to its parent's bounds.
  1164. */
  1165. /**
  1166. * Bevels the text based on its background.
  1167. *
  1168. * @param {color} $bg-color Background color of element.
  1169. * @see bevel-text
  1170. *
  1171. */
  1172. /**
  1173. * Creates a background gradient for masked elements, based on the lightness of their background.
  1174. *
  1175. * @param {color} $bg-color Background color of element.
  1176. * @param {percent} $percent Contrast of the new gradient to its background.
  1177. * @param {percent} $style Gradient style of the gradient.
  1178. * @see background-gradient
  1179. *
  1180. */
  1181. /**
  1182. * Makes the element text overflow to use ellipsis.
  1183. */
  1184. /**
  1185. * @class Global_CSS
  1186. *
  1187. * Global CSS variables and mixins of Sencha Touch.
  1188. */
  1189. /**
  1190. * @var {boolean} $include-html-style
  1191. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  1192. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  1193. */
  1194. /**
  1195. * @var {boolean} $include-default-icons
  1196. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  1197. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  1198. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  1199. * and user. Set to false to reduce CSS weight.
  1200. */
  1201. /**
  1202. * @var {boolean} $include-form-sliders
  1203. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  1204. */
  1205. /**
  1206. * @var {boolean} $include-floating-panels
  1207. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  1208. */
  1209. /**
  1210. * @var {boolean} $include-default-uis
  1211. * Decides whether or not to include the default UIs for all components.
  1212. */
  1213. /**
  1214. * @var {boolean} $include-highlights=true
  1215. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  1216. * non-performant browsers, or minimalist designs.
  1217. */
  1218. /**
  1219. * @var {boolean} $include-border-radius
  1220. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  1221. */
  1222. /**
  1223. * @var {boolean} $basic-slider
  1224. * Optionally remove CSS3 effects from the slider component for improved performance.
  1225. */
  1226. /**
  1227. * @var {color} $base-color
  1228. * The primary color variable from which most elements derive their color scheme.
  1229. */
  1230. /**
  1231. * @var {string} $base-gradient
  1232. * The primary gradient variable from which most elements derive their color scheme.
  1233. * @see background-gradient
  1234. */
  1235. /**
  1236. * @var {font-family} $font-family
  1237. * The font-family to be used throughout the theme.
  1238. * @see background-gradient
  1239. */
  1240. /**
  1241. * @var {color} $alert-color
  1242. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  1243. */
  1244. /**
  1245. * @var {color} $confirm-color
  1246. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  1247. */
  1248. /**
  1249. * @var {color} $active-color
  1250. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  1251. */
  1252. /**
  1253. * @var {color} $neutral-color
  1254. * Color used for the neautral `ui` for Toolbars and Tabbars.
  1255. */
  1256. /**
  1257. * @var {color} $page-bg-color
  1258. * Background color for fullscreen components.
  1259. */
  1260. /**
  1261. * @var {measurement} $global-row-height
  1262. * The minimum row height for items like toolbars.
  1263. */
  1264. /**
  1265. * @var {measurement} $global-list-height
  1266. * The minimum row height for items like toolbars.
  1267. */
  1268. /**
  1269. * Background noise recipe
  1270. *
  1271. * This recipe use a sass function to generate a .png file
  1272. *
  1273. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  1274. * @link https://github.com/DanielRapp/Noisy
  1275. *
  1276. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  1277. * @link https://gist.github.com/1021332
  1278. *
  1279. * Ported to a sass gem by Antti Salonen @antsa
  1280. * @link https://github.com/antsa/sassy_noise
  1281. *
  1282. * Mixin: background-noise
  1283. * Function: background_noise
  1284. *
  1285. * @author Daniel Rapp @DanielRapp
  1286. * @author Aaron Russell @aaronrussell
  1287. * @author Philipp Bosch @philippbosch
  1288. * @author Antti Salonen @antsa
  1289. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  1290. */
  1291. /**
  1292. *
  1293. * @class Gradients
  1294. * @author David Kaneda http://www.davidkaneda.com/
  1295. *
  1296. */
  1297. /**
  1298. * Adds a background gradient into a specified selector.
  1299. *
  1300. * @include background-gradient(#444, 'glossy');
  1301. *
  1302. * You can also use color-stops if you want full control of the gradient:
  1303. *
  1304. * @include background-gradient(#444, color-stops(#333, #222, #111));
  1305. *
  1306. * @param {color} $bg-color
  1307. * The base color of the gradient.
  1308. *
  1309. * @param {string/list} $type
  1310. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  1311. *
  1312. * @include background-gradient(red, 'glossy');
  1313. *
  1314. * It can also accept a list of color-stop values:;
  1315. *
  1316. * @include background-gradient(black, color-stops(#333, #111, #000));
  1317. *
  1318. * @param {string} $direction
  1319. * The direction of the gradient.
  1320. */
  1321. /**
  1322. * Blueprint grid background pattern
  1323. *
  1324. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  1325. *
  1326. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1327. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  1328. */
  1329. /**
  1330. * Background overlay inspired by Google Chrome modal overlay
  1331. *
  1332. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  1333. */
  1334. /**
  1335. * Striped background pattern
  1336. *
  1337. * @link http://lea.verou.me/css3patterns/
  1338. *
  1339. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1340. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  1341. */
  1342. /**
  1343. *
  1344. * Before compass 0.11.5, you need to add
  1345. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1346. * To your configuration (config.rb)
  1347. * @see https://github.com/chriseppstein/compass/issues/401
  1348. *
  1349. * @link http://lea.verou.me/css3patterns/#tartan
  1350. *
  1351. * @author Marta Armada http://swwweet.com/ for the original pattern
  1352. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  1353. */
  1354. /**
  1355. * Carbon Fiber background pattern
  1356. *
  1357. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1358. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  1359. *
  1360. * @link http://lea.verou.me/css3patterns/
  1361. *
  1362. */
  1363. /**
  1364. * Striped background patterns
  1365. *
  1366. * Before compass 0.11.5, you need to add
  1367. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1368. * To your configuration (config.rb)
  1369. * @see https://github.com/chriseppstein/compass/issues/401
  1370. *
  1371. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  1372. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  1373. *
  1374. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1375. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1376. */
  1377. /**
  1378. * Cicada background pattern
  1379. *
  1380. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  1381. *
  1382. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  1383. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1384. */
  1385. /**
  1386. *
  1387. * Tablecloth background pattern
  1388. *
  1389. * @link http://lea.verou.me/css3patterns/#tablecloth
  1390. *
  1391. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1392. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1393. */
  1394. /**
  1395. * Lined paper background pattern
  1396. *
  1397. * @link http://lea.verou.me/css3patterns/#lined-paper
  1398. *
  1399. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  1400. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1401. */
  1402. /**
  1403. * Madras background pattern
  1404. *
  1405. * Before compass 0.11.5, you need to add
  1406. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1407. * To your configuration (config.rb)
  1408. * @see https://github.com/chriseppstein/compass/issues/401
  1409. *
  1410. * @link http://lea.verou.me/css3patterns/#madras
  1411. *
  1412. * @author Divya Manian http://nimbupani.com/ for the original pattern
  1413. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1414. */
  1415. /**
  1416. * Checkerboard background pattern
  1417. *
  1418. * @link http://lea.verou.me/css3patterns/#checkerboard
  1419. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  1420. *
  1421. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1422. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1423. */
  1424. /**
  1425. *
  1426. * Houndstooth background pattern
  1427. *
  1428. * @link http://lea.verou.me/css3patterns/#houndstooth
  1429. *
  1430. * @author Antoine Bernier http://abernier.name for the original pattern
  1431. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1432. */
  1433. /**
  1434. *
  1435. * Polkadot background pattern
  1436. *
  1437. * @link http://lea.verou.me/css3patterns/#polka-dot
  1438. *
  1439. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1440. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1441. */
  1442. /**
  1443. *
  1444. * @class Color
  1445. * @author David Kaneda - http://www.davidkaneda.com
  1446. *
  1447. */
  1448. /**
  1449. * Returns the brightness (out of 100) of a specified color.
  1450. * @todo explain why this is useful
  1451. * @param {color} $color The color you want the brightness value of
  1452. * @return {measurement}
  1453. */
  1454. /**
  1455. * Returns the luminosity for a specified color
  1456. * @param {color} The color to check
  1457. * @return {measurement}
  1458. */
  1459. /**
  1460. * Returns the contrast ratio between two colors
  1461. * @param {color1} The color to check
  1462. * @return {measurement}
  1463. */
  1464. /**
  1465. * Colors the text of an element based on lightness of its background.
  1466. *
  1467. * .my-element {
  1468. * @include color-by-background(#fff); // Colors text black.
  1469. * }
  1470. *
  1471. * .my-element {
  1472. * @include color-by-background(#fff, 40%); // Colors text gray.
  1473. * }
  1474. *
  1475. * @param {color} $bg-color Background color of element.
  1476. * @param {percent} $contrast Contrast of text color to its background.
  1477. *
  1478. */
  1479. /**
  1480. * @class Global_CSS
  1481. */
  1482. /**
  1483. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  1484. *
  1485. * @include pictos-iconmask('attachment');
  1486. *
  1487. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  1488. */
  1489. /**
  1490. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  1491. *
  1492. * @param {color} $bg-color Base color to be used for the button.
  1493. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  1494. */
  1495. /**
  1496. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  1497. *
  1498. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1499. */
  1500. /**
  1501. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  1502. *
  1503. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1504. */
  1505. /**
  1506. * Adds basic styles to :before or :after pseudo-elements.
  1507. *
  1508. * .my-element:after {
  1509. * @include insertion(50px, 50px);
  1510. * }
  1511. *
  1512. * @param {measurement} $width Height of pseudo-element.
  1513. * @param {measurement} $height Height of pseudo-element.
  1514. * @param {measurement} $top Top positioning of pseudo-element.
  1515. * @param {measurement} $left Left positioning of pseudo-element.
  1516. *
  1517. */
  1518. /**
  1519. * Makes an element stretch to its parent's bounds.
  1520. */
  1521. /**
  1522. * Bevels the text based on its background.
  1523. *
  1524. * @param {color} $bg-color Background color of element.
  1525. * @see bevel-text
  1526. *
  1527. */
  1528. /**
  1529. * Creates a background gradient for masked elements, based on the lightness of their background.
  1530. *
  1531. * @param {color} $bg-color Background color of element.
  1532. * @param {percent} $percent Contrast of the new gradient to its background.
  1533. * @param {percent} $style Gradient style of the gradient.
  1534. * @see background-gradient
  1535. *
  1536. */
  1537. /**
  1538. * Makes the element text overflow to use ellipsis.
  1539. */
  1540. /**
  1541. * @class Global_CSS
  1542. *
  1543. * Global CSS variables and mixins of Sencha Touch.
  1544. */
  1545. /**
  1546. * @var {boolean} $include-html-style
  1547. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  1548. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  1549. */
  1550. /**
  1551. * @var {boolean} $include-default-icons
  1552. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  1553. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  1554. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  1555. * and user. Set to false to reduce CSS weight.
  1556. */
  1557. /**
  1558. * @var {boolean} $include-form-sliders
  1559. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  1560. */
  1561. /**
  1562. * @var {boolean} $include-floating-panels
  1563. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  1564. */
  1565. /**
  1566. * @var {boolean} $include-default-uis
  1567. * Decides whether or not to include the default UIs for all components.
  1568. */
  1569. /**
  1570. * @var {boolean} $include-highlights=true
  1571. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  1572. * non-performant browsers, or minimalist designs.
  1573. */
  1574. /**
  1575. * @var {boolean} $include-border-radius
  1576. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  1577. */
  1578. /**
  1579. * @var {boolean} $basic-slider
  1580. * Optionally remove CSS3 effects from the slider component for improved performance.
  1581. */
  1582. /**
  1583. * @var {color} $base-color
  1584. * The primary color variable from which most elements derive their color scheme.
  1585. */
  1586. /**
  1587. * @var {string} $base-gradient
  1588. * The primary gradient variable from which most elements derive their color scheme.
  1589. * @see background-gradient
  1590. */
  1591. /**
  1592. * @var {font-family} $font-family
  1593. * The font-family to be used throughout the theme.
  1594. * @see background-gradient
  1595. */
  1596. /**
  1597. * @var {color} $alert-color
  1598. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  1599. */
  1600. /**
  1601. * @var {color} $confirm-color
  1602. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  1603. */
  1604. /**
  1605. * @var {color} $active-color
  1606. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  1607. */
  1608. /**
  1609. * @var {color} $neutral-color
  1610. * Color used for the neautral `ui` for Toolbars and Tabbars.
  1611. */
  1612. /**
  1613. * @var {color} $page-bg-color
  1614. * Background color for fullscreen components.
  1615. */
  1616. /**
  1617. * @var {measurement} $global-row-height
  1618. * The minimum row height for items like toolbars.
  1619. */
  1620. /**
  1621. * @var {measurement} $global-list-height
  1622. * The minimum row height for items like toolbars.
  1623. */
  1624. /**
  1625. * Background noise recipe
  1626. *
  1627. * This recipe use a sass function to generate a .png file
  1628. *
  1629. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  1630. * @link https://github.com/DanielRapp/Noisy
  1631. *
  1632. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  1633. * @link https://gist.github.com/1021332
  1634. *
  1635. * Ported to a sass gem by Antti Salonen @antsa
  1636. * @link https://github.com/antsa/sassy_noise
  1637. *
  1638. * Mixin: background-noise
  1639. * Function: background_noise
  1640. *
  1641. * @author Daniel Rapp @DanielRapp
  1642. * @author Aaron Russell @aaronrussell
  1643. * @author Philipp Bosch @philippbosch
  1644. * @author Antti Salonen @antsa
  1645. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  1646. */
  1647. /**
  1648. *
  1649. * @class Gradients
  1650. * @author David Kaneda http://www.davidkaneda.com/
  1651. *
  1652. */
  1653. /**
  1654. * Adds a background gradient into a specified selector.
  1655. *
  1656. * @include background-gradient(#444, 'glossy');
  1657. *
  1658. * You can also use color-stops if you want full control of the gradient:
  1659. *
  1660. * @include background-gradient(#444, color-stops(#333, #222, #111));
  1661. *
  1662. * @param {color} $bg-color
  1663. * The base color of the gradient.
  1664. *
  1665. * @param {string/list} $type
  1666. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  1667. *
  1668. * @include background-gradient(red, 'glossy');
  1669. *
  1670. * It can also accept a list of color-stop values:;
  1671. *
  1672. * @include background-gradient(black, color-stops(#333, #111, #000));
  1673. *
  1674. * @param {string} $direction
  1675. * The direction of the gradient.
  1676. */
  1677. /**
  1678. * Blueprint grid background pattern
  1679. *
  1680. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  1681. *
  1682. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1683. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  1684. */
  1685. /**
  1686. * Background overlay inspired by Google Chrome modal overlay
  1687. *
  1688. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  1689. */
  1690. /**
  1691. * Striped background pattern
  1692. *
  1693. * @link http://lea.verou.me/css3patterns/
  1694. *
  1695. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1696. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  1697. */
  1698. /**
  1699. *
  1700. * Before compass 0.11.5, you need to add
  1701. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1702. * To your configuration (config.rb)
  1703. * @see https://github.com/chriseppstein/compass/issues/401
  1704. *
  1705. * @link http://lea.verou.me/css3patterns/#tartan
  1706. *
  1707. * @author Marta Armada http://swwweet.com/ for the original pattern
  1708. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  1709. */
  1710. /**
  1711. * Carbon Fiber background pattern
  1712. *
  1713. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1714. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  1715. *
  1716. * @link http://lea.verou.me/css3patterns/
  1717. *
  1718. */
  1719. /**
  1720. * Striped background patterns
  1721. *
  1722. * Before compass 0.11.5, you need to add
  1723. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1724. * To your configuration (config.rb)
  1725. * @see https://github.com/chriseppstein/compass/issues/401
  1726. *
  1727. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  1728. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  1729. *
  1730. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1731. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1732. */
  1733. /**
  1734. * Cicada background pattern
  1735. *
  1736. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  1737. *
  1738. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  1739. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1740. */
  1741. /**
  1742. *
  1743. * Tablecloth background pattern
  1744. *
  1745. * @link http://lea.verou.me/css3patterns/#tablecloth
  1746. *
  1747. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1748. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1749. */
  1750. /**
  1751. * Lined paper background pattern
  1752. *
  1753. * @link http://lea.verou.me/css3patterns/#lined-paper
  1754. *
  1755. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  1756. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1757. */
  1758. /**
  1759. * Madras background pattern
  1760. *
  1761. * Before compass 0.11.5, you need to add
  1762. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  1763. * To your configuration (config.rb)
  1764. * @see https://github.com/chriseppstein/compass/issues/401
  1765. *
  1766. * @link http://lea.verou.me/css3patterns/#madras
  1767. *
  1768. * @author Divya Manian http://nimbupani.com/ for the original pattern
  1769. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1770. */
  1771. /**
  1772. * Checkerboard background pattern
  1773. *
  1774. * @link http://lea.verou.me/css3patterns/#checkerboard
  1775. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  1776. *
  1777. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1778. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1779. */
  1780. /**
  1781. *
  1782. * Houndstooth background pattern
  1783. *
  1784. * @link http://lea.verou.me/css3patterns/#houndstooth
  1785. *
  1786. * @author Antoine Bernier http://abernier.name for the original pattern
  1787. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1788. */
  1789. /**
  1790. *
  1791. * Polkadot background pattern
  1792. *
  1793. * @link http://lea.verou.me/css3patterns/#polka-dot
  1794. *
  1795. * @author Lea Verou http://lea.verou.me/ for the original pattern
  1796. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  1797. */
  1798. /**
  1799. *
  1800. * @class Color
  1801. * @author David Kaneda - http://www.davidkaneda.com
  1802. *
  1803. */
  1804. /**
  1805. * Returns the brightness (out of 100) of a specified color.
  1806. * @todo explain why this is useful
  1807. * @param {color} $color The color you want the brightness value of
  1808. * @return {measurement}
  1809. */
  1810. /**
  1811. * Returns the luminosity for a specified color
  1812. * @param {color} The color to check
  1813. * @return {measurement}
  1814. */
  1815. /**
  1816. * Returns the contrast ratio between two colors
  1817. * @param {color1} The color to check
  1818. * @return {measurement}
  1819. */
  1820. /**
  1821. * Colors the text of an element based on lightness of its background.
  1822. *
  1823. * .my-element {
  1824. * @include color-by-background(#fff); // Colors text black.
  1825. * }
  1826. *
  1827. * .my-element {
  1828. * @include color-by-background(#fff, 40%); // Colors text gray.
  1829. * }
  1830. *
  1831. * @param {color} $bg-color Background color of element.
  1832. * @param {percent} $contrast Contrast of text color to its background.
  1833. *
  1834. */
  1835. /**
  1836. * @class Global_CSS
  1837. */
  1838. /**
  1839. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  1840. *
  1841. * @include pictos-iconmask('attachment');
  1842. *
  1843. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  1844. */
  1845. /**
  1846. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  1847. *
  1848. * @param {color} $bg-color Base color to be used for the button.
  1849. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  1850. */
  1851. /**
  1852. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  1853. *
  1854. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1855. */
  1856. /**
  1857. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  1858. *
  1859. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  1860. */
  1861. /**
  1862. * Adds basic styles to :before or :after pseudo-elements.
  1863. *
  1864. * .my-element:after {
  1865. * @include insertion(50px, 50px);
  1866. * }
  1867. *
  1868. * @param {measurement} $width Height of pseudo-element.
  1869. * @param {measurement} $height Height of pseudo-element.
  1870. * @param {measurement} $top Top positioning of pseudo-element.
  1871. * @param {measurement} $left Left positioning of pseudo-element.
  1872. *
  1873. */
  1874. /**
  1875. * Makes an element stretch to its parent's bounds.
  1876. */
  1877. /**
  1878. * Bevels the text based on its background.
  1879. *
  1880. * @param {color} $bg-color Background color of element.
  1881. * @see bevel-text
  1882. *
  1883. */
  1884. /**
  1885. * Creates a background gradient for masked elements, based on the lightness of their background.
  1886. *
  1887. * @param {color} $bg-color Background color of element.
  1888. * @param {percent} $percent Contrast of the new gradient to its background.
  1889. * @param {percent} $style Gradient style of the gradient.
  1890. * @see background-gradient
  1891. *
  1892. */
  1893. /**
  1894. * Makes the element text overflow to use ellipsis.
  1895. */
  1896. /**
  1897. * @class Ext.Toolbar
  1898. */
  1899. /**
  1900. * @var {color} $toolbar-base-color
  1901. * The primary color variable from which toolbars derive their light and dark UIs.
  1902. */
  1903. /**
  1904. * @var {measurement} $toolbar-spacing
  1905. * Space between items in a toolbar (like buttons and fields)
  1906. */
  1907. /**
  1908. * @var {string} $toolbar-gradient
  1909. * Background gradient style for toolbars.
  1910. */
  1911. /**
  1912. * @var {boolean} $include-toolbar-uis
  1913. * Optionally disable separate toolbar UIs (light and dark).
  1914. */
  1915. /**
  1916. * Includes default toolbar styles.
  1917. */
  1918. /**
  1919. * Creates a theme UI for toolbars.
  1920. *
  1921. * // SCSS
  1922. * @include sencha-toolbar-ui('sub', #58710D, 'glossy');
  1923. *
  1924. * // JS
  1925. * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'})
  1926. *
  1927. * @param {string} $ui-label The name of the UI being created.
  1928. * Can not included spaces or special punctuation (used in class names)
  1929. * @param {color} $color Base color for the UI.
  1930. * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI.
  1931. */
  1932. /**
  1933. * @class Global_CSS
  1934. *
  1935. * Global CSS variables and mixins of Sencha Touch.
  1936. */
  1937. /**
  1938. * @var {boolean} $include-html-style
  1939. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  1940. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  1941. */
  1942. /**
  1943. * @var {boolean} $include-default-icons
  1944. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  1945. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  1946. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  1947. * and user. Set to false to reduce CSS weight.
  1948. */
  1949. /**
  1950. * @var {boolean} $include-form-sliders
  1951. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  1952. */
  1953. /**
  1954. * @var {boolean} $include-floating-panels
  1955. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  1956. */
  1957. /**
  1958. * @var {boolean} $include-default-uis
  1959. * Decides whether or not to include the default UIs for all components.
  1960. */
  1961. /**
  1962. * @var {boolean} $include-highlights=true
  1963. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  1964. * non-performant browsers, or minimalist designs.
  1965. */
  1966. /**
  1967. * @var {boolean} $include-border-radius
  1968. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  1969. */
  1970. /**
  1971. * @var {boolean} $basic-slider
  1972. * Optionally remove CSS3 effects from the slider component for improved performance.
  1973. */
  1974. /**
  1975. * @var {color} $base-color
  1976. * The primary color variable from which most elements derive their color scheme.
  1977. */
  1978. /**
  1979. * @var {string} $base-gradient
  1980. * The primary gradient variable from which most elements derive their color scheme.
  1981. * @see background-gradient
  1982. */
  1983. /**
  1984. * @var {font-family} $font-family
  1985. * The font-family to be used throughout the theme.
  1986. * @see background-gradient
  1987. */
  1988. /**
  1989. * @var {color} $alert-color
  1990. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  1991. */
  1992. /**
  1993. * @var {color} $confirm-color
  1994. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  1995. */
  1996. /**
  1997. * @var {color} $active-color
  1998. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  1999. */
  2000. /**
  2001. * @var {color} $neutral-color
  2002. * Color used for the neautral `ui` for Toolbars and Tabbars.
  2003. */
  2004. /**
  2005. * @var {color} $page-bg-color
  2006. * Background color for fullscreen components.
  2007. */
  2008. /**
  2009. * @var {measurement} $global-row-height
  2010. * The minimum row height for items like toolbars.
  2011. */
  2012. /**
  2013. * @var {measurement} $global-list-height
  2014. * The minimum row height for items like toolbars.
  2015. */
  2016. /**
  2017. * Background noise recipe
  2018. *
  2019. * This recipe use a sass function to generate a .png file
  2020. *
  2021. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  2022. * @link https://github.com/DanielRapp/Noisy
  2023. *
  2024. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  2025. * @link https://gist.github.com/1021332
  2026. *
  2027. * Ported to a sass gem by Antti Salonen @antsa
  2028. * @link https://github.com/antsa/sassy_noise
  2029. *
  2030. * Mixin: background-noise
  2031. * Function: background_noise
  2032. *
  2033. * @author Daniel Rapp @DanielRapp
  2034. * @author Aaron Russell @aaronrussell
  2035. * @author Philipp Bosch @philippbosch
  2036. * @author Antti Salonen @antsa
  2037. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  2038. */
  2039. /**
  2040. *
  2041. * @class Gradients
  2042. * @author David Kaneda http://www.davidkaneda.com/
  2043. *
  2044. */
  2045. /**
  2046. * Adds a background gradient into a specified selector.
  2047. *
  2048. * @include background-gradient(#444, 'glossy');
  2049. *
  2050. * You can also use color-stops if you want full control of the gradient:
  2051. *
  2052. * @include background-gradient(#444, color-stops(#333, #222, #111));
  2053. *
  2054. * @param {color} $bg-color
  2055. * The base color of the gradient.
  2056. *
  2057. * @param {string/list} $type
  2058. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  2059. *
  2060. * @include background-gradient(red, 'glossy');
  2061. *
  2062. * It can also accept a list of color-stop values:;
  2063. *
  2064. * @include background-gradient(black, color-stops(#333, #111, #000));
  2065. *
  2066. * @param {string} $direction
  2067. * The direction of the gradient.
  2068. */
  2069. /**
  2070. * Blueprint grid background pattern
  2071. *
  2072. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  2073. *
  2074. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2075. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2076. */
  2077. /**
  2078. * Background overlay inspired by Google Chrome modal overlay
  2079. *
  2080. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  2081. */
  2082. /**
  2083. * Striped background pattern
  2084. *
  2085. * @link http://lea.verou.me/css3patterns/
  2086. *
  2087. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2088. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  2089. */
  2090. /**
  2091. *
  2092. * Before compass 0.11.5, you need to add
  2093. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2094. * To your configuration (config.rb)
  2095. * @see https://github.com/chriseppstein/compass/issues/401
  2096. *
  2097. * @link http://lea.verou.me/css3patterns/#tartan
  2098. *
  2099. * @author Marta Armada http://swwweet.com/ for the original pattern
  2100. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2101. */
  2102. /**
  2103. * Carbon Fiber background pattern
  2104. *
  2105. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2106. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  2107. *
  2108. * @link http://lea.verou.me/css3patterns/
  2109. *
  2110. */
  2111. /**
  2112. * Striped background patterns
  2113. *
  2114. * Before compass 0.11.5, you need to add
  2115. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2116. * To your configuration (config.rb)
  2117. * @see https://github.com/chriseppstein/compass/issues/401
  2118. *
  2119. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  2120. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  2121. *
  2122. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2123. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2124. */
  2125. /**
  2126. * Cicada background pattern
  2127. *
  2128. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  2129. *
  2130. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  2131. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2132. */
  2133. /**
  2134. *
  2135. * Tablecloth background pattern
  2136. *
  2137. * @link http://lea.verou.me/css3patterns/#tablecloth
  2138. *
  2139. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2140. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2141. */
  2142. /**
  2143. * Lined paper background pattern
  2144. *
  2145. * @link http://lea.verou.me/css3patterns/#lined-paper
  2146. *
  2147. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  2148. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2149. */
  2150. /**
  2151. * Madras background pattern
  2152. *
  2153. * Before compass 0.11.5, you need to add
  2154. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2155. * To your configuration (config.rb)
  2156. * @see https://github.com/chriseppstein/compass/issues/401
  2157. *
  2158. * @link http://lea.verou.me/css3patterns/#madras
  2159. *
  2160. * @author Divya Manian http://nimbupani.com/ for the original pattern
  2161. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2162. */
  2163. /**
  2164. * Checkerboard background pattern
  2165. *
  2166. * @link http://lea.verou.me/css3patterns/#checkerboard
  2167. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  2168. *
  2169. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2170. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2171. */
  2172. /**
  2173. *
  2174. * Houndstooth background pattern
  2175. *
  2176. * @link http://lea.verou.me/css3patterns/#houndstooth
  2177. *
  2178. * @author Antoine Bernier http://abernier.name for the original pattern
  2179. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2180. */
  2181. /**
  2182. *
  2183. * Polkadot background pattern
  2184. *
  2185. * @link http://lea.verou.me/css3patterns/#polka-dot
  2186. *
  2187. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2188. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2189. */
  2190. /**
  2191. *
  2192. * @class Color
  2193. * @author David Kaneda - http://www.davidkaneda.com
  2194. *
  2195. */
  2196. /**
  2197. * Returns the brightness (out of 100) of a specified color.
  2198. * @todo explain why this is useful
  2199. * @param {color} $color The color you want the brightness value of
  2200. * @return {measurement}
  2201. */
  2202. /**
  2203. * Returns the luminosity for a specified color
  2204. * @param {color} The color to check
  2205. * @return {measurement}
  2206. */
  2207. /**
  2208. * Returns the contrast ratio between two colors
  2209. * @param {color1} The color to check
  2210. * @return {measurement}
  2211. */
  2212. /**
  2213. * Colors the text of an element based on lightness of its background.
  2214. *
  2215. * .my-element {
  2216. * @include color-by-background(#fff); // Colors text black.
  2217. * }
  2218. *
  2219. * .my-element {
  2220. * @include color-by-background(#fff, 40%); // Colors text gray.
  2221. * }
  2222. *
  2223. * @param {color} $bg-color Background color of element.
  2224. * @param {percent} $contrast Contrast of text color to its background.
  2225. *
  2226. */
  2227. /**
  2228. * @class Global_CSS
  2229. */
  2230. /**
  2231. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  2232. *
  2233. * @include pictos-iconmask('attachment');
  2234. *
  2235. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  2236. */
  2237. /**
  2238. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  2239. *
  2240. * @param {color} $bg-color Base color to be used for the button.
  2241. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  2242. */
  2243. /**
  2244. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  2245. *
  2246. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  2247. */
  2248. /**
  2249. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  2250. *
  2251. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  2252. */
  2253. /**
  2254. * Adds basic styles to :before or :after pseudo-elements.
  2255. *
  2256. * .my-element:after {
  2257. * @include insertion(50px, 50px);
  2258. * }
  2259. *
  2260. * @param {measurement} $width Height of pseudo-element.
  2261. * @param {measurement} $height Height of pseudo-element.
  2262. * @param {measurement} $top Top positioning of pseudo-element.
  2263. * @param {measurement} $left Left positioning of pseudo-element.
  2264. *
  2265. */
  2266. /**
  2267. * Makes an element stretch to its parent's bounds.
  2268. */
  2269. /**
  2270. * Bevels the text based on its background.
  2271. *
  2272. * @param {color} $bg-color Background color of element.
  2273. * @see bevel-text
  2274. *
  2275. */
  2276. /**
  2277. * Creates a background gradient for masked elements, based on the lightness of their background.
  2278. *
  2279. * @param {color} $bg-color Background color of element.
  2280. * @param {percent} $percent Contrast of the new gradient to its background.
  2281. * @param {percent} $style Gradient style of the gradient.
  2282. * @see background-gradient
  2283. *
  2284. */
  2285. /**
  2286. * Makes the element text overflow to use ellipsis.
  2287. */
  2288. /**
  2289. * @class Ext.Button
  2290. */
  2291. /**
  2292. * @var {measurement} $button-height Default height for buttons.
  2293. */
  2294. /**
  2295. * @var {measurement} $button-radius Default border-radius for buttons.
  2296. */
  2297. /**
  2298. * @var {measurement} $button-stroke-weight Default border width for buttons.
  2299. */
  2300. /**
  2301. * @var {string} $button-gradient Default gradient for buttons.
  2302. */
  2303. /**
  2304. * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons.
  2305. */
  2306. /**
  2307. * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline.
  2308. */
  2309. /**
  2310. * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows.
  2311. */
  2312. /**
  2313. * Includes default button styles.
  2314. */
  2315. /**
  2316. * Creates a theme UI for buttons.
  2317. * Also automatically generates UIs for {ui-label}-round and {ui-label}-small.
  2318. *
  2319. * // SCSS
  2320. * @include sencha-button-ui('secondary', #99A4AE, 'glossy');
  2321. *
  2322. * // JS
  2323. * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'});
  2324. *
  2325. * @param {string} $ui-label The name of the UI being created.
  2326. * Can not included spaces or special punctuation (used in class names)
  2327. * @param {color} $color Base color for the UI.
  2328. * @param {string} $gradient Default gradient for the UI.
  2329. */
  2330. /**
  2331. * @class Global_CSS
  2332. *
  2333. * Global CSS variables and mixins of Sencha Touch.
  2334. */
  2335. /**
  2336. * @var {boolean} $include-html-style
  2337. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  2338. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  2339. */
  2340. /**
  2341. * @var {boolean} $include-default-icons
  2342. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  2343. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  2344. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  2345. * and user. Set to false to reduce CSS weight.
  2346. */
  2347. /**
  2348. * @var {boolean} $include-form-sliders
  2349. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  2350. */
  2351. /**
  2352. * @var {boolean} $include-floating-panels
  2353. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  2354. */
  2355. /**
  2356. * @var {boolean} $include-default-uis
  2357. * Decides whether or not to include the default UIs for all components.
  2358. */
  2359. /**
  2360. * @var {boolean} $include-highlights=true
  2361. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  2362. * non-performant browsers, or minimalist designs.
  2363. */
  2364. /**
  2365. * @var {boolean} $include-border-radius
  2366. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  2367. */
  2368. /**
  2369. * @var {boolean} $basic-slider
  2370. * Optionally remove CSS3 effects from the slider component for improved performance.
  2371. */
  2372. /**
  2373. * @var {color} $base-color
  2374. * The primary color variable from which most elements derive their color scheme.
  2375. */
  2376. /**
  2377. * @var {string} $base-gradient
  2378. * The primary gradient variable from which most elements derive their color scheme.
  2379. * @see background-gradient
  2380. */
  2381. /**
  2382. * @var {font-family} $font-family
  2383. * The font-family to be used throughout the theme.
  2384. * @see background-gradient
  2385. */
  2386. /**
  2387. * @var {color} $alert-color
  2388. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  2389. */
  2390. /**
  2391. * @var {color} $confirm-color
  2392. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  2393. */
  2394. /**
  2395. * @var {color} $active-color
  2396. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  2397. */
  2398. /**
  2399. * @var {color} $neutral-color
  2400. * Color used for the neautral `ui` for Toolbars and Tabbars.
  2401. */
  2402. /**
  2403. * @var {color} $page-bg-color
  2404. * Background color for fullscreen components.
  2405. */
  2406. /**
  2407. * @var {measurement} $global-row-height
  2408. * The minimum row height for items like toolbars.
  2409. */
  2410. /**
  2411. * @var {measurement} $global-list-height
  2412. * The minimum row height for items like toolbars.
  2413. */
  2414. /**
  2415. * Background noise recipe
  2416. *
  2417. * This recipe use a sass function to generate a .png file
  2418. *
  2419. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  2420. * @link https://github.com/DanielRapp/Noisy
  2421. *
  2422. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  2423. * @link https://gist.github.com/1021332
  2424. *
  2425. * Ported to a sass gem by Antti Salonen @antsa
  2426. * @link https://github.com/antsa/sassy_noise
  2427. *
  2428. * Mixin: background-noise
  2429. * Function: background_noise
  2430. *
  2431. * @author Daniel Rapp @DanielRapp
  2432. * @author Aaron Russell @aaronrussell
  2433. * @author Philipp Bosch @philippbosch
  2434. * @author Antti Salonen @antsa
  2435. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  2436. */
  2437. /**
  2438. *
  2439. * @class Gradients
  2440. * @author David Kaneda http://www.davidkaneda.com/
  2441. *
  2442. */
  2443. /**
  2444. * Adds a background gradient into a specified selector.
  2445. *
  2446. * @include background-gradient(#444, 'glossy');
  2447. *
  2448. * You can also use color-stops if you want full control of the gradient:
  2449. *
  2450. * @include background-gradient(#444, color-stops(#333, #222, #111));
  2451. *
  2452. * @param {color} $bg-color
  2453. * The base color of the gradient.
  2454. *
  2455. * @param {string/list} $type
  2456. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  2457. *
  2458. * @include background-gradient(red, 'glossy');
  2459. *
  2460. * It can also accept a list of color-stop values:;
  2461. *
  2462. * @include background-gradient(black, color-stops(#333, #111, #000));
  2463. *
  2464. * @param {string} $direction
  2465. * The direction of the gradient.
  2466. */
  2467. /**
  2468. * Blueprint grid background pattern
  2469. *
  2470. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  2471. *
  2472. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2473. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2474. */
  2475. /**
  2476. * Background overlay inspired by Google Chrome modal overlay
  2477. *
  2478. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  2479. */
  2480. /**
  2481. * Striped background pattern
  2482. *
  2483. * @link http://lea.verou.me/css3patterns/
  2484. *
  2485. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2486. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  2487. */
  2488. /**
  2489. *
  2490. * Before compass 0.11.5, you need to add
  2491. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2492. * To your configuration (config.rb)
  2493. * @see https://github.com/chriseppstein/compass/issues/401
  2494. *
  2495. * @link http://lea.verou.me/css3patterns/#tartan
  2496. *
  2497. * @author Marta Armada http://swwweet.com/ for the original pattern
  2498. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2499. */
  2500. /**
  2501. * Carbon Fiber background pattern
  2502. *
  2503. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2504. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  2505. *
  2506. * @link http://lea.verou.me/css3patterns/
  2507. *
  2508. */
  2509. /**
  2510. * Striped background patterns
  2511. *
  2512. * Before compass 0.11.5, you need to add
  2513. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2514. * To your configuration (config.rb)
  2515. * @see https://github.com/chriseppstein/compass/issues/401
  2516. *
  2517. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  2518. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  2519. *
  2520. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2521. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2522. */
  2523. /**
  2524. * Cicada background pattern
  2525. *
  2526. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  2527. *
  2528. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  2529. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2530. */
  2531. /**
  2532. *
  2533. * Tablecloth background pattern
  2534. *
  2535. * @link http://lea.verou.me/css3patterns/#tablecloth
  2536. *
  2537. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2538. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2539. */
  2540. /**
  2541. * Lined paper background pattern
  2542. *
  2543. * @link http://lea.verou.me/css3patterns/#lined-paper
  2544. *
  2545. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  2546. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2547. */
  2548. /**
  2549. * Madras background pattern
  2550. *
  2551. * Before compass 0.11.5, you need to add
  2552. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2553. * To your configuration (config.rb)
  2554. * @see https://github.com/chriseppstein/compass/issues/401
  2555. *
  2556. * @link http://lea.verou.me/css3patterns/#madras
  2557. *
  2558. * @author Divya Manian http://nimbupani.com/ for the original pattern
  2559. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2560. */
  2561. /**
  2562. * Checkerboard background pattern
  2563. *
  2564. * @link http://lea.verou.me/css3patterns/#checkerboard
  2565. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  2566. *
  2567. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2568. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2569. */
  2570. /**
  2571. *
  2572. * Houndstooth background pattern
  2573. *
  2574. * @link http://lea.verou.me/css3patterns/#houndstooth
  2575. *
  2576. * @author Antoine Bernier http://abernier.name for the original pattern
  2577. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2578. */
  2579. /**
  2580. *
  2581. * Polkadot background pattern
  2582. *
  2583. * @link http://lea.verou.me/css3patterns/#polka-dot
  2584. *
  2585. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2586. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2587. */
  2588. /**
  2589. *
  2590. * @class Color
  2591. * @author David Kaneda - http://www.davidkaneda.com
  2592. *
  2593. */
  2594. /**
  2595. * Returns the brightness (out of 100) of a specified color.
  2596. * @todo explain why this is useful
  2597. * @param {color} $color The color you want the brightness value of
  2598. * @return {measurement}
  2599. */
  2600. /**
  2601. * Returns the luminosity for a specified color
  2602. * @param {color} The color to check
  2603. * @return {measurement}
  2604. */
  2605. /**
  2606. * Returns the contrast ratio between two colors
  2607. * @param {color1} The color to check
  2608. * @return {measurement}
  2609. */
  2610. /**
  2611. * Colors the text of an element based on lightness of its background.
  2612. *
  2613. * .my-element {
  2614. * @include color-by-background(#fff); // Colors text black.
  2615. * }
  2616. *
  2617. * .my-element {
  2618. * @include color-by-background(#fff, 40%); // Colors text gray.
  2619. * }
  2620. *
  2621. * @param {color} $bg-color Background color of element.
  2622. * @param {percent} $contrast Contrast of text color to its background.
  2623. *
  2624. */
  2625. /**
  2626. * @class Global_CSS
  2627. */
  2628. /**
  2629. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  2630. *
  2631. * @include pictos-iconmask('attachment');
  2632. *
  2633. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  2634. */
  2635. /**
  2636. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  2637. *
  2638. * @param {color} $bg-color Base color to be used for the button.
  2639. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  2640. */
  2641. /**
  2642. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  2643. *
  2644. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  2645. */
  2646. /**
  2647. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  2648. *
  2649. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  2650. */
  2651. /**
  2652. * Adds basic styles to :before or :after pseudo-elements.
  2653. *
  2654. * .my-element:after {
  2655. * @include insertion(50px, 50px);
  2656. * }
  2657. *
  2658. * @param {measurement} $width Height of pseudo-element.
  2659. * @param {measurement} $height Height of pseudo-element.
  2660. * @param {measurement} $top Top positioning of pseudo-element.
  2661. * @param {measurement} $left Left positioning of pseudo-element.
  2662. *
  2663. */
  2664. /**
  2665. * Makes an element stretch to its parent's bounds.
  2666. */
  2667. /**
  2668. * Bevels the text based on its background.
  2669. *
  2670. * @param {color} $bg-color Background color of element.
  2671. * @see bevel-text
  2672. *
  2673. */
  2674. /**
  2675. * Creates a background gradient for masked elements, based on the lightness of their background.
  2676. *
  2677. * @param {color} $bg-color Background color of element.
  2678. * @param {percent} $percent Contrast of the new gradient to its background.
  2679. * @param {percent} $style Gradient style of the gradient.
  2680. * @see background-gradient
  2681. *
  2682. */
  2683. /**
  2684. * Makes the element text overflow to use ellipsis.
  2685. */
  2686. /**
  2687. * @class Ext.tab.Bar
  2688. */
  2689. /**
  2690. * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark).
  2691. */
  2692. /**
  2693. * @var {boolean} $include-top-tabs
  2694. * Optionally exclude top tab styles by setting to false.
  2695. */
  2696. /**
  2697. * @var {boolean} $include-bottom-tabs
  2698. * Optionally exclude bottom tab styles by setting to false.
  2699. */
  2700. /**
  2701. * @var {color} $tabs-light
  2702. * Base color for "light" UI tabs.
  2703. */
  2704. /**
  2705. * @var {color} $tabs-light-active
  2706. * Active color for "light" UI tabs.
  2707. */
  2708. /**
  2709. * @var {color} $tabs-dark
  2710. * Base color for "dark" UI tabs.
  2711. */
  2712. /**
  2713. * @var {color} $tabs-dark-active
  2714. * Active color for "dark" UI tabs.
  2715. */
  2716. /**
  2717. * @var {string} $tabs-bar-gradient
  2718. * Background gradient style for tab bars.
  2719. */
  2720. /**
  2721. * @class Ext.tab.Tab
  2722. */
  2723. /**
  2724. * @var {string} $tabs-bottom-radius
  2725. * Border-radius for bottom tabs.
  2726. */
  2727. /**
  2728. * @var {string} $tabs-bottom-icon-size
  2729. * Icon size for bottom tabs
  2730. */
  2731. /**
  2732. * @var {string} $tabs-bottom-active-gradient
  2733. * Background gradient style for active bottom tabs.
  2734. */
  2735. /**
  2736. * @var {boolean} $include-tab-highlights
  2737. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  2738. * non-performant browsers, or minimalist designs.
  2739. */
  2740. /**
  2741. * Includes default tab styles.
  2742. *
  2743. * @member Ext.tab.Bar
  2744. */
  2745. /**
  2746. * Creates a theme UI for tabbar/tab components.
  2747. *
  2748. * // SCSS
  2749. * @include sencha-button-ui('pink', #333, 'matte', #AE537A);
  2750. *
  2751. * // JS
  2752. * var tabs = new Ext.tab.Panel({
  2753. * tabBar: {
  2754. * ui: 'pink',
  2755. * dock: 'bottom',
  2756. * layout: { pack: 'center' }
  2757. * },
  2758. * ...
  2759. * });
  2760. *
  2761. * @param {string} $ui-label The name of the UI being created.
  2762. * Can not included spaces or special punctuation (used in class names)
  2763. * @param {color} $bar-color Base color for the tab bar.
  2764. * @param {string} $bar-gradient Background gradient style for the tab bar.
  2765. * @param {color} $tab-active-color Background-color for active tab icons.
  2766. *
  2767. * @member Ext.tab.Bar
  2768. */
  2769. /**
  2770. * @class Global_CSS
  2771. *
  2772. * Global CSS variables and mixins of Sencha Touch.
  2773. */
  2774. /**
  2775. * @var {boolean} $include-html-style
  2776. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  2777. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  2778. */
  2779. /**
  2780. * @var {boolean} $include-default-icons
  2781. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  2782. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  2783. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  2784. * and user. Set to false to reduce CSS weight.
  2785. */
  2786. /**
  2787. * @var {boolean} $include-form-sliders
  2788. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  2789. */
  2790. /**
  2791. * @var {boolean} $include-floating-panels
  2792. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  2793. */
  2794. /**
  2795. * @var {boolean} $include-default-uis
  2796. * Decides whether or not to include the default UIs for all components.
  2797. */
  2798. /**
  2799. * @var {boolean} $include-highlights=true
  2800. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  2801. * non-performant browsers, or minimalist designs.
  2802. */
  2803. /**
  2804. * @var {boolean} $include-border-radius
  2805. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  2806. */
  2807. /**
  2808. * @var {boolean} $basic-slider
  2809. * Optionally remove CSS3 effects from the slider component for improved performance.
  2810. */
  2811. /**
  2812. * @var {color} $base-color
  2813. * The primary color variable from which most elements derive their color scheme.
  2814. */
  2815. /**
  2816. * @var {string} $base-gradient
  2817. * The primary gradient variable from which most elements derive their color scheme.
  2818. * @see background-gradient
  2819. */
  2820. /**
  2821. * @var {font-family} $font-family
  2822. * The font-family to be used throughout the theme.
  2823. * @see background-gradient
  2824. */
  2825. /**
  2826. * @var {color} $alert-color
  2827. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  2828. */
  2829. /**
  2830. * @var {color} $confirm-color
  2831. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  2832. */
  2833. /**
  2834. * @var {color} $active-color
  2835. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  2836. */
  2837. /**
  2838. * @var {color} $neutral-color
  2839. * Color used for the neautral `ui` for Toolbars and Tabbars.
  2840. */
  2841. /**
  2842. * @var {color} $page-bg-color
  2843. * Background color for fullscreen components.
  2844. */
  2845. /**
  2846. * @var {measurement} $global-row-height
  2847. * The minimum row height for items like toolbars.
  2848. */
  2849. /**
  2850. * @var {measurement} $global-list-height
  2851. * The minimum row height for items like toolbars.
  2852. */
  2853. /**
  2854. * Background noise recipe
  2855. *
  2856. * This recipe use a sass function to generate a .png file
  2857. *
  2858. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  2859. * @link https://github.com/DanielRapp/Noisy
  2860. *
  2861. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  2862. * @link https://gist.github.com/1021332
  2863. *
  2864. * Ported to a sass gem by Antti Salonen @antsa
  2865. * @link https://github.com/antsa/sassy_noise
  2866. *
  2867. * Mixin: background-noise
  2868. * Function: background_noise
  2869. *
  2870. * @author Daniel Rapp @DanielRapp
  2871. * @author Aaron Russell @aaronrussell
  2872. * @author Philipp Bosch @philippbosch
  2873. * @author Antti Salonen @antsa
  2874. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  2875. */
  2876. /**
  2877. *
  2878. * @class Gradients
  2879. * @author David Kaneda http://www.davidkaneda.com/
  2880. *
  2881. */
  2882. /**
  2883. * Adds a background gradient into a specified selector.
  2884. *
  2885. * @include background-gradient(#444, 'glossy');
  2886. *
  2887. * You can also use color-stops if you want full control of the gradient:
  2888. *
  2889. * @include background-gradient(#444, color-stops(#333, #222, #111));
  2890. *
  2891. * @param {color} $bg-color
  2892. * The base color of the gradient.
  2893. *
  2894. * @param {string/list} $type
  2895. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  2896. *
  2897. * @include background-gradient(red, 'glossy');
  2898. *
  2899. * It can also accept a list of color-stop values:;
  2900. *
  2901. * @include background-gradient(black, color-stops(#333, #111, #000));
  2902. *
  2903. * @param {string} $direction
  2904. * The direction of the gradient.
  2905. */
  2906. /**
  2907. * Blueprint grid background pattern
  2908. *
  2909. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  2910. *
  2911. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2912. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2913. */
  2914. /**
  2915. * Background overlay inspired by Google Chrome modal overlay
  2916. *
  2917. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  2918. */
  2919. /**
  2920. * Striped background pattern
  2921. *
  2922. * @link http://lea.verou.me/css3patterns/
  2923. *
  2924. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2925. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  2926. */
  2927. /**
  2928. *
  2929. * Before compass 0.11.5, you need to add
  2930. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2931. * To your configuration (config.rb)
  2932. * @see https://github.com/chriseppstein/compass/issues/401
  2933. *
  2934. * @link http://lea.verou.me/css3patterns/#tartan
  2935. *
  2936. * @author Marta Armada http://swwweet.com/ for the original pattern
  2937. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  2938. */
  2939. /**
  2940. * Carbon Fiber background pattern
  2941. *
  2942. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2943. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  2944. *
  2945. * @link http://lea.verou.me/css3patterns/
  2946. *
  2947. */
  2948. /**
  2949. * Striped background patterns
  2950. *
  2951. * Before compass 0.11.5, you need to add
  2952. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2953. * To your configuration (config.rb)
  2954. * @see https://github.com/chriseppstein/compass/issues/401
  2955. *
  2956. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  2957. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  2958. *
  2959. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2960. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2961. */
  2962. /**
  2963. * Cicada background pattern
  2964. *
  2965. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  2966. *
  2967. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  2968. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2969. */
  2970. /**
  2971. *
  2972. * Tablecloth background pattern
  2973. *
  2974. * @link http://lea.verou.me/css3patterns/#tablecloth
  2975. *
  2976. * @author Lea Verou http://lea.verou.me/ for the original pattern
  2977. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2978. */
  2979. /**
  2980. * Lined paper background pattern
  2981. *
  2982. * @link http://lea.verou.me/css3patterns/#lined-paper
  2983. *
  2984. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  2985. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2986. */
  2987. /**
  2988. * Madras background pattern
  2989. *
  2990. * Before compass 0.11.5, you need to add
  2991. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  2992. * To your configuration (config.rb)
  2993. * @see https://github.com/chriseppstein/compass/issues/401
  2994. *
  2995. * @link http://lea.verou.me/css3patterns/#madras
  2996. *
  2997. * @author Divya Manian http://nimbupani.com/ for the original pattern
  2998. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  2999. */
  3000. /**
  3001. * Checkerboard background pattern
  3002. *
  3003. * @link http://lea.verou.me/css3patterns/#checkerboard
  3004. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  3005. *
  3006. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3007. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3008. */
  3009. /**
  3010. *
  3011. * Houndstooth background pattern
  3012. *
  3013. * @link http://lea.verou.me/css3patterns/#houndstooth
  3014. *
  3015. * @author Antoine Bernier http://abernier.name for the original pattern
  3016. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3017. */
  3018. /**
  3019. *
  3020. * Polkadot background pattern
  3021. *
  3022. * @link http://lea.verou.me/css3patterns/#polka-dot
  3023. *
  3024. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3025. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3026. */
  3027. /**
  3028. *
  3029. * @class Color
  3030. * @author David Kaneda - http://www.davidkaneda.com
  3031. *
  3032. */
  3033. /**
  3034. * Returns the brightness (out of 100) of a specified color.
  3035. * @todo explain why this is useful
  3036. * @param {color} $color The color you want the brightness value of
  3037. * @return {measurement}
  3038. */
  3039. /**
  3040. * Returns the luminosity for a specified color
  3041. * @param {color} The color to check
  3042. * @return {measurement}
  3043. */
  3044. /**
  3045. * Returns the contrast ratio between two colors
  3046. * @param {color1} The color to check
  3047. * @return {measurement}
  3048. */
  3049. /**
  3050. * Colors the text of an element based on lightness of its background.
  3051. *
  3052. * .my-element {
  3053. * @include color-by-background(#fff); // Colors text black.
  3054. * }
  3055. *
  3056. * .my-element {
  3057. * @include color-by-background(#fff, 40%); // Colors text gray.
  3058. * }
  3059. *
  3060. * @param {color} $bg-color Background color of element.
  3061. * @param {percent} $contrast Contrast of text color to its background.
  3062. *
  3063. */
  3064. /**
  3065. * @class Global_CSS
  3066. */
  3067. /**
  3068. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  3069. *
  3070. * @include pictos-iconmask('attachment');
  3071. *
  3072. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  3073. */
  3074. /**
  3075. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  3076. *
  3077. * @param {color} $bg-color Base color to be used for the button.
  3078. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  3079. */
  3080. /**
  3081. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  3082. *
  3083. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3084. */
  3085. /**
  3086. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  3087. *
  3088. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3089. */
  3090. /**
  3091. * Adds basic styles to :before or :after pseudo-elements.
  3092. *
  3093. * .my-element:after {
  3094. * @include insertion(50px, 50px);
  3095. * }
  3096. *
  3097. * @param {measurement} $width Height of pseudo-element.
  3098. * @param {measurement} $height Height of pseudo-element.
  3099. * @param {measurement} $top Top positioning of pseudo-element.
  3100. * @param {measurement} $left Left positioning of pseudo-element.
  3101. *
  3102. */
  3103. /**
  3104. * Makes an element stretch to its parent's bounds.
  3105. */
  3106. /**
  3107. * Bevels the text based on its background.
  3108. *
  3109. * @param {color} $bg-color Background color of element.
  3110. * @see bevel-text
  3111. *
  3112. */
  3113. /**
  3114. * Creates a background gradient for masked elements, based on the lightness of their background.
  3115. *
  3116. * @param {color} $bg-color Background color of element.
  3117. * @param {percent} $percent Contrast of the new gradient to its background.
  3118. * @param {percent} $style Gradient style of the gradient.
  3119. * @see background-gradient
  3120. *
  3121. */
  3122. /**
  3123. * Makes the element text overflow to use ellipsis.
  3124. */
  3125. /**
  3126. * @class Ext.carousel.Indicator
  3127. */
  3128. /**
  3129. * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots.
  3130. */
  3131. /**
  3132. * @var {measurement} $carousel-indicator-spacing
  3133. * Amount of space between carousel indicator dots.
  3134. */
  3135. /**
  3136. * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in.
  3137. */
  3138. /**
  3139. * Creates a theme UI for carousel indicator components.
  3140. *
  3141. * @param {string} $ui-label The name of the UI being created.
  3142. * Can not included spaces or special punctuation (used in class names)
  3143. * @param {color} $color Base color for the UI.
  3144. * @param {string} $gradient Default gradient for the UI.
  3145. * @param {color} $active-color Active color for the UI.
  3146. * @param {string} $active-gradient Active gradient for the UI.
  3147. */
  3148. /**
  3149. * @class Ext.carousel.Carousel
  3150. */
  3151. /**
  3152. * Includes basic carousel formatting.
  3153. */
  3154. /**
  3155. * @class Global_CSS
  3156. *
  3157. * Global CSS variables and mixins of Sencha Touch.
  3158. */
  3159. /**
  3160. * @var {boolean} $include-html-style
  3161. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  3162. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  3163. */
  3164. /**
  3165. * @var {boolean} $include-default-icons
  3166. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  3167. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  3168. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  3169. * and user. Set to false to reduce CSS weight.
  3170. */
  3171. /**
  3172. * @var {boolean} $include-form-sliders
  3173. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  3174. */
  3175. /**
  3176. * @var {boolean} $include-floating-panels
  3177. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  3178. */
  3179. /**
  3180. * @var {boolean} $include-default-uis
  3181. * Decides whether or not to include the default UIs for all components.
  3182. */
  3183. /**
  3184. * @var {boolean} $include-highlights=true
  3185. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  3186. * non-performant browsers, or minimalist designs.
  3187. */
  3188. /**
  3189. * @var {boolean} $include-border-radius
  3190. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  3191. */
  3192. /**
  3193. * @var {boolean} $basic-slider
  3194. * Optionally remove CSS3 effects from the slider component for improved performance.
  3195. */
  3196. /**
  3197. * @var {color} $base-color
  3198. * The primary color variable from which most elements derive their color scheme.
  3199. */
  3200. /**
  3201. * @var {string} $base-gradient
  3202. * The primary gradient variable from which most elements derive their color scheme.
  3203. * @see background-gradient
  3204. */
  3205. /**
  3206. * @var {font-family} $font-family
  3207. * The font-family to be used throughout the theme.
  3208. * @see background-gradient
  3209. */
  3210. /**
  3211. * @var {color} $alert-color
  3212. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  3213. */
  3214. /**
  3215. * @var {color} $confirm-color
  3216. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  3217. */
  3218. /**
  3219. * @var {color} $active-color
  3220. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  3221. */
  3222. /**
  3223. * @var {color} $neutral-color
  3224. * Color used for the neautral `ui` for Toolbars and Tabbars.
  3225. */
  3226. /**
  3227. * @var {color} $page-bg-color
  3228. * Background color for fullscreen components.
  3229. */
  3230. /**
  3231. * @var {measurement} $global-row-height
  3232. * The minimum row height for items like toolbars.
  3233. */
  3234. /**
  3235. * @var {measurement} $global-list-height
  3236. * The minimum row height for items like toolbars.
  3237. */
  3238. /**
  3239. * Background noise recipe
  3240. *
  3241. * This recipe use a sass function to generate a .png file
  3242. *
  3243. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  3244. * @link https://github.com/DanielRapp/Noisy
  3245. *
  3246. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  3247. * @link https://gist.github.com/1021332
  3248. *
  3249. * Ported to a sass gem by Antti Salonen @antsa
  3250. * @link https://github.com/antsa/sassy_noise
  3251. *
  3252. * Mixin: background-noise
  3253. * Function: background_noise
  3254. *
  3255. * @author Daniel Rapp @DanielRapp
  3256. * @author Aaron Russell @aaronrussell
  3257. * @author Philipp Bosch @philippbosch
  3258. * @author Antti Salonen @antsa
  3259. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  3260. */
  3261. /**
  3262. *
  3263. * @class Gradients
  3264. * @author David Kaneda http://www.davidkaneda.com/
  3265. *
  3266. */
  3267. /**
  3268. * Adds a background gradient into a specified selector.
  3269. *
  3270. * @include background-gradient(#444, 'glossy');
  3271. *
  3272. * You can also use color-stops if you want full control of the gradient:
  3273. *
  3274. * @include background-gradient(#444, color-stops(#333, #222, #111));
  3275. *
  3276. * @param {color} $bg-color
  3277. * The base color of the gradient.
  3278. *
  3279. * @param {string/list} $type
  3280. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  3281. *
  3282. * @include background-gradient(red, 'glossy');
  3283. *
  3284. * It can also accept a list of color-stop values:;
  3285. *
  3286. * @include background-gradient(black, color-stops(#333, #111, #000));
  3287. *
  3288. * @param {string} $direction
  3289. * The direction of the gradient.
  3290. */
  3291. /**
  3292. * Blueprint grid background pattern
  3293. *
  3294. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  3295. *
  3296. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3297. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  3298. */
  3299. /**
  3300. * Background overlay inspired by Google Chrome modal overlay
  3301. *
  3302. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  3303. */
  3304. /**
  3305. * Striped background pattern
  3306. *
  3307. * @link http://lea.verou.me/css3patterns/
  3308. *
  3309. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3310. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  3311. */
  3312. /**
  3313. *
  3314. * Before compass 0.11.5, you need to add
  3315. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3316. * To your configuration (config.rb)
  3317. * @see https://github.com/chriseppstein/compass/issues/401
  3318. *
  3319. * @link http://lea.verou.me/css3patterns/#tartan
  3320. *
  3321. * @author Marta Armada http://swwweet.com/ for the original pattern
  3322. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  3323. */
  3324. /**
  3325. * Carbon Fiber background pattern
  3326. *
  3327. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3328. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  3329. *
  3330. * @link http://lea.verou.me/css3patterns/
  3331. *
  3332. */
  3333. /**
  3334. * Striped background patterns
  3335. *
  3336. * Before compass 0.11.5, you need to add
  3337. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3338. * To your configuration (config.rb)
  3339. * @see https://github.com/chriseppstein/compass/issues/401
  3340. *
  3341. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  3342. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  3343. *
  3344. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3345. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3346. */
  3347. /**
  3348. * Cicada background pattern
  3349. *
  3350. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  3351. *
  3352. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  3353. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3354. */
  3355. /**
  3356. *
  3357. * Tablecloth background pattern
  3358. *
  3359. * @link http://lea.verou.me/css3patterns/#tablecloth
  3360. *
  3361. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3362. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3363. */
  3364. /**
  3365. * Lined paper background pattern
  3366. *
  3367. * @link http://lea.verou.me/css3patterns/#lined-paper
  3368. *
  3369. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  3370. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3371. */
  3372. /**
  3373. * Madras background pattern
  3374. *
  3375. * Before compass 0.11.5, you need to add
  3376. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3377. * To your configuration (config.rb)
  3378. * @see https://github.com/chriseppstein/compass/issues/401
  3379. *
  3380. * @link http://lea.verou.me/css3patterns/#madras
  3381. *
  3382. * @author Divya Manian http://nimbupani.com/ for the original pattern
  3383. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3384. */
  3385. /**
  3386. * Checkerboard background pattern
  3387. *
  3388. * @link http://lea.verou.me/css3patterns/#checkerboard
  3389. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  3390. *
  3391. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3392. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3393. */
  3394. /**
  3395. *
  3396. * Houndstooth background pattern
  3397. *
  3398. * @link http://lea.verou.me/css3patterns/#houndstooth
  3399. *
  3400. * @author Antoine Bernier http://abernier.name for the original pattern
  3401. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3402. */
  3403. /**
  3404. *
  3405. * Polkadot background pattern
  3406. *
  3407. * @link http://lea.verou.me/css3patterns/#polka-dot
  3408. *
  3409. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3410. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3411. */
  3412. /**
  3413. *
  3414. * @class Color
  3415. * @author David Kaneda - http://www.davidkaneda.com
  3416. *
  3417. */
  3418. /**
  3419. * Returns the brightness (out of 100) of a specified color.
  3420. * @todo explain why this is useful
  3421. * @param {color} $color The color you want the brightness value of
  3422. * @return {measurement}
  3423. */
  3424. /**
  3425. * Returns the luminosity for a specified color
  3426. * @param {color} The color to check
  3427. * @return {measurement}
  3428. */
  3429. /**
  3430. * Returns the contrast ratio between two colors
  3431. * @param {color1} The color to check
  3432. * @return {measurement}
  3433. */
  3434. /**
  3435. * Colors the text of an element based on lightness of its background.
  3436. *
  3437. * .my-element {
  3438. * @include color-by-background(#fff); // Colors text black.
  3439. * }
  3440. *
  3441. * .my-element {
  3442. * @include color-by-background(#fff, 40%); // Colors text gray.
  3443. * }
  3444. *
  3445. * @param {color} $bg-color Background color of element.
  3446. * @param {percent} $contrast Contrast of text color to its background.
  3447. *
  3448. */
  3449. /**
  3450. * @class Global_CSS
  3451. */
  3452. /**
  3453. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  3454. *
  3455. * @include pictos-iconmask('attachment');
  3456. *
  3457. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  3458. */
  3459. /**
  3460. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  3461. *
  3462. * @param {color} $bg-color Base color to be used for the button.
  3463. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  3464. */
  3465. /**
  3466. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  3467. *
  3468. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3469. */
  3470. /**
  3471. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  3472. *
  3473. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3474. */
  3475. /**
  3476. * Adds basic styles to :before or :after pseudo-elements.
  3477. *
  3478. * .my-element:after {
  3479. * @include insertion(50px, 50px);
  3480. * }
  3481. *
  3482. * @param {measurement} $width Height of pseudo-element.
  3483. * @param {measurement} $height Height of pseudo-element.
  3484. * @param {measurement} $top Top positioning of pseudo-element.
  3485. * @param {measurement} $left Left positioning of pseudo-element.
  3486. *
  3487. */
  3488. /**
  3489. * Makes an element stretch to its parent's bounds.
  3490. */
  3491. /**
  3492. * Bevels the text based on its background.
  3493. *
  3494. * @param {color} $bg-color Background color of element.
  3495. * @see bevel-text
  3496. *
  3497. */
  3498. /**
  3499. * Creates a background gradient for masked elements, based on the lightness of their background.
  3500. *
  3501. * @param {color} $bg-color Background color of element.
  3502. * @param {percent} $percent Contrast of the new gradient to its background.
  3503. * @param {percent} $style Gradient style of the gradient.
  3504. * @see background-gradient
  3505. *
  3506. */
  3507. /**
  3508. * Makes the element text overflow to use ellipsis.
  3509. */
  3510. /**
  3511. * @class Ext.dataview.IndexBar
  3512. */
  3513. /**
  3514. * @var {measurement} $index-bar-width
  3515. * Width of the index bar.
  3516. */
  3517. /**
  3518. * @var {color} $index-bar-bg-color
  3519. * Background-color of the index bar.
  3520. */
  3521. /**
  3522. * @var {color} $index-bar-color
  3523. * Text color of the index bar.
  3524. */
  3525. /**
  3526. * Includes default index bar styles.
  3527. */
  3528. /**
  3529. * @class Global_CSS
  3530. *
  3531. * Global CSS variables and mixins of Sencha Touch.
  3532. */
  3533. /**
  3534. * @var {boolean} $include-html-style
  3535. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  3536. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  3537. */
  3538. /**
  3539. * @var {boolean} $include-default-icons
  3540. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  3541. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  3542. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  3543. * and user. Set to false to reduce CSS weight.
  3544. */
  3545. /**
  3546. * @var {boolean} $include-form-sliders
  3547. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  3548. */
  3549. /**
  3550. * @var {boolean} $include-floating-panels
  3551. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  3552. */
  3553. /**
  3554. * @var {boolean} $include-default-uis
  3555. * Decides whether or not to include the default UIs for all components.
  3556. */
  3557. /**
  3558. * @var {boolean} $include-highlights=true
  3559. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  3560. * non-performant browsers, or minimalist designs.
  3561. */
  3562. /**
  3563. * @var {boolean} $include-border-radius
  3564. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  3565. */
  3566. /**
  3567. * @var {boolean} $basic-slider
  3568. * Optionally remove CSS3 effects from the slider component for improved performance.
  3569. */
  3570. /**
  3571. * @var {color} $base-color
  3572. * The primary color variable from which most elements derive their color scheme.
  3573. */
  3574. /**
  3575. * @var {string} $base-gradient
  3576. * The primary gradient variable from which most elements derive their color scheme.
  3577. * @see background-gradient
  3578. */
  3579. /**
  3580. * @var {font-family} $font-family
  3581. * The font-family to be used throughout the theme.
  3582. * @see background-gradient
  3583. */
  3584. /**
  3585. * @var {color} $alert-color
  3586. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  3587. */
  3588. /**
  3589. * @var {color} $confirm-color
  3590. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  3591. */
  3592. /**
  3593. * @var {color} $active-color
  3594. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  3595. */
  3596. /**
  3597. * @var {color} $neutral-color
  3598. * Color used for the neautral `ui` for Toolbars and Tabbars.
  3599. */
  3600. /**
  3601. * @var {color} $page-bg-color
  3602. * Background color for fullscreen components.
  3603. */
  3604. /**
  3605. * @var {measurement} $global-row-height
  3606. * The minimum row height for items like toolbars.
  3607. */
  3608. /**
  3609. * @var {measurement} $global-list-height
  3610. * The minimum row height for items like toolbars.
  3611. */
  3612. /**
  3613. * Background noise recipe
  3614. *
  3615. * This recipe use a sass function to generate a .png file
  3616. *
  3617. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  3618. * @link https://github.com/DanielRapp/Noisy
  3619. *
  3620. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  3621. * @link https://gist.github.com/1021332
  3622. *
  3623. * Ported to a sass gem by Antti Salonen @antsa
  3624. * @link https://github.com/antsa/sassy_noise
  3625. *
  3626. * Mixin: background-noise
  3627. * Function: background_noise
  3628. *
  3629. * @author Daniel Rapp @DanielRapp
  3630. * @author Aaron Russell @aaronrussell
  3631. * @author Philipp Bosch @philippbosch
  3632. * @author Antti Salonen @antsa
  3633. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  3634. */
  3635. /**
  3636. *
  3637. * @class Gradients
  3638. * @author David Kaneda http://www.davidkaneda.com/
  3639. *
  3640. */
  3641. /**
  3642. * Adds a background gradient into a specified selector.
  3643. *
  3644. * @include background-gradient(#444, 'glossy');
  3645. *
  3646. * You can also use color-stops if you want full control of the gradient:
  3647. *
  3648. * @include background-gradient(#444, color-stops(#333, #222, #111));
  3649. *
  3650. * @param {color} $bg-color
  3651. * The base color of the gradient.
  3652. *
  3653. * @param {string/list} $type
  3654. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  3655. *
  3656. * @include background-gradient(red, 'glossy');
  3657. *
  3658. * It can also accept a list of color-stop values:;
  3659. *
  3660. * @include background-gradient(black, color-stops(#333, #111, #000));
  3661. *
  3662. * @param {string} $direction
  3663. * The direction of the gradient.
  3664. */
  3665. /**
  3666. * Blueprint grid background pattern
  3667. *
  3668. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  3669. *
  3670. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3671. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  3672. */
  3673. /**
  3674. * Background overlay inspired by Google Chrome modal overlay
  3675. *
  3676. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  3677. */
  3678. /**
  3679. * Striped background pattern
  3680. *
  3681. * @link http://lea.verou.me/css3patterns/
  3682. *
  3683. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3684. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  3685. */
  3686. /**
  3687. *
  3688. * Before compass 0.11.5, you need to add
  3689. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3690. * To your configuration (config.rb)
  3691. * @see https://github.com/chriseppstein/compass/issues/401
  3692. *
  3693. * @link http://lea.verou.me/css3patterns/#tartan
  3694. *
  3695. * @author Marta Armada http://swwweet.com/ for the original pattern
  3696. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  3697. */
  3698. /**
  3699. * Carbon Fiber background pattern
  3700. *
  3701. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3702. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  3703. *
  3704. * @link http://lea.verou.me/css3patterns/
  3705. *
  3706. */
  3707. /**
  3708. * Striped background patterns
  3709. *
  3710. * Before compass 0.11.5, you need to add
  3711. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3712. * To your configuration (config.rb)
  3713. * @see https://github.com/chriseppstein/compass/issues/401
  3714. *
  3715. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  3716. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  3717. *
  3718. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3719. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3720. */
  3721. /**
  3722. * Cicada background pattern
  3723. *
  3724. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  3725. *
  3726. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  3727. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3728. */
  3729. /**
  3730. *
  3731. * Tablecloth background pattern
  3732. *
  3733. * @link http://lea.verou.me/css3patterns/#tablecloth
  3734. *
  3735. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3736. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3737. */
  3738. /**
  3739. * Lined paper background pattern
  3740. *
  3741. * @link http://lea.verou.me/css3patterns/#lined-paper
  3742. *
  3743. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  3744. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3745. */
  3746. /**
  3747. * Madras background pattern
  3748. *
  3749. * Before compass 0.11.5, you need to add
  3750. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  3751. * To your configuration (config.rb)
  3752. * @see https://github.com/chriseppstein/compass/issues/401
  3753. *
  3754. * @link http://lea.verou.me/css3patterns/#madras
  3755. *
  3756. * @author Divya Manian http://nimbupani.com/ for the original pattern
  3757. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3758. */
  3759. /**
  3760. * Checkerboard background pattern
  3761. *
  3762. * @link http://lea.verou.me/css3patterns/#checkerboard
  3763. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  3764. *
  3765. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3766. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3767. */
  3768. /**
  3769. *
  3770. * Houndstooth background pattern
  3771. *
  3772. * @link http://lea.verou.me/css3patterns/#houndstooth
  3773. *
  3774. * @author Antoine Bernier http://abernier.name for the original pattern
  3775. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3776. */
  3777. /**
  3778. *
  3779. * Polkadot background pattern
  3780. *
  3781. * @link http://lea.verou.me/css3patterns/#polka-dot
  3782. *
  3783. * @author Lea Verou http://lea.verou.me/ for the original pattern
  3784. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  3785. */
  3786. /**
  3787. *
  3788. * @class Color
  3789. * @author David Kaneda - http://www.davidkaneda.com
  3790. *
  3791. */
  3792. /**
  3793. * Returns the brightness (out of 100) of a specified color.
  3794. * @todo explain why this is useful
  3795. * @param {color} $color The color you want the brightness value of
  3796. * @return {measurement}
  3797. */
  3798. /**
  3799. * Returns the luminosity for a specified color
  3800. * @param {color} The color to check
  3801. * @return {measurement}
  3802. */
  3803. /**
  3804. * Returns the contrast ratio between two colors
  3805. * @param {color1} The color to check
  3806. * @return {measurement}
  3807. */
  3808. /**
  3809. * Colors the text of an element based on lightness of its background.
  3810. *
  3811. * .my-element {
  3812. * @include color-by-background(#fff); // Colors text black.
  3813. * }
  3814. *
  3815. * .my-element {
  3816. * @include color-by-background(#fff, 40%); // Colors text gray.
  3817. * }
  3818. *
  3819. * @param {color} $bg-color Background color of element.
  3820. * @param {percent} $contrast Contrast of text color to its background.
  3821. *
  3822. */
  3823. /**
  3824. * @class Global_CSS
  3825. */
  3826. /**
  3827. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  3828. *
  3829. * @include pictos-iconmask('attachment');
  3830. *
  3831. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  3832. */
  3833. /**
  3834. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  3835. *
  3836. * @param {color} $bg-color Base color to be used for the button.
  3837. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  3838. */
  3839. /**
  3840. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  3841. *
  3842. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3843. */
  3844. /**
  3845. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  3846. *
  3847. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  3848. */
  3849. /**
  3850. * Adds basic styles to :before or :after pseudo-elements.
  3851. *
  3852. * .my-element:after {
  3853. * @include insertion(50px, 50px);
  3854. * }
  3855. *
  3856. * @param {measurement} $width Height of pseudo-element.
  3857. * @param {measurement} $height Height of pseudo-element.
  3858. * @param {measurement} $top Top positioning of pseudo-element.
  3859. * @param {measurement} $left Left positioning of pseudo-element.
  3860. *
  3861. */
  3862. /**
  3863. * Makes an element stretch to its parent's bounds.
  3864. */
  3865. /**
  3866. * Bevels the text based on its background.
  3867. *
  3868. * @param {color} $bg-color Background color of element.
  3869. * @see bevel-text
  3870. *
  3871. */
  3872. /**
  3873. * Creates a background gradient for masked elements, based on the lightness of their background.
  3874. *
  3875. * @param {color} $bg-color Background color of element.
  3876. * @param {percent} $percent Contrast of the new gradient to its background.
  3877. * @param {percent} $style Gradient style of the gradient.
  3878. * @see background-gradient
  3879. *
  3880. */
  3881. /**
  3882. * Makes the element text overflow to use ellipsis.
  3883. */
  3884. /**
  3885. * @class Ext.dataview.List
  3886. */
  3887. /**
  3888. * @var {color} $list-color
  3889. * Text color for list rows.
  3890. */
  3891. /**
  3892. * @var {color} $list-bg-color
  3893. * Background-color for list rows.
  3894. */
  3895. /**
  3896. * @var {color} $include-list-highlights
  3897. * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  3898. * non-performant browsers, or minimalist designs.
  3899. */
  3900. /**
  3901. * @var {boolean} $list-zebrastripe
  3902. * Optionally zebra-stripe the list (alternating background colors).
  3903. */
  3904. /**
  3905. * @var {color} $list-pressed-color
  3906. * Background-color for pressed list rows.
  3907. */
  3908. /**
  3909. * @var {color} $list-active-color
  3910. * Background-color for selected list rows.
  3911. */
  3912. /**
  3913. * @var {string} $list-active-gradient
  3914. * Gradient style for selected list rows.
  3915. */
  3916. /**
  3917. * @var {color} $list-header-bg-color
  3918. * Background-color for list header rows (in grouped lists).
  3919. */
  3920. /**
  3921. * @var {string} $list-header-gradient
  3922. * Gradient style for list header rows (in grouped lists).
  3923. */
  3924. /**
  3925. * @var {measurement} $list-disclosure-size
  3926. * Default size (width/height) for disclosure icons.
  3927. */
  3928. /**
  3929. * @var {measurement} $list-disclosure-round-size
  3930. * Default size (width/height) for disclosure icons in a list with a `round` ui.
  3931. */
  3932. /**
  3933. * @var {measurement} $list-round-padding
  3934. * Default padding for lists with a `round` ui.
  3935. */
  3936. /**
  3937. * Includes default list styles.
  3938. */
  3939. /**
  3940. * @class Global_CSS
  3941. *
  3942. * Global CSS variables and mixins of Sencha Touch.
  3943. */
  3944. /**
  3945. * @var {boolean} $include-html-style
  3946. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  3947. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  3948. */
  3949. /**
  3950. * @var {boolean} $include-default-icons
  3951. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  3952. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  3953. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  3954. * and user. Set to false to reduce CSS weight.
  3955. */
  3956. /**
  3957. * @var {boolean} $include-form-sliders
  3958. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  3959. */
  3960. /**
  3961. * @var {boolean} $include-floating-panels
  3962. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  3963. */
  3964. /**
  3965. * @var {boolean} $include-default-uis
  3966. * Decides whether or not to include the default UIs for all components.
  3967. */
  3968. /**
  3969. * @var {boolean} $include-highlights=true
  3970. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  3971. * non-performant browsers, or minimalist designs.
  3972. */
  3973. /**
  3974. * @var {boolean} $include-border-radius
  3975. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  3976. */
  3977. /**
  3978. * @var {boolean} $basic-slider
  3979. * Optionally remove CSS3 effects from the slider component for improved performance.
  3980. */
  3981. /**
  3982. * @var {color} $base-color
  3983. * The primary color variable from which most elements derive their color scheme.
  3984. */
  3985. /**
  3986. * @var {string} $base-gradient
  3987. * The primary gradient variable from which most elements derive their color scheme.
  3988. * @see background-gradient
  3989. */
  3990. /**
  3991. * @var {font-family} $font-family
  3992. * The font-family to be used throughout the theme.
  3993. * @see background-gradient
  3994. */
  3995. /**
  3996. * @var {color} $alert-color
  3997. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  3998. */
  3999. /**
  4000. * @var {color} $confirm-color
  4001. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  4002. */
  4003. /**
  4004. * @var {color} $active-color
  4005. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  4006. */
  4007. /**
  4008. * @var {color} $neutral-color
  4009. * Color used for the neautral `ui` for Toolbars and Tabbars.
  4010. */
  4011. /**
  4012. * @var {color} $page-bg-color
  4013. * Background color for fullscreen components.
  4014. */
  4015. /**
  4016. * @var {measurement} $global-row-height
  4017. * The minimum row height for items like toolbars.
  4018. */
  4019. /**
  4020. * @var {measurement} $global-list-height
  4021. * The minimum row height for items like toolbars.
  4022. */
  4023. /**
  4024. * Background noise recipe
  4025. *
  4026. * This recipe use a sass function to generate a .png file
  4027. *
  4028. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  4029. * @link https://github.com/DanielRapp/Noisy
  4030. *
  4031. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  4032. * @link https://gist.github.com/1021332
  4033. *
  4034. * Ported to a sass gem by Antti Salonen @antsa
  4035. * @link https://github.com/antsa/sassy_noise
  4036. *
  4037. * Mixin: background-noise
  4038. * Function: background_noise
  4039. *
  4040. * @author Daniel Rapp @DanielRapp
  4041. * @author Aaron Russell @aaronrussell
  4042. * @author Philipp Bosch @philippbosch
  4043. * @author Antti Salonen @antsa
  4044. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  4045. */
  4046. /**
  4047. *
  4048. * @class Gradients
  4049. * @author David Kaneda http://www.davidkaneda.com/
  4050. *
  4051. */
  4052. /**
  4053. * Adds a background gradient into a specified selector.
  4054. *
  4055. * @include background-gradient(#444, 'glossy');
  4056. *
  4057. * You can also use color-stops if you want full control of the gradient:
  4058. *
  4059. * @include background-gradient(#444, color-stops(#333, #222, #111));
  4060. *
  4061. * @param {color} $bg-color
  4062. * The base color of the gradient.
  4063. *
  4064. * @param {string/list} $type
  4065. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  4066. *
  4067. * @include background-gradient(red, 'glossy');
  4068. *
  4069. * It can also accept a list of color-stop values:;
  4070. *
  4071. * @include background-gradient(black, color-stops(#333, #111, #000));
  4072. *
  4073. * @param {string} $direction
  4074. * The direction of the gradient.
  4075. */
  4076. /**
  4077. * Blueprint grid background pattern
  4078. *
  4079. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  4080. *
  4081. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4082. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4083. */
  4084. /**
  4085. * Background overlay inspired by Google Chrome modal overlay
  4086. *
  4087. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  4088. */
  4089. /**
  4090. * Striped background pattern
  4091. *
  4092. * @link http://lea.verou.me/css3patterns/
  4093. *
  4094. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4095. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  4096. */
  4097. /**
  4098. *
  4099. * Before compass 0.11.5, you need to add
  4100. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4101. * To your configuration (config.rb)
  4102. * @see https://github.com/chriseppstein/compass/issues/401
  4103. *
  4104. * @link http://lea.verou.me/css3patterns/#tartan
  4105. *
  4106. * @author Marta Armada http://swwweet.com/ for the original pattern
  4107. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4108. */
  4109. /**
  4110. * Carbon Fiber background pattern
  4111. *
  4112. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4113. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  4114. *
  4115. * @link http://lea.verou.me/css3patterns/
  4116. *
  4117. */
  4118. /**
  4119. * Striped background patterns
  4120. *
  4121. * Before compass 0.11.5, you need to add
  4122. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4123. * To your configuration (config.rb)
  4124. * @see https://github.com/chriseppstein/compass/issues/401
  4125. *
  4126. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  4127. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  4128. *
  4129. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4130. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4131. */
  4132. /**
  4133. * Cicada background pattern
  4134. *
  4135. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  4136. *
  4137. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  4138. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4139. */
  4140. /**
  4141. *
  4142. * Tablecloth background pattern
  4143. *
  4144. * @link http://lea.verou.me/css3patterns/#tablecloth
  4145. *
  4146. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4147. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4148. */
  4149. /**
  4150. * Lined paper background pattern
  4151. *
  4152. * @link http://lea.verou.me/css3patterns/#lined-paper
  4153. *
  4154. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  4155. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4156. */
  4157. /**
  4158. * Madras background pattern
  4159. *
  4160. * Before compass 0.11.5, you need to add
  4161. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4162. * To your configuration (config.rb)
  4163. * @see https://github.com/chriseppstein/compass/issues/401
  4164. *
  4165. * @link http://lea.verou.me/css3patterns/#madras
  4166. *
  4167. * @author Divya Manian http://nimbupani.com/ for the original pattern
  4168. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4169. */
  4170. /**
  4171. * Checkerboard background pattern
  4172. *
  4173. * @link http://lea.verou.me/css3patterns/#checkerboard
  4174. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  4175. *
  4176. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4177. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4178. */
  4179. /**
  4180. *
  4181. * Houndstooth background pattern
  4182. *
  4183. * @link http://lea.verou.me/css3patterns/#houndstooth
  4184. *
  4185. * @author Antoine Bernier http://abernier.name for the original pattern
  4186. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4187. */
  4188. /**
  4189. *
  4190. * Polkadot background pattern
  4191. *
  4192. * @link http://lea.verou.me/css3patterns/#polka-dot
  4193. *
  4194. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4195. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4196. */
  4197. /**
  4198. *
  4199. * @class Color
  4200. * @author David Kaneda - http://www.davidkaneda.com
  4201. *
  4202. */
  4203. /**
  4204. * Returns the brightness (out of 100) of a specified color.
  4205. * @todo explain why this is useful
  4206. * @param {color} $color The color you want the brightness value of
  4207. * @return {measurement}
  4208. */
  4209. /**
  4210. * Returns the luminosity for a specified color
  4211. * @param {color} The color to check
  4212. * @return {measurement}
  4213. */
  4214. /**
  4215. * Returns the contrast ratio between two colors
  4216. * @param {color1} The color to check
  4217. * @return {measurement}
  4218. */
  4219. /**
  4220. * Colors the text of an element based on lightness of its background.
  4221. *
  4222. * .my-element {
  4223. * @include color-by-background(#fff); // Colors text black.
  4224. * }
  4225. *
  4226. * .my-element {
  4227. * @include color-by-background(#fff, 40%); // Colors text gray.
  4228. * }
  4229. *
  4230. * @param {color} $bg-color Background color of element.
  4231. * @param {percent} $contrast Contrast of text color to its background.
  4232. *
  4233. */
  4234. /**
  4235. * @class Global_CSS
  4236. */
  4237. /**
  4238. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  4239. *
  4240. * @include pictos-iconmask('attachment');
  4241. *
  4242. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  4243. */
  4244. /**
  4245. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  4246. *
  4247. * @param {color} $bg-color Base color to be used for the button.
  4248. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  4249. */
  4250. /**
  4251. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  4252. *
  4253. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  4254. */
  4255. /**
  4256. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  4257. *
  4258. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  4259. */
  4260. /**
  4261. * Adds basic styles to :before or :after pseudo-elements.
  4262. *
  4263. * .my-element:after {
  4264. * @include insertion(50px, 50px);
  4265. * }
  4266. *
  4267. * @param {measurement} $width Height of pseudo-element.
  4268. * @param {measurement} $height Height of pseudo-element.
  4269. * @param {measurement} $top Top positioning of pseudo-element.
  4270. * @param {measurement} $left Left positioning of pseudo-element.
  4271. *
  4272. */
  4273. /**
  4274. * Makes an element stretch to its parent's bounds.
  4275. */
  4276. /**
  4277. * Bevels the text based on its background.
  4278. *
  4279. * @param {color} $bg-color Background color of element.
  4280. * @see bevel-text
  4281. *
  4282. */
  4283. /**
  4284. * Creates a background gradient for masked elements, based on the lightness of their background.
  4285. *
  4286. * @param {color} $bg-color Background color of element.
  4287. * @param {percent} $percent Contrast of the new gradient to its background.
  4288. * @param {percent} $style Gradient style of the gradient.
  4289. * @see background-gradient
  4290. *
  4291. */
  4292. /**
  4293. * Makes the element text overflow to use ellipsis.
  4294. */
  4295. /**
  4296. * @class Global_CSS
  4297. *
  4298. * Global CSS variables and mixins of Sencha Touch.
  4299. */
  4300. /**
  4301. * @var {boolean} $include-html-style
  4302. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  4303. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  4304. */
  4305. /**
  4306. * @var {boolean} $include-default-icons
  4307. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  4308. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  4309. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  4310. * and user. Set to false to reduce CSS weight.
  4311. */
  4312. /**
  4313. * @var {boolean} $include-form-sliders
  4314. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  4315. */
  4316. /**
  4317. * @var {boolean} $include-floating-panels
  4318. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  4319. */
  4320. /**
  4321. * @var {boolean} $include-default-uis
  4322. * Decides whether or not to include the default UIs for all components.
  4323. */
  4324. /**
  4325. * @var {boolean} $include-highlights=true
  4326. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  4327. * non-performant browsers, or minimalist designs.
  4328. */
  4329. /**
  4330. * @var {boolean} $include-border-radius
  4331. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  4332. */
  4333. /**
  4334. * @var {boolean} $basic-slider
  4335. * Optionally remove CSS3 effects from the slider component for improved performance.
  4336. */
  4337. /**
  4338. * @var {color} $base-color
  4339. * The primary color variable from which most elements derive their color scheme.
  4340. */
  4341. /**
  4342. * @var {string} $base-gradient
  4343. * The primary gradient variable from which most elements derive their color scheme.
  4344. * @see background-gradient
  4345. */
  4346. /**
  4347. * @var {font-family} $font-family
  4348. * The font-family to be used throughout the theme.
  4349. * @see background-gradient
  4350. */
  4351. /**
  4352. * @var {color} $alert-color
  4353. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  4354. */
  4355. /**
  4356. * @var {color} $confirm-color
  4357. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  4358. */
  4359. /**
  4360. * @var {color} $active-color
  4361. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  4362. */
  4363. /**
  4364. * @var {color} $neutral-color
  4365. * Color used for the neautral `ui` for Toolbars and Tabbars.
  4366. */
  4367. /**
  4368. * @var {color} $page-bg-color
  4369. * Background color for fullscreen components.
  4370. */
  4371. /**
  4372. * @var {measurement} $global-row-height
  4373. * The minimum row height for items like toolbars.
  4374. */
  4375. /**
  4376. * @var {measurement} $global-list-height
  4377. * The minimum row height for items like toolbars.
  4378. */
  4379. /**
  4380. * Background noise recipe
  4381. *
  4382. * This recipe use a sass function to generate a .png file
  4383. *
  4384. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  4385. * @link https://github.com/DanielRapp/Noisy
  4386. *
  4387. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  4388. * @link https://gist.github.com/1021332
  4389. *
  4390. * Ported to a sass gem by Antti Salonen @antsa
  4391. * @link https://github.com/antsa/sassy_noise
  4392. *
  4393. * Mixin: background-noise
  4394. * Function: background_noise
  4395. *
  4396. * @author Daniel Rapp @DanielRapp
  4397. * @author Aaron Russell @aaronrussell
  4398. * @author Philipp Bosch @philippbosch
  4399. * @author Antti Salonen @antsa
  4400. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  4401. */
  4402. /**
  4403. *
  4404. * @class Gradients
  4405. * @author David Kaneda http://www.davidkaneda.com/
  4406. *
  4407. */
  4408. /**
  4409. * Adds a background gradient into a specified selector.
  4410. *
  4411. * @include background-gradient(#444, 'glossy');
  4412. *
  4413. * You can also use color-stops if you want full control of the gradient:
  4414. *
  4415. * @include background-gradient(#444, color-stops(#333, #222, #111));
  4416. *
  4417. * @param {color} $bg-color
  4418. * The base color of the gradient.
  4419. *
  4420. * @param {string/list} $type
  4421. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  4422. *
  4423. * @include background-gradient(red, 'glossy');
  4424. *
  4425. * It can also accept a list of color-stop values:;
  4426. *
  4427. * @include background-gradient(black, color-stops(#333, #111, #000));
  4428. *
  4429. * @param {string} $direction
  4430. * The direction of the gradient.
  4431. */
  4432. /**
  4433. * Blueprint grid background pattern
  4434. *
  4435. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  4436. *
  4437. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4438. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4439. */
  4440. /**
  4441. * Background overlay inspired by Google Chrome modal overlay
  4442. *
  4443. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  4444. */
  4445. /**
  4446. * Striped background pattern
  4447. *
  4448. * @link http://lea.verou.me/css3patterns/
  4449. *
  4450. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4451. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  4452. */
  4453. /**
  4454. *
  4455. * Before compass 0.11.5, you need to add
  4456. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4457. * To your configuration (config.rb)
  4458. * @see https://github.com/chriseppstein/compass/issues/401
  4459. *
  4460. * @link http://lea.verou.me/css3patterns/#tartan
  4461. *
  4462. * @author Marta Armada http://swwweet.com/ for the original pattern
  4463. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4464. */
  4465. /**
  4466. * Carbon Fiber background pattern
  4467. *
  4468. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4469. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  4470. *
  4471. * @link http://lea.verou.me/css3patterns/
  4472. *
  4473. */
  4474. /**
  4475. * Striped background patterns
  4476. *
  4477. * Before compass 0.11.5, you need to add
  4478. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4479. * To your configuration (config.rb)
  4480. * @see https://github.com/chriseppstein/compass/issues/401
  4481. *
  4482. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  4483. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  4484. *
  4485. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4486. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4487. */
  4488. /**
  4489. * Cicada background pattern
  4490. *
  4491. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  4492. *
  4493. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  4494. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4495. */
  4496. /**
  4497. *
  4498. * Tablecloth background pattern
  4499. *
  4500. * @link http://lea.verou.me/css3patterns/#tablecloth
  4501. *
  4502. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4503. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4504. */
  4505. /**
  4506. * Lined paper background pattern
  4507. *
  4508. * @link http://lea.verou.me/css3patterns/#lined-paper
  4509. *
  4510. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  4511. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4512. */
  4513. /**
  4514. * Madras background pattern
  4515. *
  4516. * Before compass 0.11.5, you need to add
  4517. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4518. * To your configuration (config.rb)
  4519. * @see https://github.com/chriseppstein/compass/issues/401
  4520. *
  4521. * @link http://lea.verou.me/css3patterns/#madras
  4522. *
  4523. * @author Divya Manian http://nimbupani.com/ for the original pattern
  4524. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4525. */
  4526. /**
  4527. * Checkerboard background pattern
  4528. *
  4529. * @link http://lea.verou.me/css3patterns/#checkerboard
  4530. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  4531. *
  4532. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4533. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4534. */
  4535. /**
  4536. *
  4537. * Houndstooth background pattern
  4538. *
  4539. * @link http://lea.verou.me/css3patterns/#houndstooth
  4540. *
  4541. * @author Antoine Bernier http://abernier.name for the original pattern
  4542. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4543. */
  4544. /**
  4545. *
  4546. * Polkadot background pattern
  4547. *
  4548. * @link http://lea.verou.me/css3patterns/#polka-dot
  4549. *
  4550. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4551. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4552. */
  4553. /**
  4554. *
  4555. * @class Color
  4556. * @author David Kaneda - http://www.davidkaneda.com
  4557. *
  4558. */
  4559. /**
  4560. * Returns the brightness (out of 100) of a specified color.
  4561. * @todo explain why this is useful
  4562. * @param {color} $color The color you want the brightness value of
  4563. * @return {measurement}
  4564. */
  4565. /**
  4566. * Returns the luminosity for a specified color
  4567. * @param {color} The color to check
  4568. * @return {measurement}
  4569. */
  4570. /**
  4571. * Returns the contrast ratio between two colors
  4572. * @param {color1} The color to check
  4573. * @return {measurement}
  4574. */
  4575. /**
  4576. * Colors the text of an element based on lightness of its background.
  4577. *
  4578. * .my-element {
  4579. * @include color-by-background(#fff); // Colors text black.
  4580. * }
  4581. *
  4582. * .my-element {
  4583. * @include color-by-background(#fff, 40%); // Colors text gray.
  4584. * }
  4585. *
  4586. * @param {color} $bg-color Background color of element.
  4587. * @param {percent} $contrast Contrast of text color to its background.
  4588. *
  4589. */
  4590. /**
  4591. * @class Global_CSS
  4592. */
  4593. /**
  4594. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  4595. *
  4596. * @include pictos-iconmask('attachment');
  4597. *
  4598. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  4599. */
  4600. /**
  4601. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  4602. *
  4603. * @param {color} $bg-color Base color to be used for the button.
  4604. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  4605. */
  4606. /**
  4607. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  4608. *
  4609. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  4610. */
  4611. /**
  4612. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  4613. *
  4614. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  4615. */
  4616. /**
  4617. * Adds basic styles to :before or :after pseudo-elements.
  4618. *
  4619. * .my-element:after {
  4620. * @include insertion(50px, 50px);
  4621. * }
  4622. *
  4623. * @param {measurement} $width Height of pseudo-element.
  4624. * @param {measurement} $height Height of pseudo-element.
  4625. * @param {measurement} $top Top positioning of pseudo-element.
  4626. * @param {measurement} $left Left positioning of pseudo-element.
  4627. *
  4628. */
  4629. /**
  4630. * Makes an element stretch to its parent's bounds.
  4631. */
  4632. /**
  4633. * Bevels the text based on its background.
  4634. *
  4635. * @param {color} $bg-color Background color of element.
  4636. * @see bevel-text
  4637. *
  4638. */
  4639. /**
  4640. * Creates a background gradient for masked elements, based on the lightness of their background.
  4641. *
  4642. * @param {color} $bg-color Background color of element.
  4643. * @param {percent} $percent Contrast of the new gradient to its background.
  4644. * @param {percent} $style Gradient style of the gradient.
  4645. * @see background-gradient
  4646. *
  4647. */
  4648. /**
  4649. * Makes the element text overflow to use ellipsis.
  4650. */
  4651. /**
  4652. * Includes default form slider styles.
  4653. *
  4654. * @member Ext.field.Slider
  4655. */
  4656. /**
  4657. * @var {color} $form-bg-color
  4658. * Default background-color for forms.
  4659. *
  4660. * @member Ext.form.Panel
  4661. */
  4662. /**
  4663. * @class Ext.field.Field
  4664. */
  4665. /**
  4666. * @var {color} $form-field-bg-color
  4667. * Default background-color for form fields.
  4668. */
  4669. /**
  4670. * @var {color} $form-light
  4671. * Light color for form fields, mostly used on field borders.
  4672. */
  4673. /**
  4674. * @var {color} $form-dark
  4675. * Dark color for form fields, mostly used on labels/text.
  4676. */
  4677. /**
  4678. * @var {measurement} $form-label-width
  4679. * Default width for form labels.
  4680. */
  4681. /**
  4682. * @var {color} $form-label-background-color
  4683. * The default background color for labels
  4684. */
  4685. /**
  4686. * @var {measurement} $form-field-height
  4687. * Default height for form fields.
  4688. */
  4689. /**
  4690. * @var {measurement} $form-spacing
  4691. * Default spacing for form fields, used for padding, etc.
  4692. */
  4693. /**
  4694. * @var {measurement} $form-textarea-height
  4695. * Default height for form textareas.
  4696. *
  4697. * @member Ext.field.TextArea
  4698. */
  4699. /**
  4700. * @var {measurement} $form-thumb-size
  4701. * Default size of "thumbs" for form sliders/toggles.
  4702. *
  4703. * @member Ext.field.Slider
  4704. */
  4705. /**
  4706. * @var {measurement} $form-toggle-size
  4707. * Thumb size minus padding for inset thumbs like in a Toggle element.
  4708. *
  4709. * @member Ext.field.Toggle
  4710. */
  4711. /**
  4712. * @var {measurement} $form-fieldset-radius
  4713. * Default border-radius for form fieldsets.
  4714. *
  4715. * @member Ext.form.FieldSet
  4716. */
  4717. /**
  4718. * @var {measurement} $form-slider-size
  4719. * Height of the slider "track."
  4720. *
  4721. * @member Ext.field.Slider
  4722. */
  4723. /**
  4724. * Includes default form styles.
  4725. *
  4726. * @member Ext.form.Panel
  4727. */
  4728. /**
  4729. * @class Global_CSS
  4730. *
  4731. * Global CSS variables and mixins of Sencha Touch.
  4732. */
  4733. /**
  4734. * @var {boolean} $include-html-style
  4735. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  4736. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  4737. */
  4738. /**
  4739. * @var {boolean} $include-default-icons
  4740. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  4741. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  4742. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  4743. * and user. Set to false to reduce CSS weight.
  4744. */
  4745. /**
  4746. * @var {boolean} $include-form-sliders
  4747. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  4748. */
  4749. /**
  4750. * @var {boolean} $include-floating-panels
  4751. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  4752. */
  4753. /**
  4754. * @var {boolean} $include-default-uis
  4755. * Decides whether or not to include the default UIs for all components.
  4756. */
  4757. /**
  4758. * @var {boolean} $include-highlights=true
  4759. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  4760. * non-performant browsers, or minimalist designs.
  4761. */
  4762. /**
  4763. * @var {boolean} $include-border-radius
  4764. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  4765. */
  4766. /**
  4767. * @var {boolean} $basic-slider
  4768. * Optionally remove CSS3 effects from the slider component for improved performance.
  4769. */
  4770. /**
  4771. * @var {color} $base-color
  4772. * The primary color variable from which most elements derive their color scheme.
  4773. */
  4774. /**
  4775. * @var {string} $base-gradient
  4776. * The primary gradient variable from which most elements derive their color scheme.
  4777. * @see background-gradient
  4778. */
  4779. /**
  4780. * @var {font-family} $font-family
  4781. * The font-family to be used throughout the theme.
  4782. * @see background-gradient
  4783. */
  4784. /**
  4785. * @var {color} $alert-color
  4786. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  4787. */
  4788. /**
  4789. * @var {color} $confirm-color
  4790. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  4791. */
  4792. /**
  4793. * @var {color} $active-color
  4794. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  4795. */
  4796. /**
  4797. * @var {color} $neutral-color
  4798. * Color used for the neautral `ui` for Toolbars and Tabbars.
  4799. */
  4800. /**
  4801. * @var {color} $page-bg-color
  4802. * Background color for fullscreen components.
  4803. */
  4804. /**
  4805. * @var {measurement} $global-row-height
  4806. * The minimum row height for items like toolbars.
  4807. */
  4808. /**
  4809. * @var {measurement} $global-list-height
  4810. * The minimum row height for items like toolbars.
  4811. */
  4812. /**
  4813. * Background noise recipe
  4814. *
  4815. * This recipe use a sass function to generate a .png file
  4816. *
  4817. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  4818. * @link https://github.com/DanielRapp/Noisy
  4819. *
  4820. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  4821. * @link https://gist.github.com/1021332
  4822. *
  4823. * Ported to a sass gem by Antti Salonen @antsa
  4824. * @link https://github.com/antsa/sassy_noise
  4825. *
  4826. * Mixin: background-noise
  4827. * Function: background_noise
  4828. *
  4829. * @author Daniel Rapp @DanielRapp
  4830. * @author Aaron Russell @aaronrussell
  4831. * @author Philipp Bosch @philippbosch
  4832. * @author Antti Salonen @antsa
  4833. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  4834. */
  4835. /**
  4836. *
  4837. * @class Gradients
  4838. * @author David Kaneda http://www.davidkaneda.com/
  4839. *
  4840. */
  4841. /**
  4842. * Adds a background gradient into a specified selector.
  4843. *
  4844. * @include background-gradient(#444, 'glossy');
  4845. *
  4846. * You can also use color-stops if you want full control of the gradient:
  4847. *
  4848. * @include background-gradient(#444, color-stops(#333, #222, #111));
  4849. *
  4850. * @param {color} $bg-color
  4851. * The base color of the gradient.
  4852. *
  4853. * @param {string/list} $type
  4854. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  4855. *
  4856. * @include background-gradient(red, 'glossy');
  4857. *
  4858. * It can also accept a list of color-stop values:;
  4859. *
  4860. * @include background-gradient(black, color-stops(#333, #111, #000));
  4861. *
  4862. * @param {string} $direction
  4863. * The direction of the gradient.
  4864. */
  4865. /**
  4866. * Blueprint grid background pattern
  4867. *
  4868. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  4869. *
  4870. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4871. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4872. */
  4873. /**
  4874. * Background overlay inspired by Google Chrome modal overlay
  4875. *
  4876. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  4877. */
  4878. /**
  4879. * Striped background pattern
  4880. *
  4881. * @link http://lea.verou.me/css3patterns/
  4882. *
  4883. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4884. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  4885. */
  4886. /**
  4887. *
  4888. * Before compass 0.11.5, you need to add
  4889. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4890. * To your configuration (config.rb)
  4891. * @see https://github.com/chriseppstein/compass/issues/401
  4892. *
  4893. * @link http://lea.verou.me/css3patterns/#tartan
  4894. *
  4895. * @author Marta Armada http://swwweet.com/ for the original pattern
  4896. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  4897. */
  4898. /**
  4899. * Carbon Fiber background pattern
  4900. *
  4901. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4902. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  4903. *
  4904. * @link http://lea.verou.me/css3patterns/
  4905. *
  4906. */
  4907. /**
  4908. * Striped background patterns
  4909. *
  4910. * Before compass 0.11.5, you need to add
  4911. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4912. * To your configuration (config.rb)
  4913. * @see https://github.com/chriseppstein/compass/issues/401
  4914. *
  4915. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  4916. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  4917. *
  4918. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4919. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4920. */
  4921. /**
  4922. * Cicada background pattern
  4923. *
  4924. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  4925. *
  4926. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  4927. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4928. */
  4929. /**
  4930. *
  4931. * Tablecloth background pattern
  4932. *
  4933. * @link http://lea.verou.me/css3patterns/#tablecloth
  4934. *
  4935. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4936. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4937. */
  4938. /**
  4939. * Lined paper background pattern
  4940. *
  4941. * @link http://lea.verou.me/css3patterns/#lined-paper
  4942. *
  4943. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  4944. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4945. */
  4946. /**
  4947. * Madras background pattern
  4948. *
  4949. * Before compass 0.11.5, you need to add
  4950. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  4951. * To your configuration (config.rb)
  4952. * @see https://github.com/chriseppstein/compass/issues/401
  4953. *
  4954. * @link http://lea.verou.me/css3patterns/#madras
  4955. *
  4956. * @author Divya Manian http://nimbupani.com/ for the original pattern
  4957. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4958. */
  4959. /**
  4960. * Checkerboard background pattern
  4961. *
  4962. * @link http://lea.verou.me/css3patterns/#checkerboard
  4963. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  4964. *
  4965. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4966. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4967. */
  4968. /**
  4969. *
  4970. * Houndstooth background pattern
  4971. *
  4972. * @link http://lea.verou.me/css3patterns/#houndstooth
  4973. *
  4974. * @author Antoine Bernier http://abernier.name for the original pattern
  4975. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4976. */
  4977. /**
  4978. *
  4979. * Polkadot background pattern
  4980. *
  4981. * @link http://lea.verou.me/css3patterns/#polka-dot
  4982. *
  4983. * @author Lea Verou http://lea.verou.me/ for the original pattern
  4984. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  4985. */
  4986. /**
  4987. *
  4988. * @class Color
  4989. * @author David Kaneda - http://www.davidkaneda.com
  4990. *
  4991. */
  4992. /**
  4993. * Returns the brightness (out of 100) of a specified color.
  4994. * @todo explain why this is useful
  4995. * @param {color} $color The color you want the brightness value of
  4996. * @return {measurement}
  4997. */
  4998. /**
  4999. * Returns the luminosity for a specified color
  5000. * @param {color} The color to check
  5001. * @return {measurement}
  5002. */
  5003. /**
  5004. * Returns the contrast ratio between two colors
  5005. * @param {color1} The color to check
  5006. * @return {measurement}
  5007. */
  5008. /**
  5009. * Colors the text of an element based on lightness of its background.
  5010. *
  5011. * .my-element {
  5012. * @include color-by-background(#fff); // Colors text black.
  5013. * }
  5014. *
  5015. * .my-element {
  5016. * @include color-by-background(#fff, 40%); // Colors text gray.
  5017. * }
  5018. *
  5019. * @param {color} $bg-color Background color of element.
  5020. * @param {percent} $contrast Contrast of text color to its background.
  5021. *
  5022. */
  5023. /**
  5024. * @class Global_CSS
  5025. */
  5026. /**
  5027. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  5028. *
  5029. * @include pictos-iconmask('attachment');
  5030. *
  5031. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  5032. */
  5033. /**
  5034. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  5035. *
  5036. * @param {color} $bg-color Base color to be used for the button.
  5037. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  5038. */
  5039. /**
  5040. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  5041. *
  5042. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5043. */
  5044. /**
  5045. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  5046. *
  5047. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5048. */
  5049. /**
  5050. * Adds basic styles to :before or :after pseudo-elements.
  5051. *
  5052. * .my-element:after {
  5053. * @include insertion(50px, 50px);
  5054. * }
  5055. *
  5056. * @param {measurement} $width Height of pseudo-element.
  5057. * @param {measurement} $height Height of pseudo-element.
  5058. * @param {measurement} $top Top positioning of pseudo-element.
  5059. * @param {measurement} $left Left positioning of pseudo-element.
  5060. *
  5061. */
  5062. /**
  5063. * Makes an element stretch to its parent's bounds.
  5064. */
  5065. /**
  5066. * Bevels the text based on its background.
  5067. *
  5068. * @param {color} $bg-color Background color of element.
  5069. * @see bevel-text
  5070. *
  5071. */
  5072. /**
  5073. * Creates a background gradient for masked elements, based on the lightness of their background.
  5074. *
  5075. * @param {color} $bg-color Background color of element.
  5076. * @param {percent} $percent Contrast of the new gradient to its background.
  5077. * @param {percent} $style Gradient style of the gradient.
  5078. * @see background-gradient
  5079. *
  5080. */
  5081. /**
  5082. * Makes the element text overflow to use ellipsis.
  5083. */
  5084. /**
  5085. * @class Ext.Sheet
  5086. */
  5087. /**
  5088. * @var {color} $sheet-bg-color
  5089. * Background-color for action sheets and message boxes.
  5090. */
  5091. /**
  5092. * @var {color} $sheet-bg-gradient
  5093. * Background gradient style for action sheets and message boxes.
  5094. */
  5095. /**
  5096. * @var {measurement} $sheet-button-spacing
  5097. * Vertical spacing between sheet buttons.
  5098. */
  5099. /**
  5100. * @var {measurement} $sheet-padding
  5101. * Overall padding in a sheet.
  5102. */
  5103. /**
  5104. * Includes default sheet styles (also required for message box).
  5105. */
  5106. /**
  5107. * Includes default message box styles.
  5108. *
  5109. * @member Ext.MessageBox
  5110. */
  5111. /**
  5112. * @class Global_CSS
  5113. *
  5114. * Global CSS variables and mixins of Sencha Touch.
  5115. */
  5116. /**
  5117. * @var {boolean} $include-html-style
  5118. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  5119. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  5120. */
  5121. /**
  5122. * @var {boolean} $include-default-icons
  5123. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  5124. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  5125. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  5126. * and user. Set to false to reduce CSS weight.
  5127. */
  5128. /**
  5129. * @var {boolean} $include-form-sliders
  5130. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  5131. */
  5132. /**
  5133. * @var {boolean} $include-floating-panels
  5134. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  5135. */
  5136. /**
  5137. * @var {boolean} $include-default-uis
  5138. * Decides whether or not to include the default UIs for all components.
  5139. */
  5140. /**
  5141. * @var {boolean} $include-highlights=true
  5142. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  5143. * non-performant browsers, or minimalist designs.
  5144. */
  5145. /**
  5146. * @var {boolean} $include-border-radius
  5147. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  5148. */
  5149. /**
  5150. * @var {boolean} $basic-slider
  5151. * Optionally remove CSS3 effects from the slider component for improved performance.
  5152. */
  5153. /**
  5154. * @var {color} $base-color
  5155. * The primary color variable from which most elements derive their color scheme.
  5156. */
  5157. /**
  5158. * @var {string} $base-gradient
  5159. * The primary gradient variable from which most elements derive their color scheme.
  5160. * @see background-gradient
  5161. */
  5162. /**
  5163. * @var {font-family} $font-family
  5164. * The font-family to be used throughout the theme.
  5165. * @see background-gradient
  5166. */
  5167. /**
  5168. * @var {color} $alert-color
  5169. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  5170. */
  5171. /**
  5172. * @var {color} $confirm-color
  5173. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  5174. */
  5175. /**
  5176. * @var {color} $active-color
  5177. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  5178. */
  5179. /**
  5180. * @var {color} $neutral-color
  5181. * Color used for the neautral `ui` for Toolbars and Tabbars.
  5182. */
  5183. /**
  5184. * @var {color} $page-bg-color
  5185. * Background color for fullscreen components.
  5186. */
  5187. /**
  5188. * @var {measurement} $global-row-height
  5189. * The minimum row height for items like toolbars.
  5190. */
  5191. /**
  5192. * @var {measurement} $global-list-height
  5193. * The minimum row height for items like toolbars.
  5194. */
  5195. /**
  5196. * Background noise recipe
  5197. *
  5198. * This recipe use a sass function to generate a .png file
  5199. *
  5200. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  5201. * @link https://github.com/DanielRapp/Noisy
  5202. *
  5203. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  5204. * @link https://gist.github.com/1021332
  5205. *
  5206. * Ported to a sass gem by Antti Salonen @antsa
  5207. * @link https://github.com/antsa/sassy_noise
  5208. *
  5209. * Mixin: background-noise
  5210. * Function: background_noise
  5211. *
  5212. * @author Daniel Rapp @DanielRapp
  5213. * @author Aaron Russell @aaronrussell
  5214. * @author Philipp Bosch @philippbosch
  5215. * @author Antti Salonen @antsa
  5216. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  5217. */
  5218. /**
  5219. *
  5220. * @class Gradients
  5221. * @author David Kaneda http://www.davidkaneda.com/
  5222. *
  5223. */
  5224. /**
  5225. * Adds a background gradient into a specified selector.
  5226. *
  5227. * @include background-gradient(#444, 'glossy');
  5228. *
  5229. * You can also use color-stops if you want full control of the gradient:
  5230. *
  5231. * @include background-gradient(#444, color-stops(#333, #222, #111));
  5232. *
  5233. * @param {color} $bg-color
  5234. * The base color of the gradient.
  5235. *
  5236. * @param {string/list} $type
  5237. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  5238. *
  5239. * @include background-gradient(red, 'glossy');
  5240. *
  5241. * It can also accept a list of color-stop values:;
  5242. *
  5243. * @include background-gradient(black, color-stops(#333, #111, #000));
  5244. *
  5245. * @param {string} $direction
  5246. * The direction of the gradient.
  5247. */
  5248. /**
  5249. * Blueprint grid background pattern
  5250. *
  5251. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  5252. *
  5253. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5254. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  5255. */
  5256. /**
  5257. * Background overlay inspired by Google Chrome modal overlay
  5258. *
  5259. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  5260. */
  5261. /**
  5262. * Striped background pattern
  5263. *
  5264. * @link http://lea.verou.me/css3patterns/
  5265. *
  5266. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5267. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  5268. */
  5269. /**
  5270. *
  5271. * Before compass 0.11.5, you need to add
  5272. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5273. * To your configuration (config.rb)
  5274. * @see https://github.com/chriseppstein/compass/issues/401
  5275. *
  5276. * @link http://lea.verou.me/css3patterns/#tartan
  5277. *
  5278. * @author Marta Armada http://swwweet.com/ for the original pattern
  5279. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  5280. */
  5281. /**
  5282. * Carbon Fiber background pattern
  5283. *
  5284. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5285. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  5286. *
  5287. * @link http://lea.verou.me/css3patterns/
  5288. *
  5289. */
  5290. /**
  5291. * Striped background patterns
  5292. *
  5293. * Before compass 0.11.5, you need to add
  5294. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5295. * To your configuration (config.rb)
  5296. * @see https://github.com/chriseppstein/compass/issues/401
  5297. *
  5298. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  5299. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  5300. *
  5301. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5302. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5303. */
  5304. /**
  5305. * Cicada background pattern
  5306. *
  5307. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  5308. *
  5309. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  5310. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5311. */
  5312. /**
  5313. *
  5314. * Tablecloth background pattern
  5315. *
  5316. * @link http://lea.verou.me/css3patterns/#tablecloth
  5317. *
  5318. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5319. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5320. */
  5321. /**
  5322. * Lined paper background pattern
  5323. *
  5324. * @link http://lea.verou.me/css3patterns/#lined-paper
  5325. *
  5326. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  5327. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5328. */
  5329. /**
  5330. * Madras background pattern
  5331. *
  5332. * Before compass 0.11.5, you need to add
  5333. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5334. * To your configuration (config.rb)
  5335. * @see https://github.com/chriseppstein/compass/issues/401
  5336. *
  5337. * @link http://lea.verou.me/css3patterns/#madras
  5338. *
  5339. * @author Divya Manian http://nimbupani.com/ for the original pattern
  5340. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5341. */
  5342. /**
  5343. * Checkerboard background pattern
  5344. *
  5345. * @link http://lea.verou.me/css3patterns/#checkerboard
  5346. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  5347. *
  5348. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5349. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5350. */
  5351. /**
  5352. *
  5353. * Houndstooth background pattern
  5354. *
  5355. * @link http://lea.verou.me/css3patterns/#houndstooth
  5356. *
  5357. * @author Antoine Bernier http://abernier.name for the original pattern
  5358. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5359. */
  5360. /**
  5361. *
  5362. * Polkadot background pattern
  5363. *
  5364. * @link http://lea.verou.me/css3patterns/#polka-dot
  5365. *
  5366. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5367. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5368. */
  5369. /**
  5370. *
  5371. * @class Color
  5372. * @author David Kaneda - http://www.davidkaneda.com
  5373. *
  5374. */
  5375. /**
  5376. * Returns the brightness (out of 100) of a specified color.
  5377. * @todo explain why this is useful
  5378. * @param {color} $color The color you want the brightness value of
  5379. * @return {measurement}
  5380. */
  5381. /**
  5382. * Returns the luminosity for a specified color
  5383. * @param {color} The color to check
  5384. * @return {measurement}
  5385. */
  5386. /**
  5387. * Returns the contrast ratio between two colors
  5388. * @param {color1} The color to check
  5389. * @return {measurement}
  5390. */
  5391. /**
  5392. * Colors the text of an element based on lightness of its background.
  5393. *
  5394. * .my-element {
  5395. * @include color-by-background(#fff); // Colors text black.
  5396. * }
  5397. *
  5398. * .my-element {
  5399. * @include color-by-background(#fff, 40%); // Colors text gray.
  5400. * }
  5401. *
  5402. * @param {color} $bg-color Background color of element.
  5403. * @param {percent} $contrast Contrast of text color to its background.
  5404. *
  5405. */
  5406. /**
  5407. * @class Global_CSS
  5408. */
  5409. /**
  5410. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  5411. *
  5412. * @include pictos-iconmask('attachment');
  5413. *
  5414. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  5415. */
  5416. /**
  5417. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  5418. *
  5419. * @param {color} $bg-color Base color to be used for the button.
  5420. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  5421. */
  5422. /**
  5423. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  5424. *
  5425. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5426. */
  5427. /**
  5428. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  5429. *
  5430. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5431. */
  5432. /**
  5433. * Adds basic styles to :before or :after pseudo-elements.
  5434. *
  5435. * .my-element:after {
  5436. * @include insertion(50px, 50px);
  5437. * }
  5438. *
  5439. * @param {measurement} $width Height of pseudo-element.
  5440. * @param {measurement} $height Height of pseudo-element.
  5441. * @param {measurement} $top Top positioning of pseudo-element.
  5442. * @param {measurement} $left Left positioning of pseudo-element.
  5443. *
  5444. */
  5445. /**
  5446. * Makes an element stretch to its parent's bounds.
  5447. */
  5448. /**
  5449. * Bevels the text based on its background.
  5450. *
  5451. * @param {color} $bg-color Background color of element.
  5452. * @see bevel-text
  5453. *
  5454. */
  5455. /**
  5456. * Creates a background gradient for masked elements, based on the lightness of their background.
  5457. *
  5458. * @param {color} $bg-color Background color of element.
  5459. * @param {percent} $percent Contrast of the new gradient to its background.
  5460. * @param {percent} $style Gradient style of the gradient.
  5461. * @see background-gradient
  5462. *
  5463. */
  5464. /**
  5465. * Makes the element text overflow to use ellipsis.
  5466. */
  5467. /**
  5468. * @class Ext.field.Field
  5469. */
  5470. /**
  5471. * @var {color} $toolbar-input-bg
  5472. * Background-color for toolbar form fields.
  5473. */
  5474. /**
  5475. * @var {color} $toolbar-input-color
  5476. * Text color for toolbar form fields.
  5477. */
  5478. /**
  5479. * @var {measurement} $toolbar-input-height
  5480. * Text color for toolbar form fields.
  5481. */
  5482. /**
  5483. * @var {color} $toolbar-input-border-color
  5484. * Border color for toolbar form fields.
  5485. */
  5486. /**
  5487. * Includes default toolbar form field styles.
  5488. *
  5489. * @member Ext.tab.Bar
  5490. */
  5491. /**
  5492. * @class Ext.LoadMask
  5493. */
  5494. /**
  5495. * @var {color} $loading-spinner-color
  5496. * Background-color for the bars in the loading spinner.
  5497. */
  5498. /**
  5499. * Includes default loading spinner styles (for dataviews).
  5500. */
  5501. /**
  5502. * @class Global_CSS
  5503. *
  5504. * Global CSS variables and mixins of Sencha Touch.
  5505. */
  5506. /**
  5507. * @var {boolean} $include-html-style
  5508. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  5509. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  5510. */
  5511. /**
  5512. * @var {boolean} $include-default-icons
  5513. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  5514. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  5515. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  5516. * and user. Set to false to reduce CSS weight.
  5517. */
  5518. /**
  5519. * @var {boolean} $include-form-sliders
  5520. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  5521. */
  5522. /**
  5523. * @var {boolean} $include-floating-panels
  5524. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  5525. */
  5526. /**
  5527. * @var {boolean} $include-default-uis
  5528. * Decides whether or not to include the default UIs for all components.
  5529. */
  5530. /**
  5531. * @var {boolean} $include-highlights=true
  5532. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  5533. * non-performant browsers, or minimalist designs.
  5534. */
  5535. /**
  5536. * @var {boolean} $include-border-radius
  5537. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  5538. */
  5539. /**
  5540. * @var {boolean} $basic-slider
  5541. * Optionally remove CSS3 effects from the slider component for improved performance.
  5542. */
  5543. /**
  5544. * @var {color} $base-color
  5545. * The primary color variable from which most elements derive their color scheme.
  5546. */
  5547. /**
  5548. * @var {string} $base-gradient
  5549. * The primary gradient variable from which most elements derive their color scheme.
  5550. * @see background-gradient
  5551. */
  5552. /**
  5553. * @var {font-family} $font-family
  5554. * The font-family to be used throughout the theme.
  5555. * @see background-gradient
  5556. */
  5557. /**
  5558. * @var {color} $alert-color
  5559. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  5560. */
  5561. /**
  5562. * @var {color} $confirm-color
  5563. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  5564. */
  5565. /**
  5566. * @var {color} $active-color
  5567. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  5568. */
  5569. /**
  5570. * @var {color} $neutral-color
  5571. * Color used for the neautral `ui` for Toolbars and Tabbars.
  5572. */
  5573. /**
  5574. * @var {color} $page-bg-color
  5575. * Background color for fullscreen components.
  5576. */
  5577. /**
  5578. * @var {measurement} $global-row-height
  5579. * The minimum row height for items like toolbars.
  5580. */
  5581. /**
  5582. * @var {measurement} $global-list-height
  5583. * The minimum row height for items like toolbars.
  5584. */
  5585. /**
  5586. * Background noise recipe
  5587. *
  5588. * This recipe use a sass function to generate a .png file
  5589. *
  5590. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  5591. * @link https://github.com/DanielRapp/Noisy
  5592. *
  5593. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  5594. * @link https://gist.github.com/1021332
  5595. *
  5596. * Ported to a sass gem by Antti Salonen @antsa
  5597. * @link https://github.com/antsa/sassy_noise
  5598. *
  5599. * Mixin: background-noise
  5600. * Function: background_noise
  5601. *
  5602. * @author Daniel Rapp @DanielRapp
  5603. * @author Aaron Russell @aaronrussell
  5604. * @author Philipp Bosch @philippbosch
  5605. * @author Antti Salonen @antsa
  5606. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  5607. */
  5608. /**
  5609. *
  5610. * @class Gradients
  5611. * @author David Kaneda http://www.davidkaneda.com/
  5612. *
  5613. */
  5614. /**
  5615. * Adds a background gradient into a specified selector.
  5616. *
  5617. * @include background-gradient(#444, 'glossy');
  5618. *
  5619. * You can also use color-stops if you want full control of the gradient:
  5620. *
  5621. * @include background-gradient(#444, color-stops(#333, #222, #111));
  5622. *
  5623. * @param {color} $bg-color
  5624. * The base color of the gradient.
  5625. *
  5626. * @param {string/list} $type
  5627. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  5628. *
  5629. * @include background-gradient(red, 'glossy');
  5630. *
  5631. * It can also accept a list of color-stop values:;
  5632. *
  5633. * @include background-gradient(black, color-stops(#333, #111, #000));
  5634. *
  5635. * @param {string} $direction
  5636. * The direction of the gradient.
  5637. */
  5638. /**
  5639. * Blueprint grid background pattern
  5640. *
  5641. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  5642. *
  5643. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5644. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  5645. */
  5646. /**
  5647. * Background overlay inspired by Google Chrome modal overlay
  5648. *
  5649. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  5650. */
  5651. /**
  5652. * Striped background pattern
  5653. *
  5654. * @link http://lea.verou.me/css3patterns/
  5655. *
  5656. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5657. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  5658. */
  5659. /**
  5660. *
  5661. * Before compass 0.11.5, you need to add
  5662. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5663. * To your configuration (config.rb)
  5664. * @see https://github.com/chriseppstein/compass/issues/401
  5665. *
  5666. * @link http://lea.verou.me/css3patterns/#tartan
  5667. *
  5668. * @author Marta Armada http://swwweet.com/ for the original pattern
  5669. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  5670. */
  5671. /**
  5672. * Carbon Fiber background pattern
  5673. *
  5674. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5675. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  5676. *
  5677. * @link http://lea.verou.me/css3patterns/
  5678. *
  5679. */
  5680. /**
  5681. * Striped background patterns
  5682. *
  5683. * Before compass 0.11.5, you need to add
  5684. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5685. * To your configuration (config.rb)
  5686. * @see https://github.com/chriseppstein/compass/issues/401
  5687. *
  5688. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  5689. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  5690. *
  5691. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5692. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5693. */
  5694. /**
  5695. * Cicada background pattern
  5696. *
  5697. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  5698. *
  5699. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  5700. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5701. */
  5702. /**
  5703. *
  5704. * Tablecloth background pattern
  5705. *
  5706. * @link http://lea.verou.me/css3patterns/#tablecloth
  5707. *
  5708. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5709. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5710. */
  5711. /**
  5712. * Lined paper background pattern
  5713. *
  5714. * @link http://lea.verou.me/css3patterns/#lined-paper
  5715. *
  5716. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  5717. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5718. */
  5719. /**
  5720. * Madras background pattern
  5721. *
  5722. * Before compass 0.11.5, you need to add
  5723. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  5724. * To your configuration (config.rb)
  5725. * @see https://github.com/chriseppstein/compass/issues/401
  5726. *
  5727. * @link http://lea.verou.me/css3patterns/#madras
  5728. *
  5729. * @author Divya Manian http://nimbupani.com/ for the original pattern
  5730. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5731. */
  5732. /**
  5733. * Checkerboard background pattern
  5734. *
  5735. * @link http://lea.verou.me/css3patterns/#checkerboard
  5736. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  5737. *
  5738. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5739. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5740. */
  5741. /**
  5742. *
  5743. * Houndstooth background pattern
  5744. *
  5745. * @link http://lea.verou.me/css3patterns/#houndstooth
  5746. *
  5747. * @author Antoine Bernier http://abernier.name for the original pattern
  5748. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5749. */
  5750. /**
  5751. *
  5752. * Polkadot background pattern
  5753. *
  5754. * @link http://lea.verou.me/css3patterns/#polka-dot
  5755. *
  5756. * @author Lea Verou http://lea.verou.me/ for the original pattern
  5757. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  5758. */
  5759. /**
  5760. *
  5761. * @class Color
  5762. * @author David Kaneda - http://www.davidkaneda.com
  5763. *
  5764. */
  5765. /**
  5766. * Returns the brightness (out of 100) of a specified color.
  5767. * @todo explain why this is useful
  5768. * @param {color} $color The color you want the brightness value of
  5769. * @return {measurement}
  5770. */
  5771. /**
  5772. * Returns the luminosity for a specified color
  5773. * @param {color} The color to check
  5774. * @return {measurement}
  5775. */
  5776. /**
  5777. * Returns the contrast ratio between two colors
  5778. * @param {color1} The color to check
  5779. * @return {measurement}
  5780. */
  5781. /**
  5782. * Colors the text of an element based on lightness of its background.
  5783. *
  5784. * .my-element {
  5785. * @include color-by-background(#fff); // Colors text black.
  5786. * }
  5787. *
  5788. * .my-element {
  5789. * @include color-by-background(#fff, 40%); // Colors text gray.
  5790. * }
  5791. *
  5792. * @param {color} $bg-color Background color of element.
  5793. * @param {percent} $contrast Contrast of text color to its background.
  5794. *
  5795. */
  5796. /**
  5797. * @class Global_CSS
  5798. */
  5799. /**
  5800. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  5801. *
  5802. * @include pictos-iconmask('attachment');
  5803. *
  5804. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  5805. */
  5806. /**
  5807. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  5808. *
  5809. * @param {color} $bg-color Base color to be used for the button.
  5810. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  5811. */
  5812. /**
  5813. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  5814. *
  5815. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5816. */
  5817. /**
  5818. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  5819. *
  5820. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  5821. */
  5822. /**
  5823. * Adds basic styles to :before or :after pseudo-elements.
  5824. *
  5825. * .my-element:after {
  5826. * @include insertion(50px, 50px);
  5827. * }
  5828. *
  5829. * @param {measurement} $width Height of pseudo-element.
  5830. * @param {measurement} $height Height of pseudo-element.
  5831. * @param {measurement} $top Top positioning of pseudo-element.
  5832. * @param {measurement} $left Left positioning of pseudo-element.
  5833. *
  5834. */
  5835. /**
  5836. * Makes an element stretch to its parent's bounds.
  5837. */
  5838. /**
  5839. * Bevels the text based on its background.
  5840. *
  5841. * @param {color} $bg-color Background color of element.
  5842. * @see bevel-text
  5843. *
  5844. */
  5845. /**
  5846. * Creates a background gradient for masked elements, based on the lightness of their background.
  5847. *
  5848. * @param {color} $bg-color Background color of element.
  5849. * @param {percent} $percent Contrast of the new gradient to its background.
  5850. * @param {percent} $style Gradient style of the gradient.
  5851. * @see background-gradient
  5852. *
  5853. */
  5854. /**
  5855. * Makes the element text overflow to use ellipsis.
  5856. */
  5857. /**
  5858. * @class Global_CSS
  5859. *
  5860. * Global CSS variables and mixins of Sencha Touch.
  5861. */
  5862. /**
  5863. * @var {boolean} $include-html-style
  5864. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  5865. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  5866. */
  5867. /**
  5868. * @var {boolean} $include-default-icons
  5869. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  5870. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  5871. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  5872. * and user. Set to false to reduce CSS weight.
  5873. */
  5874. /**
  5875. * @var {boolean} $include-form-sliders
  5876. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  5877. */
  5878. /**
  5879. * @var {boolean} $include-floating-panels
  5880. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  5881. */
  5882. /**
  5883. * @var {boolean} $include-default-uis
  5884. * Decides whether or not to include the default UIs for all components.
  5885. */
  5886. /**
  5887. * @var {boolean} $include-highlights=true
  5888. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  5889. * non-performant browsers, or minimalist designs.
  5890. */
  5891. /**
  5892. * @var {boolean} $include-border-radius
  5893. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  5894. */
  5895. /**
  5896. * @var {boolean} $basic-slider
  5897. * Optionally remove CSS3 effects from the slider component for improved performance.
  5898. */
  5899. /**
  5900. * @var {color} $base-color
  5901. * The primary color variable from which most elements derive their color scheme.
  5902. */
  5903. /**
  5904. * @var {string} $base-gradient
  5905. * The primary gradient variable from which most elements derive their color scheme.
  5906. * @see background-gradient
  5907. */
  5908. /**
  5909. * @var {font-family} $font-family
  5910. * The font-family to be used throughout the theme.
  5911. * @see background-gradient
  5912. */
  5913. /**
  5914. * @var {color} $alert-color
  5915. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  5916. */
  5917. /**
  5918. * @var {color} $confirm-color
  5919. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  5920. */
  5921. /**
  5922. * @var {color} $active-color
  5923. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  5924. */
  5925. /**
  5926. * @var {color} $neutral-color
  5927. * Color used for the neautral `ui` for Toolbars and Tabbars.
  5928. */
  5929. /**
  5930. * @var {color} $page-bg-color
  5931. * Background color for fullscreen components.
  5932. */
  5933. /**
  5934. * @var {measurement} $global-row-height
  5935. * The minimum row height for items like toolbars.
  5936. */
  5937. /**
  5938. * @var {measurement} $global-list-height
  5939. * The minimum row height for items like toolbars.
  5940. */
  5941. /**
  5942. * Background noise recipe
  5943. *
  5944. * This recipe use a sass function to generate a .png file
  5945. *
  5946. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  5947. * @link https://github.com/DanielRapp/Noisy
  5948. *
  5949. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  5950. * @link https://gist.github.com/1021332
  5951. *
  5952. * Ported to a sass gem by Antti Salonen @antsa
  5953. * @link https://github.com/antsa/sassy_noise
  5954. *
  5955. * Mixin: background-noise
  5956. * Function: background_noise
  5957. *
  5958. * @author Daniel Rapp @DanielRapp
  5959. * @author Aaron Russell @aaronrussell
  5960. * @author Philipp Bosch @philippbosch
  5961. * @author Antti Salonen @antsa
  5962. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  5963. */
  5964. /**
  5965. *
  5966. * @class Gradients
  5967. * @author David Kaneda http://www.davidkaneda.com/
  5968. *
  5969. */
  5970. /**
  5971. * Adds a background gradient into a specified selector.
  5972. *
  5973. * @include background-gradient(#444, 'glossy');
  5974. *
  5975. * You can also use color-stops if you want full control of the gradient:
  5976. *
  5977. * @include background-gradient(#444, color-stops(#333, #222, #111));
  5978. *
  5979. * @param {color} $bg-color
  5980. * The base color of the gradient.
  5981. *
  5982. * @param {string/list} $type
  5983. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  5984. *
  5985. * @include background-gradient(red, 'glossy');
  5986. *
  5987. * It can also accept a list of color-stop values:;
  5988. *
  5989. * @include background-gradient(black, color-stops(#333, #111, #000));
  5990. *
  5991. * @param {string} $direction
  5992. * The direction of the gradient.
  5993. */
  5994. /**
  5995. * Blueprint grid background pattern
  5996. *
  5997. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  5998. *
  5999. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6000. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6001. */
  6002. /**
  6003. * Background overlay inspired by Google Chrome modal overlay
  6004. *
  6005. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  6006. */
  6007. /**
  6008. * Striped background pattern
  6009. *
  6010. * @link http://lea.verou.me/css3patterns/
  6011. *
  6012. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6013. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  6014. */
  6015. /**
  6016. *
  6017. * Before compass 0.11.5, you need to add
  6018. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6019. * To your configuration (config.rb)
  6020. * @see https://github.com/chriseppstein/compass/issues/401
  6021. *
  6022. * @link http://lea.verou.me/css3patterns/#tartan
  6023. *
  6024. * @author Marta Armada http://swwweet.com/ for the original pattern
  6025. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6026. */
  6027. /**
  6028. * Carbon Fiber background pattern
  6029. *
  6030. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6031. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  6032. *
  6033. * @link http://lea.verou.me/css3patterns/
  6034. *
  6035. */
  6036. /**
  6037. * Striped background patterns
  6038. *
  6039. * Before compass 0.11.5, you need to add
  6040. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6041. * To your configuration (config.rb)
  6042. * @see https://github.com/chriseppstein/compass/issues/401
  6043. *
  6044. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  6045. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  6046. *
  6047. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6048. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6049. */
  6050. /**
  6051. * Cicada background pattern
  6052. *
  6053. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  6054. *
  6055. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  6056. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6057. */
  6058. /**
  6059. *
  6060. * Tablecloth background pattern
  6061. *
  6062. * @link http://lea.verou.me/css3patterns/#tablecloth
  6063. *
  6064. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6065. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6066. */
  6067. /**
  6068. * Lined paper background pattern
  6069. *
  6070. * @link http://lea.verou.me/css3patterns/#lined-paper
  6071. *
  6072. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  6073. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6074. */
  6075. /**
  6076. * Madras background pattern
  6077. *
  6078. * Before compass 0.11.5, you need to add
  6079. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6080. * To your configuration (config.rb)
  6081. * @see https://github.com/chriseppstein/compass/issues/401
  6082. *
  6083. * @link http://lea.verou.me/css3patterns/#madras
  6084. *
  6085. * @author Divya Manian http://nimbupani.com/ for the original pattern
  6086. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6087. */
  6088. /**
  6089. * Checkerboard background pattern
  6090. *
  6091. * @link http://lea.verou.me/css3patterns/#checkerboard
  6092. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  6093. *
  6094. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6095. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6096. */
  6097. /**
  6098. *
  6099. * Houndstooth background pattern
  6100. *
  6101. * @link http://lea.verou.me/css3patterns/#houndstooth
  6102. *
  6103. * @author Antoine Bernier http://abernier.name for the original pattern
  6104. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6105. */
  6106. /**
  6107. *
  6108. * Polkadot background pattern
  6109. *
  6110. * @link http://lea.verou.me/css3patterns/#polka-dot
  6111. *
  6112. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6113. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6114. */
  6115. /**
  6116. *
  6117. * @class Color
  6118. * @author David Kaneda - http://www.davidkaneda.com
  6119. *
  6120. */
  6121. /**
  6122. * Returns the brightness (out of 100) of a specified color.
  6123. * @todo explain why this is useful
  6124. * @param {color} $color The color you want the brightness value of
  6125. * @return {measurement}
  6126. */
  6127. /**
  6128. * Returns the luminosity for a specified color
  6129. * @param {color} The color to check
  6130. * @return {measurement}
  6131. */
  6132. /**
  6133. * Returns the contrast ratio between two colors
  6134. * @param {color1} The color to check
  6135. * @return {measurement}
  6136. */
  6137. /**
  6138. * Colors the text of an element based on lightness of its background.
  6139. *
  6140. * .my-element {
  6141. * @include color-by-background(#fff); // Colors text black.
  6142. * }
  6143. *
  6144. * .my-element {
  6145. * @include color-by-background(#fff, 40%); // Colors text gray.
  6146. * }
  6147. *
  6148. * @param {color} $bg-color Background color of element.
  6149. * @param {percent} $contrast Contrast of text color to its background.
  6150. *
  6151. */
  6152. /**
  6153. * @class Global_CSS
  6154. */
  6155. /**
  6156. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  6157. *
  6158. * @include pictos-iconmask('attachment');
  6159. *
  6160. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  6161. */
  6162. /**
  6163. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  6164. *
  6165. * @param {color} $bg-color Base color to be used for the button.
  6166. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  6167. */
  6168. /**
  6169. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  6170. *
  6171. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6172. */
  6173. /**
  6174. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  6175. *
  6176. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6177. */
  6178. /**
  6179. * Adds basic styles to :before or :after pseudo-elements.
  6180. *
  6181. * .my-element:after {
  6182. * @include insertion(50px, 50px);
  6183. * }
  6184. *
  6185. * @param {measurement} $width Height of pseudo-element.
  6186. * @param {measurement} $height Height of pseudo-element.
  6187. * @param {measurement} $top Top positioning of pseudo-element.
  6188. * @param {measurement} $left Left positioning of pseudo-element.
  6189. *
  6190. */
  6191. /**
  6192. * Makes an element stretch to its parent's bounds.
  6193. */
  6194. /**
  6195. * Bevels the text based on its background.
  6196. *
  6197. * @param {color} $bg-color Background color of element.
  6198. * @see bevel-text
  6199. *
  6200. */
  6201. /**
  6202. * Creates a background gradient for masked elements, based on the lightness of their background.
  6203. *
  6204. * @param {color} $bg-color Background color of element.
  6205. * @param {percent} $percent Contrast of the new gradient to its background.
  6206. * @param {percent} $style Gradient style of the gradient.
  6207. * @see background-gradient
  6208. *
  6209. */
  6210. /**
  6211. * Makes the element text overflow to use ellipsis.
  6212. */
  6213. /**
  6214. * @class Global_CSS
  6215. *
  6216. * Global CSS variables and mixins of Sencha Touch.
  6217. */
  6218. /**
  6219. * @var {boolean} $include-html-style
  6220. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  6221. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  6222. */
  6223. /**
  6224. * @var {boolean} $include-default-icons
  6225. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  6226. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  6227. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  6228. * and user. Set to false to reduce CSS weight.
  6229. */
  6230. /**
  6231. * @var {boolean} $include-form-sliders
  6232. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  6233. */
  6234. /**
  6235. * @var {boolean} $include-floating-panels
  6236. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  6237. */
  6238. /**
  6239. * @var {boolean} $include-default-uis
  6240. * Decides whether or not to include the default UIs for all components.
  6241. */
  6242. /**
  6243. * @var {boolean} $include-highlights=true
  6244. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  6245. * non-performant browsers, or minimalist designs.
  6246. */
  6247. /**
  6248. * @var {boolean} $include-border-radius
  6249. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  6250. */
  6251. /**
  6252. * @var {boolean} $basic-slider
  6253. * Optionally remove CSS3 effects from the slider component for improved performance.
  6254. */
  6255. /**
  6256. * @var {color} $base-color
  6257. * The primary color variable from which most elements derive their color scheme.
  6258. */
  6259. /**
  6260. * @var {string} $base-gradient
  6261. * The primary gradient variable from which most elements derive their color scheme.
  6262. * @see background-gradient
  6263. */
  6264. /**
  6265. * @var {font-family} $font-family
  6266. * The font-family to be used throughout the theme.
  6267. * @see background-gradient
  6268. */
  6269. /**
  6270. * @var {color} $alert-color
  6271. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  6272. */
  6273. /**
  6274. * @var {color} $confirm-color
  6275. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  6276. */
  6277. /**
  6278. * @var {color} $active-color
  6279. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  6280. */
  6281. /**
  6282. * @var {color} $neutral-color
  6283. * Color used for the neautral `ui` for Toolbars and Tabbars.
  6284. */
  6285. /**
  6286. * @var {color} $page-bg-color
  6287. * Background color for fullscreen components.
  6288. */
  6289. /**
  6290. * @var {measurement} $global-row-height
  6291. * The minimum row height for items like toolbars.
  6292. */
  6293. /**
  6294. * @var {measurement} $global-list-height
  6295. * The minimum row height for items like toolbars.
  6296. */
  6297. /**
  6298. * Background noise recipe
  6299. *
  6300. * This recipe use a sass function to generate a .png file
  6301. *
  6302. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  6303. * @link https://github.com/DanielRapp/Noisy
  6304. *
  6305. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  6306. * @link https://gist.github.com/1021332
  6307. *
  6308. * Ported to a sass gem by Antti Salonen @antsa
  6309. * @link https://github.com/antsa/sassy_noise
  6310. *
  6311. * Mixin: background-noise
  6312. * Function: background_noise
  6313. *
  6314. * @author Daniel Rapp @DanielRapp
  6315. * @author Aaron Russell @aaronrussell
  6316. * @author Philipp Bosch @philippbosch
  6317. * @author Antti Salonen @antsa
  6318. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  6319. */
  6320. /**
  6321. *
  6322. * @class Gradients
  6323. * @author David Kaneda http://www.davidkaneda.com/
  6324. *
  6325. */
  6326. /**
  6327. * Adds a background gradient into a specified selector.
  6328. *
  6329. * @include background-gradient(#444, 'glossy');
  6330. *
  6331. * You can also use color-stops if you want full control of the gradient:
  6332. *
  6333. * @include background-gradient(#444, color-stops(#333, #222, #111));
  6334. *
  6335. * @param {color} $bg-color
  6336. * The base color of the gradient.
  6337. *
  6338. * @param {string/list} $type
  6339. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  6340. *
  6341. * @include background-gradient(red, 'glossy');
  6342. *
  6343. * It can also accept a list of color-stop values:;
  6344. *
  6345. * @include background-gradient(black, color-stops(#333, #111, #000));
  6346. *
  6347. * @param {string} $direction
  6348. * The direction of the gradient.
  6349. */
  6350. /**
  6351. * Blueprint grid background pattern
  6352. *
  6353. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  6354. *
  6355. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6356. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6357. */
  6358. /**
  6359. * Background overlay inspired by Google Chrome modal overlay
  6360. *
  6361. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  6362. */
  6363. /**
  6364. * Striped background pattern
  6365. *
  6366. * @link http://lea.verou.me/css3patterns/
  6367. *
  6368. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6369. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  6370. */
  6371. /**
  6372. *
  6373. * Before compass 0.11.5, you need to add
  6374. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6375. * To your configuration (config.rb)
  6376. * @see https://github.com/chriseppstein/compass/issues/401
  6377. *
  6378. * @link http://lea.verou.me/css3patterns/#tartan
  6379. *
  6380. * @author Marta Armada http://swwweet.com/ for the original pattern
  6381. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6382. */
  6383. /**
  6384. * Carbon Fiber background pattern
  6385. *
  6386. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6387. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  6388. *
  6389. * @link http://lea.verou.me/css3patterns/
  6390. *
  6391. */
  6392. /**
  6393. * Striped background patterns
  6394. *
  6395. * Before compass 0.11.5, you need to add
  6396. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6397. * To your configuration (config.rb)
  6398. * @see https://github.com/chriseppstein/compass/issues/401
  6399. *
  6400. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  6401. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  6402. *
  6403. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6404. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6405. */
  6406. /**
  6407. * Cicada background pattern
  6408. *
  6409. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  6410. *
  6411. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  6412. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6413. */
  6414. /**
  6415. *
  6416. * Tablecloth background pattern
  6417. *
  6418. * @link http://lea.verou.me/css3patterns/#tablecloth
  6419. *
  6420. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6421. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6422. */
  6423. /**
  6424. * Lined paper background pattern
  6425. *
  6426. * @link http://lea.verou.me/css3patterns/#lined-paper
  6427. *
  6428. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  6429. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6430. */
  6431. /**
  6432. * Madras background pattern
  6433. *
  6434. * Before compass 0.11.5, you need to add
  6435. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6436. * To your configuration (config.rb)
  6437. * @see https://github.com/chriseppstein/compass/issues/401
  6438. *
  6439. * @link http://lea.verou.me/css3patterns/#madras
  6440. *
  6441. * @author Divya Manian http://nimbupani.com/ for the original pattern
  6442. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6443. */
  6444. /**
  6445. * Checkerboard background pattern
  6446. *
  6447. * @link http://lea.verou.me/css3patterns/#checkerboard
  6448. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  6449. *
  6450. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6451. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6452. */
  6453. /**
  6454. *
  6455. * Houndstooth background pattern
  6456. *
  6457. * @link http://lea.verou.me/css3patterns/#houndstooth
  6458. *
  6459. * @author Antoine Bernier http://abernier.name for the original pattern
  6460. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6461. */
  6462. /**
  6463. *
  6464. * Polkadot background pattern
  6465. *
  6466. * @link http://lea.verou.me/css3patterns/#polka-dot
  6467. *
  6468. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6469. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6470. */
  6471. /**
  6472. *
  6473. * @class Color
  6474. * @author David Kaneda - http://www.davidkaneda.com
  6475. *
  6476. */
  6477. /**
  6478. * Returns the brightness (out of 100) of a specified color.
  6479. * @todo explain why this is useful
  6480. * @param {color} $color The color you want the brightness value of
  6481. * @return {measurement}
  6482. */
  6483. /**
  6484. * Returns the luminosity for a specified color
  6485. * @param {color} The color to check
  6486. * @return {measurement}
  6487. */
  6488. /**
  6489. * Returns the contrast ratio between two colors
  6490. * @param {color1} The color to check
  6491. * @return {measurement}
  6492. */
  6493. /**
  6494. * Colors the text of an element based on lightness of its background.
  6495. *
  6496. * .my-element {
  6497. * @include color-by-background(#fff); // Colors text black.
  6498. * }
  6499. *
  6500. * .my-element {
  6501. * @include color-by-background(#fff, 40%); // Colors text gray.
  6502. * }
  6503. *
  6504. * @param {color} $bg-color Background color of element.
  6505. * @param {percent} $contrast Contrast of text color to its background.
  6506. *
  6507. */
  6508. /**
  6509. * @class Global_CSS
  6510. */
  6511. /**
  6512. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  6513. *
  6514. * @include pictos-iconmask('attachment');
  6515. *
  6516. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  6517. */
  6518. /**
  6519. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  6520. *
  6521. * @param {color} $bg-color Base color to be used for the button.
  6522. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  6523. */
  6524. /**
  6525. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  6526. *
  6527. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6528. */
  6529. /**
  6530. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  6531. *
  6532. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6533. */
  6534. /**
  6535. * Adds basic styles to :before or :after pseudo-elements.
  6536. *
  6537. * .my-element:after {
  6538. * @include insertion(50px, 50px);
  6539. * }
  6540. *
  6541. * @param {measurement} $width Height of pseudo-element.
  6542. * @param {measurement} $height Height of pseudo-element.
  6543. * @param {measurement} $top Top positioning of pseudo-element.
  6544. * @param {measurement} $left Left positioning of pseudo-element.
  6545. *
  6546. */
  6547. /**
  6548. * Makes an element stretch to its parent's bounds.
  6549. */
  6550. /**
  6551. * Bevels the text based on its background.
  6552. *
  6553. * @param {color} $bg-color Background color of element.
  6554. * @see bevel-text
  6555. *
  6556. */
  6557. /**
  6558. * Creates a background gradient for masked elements, based on the lightness of their background.
  6559. *
  6560. * @param {color} $bg-color Background color of element.
  6561. * @param {percent} $percent Contrast of the new gradient to its background.
  6562. * @param {percent} $style Gradient style of the gradient.
  6563. * @see background-gradient
  6564. *
  6565. */
  6566. /**
  6567. * Makes the element text overflow to use ellipsis.
  6568. */
  6569. /* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
  6570. .x-img.x-img-image {
  6571. text-align: center;
  6572. }
  6573. /* line 7, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
  6574. .x-img.x-img-image img {
  6575. width: auto;
  6576. height: 100%;
  6577. }
  6578. /* line 13, ../themes/stylesheets/sencha-touch/default/widgets/_img.scss */
  6579. .x-img.x-img-background {
  6580. background-repeat: no-repeat;
  6581. background-position: center;
  6582. background-size: auto 100%;
  6583. }
  6584. /**
  6585. * @class Global_CSS
  6586. *
  6587. * Global CSS variables and mixins of Sencha Touch.
  6588. */
  6589. /**
  6590. * @var {boolean} $include-html-style
  6591. * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true).
  6592. * Styles are scoped to .x-html. Set to false to reduce CSS weight.
  6593. */
  6594. /**
  6595. * @var {boolean} $include-default-icons
  6596. * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action,
  6597. * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites,
  6598. * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash,
  6599. * and user. Set to false to reduce CSS weight.
  6600. */
  6601. /**
  6602. * @var {boolean} $include-form-sliders
  6603. * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html.
  6604. */
  6605. /**
  6606. * @var {boolean} $include-floating-panels
  6607. * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus).
  6608. */
  6609. /**
  6610. * @var {boolean} $include-default-uis
  6611. * Decides whether or not to include the default UIs for all components.
  6612. */
  6613. /**
  6614. * @var {boolean} $include-highlights=true
  6615. * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging,
  6616. * non-performant browsers, or minimalist designs.
  6617. */
  6618. /**
  6619. * @var {boolean} $include-border-radius
  6620. * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs.
  6621. */
  6622. /**
  6623. * @var {boolean} $basic-slider
  6624. * Optionally remove CSS3 effects from the slider component for improved performance.
  6625. */
  6626. /**
  6627. * @var {color} $base-color
  6628. * The primary color variable from which most elements derive their color scheme.
  6629. */
  6630. /**
  6631. * @var {string} $base-gradient
  6632. * The primary gradient variable from which most elements derive their color scheme.
  6633. * @see background-gradient
  6634. */
  6635. /**
  6636. * @var {font-family} $font-family
  6637. * The font-family to be used throughout the theme.
  6638. * @see background-gradient
  6639. */
  6640. /**
  6641. * @var {color} $alert-color
  6642. * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons).
  6643. */
  6644. /**
  6645. * @var {color} $confirm-color
  6646. * Color used for elements like success messages, and "confirm" UIs (eg. on buttons).
  6647. */
  6648. /**
  6649. * @var {color} $active-color
  6650. * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask.
  6651. */
  6652. /**
  6653. * @var {color} $neutral-color
  6654. * Color used for the neautral `ui` for Toolbars and Tabbars.
  6655. */
  6656. /**
  6657. * @var {color} $page-bg-color
  6658. * Background color for fullscreen components.
  6659. */
  6660. /**
  6661. * @var {measurement} $global-row-height
  6662. * The minimum row height for items like toolbars.
  6663. */
  6664. /**
  6665. * @var {measurement} $global-list-height
  6666. * The minimum row height for items like toolbars.
  6667. */
  6668. /**
  6669. * Background noise recipe
  6670. *
  6671. * This recipe use a sass function to generate a .png file
  6672. *
  6673. * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
  6674. * @link https://github.com/DanielRapp/Noisy
  6675. *
  6676. * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
  6677. * @link https://gist.github.com/1021332
  6678. *
  6679. * Ported to a sass gem by Antti Salonen @antsa
  6680. * @link https://github.com/antsa/sassy_noise
  6681. *
  6682. * Mixin: background-noise
  6683. * Function: background_noise
  6684. *
  6685. * @author Daniel Rapp @DanielRapp
  6686. * @author Aaron Russell @aaronrussell
  6687. * @author Philipp Bosch @philippbosch
  6688. * @author Antti Salonen @antsa
  6689. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
  6690. */
  6691. /**
  6692. *
  6693. * @class Gradients
  6694. * @author David Kaneda http://www.davidkaneda.com/
  6695. *
  6696. */
  6697. /**
  6698. * Adds a background gradient into a specified selector.
  6699. *
  6700. * @include background-gradient(#444, 'glossy');
  6701. *
  6702. * You can also use color-stops if you want full control of the gradient:
  6703. *
  6704. * @include background-gradient(#444, color-stops(#333, #222, #111));
  6705. *
  6706. * @param {color} $bg-color
  6707. * The base color of the gradient.
  6708. *
  6709. * @param {string/list} $type
  6710. * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
  6711. *
  6712. * @include background-gradient(red, 'glossy');
  6713. *
  6714. * It can also accept a list of color-stop values:;
  6715. *
  6716. * @include background-gradient(black, color-stops(#333, #111, #000));
  6717. *
  6718. * @param {string} $direction
  6719. * The direction of the gradient.
  6720. */
  6721. /**
  6722. * Blueprint grid background pattern
  6723. *
  6724. * @link http://lea.verou.me/css3patterns/#blueprint-grid
  6725. *
  6726. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6727. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6728. */
  6729. /**
  6730. * Background overlay inspired by Google Chrome modal overlay
  6731. *
  6732. * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
  6733. */
  6734. /**
  6735. * Striped background pattern
  6736. *
  6737. * @link http://lea.verou.me/css3patterns/
  6738. *
  6739. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6740. * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
  6741. */
  6742. /**
  6743. *
  6744. * Before compass 0.11.5, you need to add
  6745. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6746. * To your configuration (config.rb)
  6747. * @see https://github.com/chriseppstein/compass/issues/401
  6748. *
  6749. * @link http://lea.verou.me/css3patterns/#tartan
  6750. *
  6751. * @author Marta Armada http://swwweet.com/ for the original pattern
  6752. * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
  6753. */
  6754. /**
  6755. * Carbon Fiber background pattern
  6756. *
  6757. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6758. * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
  6759. *
  6760. * @link http://lea.verou.me/css3patterns/
  6761. *
  6762. */
  6763. /**
  6764. * Striped background patterns
  6765. *
  6766. * Before compass 0.11.5, you need to add
  6767. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6768. * To your configuration (config.rb)
  6769. * @see https://github.com/chriseppstein/compass/issues/401
  6770. *
  6771. * @link http://lea.verou.me/css3patterns/#horizontal-stripes
  6772. * @link http://lea.verou.me/css3patterns/#vertical-stripes
  6773. *
  6774. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6775. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6776. */
  6777. /**
  6778. * Cicada background pattern
  6779. *
  6780. * @link http://lea.verou.me/css3patterns/#cicada-stripes
  6781. *
  6782. * @author Randy Merril http://forthedeveloper.com/ for the original pattern
  6783. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6784. */
  6785. /**
  6786. *
  6787. * Tablecloth background pattern
  6788. *
  6789. * @link http://lea.verou.me/css3patterns/#tablecloth
  6790. *
  6791. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6792. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6793. */
  6794. /**
  6795. * Lined paper background pattern
  6796. *
  6797. * @link http://lea.verou.me/css3patterns/#lined-paper
  6798. *
  6799. * @author Sarah Backhouse http://www.jadu.net/ for the original pattern
  6800. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6801. */
  6802. /**
  6803. * Madras background pattern
  6804. *
  6805. * Before compass 0.11.5, you need to add
  6806. * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
  6807. * To your configuration (config.rb)
  6808. * @see https://github.com/chriseppstein/compass/issues/401
  6809. *
  6810. * @link http://lea.verou.me/css3patterns/#madras
  6811. *
  6812. * @author Divya Manian http://nimbupani.com/ for the original pattern
  6813. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6814. */
  6815. /**
  6816. * Checkerboard background pattern
  6817. *
  6818. * @link http://lea.verou.me/css3patterns/#checkerboard
  6819. * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard
  6820. *
  6821. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6822. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6823. */
  6824. /**
  6825. *
  6826. * Houndstooth background pattern
  6827. *
  6828. * @link http://lea.verou.me/css3patterns/#houndstooth
  6829. *
  6830. * @author Antoine Bernier http://abernier.name for the original pattern
  6831. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6832. */
  6833. /**
  6834. *
  6835. * Polkadot background pattern
  6836. *
  6837. * @link http://lea.verou.me/css3patterns/#polka-dot
  6838. *
  6839. * @author Lea Verou http://lea.verou.me/ for the original pattern
  6840. * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin
  6841. */
  6842. /**
  6843. *
  6844. * @class Color
  6845. * @author David Kaneda - http://www.davidkaneda.com
  6846. *
  6847. */
  6848. /**
  6849. * Returns the brightness (out of 100) of a specified color.
  6850. * @todo explain why this is useful
  6851. * @param {color} $color The color you want the brightness value of
  6852. * @return {measurement}
  6853. */
  6854. /**
  6855. * Returns the luminosity for a specified color
  6856. * @param {color} The color to check
  6857. * @return {measurement}
  6858. */
  6859. /**
  6860. * Returns the contrast ratio between two colors
  6861. * @param {color1} The color to check
  6862. * @return {measurement}
  6863. */
  6864. /**
  6865. * Colors the text of an element based on lightness of its background.
  6866. *
  6867. * .my-element {
  6868. * @include color-by-background(#fff); // Colors text black.
  6869. * }
  6870. *
  6871. * .my-element {
  6872. * @include color-by-background(#fff, 40%); // Colors text gray.
  6873. * }
  6874. *
  6875. * @param {color} $bg-color Background color of element.
  6876. * @param {percent} $contrast Contrast of text color to its background.
  6877. *
  6878. */
  6879. /**
  6880. * @class Global_CSS
  6881. */
  6882. /**
  6883. * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true).
  6884. *
  6885. * @include pictos-iconmask('attachment');
  6886. *
  6887. * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png).
  6888. */
  6889. /**
  6890. * Includes the default styles for toolbar buttons, mostly used as a helper function.
  6891. *
  6892. * @param {color} $bg-color Base color to be used for the button.
  6893. * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed.
  6894. */
  6895. /**
  6896. * Adds a small text shadow (or highlight) to give the impression of beveled text.
  6897. *
  6898. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6899. */
  6900. /**
  6901. * Adds a small box shadow (or highlight) to give the impression of being beveled.
  6902. *
  6903. * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark.
  6904. */
  6905. /**
  6906. * Adds basic styles to :before or :after pseudo-elements.
  6907. *
  6908. * .my-element:after {
  6909. * @include insertion(50px, 50px);
  6910. * }
  6911. *
  6912. * @param {measurement} $width Height of pseudo-element.
  6913. * @param {measurement} $height Height of pseudo-element.
  6914. * @param {measurement} $top Top positioning of pseudo-element.
  6915. * @param {measurement} $left Left positioning of pseudo-element.
  6916. *
  6917. */
  6918. /**
  6919. * Makes an element stretch to its parent's bounds.
  6920. */
  6921. /**
  6922. * Bevels the text based on its background.
  6923. *
  6924. * @param {color} $bg-color Background color of element.
  6925. * @see bevel-text
  6926. *
  6927. */
  6928. /**
  6929. * Creates a background gradient for masked elements, based on the lightness of their background.
  6930. *
  6931. * @param {color} $bg-color Background color of element.
  6932. * @param {percent} $percent Contrast of the new gradient to its background.
  6933. * @param {percent} $style Gradient style of the gradient.
  6934. * @see background-gradient
  6935. *
  6936. */
  6937. /**
  6938. * Makes the element text overflow to use ellipsis.
  6939. */
  6940. /* line 3, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
  6941. .x-video {
  6942. height: 100%;
  6943. width: 100%;
  6944. }
  6945. /* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
  6946. .x-video > * {
  6947. height: 100%;
  6948. width: 100%;
  6949. position: absolute;
  6950. }
  6951. /* line 14, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
  6952. .x-video-ghost {
  6953. -webkit-background-size: 100% auto;
  6954. background: black url() center center no-repeat;
  6955. }
  6956. /* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_media.scss */
  6957. audio {
  6958. width: 100%;
  6959. }
  6960. /* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6961. .x-panel,
  6962. .x-msgbox,
  6963. .x-panel-body {
  6964. position: relative;
  6965. }
  6966. /* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6967. .x-panel.x-floating,
  6968. .x-msgbox,
  6969. .x-form.x-floating {
  6970. padding: 6px;
  6971. -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
  6972. box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
  6973. background-image: none;
  6974. background-color: black;
  6975. }
  6976. /* line 21, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6977. .x-panel.x-floating.x-floating-light,
  6978. .x-msgbox.x-floating-light,
  6979. .x-form.x-floating.x-floating-light {
  6980. background-image: none;
  6981. background-color: #393f45;
  6982. }
  6983. /* line 26, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6984. .x-panel.x-floating .x-panel-inner, .x-panel.x-floating > .x-body,
  6985. .x-msgbox .x-panel-inner,
  6986. .x-msgbox > .x-body,
  6987. .x-form.x-floating .x-panel-inner,
  6988. .x-form.x-floating > .x-body {
  6989. z-index: 1;
  6990. background-color: #fff;
  6991. }
  6992. /* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6993. .x-panel.x-floating > .x-dock,
  6994. .x-msgbox > .x-dock,
  6995. .x-form.x-floating > .x-dock {
  6996. z-index: 1;
  6997. }
  6998. /* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  6999. .x-panel.x-floating > .x-dock.x-sized,
  7000. .x-msgbox > .x-dock.x-sized,
  7001. .x-form.x-floating > .x-dock.x-sized {
  7002. margin: 6px;
  7003. }
  7004. /* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7005. .x-anchor {
  7006. position: absolute;
  7007. overflow: hidden;
  7008. }
  7009. /* line 53, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7010. .x-anchor.x-anchor-top {
  7011. margin-top: -0.68em;
  7012. margin-left: -0.816em;
  7013. width: 1.631em;
  7014. height: 0.7em;
  7015. -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;
  7016. -webkit-mask-size: 1.631em 0.7em;
  7017. background-color: black;
  7018. }
  7019. /* line 63, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7020. .x-anchor.x-anchor-bottom {
  7021. margin-left: -0.816em;
  7022. width: 1.631em;
  7023. height: 0.7em;
  7024. -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAY9JREFUSA3FVbFKA0EQfbOXuzMgpLLyG2wVBEHSBSRFSvMNltZi5x9Y2kmqFKLY+QFpBStbK6uAJJe92xt3DkM2yV1yOYg5WG7nzcybx+wOS1GUtElRD+A6dvqRJmZGHMfHKbxnAh/sRg8NU0o7Sor7vj9Aqk4B+vh/MfQJVmd7tdpb1hlHQGMSmz4BTQfb5nagfe9iH/iWIllnnGrD0Pda1n50sO1sGU+B751PhUiRRTGCaRvUBdOdGFv5LHcQeB3LPXb5F4/J9UFrcwmiBztpwZyjskGGgavQV/d5FCvFSEKUJE3Fqm8FNfIIymM05JS7Yei9FOWsFSOJWuOIkb4S8WER0Sqcmb4IqhUEeF8Vl3dnluKFJDXqxDoGS861AGW564QITanOOPXq9h71QGg7WPFWJiawwwD8FAfNPKU6MwvHWKaAQbkX0ImDxPxNTCkhWa48B1VWFJvriTbJRCc8v0wiviqclYRMC8kjawWNZmLMSLCpf9P/pnfGPYlsL48ss7oVgyi9yd65pahywC+kjlEYVbHNjwAAAABJRU5ErkJggg==') no-repeat;
  7025. -webkit-mask-size: 1.631em 0.7em;
  7026. background-color: black;
  7027. }
  7028. /* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7029. .x-anchor.x-anchor-left {
  7030. margin-left: -0.666em;
  7031. margin-top: -0.35em;
  7032. height: 1.631em;
  7033. width: 0.7em;
  7034. -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
  7035. -webkit-mask-size: 0.7em 1.631em;
  7036. background-color: black;
  7037. }
  7038. /* line 82, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7039. .x-anchor.x-anchor-right {
  7040. margin-top: -0.35em;
  7041. height: 1.631em;
  7042. width: 0.7em;
  7043. -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAjCAYAAABLuFAHAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAb5JREFUSA2dlb1OwzAQx+/y4VIJqRMTK2vXbkgVG0srdWJl7AMgwc6AxMjAExQxMVSgssADdEXiDTqxUAmRxkl8nNMGuW2aOImU+Gzf7/5nnxVDKJMwiKITIoKqL4QyJg7wHYbUrgo7kD7UAlRPPwAHy77ddwVrZzoSUfLMRtMOBTDgFOlImTyy5doE2IQBEHpSqut6sKaQLsNIDcsCoN7tfCdMSFG/0XBf8udZYzesEZwDOcdCwEdegO01r3lRi0BNggAO14ZXnRKYtZEOXU9N2H9/M0ApvASozSUcsb1WQkuYMS4hV+DOVLeHU56GYawusgAlu525mW1awgGXcFwD1oEwQEi6NWHmCV4rrdlMPtUvPmGb7ll/mXYN5XTDznzfn1aGCeFK77TOoRJMgPcNz7n9T956zQRjIdwBg0lVeCp8t8tQkIG6LU2bCGdJnCqugRYwzhGc02YTZqZiZhcoo1SoBrv+IsXKROd7nveeqeS1Xt4gEN4I4TzkzpmDulQb78j2zlpddMsACxm/MShsYSNt/Gz4jj4E0sysyE5hPnZfoJw+O86LnLfm+G7+lVJ2bFM1/WCxiHvmQBX7D24MnWFZVIC2AAAAAElFTkSuQmCC') no-repeat;
  7044. -webkit-mask-size: 0.7em 1.631em;
  7045. background-color: black;
  7046. }
  7047. /* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_panel.scss */
  7048. .x-floating.x-panel-light:after {
  7049. background-color: #393f45;
  7050. }
  7051. /* line 52, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7052. .x-button {
  7053. -webkit-background-clip: padding;
  7054. background-clip: padding-box;
  7055. display: -webkit-box;
  7056. display: box;
  7057. -webkit-box-align: center;
  7058. box-align: center;
  7059. min-height: 1.8em;
  7060. padding: .3em .6em;
  7061. position: relative;
  7062. overflow: hidden;
  7063. -webkit-user-select: none;
  7064. z-index: 1;
  7065. }
  7066. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7067. .x-button, .x-toolbar .x-button {
  7068. border: 1px solid #999999;
  7069. border-top-color: #a6a6a6;
  7070. color: black;
  7071. }
  7072. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7073. .x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before {
  7074. background: #999999;
  7075. }
  7076. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7077. .x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after {
  7078. background-image: none;
  7079. background-color: #cccccc;
  7080. }
  7081. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7082. .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask {
  7083. background-image: none;
  7084. background-color: black;
  7085. }
  7086. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7087. .x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after {
  7088. background-image: none;
  7089. background-color: #c4c4c4;
  7090. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6));
  7091. background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6);
  7092. background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6);
  7093. }
  7094. /* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7095. .x-button .x-button-icon {
  7096. width: 2.1em;
  7097. height: 2.1em;
  7098. background-repeat: no-repeat;
  7099. background-position: center;
  7100. display: block;
  7101. }
  7102. /* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7103. .x-button .x-button-icon.x-icon-mask {
  7104. width: 1.1em;
  7105. height: 1.1em;
  7106. -webkit-mask-size: 1.1em;
  7107. }
  7108. /* line 80, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7109. .x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon {
  7110. opacity: .5;
  7111. }
  7112. /* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7113. .x-iconalign-left, .x-icon-align-right {
  7114. -webkit-box-orient: horizontal;
  7115. box-orient: horizontal;
  7116. }
  7117. /* line 95, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7118. .x-iconalign-top, .x-iconalign-bottom {
  7119. -webkit-box-orient: vertical;
  7120. box-orient: vertical;
  7121. }
  7122. /* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7123. .x-iconalign-bottom, .x-iconalign-right {
  7124. -webkit-box-direction: reverse;
  7125. box-direction: reverse;
  7126. }
  7127. /* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7128. .x-iconalign-center {
  7129. -webkit-box-pack: center;
  7130. box-pack: center;
  7131. }
  7132. /* line 104, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7133. .x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge {
  7134. margin-left: 0.3em;
  7135. }
  7136. /* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7137. .x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge {
  7138. margin-right: 0.3em;
  7139. }
  7140. /* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7141. .x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge {
  7142. margin-top: 0.3em;
  7143. }
  7144. /* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7145. .x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge {
  7146. margin-bottom: 0.3em;
  7147. }
  7148. /* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7149. .x-button-label, .x-hasbadge .x-badge {
  7150. -webkit-box-flex: 1;
  7151. box-flex: 1;
  7152. -webkit-box-align: center;
  7153. box-align: center;
  7154. white-space: nowrap;
  7155. text-overflow: ellipsis;
  7156. text-align: center;
  7157. font-weight: bold;
  7158. line-height: 1.2em;
  7159. display: block;
  7160. overflow: hidden;
  7161. }
  7162. /* line 131, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7163. .x-toolbar .x-button {
  7164. margin: 0 .2em;
  7165. padding: .3em .6em;
  7166. }
  7167. /* line 135, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7168. .x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge {
  7169. font-size: .7em;
  7170. }
  7171. /* line 139, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7172. .x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge {
  7173. line-height: 1.6em;
  7174. }
  7175. /* line 144, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7176. .x-button-small, .x-button.x-button-action-small, .x-button.x-button-confirm-small, .x-button.x-button-decline-small, .x-toolbar .x-button-small, .x-toolbar .x-button.x-button-action-small, .x-toolbar .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-decline-small {
  7177. padding: .2em .4em;
  7178. min-height: 0;
  7179. }
  7180. /* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7181. .x-button-small .x-button-label, .x-button.x-button-action-small .x-button-label, .x-button.x-button-confirm-small .x-button-label, .x-button.x-button-decline-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-button.x-button-action-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-action-small .x-badge, .x-button.x-button-confirm-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-confirm-small .x-badge, .x-button.x-button-decline-small .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-decline-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button.x-button-action-small .x-button-label, .x-toolbar .x-button.x-button-confirm-small .x-button-label, .x-toolbar .x-button.x-button-decline-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge, .x-toolbar .x-button.x-button-action-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-action-small .x-badge, .x-toolbar .x-button.x-button-confirm-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-confirm-small .x-badge, .x-toolbar .x-button.x-button-decline-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-decline-small .x-badge {
  7182. font-size: .6em;
  7183. }
  7184. /* line 153, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7185. .x-button-small .x-button-icon, .x-button.x-button-action-small .x-button-icon, .x-button.x-button-confirm-small .x-button-icon, .x-button.x-button-decline-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon, .x-toolbar .x-button.x-button-action-small .x-button-icon, .x-toolbar .x-button.x-button-confirm-small .x-button-icon, .x-toolbar .x-button.x-button-decline-small .x-button-icon {
  7186. width: .75em;
  7187. height: .75em;
  7188. }
  7189. /* line 157, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7190. .x-button-small .x-button-icon.x-icon-mask, .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-button.x-button-decline-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-small .x-button-icon.x-icon-mask {
  7191. -webkit-mask-size: .75em;
  7192. }
  7193. /* line 175, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7194. .x-button-forward, .x-button-back {
  7195. position: relative;
  7196. overflow: visible;
  7197. height: 1.7em;
  7198. z-index: 1;
  7199. }
  7200. /* line 180, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7201. .x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after {
  7202. content: "";
  7203. position: absolute;
  7204. width: 0.807em;
  7205. height: 1.8em;
  7206. top: -0.1em;
  7207. left: auto;
  7208. z-index: 2;
  7209. -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;
  7210. -webkit-mask-size: 0.807em 1.8em;
  7211. overflow: hidden;
  7212. }
  7213. /* line 190, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7214. .x-button-back,
  7215. .x-toolbar .x-button-back {
  7216. margin-left: 0.872em;
  7217. padding-left: .4em;
  7218. }
  7219. /* line 193, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7220. .x-button-back:before,
  7221. .x-toolbar .x-button-back:before {
  7222. left: -0.727em;
  7223. }
  7224. /* line 196, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7225. .x-button-back:after,
  7226. .x-toolbar .x-button-back:after {
  7227. left: -0.682em;
  7228. }
  7229. /* line 202, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7230. .x-button-forward,
  7231. .x-toolbar .x-button-forward {
  7232. margin-right: 0.882em;
  7233. padding-right: .4em;
  7234. }
  7235. /* line 205, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7236. .x-button-forward:before, .x-button-forward:after,
  7237. .x-toolbar .x-button-forward:before,
  7238. .x-toolbar .x-button-forward:after {
  7239. -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;
  7240. }
  7241. /* line 208, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7242. .x-button-forward:before,
  7243. .x-toolbar .x-button-forward:before {
  7244. right: -0.727em;
  7245. }
  7246. /* line 211, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7247. .x-button-forward:after,
  7248. .x-toolbar .x-button-forward:after {
  7249. right: -0.682em;
  7250. }
  7251. /* line 219, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7252. .x-button.x-button-plain,
  7253. .x-toolbar .x-button.x-button-plain {
  7254. background: none;
  7255. border: 0 none;
  7256. min-height: 0;
  7257. text-shadow: none;
  7258. line-height: auto;
  7259. height: 1.9em;
  7260. padding: 0em 0.5em;
  7261. }
  7262. /* line 229, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7263. .x-button.x-button-plain > *,
  7264. .x-toolbar .x-button.x-button-plain > * {
  7265. overflow: visible;
  7266. }
  7267. /* line 233, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7268. .x-button.x-button-plain .x-button-icon,
  7269. .x-toolbar .x-button.x-button-plain .x-button-icon {
  7270. -webkit-mask-size: 1.4em;
  7271. width: 1.4em;
  7272. height: 1.4em;
  7273. }
  7274. /* line 239, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7275. .x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed,
  7276. .x-toolbar .x-button.x-button-plain.x-button-pressing,
  7277. .x-toolbar .x-button.x-button-plain.x-button-pressed {
  7278. background: none;
  7279. background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0)));
  7280. background-image: -webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px);
  7281. background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px);
  7282. }
  7283. /* line 244, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7284. .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask,
  7285. .x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask,
  7286. .x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask {
  7287. background-image: none;
  7288. background-color: white;
  7289. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff));
  7290. background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
  7291. background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
  7292. }
  7293. /* line 251, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7294. .x-segmentedbutton .x-button {
  7295. margin: 0;
  7296. }
  7297. /* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7298. .x-segmentedbutton .x-button:not(.x-first) {
  7299. border-left: 0;
  7300. }
  7301. /* line 276, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7302. .x-hasbadge {
  7303. overflow: visible;
  7304. }
  7305. /* line 278, ../themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */
  7306. .x-hasbadge .x-badge {
  7307. -webkit-background-clip: padding;
  7308. background-clip: padding-box;
  7309. padding: .1em .3em;
  7310. z-index: 2;
  7311. overflow: hidden;
  7312. color: #ffcccc;
  7313. border: 1px solid #990000;
  7314. position: absolute;
  7315. width: auto;
  7316. min-width: 2em;
  7317. line-height: 1.2em;
  7318. font-size: .6em;
  7319. right: 0px;
  7320. top: -0.2em;
  7321. max-width: 95%;
  7322. background-image: none;
  7323. background-color: #cc0000;
  7324. display: inline-block;
  7325. }
  7326. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7327. .x-tab .x-button-icon.action,
  7328. .x-button .x-button-icon.x-icon-mask.action {
  7329. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2YW4hVVRjHZ0yzq6lFEaMlE0PShYRAJIl6iEqKHnqI6WJB0IvdICkfEk0aIyo0KFCph8giCitI7CkoohQL7SoZDaQmXSgKo4uWNf1+zt7DOXvOOXuvvc85bc+cD36ssy/r+77/Xmt9e+3TOzIy0jORbNJEEqvWruBOH/HuCHdHuMOeQOmmdO+ozaA5oxXPunSC2Re4MbgCNiB6vvqbKbx0giNxp9BeBU/BIJqnRecLN2UVrLDj4GIYgscRfSltYSuzYMUdA/0wCI8ieglM5XduK7vgWJhTegGshucRfQHkyj1XpziLNrfmOh2ug1dhMaJn0gbZZDpNpsexQb2y3azfKXCAwns4W5dMd7m2B2ANLCT/x/A/nKknN5mUhWFp1g4Z7vM14jrbBZvgEwi1tAdkDEf3ZrgI0S/RrkP4IdqGpuA+cJo0yw7iyNfJmzAcMrokfjp93HC4XrPYCdzkgPXDPPqvJN7eRh0VrBWqfKMuev6k3Qzr4SP4HWqOFIkZ73iYA/NhLpwPZ4LLS+FZzUp+GtwAA/heS/sGwv+irWnXc9bdTRF20/8eOBWmEKwnCectOrPhSlgF2+Bb+Bl+AxP8B/6FvLn8Td8fYQXMSubgsVZU8Cv4mAeNhC7k+jLYCopzrRURlvZA9P8WLIJJlcI5zi1Ypw+Dr4oqp3EAzlsbLCjfg1PeEUxLtlnXXU4/wQboq8gpl2BHx2l5UuyosuW8I6rQb8Bp1iwRefy4VN6FReaopU3pX7jnhwSO7MmVIiNnJ3L+DtgHCm3ltA0RH4/26rhKk1tdu4kr7yeuHkKgU3rMqI5ncfAQDIKbg14oi1nJv4OvTShthC9LjmTyGB8XwhZw+oQ8+Xbc68C8AOboK6+YYPpfDV+B06YdAkJiuMtzhvrOP1JYafMLpu/Z8CmEJNGOe60fz0J/cjZmWcP0G2+sWZ/aUnCqhFosOq7gyf6uOT888th+Ot0HmxF7MOkgt2AcXQNLkg5rHPv+dffjVvPX6PdeWtf7MJhUssD578ZtEGL6sY4MIfTjeh1zCWZ0Z+DwQXAkapkjtzviPdoPYB+JuJVMNfy7QQkR7MbGPfRaYhi7ruUSjLcbwe1k0tw2vgivwy6C70/ekPE4JK+N+HySWDuz+A5xXOnvlsqD6Lf/QjwBnxNc4a02YwzBeuIdyBosWDDT7RKcn1MRYA+/V8ImAv9Rcb5VP53ufoQ8AB8S0+PMFiwYz5fDzCjCF7SLCbojOm514zZ3HViYLIZVxmD4h8B0rtWtFXkEn4tTv22thPe2SawVeDs8TTz/NqoyhLqDGoC7wervt3lNCxKMY/fIc+BLuJXgn9G20pyuVuA1sJF4vt7GjHx8nZnT7XAXzIXnoK4FCcbLVHAqLW+DWF8v78Aq2EY8v7zGDK2+EmfBI3AtTAPNTU1dCxXs/a6ht+t6bM4FNykvw/0IdYSrDLHu8iyeQ7Cg6mLKQahgd0pbSOJwit/cl6Np6p+BrxGn6hNUp1z3m/tOWAH+DrIgwSTQcBcTFLnOzcRwSjZ6j/vdvQyCxRrSanu0mWvZqp3LjkbBuYTGnSac4CxreCQqJPFD+r/bhq+dtOSyCO7DyWzIcm9avKLXXb+FcskiYjlBfB0lP9KLJp+nv6N7ZL+cp7N9sgg+L6/zMvabcEWrK7iM07CZOXVHuJlPs4y+rNJ74JkyJpczp62N+vWOfpw0uqWzrnXXcGeN53g13REe/0w660x3hDtrPMer+Q9LNCcV91c+jgAAAABJRU5ErkJggg==');
  7330. }
  7331. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7332. .x-tab .x-button-icon.add,
  7333. .x-button .x-button-icon.x-icon-mask.add {
  7334. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAABqUlEQVRoBe2awWnDUBBE843B4NxcQSAFOC4lJeTkoxtJDykgvRhcgCFNJCFgIs+ChEHSJX93YT6ZD4ssmR3NztNFH5Wu6+6iVynlEZpbp+4J3s5OjWm7DRxZuMMCdUB9oyzNmrJe01hEejMtM5exIh6bCI3JbFkDT27EckEDs5DI8iHCWcmy6IowC4ksHyKclSyLrgizkMjyIcJZybLoijALiSwfIpyVLItuOGFso/xiuEvAgJdeK0DqJrHEhtsTTh9ul9y/ChR2KE+Y1ruDt2ccI7d6PszcK+oFFblWELt3Cn6i/8epMW5/W+LKGrUZ/0NwboF5QxuPsfY8dmOxJs41cBOYHCZF2BFeE60i3AQmh0kRdoTXRKsIN4HJYVKEHeE10frvCNvr4RH1HojH3rGHr3hqA7VdkxPKvuKJ3AA4hn7BM3xxA5N71Fdv1gz/tax3P+hFHmsJwM/8wraMadqOh5GuXda76rVqNWb7wgeevQvRRQ1MBCPFiginxEokKsJEMFKsiHBKrESiIkwEI8WKCKfESiQqwkQwUqyIcEqsRKIiTAQjxcoVrP83/9czD9EAAAAASUVORK5CYII=');
  7335. }
  7336. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7337. .x-tab .x-button-icon.arrow_down,
  7338. .x-button .x-button-icon.x-icon-mask.arrow_down {
  7339. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');
  7340. }
  7341. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7342. .x-tab .x-button-icon.arrow_left,
  7343. .x-button .x-button-icon.x-icon-mask.arrow_left {
  7344. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGMDZEQTFBREFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGMDZEQTFBQ0FDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+FXGmxAAAAghJREFUeNrsm09ERFEUxt+rxBAxqyFm1SqiRYpMSpFapUVaRGpTRIpIbWLaFJEoRZtilChRWiRKsyklilYRERERERGZvsN57Wfmvnnnznkfv+WM+bn3e/ePN24mk3E0pcRRllC42FOWy4dc1w30R+fz3LFthEs1TelZ0KlBuAIcgmRgHS5gqlm2RsNTmqbvrUlZycLT4BhUiliWfEwEbII+UeuwT4nzqNZq2Gm1gTu/ZaUIj4NTEBW7tTTY1zUwKH4vbaive6BBw2kpAa6DkA1CeBicgZhVx8McUg5WWNi+83CWiXFfE9ZeAGQR6ukBqJKyu/Gzw7TcXEiS9UuYbiWWeU8ckXYqMT2lozyFW6SeOU0K1/FhPS75RsHUlKbj3KV0WRPC1Nd5sCuxr6anNPV12zFwk2jLCCdtk81XeAIsahL+BVOgH3xrEPayA5rAixZhyj2oB2ktwpR30A5WtQh7vR4DQ+BHg7CXLdAMXrUIU26411dahClvoBVsaBF2uMsjYFRCrwt5a7kOOnjUVQg7vE43cr9VCDu8I6Nep7QIO7z3HgCTvHYXvbCXJe71hxZhyjmv1w9ahCnP/DDb1yLs9boXzGgR9rIAusCnFmHKCff6UYsw5Ymlj7QIU75AN5gz9YVuLu8eB/S+dA+v1+l83pe2Sfg/BRe2OeGfPELhUDgUtip/AgwAw4tbozZtKFwAAAAASUVORK5CYII=');
  7345. }
  7346. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7347. .x-tab .x-button-icon.arrow_right,
  7348. .x-button .x-button-icon.x-icon-mask.arrow_right {
  7349. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGMDZEQTFCMUFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGMDZEQTFCMEFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+xvZexwAAAhhJREFUeNrsm8FHRFEUxu9rxhARsxqiVauYXWoTpTYtUkRqlWkz0WaiTW2iNi3atGhTm4k2E5GYSJRaZcZQtIqIISIiYhgyfZdv/oF59913X+cdfst5733u+c495743XqvVUpKiSwmLWPB/j2QnP/I8L9SH9lN3/KxwQlpKT4FtaR7eAhegR1LRmgEVMCCpSg+CGtNczLbUC8pgQ9I+rCv3LiiBbkmNxwJ93S+p08qCRzAhqbVMg2tQkNRLa1/vg6ILvrY5POTAXdi+tj0tDbOYjUoaDzPgBuQlzcMpcEhSkg4A8lztjBTBin6u0d8iBOvoYwXPSRGsuEcXuWcnJAhuR4G+TksRrGOMfXhWimDFjqzCyUuE4LavS5yxExIEt0OfopRN+DpKbx6MHAtHSfAeWPN7kWQEhDbAMjg1cTHXBdfBLHiSUKXvwZBJsS4LPgCT4NP0hV1L6SZYAcdB3cAlwe9gDlQlTEsP9Gs16Bu5IPgIjIOP/34AoP26Ss82bd00LA/r1Vzk1mM1whCsfTrPpsJ62E7pE/q1HpaPbAn+Betgib1xaGEjpb+Ywrcu7H9BC35m8//mSncTZEqfgRGXxAYpeJNp3FCOhemU/ub+euXqzGlS8AuYBq8unyiYSulLNv9OizUleIcr+6MiEF4n3x7ze2n9OkSfE5/bfmg/30v7ERxaWBcc5Yj/5BELjgXHgiMVfwIMAGPkXbHq6ClAAAAAAElFTkSuQmCC');
  7350. }
  7351. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7352. .x-tab .x-button-icon.arrow_up,
  7353. .x-button .x-button-icon.x-icon-mask.arrow_up {
  7354. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDQUZBQUM3NEFDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDQUZBQUM3M0FDOTMxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFGQzJEMjQxRjIyMDY4MTE4QTZEQzUxMDg5Q0Y0RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ar3jxgAAAbFJREFUeNrs2j9ExGEcx/H71YmmpoiIaIq4KSKi6dabbo1oiqamm1qboimiNZpuuikiIqLppiPipqYjIuLp+/D95vy6X/frfr/n730e3sst53XP9x7u+V2ilKpM05qpTNkCGGCAAQYYYIABBhhggAEGeNSqpl9IkiQKWNbvfBc7PDdNIz1PPVK7Trd+OMPrRr8l9Uat2nT9+CyCW4yVnnnHowTXqa8UWHcdI3iNGozASscxgReo7h9YxTtfjwXcHoOVBjwJQYNPcmKlLk9EkODGP7FSO0TwOvU+IVjxZAQD1iPZK4CVGiGAZ6lOCVjFE7LhO/i0JKzUK3KImQY3S8ZKHZ4cr8A16sMQWPHkeANepF4MYqWmD2A9arcWsIonqOYafGYJK73yRDkB71nGSnd5r4jKBG9Sn47AunOb4CWq7xAr7dsA61G69wCreMK2TIMvPMFKfZ44I+ADz7DSQ9YhVgS87fiQGtdlmeBlvkNWnndYBljfGT8FgJVDbKco+CoQrBp6mrEyKfgoMOyvpxlZ4CT9vcXj0shWNe8nE8vCfzwABhhggAEGGGCATa1vAQYAZekAmr8OukgAAAAASUVORK5CYII=');
  7355. }
  7356. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7357. .x-tab .x-button-icon.compose,
  7358. .x-button .x-button-icon.x-icon-mask.compose {
  7359. -webkit-mask-image: url('data:image/png;base64,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');
  7360. }
  7361. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7362. .x-tab .x-button-icon.delete,
  7363. .x-button .x-button-icon.x-icon-mask.delete {
  7364. -webkit-mask-image: url('data:image/png;base64,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');
  7365. }
  7366. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7367. .x-tab .x-button-icon.organize,
  7368. .x-button .x-button-icon.x-icon-mask.organize {
  7369. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEdUlEQVRoBe2aS2xMURjHjbbqUaLoI7RChQUiGo9YaEqkoolIkCASSki68dixsLIVYmHbkJA03UgkFRI2QgRBKl4RgtJFK0jUI+o5fv/p68ztmUlHzpzO9PZLfjP3fOfcO9//fOeee+69E4lGo6PCZKPDJFZaQyc4N1mGI5FIMfUVkAfZMPaVwE54yqn6i+8BllQwravgAEyEv5DppsQ8gYPw3hqsJi0bNJ4El0GZzSa6iHcbjLbpsp7DDGX5V8ByyDbLJ+CdUGQLPNGQnkzj3TDFspN68BNkwhDPIY5poG/T1lBYR+LOkuW4uSeR4KXssN48grF9h20NdeukYLRL96Y6vAD2wCwwbQyFvXARPpoVA85fKnXiN4HtvP2Gf0tPG3XWUKNYT4E6PxjvD3x1EDHPZZvgxTTSDBc8gMrKbql5gKHeJh7NM6/AFu91/EVmjHGTFmN+HA3qYSoE7SuO8+zcEawY4vJdfr8Z/ljiqMS3AV2RvjpTPc7V0A623rqJv8RsnynbxDUXXieJuy/LfRmmEzSd7wKtroL2Hcc5BL4LVmRCmbheEIfmHduVQ1muQV/3BN2bJZyqaANbdm/jL+xtm4nfxKcsP08Q/zX8MxV3TDXqx+PYBGUQNHVAI9AsYrsuB9sPVflDT5xH+O7OZn8kK9msJf6G3ooFOOr66+O2NOVL6A7oP/njmmREQcN5LGhy1cLJtBwK++FSLqrVSGvPcrCZGu8DZTqTBSs+zUkarTZTUrerYh50gHYY7rSpRxZCCYTByvouS2FQK42hE9w7S/tKsOaIt/AGfoMWO3OgFLyYb8FaGByHl6C1r27jlsAh8HaN14LD1+x8jN/KNVdqlAvhgq8YfJ/DLYjVUDatk8J905HObd+Cf1rEaHTp5sSL+RacaKWWyO+8E3wLdi4g1QOOCE61x7Kt/UiGsy1jqcY7kuFUeyzF9ok6WA8ZvJjLtbQWEI/hXpLIW4N1rLyiPHV5hP9MsM4or2V7hlH+702XghWE3gAcTRKN3mjY7AZOdZbNCnAug4wTrNXSItCrmmYSZ3tGTNVAo+1nvCLOyLyeT9WC7WlqXNtUCq7vlpTlGkQMeG+Vio9j6NbxMOjtn8u7udjzaJcH1H3uLViVikCzLftqEtsKbeAyNh3LuWAdVM+yr8JsU8hgt9mvGh6ATousEKwgdcvXCMWDFap2mOYBTWK6b3YtNvYDrs9hM0i9BTgB+YMRTbvp0AS6bzaP43I7LUPaDFBvHPVmIy+ZaOp1+TkJX8Dc3/V22gUrYF1jN4L1r0T4NSPXg+sZ2dZZXgRr5m6BymCW8en6rc54BrYAXfu8CFbQmoQ0c1eYoilXw0NQp7gWZzueN8H68S44DbG/IPA9H66AL7FR12tpYk9qetOwGfSaVjcMNVAFie6iqHJv6bws2YaUfLpctYP+S5WoTVr8vjOMvphN4FN4N69Dybs6yw+OCLZ0yrByhS7DmrRaoQE0Kw5707JOf/UvH/ZKewTG/kscFrHSGbpzOHSC/wHSRhVOrpN3ggAAAABJRU5ErkJggg==');
  7370. }
  7371. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7372. .x-tab .x-button-icon.refresh,
  7373. .x-button .x-button-icon.x-icon-mask.refresh {
  7374. -webkit-mask-image: url('data:image/png;base64,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');
  7375. }
  7376. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7377. .x-tab .x-button-icon.reply,
  7378. .x-button .x-button-icon.x-icon-mask.reply {
  7379. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAES0lEQVRoBe2ZSWgUQRSGM24YTdSo4AYRTcxBEZJDJCoigrtGg6CIgihqogfRgEERguhB40UP6kHw4kEET4J4E9wPAdeg4ALigjuKcSMuMX7/mAmdSU/SXdM9PTPpBx/T3al67/31urq6K5G2trac3mR9epNYaQ0FZ3vFwwqHFc6yEQhv6SwraBc5YYW7DEmWXUhZhSORSC7UwKIgxzAlghE5CZFHoAEKgxTcz8/gCI3gfzHsh6l+xnLq2zfBaC0miXpYDvmgu+kXBGqeC0aohK2D7TAF+kPamKeCETseZdugGgZDSp4RxHFsnghGqKo4H/aB5uoASEtLWjBiZ6KsFlaAHlJpbUkJRmwl6rTcFKW1SktyRoIROhofdbARhlr8OTkMdBPNlWCE6iG0AA5AqRN1Nm1cxbTpn9Qlx8ERO4pIG0Br6yDDqH3pV4kvPdRewCd4C+/ZPdWx7xZxsk1LgqvIZDeUeZzRT/xJ8Dt4BQ/gGjSSVzO/3psEJ4JoY+A4fATNvVTwhjh34RSshMGJ8jO5biuWIJqrc6AJ/kIqhNrF+EFs3fqHYRoMMxFp7dNFME5Hwi5QMLskgrqmgb8M+hgZYRXh5riTYBxpFM9CUKKcxlWOSyHPjVi1jQqmYy7shQ/gNGjQ7f6Q6yWY7UY07XNK4CK0QtAiTOK/J29tLOQ7EU67nIGgtfU1mARMhz6a3zegtCfRHXOYxhXtndJBgGkOT9FQ1Z3oDsFqhBXAFngJpkGD7veN3NclEt1JcKwRHaaD3niCTt40vh6+q2N6rL+2gtUA03p8FL6AaeAg++ntsNwqNqor/kL8OZ2WgF71vEpeq8FvC36uDveJM8qqyenHwzg67oE1MAxMTeLOQyNod0SDqO2hCaDVIma6u3R9OAxq/9WxW9PT+wRsQ7RiE7Gbj4f4v9F8Fujxb1ptfR2tj/cbf04bfbbqZWgsFEM5LITNcBLc3HF6iM2IxXAlWJ0wJXEQfoFb4RJcEwtu8kv/PCiEGdAAevFQJbvL5Rh/j351uRbcLloVmA83ewgUn0TSgq2DRGzloVt9E9yDFoiPqfOvUBHN3erA7TFOtG6fBqdfVp4KtuZLDqr8DrgDdqIPcb2/UYXjAmmu1cLDBIGswX0THMuJHIrgDGglsMZu4nxI0oItgcbjUHP7MyRaanwXrHywvlAFj8E6v+dqZ8MTI9BzHO2DtaC9KY1wIEYurXCO4JrbjyA6CvzO80wwznS3tMAFDpfBKdArnkY4ECOXqwTWUqZvA1mJp4L/+4wKf8ZxDeyE26AlLBBD9HUC14GWr8mezWEc2/oiiNZM/TumGbRLkdQ6nChOT9eJWw3ffakwjjuMRF5wUg9b4QnE5hOHKTVNsSuO3qW9SosN/Yn4KmAQbnnl040f4pelVLCb5Pxq6/st7Vfipn5DwaYjlyn9wgpnSqVM8wwrbDpymdIvrHCmVMo0z15X4X9rh8wHLEjawQAAAABJRU5ErkJggg==');
  7380. }
  7381. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7382. .x-tab .x-button-icon.search,
  7383. .x-button .x-button-icon.x-icon-mask.search {
  7384. -webkit-mask-image: url('data:image/png;base64,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');
  7385. }
  7386. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7387. .x-tab .x-button-icon.settings,
  7388. .x-button .x-button-icon.x-icon-mask.settings {
  7389. -webkit-mask-image: url('data:image/png;base64,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');
  7390. }
  7391. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7392. .x-tab .x-button-icon.star,
  7393. .x-button .x-button-icon.x-icon-mask.star {
  7394. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
  7395. }
  7396. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7397. .x-tab .x-button-icon.trash,
  7398. .x-button .x-button-icon.x-icon-mask.trash {
  7399. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFBElEQVRoBe2aS4gdRRRA8+L/m0QIJkYNLlQUNOAvigpRcCEIcSsiCLoLLoILcaM7QVBX4koRshDxt9CFKCoiuvGDCP5QkxCiJhInRo2Ovzie80gPNWX1dL3uesM09IUz3V1169a9daur+031aG5ubkUpGY1GK7G1Dq4Cz9vKiIY74Sv8+72tkWQ7Ay4Bxo+Hu2E3/AuOZBf+ov2TsL6Ef5WNUsGazXvgEHQJMm77N/aeg3Mrh7seOweMM2bWYH+B2OES1/9g9w0oEnSngHHCYO+FGSgRXJ0NM/0idA565BRpKyxSt9J2B5xWY+Mw5Udq6uqKT6XimESlmX4d7sTnA4n6rKJjs7QSSgTrSno7nJyodtFyGr4AP4G6TeLIHweb4A44C0LR1xtgCzwP7aTtIkBvLlSfQjwNZyl7FNa0sU077V4DX0Js25X7cRjPzDb2Nd5FnK7xPbGXskdwxsxOLLRzdnwIj8GvkQFnypqobKLLrgGnOjMzP6cqJijzfn0NXPljmXRNWNC+dcBHM7HA2NELp10nwbaz5iC4OsdidTyrYp3a68ZFi7XJFfNsOBGcUmFnPpbiBWkVZefT7g+OXcTF0EUsFPtaje0Lw0LOzfoM49B4Gy36WMKwK+WDcC2cAmGwXK7YAAYdym9c+NiIdUOdnHODc6DjpPioix9LBvwtPE3QOzjWi7MjBS0M8CGY1huUA1ISg/4cNqXiqcqSwVqJ3AQ/QEmnpm3LR+IzsLYKMD4mA6bBOfAKuFpO28nS9v0Bcxckn9V1Ad9Pg2m/H5cONLT3Mf5fFGfX63hBQG8s7/LXxcdV0nvjMtgKp0MojuaroM60xYB8Z78ZTog6c515B1ylXey+ARe3/0tqFNCy0RjrkdvgOwhH0TeiB2A1uMBNGx9Ta+FZiP34mrIrQR39cECSUzqZYYIcR0mjJtmFwmHUvdenLjwmnUl7Eh05+LP40fjvoGTACYN1Rc6CecGhM7lw2lt+AA7Fg4fOespXgYO0j3pvnXmh3rY+/52+vrXtRSd841rQJ/WV1JVX9eNj14DnjeHnJVw8DBeAnX8A2ynfXwXN+cWUPQUOjNl6i7Jt1I9nCOe+1V0NT4AB/wkvw31QRIoFjDfnwRXgfVbJGZzsry44boTNUGVjlvOToPpV5FvbjXApKE7VLZ6UkpWlDGHH+96pV93/4TSsujGA8MeF51Xw6njuO3soKTth/UTnJQOeqONFlKsBW0SlfdVyDLh9NBkth4AzBqnXKkOGe52+DOeHDGcMUq9Vhgz3On0Zzg8ZzhikXqsMGe51+jKcHzKcMUi9Vhky3Ov0ZTg/ZDhjkHqtMmS41+nLcH7IcMYg9VplOWY4/Md88cEtHbDOVg5Xx9jpsM9Yx52JeAcw1ontTXRdcm9pFz3vBveHdNJN6YPVRhrnivtMlruZ5g7DFxBuXLut8j7sA/d43Yr5CIpJsYAJ7DN2/27Bsw1gwAb3I8wLOp+g4w6+nw/6HddOyszqWDg/Qv2bXFwH4+1SyhyUYtI1YLc85wXn/ORAagWdPVRKUqh3AJwtdTLeWq2rbCoP76cm3bjeLG6ELjZim03XJujyJqXF6rtmeDvGNzMN/ajEAZi2rKOD67t00jVgN7+3dnFgqdsu5XRc6tiS/eUGvBTTNengBIVZPuYG7LcYPjdluYk++bTw++pGyQ34bSy9B35Vs5zEYGfgJfg+x7H/ADoy2VfnrtXoAAAAAElFTkSuQmCC');
  7400. }
  7401. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7402. .x-tab .x-button-icon.maps,
  7403. .x-button .x-button-icon.x-icon-mask.maps {
  7404. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADl0lEQVRoBe2b24tNURzHjfutXEPycDAltwhJbuMSJUqSB/HiES/+AK9ePc6T8uCFkImQW5KGkdwSxYyMGkZu45bbDOPzyZyTrJnjnDkGrVm/+szas2bv397f33ftPS+/Vdba2toj5igj0NcfRkG/3qWIJdcIrs/AO6gDq7cKPkOjUNAmxr8ePJsix8NUWAvLoapowSQawIUzYCZUwAqohF3QAjtgGTyCy5x/nfEu1MNDCmAxuiS4Vy8ST4DZMB9WwiTIRUGC26q1gKtWwyyYBsPB5aLIL5CNTxzotDeWTeA5DUKuO4xXoQbxHpcUbSIzJFkDi0EzdLYnBNGuYJJ4ch+YAhvB5TAORsKvib4x97vwPpk2FjJuhibu85zxAlyCangBLRQib06u68t5vk4uVYVqgO+oqy9v5ASTRLd0LQNLYB24bAfBnw5zikX0HtuhGW5ANY9ylvEBvIY3FOArcz7rWHCpboBFMAxyGjguKIZy1jzYCqfAD5BLslB8J3dCP/AdOgo+fKHXd3Sebh+EctCMieBK6Oj8QuYrXZ7roQr88PiSD4b/IVyyfhB9jQy/uppTUijYhANLytJ1F/sxzL7POpg97vQdFfwVTNYtQsHdKpLg2O1ODieHI6tAWtKRGRrISQ4HJYlsIjkcmaGBnORwUJLIJpLDkRkayEkOByWJbCI5HJmhgZzkcFCSyCaSw5EZGshJDgcliWwiORyZoYGc5HBQksgmksORGRrISQ4HJYlsIjkcmaGBnORwUJLIJpLDkRkayEkOByWJbKLbOVx0r3E7httIbttwNvzddt//JWxIfQynYX8pgu2TbgBbjw9Ds53sNHJv49gOehu5bUe2DfjXojDVpWG/9iu4CEegBp7xfO+LFfyGC5+AiQ7BFXj/c8s+xw+Z24PwvYwKnQxLoQLccGEB7Hsu9t5ckjcU2QjuozgA5+Apz9PCmItCbvqWs2vhJpwBl8ZrEuVtOebPtiWLbf2ymyL0ZVT8XJgDbgHIgFsPOhPmr4d7oAnHue9txg6jI8EfueIaHIOrcAuafieSc/IG19vw7TYD6UEBbE4vhwxMB7cizIYhYPT6MeR+WjBFPoCToEgF1hb6bD8LNpHLwT0L56EOGkhUchc6edoNcruvQWoQ7/6GMTAa3E2zACxGNjRhH9wHV4zP9oGxqCjj7C0wA06Ay/YliRT/T4MCuGnEfQ4feJ5mfvdfaG+OXSWdju+VpAoIK3D9tAAAAABJRU5ErkJggg==');
  7405. }
  7406. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7407. .x-tab .x-button-icon.locate,
  7408. .x-button .x-button-icon.x-icon-mask.locate {
  7409. -webkit-mask-image: url('data:image/png;base64,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');
  7410. }
  7411. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7412. .x-tab .x-button-icon.home,
  7413. .x-button .x-button-icon.x-icon-mask.home {
  7414. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEK0lEQVRoBe2Zy28NURzHe/vwqEepYkFIQzxWaCOC2HhELEgQImhXIrqyIEXikVQi+gdIwx9AItg1NiJELMSGhKQbobY2VY9Srfp8m5lmTO/cOXN7Zu656f0ln8zMnTNnft/z+505j5sbGxurmk5WPZ3ESuu0E1xbigjncrka3jsbftClIvsU5RZ65aLK5Lj/C75SzSjHWCuJYLxqhPXwBgYhylq4sRaixChDP8EzGIJ4UwNnCR6tgFswANegKer93LsLim4herm/JKqO8O+ZRdhL42acOwunYAacg2Hu3ePYj3Ph1A1fU2ySmZSZeCiTjxaC1LAboRs6QGJl8+AKXIU1kLqlHmHEqlFboQv2gD40QdPHqx3qKdtJkD8Hb9o+TzXCXmT1cboB+cT6evTVPgIXeWYl6DoVSy3COF2Hx0rjTthp4L0a/4xXrofn33OeqH8avKMqFcE4O4uXb4ULsNfEEa+M0v00LIIuCKc/P03NrAtGrD5Iiuh10Dia1JTOR0EZsjjpw3HlrQpGbD0v3AzFig36e4CLkeAPNs6tCUbsHBxS+mpsLSayYT2KtLBqVgQjdgFe7QP1u9VWPbRc2ZQFe2LV5zSBWG7ZP+vVTUkwYhvx6DicB+fFqvWKFuyJ1QxJ00It48rCNNgnNi+N23hQaVw2YiU0cYQRq9Q9CJdBKV1q02zMeEaWSDBil1L5JTgBDeCCzcUJ8cXImfACOeqayjbBffgDfqu6cPyJP3dgVZTvwd9jdzuoSFmgicRDGAYXRIZ9+I5fPbA6KC7feUHBVKD5rJZ1EutaZMOiv+HjbWjJJ9T/LVIwDyqyh+ApuC7WFy/RCk4r5HyRwWNewRSW2N3wGv6CX2E5HBWcB9AaFOqfTxJMQa1lNewosqNQDiLDPmqv+hFsgzpfrI7/CeamVjwnQZEtV7G+eEX6MeyHGl/0hGB+1MJdYt+B/1C5H9UdX8J2qJ6IMBfz4Ri8hXIXGfZfmdoLWr5W1zJ7ktg2aId18BuiTHNvDVUumQSNxDikLSdtBzdok0yCD8MyiLNmCqhxXBL9An+egNI3yqRT9z+O92FO/O2UuOMuymoqF06bUl53489MQw21Gm8lWmkRa6R/oVaMfT6lAmrsUVMNRa2HU3I8k2orgjNp5hK+ZLwPp/x+fR+0ONfMp9BfJ+qLmulpyze1zMtC8AACbkI/xAneQZkO0JiZimUheAjPn0MfxAnWVo3RiEG5oiwLwXJsmGFDK5iCxrCnGZNSOzVLra+EPDZ9T6EMCFVZ3KWpI8XV7uBTFcEOBsWqS5UIW21OByurRNjBoFh1qRJhq83pYGWVCDsYFKsuVSJstTkdrGz8L0VTv1i+NVF2CyTJDC0LX7E8HIx7D/Vrb3wDaLvY1D5QsI/6jXZUEwk29cDlckki5bIOY9+mneB/GfbU3e4Ey5kAAAAASUVORK5CYII=');
  7415. }
  7416. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7417. .x-button.x-button-action, .x-toolbar .x-button.x-button-action, .x-button.x-button-action-round, .x-toolbar .x-button.x-button-action-round, .x-button.x-button-action-small, .x-toolbar .x-button.x-button-action-small {
  7418. border: 1px solid #003d99;
  7419. border-top-color: #0047b3;
  7420. color: white;
  7421. }
  7422. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7423. .x-button.x-button-action.x-button-back:before, .x-button.x-button-action.x-button-forward:before, .x-toolbar .x-button.x-button-action.x-button-back:before, .x-toolbar .x-button.x-button-action.x-button-forward:before, .x-button.x-button-action-round.x-button-back:before, .x-button.x-button-action-round.x-button-forward:before, .x-toolbar .x-button.x-button-action-round.x-button-back:before, .x-toolbar .x-button.x-button-action-round.x-button-forward:before, .x-button.x-button-action-small.x-button-back:before, .x-button.x-button-action-small.x-button-forward:before, .x-toolbar .x-button.x-button-action-small.x-button-back:before, .x-toolbar .x-button.x-button-action-small.x-button-forward:before {
  7424. background: #003d99;
  7425. }
  7426. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7427. .x-button.x-button-action, .x-button.x-button-action.x-button-back:after, .x-button.x-button-action.x-button-forward:after, .x-toolbar .x-button.x-button-action, .x-toolbar .x-button.x-button-action.x-button-back:after, .x-toolbar .x-button.x-button-action.x-button-forward:after, .x-button.x-button-action-round, .x-button.x-button-action-round.x-button-back:after, .x-button.x-button-action-round.x-button-forward:after, .x-toolbar .x-button.x-button-action-round, .x-toolbar .x-button.x-button-action-round.x-button-back:after, .x-toolbar .x-button.x-button-action-round.x-button-forward:after, .x-button.x-button-action-small, .x-button.x-button-action-small.x-button-back:after, .x-button.x-button-action-small.x-button-forward:after, .x-toolbar .x-button.x-button-action-small, .x-toolbar .x-button.x-button-action-small.x-button-back:after, .x-toolbar .x-button.x-button-action-small.x-button-forward:after {
  7428. background-image: none;
  7429. background-color: #0066ff;
  7430. }
  7431. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7432. .x-button.x-button-action .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action .x-button-icon.x-icon-mask, .x-button.x-button-action-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-round .x-button-icon.x-icon-mask, .x-button.x-button-action-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-action-small .x-button-icon.x-icon-mask {
  7433. background-image: none;
  7434. background-color: white;
  7435. }
  7436. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7437. .x-button.x-button-action.x-button-pressing, .x-button.x-button-action.x-button-pressing:after, .x-button.x-button-action.x-button-pressed, .x-button.x-button-action.x-button-pressed:after, .x-button.x-button-action.x-button-active, .x-button.x-button-action.x-button-active:after, .x-toolbar .x-button.x-button-action.x-button-pressing, .x-toolbar .x-button.x-button-action.x-button-pressing:after, .x-toolbar .x-button.x-button-action.x-button-pressed, .x-toolbar .x-button.x-button-action.x-button-pressed:after, .x-toolbar .x-button.x-button-action.x-button-active, .x-toolbar .x-button.x-button-action.x-button-active:after, .x-button.x-button-action-round.x-button-pressing, .x-button.x-button-action-round.x-button-pressing:after, .x-button.x-button-action-round.x-button-pressed, .x-button.x-button-action-round.x-button-pressed:after, .x-button.x-button-action-round.x-button-active, .x-button.x-button-action-round.x-button-active:after, .x-toolbar .x-button.x-button-action-round.x-button-pressing, .x-toolbar .x-button.x-button-action-round.x-button-pressing:after, .x-toolbar .x-button.x-button-action-round.x-button-pressed, .x-toolbar .x-button.x-button-action-round.x-button-pressed:after, .x-toolbar .x-button.x-button-action-round.x-button-active, .x-toolbar .x-button.x-button-action-round.x-button-active:after, .x-button.x-button-action-small.x-button-pressing, .x-button.x-button-action-small.x-button-pressing:after, .x-button.x-button-action-small.x-button-pressed, .x-button.x-button-action-small.x-button-pressed:after, .x-button.x-button-action-small.x-button-active, .x-button.x-button-action-small.x-button-active:after, .x-toolbar .x-button.x-button-action-small.x-button-pressing, .x-toolbar .x-button.x-button-action-small.x-button-pressing:after, .x-toolbar .x-button.x-button-action-small.x-button-pressed, .x-toolbar .x-button.x-button-action-small.x-button-pressed:after, .x-toolbar .x-button.x-button-action-small.x-button-active, .x-toolbar .x-button.x-button-action-small.x-button-active:after {
  7438. background-image: none;
  7439. background-color: #0060f0;
  7440. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #004bbd), color-stop(10%, #0056d6), color-stop(65%, #0060f0), color-stop(100%, #0061f2));
  7441. background-image: -webkit-linear-gradient(top, #004bbd, #0056d6 10%, #0060f0 65%, #0061f2);
  7442. background-image: linear-gradient(top, #004bbd, #0056d6 10%, #0060f0 65%, #0061f2);
  7443. }
  7444. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7445. .x-button.x-button-confirm, .x-toolbar .x-button.x-button-confirm, .x-button.x-button-confirm-round, .x-toolbar .x-button.x-button-confirm-round, .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-confirm-small {
  7446. border: 1px solid #263501;
  7447. border-top-color: #374e02;
  7448. color: white;
  7449. }
  7450. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7451. .x-button.x-button-confirm.x-button-back:before, .x-button.x-button-confirm.x-button-forward:before, .x-toolbar .x-button.x-button-confirm.x-button-back:before, .x-toolbar .x-button.x-button-confirm.x-button-forward:before, .x-button.x-button-confirm-round.x-button-back:before, .x-button.x-button-confirm-round.x-button-forward:before, .x-toolbar .x-button.x-button-confirm-round.x-button-back:before, .x-toolbar .x-button.x-button-confirm-round.x-button-forward:before, .x-button.x-button-confirm-small.x-button-back:before, .x-button.x-button-confirm-small.x-button-forward:before, .x-toolbar .x-button.x-button-confirm-small.x-button-back:before, .x-toolbar .x-button.x-button-confirm-small.x-button-forward:before {
  7452. background: #263501;
  7453. }
  7454. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7455. .x-button.x-button-confirm, .x-button.x-button-confirm.x-button-back:after, .x-button.x-button-confirm.x-button-forward:after, .x-toolbar .x-button.x-button-confirm, .x-toolbar .x-button.x-button-confirm.x-button-back:after, .x-toolbar .x-button.x-button-confirm.x-button-forward:after, .x-button.x-button-confirm-round, .x-button.x-button-confirm-round.x-button-back:after, .x-button.x-button-confirm-round.x-button-forward:after, .x-toolbar .x-button.x-button-confirm-round, .x-toolbar .x-button.x-button-confirm-round.x-button-back:after, .x-toolbar .x-button.x-button-confirm-round.x-button-forward:after, .x-button.x-button-confirm-small, .x-button.x-button-confirm-small.x-button-back:after, .x-button.x-button-confirm-small.x-button-forward:after, .x-toolbar .x-button.x-button-confirm-small, .x-toolbar .x-button.x-button-confirm-small.x-button-back:after, .x-toolbar .x-button.x-button-confirm-small.x-button-forward:after {
  7456. background-image: none;
  7457. background-color: #6c9804;
  7458. }
  7459. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7460. .x-button.x-button-confirm .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm .x-button-icon.x-icon-mask, .x-button.x-button-confirm-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-round .x-button-icon.x-icon-mask, .x-button.x-button-confirm-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-confirm-small .x-button-icon.x-icon-mask {
  7461. background-image: none;
  7462. background-color: white;
  7463. }
  7464. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7465. .x-button.x-button-confirm.x-button-pressing, .x-button.x-button-confirm.x-button-pressing:after, .x-button.x-button-confirm.x-button-pressed, .x-button.x-button-confirm.x-button-pressed:after, .x-button.x-button-confirm.x-button-active, .x-button.x-button-confirm.x-button-active:after, .x-toolbar .x-button.x-button-confirm.x-button-pressing, .x-toolbar .x-button.x-button-confirm.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm.x-button-pressed, .x-toolbar .x-button.x-button-confirm.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm.x-button-active, .x-toolbar .x-button.x-button-confirm.x-button-active:after, .x-button.x-button-confirm-round.x-button-pressing, .x-button.x-button-confirm-round.x-button-pressing:after, .x-button.x-button-confirm-round.x-button-pressed, .x-button.x-button-confirm-round.x-button-pressed:after, .x-button.x-button-confirm-round.x-button-active, .x-button.x-button-confirm-round.x-button-active:after, .x-toolbar .x-button.x-button-confirm-round.x-button-pressing, .x-toolbar .x-button.x-button-confirm-round.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm-round.x-button-pressed, .x-toolbar .x-button.x-button-confirm-round.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm-round.x-button-active, .x-toolbar .x-button.x-button-confirm-round.x-button-active:after, .x-button.x-button-confirm-small.x-button-pressing, .x-button.x-button-confirm-small.x-button-pressing:after, .x-button.x-button-confirm-small.x-button-pressed, .x-button.x-button-confirm-small.x-button-pressed:after, .x-button.x-button-confirm-small.x-button-active, .x-button.x-button-confirm-small.x-button-active:after, .x-toolbar .x-button.x-button-confirm-small.x-button-pressing, .x-toolbar .x-button.x-button-confirm-small.x-button-pressing:after, .x-toolbar .x-button.x-button-confirm-small.x-button-pressed, .x-toolbar .x-button.x-button-confirm-small.x-button-pressed:after, .x-toolbar .x-button.x-button-confirm-small.x-button-active, .x-toolbar .x-button.x-button-confirm-small.x-button-active:after {
  7466. background-image: none;
  7467. background-color: #628904;
  7468. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e5702), color-stop(10%, #507003), color-stop(65%, #628904), color-stop(100%, #648c04));
  7469. background-image: -webkit-linear-gradient(top, #3e5702, #507003 10%, #628904 65%, #648c04);
  7470. background-image: linear-gradient(top, #3e5702, #507003 10%, #628904 65%, #648c04);
  7471. }
  7472. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7473. .x-button.x-button-decline, .x-toolbar .x-button.x-button-decline, .x-button.x-button-decline-round, .x-toolbar .x-button.x-button-decline-round, .x-button.x-button-decline-small, .x-toolbar .x-button.x-button-decline-small {
  7474. border: 1px solid #630303;
  7475. border-top-color: #7c0303;
  7476. color: white;
  7477. }
  7478. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7479. .x-button.x-button-decline.x-button-back:before, .x-button.x-button-decline.x-button-forward:before, .x-toolbar .x-button.x-button-decline.x-button-back:before, .x-toolbar .x-button.x-button-decline.x-button-forward:before, .x-button.x-button-decline-round.x-button-back:before, .x-button.x-button-decline-round.x-button-forward:before, .x-toolbar .x-button.x-button-decline-round.x-button-back:before, .x-toolbar .x-button.x-button-decline-round.x-button-forward:before, .x-button.x-button-decline-small.x-button-back:before, .x-button.x-button-decline-small.x-button-forward:before, .x-toolbar .x-button.x-button-decline-small.x-button-back:before, .x-toolbar .x-button.x-button-decline-small.x-button-forward:before {
  7480. background: #630303;
  7481. }
  7482. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7483. .x-button.x-button-decline, .x-button.x-button-decline.x-button-back:after, .x-button.x-button-decline.x-button-forward:after, .x-toolbar .x-button.x-button-decline, .x-toolbar .x-button.x-button-decline.x-button-back:after, .x-toolbar .x-button.x-button-decline.x-button-forward:after, .x-button.x-button-decline-round, .x-button.x-button-decline-round.x-button-back:after, .x-button.x-button-decline-round.x-button-forward:after, .x-toolbar .x-button.x-button-decline-round, .x-toolbar .x-button.x-button-decline-round.x-button-back:after, .x-toolbar .x-button.x-button-decline-round.x-button-forward:after, .x-button.x-button-decline-small, .x-button.x-button-decline-small.x-button-back:after, .x-button.x-button-decline-small.x-button-forward:after, .x-toolbar .x-button.x-button-decline-small, .x-toolbar .x-button.x-button-decline-small.x-button-back:after, .x-toolbar .x-button.x-button-decline-small.x-button-forward:after {
  7484. background-image: none;
  7485. background-color: #c70505;
  7486. }
  7487. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7488. .x-button.x-button-decline .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline .x-button-icon.x-icon-mask, .x-button.x-button-decline-round .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-round .x-button-icon.x-icon-mask, .x-button.x-button-decline-small .x-button-icon.x-icon-mask, .x-toolbar .x-button.x-button-decline-small .x-button-icon.x-icon-mask {
  7489. background-image: none;
  7490. background-color: white;
  7491. }
  7492. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7493. .x-button.x-button-decline.x-button-pressing, .x-button.x-button-decline.x-button-pressing:after, .x-button.x-button-decline.x-button-pressed, .x-button.x-button-decline.x-button-pressed:after, .x-button.x-button-decline.x-button-active, .x-button.x-button-decline.x-button-active:after, .x-toolbar .x-button.x-button-decline.x-button-pressing, .x-toolbar .x-button.x-button-decline.x-button-pressing:after, .x-toolbar .x-button.x-button-decline.x-button-pressed, .x-toolbar .x-button.x-button-decline.x-button-pressed:after, .x-toolbar .x-button.x-button-decline.x-button-active, .x-toolbar .x-button.x-button-decline.x-button-active:after, .x-button.x-button-decline-round.x-button-pressing, .x-button.x-button-decline-round.x-button-pressing:after, .x-button.x-button-decline-round.x-button-pressed, .x-button.x-button-decline-round.x-button-pressed:after, .x-button.x-button-decline-round.x-button-active, .x-button.x-button-decline-round.x-button-active:after, .x-toolbar .x-button.x-button-decline-round.x-button-pressing, .x-toolbar .x-button.x-button-decline-round.x-button-pressing:after, .x-toolbar .x-button.x-button-decline-round.x-button-pressed, .x-toolbar .x-button.x-button-decline-round.x-button-pressed:after, .x-toolbar .x-button.x-button-decline-round.x-button-active, .x-toolbar .x-button.x-button-decline-round.x-button-active:after, .x-button.x-button-decline-small.x-button-pressing, .x-button.x-button-decline-small.x-button-pressing:after, .x-button.x-button-decline-small.x-button-pressed, .x-button.x-button-decline-small.x-button-pressed:after, .x-button.x-button-decline-small.x-button-active, .x-button.x-button-decline-small.x-button-active:after, .x-toolbar .x-button.x-button-decline-small.x-button-pressing, .x-toolbar .x-button.x-button-decline-small.x-button-pressing:after, .x-toolbar .x-button.x-button-decline-small.x-button-pressed, .x-toolbar .x-button.x-button-decline-small.x-button-pressed:after, .x-toolbar .x-button.x-button-decline-small.x-button-active, .x-toolbar .x-button.x-button-decline-small.x-button-active:after {
  7494. background-image: none;
  7495. background-color: #b80505;
  7496. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #860303), color-stop(10%, #9f0404), color-stop(65%, #b80505), color-stop(100%, #ba0505));
  7497. background-image: -webkit-linear-gradient(top, #860303, #9f0404 10%, #b80505 65%, #ba0505);
  7498. background-image: linear-gradient(top, #860303, #9f0404 10%, #b80505 65%, #ba0505);
  7499. }
  7500. /* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
  7501. .x-sheet, .x-sheet-action {
  7502. padding: 0.7em;
  7503. border-top: 1px solid black;
  7504. height: auto;
  7505. background-image: none;
  7506. background-color: rgba(0, 0, 0, 0.9);
  7507. -webkit-border-radius: 0;
  7508. border-radius: 0;
  7509. }
  7510. /* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
  7511. .x-sheet-inner > .x-button, .x-sheet-action-inner > .x-button {
  7512. margin-bottom: 0.5em;
  7513. }
  7514. /* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_sheets.scss */
  7515. .x-sheet-inner > .x-button:last-child, .x-sheet-action-inner > .x-button:last-child {
  7516. margin-bottom: 0;
  7517. }
  7518. /* line 14, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7519. .x-sheet.x-picker {
  7520. padding: 0;
  7521. }
  7522. /* line 18, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7523. .x-sheet.x-picker .x-sheet-inner {
  7524. position: relative;
  7525. background-color: #fff;
  7526. -webkit-background-clip: padding;
  7527. background-clip: padding-box;
  7528. overflow: hidden;
  7529. margin: 0.7em;
  7530. }
  7531. /* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7532. .x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body {
  7533. border-left: 1px solid #999999;
  7534. border-right: 1px solid #ACACAC;
  7535. }
  7536. /* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7537. .x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body {
  7538. border-left: 0;
  7539. }
  7540. /* line 60, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7541. .x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body {
  7542. border-left: 0;
  7543. border-right: 0;
  7544. }
  7545. /* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7546. .x-picker-slot .x-scroll-view {
  7547. z-index: 2;
  7548. position: relative;
  7549. }
  7550. /* line 75, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7551. .x-picker-slot .x-scroll-view:first-child {
  7552. -webkit-box-shadow: none;
  7553. box-shadow: none;
  7554. }
  7555. /* line 80, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7556. .x-picker-mask {
  7557. position: absolute;
  7558. top: 0;
  7559. left: 0;
  7560. right: 0;
  7561. bottom: 0;
  7562. z-index: 3;
  7563. display: -webkit-box;
  7564. display: box;
  7565. -webkit-box-align: stretch;
  7566. box-align: stretch;
  7567. -webkit-box-orient: vertical;
  7568. box-orient: vertical;
  7569. -webkit-box-pack: center;
  7570. box-pack: center;
  7571. pointer-events: none;
  7572. }
  7573. /* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7574. .x-picker-bar {
  7575. border-top: 0.12em solid #0066ff;
  7576. border-bottom: 0.12em solid #0066ff;
  7577. height: 2.5em;
  7578. background-image: none;
  7579. background-color: rgba(13, 105, 242, 0.3);
  7580. }
  7581. /* line 105, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7582. .x-use-titles .x-picker-bar {
  7583. margin-top: 1.5em;
  7584. }
  7585. /* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7586. .x-picker-slot-title {
  7587. height: 1.5em;
  7588. position: relative;
  7589. z-index: 2;
  7590. background-image: none;
  7591. background-color: #3d4c5b;
  7592. border-top: 1px solid #3d4c5b;
  7593. border-bottom: 1px solid #14191e;
  7594. -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0.1em 0.3em;
  7595. box-shadow: rgba(0, 0, 0, 0.3) 0px 0.1em 0.3em;
  7596. padding: 0.2em 1.02em;
  7597. }
  7598. /* line 120, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7599. .x-picker-slot-title > div {
  7600. font-weight: bold;
  7601. font-size: 0.8em;
  7602. color: black;
  7603. }
  7604. /* line 131, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7605. .x-picker-slot .x-dataview-inner {
  7606. width: 100% !important;
  7607. }
  7608. /* line 135, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7609. .x-picker-slot .x-dataview-item {
  7610. vertical-align: middle;
  7611. height: 2.5em;
  7612. line-height: 2.5em;
  7613. font-weight: bold;
  7614. padding: 0 10px;
  7615. }
  7616. /* line 143, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7617. .x-picker-slot .x-picker-item {
  7618. white-space: nowrap;
  7619. overflow: hidden;
  7620. text-overflow: ellipsis;
  7621. }
  7622. /* line 148, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7623. .x-picker-right {
  7624. text-align: right;
  7625. }
  7626. /* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7627. .x-picker-center {
  7628. text-align: center;
  7629. }
  7630. /* line 154, ../themes/stylesheets/sencha-touch/default/widgets/_picker.scss */
  7631. .x-picker-left {
  7632. text-align: left;
  7633. }
  7634. /* line 133, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7635. .x-tabbar.x-docked-top {
  7636. border-bottom-width: .1em;
  7637. border-bottom-style: solid;
  7638. height: 2.6em;
  7639. padding: 0 .8em;
  7640. }
  7641. /* line 139, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7642. .x-tabbar.x-docked-top .x-tab {
  7643. position: relative;
  7644. padding: 0.4em 0.8em;
  7645. height: 1.8em;
  7646. min-width: 3.3em;
  7647. }
  7648. /* line 146, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7649. .x-tabbar.x-docked-top .x-tab .x-button-label, .x-tabbar.x-docked-top .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-top .x-tab .x-badge {
  7650. font-size: .8em;
  7651. line-height: 1.2em;
  7652. text-rendering: optimizeLegibility;
  7653. -webkit-font-smoothing: antialiased;
  7654. }
  7655. /* line 153, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7656. .x-tabbar.x-docked-top .x-tab .x-badge {
  7657. font-size: .6em !important;
  7658. top: -0.5em;
  7659. }
  7660. /* line 158, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7661. .x-tabbar.x-docked-top .x-tab.x-tab-icon {
  7662. padding: 0.3em 0.8em;
  7663. }
  7664. /* line 161, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7665. .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-button-icon {
  7666. -webkit-mask-size: 1.2em;
  7667. width: 1.2em;
  7668. height: 1.2em;
  7669. display: inline-block;
  7670. margin: 0 auto;
  7671. position: relative;
  7672. }
  7673. /* line 170, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7674. .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-button-label, .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-top .x-tab.x-tab-icon .x-badge {
  7675. margin: 0;
  7676. margin-left: .3em;
  7677. padding: .1em 0 .2em 0;
  7678. display: inline-block;
  7679. position: relative;
  7680. top: -0.4em;
  7681. }
  7682. /* line 185, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7683. .x-tabbar.x-docked-bottom {
  7684. border-top-width: .1em;
  7685. border-top-style: solid;
  7686. height: 3em;
  7687. padding: 0;
  7688. }
  7689. /* line 191, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7690. .x-tabbar.x-docked-bottom .x-tab {
  7691. min-width: 3.3em;
  7692. position: relative;
  7693. padding-top: .2em;
  7694. -webkit-box-orient: vertical;
  7695. box-orient: vertical;
  7696. }
  7697. /* line 198, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7698. .x-tabbar.x-docked-bottom .x-tab .x-button-icon {
  7699. -webkit-mask-size: 1.65em;
  7700. width: 1.65em;
  7701. height: 1.65em;
  7702. display: block;
  7703. margin: 0 auto;
  7704. position: relative;
  7705. }
  7706. /* line 207, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7707. .x-tabbar.x-docked-bottom .x-tab .x-button-label, .x-tabbar.x-docked-bottom .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tabbar.x-docked-bottom .x-tab .x-badge {
  7708. margin: 0;
  7709. padding: .1em 0 .2em 0;
  7710. font-size: 9px;
  7711. line-height: 12px;
  7712. text-rendering: optimizeLegibility;
  7713. -webkit-font-smoothing: antialiased;
  7714. }
  7715. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7716. .x-tab .x-button-icon.bookmarks,
  7717. .x-button .x-button-icon.x-icon-mask.bookmarks {
  7718. -webkit-mask-image: url('data:image/png;base64,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');
  7719. }
  7720. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7721. .x-tab .x-button-icon.download,
  7722. .x-button .x-button-icon.x-icon-mask.download {
  7723. -webkit-mask-image: url('data:image/png;base64,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');
  7724. }
  7725. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7726. .x-tab .x-button-icon.favorites,
  7727. .x-button .x-button-icon.x-icon-mask.favorites {
  7728. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
  7729. }
  7730. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7731. .x-tab .x-button-icon.info,
  7732. .x-button .x-button-icon.x-icon-mask.info {
  7733. -webkit-mask-image: url('data:image/png;base64,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');
  7734. }
  7735. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7736. .x-tab .x-button-icon.more,
  7737. .x-button .x-button-icon.x-icon-mask.more {
  7738. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADJ0lEQVRoBe2YS2sUQRSFp5MgvmLU+CAMiBJFDBHcCeoPEFciuHMjroMK4lZBcONG0JW60U1UEgRx59IXuNMoKEElKL7GRwyIqNHxO0N66FT3UNU9IHRNFXz0VNW5t+vW6RcT1ev1Sie1rk4qVrWGgn13PDgcHPZsB8Il7ZmhqXKCw6kt8WwgOOyZoalygsOpLfFsIDjsmaGpcoLDqS3xbCA47JmhqXKCw6kt8Wyg6XAURV2wEy7BM5iFtzAKu2BB0dqJ7YEtcBYmQblfwzjshUVt5O4mfhjOwwQodw3GYA8snpd77n9pFXMYvoP+qDaZZewcVKXPAzE64Qn4CmZe9f/AFSiSu4e4IzANrXJfZ24gXjO/KxEcg9+QFZQcU/CSONh2RKsraMQhr85xE/psOeN5tCr2APyA5Bqzfl9D06tYtX3wC7KE5pg2ZX98UtsR7XZo5ayZW/1DENnyzi18CO1nyMqTNXYcrTapcitHkBLJiZW2RaGRuxcg6+Stxu6i73fI3Y3uZM7cU+hXQeVvzsBP6Dc5LupxztzaiEGH3AvR3S+Qe4dc0D2cp/Uj1oPI1pR7g030n+erWlTe9pMA3cu2Jre+2ERtzBdZe01BL3Ke9Al6vQZsTbfKQ5vImH9PXxtqa3qVPbWJjHk94J6r4DPGhK17A8EHm4j7UAWP2nTG/GX6NWMs1SW3rrCroLeLaxtDqDdG4368zbHVkzM5Polus+2hEs+j7YNxx9zv0FkfhoncvegvOuZ+iW6rYhtfTXTWgV7OyeLM3w+Y3xaf0PVIzAqwFf0IzW7XnLGOmLUg58y1JvsTzA83Y5o/eLcyMQISJAN0z56G9bE275HYNXAU7kAy9xv6p2Bj3pyxntjVcBDuQTL3FH19Dg/FWh0bXzUMNhsf23JkOQzCK9B1P4NY39OFG3kjgpeB8g/AR/gG0+3mJkeF9Lp9lkIVZkDfC1r3vPs8VTAir1uRd1mpNyQUXGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLOs7hf5j4Vg3iLoGkAAAAAElFTkSuQmCC');
  7739. }
  7740. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7741. .x-tab .x-button-icon.time,
  7742. .x-button .x-button-icon.x-icon-mask.time {
  7743. -webkit-mask-image: url('data:image/png;base64,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');
  7744. }
  7745. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7746. .x-tab .x-button-icon.user,
  7747. .x-button .x-button-icon.x-icon-mask.user {
  7748. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEWElEQVRoBe2aS0gVYRiGO1lmF8nQQlETutGFokAiqEV0ISKwgmrdMtzUpnW7drWKbFGbQAKpJIhuUGIUFUkW0T1Jq4V2U4ui7GLPexpDD+ecuX1jHqcPHseZ+f9vvnf++e8n0d/fPyZONjZOYqU1doLHRV3CiURCz5gMxTANJsJg+8XJJ+iBt9BHNdO1SCwRZR1GbAFRl8F8WAFLoRwGLME/ffAM7kETvIYPxPWDo7lFIhiheURaCVtgBywHXXOzbhJcggZoRvR7twy+76uELSEAtQsqySPwGdQN+KWDPHuh2DI2+TIVm3T455M9G0Bk6ktRvd4NBZaiTQUT3AQnSNW/VAFBzl/iZw0kq56FcOtuaQHB7QIv9ZVkrqZ2YA9Mck3pMYGZYKeh2sBz1SJb2mqcmfk0E0xQ6l9rwNoKcWjm11JwEYFVW6t1/K218mspeB5B5VsFluKnIuU88Kml4PGBo3DPqBGZiVkKNgvKRFkGJ5aCv2Z4xoi6bCm4DWUaXERhZhMJS8FfolDq+DSbRFgKjrIOa8poYpaCTQKK2sl/wSHfcFSNlll1sSzhn7ys3pAvLFP275lu+L1uKVhBPfYbgMf0zz2mc01mKfgbT7vi+kT/CeT3sv9s6XNYCtbg4CJ0pX9U4Kv3yXk3cO6UjGaCWX5Rg/UArqY8I8yp1qdPQ08YJ4Pzmgl2nCqwc2DVyKjunuddqkE0MVPBBKYSuQ7tJtEhFj9apDczU8FOVB0ctZiuHYUw9obMjbxErW2bmblgApTQengVIkq1B83QEsJH2qzmgp2n3ObYCEGndZ3krbcuXcUWiWACldCjoA0yv6a8J6HJb0Yv6SMRrAcj+gmHA+B3aneDPHXk/8jR3LR3a2rOfnAlTmfDVPDb6Khrq8bPDI5PoRPxZpMSk+1SgtOKpTa8l8BC0JaLmAkloA1xr/aOhJqEtINGWeqW7jjHXrQHbRdw4WxSJf8L8Aeh2m1QaWoBfiUsA61PTwGtUYeZ1qlP1zhan3YraBSnz/0mdAUVHqiEESoxKs0a2AxloJIMI5DsWU0vQH2z2oZToAnFI7+fu2/BiF3PgzbCKqgC1bXhNH3S6rba4BocR7TquifzLBih5XjcCSrROaAGKbJWHt9uJuGq67fgAki4zrNaVsGIzCP3dNgE20B1VJ+uro8UUz3Xr39UvxugCeEZl3UzCkZsBZn1+W6HRaB6qtZ4pJp2PtTna+58DFoR3sVxqHFxyM8euFsIW6EeXoDeoPrBXEEbAlpqqoN1kD9YY6rYxSQ4DGoE9KOSXBGZLk4NYB7CfigZEP1XMBfVEJ0BJUznIFevaSBzEEolOimYkyo4AfocclVYtrjViB0C9SzJEdE+jrn+CWcTrHvdUKuRUSm0gPrZ0W7tGjjMhTiIVWFWSbAGEnGxhAT/y+HhsL9oiVWFjo3FqnRVqrETrG5pFmiSEAuTYC3TFMVCLSIzTg9H6wuIXR2OneDfMJq1NmzzbS8AAAAASUVORK5CYII=');
  7749. }
  7750. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  7751. .x-tab .x-button-icon.team,
  7752. .x-button .x-button-icon.x-icon-mask.team {
  7753. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2ZSYgdVRSG+yUmnagRQYU4NbZKNLYKWTgg4gQOaDYqJIIGl4LixhBwoy50LSIiulEjCkpAUBBRURpdGceFMQ7YtgkOJE4xTjGa9vuedUl1Vd2qevSrFqvrwJ97695zzj3/PXd6nd7MzMzIQpJFC4msXDvCbc94l+Euwy2bgW5JtyyhOTpdhnNT0rKGLsMtS2iOTpfh3JS0rOGQ+eLT6/VWMNYJ4NjUmN9T/xLs4WfqvPxO7TU9DkTdNmvBbeAskJ7kv/n+AjwKXiSW7yibFQk3BSIPZHdTl5xZzML238DDYFlTsQS/jZF1AGQ1mAZZkkXfe9FbGwJrqmz6lL4cEmOgjhyO0jq2gGVj0hhhAl9M1FeB3gDRn4Pu/5NwQnJ0ALKqrgKHDmgzkHpjGR4oioPKP1H96+Dn8GvpKyLqneV5Lp0XgnHggTMFJjlYPqAcpnyLsz/LHBLL0fRfCzwbvNN3gLeI5WXKaik7DbF2/20A28HPYF+CPZQfg9tj9vS5h18DRSdyrO0j9FeW+PQenwTe138AJ+d34OPFa215zDa0l15LOLgamM0DIBukbQ60JjhLl7RL+HWQtSv7jhLGz1FgM3DJZ30Yy69gYzqGonrVHr4eJ+OgB7Ji2xi4lGUW8+PsD0vOwNGNwInMirF42K0nlmXZzvR3LNARDN3fx6WVI3VJF50Fzvr7EZtY8zQdLtUiOYXGIrJpXUmvTDdk61HCKEqiagD9SSwnLCeX3RYwSJafRd/zoUj2FzVm2hyzMJ6gV0Y46Myl/BzjeqfnyMg36G5NJqpoTPvnLGWEnS0f9lVStL/7NgT/C5XNoHTW6XesV4En/1wlGo+Oo4QJ1ivoxxqju+fKCG2lf1uFH7P3eEl2K8xndRt3VKKEE4sPKWOHiCreg28TaPR1RN/X6GwEO0GReJ3cg95kUWeqzT8W6KtMpujcVaZQRfgFjL8qcbCDvndi/Zz0h4Hr6L8JHBHRW0L7DejdAU6K6Nj8CfBQi4mH4xYmrmy1sXlK/gCAAyfkQaAT91kWj9HW/6tJ8MO3NmeC+4CHlqdu1q7o25Xk5Hqynw+WBp+hpO1K4JItsnfr5GyCbSirCHstnQpcKulBXMK+o1frCPGgWAomwL2gLsm0z3S9ny38XARWgEXJOI7xNMiS9ns9MN5ZCQhEQ1lIGCOXmZf4ZeAW8C4IAblv3wBXAIn6sjkZ3Arc80FvGKW/nu4H/nhZDiR0IngI+LYPY3i43gWuAeNgFBQSn0UYJZejRH3CPQ8cMDi19Jp6AviuVfd48ADwRZXWG3Z9J/6fApeAJUm2TYRE02OZjPfA3WAM9HVDdvt2iXHI1HkoPQd2g7SjUHef+NyU7AXgFRD65qOcZrybQXgFmtUDIDu2xE3CBuCWWBxIU+8vk9MozdQukDUO3x4qm5IJOp36ZyW6waaJci/jrkviWEV9qiQOdd8Ebr/+T0fKkYvBp6AqOB2fnQz0SA39Kn9z6Z9mfPeze/UlUOXrB3Q2AW36a77KwP7tYCwh7Mupjk1TOmZuNInlyZqxuN8n3ItrQF1xryvRl9W/3Y3/60QGCTGF71h5JB0Tbn7vsDqyP6Vkva5dymxoVQ+lIE6+3+lJCH3Zcp+E78y2Fny7Evw7kstC8YA7BtQZRP1hiwTDKnuGun8aSiekaDxXwrbG/zOtaOT/ss3MLSjpCLc93V2Guwy3bAa6Jd2yhObodBnOTUnLGroMtyyhOTpdhnNT0rKGfwD3f6JVZi/xSQAAAABJRU5ErkJggg==');
  7754. }
  7755. /* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7756. .x-tabbar-light {
  7757. background-image: none;
  7758. background-color: #3f3f3f;
  7759. border-top-color: #323232;
  7760. border-bottom-color: #191919;
  7761. }
  7762. /* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7763. .x-tabbar-light .x-tab {
  7764. color: #a5a5a5;
  7765. border-bottom: 1px solid transparent;
  7766. }
  7767. /* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7768. .x-tabbar-light .x-tab-active {
  7769. color: white;
  7770. border-bottom-color: #474747;
  7771. }
  7772. /* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7773. .x-tabbar-light .x-tab-pressed {
  7774. color: white;
  7775. }
  7776. /* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7777. .x-tabbar-light.x-docked-bottom .x-tab .x-button-icon {
  7778. background-image: none;
  7779. background-color: #727272;
  7780. }
  7781. /* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7782. .x-tabbar-light.x-docked-bottom .x-tab-active {
  7783. background-image: none;
  7784. background-color: #323232;
  7785. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191919), color-stop(10%, #262626), color-stop(65%, #323232), color-stop(100%, #343434));
  7786. background-image: -webkit-linear-gradient(top, #191919, #262626 10%, #323232 65%, #343434);
  7787. background-image: linear-gradient(top, #191919, #262626 10%, #323232 65%, #343434);
  7788. }
  7789. /* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7790. .x-tabbar-light.x-docked-bottom .x-tab-active .x-button-icon {
  7791. background-image: none;
  7792. background-color: #66a3ff;
  7793. }
  7794. /* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7795. .x-tabbar-light.x-docked-top .x-tab-active {
  7796. background-image: none;
  7797. background-color: #323232;
  7798. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #191919), color-stop(10%, #262626), color-stop(65%, #323232), color-stop(100%, #343434));
  7799. background-image: -webkit-linear-gradient(top, #191919, #262626 10%, #323232 65%, #343434);
  7800. background-image: linear-gradient(top, #191919, #262626 10%, #323232 65%, #343434);
  7801. color: white;
  7802. }
  7803. /* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7804. .x-tabbar-light.x-docked-top .x-tab .x-button-icon {
  7805. background-image: none;
  7806. background-color: #727272;
  7807. }
  7808. /* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7809. .x-tabbar-dark {
  7810. background-image: none;
  7811. background-color: #0b0c0d;
  7812. border-top-color: black;
  7813. border-bottom-color: black;
  7814. }
  7815. /* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7816. .x-tabbar-dark .x-tab {
  7817. color: #67727d;
  7818. border-bottom: 1px solid transparent;
  7819. }
  7820. /* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7821. .x-tabbar-dark .x-tab-active {
  7822. color: #f0f2f3;
  7823. border-bottom-color: #121416;
  7824. }
  7825. /* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7826. .x-tabbar-dark .x-tab-pressed {
  7827. color: white;
  7828. }
  7829. /* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7830. .x-tabbar-dark.x-docked-bottom .x-tab .x-button-icon {
  7831. background-image: none;
  7832. background-color: #393f45;
  7833. }
  7834. /* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7835. .x-tabbar-dark.x-docked-bottom .x-tab-active {
  7836. background-image: none;
  7837. background-color: black;
  7838. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #010101));
  7839. background-image: -webkit-linear-gradient(top, #000000, #000000 10%, #000000 65%, #010101);
  7840. background-image: linear-gradient(top, #000000, #000000 10%, #000000 65%, #010101);
  7841. }
  7842. /* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7843. .x-tabbar-dark.x-docked-bottom .x-tab-active .x-button-icon {
  7844. background-image: none;
  7845. background-color: #99c2ff;
  7846. }
  7847. /* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7848. .x-tabbar-dark.x-docked-top .x-tab-active {
  7849. background-image: none;
  7850. background-color: black;
  7851. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #010101));
  7852. background-image: -webkit-linear-gradient(top, #000000, #000000 10%, #000000 65%, #010101);
  7853. background-image: linear-gradient(top, #000000, #000000 10%, #000000 65%, #010101);
  7854. color: #d5d9dc;
  7855. }
  7856. /* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7857. .x-tabbar-dark.x-docked-top .x-tab .x-button-icon {
  7858. background-image: none;
  7859. background-color: #393f45;
  7860. }
  7861. /* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7862. .x-tabbar-neutral {
  7863. background-image: none;
  7864. background-color: #e0e0e0;
  7865. border-top-color: #d3d3d3;
  7866. border-bottom-color: #bababa;
  7867. }
  7868. /* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7869. .x-tabbar-neutral .x-tab {
  7870. color: #7a7a7a;
  7871. border-bottom: 1px solid transparent;
  7872. }
  7873. /* line 265, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7874. .x-tabbar-neutral .x-tab-active {
  7875. color: black;
  7876. border-bottom-color: #e8e8e8;
  7877. }
  7878. /* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7879. .x-tabbar-neutral .x-tab-pressed {
  7880. color: black;
  7881. }
  7882. /* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7883. .x-tabbar-neutral.x-docked-bottom .x-tab .x-button-icon {
  7884. background-image: none;
  7885. background-color: #adadad;
  7886. }
  7887. /* line 284, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7888. .x-tabbar-neutral.x-docked-bottom .x-tab-active {
  7889. background-image: none;
  7890. background-color: #d3d3d3;
  7891. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bababa), color-stop(10%, #c7c7c7), color-stop(65%, #d3d3d3), color-stop(100%, #d5d5d5));
  7892. background-image: -webkit-linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
  7893. background-image: linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
  7894. }
  7895. /* line 292, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7896. .x-tabbar-neutral.x-docked-bottom .x-tab-active .x-button-icon {
  7897. background-image: none;
  7898. background-color: #7a7a7a;
  7899. }
  7900. /* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7901. .x-tabbar-neutral.x-docked-top .x-tab-active {
  7902. background-image: none;
  7903. background-color: #d3d3d3;
  7904. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bababa), color-stop(10%, #c7c7c7), color-stop(65%, #d3d3d3), color-stop(100%, #d5d5d5));
  7905. background-image: -webkit-linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
  7906. background-image: linear-gradient(top, #bababa, #c7c7c7 10%, #d3d3d3 65%, #d5d5d5);
  7907. color: black;
  7908. }
  7909. /* line 306, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7910. .x-tabbar-neutral.x-docked-top .x-tab .x-button-icon {
  7911. background-image: none;
  7912. background-color: #adadad;
  7913. }
  7914. /* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7915. .x-tab.x-item-disabled span.x-button-label, .x-tab.x-item-disabled .x-hasbadge span.x-badge, .x-hasbadge .x-tab.x-item-disabled span.x-badge, .x-tab.x-item-disabled .x-button-icon {
  7916. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7917. opacity: 0.5;
  7918. }
  7919. /* line 116, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7920. .x-tab.x-draggable {
  7921. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  7922. opacity: 0.7;
  7923. }
  7924. /* line 120, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7925. .x-tab {
  7926. z-index: 1;
  7927. -webkit-user-select: none;
  7928. overflow: visible !important;
  7929. }
  7930. /* line 125, ../themes/stylesheets/sencha-touch/default/widgets/_tabs.scss */
  7931. .x-tab .x-button-label, .x-tab .x-hasbadge .x-badge, .x-hasbadge .x-tab .x-badge {
  7932. overflow: visible !important;
  7933. }
  7934. /* line 36, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7935. .x-toolbar {
  7936. padding: 0 0.2em;
  7937. position: relative;
  7938. }
  7939. /* line 46, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7940. .x-toolbar.x-docked-top {
  7941. border-bottom: .1em solid;
  7942. }
  7943. /* line 50, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7944. .x-toolbar.x-docked-bottom {
  7945. border-top: .1em solid;
  7946. }
  7947. /* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7948. .x-toolbar.x-docked-left {
  7949. width: 7em;
  7950. height: auto;
  7951. padding: 0.2em;
  7952. border-right: .1em solid;
  7953. }
  7954. /* line 61, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7955. .x-toolbar.x-docked-right {
  7956. width: 7em;
  7957. height: auto;
  7958. padding: 0.2em;
  7959. border-left: .1em solid;
  7960. }
  7961. /* line 69, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7962. .x-title {
  7963. line-height: 2.1em;
  7964. font-size: 1.2em;
  7965. text-align: center;
  7966. font-weight: bold;
  7967. white-space: nowrap;
  7968. overflow: hidden;
  7969. text-overflow: ellipsis;
  7970. margin: 0 0.3em;
  7971. padding: 0 .3em;
  7972. max-width: 100%;
  7973. }
  7974. /* line 81, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7975. .x-title .x-innerhtml {
  7976. white-space: nowrap;
  7977. overflow: hidden;
  7978. text-overflow: ellipsis;
  7979. }
  7980. /* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7981. .x-toolbar-dark {
  7982. background-image: none;
  7983. background-color: #222629;
  7984. border-color: black;
  7985. }
  7986. /* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7987. .x-toolbar-dark .x-title {
  7988. color: #fefefe;
  7989. }
  7990. /* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7991. .x-toolbar-dark.x-docked-top {
  7992. border-bottom-color: black;
  7993. }
  7994. /* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7995. .x-toolbar-dark.x-docked-bottom {
  7996. border-top-color: black;
  7997. }
  7998. /* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  7999. .x-toolbar-dark.x-docked-left {
  8000. border-right-color: black;
  8001. }
  8002. /* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8003. .x-toolbar-dark.x-docked-right {
  8004. border-left-color: black;
  8005. }
  8006. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8007. .x-toolbar-dark .x-button, .x-toolbar .x-toolbar-dark .x-button, .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before {
  8008. border: 1px solid black;
  8009. border-top-color: black;
  8010. color: #f0f2f3;
  8011. }
  8012. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8013. .x-toolbar-dark .x-button.x-button-back:before, .x-toolbar-dark .x-button.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-button.x-button-back:before, .x-toolbar .x-toolbar-dark .x-button.x-button-forward:before, .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:before {
  8014. background: black;
  8015. }
  8016. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8017. .x-toolbar-dark .x-button, .x-toolbar-dark .x-button.x-button-back:after, .x-toolbar-dark .x-button.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-button, .x-toolbar .x-toolbar-dark .x-button.x-button-back:after, .x-toolbar .x-toolbar-dark .x-button.x-button-forward:after, .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-forward:after {
  8018. background-image: none;
  8019. background-color: #16191b;
  8020. }
  8021. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8022. .x-toolbar-dark .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-button .x-button-icon.x-icon-mask, .x-toolbar-dark .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-dark .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
  8023. background-image: none;
  8024. background-color: white;
  8025. }
  8026. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8027. .x-toolbar-dark .x-button.x-button-pressing, .x-toolbar-dark .x-button.x-button-pressing:after, .x-toolbar-dark .x-button.x-button-pressed, .x-toolbar-dark .x-button.x-button-pressed:after, .x-toolbar-dark .x-button.x-button-active, .x-toolbar-dark .x-button.x-button-active:after, .x-toolbar .x-toolbar-dark .x-button.x-button-pressing, .x-toolbar .x-toolbar-dark .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-button.x-button-pressed, .x-toolbar .x-toolbar-dark .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-button.x-button-active, .x-toolbar .x-toolbar-dark .x-button.x-button-active:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-dark .x-field-select .x-component-outer.x-button-active, .x-toolbar-dark .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-dark .x-field-select .x-component-outer:before.x-button-active:after {
  8028. background-image: none;
  8029. background-color: #0f1113;
  8030. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #040405), color-stop(65%, #0f1113), color-stop(100%, #111214));
  8031. background-image: -webkit-linear-gradient(top, #000000, #040405 10%, #0f1113 65%, #111214);
  8032. background-image: linear-gradient(top, #000000, #040405 10%, #0f1113 65%, #111214);
  8033. }
  8034. /* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8035. .x-toolbar-dark .x-label, .x-toolbar-dark .x-form-label {
  8036. font-weight: bold;
  8037. color: #fefefe;
  8038. }
  8039. /* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8040. .x-toolbar-light {
  8041. background-image: none;
  8042. background-color: #393f45;
  8043. border-color: black;
  8044. }
  8045. /* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8046. .x-toolbar-light .x-title {
  8047. color: white;
  8048. }
  8049. /* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8050. .x-toolbar-light.x-docked-top {
  8051. border-bottom-color: black;
  8052. }
  8053. /* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8054. .x-toolbar-light.x-docked-bottom {
  8055. border-top-color: black;
  8056. }
  8057. /* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8058. .x-toolbar-light.x-docked-left {
  8059. border-right-color: black;
  8060. }
  8061. /* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8062. .x-toolbar-light.x-docked-right {
  8063. border-left-color: black;
  8064. }
  8065. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8066. .x-toolbar-light .x-button, .x-toolbar .x-toolbar-light .x-button, .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before {
  8067. border: 1px solid black;
  8068. border-top-color: #0b0c0d;
  8069. color: white;
  8070. }
  8071. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8072. .x-toolbar-light .x-button.x-button-back:before, .x-toolbar-light .x-button.x-button-forward:before, .x-toolbar .x-toolbar-light .x-button.x-button-back:before, .x-toolbar .x-toolbar-light .x-button.x-button-forward:before, .x-toolbar-light .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:before {
  8073. background: black;
  8074. }
  8075. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8076. .x-toolbar-light .x-button, .x-toolbar-light .x-button.x-button-back:after, .x-toolbar-light .x-button.x-button-forward:after, .x-toolbar .x-toolbar-light .x-button, .x-toolbar .x-toolbar-light .x-button.x-button-back:after, .x-toolbar .x-toolbar-light .x-button.x-button-forward:after, .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar-light .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-forward:after {
  8077. background-image: none;
  8078. background-color: #2d3237;
  8079. }
  8080. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8081. .x-toolbar-light .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-button .x-button-icon.x-icon-mask, .x-toolbar-light .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-light .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
  8082. background-image: none;
  8083. background-color: white;
  8084. }
  8085. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8086. .x-toolbar-light .x-button.x-button-pressing, .x-toolbar-light .x-button.x-button-pressing:after, .x-toolbar-light .x-button.x-button-pressed, .x-toolbar-light .x-button.x-button-pressed:after, .x-toolbar-light .x-button.x-button-active, .x-toolbar-light .x-button.x-button-active:after, .x-toolbar .x-toolbar-light .x-button.x-button-pressing, .x-toolbar .x-toolbar-light .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-button.x-button-pressed, .x-toolbar .x-toolbar-light .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-button.x-button-active, .x-toolbar .x-toolbar-light .x-button.x-button-active:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-light .x-field-select .x-component-outer.x-button-active, .x-toolbar-light .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-light .x-field-select .x-component-outer:before.x-button-active:after {
  8087. background-image: none;
  8088. background-color: #272b2f;
  8089. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0f1113), color-stop(10%, #1b1e21), color-stop(65%, #272b2f), color-stop(100%, #282c30));
  8090. background-image: -webkit-linear-gradient(top, #0f1113, #1b1e21 10%, #272b2f 65%, #282c30);
  8091. background-image: linear-gradient(top, #0f1113, #1b1e21 10%, #272b2f 65%, #282c30);
  8092. }
  8093. /* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8094. .x-toolbar-light .x-label, .x-toolbar-light .x-form-label {
  8095. font-weight: bold;
  8096. color: white;
  8097. }
  8098. /* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8099. .x-toolbar-neutral {
  8100. background-image: none;
  8101. background-color: #e0e0e0;
  8102. border-color: #616161;
  8103. }
  8104. /* line 132, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8105. .x-toolbar-neutral .x-title {
  8106. color: #070707;
  8107. }
  8108. /* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8109. .x-toolbar-neutral.x-docked-top {
  8110. border-bottom-color: #616161;
  8111. }
  8112. /* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8113. .x-toolbar-neutral.x-docked-bottom {
  8114. border-top-color: #616161;
  8115. }
  8116. /* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8117. .x-toolbar-neutral.x-docked-left {
  8118. border-right-color: #616161;
  8119. }
  8120. /* line 149, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8121. .x-toolbar-neutral.x-docked-right {
  8122. border-left-color: #616161;
  8123. }
  8124. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8125. .x-toolbar-neutral .x-button, .x-toolbar .x-toolbar-neutral .x-button, .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before {
  8126. border: 1px solid #a0a0a0;
  8127. border-top-color: #adadad;
  8128. color: black;
  8129. }
  8130. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8131. .x-toolbar-neutral .x-button.x-button-back:before, .x-toolbar-neutral .x-button.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-button.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-button.x-button-forward:before, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:before, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:before {
  8132. background: #a0a0a0;
  8133. }
  8134. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8135. .x-toolbar-neutral .x-button, .x-toolbar-neutral .x-button.x-button-back:after, .x-toolbar-neutral .x-button.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-button, .x-toolbar .x-toolbar-neutral .x-button.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-forward:after, .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-forward:after {
  8136. background-image: none;
  8137. background-color: #d3d3d3;
  8138. }
  8139. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8140. .x-toolbar-neutral .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-button .x-button-icon.x-icon-mask, .x-toolbar-neutral .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar-neutral .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask {
  8141. background-image: none;
  8142. background-color: black;
  8143. }
  8144. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  8145. .x-toolbar-neutral .x-button.x-button-pressing, .x-toolbar-neutral .x-button.x-button-pressing:after, .x-toolbar-neutral .x-button.x-button-pressed, .x-toolbar-neutral .x-button.x-button-pressed:after, .x-toolbar-neutral .x-button.x-button-active, .x-toolbar-neutral .x-button.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-button.x-button-active, .x-toolbar .x-toolbar-neutral .x-button.x-button-active:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active, .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer.x-button-active:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active, .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active, .x-toolbar .x-toolbar-neutral .x-field-select .x-component-outer:before.x-button-active:after {
  8146. background-image: none;
  8147. background-color: #cccccc;
  8148. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bfbfbf), color-stop(65%, #cccccc), color-stop(100%, #cdcdcd));
  8149. background-image: -webkit-linear-gradient(top, #b2b2b2, #bfbfbf 10%, #cccccc 65%, #cdcdcd);
  8150. background-image: linear-gradient(top, #b2b2b2, #bfbfbf 10%, #cccccc 65%, #cdcdcd);
  8151. }
  8152. /* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8153. .x-toolbar-neutral .x-label, .x-toolbar-neutral .x-form-label {
  8154. font-weight: bold;
  8155. color: #070707;
  8156. }
  8157. /* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8158. .x-toolbar.x-toolbar-neutral .x-toolbar-inner .x-button.x-button-pressing {
  8159. background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(115, 127, 139, 0.7)), color-stop(100%, rgba(115, 127, 139, 0)));
  8160. background-image: -webkit-radial-gradient(rgba(115, 127, 139, 0.7), rgba(115, 127, 139, 0) 24px);
  8161. background-image: radial-gradient(rgba(115, 127, 139, 0.7), rgba(115, 127, 139, 0) 24px);
  8162. }
  8163. /* line 96, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8164. .x-toolbar.x-toolbar-neutral .x-toolbar-inner .x-button.x-button-pressing .x-button-icon.x-button-mask {
  8165. background-image: none;
  8166. background-color: white;
  8167. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff));
  8168. background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
  8169. background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff);
  8170. }
  8171. /* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */
  8172. .x-navigation-bar .x-container {
  8173. overflow: visible;
  8174. }
  8175. /* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8176. .x-spinner .x-input-el,
  8177. .x-field-select .x-input-el {
  8178. -webkit-text-fill-color: #000;
  8179. -webkit-opacity: 1;
  8180. }
  8181. /* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8182. .x-spinner.x-item-disabled .x-input-el,
  8183. .x-field-select.x-item-disabled .x-input-el {
  8184. -webkit-text-fill-color: currentcolor;
  8185. }
  8186. /* line 54, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8187. .x-toolbar .x-field-select .x-input-el {
  8188. -webkit-text-fill-color: #fff;
  8189. }
  8190. /* line 58, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8191. .x-toolbar .x-field-select.x-item-disabled .x-input-el {
  8192. -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
  8193. }
  8194. /* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8195. .x-toolbar .x-field {
  8196. width: 13em;
  8197. margin: .5em;
  8198. min-height: 0;
  8199. border-bottom: 0;
  8200. background: transparent;
  8201. }
  8202. /* line 74, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8203. .x-toolbar .x-field .x-clear-icon {
  8204. background-size: 50% 50%;
  8205. right: -0.8em;
  8206. margin-top: -1.06em;
  8207. }
  8208. /* line 81, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8209. .x-toolbar .x-field-input {
  8210. padding-right: 1.6em !important;
  8211. }
  8212. /* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8213. .x-toolbar .x-field-textarea .x-component-outer, .x-toolbar .x-field-text .x-component-outer, .x-toolbar .x-field-number .x-component-outer, .x-toolbar .x-field-search .x-component-outer {
  8214. background-color: white;
  8215. }
  8216. /* line 99, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8217. .x-toolbar .x-form-label {
  8218. background: transparent;
  8219. border: 0;
  8220. padding: 0;
  8221. line-height: 1.4em;
  8222. }
  8223. /* line 106, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8224. .x-toolbar .x-form-field {
  8225. height: 1.6em;
  8226. color: #6e6e6e;
  8227. background: transparent;
  8228. min-height: 0;
  8229. -webkit-appearance: none;
  8230. padding: 0em .3em;
  8231. margin: 0;
  8232. }
  8233. /* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8234. .x-toolbar .x-form-field:focus {
  8235. color: black;
  8236. }
  8237. /* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8238. .x-toolbar .x-field-search .x-field-input {
  8239. background-position: .5em 50%;
  8240. }
  8241. /* line 133, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8242. .x-toolbar .x-field-select {
  8243. -webkit-box-shadow: none;
  8244. }
  8245. /* line 136, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8246. .x-toolbar .x-field-select .x-form-field {
  8247. height: 1.4em;
  8248. }
  8249. /* line 141, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8250. .x-toolbar .x-field-select {
  8251. background: transparent;
  8252. }
  8253. /* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8254. .x-toolbar .x-field-select .x-component-outer:after {
  8255. right: .4em;
  8256. }
  8257. /* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8258. .x-toolbar .x-field-select.x-item-disabled .x-component-outer:after {
  8259. opacity: .6;
  8260. }
  8261. /* line 157, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8262. .x-toolbar .x-field-select .x-component-outer:before {
  8263. width: 3em;
  8264. border-left: none;
  8265. width: 0.5em !important;
  8266. }
  8267. /* line 172, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8268. .x-toolbar .x-field-select .x-input-text {
  8269. color: #fff;
  8270. }
  8271. /* line 178, ../themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */
  8272. .x-android .x-field-search .x-field-input {
  8273. padding-left: .2em !important;
  8274. padding-right: 2.2em !important;
  8275. }
  8276. /* line 51, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8277. .x-carousel-inner {
  8278. position: relative;
  8279. overflow: hidden;
  8280. }
  8281. /* line 56, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8282. .x-carousel-item {
  8283. position: absolute !important;
  8284. width: 100%;
  8285. height: 100%;
  8286. }
  8287. /* line 61, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8288. .x-carousel-item > * {
  8289. position: absolute !important;
  8290. width: 100%;
  8291. height: 100%;
  8292. }
  8293. /* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8294. .x-carousel-indicator {
  8295. padding: 0;
  8296. -webkit-border-radius: 0;
  8297. border-radius: 0;
  8298. -webkit-box-shadow: none;
  8299. box-shadow: none;
  8300. background-color: transparent;
  8301. background-image: none;
  8302. }
  8303. /* line 78, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8304. .x-carousel-indicator {
  8305. -webkit-box-flex: 1;
  8306. display: -webkit-box;
  8307. display: box;
  8308. -webkit-box-pack: center;
  8309. box-pack: center;
  8310. -webkit-box-align: center;
  8311. box-align: center;
  8312. }
  8313. /* line 85, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8314. .x-carousel-indicator span {
  8315. display: block;
  8316. width: 0.5em;
  8317. height: 0.5em;
  8318. margin: 0.2em;
  8319. }
  8320. /* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8321. .x-carousel-indicator-horizontal {
  8322. height: 1.5em;
  8323. width: 100%;
  8324. }
  8325. /* line 99, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8326. .x-carousel-indicator-vertical {
  8327. -webkit-box-orient: vertical;
  8328. box-orient: vertical;
  8329. width: 1.5em;
  8330. height: 100%;
  8331. }
  8332. /* line 34, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8333. .x-carousel-indicator-light span {
  8334. background-image: none;
  8335. background-color: rgba(255, 255, 255, 0.1);
  8336. }
  8337. /* line 37, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8338. .x-carousel-indicator-light span.x-carousel-indicator-active {
  8339. background-image: none;
  8340. background-color: rgba(255, 255, 255, 0.3);
  8341. }
  8342. /* line 34, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8343. .x-carousel-indicator-dark span {
  8344. background-image: none;
  8345. background-color: rgba(0, 0, 0, 0.1);
  8346. }
  8347. /* line 37, ../themes/stylesheets/sencha-touch/default/widgets/_carousel.scss */
  8348. .x-carousel-indicator-dark span.x-carousel-indicator-active {
  8349. background-image: none;
  8350. background-color: rgba(0, 0, 0, 0.3);
  8351. }
  8352. /* line 29, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8353. .x-indexbar-wrapper {
  8354. -webkit-box-pack: end !important;
  8355. box-pack: end !important;
  8356. pointer-events: none;
  8357. }
  8358. /* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8359. .x-indexbar-vertical {
  8360. width: 1.1em;
  8361. -webkit-box-orient: vertical;
  8362. box-orient: vertical;
  8363. margin-right: 8px;
  8364. }
  8365. /* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8366. .x-indexbar-horizontal {
  8367. height: 1.1em;
  8368. -webkit-box-orient: horizontal;
  8369. box-orient: horizontal;
  8370. margin-bottom: 8px;
  8371. }
  8372. /* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8373. .x-indexbar {
  8374. pointer-events: auto;
  8375. z-index: 2;
  8376. padding: .3em 0;
  8377. min-height: 0 !important;
  8378. height: auto !important;
  8379. -webkit-box-flex: 0 !important;
  8380. }
  8381. /* line 55, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8382. .x-indexbar > div {
  8383. color: #18191a;
  8384. font-size: 0.6em;
  8385. text-align: center;
  8386. line-height: 1.1em;
  8387. font-weight: bold;
  8388. display: block;
  8389. }
  8390. /* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8391. .x-phone.x-landscape .x-indexbar > div {
  8392. font-size: 0.38em;
  8393. line-height: 1em;
  8394. }
  8395. /* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */
  8396. .x-indexbar-pressed {
  8397. -webkit-border-radius: 0.55em;
  8398. border-radius: 0.55em;
  8399. background-color: rgba(143, 153, 163, 0.8);
  8400. }
  8401. /* line 84, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8402. .x-list {
  8403. position: relative;
  8404. background-color: #111111;
  8405. overflow: hidden;
  8406. }
  8407. /* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8408. .x-list .x-list-inner {
  8409. width: 100% !important;
  8410. }
  8411. /* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8412. .x-list .x-list-disclosure {
  8413. overflow: visible;
  8414. -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0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') no-repeat;
  8415. -webkit-mask-size: 1.7em;
  8416. background-image: none;
  8417. background-color: #0066ff;
  8418. width: 1.7em;
  8419. height: 1.7em;
  8420. margin: 0.5em 0.5em 0 0;
  8421. }
  8422. /* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8423. .x-list.x-list-indexed .x-list-disclosure {
  8424. margin-right: 1.8em;
  8425. }
  8426. /* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8427. .x-list .x-item-selected .x-list-disclosure {
  8428. background: #fff none;
  8429. }
  8430. /* line 111, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8431. .x-list .x-list-scrolldock-hidden {
  8432. display: none;
  8433. }
  8434. /* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8435. .x-list .x-list-item {
  8436. position: absolute !important;
  8437. left: 0;
  8438. top: 0;
  8439. color: #eeeeee;
  8440. width: 100%;
  8441. }
  8442. /* line 123, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8443. .x-list .x-list-item.x-item-pressed .x-dock-horizontal {
  8444. background: #0099ff none;
  8445. }
  8446. /* line 128, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8447. .x-list .x-list-item.x-item-selected .x-dock-horizontal {
  8448. background-image: none;
  8449. background-color: #0066ff;
  8450. color: white;
  8451. }
  8452. /* line 134, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8453. .x-list .x-list-item > .x-dock {
  8454. height: auto;
  8455. }
  8456. /* line 140, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8457. .x-list-item-body {
  8458. min-height: 46px;
  8459. padding: 0.65em 0.8em;
  8460. }
  8461. /* line 145, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8462. .x-list-header-swap {
  8463. position: absolute;
  8464. left: 0;
  8465. width: 100%;
  8466. z-index: 2 !important;
  8467. }
  8468. /* line 152, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8469. .x-ios .x-list-header-swap {
  8470. -webkit-transform: translate3d(0, 0, 0);
  8471. transform: translate3d(0, 0, 0);
  8472. }
  8473. /* line 156, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8474. .x-list-item .x-list-header {
  8475. display: none;
  8476. }
  8477. /* line 160, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8478. .x-list-grouped .x-list-header-wrap .x-list-header {
  8479. position: absolute;
  8480. top: 0;
  8481. left: 0;
  8482. width: 100%;
  8483. display: block;
  8484. }
  8485. /* line 169, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8486. .x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal {
  8487. padding-top: 26px;
  8488. }
  8489. /* line 174, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8490. .x-list-normal .x-list-header-wrap .x-item-header, .x-list-normal .x-list-header {
  8491. background-image: none;
  8492. background-color: #aaaaaa;
  8493. color: #5d5d5d;
  8494. border-top: 1px solid #aaaaaa;
  8495. border-bottom: 1px solid #777777;
  8496. font-weight: bold;
  8497. font-size: 0.8em;
  8498. padding: 0.2em 1.02em;
  8499. }
  8500. /* line 202, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8501. .x-list-normal .x-list-item .x-dock-horizontal {
  8502. border-top: 1px solid black;
  8503. }
  8504. /* line 206, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8505. .x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal {
  8506. border-bottom: 1px solid black;
  8507. }
  8508. /* line 227, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8509. .x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal {
  8510. border-top: 0;
  8511. }
  8512. /* line 232, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8513. .x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal {
  8514. padding-top: 31px;
  8515. }
  8516. /* line 236, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8517. .x-list-round .x-scroll-view {
  8518. background-color: #eee !important;
  8519. }
  8520. /* line 241, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8521. .x-list-round .x-list-header-swap {
  8522. padding-right: 13px;
  8523. }
  8524. /* line 245, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8525. .x-list-round .x-list-inner .x-scroll-container {
  8526. top: 13px;
  8527. left: 13px;
  8528. bottom: 13px;
  8529. right: 13px;
  8530. width: auto !important;
  8531. height: auto !important;
  8532. }
  8533. /* line 254, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8534. .x-list-round .x-list-disclosure {
  8535. overflow: hidden;
  8536. -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat;
  8537. -webkit-mask-size: 1.5em;
  8538. background-image: none;
  8539. background-color: #595959;
  8540. width: 1.5em;
  8541. height: 1.5em;
  8542. margin: 0.5em 0.5em 0 0;
  8543. }
  8544. /* line 264, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8545. .x-list-round .x-list-header {
  8546. color: #777;
  8547. font-size: 1em;
  8548. font-weight: bold;
  8549. padding-left: 26px;
  8550. line-height: 1.7em;
  8551. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4)));
  8552. background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4));
  8553. background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4));
  8554. }
  8555. /* line 274, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8556. .x-list-round .x-list-container {
  8557. padding: 13px 13px 0 13px;
  8558. }
  8559. /* line 277, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8560. .x-list-round .x-list-container .x-list-header {
  8561. padding-left: 13px;
  8562. background-image: none;
  8563. }
  8564. /* line 285, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8565. .x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal {
  8566. border: 1px solid black;
  8567. border-width: 1px 1px 0 1px;
  8568. background: #111111;
  8569. }
  8570. /* line 299, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8571. .x-list-round.x-list-ungrouped .x-list-item:last-child {
  8572. border-width: 1px;
  8573. margin-bottom: 13px;
  8574. }
  8575. /* line 314, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8576. .x-list-round.x-list-grouped .x-list-header-wrap .x-list-header {
  8577. border: 1px solid black;
  8578. border-width: 1px 1px 0 1px;
  8579. }
  8580. /* line 321, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8581. .x-list-round.x-list-grouped .x-list-footer-wrap {
  8582. background: transparent;
  8583. }
  8584. /* line 324, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8585. .x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal {
  8586. border: none;
  8587. background: transparent;
  8588. padding-bottom: 13px;
  8589. }
  8590. /* line 329, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8591. .x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body {
  8592. border: 1px solid black;
  8593. background: #111111;
  8594. }
  8595. /* line 340, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8596. .x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item {
  8597. display: inline-block !important;
  8598. }
  8599. /* line 346, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8600. .x-dataview-nowrap .x-dataview-container {
  8601. white-space: nowrap !important;
  8602. }
  8603. /* line 352, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8604. .x-list-inlineblock .x-list-item {
  8605. display: inline-block !important;
  8606. }
  8607. /* line 358, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8608. .x-list-nowrap .x-list-inner {
  8609. width: auto;
  8610. }
  8611. /* line 361, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8612. .x-list-nowrap .x-list-container {
  8613. white-space: nowrap !important;
  8614. }
  8615. /* line 368, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8616. .x-list-paging {
  8617. padding: 1em 0;
  8618. }
  8619. /* line 370, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8620. .x-list-paging .x-loading-spinner {
  8621. display: none;
  8622. margin: auto;
  8623. }
  8624. /* line 375, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8625. .x-list-paging .x-list-paging-msg {
  8626. text-align: center;
  8627. color: #0066ff;
  8628. clear: both;
  8629. }
  8630. /* line 382, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8631. .x-list-paging.x-loading {
  8632. padding: 0.5em;
  8633. }
  8634. /* line 385, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8635. .x-list-paging.x-loading .x-loading-spinner {
  8636. display: block;
  8637. }
  8638. /* line 389, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8639. .x-list-paging.x-loading .x-list-paging-msg {
  8640. display: none;
  8641. }
  8642. /* line 397, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8643. .x-list-pullrefresh {
  8644. display: -webkit-box;
  8645. display: box;
  8646. -webkit-box-orient: horizontal;
  8647. box-orient: horizontal;
  8648. -webkit-box-align: center;
  8649. box-align: center;
  8650. -webkit-box-pack: center;
  8651. box-pack: center;
  8652. position: absolute;
  8653. top: -5em;
  8654. left: 0;
  8655. width: 100%;
  8656. height: 4.5em;
  8657. }
  8658. /* line 408, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8659. .x-list-pullrefresh .x-loading-spinner {
  8660. display: none;
  8661. }
  8662. /* line 413, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8663. .x-list-pullrefresh-arrow {
  8664. width: 2.5em;
  8665. height: 4.5em;
  8666. background: center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA8CAYAAAAUufjgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjFJREFUeNrsmU8oREEYwOexdtNuKBfFwdVhCyfuysnFiXISS+1BLopyUpKLXETkRLaUi1LK3Q2lpPbiQLnIn03a/Hm+z86Ttv0zM++bfbOar36Hbad5v535Zp7v47iuy0wOpyoEHccRHV9L9NxPkUE/bhKCOKiOSPAdn69DsJ5I8E2HYA0QJRJ8Bb50CDYRCT7pEMQD0kwk+CByUFQEW4gE73UIhoA2IsFb4ENEMCQ5MdU1IxwygpT3oKNLMGyyYFVscdhusc8tDpu+xRG7xf95BW0O2kNiV1AgIvaQ2BzUJNgJNJYZGyUU7OG1cal4Bi68oqkDPszy2teEwJp5Cdyu/lZ1g8CwIYJ7wEF+2YmrNw90Byx3BizgKhaqizEP1wg7CLLxCEzy/CtauMeBlQDyEfNuGrgU6SyM8F9SyVgHdmRaH6tAb4XkToEp2d4M5mOK0TWMigU2koa8vJMRZPxEb2ss2LEVPMpPLlMRxBgDZjQJLgNbxb6Uab9tAn3EcifAeKkBMoLY+j0GWonk7oB+lmsFkwhidAGHBPmIeTcAnJcbKCuIMQEs+hScAzZEBqoIYuzyFVCJI36lMJ2CDfxibZeUu+EX/4uMIFP8ZyLejxkgK0hG5a8kP4IYSZbr1IuQVHmAX0HGX4VuGfZVJ6cQxPd1uoRcWqDW0SroFVzZAnJZ/h0LWhAjUUAw4XdSSsH8fExRTEgtGAOuOTETBb16Jk412e+bxOSwglYw6PgWYABvLk8P7zGJFwAAAABJRU5ErkJggg==') no-repeat;
  8667. background-size: 2em 3em;
  8668. -webkit-transition-property: -webkit-transform;
  8669. -webkit-transition-duration: 200ms;
  8670. -webkit-transform: rotate(0deg);
  8671. transform: rotate(0deg);
  8672. }
  8673. /* line 424, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8674. .x-android-2 .x-list-pullrefresh-arrow {
  8675. -webkit-transition-property: none;
  8676. -webkit-transition-duration: 0;
  8677. }
  8678. /* line 429, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8679. .x-list-pullrefresh-release .x-list-pullrefresh-arrow {
  8680. -webkit-transform: rotate(-180deg);
  8681. transform: rotate(-180deg);
  8682. }
  8683. /* line 433, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8684. .x-list-pullrefresh-wrap {
  8685. width: 20em;
  8686. font-size: 0.7em;
  8687. }
  8688. /* line 438, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8689. .x-list-pullrefresh-message {
  8690. font-weight: bold;
  8691. font-size: 1.3em;
  8692. margin-bottom: 0.1em;
  8693. text-align: center;
  8694. }
  8695. /* line 445, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8696. .x-list-pullrefresh-updated {
  8697. text-align: center;
  8698. }
  8699. /* line 450, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8700. .x-list-pullrefresh-loading *.x-loading-spinner {
  8701. display: block;
  8702. }
  8703. /* line 454, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8704. .x-list-pullrefresh-loading .x-list-pullrefresh-arrow {
  8705. display: none;
  8706. }
  8707. /* line 460, ../themes/stylesheets/sencha-touch/default/widgets/_list.scss */
  8708. .x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner {
  8709. display: none;
  8710. }
  8711. /* line 41, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8712. html, body {
  8713. width: 100%;
  8714. height: 100%;
  8715. }
  8716. @-webkit-keyframes x-paint-monitor-helper {
  8717. /* line 47, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8718. from {
  8719. zoom: 1;
  8720. }
  8721. /* line 48, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8722. to {
  8723. zoom: 1;
  8724. }
  8725. }
  8726. /* line 51, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8727. .x-paint-monitored {
  8728. position: relative;
  8729. }
  8730. /* line 55, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8731. .x-paint-monitor {
  8732. width: 0 !important;
  8733. height: 0 !important;
  8734. visibility: hidden;
  8735. }
  8736. /* line 59, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8737. .x-paint-monitor.cssanimation {
  8738. -webkit-animation-duration: 0.0001ms;
  8739. -webkit-animation-name: x-paint-monitor-helper;
  8740. }
  8741. /* line 63, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8742. .x-paint-monitor.overflowchange {
  8743. overflow: hidden;
  8744. }
  8745. /* line 65, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8746. .x-paint-monitor.overflowchange::after {
  8747. content: "";
  8748. display: block;
  8749. width: 1px !important;
  8750. height: 1px !important;
  8751. }
  8752. /* line 74, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8753. .x-size-monitored {
  8754. position: relative;
  8755. }
  8756. /* line 78, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8757. .x-size-monitors {
  8758. position: absolute;
  8759. left: 0;
  8760. top: 0;
  8761. width: 100%;
  8762. height: 100%;
  8763. visibility: hidden;
  8764. z-index: -9999;
  8765. overflow: hidden;
  8766. }
  8767. /* line 87, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8768. .x-size-monitors > * {
  8769. width: 100%;
  8770. height: 100%;
  8771. overflow: hidden;
  8772. }
  8773. /* line 93, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8774. .x-size-monitors.scroll > *.shrink::after {
  8775. content: "";
  8776. display: block;
  8777. width: 200%;
  8778. height: 200%;
  8779. min-width: 1px;
  8780. min-height: 1px;
  8781. }
  8782. /* line 101, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8783. .x-size-monitors.scroll > *.expand::after {
  8784. content: "";
  8785. display: block;
  8786. width: 100000px;
  8787. height: 100000px;
  8788. }
  8789. /* line 110, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8790. .x-size-monitors.overflowchanged > *.shrink > * {
  8791. width: 100%;
  8792. height: 100%;
  8793. }
  8794. /* line 116, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8795. .x-size-monitors.overflowchanged > *.expand > * {
  8796. width: 200%;
  8797. height: 200%;
  8798. }
  8799. /* line 130, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8800. .x-body {
  8801. position: relative;
  8802. z-index: 0;
  8803. }
  8804. /* line 135, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8805. .x-inner, .x-body {
  8806. width: 100%;
  8807. height: 100%;
  8808. }
  8809. /* line 140, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8810. .x-dock, .x-dock-body {
  8811. height: 100%;
  8812. }
  8813. /* line 144, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8814. .x-sized {
  8815. position: relative;
  8816. }
  8817. /* line 148, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8818. .x-stretched.x-container {
  8819. display: -webkit-box;
  8820. -webkit-box-orient: vertical;
  8821. box-orient: vertical;
  8822. }
  8823. /* line 151, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8824. .x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner {
  8825. display: -webkit-box;
  8826. -webkit-box-flex: 1;
  8827. box-flex: 1;
  8828. -webkit-box-orient: vertical;
  8829. box-orient: vertical;
  8830. }
  8831. /* line 158, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8832. .x-innerhtml {
  8833. width: 100%;
  8834. }
  8835. /* line 162, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8836. .x-layout-card {
  8837. position: relative;
  8838. overflow: hidden;
  8839. }
  8840. /* line 167, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8841. .x-layout-card-item-container {
  8842. width: auto;
  8843. height: auto;
  8844. position: absolute;
  8845. top: 0;
  8846. right: 0;
  8847. bottom: 0;
  8848. left: 0;
  8849. }
  8850. /* line 171, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8851. .x-layout-card-item {
  8852. position: absolute;
  8853. top: 0;
  8854. right: 0;
  8855. bottom: 0;
  8856. left: 0;
  8857. }
  8858. /* line 175, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8859. .x-layout-newcard-item, .x-layout-newcard-item > * {
  8860. position: absolute;
  8861. top: 0;
  8862. right: 0;
  8863. bottom: 0;
  8864. left: 0;
  8865. }
  8866. /* line 179, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8867. .x-layout-newcard-item:not(.active) {
  8868. display: none;
  8869. }
  8870. /* line 183, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8871. .x-layout-fit.x-stretched > .x-layout-fit-item {
  8872. display: -webkit-box;
  8873. -webkit-box-flex: 1;
  8874. box-flex: 1;
  8875. }
  8876. /* line 188, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8877. .x-layout-fit {
  8878. position: relative;
  8879. }
  8880. /* line 193, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8881. .x-layout-fit-item.x-sized {
  8882. position: absolute;
  8883. top: 0;
  8884. right: 0;
  8885. bottom: 0;
  8886. left: 0;
  8887. }
  8888. /* line 196, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8889. .x-layout-fit-item.x-unsized {
  8890. width: 100%;
  8891. height: 100%;
  8892. }
  8893. /* line 202, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8894. .x-center, .x-centered {
  8895. position: absolute;
  8896. top: 0;
  8897. right: 0;
  8898. bottom: 0;
  8899. left: 0;
  8900. display: -webkit-box;
  8901. -webkit-box-align: center;
  8902. box-align: center;
  8903. -webkit-box-pack: center;
  8904. box-pack: center;
  8905. }
  8906. /* line 207, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8907. .x-center > *, .x-centered > * {
  8908. position: relative;
  8909. }
  8910. /* line 210, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8911. .x-center > .x-floating, .x-centered > .x-floating {
  8912. position: relative !important;
  8913. }
  8914. /* line 215, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8915. .x-floating {
  8916. position: absolute;
  8917. }
  8918. /* line 219, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8919. .x-dock {
  8920. display: -webkit-box;
  8921. }
  8922. /* line 222, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8923. .x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner {
  8924. width: auto;
  8925. height: auto;
  8926. position: absolute;
  8927. top: 0;
  8928. right: 0;
  8929. bottom: 0;
  8930. left: 0;
  8931. }
  8932. /* line 225, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8933. .x-dock .x-dock-body {
  8934. display: -webkit-box;
  8935. -webkit-box-flex: 1;
  8936. box-flex: 1;
  8937. }
  8938. /* line 229, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8939. .x-dock.x-sized > .x-dock-body {
  8940. position: relative;
  8941. }
  8942. /* line 233, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8943. .x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body {
  8944. -webkit-box-orient: vertical;
  8945. box-orient: vertical;
  8946. }
  8947. /* line 235, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8948. .x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * {
  8949. -webkit-box-flex: 1;
  8950. box-flex: 1;
  8951. }
  8952. /* line 240, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8953. .x-dock.x-dock-vertical {
  8954. -webkit-box-orient: vertical;
  8955. box-orient: vertical;
  8956. }
  8957. /* line 243, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8958. .x-dock.x-dock-horizontal {
  8959. -webkit-box-orient: horizontal;
  8960. box-orient: horizontal;
  8961. }
  8962. /* line 245, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8963. .x-dock.x-dock-horizontal > .x-dock-item {
  8964. display: -webkit-box;
  8965. }
  8966. /* line 248, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8967. .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body {
  8968. width: auto;
  8969. height: auto;
  8970. position: absolute;
  8971. top: 0;
  8972. right: 0;
  8973. bottom: 0;
  8974. left: 0;
  8975. }
  8976. /* line 252, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8977. .x-dock.x-dock-horizontal > .x-dock-item.x-unsized {
  8978. -webkit-box-orient: vertical;
  8979. box-orient: vertical;
  8980. }
  8981. /* line 254, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8982. .x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * {
  8983. -webkit-box-flex: 1;
  8984. box-flex: 1;
  8985. }
  8986. /* line 301, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8987. .x-layout-box {
  8988. display: -webkit-box;
  8989. }
  8990. /* line 303, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8991. .x-layout-box.x-horizontal {
  8992. -webkit-box-orient: horizontal !important;
  8993. }
  8994. /* line 305, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8995. .x-layout-box.x-horizontal > .x-layout-box-item.x-flexed {
  8996. width: 0 !important;
  8997. }
  8998. /* line 309, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  8999. .x-layout-box.x-vertical {
  9000. -webkit-box-orient: vertical;
  9001. box-orient: vertical;
  9002. }
  9003. /* line 311, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9004. .x-layout-box.x-vertical > .x-layout-box-item.x-flexed {
  9005. height: 0 !important;
  9006. }
  9007. /* line 315, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9008. .x-layout-box > .x-layout-box-item {
  9009. display: -webkit-box !important;
  9010. }
  9011. /* line 318, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9012. .x-layout-box.x-align-start {
  9013. -webkit-box-align: start;
  9014. box-align: start;
  9015. }
  9016. /* line 321, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9017. .x-layout-box.x-align-center {
  9018. -webkit-box-align: center;
  9019. box-align: center;
  9020. }
  9021. /* line 324, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9022. .x-layout-box.x-align-end {
  9023. -webkit-box-align: end;
  9024. box-align: end;
  9025. }
  9026. /* line 327, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9027. .x-layout-box.x-align-stretch {
  9028. -webkit-box-align: stretch;
  9029. box-align: stretch;
  9030. }
  9031. /* line 330, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9032. .x-layout-box.x-pack-start {
  9033. -webkit-box-pack: start;
  9034. box-pack: start;
  9035. }
  9036. /* line 333, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9037. .x-layout-box.x-pack-center {
  9038. -webkit-box-pack: center;
  9039. box-pack: center;
  9040. }
  9041. /* line 336, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9042. .x-layout-box.x-pack-end {
  9043. -webkit-box-pack: end;
  9044. box-pack: end;
  9045. }
  9046. /* line 339, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9047. .x-layout-box.x-pack-justify {
  9048. -webkit-box-pack: justify;
  9049. box-pack: justify;
  9050. }
  9051. /* line 345, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9052. .x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer {
  9053. width: auto;
  9054. height: auto;
  9055. position: absolute;
  9056. top: 0;
  9057. right: 0;
  9058. bottom: 0;
  9059. left: 0;
  9060. }
  9061. /* line 350, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9062. .x-layout-float {
  9063. overflow: hidden;
  9064. }
  9065. /* line 352, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9066. .x-layout-float > .x-layout-float-item {
  9067. float: left;
  9068. }
  9069. /* line 356, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9070. .x-layout-float.x-direction-right > .x-layout-float-item {
  9071. float: right;
  9072. }
  9073. /* line 362, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9074. .x-table-inner {
  9075. display: table !important;
  9076. width: 100% !important;
  9077. height: 100% !important;
  9078. }
  9079. /* line 367, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9080. .x-table-inner.x-fixed-layout {
  9081. table-layout: fixed !important;
  9082. }
  9083. /* line 372, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9084. .x-table-row {
  9085. display: table-row !important;
  9086. }
  9087. /* line 376, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9088. .x-table-cell {
  9089. display: table-cell !important;
  9090. vertical-align: middle;
  9091. }
  9092. /* line 381, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9093. .x-translatable {
  9094. position: absolute;
  9095. top: 100% !important;
  9096. left: 100% !important;
  9097. overflow: visible !important;
  9098. z-index: 1;
  9099. }
  9100. /* line 387, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9101. .x-translatable::before {
  9102. content: "";
  9103. display: block;
  9104. position: absolute;
  9105. top: 100%;
  9106. left: 100%;
  9107. width: 100%;
  9108. height: 100%;
  9109. visibility: hidden;
  9110. }
  9111. /* line 399, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9112. .x-translatable-container {
  9113. overflow: hidden;
  9114. width: auto;
  9115. height: auto;
  9116. position: absolute;
  9117. top: 0;
  9118. right: 0;
  9119. bottom: 0;
  9120. left: 0;
  9121. }
  9122. /* line 402, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9123. .x-translatable-container::before {
  9124. content: "";
  9125. display: block;
  9126. width: 300%;
  9127. height: 300%;
  9128. visibility: hidden;
  9129. }
  9130. /* line 411, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9131. .x-size-change-detector {
  9132. visibility: hidden;
  9133. position: absolute;
  9134. left: 0;
  9135. top: 0;
  9136. z-index: -1;
  9137. width: 100%;
  9138. height: 100%;
  9139. overflow: hidden;
  9140. }
  9141. /* line 422, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9142. .x-size-change-detector > * {
  9143. visibility: hidden;
  9144. }
  9145. /* line 426, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9146. .x-size-change-detector-shrink > * {
  9147. width: 200%;
  9148. height: 200%;
  9149. }
  9150. /* line 431, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9151. .x-size-change-detector-expand > * {
  9152. width: 100000px;
  9153. height: 100000px;
  9154. }
  9155. /* line 436, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9156. .x-scroll-view {
  9157. position: relative;
  9158. display: block;
  9159. overflow: hidden;
  9160. }
  9161. /* line 442, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9162. .x-scroll-container {
  9163. position: absolute;
  9164. width: 100%;
  9165. height: 100%;
  9166. }
  9167. /* line 448, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9168. .x-scroll-scroller {
  9169. position: absolute;
  9170. min-width: 100%;
  9171. min-height: 100%;
  9172. width: auto !important;
  9173. height: auto !important;
  9174. }
  9175. /* line 456, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9176. .x-ios .x-scroll-scroller {
  9177. -webkit-transform: translate3d(0, 0, 0);
  9178. }
  9179. /* line 460, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9180. .x-scroll-stretcher {
  9181. position: absolute;
  9182. visibility: hidden;
  9183. }
  9184. /* line 465, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9185. .x-scroll-bar-grid-wrapper {
  9186. position: absolute;
  9187. width: 100%;
  9188. height: 100%;
  9189. }
  9190. /* line 471, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9191. .x-scroll-bar-grid {
  9192. display: table;
  9193. width: 100%;
  9194. height: 100%;
  9195. }
  9196. /* line 476, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9197. .x-scroll-bar-grid > * {
  9198. display: table-row;
  9199. }
  9200. /* line 480, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9201. .x-scroll-bar-grid > * > * {
  9202. display: table-cell;
  9203. }
  9204. /* line 484, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9205. .x-scroll-bar-grid > :first-child > :first-child {
  9206. width: 100%;
  9207. height: 100%;
  9208. }
  9209. /* line 489, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9210. .x-scroll-bar-grid > :first-child > :nth-child(2) {
  9211. padding: 3px 3px 0 0;
  9212. }
  9213. /* line 493, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9214. .x-scroll-bar-grid > :nth-child(2) > :first-child {
  9215. padding: 0 0 3px 3px;
  9216. }
  9217. /* line 498, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9218. .x-scroll-bar {
  9219. position: relative;
  9220. overflow: hidden;
  9221. }
  9222. /* line 503, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9223. .x-scroll-bar-stretcher {
  9224. position: absolute;
  9225. visibility: hidden;
  9226. width: 100%;
  9227. height: 100%;
  9228. }
  9229. /* line 510, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9230. .x-scroll-bar-x {
  9231. width: 100%;
  9232. }
  9233. /* line 513, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9234. .x-scroll-bar-x > .x-scroll-bar-stretcher {
  9235. width: 300%;
  9236. }
  9237. /* line 517, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9238. .x-scroll-bar-x.active {
  9239. height: 6px;
  9240. }
  9241. /* line 522, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9242. .x-scroll-bar-y {
  9243. height: 100%;
  9244. }
  9245. /* line 525, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9246. .x-scroll-bar-y > .x-scroll-bar-stretcher {
  9247. height: 300%;
  9248. }
  9249. /* line 529, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9250. .x-scroll-bar-y.active {
  9251. width: 6px;
  9252. }
  9253. /* line 534, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9254. .x-scroll-indicator {
  9255. background: #333;
  9256. position: absolute;
  9257. z-index: 3;
  9258. opacity: 0.5;
  9259. }
  9260. /* line 541, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9261. .x-android-4 .x-scroll-indicator {
  9262. opacity: 1;
  9263. }
  9264. /* line 545, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9265. .x-scroll-indicator.default {
  9266. -webkit-border-top-left-radius: 3px;
  9267. border-top-left-radius: 3px;
  9268. -webkit-border-top-right-radius: 3px;
  9269. border-top-right-radius: 3px;
  9270. -webkit-border-bottom-left-radius: 3px;
  9271. border-bottom-left-radius: 3px;
  9272. -webkit-border-bottom-right-radius: 3px;
  9273. border-bottom-right-radius: 3px;
  9274. }
  9275. /* line 552, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9276. .x-list-light .x-scroll-indicator,
  9277. .x-dataview-light .x-scroll-indicator {
  9278. background: #fff;
  9279. opacity: 1;
  9280. }
  9281. /* line 558, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9282. .x-scroll-indicator-x {
  9283. height: 100%;
  9284. }
  9285. /* line 562, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9286. .x-scroll-indicator-y {
  9287. width: 100%;
  9288. }
  9289. /* line 566, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9290. .x-scroll-indicator.csstransform {
  9291. background: none;
  9292. }
  9293. /* line 569, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9294. .x-scroll-indicator.csstransform > * {
  9295. position: absolute;
  9296. background-color: #333;
  9297. }
  9298. /* line 574, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9299. .x-scroll-indicator.csstransform > :nth-child(2) {
  9300. -webkit-transform-origin: 0% 0%;
  9301. background: none;
  9302. content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA);
  9303. }
  9304. /* line 581, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9305. .x-scroll-indicator.csstransform.x-scroll-indicator-light > * {
  9306. background-color: #eee;
  9307. }
  9308. /* line 585, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9309. .x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) {
  9310. content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA);
  9311. }
  9312. /* line 591, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9313. .x-scroll-indicator.csstransform.x-scroll-indicator-y > * {
  9314. width: 100%;
  9315. }
  9316. /* line 595, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9317. .x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child {
  9318. height: 3px;
  9319. -webkit-border-top-left-radius: 3px;
  9320. border-top-left-radius: 3px;
  9321. -webkit-border-top-right-radius: 3px;
  9322. border-top-right-radius: 3px;
  9323. }
  9324. /* line 600, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9325. .x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) {
  9326. height: 1px;
  9327. }
  9328. /* line 604, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9329. .x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child {
  9330. height: 3px;
  9331. -webkit-border-bottom-left-radius: 3px;
  9332. border-bottom-left-radius: 3px;
  9333. -webkit-border-bottom-right-radius: 3px;
  9334. border-bottom-right-radius: 3px;
  9335. }
  9336. /* line 611, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9337. .x-scroll-indicator.csstransform.x-scroll-indicator-x > * {
  9338. height: 100%;
  9339. }
  9340. /* line 615, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9341. .x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child {
  9342. width: 3px;
  9343. -webkit-border-top-left-radius: 3px;
  9344. border-top-left-radius: 3px;
  9345. -webkit-border-bottom-left-radius: 3px;
  9346. border-bottom-left-radius: 3px;
  9347. }
  9348. /* line 620, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9349. .x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) {
  9350. width: 1px;
  9351. }
  9352. /* line 623, ../themes/stylesheets/sencha-touch/default/core/_layout.scss */
  9353. .x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child {
  9354. width: 3px;
  9355. -webkit-border-top-right-radius: 3px;
  9356. border-top-right-radius: 3px;
  9357. -webkit-border-bottom-right-radius: 3px;
  9358. border-bottom-right-radius: 3px;
  9359. }
  9360. /* line 134, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9361. .x-form .x-scroll-container {
  9362. background-color: #eeeeee;
  9363. }
  9364. /* line 137, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9365. .x-form .x-scroll-container > .x-inner {
  9366. padding: 1em;
  9367. }
  9368. /* line 144, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9369. .x-form-label {
  9370. text-shadow: #fff 0 1px 1px;
  9371. color: #333333;
  9372. padding: 0.6em;
  9373. display: none !important;
  9374. background-color: #f7f7f7;
  9375. }
  9376. /* line 151, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9377. .x-form-label span {
  9378. font-size: .8em;
  9379. font-weight: bold;
  9380. }
  9381. /* line 156, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9382. .x-form-label-nowrap .x-form-label {
  9383. white-space: nowrap;
  9384. overflow: hidden;
  9385. text-overflow: ellipsis;
  9386. }
  9387. /* line 162, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9388. .x-field {
  9389. display: -webkit-box;
  9390. display: box;
  9391. min-height: 2.5em;
  9392. background: #fff;
  9393. }
  9394. /* line 167, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9395. .x-field .x-field-input {
  9396. position: relative;
  9397. min-width: 3.7em;
  9398. }
  9399. /* line 173, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9400. .x-field .x-field-input, .x-field .x-input-el {
  9401. width: 100%;
  9402. }
  9403. /* line 178, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9404. .x-field.x-field-labeled .x-form-label {
  9405. display: block !important;
  9406. }
  9407. /* line 183, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9408. .x-field:last-child {
  9409. border-bottom: 0;
  9410. }
  9411. /* line 190, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9412. .x-label-align-left .x-component-outer,
  9413. .x-label-align-right .x-component-outer {
  9414. -webkit-box-flex: 1;
  9415. box-flex: 1;
  9416. }
  9417. /* line 213, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9418. .x-label-align-right {
  9419. -webkit-box-direction: reverse;
  9420. box-direction: reverse;
  9421. }
  9422. /* line 222, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9423. .x-label-align-right:last-child {
  9424. border-bottom: 0;
  9425. }
  9426. /* line 235, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9427. .x-label-align-left,
  9428. .x-label-align-right {
  9429. -webkit-box-orient: horizontal !important;
  9430. box-orient: horizontal !important;
  9431. }
  9432. /* line 240, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9433. .x-label-align-top,
  9434. .x-label-align-bottom {
  9435. -webkit-box-orient: vertical !important;
  9436. box-orient: vertical !important;
  9437. }
  9438. /* line 255, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9439. .x-label-align-top .x-component-outer {
  9440. position: relative;
  9441. }
  9442. /* line 260, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9443. .x-label-align-bottom {
  9444. -webkit-box-direction: reverse;
  9445. box-direction: reverse;
  9446. }
  9447. /* line 270, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9448. .x-input-el {
  9449. padding: .4em;
  9450. min-height: 2.5em;
  9451. display: block;
  9452. border-width: 0;
  9453. background: transparent;
  9454. -webkit-appearance: none;
  9455. }
  9456. /* line 279, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9457. .x-field-mask {
  9458. position: absolute;
  9459. top: 0;
  9460. right: 0;
  9461. bottom: 0;
  9462. left: 0;
  9463. }
  9464. /* line 286, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9465. .x-field-required label:after, .x-field-required .x-form-label:after {
  9466. content: "*";
  9467. display: inline;
  9468. }
  9469. /* line 294, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9470. .x-item-disabled label:after, .x-item-disabled .x-form-label:after {
  9471. color: #666 !important;
  9472. }
  9473. /* line 301, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9474. .x-field-textarea textarea {
  9475. min-height: 6em;
  9476. padding-top: .5em;
  9477. }
  9478. /* line 313, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9479. .x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after {
  9480. content: "";
  9481. position: absolute;
  9482. width: 1.4em;
  9483. height: 1.4em;
  9484. top: 50%;
  9485. left: auto;
  9486. right: 1.1em;
  9487. -webkit-mask-size: 1.4em;
  9488. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII=');
  9489. margin-top: -0.7em;
  9490. }
  9491. /* line 322, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9492. .x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after {
  9493. content: "";
  9494. position: absolute;
  9495. width: 1.4em;
  9496. height: 1.4em;
  9497. top: 50%;
  9498. left: auto;
  9499. right: 1.1em;
  9500. margin-top: -0.7em;
  9501. -webkit-mask-size: 1.4em;
  9502. -webkit-mask-image: url('data:image/png;base64,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');
  9503. }
  9504. /* line 330, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9505. .x-field-checkbox .x-input-el {
  9506. position: relative;
  9507. }
  9508. /* line 332, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9509. .x-field-checkbox .x-input-el:after {
  9510. background-color: #dddddd;
  9511. }
  9512. /* line 335, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9513. .x-field-checkbox .x-input-el:checked:after {
  9514. background-color: #0066ff;
  9515. }
  9516. /* line 340, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9517. .x-field-radio .x-input-el {
  9518. position: relative;
  9519. }
  9520. /* line 342, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9521. .x-field-radio .x-input-el:before {
  9522. background-color: #d0d0d0;
  9523. }
  9524. /* line 345, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9525. .x-field-radio .x-input-el:after {
  9526. background-color: #dddddd;
  9527. -webkit-mask-image: url('data:image/png;base64,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');
  9528. }
  9529. /* line 349, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9530. .x-field-radio .x-input-el:checked:before {
  9531. background-color: #0066ff;
  9532. }
  9533. /* line 356, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9534. .x-item-disabled.x-field-radio .x-input-el:checked:before {
  9535. background: #84adea;
  9536. }
  9537. /* line 360, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9538. .x-item-disabled.x-field-radio .x-input-el:after {
  9539. background: #eee;
  9540. }
  9541. /* line 367, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9542. .x-item-disabled.x-field-checkbox .x-input-el:checked:after {
  9543. background: #84adea;
  9544. }
  9545. /* line 376, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9546. .x-spinner .x-component-outer {
  9547. display: -webkit-box;
  9548. display: box;
  9549. }
  9550. /* line 379, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9551. .x-spinner .x-component-outer > * {
  9552. width: auto;
  9553. }
  9554. /* line 384, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9555. .x-spinner .x-field-input {
  9556. -webkit-box-flex: 1;
  9557. }
  9558. /* line 387, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9559. .x-spinner .x-field-input .x-input-el {
  9560. -webkit-text-fill-color: #000;
  9561. width: 100%;
  9562. text-align: center;
  9563. }
  9564. /* line 395, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9565. .x-spinner .x-field-input input::-webkit-outer-spin-button, .x-spinner .x-field-input input::-webkit-inner-spin-button {
  9566. -webkit-appearance: none;
  9567. margin: 0;
  9568. }
  9569. /* line 402, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9570. .x-spinner.x-item-disabled .x-input-el {
  9571. -webkit-text-fill-color: #B3B3B3;
  9572. }
  9573. /* line 406, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9574. .x-spinner.x-item-disabled .x-spinner-button {
  9575. color: #aaa !important;
  9576. }
  9577. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9578. .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button {
  9579. border: 1px solid #c4c4c4;
  9580. border-top-color: #d0d0d0;
  9581. color: #1e1e1e;
  9582. }
  9583. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9584. .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before {
  9585. background: #c4c4c4;
  9586. }
  9587. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9588. .x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after {
  9589. background-image: none;
  9590. background-color: #f7f7f7;
  9591. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea));
  9592. background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea);
  9593. background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea);
  9594. }
  9595. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9596. .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask {
  9597. background-image: none;
  9598. background-color: black;
  9599. }
  9600. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9601. .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after {
  9602. background-image: none;
  9603. background-color: #efefef;
  9604. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0));
  9605. background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0);
  9606. background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0);
  9607. }
  9608. /* line 412, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9609. .x-spinner .x-spinner-button {
  9610. margin-top: .25em;
  9611. margin-bottom: .25em;
  9612. width: 2em;
  9613. padding: .23em 0 .27em;
  9614. font-weight: bold;
  9615. text-align: center;
  9616. border: 1px solid #dddddd !important;
  9617. -webkit-border-radius: 1em;
  9618. border-radius: 1em;
  9619. }
  9620. /* line 32, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9621. .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button {
  9622. border: 1px solid #b7b7b7;
  9623. border-top-color: #c4c4c4;
  9624. color: #111111;
  9625. }
  9626. /* line 37, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9627. .x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before {
  9628. background: #b7b7b7;
  9629. }
  9630. /* line 41, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9631. .x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after {
  9632. background-image: none;
  9633. background-color: #eaeaea;
  9634. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd));
  9635. background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd);
  9636. background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd);
  9637. }
  9638. /* line 45, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9639. .x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask {
  9640. background-image: none;
  9641. background-color: black;
  9642. }
  9643. /* line 50, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  9644. .x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after {
  9645. background-image: none;
  9646. background-color: #e2e2e2;
  9647. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3));
  9648. background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3);
  9649. background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3);
  9650. }
  9651. /* line 424, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9652. .x-spinner .x-spinner-button-down {
  9653. margin-left: .25em;
  9654. }
  9655. /* line 427, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9656. .x-spinner .x-spinner-button-up {
  9657. margin-right: .25em;
  9658. }
  9659. /* line 432, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9660. .x-spinner.x-field-grouped-buttons .x-input-el {
  9661. text-align: left;
  9662. }
  9663. /* line 436, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9664. .x-spinner.x-field-grouped-buttons .x-spinner-button-down {
  9665. margin-right: .5em;
  9666. }
  9667. /* line 443, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9668. .x-android .x-spinner-button {
  9669. padding: .40em 0 .11em !important;
  9670. }
  9671. /* line 450, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9672. .x-select-overlay .x-list-item-label {
  9673. height: 2.6em;
  9674. }
  9675. /* line 454, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9676. .x-select-overlay .x-list-label {
  9677. white-space: nowrap;
  9678. overflow: hidden;
  9679. text-overflow: ellipsis;
  9680. display: block;
  9681. }
  9682. /* line 460, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9683. .x-select-overlay .x-item-selected .x-list-label {
  9684. margin-right: 2.6em;
  9685. }
  9686. /* line 465, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9687. .x-select-overlay .x-item-selected .x-list-item-inner:before {
  9688. background-color: rgba(0, 0, 0, 0.3);
  9689. margin-top: -0.8em;
  9690. }
  9691. /* line 470, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9692. .x-select-overlay .x-item-selected .x-list-item-inner:after {
  9693. background-color: #dddddd;
  9694. }
  9695. /* line 11, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9696. .x-slider-field .x-component-outer, .x-toggle-field .x-component-outer {
  9697. padding: 0.6em;
  9698. }
  9699. /* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9700. .x-slider,
  9701. .x-toggle {
  9702. position: relative;
  9703. height: 2.2em;
  9704. min-height: 0;
  9705. min-width: 0;
  9706. }
  9707. /* line 23, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9708. .x-slider > *,
  9709. .x-toggle > * {
  9710. position: absolute;
  9711. width: 100%;
  9712. height: 100%;
  9713. }
  9714. /* line 30, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9715. .x-slider.x-item-disabled {
  9716. opacity: .6;
  9717. }
  9718. /* line 35, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9719. .x-thumb {
  9720. position: absolute;
  9721. height: 2.2em;
  9722. width: 2.2em;
  9723. border: #000;
  9724. background-color: #777;
  9725. }
  9726. /* line 42, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9727. .x-thumb.x-dragging {
  9728. background-color: #AAA;
  9729. }
  9730. /* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9731. .x-slider:after {
  9732. content: "";
  9733. position: absolute;
  9734. width: auto;
  9735. height: 0.8em;
  9736. top: 0.737em;
  9737. left: 0;
  9738. right: 0;
  9739. margin: 0 0.925em;
  9740. border: 0.1em solid rgba(0, 0, 0, 0.1);
  9741. border-bottom: 0;
  9742. background-color: #dddddd;
  9743. }
  9744. /* line 93, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9745. .x-toggle {
  9746. width: 4.4em;
  9747. overflow: hidden;
  9748. border: 1px solid #b7b7b7;
  9749. background-image: none;
  9750. background-color: #dddddd;
  9751. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede));
  9752. background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
  9753. background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede);
  9754. -webkit-box-flex: 0;
  9755. }
  9756. /* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9757. .x-toggle .x-thumb.x-dragging {
  9758. opacity: 1;
  9759. }
  9760. /* line 117, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9761. .x-toggle .x-thumb:before {
  9762. top: 0.175em;
  9763. }
  9764. /* line 146, ../themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */
  9765. .x-toggle-on {
  9766. background-image: none;
  9767. background-color: #92cf00;
  9768. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200));
  9769. background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200);
  9770. background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200);
  9771. }
  9772. /* line 482, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9773. input[type="search"]::-webkit-search-cancel-button {
  9774. -webkit-appearance: none;
  9775. }
  9776. /* line 488, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9777. .x-field-number input::-webkit-outer-spin-button, .x-field-number input::-webkit-inner-spin-button {
  9778. -webkit-appearance: none;
  9779. margin: 0;
  9780. }
  9781. /* line 495, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9782. .x-field-search .x-field-input {
  9783. position: relative;
  9784. }
  9785. /* line 498, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9786. .x-field-search .x-field-input:before {
  9787. content: "";
  9788. position: absolute;
  9789. width: 0.86em;
  9790. height: 0.86em;
  9791. top: 50%;
  9792. left: 0.5em;
  9793. -webkit-mask-image: url('data:image/png;base64,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');
  9794. -webkit-mask-size: .86em;
  9795. background-color: #ccc;
  9796. -webkit-mask-repeat: no-repeat;
  9797. margin-top: -0.43em;
  9798. }
  9799. /* line 506, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9800. .x-field-search .x-field-input .x-form-field {
  9801. margin-left: 1.0em;
  9802. }
  9803. /* line 516, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9804. .x-field-input .x-clear-icon {
  9805. display: none;
  9806. background: url('data:image/png;base64,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') no-repeat;
  9807. background-position: center center;
  9808. background-size: 55% 55%;
  9809. width: 2.2em;
  9810. height: 2.2em;
  9811. margin: .5em;
  9812. margin-top: -1.1em;
  9813. position: absolute;
  9814. top: 50%;
  9815. right: -0.5em;
  9816. }
  9817. /* line 532, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9818. .x-field-clearable .x-clear-icon {
  9819. display: block;
  9820. }
  9821. /* line 536, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9822. .x-field-clearable .x-field-input {
  9823. padding-right: 2.2em;
  9824. }
  9825. /* line 541, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9826. .x-android .x-input-el {
  9827. -webkit-text-fill-color: #000;
  9828. }
  9829. /* line 545, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9830. .x-android .x-empty .x-input-el {
  9831. -webkit-text-fill-color: #A9A9A9;
  9832. }
  9833. /* line 556, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9834. .x-item-disabled .x-form-label span,
  9835. .x-item-disabled input,
  9836. .x-item-disabled .x-input-el,
  9837. .x-item-disabled .x-spinner-body,
  9838. .x-item-disabled select,
  9839. .x-item-disabled textarea,
  9840. .x-item-disabled .x-field-clear-container {
  9841. color: #b3b3b3;
  9842. -webkit-text-fill-color: #b3b3b3;
  9843. pointer-events: none;
  9844. }
  9845. /* line 563, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9846. .x-form-fieldset {
  9847. margin: 0 0 1.5em;
  9848. }
  9849. /* line 566, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9850. .x-form-fieldset .x-form-label {
  9851. border-top: 1px solid white;
  9852. }
  9853. /* line 570, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9854. .x-form-fieldset .x-form-fieldset-inner {
  9855. border: 1px solid #dddddd;
  9856. background: #fff;
  9857. padding: 0;
  9858. overflow: hidden;
  9859. }
  9860. /* line 579, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9861. .x-form-fieldset .x-field {
  9862. border-bottom: 1px solid #dddddd;
  9863. background: transparent;
  9864. }
  9865. /* line 589, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9866. .x-form-fieldset .x-field:last-child {
  9867. border-bottom: 0;
  9868. }
  9869. /* line 599, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9870. .x-form-fieldset-title {
  9871. text-shadow: #fff 0 1px 1px;
  9872. color: #333333;
  9873. margin: 1em 0.7em 0.3em;
  9874. color: #333333;
  9875. font-weight: bold;
  9876. }
  9877. /* line 605, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9878. .x-form-fieldset-title .x-innerhtml {
  9879. white-space: nowrap;
  9880. overflow: hidden;
  9881. text-overflow: ellipsis;
  9882. }
  9883. /* line 610, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9884. .x-form-fieldset-instructions {
  9885. text-shadow: #fff 0 1px 1px;
  9886. color: #333333;
  9887. color: gray;
  9888. margin: 1em 0.7em 0.3em;
  9889. font-size: .8em;
  9890. text-align: center;
  9891. }
  9892. /* line 619, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9893. .x-selectmark-base, .x-field-select .x-component-outer:after {
  9894. content: "";
  9895. position: absolute;
  9896. width: 1em;
  9897. height: 1em;
  9898. top: 50%;
  9899. left: auto;
  9900. right: 0.7em;
  9901. -webkit-mask-size: 1em;
  9902. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');
  9903. margin-top: -0.5em;
  9904. }
  9905. /* line 629, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9906. .x-field-select {
  9907. position: relative;
  9908. z-index: 1;
  9909. }
  9910. /* line 634, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9911. .x-field-select .x-component-outer:after {
  9912. background-color: #dddddd;
  9913. }
  9914. /* line 639, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9915. .x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after {
  9916. pointer-events: none;
  9917. position: absolute;
  9918. display: block;
  9919. }
  9920. /* line 645, ../themes/stylesheets/sencha-touch/default/widgets/_form.scss */
  9921. .x-field-select .x-component-outer:before {
  9922. content: "";
  9923. position: absolute;
  9924. width: 4em;
  9925. height: auto;
  9926. top: 0;
  9927. left: auto;
  9928. right: 0;
  9929. bottom: 0;
  9930. }
  9931. /* line 7, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9932. .x-msgbox {
  9933. min-width: 15em;
  9934. max-width: 20em;
  9935. max-height: 90%;
  9936. margin: .5em;
  9937. -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em;
  9938. box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em;
  9939. border: 0.15em solid #393f45;
  9940. }
  9941. /* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9942. .x-msgbox .x-docking-vertical {
  9943. overflow: hidden;
  9944. }
  9945. /* line 22, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9946. .x-msgbox .x-icon {
  9947. margin: 0 0.8em 0 0.5em;
  9948. background: #fff;
  9949. -webkit-mask-size: 100%;
  9950. }
  9951. /* line 28, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9952. .x-msgbox .x-msgbox-info {
  9953. -webkit-mask-image: url('data:image/png;base64,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');
  9954. }
  9955. /* line 32, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9956. .x-msgbox .x-msgbox-warning {
  9957. -webkit-mask-image: url('data:image/png;base64,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');
  9958. }
  9959. /* line 36, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9960. .x-msgbox .x-msgbox-question {
  9961. -webkit-mask-image: url('data:image/png;base64,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');
  9962. }
  9963. /* line 40, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9964. .x-msgbox .x-msgbox-error {
  9965. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC');
  9966. }
  9967. /* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9968. .x-msgbox .x-title {
  9969. font-size: .9em;
  9970. line-height: 1.4em;
  9971. }
  9972. /* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9973. .x-msgbox .x-body {
  9974. background: transparent !important;
  9975. }
  9976. /* line 53, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9977. .x-msgbox .x-toolbar {
  9978. background: transparent none;
  9979. -webkit-box-shadow: none;
  9980. box-shadow: none;
  9981. }
  9982. /* line 57, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9983. .x-msgbox .x-toolbar.x-docked-top {
  9984. border-bottom: 0;
  9985. height: 1.3em;
  9986. }
  9987. /* line 62, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9988. .x-msgbox .x-toolbar.x-docked-bottom {
  9989. border-top: 0;
  9990. }
  9991. /* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9992. .x-msgbox .x-field {
  9993. min-height: 2em;
  9994. background: #fff;
  9995. }
  9996. /* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  9997. .x-msgbox .x-form-field {
  9998. min-height: 1.5em;
  9999. padding-right: 0 !important;
  10000. -webkit-appearance: none;
  10001. }
  10002. /* line 79, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10003. .x-msgbox .x-field-input {
  10004. padding-right: 2.2em;
  10005. }
  10006. /* line 84, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10007. .x-msgbox-text {
  10008. text-align: center;
  10009. padding: 6px 0;
  10010. line-height: 1.4em;
  10011. }
  10012. /* line 90, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10013. .x-msgbox-buttons {
  10014. padding: 0.4em 0;
  10015. height: auto;
  10016. }
  10017. /* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10018. .x-msgbox-buttons .x-button {
  10019. min-width: 4.5em;
  10020. }
  10021. /* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10022. .x-msgbox-buttons .x-button-normal span {
  10023. opacity: .7;
  10024. }
  10025. /* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10026. .x-msgbox-dark .x-msgbox-text {
  10027. color: rgba(199, 204, 209, 0.9);
  10028. }
  10029. /* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */
  10030. .x-msgbox-dark .x-msgbox-input {
  10031. background-image: none;
  10032. background-color: rgba(199, 204, 209, 0.9);
  10033. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(171, 179, 186, 0.9)), color-stop(10%, rgba(185, 191, 197, 0.9)), color-stop(65%, rgba(199, 204, 209, 0.9)), color-stop(100%, rgba(201, 205, 210, 0.9)));
  10034. background-image: -webkit-linear-gradient(top, rgba(171, 179, 186, 0.9), rgba(185, 191, 197, 0.9) 10%, rgba(199, 204, 209, 0.9) 65%, rgba(201, 205, 210, 0.9));
  10035. background-image: linear-gradient(top, rgba(171, 179, 186, 0.9), rgba(185, 191, 197, 0.9) 10%, rgba(199, 204, 209, 0.9) 65%, rgba(201, 205, 210, 0.9));
  10036. border: 0.1em solid rgba(92, 102, 112, 0.9);
  10037. }
  10038. /* line 20, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10039. .x-loading-spinner {
  10040. font-size: 250%;
  10041. height: 1em;
  10042. width: 1em;
  10043. position: relative;
  10044. -webkit-transform-origin: 0.5em 0.5em;
  10045. /* Shared Properties for all the bars */
  10046. }
  10047. /* line 29, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10048. .x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after {
  10049. display: block;
  10050. position: absolute;
  10051. width: 0.1em;
  10052. height: 0.25em;
  10053. top: 0;
  10054. -webkit-transform-origin: 0.05em 0.5em;
  10055. content: " ";
  10056. }
  10057. /* line 41, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10058. .x-loading-spinner > span.x-loading-top {
  10059. background-color: rgba(170, 170, 170, 0.99);
  10060. }
  10061. /* line 42, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10062. .x-loading-spinner > span.x-loading-top::after {
  10063. background-color: rgba(170, 170, 170, 0.9);
  10064. }
  10065. /* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10066. .x-loading-spinner > span.x-loading-left::before {
  10067. background-color: rgba(170, 170, 170, 0.8);
  10068. }
  10069. /* line 44, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10070. .x-loading-spinner > span.x-loading-left {
  10071. background-color: rgba(170, 170, 170, 0.7);
  10072. }
  10073. /* line 45, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10074. .x-loading-spinner > span.x-loading-left::after {
  10075. background-color: rgba(170, 170, 170, 0.6);
  10076. }
  10077. /* line 46, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10078. .x-loading-spinner > span.x-loading-bottom::before {
  10079. background-color: rgba(170, 170, 170, 0.5);
  10080. }
  10081. /* line 47, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10082. .x-loading-spinner > span.x-loading-bottom {
  10083. background-color: rgba(170, 170, 170, 0.4);
  10084. }
  10085. /* line 48, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10086. .x-loading-spinner > span.x-loading-bottom::after {
  10087. background-color: rgba(170, 170, 170, 0.35);
  10088. }
  10089. /* line 49, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10090. .x-loading-spinner > span.x-loading-right::before {
  10091. background-color: rgba(170, 170, 170, 0.3);
  10092. }
  10093. /* line 50, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10094. .x-loading-spinner > span.x-loading-right {
  10095. background-color: rgba(170, 170, 170, 0.25);
  10096. }
  10097. /* line 51, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10098. .x-loading-spinner > span.x-loading-right::after {
  10099. background-color: rgba(170, 170, 170, 0.2);
  10100. }
  10101. /* line 52, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10102. .x-loading-spinner > span.x-loading-top::before {
  10103. background-color: rgba(170, 170, 170, 0.15);
  10104. }
  10105. /* line 56, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10106. .x-loading-spinner > span {
  10107. left: 50%;
  10108. margin-left: -0.05em;
  10109. }
  10110. /* Rotate each of the 4 Spans */
  10111. /* line 65, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10112. .x-loading-spinner > span.x-loading-top {
  10113. -webkit-transform: rotate(0deg);
  10114. -moz-transform: rotate(0deg);
  10115. }
  10116. /* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10117. .x-loading-spinner > span.x-loading-right {
  10118. -webkit-transform: rotate(90deg);
  10119. -moz-transform: rotate(90deg);
  10120. }
  10121. /* line 67, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10122. .x-loading-spinner > span.x-loading-bottom {
  10123. -webkit-transform: rotate(180deg);
  10124. -moz-transform: rotate(180deg);
  10125. }
  10126. /* line 68, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10127. .x-loading-spinner > span.x-loading-left {
  10128. -webkit-transform: rotate(270deg);
  10129. -moz-transform: rotate(270deg);
  10130. }
  10131. /* These are the two lines that surround each of the 4 Span lines */
  10132. /* line 72, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10133. .x-loading-spinner > span::before {
  10134. -webkit-transform: rotate(30deg);
  10135. -moz-transform: rotate(30deg);
  10136. }
  10137. /* line 73, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10138. .x-loading-spinner > span::after {
  10139. -webkit-transform: rotate(-30deg);
  10140. -moz-transform: rotate(-30deg);
  10141. }
  10142. /* Set Animation */
  10143. /* line 77, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10144. .x-loading-spinner {
  10145. -webkit-animation-name: x-loading-spinner-rotate;
  10146. -webkit-animation-duration: .5s;
  10147. -webkit-animation-iteration-count: infinite;
  10148. -webkit-animation-timing-function: linear;
  10149. }
  10150. @-webkit-keyframes x-loading-spinner-rotate {
  10151. /* line 85, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10152. 0% {
  10153. -webkit-transform: rotate(0deg);
  10154. }
  10155. /* line 86, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10156. 8.32% {
  10157. -webkit-transform: rotate(0deg);
  10158. }
  10159. /* line 88, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10160. 8.33% {
  10161. -webkit-transform: rotate(30deg);
  10162. }
  10163. /* line 89, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10164. 16.65% {
  10165. -webkit-transform: rotate(30deg);
  10166. }
  10167. /* line 91, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10168. 16.66% {
  10169. -webkit-transform: rotate(60deg);
  10170. }
  10171. /* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10172. 24.99% {
  10173. -webkit-transform: rotate(60deg);
  10174. }
  10175. /* line 94, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10176. 25% {
  10177. -webkit-transform: rotate(90deg);
  10178. }
  10179. /* line 95, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10180. 33.32% {
  10181. -webkit-transform: rotate(90deg);
  10182. }
  10183. /* line 97, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10184. 33.33% {
  10185. -webkit-transform: rotate(120deg);
  10186. }
  10187. /* line 98, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10188. 41.65% {
  10189. -webkit-transform: rotate(120deg);
  10190. }
  10191. /* line 100, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10192. 41.66% {
  10193. -webkit-transform: rotate(150deg);
  10194. }
  10195. /* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10196. 49.99% {
  10197. -webkit-transform: rotate(150deg);
  10198. }
  10199. /* line 103, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10200. 50% {
  10201. -webkit-transform: rotate(180deg);
  10202. }
  10203. /* line 104, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10204. 58.32% {
  10205. -webkit-transform: rotate(180deg);
  10206. }
  10207. /* line 106, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10208. 58.33% {
  10209. -webkit-transform: rotate(210deg);
  10210. }
  10211. /* line 107, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10212. 66.65% {
  10213. -webkit-transform: rotate(210deg);
  10214. }
  10215. /* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10216. 66.66% {
  10217. -webkit-transform: rotate(240deg);
  10218. }
  10219. /* line 110, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10220. 74.99% {
  10221. -webkit-transform: rotate(240deg);
  10222. }
  10223. /* line 112, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10224. 75% {
  10225. -webkit-transform: rotate(270deg);
  10226. }
  10227. /* line 113, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10228. 83.32% {
  10229. -webkit-transform: rotate(270deg);
  10230. }
  10231. /* line 115, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10232. 83.33% {
  10233. -webkit-transform: rotate(300deg);
  10234. }
  10235. /* line 116, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10236. 91.65% {
  10237. -webkit-transform: rotate(300deg);
  10238. }
  10239. /* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10240. 91.66% {
  10241. -webkit-transform: rotate(330deg);
  10242. }
  10243. /* line 119, ../themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */
  10244. 100% {
  10245. -webkit-transform: rotate(330deg);
  10246. }
  10247. }
  10248. /* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10249. .x-android-3 .x-surface-wrap, .x-android-3 .x-surface-wrap > * {
  10250. -webkit-perspective: 1;
  10251. }
  10252. /* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10253. .x-draw-component {
  10254. position: relative;
  10255. }
  10256. /* line 10, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10257. .x-draw-component .x-inner {
  10258. overflow: hidden;
  10259. }
  10260. /* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10261. .x-surface {
  10262. position: absolute;
  10263. }
  10264. /* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10265. .x-chart-watermark {
  10266. opacity: 0.5;
  10267. z-index: 9;
  10268. right: 0;
  10269. bottom: 0;
  10270. background: rgba(0, 0, 0, 0.5);
  10271. color: white;
  10272. padding: 4px 6px;
  10273. font-family: "Helvetica";
  10274. font-size: 12px;
  10275. position: absolute;
  10276. border-top-left-radius: 4px;
  10277. white-space: nowrap;
  10278. -webkit-border-top-left-radius: 4px;
  10279. }
  10280. /* line 4, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10281. .x-android-3 .x-surface-wrap, .x-android-3 .x-surface-wrap > * {
  10282. -webkit-perspective: 1;
  10283. }
  10284. /* line 8, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10285. .x-draw-component {
  10286. position: relative;
  10287. }
  10288. /* line 10, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10289. .x-draw-component .x-inner {
  10290. overflow: hidden;
  10291. }
  10292. /* line 15, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10293. .x-surface {
  10294. position: absolute;
  10295. }
  10296. /* line 19, ../themes/stylesheets/sencha-touch/default/widgets/_draw.scss */
  10297. .x-chart-watermark {
  10298. opacity: 0.5;
  10299. z-index: 9;
  10300. right: 0;
  10301. bottom: 0;
  10302. background: rgba(0, 0, 0, 0.5);
  10303. color: white;
  10304. padding: 4px 6px;
  10305. font-family: "Helvetica";
  10306. font-size: 12px;
  10307. position: absolute;
  10308. border-top-left-radius: 4px;
  10309. white-space: nowrap;
  10310. -webkit-border-top-left-radius: 4px;
  10311. }
  10312. /* line 17, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10313. .x-legend .x-legend-inner .x-legend-container {
  10314. -webkit-border-radius: 5px;
  10315. border-radius: 5px;
  10316. border: 1px solid #cccccc;
  10317. background: white;
  10318. }
  10319. /* line 27, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10320. .x-legend .x-legend-inner .x-legend-container .x-legend-item {
  10321. padding: 0.8em 1em 0.8em 1.8em;
  10322. color: #333333;
  10323. background: rgba(255, 255, 255, 0);
  10324. max-width: 20em;
  10325. min-width: 0;
  10326. font-size: 14px;
  10327. line-height: 14px;
  10328. font-weight: bold;
  10329. white-space: nowrap;
  10330. position: relative;
  10331. }
  10332. /* line 39, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10333. .x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive {
  10334. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  10335. opacity: 0.3;
  10336. }
  10337. /* line 43, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10338. .x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker {
  10339. position: absolute;
  10340. width: 0.8em;
  10341. height: 0.8em;
  10342. -webkit-border-radius: 0.4em;
  10343. border-radius: 0.4em;
  10344. -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0, rgba(0, 0, 0, 0.4) 0 1px 0 inset;
  10345. box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0, rgba(0, 0, 0, 0.4) 0 1px 0 inset;
  10346. left: .7em;
  10347. top: 1em;
  10348. }
  10349. /* line 57, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10350. .x-legend.x-docked-top .x-legend-item, .x-legend.x-docked-bottom .x-legend-item {
  10351. border-right: 1px solid rgba(204, 204, 204, 0.5);
  10352. }
  10353. /* line 59, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10354. .x-legend.x-docked-top .x-legend-item:last-child, .x-legend.x-docked-bottom .x-legend-item:last-child {
  10355. border-right: 0;
  10356. }
  10357. /* line 66, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10358. .x-legend.x-docked-left .x-legend-inner, .x-legend.x-docked-right .x-legend-inner {
  10359. display: -webkit-box;
  10360. -webkit-box-align: center;
  10361. -webkit-box-pack: center;
  10362. }
  10363. /* line 74, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10364. .x-legend-button-icon {
  10365. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADqklEQVRoBe2aS2jUUBSGO7UPX1UrIj4Wgi8EFYvUlUtdKmp14aMggigidSNIFwWRogtBEFwouHMjrkQRLYIKIqKI6MIufBUsglAQLFqrtHX8/tA7jGnuTHAKzcnkwEcy99ybnj8nuTm5aS6fz9dUk9VWk1hpzQSnPeN1EpjD2DTAdHBZH2N/GEa5zyNvdIZpfBNYsaGacS3NRHwEPoHE/YHXsAsa1ScKfK0wCBpjgTbiDDJ02RPwN9oPQ21aBOvy3QNHIcrm0ngW1kc5LbZJ8GnQPeyzhTjafU5r7RK8LEbQa2L0MdFFgkdjRBqnT4zDTH0XCX5SJgzNvo/K9DHjluAL8BUkLGzKbC/cCjus/q7jcXOHAuIUArpgATSCnsO/4A10Qj/4TAXKCESdMN+YqWrPB5UWf/0aKJPbYQMMwVPo4YS8Y+szFR0PYA5IeJJNV/NATgWFMzKt7BYyjK/kZEX/afSf5cYb2A7/I9hAwBWHqDRXlWWC057uLMNZhlN2BqruknaVlta16knmfJgBqka+wyDFh7eCYozWwRaBlRM3EAgmcJWGm2ArLAHVxm/hIb5eRKuujrKlNKoOnwmqv5NsWuS4pAD1wnAevoAyW4xeHo5Dg0rQMLS3gqVFvN26FA/AIdClGba1NJyAdWGH0d95CT4GyrLPVuPY6XNaa5fgVTGC1itjKkyCvbNwkcLfRfumdyX4WQwFL2L0MdFFgi/C+xLRPsd3u4TflEvP4R7QDH0Q9JjRSZDp2fsYrkCpZR7cZiwXrHhQXGhZZyVshMWgIqIPXsJnX7XFOPXdB6q4LNjNwhIPwasS0edSV1r+RGjJyYohWtNSlaarQgVL0u1HQXDSI52s+Nz9OlnHS/xxMsGJT1GFAWYZrvAEJn54luHEp6jCAIMlHncMConZ7Lusj1B46P+0vDZeeJj6mBYIJnCtSW2BdpgHqpr6aL+K6Ffs+2w5jnNg5XNpt8pJ1cEnoQOaQeWiTAt5H6ET7iF8QunICdHLxn3QlTHBT1vSbK8C2g++hTh9H/4ALdIbhnZri3htul+VXV2SUaZsr4AdUU6LbRLcEiNwvTamwtyMXE6MhfuznIbAL8GlZmF3kDh9XN9EbyX4TJkItd51vUwfM24J1mOlG6JWN/pp7wLN1Omw8cerqqVtcBckXP+ZdwM2Q334ceR+4zP3WHKLeCpAVHVpMU+fTTVJqfCQ+DEERk5aFB4a0wRWbChb07KSqv+NU5NWVVnVCf4LlUj5R3Y0QSkAAAAASUVORK5CYII=');
  10366. }
  10367. /* line 78, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10368. .x-panzoom-toggle-icon {
  10369. -webkit-mask-image: url('data:image/png;base64,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');
  10370. }
  10371. /* line 82, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10372. .x-zooming > .x-panzoom-toggle-icon {
  10373. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEn0lEQVRoBeWZWYjNURzH7zWYse+yvcib0uSBpEQikfXBm2QiyZBmauzrA7JkSyN7QolSypRHxYO8iMg+Yx5G1uxblvH5ao7+/u79u3PnnHtO+dWn/37O73PP+f//5/xvOpVKDYWBUIhIN1VyubGx8WkhKsxURzU7GwvIUerqinDKB60y/QIO99VQdiWirx3WkVh0oYTVgw7BHGRfJWbk+GBrx+WreMkehCpk32qHz3At/B25Y7AE2c8+RU3drrv0ESpaGoqspF218DfKluwyZL09oCQYDxctrG6sB9Q6eBOv0Pe27RbWfaqWXRVay5of2rbwRQpWN35vKghtabtLlyI4OZ1O2/4hrf1utoX7ktkBWIx0W2tZWizItrBS6wQboDJEaRfCRnoNK7ORbqMdoYQrYfm1hx1Qpo1QwqWwHNW9d9PKVf+LsDxLYD3SFSFIu25h46juvRHp1WC+ephjBV3mKvyCrN6Bpnr5Rjsu1INsIc5qdS+Ri3ADmS0D3Yf18APyDb2by6FbvgXYuC7pm9YHKpgL7Rguqq4JcB00G9KO5lLHNSOglcrzAXWnsgl/5Nhm6BFNjO3xcBc0K2qOcC3nT4qW5WOdHDIKq2V3Qcavi+yfCc2RfsD5o30Ixuskj7+EJbsT+sdPjm5zfDpIWvd0UkurG4+KXutznVz+EH7O9krolUtSnDcKbkG27n2FYyNyKatQ55DPb2HNYddCTrImQc7XPX0T4tLqxiOhyJwbwpJ8fgnrHbsdBuSTFNeNgYdguvcd1idC63zKc3mNRj3b4CvsoaInLPMKBhMzuHAL6JW1EC5Rnlo9qJDwcHhEcs9amhnS4yhDXymvhSgrvzSJaRlk8AP+GneTY4uTpCjNy0uCFSbBLiSoW0T/Ra1uSY+hrGLKGA2DvQzv1GBJkFhvOAF6CH4CfUhom3RNtmNcp0nLFLgB1YkVZyvE5X6S6glnQN3YIOnlUNKcujlfkxW9NjVWUFlhCZOQZlEa5RnR6FLjhBWQU0vrPBgDl8CUE44wSXWA05HkTJLR5ReO675OlOa4uvE00Hggen0YwiTVEU7GkosmGl3Xf8xboThT92a//gTQOD8uqzL8C5NED/hXy0aFta7urdncH/c023r1jIV7EL/GvzBJ6avm2SzJZUo4uu8N1+meNh8n1LIaRJkHVPRcs+6vhUlMT+PzYJLJZ6mW3gudYQhchaRyqvWr+AqN3/W6aUnoQVcG/UFP+GGQGF5HWoyA+pDdcRiXmKW9g/ty+Wppr7pYSTxlNTubDzWxQ842vQrLCuk6FuVwQduuw7uwBJGuZzELTmnbZQQhLEGkX7KoghPadhXBCDcJNrBcDs7u6aCEaWW9Qx9DBZwD6xGUsOwkTdxndQEc1D6bEZywkUNar6x1YLWlgxVmUFKEbClofGwtghRGVkPeSXAY+lqzpaDghJtkJ5ObJgX9bMqqLJ+Th79cIrJHOKjJgPUIrYWnYrgfnMjq1wumhWld3bN6DXVXYq4iiBZGVvfsUXAqqx/RuzCyi8hDc2J9fHceXrs0svq6uAn0basg4U0Y2UEYzoPboL9YCxG1PwHz6gsWqUp56gAAAABJRU5ErkJggg==');
  10374. }
  10375. /* line 86, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10376. .x-chart-toolbar {
  10377. position: absolute;
  10378. z-index: 9;
  10379. display: -webkit-box;
  10380. display: box;
  10381. padding: .6em;
  10382. }
  10383. /* line 92, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10384. .x-chart-toolbar .x-button {
  10385. margin: .2em;
  10386. }
  10387. /* line 96, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10388. .x-chart-toolbar[data-side=left], .x-chart-toolbar[data-side=right] {
  10389. top: 0;
  10390. -webkit-box-orient: vertical;
  10391. box-orient: vertical;
  10392. }
  10393. /* line 101, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10394. .x-chart-toolbar[data-side=left] {
  10395. left: 0;
  10396. }
  10397. /* line 105, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10398. .x-chart-toolbar[data-side=right] {
  10399. right: 0;
  10400. }
  10401. /* line 109, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10402. .x-chart-toolbar[data-side=top], .x-chart-toolbar[data-side=bottom] {
  10403. -webkit-box-orient: horizontal;
  10404. box-orient: horizontal;
  10405. right: 0;
  10406. }
  10407. /* line 114, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10408. .x-chart-toolbar[data-side=top] {
  10409. top: 0;
  10410. }
  10411. /* line 118, ../themes/stylesheets/sencha-touch/default/widgets/_charts.scss */
  10412. .x-chart-toolbar[data-side=bottom] {
  10413. bottom: 0;
  10414. -webkit-box-orient: horizontal;
  10415. box-orient: horizontal;
  10416. }
  10417. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10418. .x-tab .x-button-icon.bookmarks,
  10419. .x-button .x-button-icon.x-icon-mask.bookmarks {
  10420. -webkit-mask-image: url('data:image/png;base64,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');
  10421. }
  10422. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10423. .x-tab .x-button-icon.download,
  10424. .x-button .x-button-icon.x-icon-mask.download {
  10425. -webkit-mask-image: url('data:image/png;base64,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');
  10426. }
  10427. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10428. .x-tab .x-button-icon.favorites,
  10429. .x-button .x-button-icon.x-icon-mask.favorites {
  10430. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFfUlEQVRoBd2aXahVRRTHz/Ujv+2mZRGZB7W6mtpFikC7+UWUZiqBD0JPFdRL1EMFPfjoU4baS0FUD/UWZBEVShA+BCpmWApRSkgllNpDmZWZt9//eOay72afvWfWOTPn3rvgz8yeWbPW+s/XmT379AwODtZSSQ+CryVgA/gVfIx/pelEhFMBVlvBOaBeFo6Cean8y09KsnMg932TqCOs9M2UhMfhMJVsxtHcAmcbmekLCsqjFKUkvAYG1xSwmEHZqoLyKEVJCDOCNxH9HUCbVl6mULAuXxjrOQlhgl8Bbi0h0Uen3FBS37GqVIQHiHh2SdR16jTlo0t0woycpuxiUDSdHcFeMv3uIWYanTDB3wIWVZBQHP10zuQKvbarUxDWT1HRz1E++Ds99fLtgp6jEmbExhPNcs+IbkZPiCpRCRP5TPCQJ4MJ6A3QSUqjSWzC2ozuC4j+fnSnB+gHq8YmvJKIJgVEpRPX9QH6waqxCa8PjEhHT981H2j6qno0wqzF63BhOUxsom3Zb7aJqGsUjTAONFJlpysXQz7VuXpavrBTzzEJaz1adlzNjHs6RTBvJyZhjZTF/kTaWZZCnlvhsyWgQkPZQpagzsX1bFlAXjGtDdAPUu1p3PPQhCCXkdwG/mta0PWLds060AuAnqtEOjpdbQR3VymX1P9F3UfgGJA9X9F92c/ADaQ2P8V0DJ4/kDbeYKaSvgI2AN0+OGJK1VAbSIhTOXEOybYll2kte77yD4rqrHyb85S9Cl4HtReAyI11/A7HpRq5PSD6oR0f3Rad+H7S1DvV7UgS+tc1cU3n3V/AWJ/SX8BxVuMinow2rNNjlPQVeH0GFg378kDBfLAPXARjZbTPwmUXmOG+bgz71EKFfqKeAUWfREZbJxyCxyOOqEuHER4qrNUWovwy0CFktBHV4eNZMNvxyaaFhKWAaBt/HJwEo4W0luSKLMF8viVhp4iBeeBd8CcYqcQ1qi+CKS7uVmklYdcQY0+C42Ckkf6EmO51cVal3oRlCFkCdKgfCWtbo7obDO3AVWQbHHyUsjo40E6uq9cvQbdG+wN892fj8s0HjXDWKA51/t4JUo72H/jTDtybjSUkbyYsJ0gdfAtSjfTn+JoWQjCv2+57a4M1QaQSvZvrMsIs7RJejGcdUlLJUhzpZsYsZsJcCen6ZwCE3IaYA2021OfUdU3fJltmwni7Fvh+KDMF16KR3ux0lWuSdgjPxeNdJq/tNdKNqJaSSUyEmVK6JNPomtqbIh3eSKNsEmvAarfJ5LEzjbbR59MtpqyEb8eZjpndkhtxvNri3Er4YZxpx+yW6Jdhi8V5MOHm+n0QZ9afo0u0fQO8A5S3iPaQ1cTSG9w4f/SqesZBH/gRWI6T+gyyxfkgvw2cMdrS+/lTzpZvGnyWxsnTwHLRd4R2a/OBqQyoztKBe/P2qp6DCBOUptKHhuA+pU1fq2Co0/F0L9CVaghxXTbWW9ktKg8lrFfCrwODeh/9wgu1bEDo6OT2Fvgb+JLWq+nQEsnaa5UPJbwKBxc8A9KXPG1O3u+u6E4F24GvD3XMDjCxFcF8uTdhjGpHfwn49L42lCeAdyDZwGi3HpwAPr6+Q29htn1ZPoSwfuz3ewShXVcBNz62lzkvq6O9DjZHgQ9p72kdQljvob9VBPAN9Q+UEQmpw5b+Sf8e0FotI/4a9ZN8bIcQXlnh9AD1y3ychuhgU0tpJyhb14epn+ljN+Sk9S9G1ct50d8SdgF9x9EO3lHB5hXwPEYfA8dbGD9LuWZBtfj0inSQWUDTKzu1dAB5Dkz2tdOOHn70LvwVyMag/FYwzse295Rukq5j+G1wEOib66PAy5FPMD46+NPmqTV7CpwGGvkJPm2l8z8GWDNDloqpGQAAAABJRU5ErkJggg==');
  10431. }
  10432. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10433. .x-tab .x-button-icon.info,
  10434. .x-button .x-button-icon.x-icon-mask.info {
  10435. -webkit-mask-image: url('data:image/png;base64,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');
  10436. }
  10437. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10438. .x-tab .x-button-icon.more,
  10439. .x-button .x-button-icon.x-icon-mask.more {
  10440. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAADJ0lEQVRoBe2YS2sUQRSFp5MgvmLU+CAMiBJFDBHcCeoPEFciuHMjroMK4lZBcONG0JW60U1UEgRx59IXuNMoKEElKL7GRwyIqNHxO0N66FT3UNU9IHRNFXz0VNW5t+vW6RcT1ev1Sie1rk4qVrWGgn13PDgcHPZsB8Il7ZmhqXKCw6kt8WwgOOyZoalygsOpLfFsIDjsmaGpcoLDqS3xbCA47JmhqXKCw6kt8Wyg6XAURV2wEy7BM5iFtzAKu2BB0dqJ7YEtcBYmQblfwzjshUVt5O4mfhjOwwQodw3GYA8snpd77n9pFXMYvoP+qDaZZewcVKXPAzE64Qn4CmZe9f/AFSiSu4e4IzANrXJfZ24gXjO/KxEcg9+QFZQcU/CSONh2RKsraMQhr85xE/psOeN5tCr2APyA5Bqzfl9D06tYtX3wC7KE5pg2ZX98UtsR7XZo5ayZW/1DENnyzi18CO1nyMqTNXYcrTapcitHkBLJiZW2RaGRuxcg6+Stxu6i73fI3Y3uZM7cU+hXQeVvzsBP6Dc5LupxztzaiEGH3AvR3S+Qe4dc0D2cp/Uj1oPI1pR7g030n+erWlTe9pMA3cu2Jre+2ERtzBdZe01BL3Ke9Al6vQZsTbfKQ5vImH9PXxtqa3qVPbWJjHk94J6r4DPGhK17A8EHm4j7UAWP2nTG/GX6NWMs1SW3rrCroLeLaxtDqDdG4368zbHVkzM5Polus+2hEs+j7YNxx9zv0FkfhoncvegvOuZ+iW6rYhtfTXTWgV7OyeLM3w+Y3xaf0PVIzAqwFf0IzW7XnLGOmLUg58y1JvsTzA83Y5o/eLcyMQISJAN0z56G9bE275HYNXAU7kAy9xv6p2Bj3pyxntjVcBDuQTL3FH19Dg/FWh0bXzUMNhsf23JkOQzCK9B1P4NY39OFG3kjgpeB8g/AR/gG0+3mJkeF9Lp9lkIVZkDfC1r3vPs8VTAir1uRd1mpNyQUXGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLgsOlts9h8cFhh00qtSQ4XGr7HBYfHHbYpFJLOs7hf5j4Vg3iLoGkAAAAAElFTkSuQmCC');
  10441. }
  10442. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10443. .x-tab .x-button-icon.time,
  10444. .x-button .x-button-icon.x-icon-mask.time {
  10445. -webkit-mask-image: url('data:image/png;base64,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');
  10446. }
  10447. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10448. .x-tab .x-button-icon.user,
  10449. .x-button .x-button-icon.x-icon-mask.user {
  10450. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEWElEQVRoBe2aS0gVYRiGO1lmF8nQQlETutGFokAiqEV0ISKwgmrdMtzUpnW7drWKbFGbQAKpJIhuUGIUFUkW0T1Jq4V2U4ui7GLPexpDD+ecuX1jHqcPHseZ+f9vvnf++e8n0d/fPyZONjZOYqU1doLHRV3CiURCz5gMxTANJsJg+8XJJ+iBt9BHNdO1SCwRZR1GbAFRl8F8WAFLoRwGLME/ffAM7kETvIYPxPWDo7lFIhiheURaCVtgBywHXXOzbhJcggZoRvR7twy+76uELSEAtQsqySPwGdQN+KWDPHuh2DI2+TIVm3T455M9G0Bk6ktRvd4NBZaiTQUT3AQnSNW/VAFBzl/iZw0kq56FcOtuaQHB7QIv9ZVkrqZ2YA9Mck3pMYGZYKeh2sBz1SJb2mqcmfk0E0xQ6l9rwNoKcWjm11JwEYFVW6t1/K218mspeB5B5VsFluKnIuU88Kml4PGBo3DPqBGZiVkKNgvKRFkGJ5aCv2Z4xoi6bCm4DWUaXERhZhMJS8FfolDq+DSbRFgKjrIOa8poYpaCTQKK2sl/wSHfcFSNlll1sSzhn7ys3pAvLFP275lu+L1uKVhBPfYbgMf0zz2mc01mKfgbT7vi+kT/CeT3sv9s6XNYCtbg4CJ0pX9U4Kv3yXk3cO6UjGaCWX5Rg/UArqY8I8yp1qdPQ08YJ4Pzmgl2nCqwc2DVyKjunuddqkE0MVPBBKYSuQ7tJtEhFj9apDczU8FOVB0ctZiuHYUw9obMjbxErW2bmblgApTQengVIkq1B83QEsJH2qzmgp2n3ObYCEGndZ3krbcuXcUWiWACldCjoA0yv6a8J6HJb0Yv6SMRrAcj+gmHA+B3aneDPHXk/8jR3LR3a2rOfnAlTmfDVPDb6Khrq8bPDI5PoRPxZpMSk+1SgtOKpTa8l8BC0JaLmAkloA1xr/aOhJqEtINGWeqW7jjHXrQHbRdw4WxSJf8L8Aeh2m1QaWoBfiUsA61PTwGtUYeZ1qlP1zhan3YraBSnz/0mdAUVHqiEESoxKs0a2AxloJIMI5DsWU0vQH2z2oZToAnFI7+fu2/BiF3PgzbCKqgC1bXhNH3S6rba4BocR7TquifzLBih5XjcCSrROaAGKbJWHt9uJuGq67fgAki4zrNaVsGIzCP3dNgE20B1VJ+uro8UUz3Xr39UvxugCeEZl3UzCkZsBZn1+W6HRaB6qtZ4pJp2PtTna+58DFoR3sVxqHFxyM8euFsIW6EeXoDeoPrBXEEbAlpqqoN1kD9YY6rYxSQ4DGoE9KOSXBGZLk4NYB7CfigZEP1XMBfVEJ0BJUznIFevaSBzEEolOimYkyo4AfocclVYtrjViB0C9SzJEdE+jrn+CWcTrHvdUKuRUSm0gPrZ0W7tGjjMhTiIVWFWSbAGEnGxhAT/y+HhsL9oiVWFjo3FqnRVqrETrG5pFmiSEAuTYC3TFMVCLSIzTg9H6wuIXR2OneDfMJq1NmzzbS8AAAAASUVORK5CYII=');
  10451. }
  10452. /* line 20, ../themes/stylesheets/sencha-touch/default/_mixins.scss */
  10453. .x-tab .x-button-icon.team,
  10454. .x-button .x-button-icon.x-icon-mask.team {
  10455. -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFI0lEQVRoBe2ZSYgdVRSG+yUmnagRQYU4NbZKNLYKWTgg4gQOaDYqJIIGl4LixhBwoy50LSIiulEjCkpAUBBRURpdGceFMQ7YtgkOJE4xTjGa9vuedUl1Vd2qevSrFqvrwJ97695zzj3/PXd6nd7MzMzIQpJFC4msXDvCbc94l+Euwy2bgW5JtyyhOTpdhnNT0rKGLsMtS2iOTpfh3JS0rOGQ+eLT6/VWMNYJ4NjUmN9T/xLs4WfqvPxO7TU9DkTdNmvBbeAskJ7kv/n+AjwKXiSW7yibFQk3BSIPZHdTl5xZzML238DDYFlTsQS/jZF1AGQ1mAZZkkXfe9FbGwJrqmz6lL4cEmOgjhyO0jq2gGVj0hhhAl9M1FeB3gDRn4Pu/5NwQnJ0ALKqrgKHDmgzkHpjGR4oioPKP1H96+Dn8GvpKyLqneV5Lp0XgnHggTMFJjlYPqAcpnyLsz/LHBLL0fRfCzwbvNN3gLeI5WXKaik7DbF2/20A28HPYF+CPZQfg9tj9vS5h18DRSdyrO0j9FeW+PQenwTe138AJ+d34OPFa215zDa0l15LOLgamM0DIBukbQ60JjhLl7RL+HWQtSv7jhLGz1FgM3DJZ30Yy69gYzqGonrVHr4eJ+OgB7Ji2xi4lGUW8+PsD0vOwNGNwInMirF42K0nlmXZzvR3LNARDN3fx6WVI3VJF50Fzvr7EZtY8zQdLtUiOYXGIrJpXUmvTDdk61HCKEqiagD9SSwnLCeX3RYwSJafRd/zoUj2FzVm2hyzMJ6gV0Y46Myl/BzjeqfnyMg36G5NJqpoTPvnLGWEnS0f9lVStL/7NgT/C5XNoHTW6XesV4En/1wlGo+Oo4QJ1ivoxxqju+fKCG2lf1uFH7P3eEl2K8xndRt3VKKEE4sPKWOHiCreg28TaPR1RN/X6GwEO0GReJ3cg95kUWeqzT8W6KtMpujcVaZQRfgFjL8qcbCDvndi/Zz0h4Hr6L8JHBHRW0L7DejdAU6K6Nj8CfBQi4mH4xYmrmy1sXlK/gCAAyfkQaAT91kWj9HW/6tJ8MO3NmeC+4CHlqdu1q7o25Xk5Hqynw+WBp+hpO1K4JItsnfr5GyCbSirCHstnQpcKulBXMK+o1frCPGgWAomwL2gLsm0z3S9ny38XARWgEXJOI7xNMiS9ns9MN5ZCQhEQ1lIGCOXmZf4ZeAW8C4IAblv3wBXAIn6sjkZ3Arc80FvGKW/nu4H/nhZDiR0IngI+LYPY3i43gWuAeNgFBQSn0UYJZejRH3CPQ8cMDi19Jp6AviuVfd48ADwRZXWG3Z9J/6fApeAJUm2TYRE02OZjPfA3WAM9HVDdvt2iXHI1HkoPQd2g7SjUHef+NyU7AXgFRD65qOcZrybQXgFmtUDIDu2xE3CBuCWWBxIU+8vk9MozdQukDUO3x4qm5IJOp36ZyW6waaJci/jrkviWEV9qiQOdd8Ebr/+T0fKkYvBp6AqOB2fnQz0SA39Kn9z6Z9mfPeze/UlUOXrB3Q2AW36a77KwP7tYCwh7Mupjk1TOmZuNInlyZqxuN8n3ItrQF1xryvRl9W/3Y3/60QGCTGF71h5JB0Tbn7vsDqyP6Vkva5dymxoVQ+lIE6+3+lJCH3Zcp+E78y2Fny7Evw7kstC8YA7BtQZRP1hiwTDKnuGun8aSiekaDxXwrbG/zOtaOT/ss3MLSjpCLc93V2Guwy3bAa6Jd2yhObodBnOTUnLGroMtyyhOTpdhnNT0rKGfwD3f6JVZi/xSQAAAABJRU5ErkJggg==');
  10456. }
  10457. /* line 37, /Users/jamieavins/git/SDK/touch/resources/sass/bb6.scss */
  10458. .x-indexbar-item {
  10459. color: #FFF;
  10460. }
  10461. /* line 41, /Users/jamieavins/git/SDK/touch/resources/sass/bb6.scss */
  10462. .x-scrollbar-dark {
  10463. background-color: rgba(255, 255, 255, 0.6);
  10464. border: 1px solid rgba(0, 0, 0, 0.2);
  10465. }
  10466. /* line 55, /Users/jamieavins/git/SDK/touch/resources/sass/bb6.scss */
  10467. .x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after {
  10468. content: "";
  10469. position: absolute;
  10470. width: 0.72em;
  10471. height: 1.8em;
  10472. top: -0.1em;
  10473. left: auto;
  10474. z-index: 2;
  10475. -webkit-mask: -0.055em 0 url('data:image/png;base64,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') no-repeat;
  10476. -webkit-mask-size: 0.72em 1.8em;
  10477. overflow: hidden;
  10478. }
  10479. /* line 65, /Users/jamieavins/git/SDK/touch/resources/sass/bb6.scss */
  10480. .x-button-forward:before, .x-button-forward:after, .x-toolbar .x-button-forward:before, .x-toolbar .x-button-forward:after {
  10481. -webkit-mask: 0.055em 0 url('data:image/png;base64,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') no-repeat;
  10482. }