theme-material-all-rtl-debug_1.css 712 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866158671586815869158701587115872158731587415875158761587715878158791588015881158821588315884158851588615887158881588915890158911589215893158941589515896158971589815899159001590115902159031590415905159061590715908159091591015911159121591315914159151591615917159181591915920159211592215923159241592515926159271592815929159301593115932159331593415935159361593715938159391594015941159421594315944159451594615947159481594915950159511595215953159541595515956159571595815959159601596115962159631596415965159661596715968159691597015971159721597315974159751597615977159781597915980159811598215983159841598515986159871598815989159901599115992159931599415995159961599715998159991600016001160021600316004160051600616007160081600916010160111601216013160141601516016160171601816019160201602116022160231602416025160261602716028160291603016031160321603316034160351603616037160381603916040160411604216043160441604516046160471604816049160501605116052160531605416055160561605716058160591606016061160621606316064160651606616067160681606916070160711607216073160741607516076160771607816079160801608116082160831608416085160861608716088160891609016091160921609316094160951609616097160981609916100161011610216103161041610516106161071610816109161101611116112161131611416115161161611716118161191612016121161221612316124161251612616127161281612916130161311613216133161341613516136161371613816139161401614116142161431614416145161461614716148161491615016151161521615316154161551615616157161581615916160161611616216163161641616516166161671616816169161701617116172161731617416175161761617716178161791618016181161821618316184161851618616187161881618916190161911619216193161941619516196161971619816199162001620116202162031620416205162061620716208162091621016211162121621316214162151621616217162181621916220162211622216223162241622516226162271622816229162301623116232162331623416235162361623716238162391624016241162421624316244162451624616247162481624916250162511625216253162541625516256162571625816259162601626116262162631626416265162661626716268162691627016271162721627316274162751627616277162781627916280162811628216283162841628516286162871628816289162901629116292162931629416295162961629716298162991630016301163021630316304163051630616307163081630916310163111631216313163141631516316163171631816319163201632116322163231632416325163261632716328163291633016331163321633316334163351633616337163381633916340163411634216343163441634516346163471634816349163501635116352163531635416355163561635716358163591636016361163621636316364163651636616367163681636916370163711637216373163741637516376163771637816379163801638116382163831638416385163861638716388163891639016391163921639316394163951639616397163981639916400164011640216403164041640516406164071640816409164101641116412164131641416415164161641716418164191642016421164221642316424164251642616427164281642916430164311643216433164341643516436164371643816439164401644116442164431644416445164461644716448164491645016451164521645316454164551645616457164581645916460164611646216463164641646516466164671646816469164701647116472164731647416475164761647716478164791648016481164821648316484164851648616487164881648916490164911649216493164941649516496164971649816499165001650116502165031650416505165061650716508165091651016511165121651316514165151651616517165181651916520165211652216523165241652516526165271652816529165301653116532165331653416535165361653716538165391654016541165421654316544165451654616547165481654916550165511655216553165541655516556165571655816559165601656116562165631656416565165661656716568165691657016571165721657316574165751657616577165781657916580165811658216583165841658516586165871658816589165901659116592165931659416595165961659716598165991660016601166021660316604166051660616607166081660916610166111661216613166141661516616166171661816619166201662116622166231662416625166261662716628166291663016631166321663316634166351663616637166381663916640166411664216643166441664516646166471664816649166501665116652166531665416655166561665716658166591666016661166621666316664166651666616667166681666916670166711667216673166741667516676166771667816679166801668116682166831668416685166861668716688166891669016691166921669316694166951669616697166981669916700167011670216703167041670516706167071670816709167101671116712167131671416715167161671716718167191672016721167221672316724167251672616727167281672916730167311673216733167341673516736167371673816739167401674116742167431674416745167461674716748167491675016751167521675316754167551675616757167581675916760167611676216763167641676516766167671676816769167701677116772167731677416775167761677716778167791678016781167821678316784167851678616787167881678916790167911679216793167941679516796167971679816799168001680116802168031680416805168061680716808168091681016811168121681316814168151681616817168181681916820168211682216823168241682516826168271682816829168301683116832168331683416835168361683716838168391684016841168421684316844168451684616847168481684916850168511685216853168541685516856168571685816859168601686116862168631686416865168661686716868168691687016871168721687316874168751687616877168781687916880168811688216883168841688516886168871688816889168901689116892168931689416895168961689716898168991690016901169021690316904169051690616907169081690916910169111691216913169141691516916169171691816919169201692116922169231692416925169261692716928169291693016931169321693316934169351693616937169381693916940169411694216943169441694516946169471694816949169501695116952169531695416955169561695716958169591696016961169621696316964169651696616967169681696916970
  1. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:5 */
  2. .x-size-monitored {
  3. /**
  4. * @class Ext.util.SizeMonitor
  5. */
  6. position: relative;
  7. }
  8. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:9 */
  9. .x-size-monitors {
  10. position: absolute;
  11. left: 0;
  12. top: 0;
  13. width: 100%;
  14. height: 100%;
  15. visibility: hidden;
  16. overflow: hidden;
  17. }
  18. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:18 */
  19. .x-size-monitors > * {
  20. width: 100%;
  21. height: 100%;
  22. overflow: hidden;
  23. }
  24. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:25 */
  25. .x-size-monitors.scroll > *.shrink::after {
  26. content: '';
  27. display: block;
  28. width: 200%;
  29. height: 200%;
  30. min-width: 1px;
  31. min-height: 1px;
  32. }
  33. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:34 */
  34. .x-size-monitors.scroll > *.expand::after {
  35. content: '';
  36. display: block;
  37. width: 100000px;
  38. height: 100000px;
  39. }
  40. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:44 */
  41. .x-size-monitors.overflowchanged > *.shrink > * {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:51 */
  46. .x-size-monitors.overflowchanged > *.expand > * {
  47. width: 200%;
  48. height: 200%;
  49. }
  50. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:59 */
  51. .x-size-change-detector {
  52. visibility: hidden;
  53. position: absolute;
  54. left: 0;
  55. top: 0;
  56. z-index: -1;
  57. width: 100%;
  58. height: 100%;
  59. overflow: hidden;
  60. }
  61. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:70 */
  62. .x-size-change-detector > * {
  63. visibility: hidden;
  64. }
  65. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:74 */
  66. .x-size-change-detector-shrink > * {
  67. width: 200%;
  68. height: 200%;
  69. }
  70. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/SizeMonitor.scss:79 */
  71. .x-size-change-detector-expand > * {
  72. width: 100000px;
  73. height: 100000px;
  74. }
  75. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:5 */
  76. @-webkit-keyframes x-paint-monitor-helper {
  77. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:6 */
  78. from {
  79. /**
  80. * @class Ext.util.PaintMonitor
  81. */
  82. /**
  83. * @class Ext.util.PaintMonitor
  84. */
  85. zoom: 1;
  86. }
  87. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:9 */
  88. to {
  89. zoom: 1;
  90. }
  91. }
  92. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:14 */
  93. @keyframes x-paint-monitor-helper {
  94. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:15 */
  95. from {
  96. zoom: 1;
  97. }
  98. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:18 */
  99. to {
  100. zoom: 1;
  101. }
  102. }
  103. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:23 */
  104. .x-paint-monitored {
  105. position: relative;
  106. }
  107. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:28 */
  108. .x-safari .x-paint-monitor.cssanimation {
  109. -webkit-animation-fill-mode: forwards;
  110. animation-fill-mode: forwards;
  111. }
  112. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:33 */
  113. .x-paint-monitor {
  114. width: 0 !important;
  115. height: 0 !important;
  116. visibility: hidden;
  117. }
  118. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:38 */
  119. .x-paint-monitor.cssanimation {
  120. -webkit-animation-duration: 0.0001ms;
  121. -webkit-animation-name: x-paint-monitor-helper;
  122. animation-duration: 0.0001ms;
  123. animation-name: x-paint-monitor-helper;
  124. }
  125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:45 */
  126. .x-paint-monitor.overflowchange {
  127. overflow: hidden;
  128. }
  129. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/util/PaintMonitor.scss:48 */
  130. .x-paint-monitor.overflowchange::after {
  131. content: '';
  132. display: block;
  133. width: 1px !important;
  134. height: 1px !important;
  135. }
  136. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:2 */
  137. .x-unselectable {
  138. user-select: none;
  139. -o-user-select: none;
  140. -ms-user-select: none;
  141. -moz-user-select: -moz-none;
  142. -webkit-user-select: none;
  143. -webkit-tap-highlight-color: transparent;
  144. -webkit-user-drag: none;
  145. cursor: default;
  146. }
  147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:7 */
  148. .x-hidden-clip {
  149. position: absolute !important;
  150. clip: rect(0, 0, 0, 0);
  151. }
  152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:12 */
  153. .x-hidden-display {
  154. display: none !important;
  155. }
  156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:16 */
  157. .x-hidden-offsets,
  158. .x-hidden {
  159. display: block !important;
  160. visibility: hidden !important;
  161. position: absolute !important;
  162. top: -10000px !important;
  163. }
  164. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:26 */
  165. .x-hidden-opacity {
  166. opacity: 0 !important;
  167. pointer-events: none;
  168. }
  169. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:31 */
  170. .x-hidden-visibility {
  171. visibility: hidden !important;
  172. }
  173. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:36 */
  174. .x-pressed .x-ripple-transition,
  175. .x-pressing .x-ripple-transition {
  176. transition: background-color 0.15s 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  177. }
  178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:40 */
  179. .x-pressed .x-ripple-transition .x-icon-el,
  180. .x-pressed .x-ripple-transition .x-arrow-el,
  181. .x-pressing .x-ripple-transition .x-icon-el,
  182. .x-pressing .x-ripple-transition .x-arrow-el {
  183. transition: background-color 0.15s 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  184. }
  185. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:45 */
  186. .x-rippling {
  187. position: relative;
  188. }
  189. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:48 */
  190. .x-rippling.x-component-confirm .x-ripple {
  191. background-color: green;
  192. }
  193. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:52 */
  194. .x-rippling.x-component-decline .x-ripple {
  195. background-color: red;
  196. }
  197. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:57 */
  198. .x-rippling.x-rippling-unbound {
  199. overflow: visible !important;
  200. }
  201. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:59 */
  202. .x-rippling.x-rippling-unbound .x-ripple-container {
  203. overflow: visible;
  204. position: absolute;
  205. }
  206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:68 */
  207. .x-safari .x-rippling:not(.x-rippling-unbound) .x-ripple-container {
  208. -webkit-transform: rotate(0);
  209. -moz-transform: rotate(0);
  210. -ms-transform: rotate(0);
  211. -o-transform: rotate(0);
  212. transform: rotate(0);
  213. }
  214. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:72 */
  215. .x-ripple-container {
  216. overflow: hidden;
  217. position: absolute;
  218. top: 0;
  219. bottom: 0;
  220. left: 0;
  221. right: 0;
  222. pointer-events: none;
  223. }
  224. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:83 */
  225. .x-ripple-wrapper {
  226. z-index: 1000;
  227. }
  228. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:88 */
  229. .x-button-fab .x-ripple-container,
  230. .x-button-round .x-ripple-container {
  231. border-radius: 10000px;
  232. }
  233. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:93 */
  234. .x-splitButton-fab .x-ripple-container,
  235. .x-splitButton-round .x-ripple-container {
  236. border-radius: 10000px;
  237. }
  238. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:97 */
  239. .x-ripple {
  240. position: absolute;
  241. border-radius: 50%;
  242. background-color: white;
  243. -webkit-transform: scale(1, 1);
  244. -moz-transform: scale(1, 1);
  245. -ms-transform: scale(1, 1);
  246. -o-transform: scale(1, 1);
  247. transform: scale(1, 1);
  248. opacity: 0.4;
  249. pointer-events: none;
  250. }
  251. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:106 */
  252. .x-rippling.x-rippling-unbound .x-ripple {
  253. -webkit-animation: x-ripple-unbound-animation 0.3s ease-out forwards;
  254. animation: x-ripple-unbound-animation 0.3s ease-out forwards;
  255. }
  256. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:110 */
  257. .x-rippling:not(.x-rippling-unbound) .x-ripple {
  258. -webkit-animation: x-ripple-animation 0.35s ease-out forwards;
  259. animation: x-ripple-animation 0.35s ease-out forwards;
  260. }
  261. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/etc/mixins/animation.scss:17 */
  262. @-webkit-keyframes x-ripple-animation {
  263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:115 */
  264. 0% {
  265. -webkit-transform: scale(0, 0);
  266. -moz-transform: scale(0, 0);
  267. -ms-transform: scale(0, 0);
  268. -o-transform: scale(0, 0);
  269. transform: scale(0, 0);
  270. opacity: 0.4;
  271. }
  272. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:119 */
  273. 75% {
  274. -webkit-transform: scale(2, 2);
  275. -moz-transform: scale(2, 2);
  276. -ms-transform: scale(2, 2);
  277. -o-transform: scale(2, 2);
  278. transform: scale(2, 2);
  279. opacity: 0.2;
  280. }
  281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:123 */
  282. 100% {
  283. -webkit-transform: scale(2.35, 2.35);
  284. -moz-transform: scale(2.35, 2.35);
  285. -ms-transform: scale(2.35, 2.35);
  286. -o-transform: scale(2.35, 2.35);
  287. transform: scale(2.35, 2.35);
  288. opacity: 0;
  289. }
  290. }
  291. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/etc/mixins/animation.scss:20 */
  292. @keyframes x-ripple-animation {
  293. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:115 */
  294. 0% {
  295. -webkit-transform: scale(0, 0);
  296. -moz-transform: scale(0, 0);
  297. -ms-transform: scale(0, 0);
  298. -o-transform: scale(0, 0);
  299. transform: scale(0, 0);
  300. opacity: 0.4;
  301. }
  302. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:119 */
  303. 75% {
  304. -webkit-transform: scale(2, 2);
  305. -moz-transform: scale(2, 2);
  306. -ms-transform: scale(2, 2);
  307. -o-transform: scale(2, 2);
  308. transform: scale(2, 2);
  309. opacity: 0.2;
  310. }
  311. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:123 */
  312. 100% {
  313. -webkit-transform: scale(2.35, 2.35);
  314. -moz-transform: scale(2.35, 2.35);
  315. -ms-transform: scale(2.35, 2.35);
  316. -o-transform: scale(2.35, 2.35);
  317. transform: scale(2.35, 2.35);
  318. opacity: 0;
  319. }
  320. }
  321. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/etc/mixins/animation.scss:17 */
  322. @-webkit-keyframes x-ripple-unbound-animation {
  323. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:130 */
  324. 0% {
  325. -webkit-transform: scale(0, 0);
  326. -moz-transform: scale(0, 0);
  327. -ms-transform: scale(0, 0);
  328. -o-transform: scale(0, 0);
  329. transform: scale(0, 0);
  330. opacity: 0.4;
  331. }
  332. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:134 */
  333. 75% {
  334. -webkit-transform: scale(1.75, 1.75);
  335. -moz-transform: scale(1.75, 1.75);
  336. -ms-transform: scale(1.75, 1.75);
  337. -o-transform: scale(1.75, 1.75);
  338. transform: scale(1.75, 1.75);
  339. opacity: 0.2;
  340. }
  341. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:138 */
  342. 100% {
  343. -webkit-transform: scale(2, 2);
  344. -moz-transform: scale(2, 2);
  345. -ms-transform: scale(2, 2);
  346. -o-transform: scale(2, 2);
  347. transform: scale(2, 2);
  348. opacity: 0;
  349. }
  350. }
  351. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/etc/mixins/animation.scss:20 */
  352. @keyframes x-ripple-unbound-animation {
  353. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:130 */
  354. 0% {
  355. -webkit-transform: scale(0, 0);
  356. -moz-transform: scale(0, 0);
  357. -ms-transform: scale(0, 0);
  358. -o-transform: scale(0, 0);
  359. transform: scale(0, 0);
  360. opacity: 0.4;
  361. }
  362. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:134 */
  363. 75% {
  364. -webkit-transform: scale(1.75, 1.75);
  365. -moz-transform: scale(1.75, 1.75);
  366. -ms-transform: scale(1.75, 1.75);
  367. -o-transform: scale(1.75, 1.75);
  368. transform: scale(1.75, 1.75);
  369. opacity: 0.2;
  370. }
  371. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/Element.scss:138 */
  372. 100% {
  373. -webkit-transform: scale(2, 2);
  374. -moz-transform: scale(2, 2);
  375. -ms-transform: scale(2, 2);
  376. -o-transform: scale(2, 2);
  377. transform: scale(2, 2);
  378. opacity: 0;
  379. }
  380. }
  381. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/ProgressBase.scss:1 */
  382. .x-progress {
  383. overflow: hidden;
  384. position: relative;
  385. }
  386. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/ProgressBase.scss:6 */
  387. .x-progress-bar {
  388. height: 100%;
  389. width: 0;
  390. }
  391. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/ProgressBase.scss:11 */
  392. .x-progress-text {
  393. overflow: hidden;
  394. }
  395. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/ProgressBase.scss:15 */
  396. .x-progress-bar {
  397. overflow: hidden;
  398. position: absolute;
  399. top: 0;
  400. right: 0;
  401. bottom: 0;
  402. left: 0;
  403. }
  404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/TouchAction.scss:1 */
  405. .x-touch-action-pan-y {
  406. overflow-x: hidden !important;
  407. }
  408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/dom/TouchAction.scss:5 */
  409. .x-touch-action-pan-x {
  410. overflow-y: hidden !important;
  411. }
  412. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/drag/Source.scss:4 */
  413. .x-drag-body {
  414. cursor: default;
  415. }
  416. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/drag/Source.scss:6 */
  417. .x-drag-body * {
  418. -webkit-user-select: none;
  419. -moz-user-select: none;
  420. user-select: none;
  421. }
  422. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/drag/Source.scss:11 */
  423. .x-drag-dragging {
  424. z-index: 1000000!important;
  425. pointer-events: none;
  426. }
  427. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:576 */
  428. .x-treelist {
  429. background-color: #fff;
  430. background-color: var(--reverse-color);
  431. background-position: 16px 0%;
  432. overflow: hidden;
  433. padding: 0 0 0 0;
  434. }
  435. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:589 */
  436. .x-treelist-container,
  437. .x-treelist-root-container {
  438. width: 100%;
  439. }
  440. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:594 */
  441. .x-treelist-toolstrip {
  442. display: none;
  443. }
  444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:599 */
  445. .x-treelist-micro > .x-treelist-toolstrip {
  446. display: inline-block;
  447. }
  448. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:602 */
  449. .x-treelist-micro > .x-treelist-root-container {
  450. display: none;
  451. }
  452. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:607 */
  453. .x-treelist-item,
  454. .x-treelist-container,
  455. .x-treelist-root-container {
  456. position: relative;
  457. overflow: hidden;
  458. list-style: none;
  459. padding: 0;
  460. margin: 0;
  461. }
  462. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:617 */
  463. .x-treelist-item-tool,
  464. .x-treelist-row,
  465. .x-treelist-item-wrap {
  466. position: relative;
  467. }
  468. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:623 */
  469. .x-treelist-item-icon,
  470. .x-treelist-item-expander {
  471. display: none;
  472. position: absolute;
  473. top: 0;
  474. }
  475. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:630 */
  476. .x-treelist-item-expander {
  477. right: 0;
  478. cursor: pointer;
  479. }
  480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:635 */
  481. .x-treelist-expander-only .x-treelist-item-expandable > * > .x-treelist-item-wrap > * {
  482. cursor: pointer;
  483. }
  484. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:639 */
  485. .x-treelist-item-text {
  486. cursor: pointer;
  487. white-space: nowrap;
  488. overflow: hidden;
  489. }
  490. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:645 */
  491. .x-treelist-item-collapsed > .x-treelist-container {
  492. display: none;
  493. }
  494. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:649 */
  495. .x-treelist-item-expandable > * > * > .x-treelist-item-expander,
  496. .x-treelist-item-icon {
  497. display: block;
  498. }
  499. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:654 */
  500. .x-treelist-item-floated > * > * > .x-treelist-item-expander,
  501. .x-treelist-item-floated > * > * > .x-treelist-item-icon {
  502. display: none;
  503. }
  504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:659 */
  505. .x-treelist-expander-first .x-treelist-item-expander {
  506. left: 0;
  507. right: auto;
  508. }
  509. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:103 */
  510. .x-treelist-toolstrip {
  511. background-color: #e0e0e0;
  512. }
  513. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:134 */
  514. .x-treelist-item-selected > .x-treelist-row {
  515. background-color: #e0e0e0;
  516. background-color: var(--selected-background-color);
  517. }
  518. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:138 */
  519. .x-treelist-item-selected > .x-treelist-row-over {
  520. background-color: #e0e0e0;
  521. background-color: var(--selected-background-color);
  522. }
  523. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:143 */
  524. .x-treelist-item-tool {
  525. padding-left: 8px;
  526. padding-right: 8px;
  527. }
  528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:166 */
  529. .x-treelist-item-icon:before,
  530. .x-treelist-item-tool:before,
  531. .x-treelist-item-expander {
  532. line-height: 48px;
  533. }
  534. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:178 */
  535. .x-treelist-item-icon,
  536. .x-treelist-item-tool,
  537. .x-treelist-item-expander {
  538. text-align: center;
  539. background-repeat: no-repeat;
  540. background-position: 0 center;
  541. }
  542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:188 */
  543. .x-treelist-item-loading .x-treelist-item-icon {
  544. background-image: url(images/tree/loading.gif);
  545. color: transparent;
  546. }
  547. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:193 */
  548. .x-treelist-item-icon,
  549. .x-treelist-item-tool {
  550. color: #9e9e9e;
  551. color: var(--accent-color);
  552. font-size: 18px;
  553. width: 16px;
  554. }
  555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:206 */
  556. .x-treelist-item-tool {
  557. width: 32px;
  558. }
  559. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:216 */
  560. .x-treelist-item-expander {
  561. color: #9e9e9e;
  562. color: var(--accent-color);
  563. font-size: 16px;
  564. width: 18px;
  565. }
  566. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:232 */
  567. .x-treelist-item-expander:after {
  568. content: 'chevron_right';
  569. font: 18px/48px 'Material Icons', 'Font Awesome 5 Free';
  570. }
  571. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:240 */
  572. .x-treelist-item-expanded > * > * > .x-treelist-item-expander:after {
  573. content: 'expand_more';
  574. font: 18px/48px 'Material Icons', 'Font Awesome 5 Free';
  575. }
  576. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:253 */
  577. .x-treelist-item-text {
  578. color: #111;
  579. color: var(--color);
  580. margin-left: 22px;
  581. margin-right: 18px;
  582. font-size: 13px;
  583. line-height: 48px;
  584. text-overflow: ellipsis;
  585. }
  586. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:270 */
  587. .x-treelist-row {
  588. padding-left: 8px;
  589. padding-right: 8px;
  590. }
  591. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:301 */
  592. .x-treelist-item-floated .x-treelist-container {
  593. width: auto;
  594. }
  595. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:304 */
  596. .x-treelist-item-floated > .x-treelist-row {
  597. background-color: #e0e0e0;
  598. }
  599. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:308 */
  600. .x-treelist-item-floated > .x-treelist-container {
  601. margin-left: -8px;
  602. }
  603. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:311 */
  604. .x-big .x-treelist-item-floated > .x-treelist-container {
  605. margin-left: -8px;
  606. }
  607. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:317 */
  608. .x-treelist-item-floated > * > * > .x-treelist-item-text {
  609. margin-left: 0;
  610. }
  611. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:321 */
  612. .x-treelist-item-floated > * .x-treelist-row {
  613. cursor: pointer;
  614. padding-left: 0;
  615. }
  616. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:326 */
  617. .x-treelist-item-floated .x-treelist-row:before {
  618. width: 0;
  619. }
  620. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:330 */
  621. .x-treelist-item-floated > .x-treelist-row-over {
  622. background-color: #e0e0e0;
  623. }
  624. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:333 */
  625. .x-treelist-item-floated > .x-treelist-row-over > * > .x-treelist-item-text {
  626. color: #111;
  627. color: var(--color);
  628. }
  629. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:346 */
  630. .x-treelist-item-expanded > .x-treelist-item-expander:after {
  631. content: 'expand_more';
  632. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  633. }
  634. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:351 */
  635. .x-treelist-item-collapsed > * > .x-treelist-item-expander:after {
  636. content: 'chevron_right';
  637. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  638. }
  639. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:357 */
  640. .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-icon {
  641. color: #9e9e9e;
  642. color: var(--accent-color);
  643. transition: color 0.5s;
  644. }
  645. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:361 */
  646. .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-text {
  647. color: #111;
  648. color: var(--color);
  649. transition: color 0.5s;
  650. }
  651. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:365 */
  652. .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-expander {
  653. color: #9e9e9e;
  654. color: var(--accent-color);
  655. transition: color 0.5s;
  656. }
  657. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:372 */
  658. .x-treelist-row-over {
  659. background-color: #eee;
  660. background-color: var(--hovered-background-color);
  661. }
  662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:376 */
  663. .x-treelist-row-over > * > .x-treelist-item-icon {
  664. color: #9e9e9e;
  665. color: var(--accent-color);
  666. transition: color 0.5s;
  667. }
  668. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:380 */
  669. .x-treelist-row-over > * > .x-treelist-item-text {
  670. color: #111;
  671. color: var(--color);
  672. transition: color 0.5s;
  673. }
  674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:384 */
  675. .x-treelist-row-over > * > .x-treelist-item-expander {
  676. color: #9e9e9e;
  677. color: var(--accent-color);
  678. transition: color 0.5s;
  679. }
  680. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:391 */
  681. .x-treelist-expander-first .x-treelist-item-icon {
  682. left: 18px;
  683. }
  684. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:400 */
  685. .x-treelist-expander-first .x-treelist-item-text {
  686. margin-left: 40px;
  687. margin-right: 0;
  688. }
  689. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:410 */
  690. .x-treelist-expander-first .x-treelist-item-hide-icon > * > * > .x-treelist-item-text {
  691. margin-left: 21px;
  692. }
  693. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:420 */
  694. .x-treelist-item-hide-icon > * > * > .x-treelist-item-text {
  695. margin-left: 3px;
  696. }
  697. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:495 */
  698. .x-treelist-nav {
  699. background-color: #32404e;
  700. background-position: 24px 0%;
  701. padding: 0 0 0 0;
  702. }
  703. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:103 */
  704. .x-treelist-nav .x-treelist-toolstrip {
  705. background-color: #32404e;
  706. }
  707. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:112 */
  708. .x-treelist-nav .x-treelist-item-selected.x-treelist-item-tool {
  709. color: #f0f0f0;
  710. background-color: #5fa2dd;
  711. }
  712. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:134 */
  713. .x-treelist-nav .x-treelist-item-selected > .x-treelist-row {
  714. background-color: #3f505f;
  715. }
  716. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:143 */
  717. .x-treelist-nav .x-treelist-item-tool {
  718. padding-left: 10px;
  719. padding-right: 10px;
  720. }
  721. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:150 */
  722. .x-treelist-nav .x-treelist-item-tool-floated:after {
  723. height: 44px;
  724. position: absolute;
  725. top: 0;
  726. left: 0;
  727. content: " ";
  728. width: 4px;
  729. background-color: #5fa2dd;
  730. }
  731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:166 */
  732. .x-treelist-nav .x-treelist-item-icon:before,
  733. .x-treelist-nav .x-treelist-item-tool:before,
  734. .x-treelist-nav .x-treelist-item-expander {
  735. line-height: 44px;
  736. }
  737. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:178 */
  738. .x-treelist-nav .x-treelist-item-icon,
  739. .x-treelist-nav .x-treelist-item-tool,
  740. .x-treelist-nav .x-treelist-item-expander {
  741. text-align: center;
  742. background-repeat: no-repeat;
  743. background-position: 0 center;
  744. }
  745. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:188 */
  746. .x-treelist-nav .x-treelist-item-loading .x-treelist-item-icon {
  747. background-image: url(images/tree/loading.gif);
  748. color: transparent;
  749. }
  750. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:193 */
  751. .x-treelist-nav .x-treelist-item-icon,
  752. .x-treelist-nav .x-treelist-item-tool {
  753. color: #adb3b8;
  754. font-size: 18px;
  755. width: 24px;
  756. }
  757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:206 */
  758. .x-treelist-nav .x-treelist-item-tool {
  759. width: 44px;
  760. }
  761. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:216 */
  762. .x-treelist-nav .x-treelist-item-expander {
  763. color: #adb3b8;
  764. font-size: 16px;
  765. width: 24px;
  766. }
  767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:253 */
  768. .x-treelist-nav .x-treelist-item-text {
  769. color: #adb3b8;
  770. margin-left: 30px;
  771. margin-right: 24px;
  772. font-size: 16px;
  773. line-height: 44px;
  774. }
  775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:270 */
  776. .x-treelist-nav .x-treelist-row {
  777. padding-left: 10px;
  778. padding-right: 10px;
  779. }
  780. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:276 */
  781. .x-treelist-nav .x-treelist-row-over:before,
  782. .x-treelist-nav .x-treelist-item-selected > .x-treelist-row:before {
  783. content: " ";
  784. position: absolute;
  785. display: block;
  786. left: 0;
  787. top: 0;
  788. width: 6px;
  789. height: 100%;
  790. }
  791. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:287 */
  792. .x-treelist-nav .x-treelist-row-over:before {
  793. background-color: #51adf6;
  794. }
  795. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:291 */
  796. .x-treelist-nav .x-treelist-item-selected > .x-treelist-row-over:before {
  797. background-color: #51adf6;
  798. }
  799. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:295 */
  800. .x-treelist-nav .x-treelist-item-selected > .x-treelist-row:before {
  801. background-color: #2196f3;
  802. background-color: var(--base-color);
  803. }
  804. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:301 */
  805. .x-treelist-nav .x-treelist-item-floated .x-treelist-container {
  806. width: auto;
  807. }
  808. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:304 */
  809. .x-treelist-nav .x-treelist-item-floated > .x-treelist-row {
  810. background-color: #32404e;
  811. }
  812. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:308 */
  813. .x-treelist-nav .x-treelist-item-floated > .x-treelist-container {
  814. margin-left: -10px;
  815. }
  816. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:311 */
  817. .x-big .x-treelist-nav .x-treelist-item-floated > .x-treelist-container {
  818. margin-left: -10px;
  819. }
  820. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:317 */
  821. .x-treelist-nav .x-treelist-item-floated > * > * > .x-treelist-item-text {
  822. margin-left: 0;
  823. }
  824. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:321 */
  825. .x-treelist-nav .x-treelist-item-floated > * .x-treelist-row {
  826. cursor: pointer;
  827. padding-left: 0;
  828. }
  829. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:326 */
  830. .x-treelist-nav .x-treelist-item-floated .x-treelist-row:before {
  831. width: 0;
  832. }
  833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:330 */
  834. .x-treelist-nav .x-treelist-item-floated > .x-treelist-row-over {
  835. background-color: #32404e;
  836. }
  837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:333 */
  838. .x-treelist-nav .x-treelist-item-floated > .x-treelist-row-over > * > .x-treelist-item-text {
  839. color: #adb3b8;
  840. }
  841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:339 */
  842. .x-treelist-nav .x-treelist-item-expanded {
  843. background-color: #2c3845;
  844. }
  845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:357 */
  846. .x-treelist-nav .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-icon {
  847. color: #fff;
  848. }
  849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:361 */
  850. .x-treelist-nav .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-text {
  851. color: #fff;
  852. }
  853. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:365 */
  854. .x-treelist-nav .x-treelist-highlight-path .x-treelist-item-over > * > * > .x-treelist-item-expander {
  855. color: #fff;
  856. }
  857. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:372 */
  858. .x-treelist-nav .x-treelist-row-over {
  859. background-color: #4f606f;
  860. }
  861. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:376 */
  862. .x-treelist-nav .x-treelist-row-over > * > .x-treelist-item-icon {
  863. color: #fff;
  864. }
  865. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:380 */
  866. .x-treelist-nav .x-treelist-row-over > * > .x-treelist-item-text {
  867. color: #fff;
  868. }
  869. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:384 */
  870. .x-treelist-nav .x-treelist-row-over > * > .x-treelist-item-expander {
  871. color: #fff;
  872. }
  873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:391 */
  874. .x-treelist-nav .x-treelist-expander-first .x-treelist-item-icon {
  875. left: 24px;
  876. }
  877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:400 */
  878. .x-treelist-nav .x-treelist-expander-first .x-treelist-item-text {
  879. margin-left: 54px;
  880. margin-right: 0;
  881. }
  882. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:410 */
  883. .x-treelist-nav .x-treelist-expander-first .x-treelist-item-hide-icon > * > * > .x-treelist-item-text {
  884. margin-left: 27px;
  885. }
  886. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/packages/core/sass/src/list/TreeItem.scss:420 */
  887. .x-treelist-nav .x-treelist-item-hide-icon > * > * > .x-treelist-item-text {
  888. margin-left: 3px;
  889. }
  890. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/scroll/Scroller.scss:1 */
  891. .x-scroller {
  892. -webkit-overflow-scrolling: touch;
  893. overflow-anchor: none;
  894. }
  895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/scroll/Scroller.scss:6 */
  896. .x-scroller-spacer {
  897. position: absolute;
  898. top: 0;
  899. overflow: hidden;
  900. height: 1px;
  901. width: 1px;
  902. font-size: 0;
  903. line-height: 0;
  904. pointer-events: none;
  905. }
  906. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/scroll/Scroller.scss:17 */
  907. .x-scroller-snappable {
  908. -ms-scroll-snap-type: mandatory;
  909. -webkit-scroll-snap-type: mandatory;
  910. scroll-snap-type: mandatory;
  911. }
  912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/scroll/Scroller.scss:23 */
  913. .x-no-scrollbars {
  914. -ms-overflow-style: none;
  915. }
  916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/scroll/Scroller.scss:26 */
  917. .x-no-scrollbars::-webkit-scrollbar {
  918. width: 0;
  919. }
  920. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:14 */
  921. .x-body {
  922. margin: 0;
  923. -webkit-font-smoothing: antialiased;
  924. -moz-osx-font-smoothing: grayscale;
  925. }
  926. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:23 */
  927. @-ms-viewport {
  928. width: device-width;
  929. }
  930. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:28 */
  931. img {
  932. border: 0;
  933. }
  934. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:32 */
  935. .x-border-box,
  936. .x-border-box * {
  937. box-sizing: border-box;
  938. -moz-box-sizing: border-box;
  939. -ms-box-sizing: border-box;
  940. -webkit-box-sizing: border-box;
  941. }
  942. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:41 */
  943. .x-rtl {
  944. direction: rtl;
  945. }
  946. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:46 */
  947. .x-ltr {
  948. direction: ltr;
  949. }
  950. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:50 */
  951. .x-clear {
  952. overflow: hidden;
  953. clear: both;
  954. font-size: 0;
  955. line-height: 0;
  956. display: table;
  957. }
  958. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:58 */
  959. .x-layer {
  960. position: absolute !important;
  961. top: 0;
  962. left: 0;
  963. overflow: hidden;
  964. }
  965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:72 */
  966. .x-fixed-layer {
  967. position: fixed !important;
  968. overflow: hidden;
  969. }
  970. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:77 */
  971. .x-shim {
  972. position: absolute;
  973. left: 0;
  974. top: 0;
  975. overflow: hidden;
  976. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  977. opacity: 0;
  978. }
  979. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:90 */
  980. .x-hidden-clip {
  981. position: absolute !important;
  982. clip: rect(0, 0, 0, 0);
  983. }
  984. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:95 */
  985. .x-masked-relative {
  986. position: relative;
  987. }
  988. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:101 */
  989. .x-ie-shadow {
  990. background-color: #777;
  991. position: absolute;
  992. overflow: hidden;
  993. }
  994. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:108 */
  995. .x-selectable {
  996. cursor: auto;
  997. -moz-user-select: text;
  998. -webkit-user-select: text;
  999. -ms-user-select: text;
  1000. user-select: text;
  1001. -o-user-select: text;
  1002. }
  1003. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:123 */
  1004. .x-list-plain {
  1005. list-style-type: none;
  1006. margin: 0;
  1007. padding: 0;
  1008. }
  1009. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:130 */
  1010. .x-table-plain {
  1011. border-collapse: collapse;
  1012. border-spacing: 0;
  1013. font-size: 1em;
  1014. }
  1015. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:138 */
  1016. .x-frame-tl,
  1017. .x-frame-tr,
  1018. .x-frame-tc,
  1019. .x-frame-bl,
  1020. .x-frame-br,
  1021. .x-frame-bc {
  1022. overflow: hidden;
  1023. background-repeat: no-repeat;
  1024. }
  1025. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:148 */
  1026. .x-frame-tc,
  1027. .x-frame-bc {
  1028. background-repeat: repeat-x;
  1029. }
  1030. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:157 */
  1031. td.x-frame-tl,
  1032. td.x-frame-tr,
  1033. td.x-frame-bl,
  1034. td.x-frame-br {
  1035. width: 1px;
  1036. }
  1037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:164 */
  1038. .x-frame-mc {
  1039. background-repeat: repeat-x;
  1040. overflow: hidden;
  1041. }
  1042. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:169 */
  1043. .x-proxy-el {
  1044. position: absolute;
  1045. background: #b4b4b4;
  1046. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  1047. opacity: 0.8;
  1048. }
  1049. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:176 */
  1050. .x-css-shadow {
  1051. position: absolute;
  1052. -webkit-border-radius: 5px;
  1053. -moz-border-radius: 5px;
  1054. -ms-border-radius: 5px;
  1055. -o-border-radius: 5px;
  1056. border-radius: 5px;
  1057. }
  1058. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:181 */
  1059. .x-item-disabled,
  1060. .x-item-disabled * {
  1061. cursor: default;
  1062. pointer-events: none;
  1063. }
  1064. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:187 */
  1065. .x-component,
  1066. .x-container {
  1067. position: relative;
  1068. }
  1069. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:197 */
  1070. :focus {
  1071. outline: none;
  1072. }
  1073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:206 */
  1074. .x-body .x-sync-repaint:before,
  1075. .x-body .x-sync-repaint:after {
  1076. content: none !important;
  1077. }
  1078. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:215 */
  1079. .x-position-relative {
  1080. position: relative !important;
  1081. }
  1082. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/Component.scss:221 */
  1083. .x-tab-guard {
  1084. position: absolute;
  1085. clip: rect(0, 0, 0, 0);
  1086. }
  1087. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Container.scss:3 */
  1088. .x-box-item {
  1089. position: absolute !important;
  1090. left: 0;
  1091. top: 0;
  1092. }
  1093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Container.scss:10 */
  1094. .x-rtl > .x-box-item {
  1095. right: 0;
  1096. left: auto;
  1097. }
  1098. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Auto.scss:1 */
  1099. .x-autocontainer-outerCt {
  1100. display: table;
  1101. }
  1102. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Auto.scss:4 */
  1103. .x-mobile-safari .x-autocontainer-outerCt {
  1104. transform: translateZ(0);
  1105. }
  1106. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Auto.scss:14 */
  1107. .x-clipped .x-autocontainer-outerCt {
  1108. transform: initial;
  1109. }
  1110. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Auto.scss:18 */
  1111. .x-autocontainer-innerCt {
  1112. display: table-cell;
  1113. height: 100%;
  1114. vertical-align: top;
  1115. }
  1116. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/LoadMask.scss:1 */
  1117. .x-mask {
  1118. z-index: 100;
  1119. position: absolute;
  1120. top: 0;
  1121. left: 0;
  1122. width: 100%;
  1123. height: 100%;
  1124. /*
  1125. * IE and FF will add an outline to focused elements,
  1126. * which we don't want when using our own focus treatment
  1127. */
  1128. outline: none !important;
  1129. }
  1130. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/LoadMask.scss:21 */
  1131. .x-ie8 .x-mask {
  1132. /*
  1133. * IE8 will treat partially transparent divs as invalid click targets,
  1134. * allowing mouse events to reach elements beneath the mask. Placing
  1135. * a 1x1 transparent gif as the link el background will cure this.
  1136. */
  1137. background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  1138. }
  1139. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/LoadMask.scss:27 */
  1140. .x-mask-fixed {
  1141. position: fixed;
  1142. }
  1143. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/LoadMask.scss:31 */
  1144. .x-mask-msg {
  1145. position: absolute;
  1146. }
  1147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/ProgressBar.scss:1 */
  1148. .x-progress {
  1149. border-style: solid;
  1150. }
  1151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:21 */
  1152. .x-btn {
  1153. display: inline-block;
  1154. outline: 0;
  1155. cursor: pointer;
  1156. white-space: nowrap;
  1157. text-decoration: none;
  1158. vertical-align: top;
  1159. overflow: hidden;
  1160. position: relative;
  1161. }
  1162. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:33 */
  1163. .x-btn > .x-frame {
  1164. height: 100%;
  1165. width: 100%;
  1166. }
  1167. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:39 */
  1168. .x-btn-wrap {
  1169. height: 100%;
  1170. width: 100%;
  1171. display: -webkit-box;
  1172. display: -ms-flexbox;
  1173. display: flex;
  1174. -webkit-box-align: stretch;
  1175. -ms-flex-align: stretch;
  1176. align-items: stretch;
  1177. }
  1178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:47 */
  1179. .x-btn-wrap.x-btn-arrow-bottom,
  1180. .x-btn-wrap.x-btn-split-bottom {
  1181. -webkit-box-orient: vertical;
  1182. -ms-flex-direction: column;
  1183. flex-direction: column;
  1184. }
  1185. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:53 */
  1186. .x-ie9m .x-btn-wrap {
  1187. display: table;
  1188. border-spacing: 0;
  1189. }
  1190. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:64 */
  1191. .x-btn-button {
  1192. white-space: nowrap;
  1193. line-height: 0;
  1194. position: relative;
  1195. display: -webkit-box;
  1196. display: -ms-flexbox;
  1197. display: flex;
  1198. -webkit-box-align: center;
  1199. -ms-flex-align: center;
  1200. align-items: center;
  1201. -webkit-box-flex: 1;
  1202. -ms-flex: 1 1 auto;
  1203. flex: 1 1 auto;
  1204. min-width: 0;
  1205. }
  1206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:76 */
  1207. .x-btn-button.x-btn-icon-top,
  1208. .x-btn-button.x-btn-icon-bottom {
  1209. -webkit-box-orient: vertical;
  1210. -ms-flex-direction: column;
  1211. flex-direction: column;
  1212. -webkit-box-align: stretch;
  1213. -ms-flex-align: stretch;
  1214. align-items: stretch;
  1215. -webkit-box-pack: center;
  1216. -ms-flex-pack: center;
  1217. justify-content: center;
  1218. }
  1219. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:85 */
  1220. .x-ie10p .x-btn-button.x-btn-icon-top,
  1221. .x-ie10p .x-btn-button.x-btn-icon-bottom {
  1222. overflow: hidden;
  1223. }
  1224. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:92 */
  1225. .x-ie9m .x-btn-button {
  1226. display: table-cell;
  1227. vertical-align: middle;
  1228. }
  1229. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:103 */
  1230. .x-btn-inner {
  1231. overflow: hidden;
  1232. text-overflow: ellipsis;
  1233. -ms-flex-negative: 1;
  1234. display: block;
  1235. }
  1236. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:112 */
  1237. .x-ie9m .x-btn-inner {
  1238. display: inline-block;
  1239. vertical-align: middle;
  1240. }
  1241. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:122 */
  1242. .x-btn-icon.x-btn-no-text > .x-btn-inner {
  1243. display: none;
  1244. }
  1245. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:127 */
  1246. .x-btn-icon-el {
  1247. display: none;
  1248. vertical-align: middle;
  1249. text-align: center;
  1250. background-position: center center;
  1251. background-repeat: no-repeat;
  1252. flex-shrink: 0;
  1253. }
  1254. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:137 */
  1255. .x-btn-icon > .x-btn-icon-el {
  1256. display: block;
  1257. }
  1258. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:142 */
  1259. .x-ie9m .x-btn-icon-left > .x-btn-icon-el,
  1260. .x-ie9m .x-btn-icon-right > .x-btn-icon-el {
  1261. display: inline-block;
  1262. }
  1263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:159 */
  1264. .x-btn-button-center {
  1265. -webkit-box-pack: center;
  1266. -ms-flex-pack: center;
  1267. justify-content: center;
  1268. }
  1269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:161 */
  1270. .x-ie9m .x-btn-button-center {
  1271. text-align: center;
  1272. }
  1273. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:169 */
  1274. .x-btn-button-center.x-btn-icon-top,
  1275. .x-btn-button-center.x-btn-icon-bottom {
  1276. text-align: center;
  1277. }
  1278. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:175 */
  1279. .x-btn-button-left {
  1280. text-align: left;
  1281. -webkit-box-pack: start;
  1282. -ms-flex-pack: start;
  1283. justify-content: flex-start;
  1284. }
  1285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:183 */
  1286. .x-rtl.x-btn-button-left {
  1287. text-align: right;
  1288. }
  1289. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:188 */
  1290. .x-btn-button-right {
  1291. text-align: right;
  1292. -webkit-box-pack: end;
  1293. -ms-flex-pack: end;
  1294. justify-content: flex-end;
  1295. }
  1296. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:195 */
  1297. .x-btn-tooltip {
  1298. display: none;
  1299. position: absolute;
  1300. pointer-events: auto;
  1301. top: 0;
  1302. bottom: 0;
  1303. left: 0;
  1304. right: 0;
  1305. }
  1306. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:204 */
  1307. .x-btn-disabled .x-btn-tooltip {
  1308. display: block;
  1309. }
  1310. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:210 */
  1311. .x-rtl.x-btn-button-right {
  1312. text-align: left;
  1313. }
  1314. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:216 */
  1315. .x-btn-arrow:after,
  1316. .x-btn-split:after {
  1317. display: block;
  1318. background-repeat: no-repeat;
  1319. content: '';
  1320. box-sizing: border-box;
  1321. -moz-box-sizing: border-box;
  1322. -ms-box-sizing: border-box;
  1323. -webkit-box-sizing: border-box;
  1324. text-align: center;
  1325. }
  1326. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:230 */
  1327. .x-btn-arrow-right:after,
  1328. .x-btn-split-right:after {
  1329. background-position: right center;
  1330. display: -webkit-box;
  1331. display: -ms-flexbox;
  1332. display: flex;
  1333. -webkit-box-align: center;
  1334. -ms-flex-align: center;
  1335. align-items: center;
  1336. -webkit-box-pack: center;
  1337. -ms-flex-pack: center;
  1338. justify-content: center;
  1339. }
  1340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:240 */
  1341. .x-ie9m .x-btn-arrow-right:after,
  1342. .x-ie9m .x-btn-split-right:after {
  1343. display: table-cell;
  1344. vertical-align: middle;
  1345. }
  1346. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:253 */
  1347. .x-rtl.x-btn-arrow-right:after,
  1348. .x-rtl.x-btn-split-right:after {
  1349. background-position: left center;
  1350. }
  1351. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:260 */
  1352. .x-btn-arrow-bottom:after,
  1353. .x-btn-split-bottom:after {
  1354. background-position: center bottom;
  1355. content: '\00a0';
  1356. line-height: 0;
  1357. }
  1358. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:273 */
  1359. .x-ie9m .x-btn-arrow-bottom:after,
  1360. .x-ie9m .x-btn-split-bottom:after {
  1361. display: table-row;
  1362. }
  1363. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:283 */
  1364. .x-btn-split-right > .x-btn-button:after {
  1365. position: absolute;
  1366. display: block;
  1367. top: -100%;
  1368. right: 0;
  1369. height: 300%;
  1370. content: '';
  1371. }
  1372. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:293 */
  1373. .x-rtl.x-btn-split-right > .x-btn-button:after {
  1374. left: 0;
  1375. right: auto;
  1376. }
  1377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:300 */
  1378. .x-btn-split-bottom > .x-btn-button:after {
  1379. position: absolute;
  1380. display: block;
  1381. bottom: 0;
  1382. left: -100%;
  1383. font-size: 0;
  1384. width: 300%;
  1385. content: '';
  1386. }
  1387. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:311 */
  1388. .x-btn-mc {
  1389. overflow: visible;
  1390. }
  1391. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:1 */
  1392. .x-segmented-button {
  1393. display: table;
  1394. table-layout: fixed;
  1395. }
  1396. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:6 */
  1397. .x-segmented-button-item {
  1398. display: table-cell;
  1399. vertical-align: top;
  1400. }
  1401. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:10 */
  1402. .x-segmented-button-item > .x-frame {
  1403. width: 100%;
  1404. height: 100%;
  1405. }
  1406. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:17 */
  1407. .x-segmented-button-item .x-btn-mc {
  1408. width: 100%;
  1409. }
  1410. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:23 */
  1411. .x-segmented-button-item-horizontal {
  1412. display: table-cell;
  1413. height: 100%;
  1414. }
  1415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:30 */
  1416. .x-segmented-button-item-horizontal.x-segmented-button-first {
  1417. border-top-right-radius: 0;
  1418. border-bottom-right-radius: 0;
  1419. }
  1420. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:35 */
  1421. .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-tr,
  1422. .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-mr,
  1423. .x-segmented-button-item-horizontal.x-segmented-button-first .x-btn-br {
  1424. display: none;
  1425. }
  1426. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:43 */
  1427. .x-segmented-button-item-horizontal.x-segmented-button-middle {
  1428. border-radius: 0;
  1429. border-left: 0;
  1430. }
  1431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:48 */
  1432. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-tl,
  1433. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-tr,
  1434. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-ml,
  1435. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-mr,
  1436. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-bl,
  1437. .x-segmented-button-item-horizontal.x-segmented-button-middle .x-btn-br {
  1438. display: none;
  1439. }
  1440. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:59 */
  1441. .x-segmented-button-item-horizontal.x-segmented-button-last {
  1442. border-left: 0;
  1443. border-top-left-radius: 0;
  1444. border-bottom-left-radius: 0;
  1445. }
  1446. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:65 */
  1447. .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-tl,
  1448. .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-ml,
  1449. .x-segmented-button-item-horizontal.x-segmented-button-last .x-btn-bl {
  1450. display: none;
  1451. }
  1452. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:74 */
  1453. .x-segmented-button-row {
  1454. display: table-row;
  1455. }
  1456. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:79 */
  1457. .x-segmented-button-item-vertical.x-segmented-button-first {
  1458. border-bottom-right-radius: 0;
  1459. border-bottom-left-radius: 0;
  1460. }
  1461. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:84 */
  1462. .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-bl,
  1463. .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-bc,
  1464. .x-segmented-button-item-vertical.x-segmented-button-first .x-btn-br {
  1465. display: none;
  1466. }
  1467. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:92 */
  1468. .x-segmented-button-item-vertical.x-segmented-button-middle {
  1469. border-radius: 0;
  1470. border-top: 0;
  1471. }
  1472. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:97 */
  1473. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tl,
  1474. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tc,
  1475. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-tr,
  1476. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-bl,
  1477. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-bc,
  1478. .x-segmented-button-item-vertical.x-segmented-button-middle .x-btn-br {
  1479. display: none;
  1480. }
  1481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:108 */
  1482. .x-segmented-button-item-vertical.x-segmented-button-last {
  1483. border-top: 0;
  1484. border-top-right-radius: 0;
  1485. border-top-left-radius: 0;
  1486. }
  1487. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/button/Segmented.scss:114 */
  1488. .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tl,
  1489. .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tc,
  1490. .x-segmented-button-item-vertical.x-segmented-button-last .x-btn-tr {
  1491. display: none;
  1492. }
  1493. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:1 */
  1494. .x-title-icon {
  1495. background-repeat: no-repeat;
  1496. background-position: 0 0;
  1497. vertical-align: middle;
  1498. line-height: 1;
  1499. text-align: center;
  1500. }
  1501. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:9 */
  1502. .x-title {
  1503. display: table;
  1504. table-layout: fixed;
  1505. }
  1506. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:15 */
  1507. .x-rtl.x-title {
  1508. -o-text-overflow: clip;
  1509. text-overflow: clip;
  1510. }
  1511. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:21 */
  1512. .x-title-text {
  1513. display: table-cell;
  1514. overflow: hidden;
  1515. white-space: nowrap;
  1516. -o-text-overflow: ellipsis;
  1517. text-overflow: ellipsis;
  1518. vertical-align: middle;
  1519. }
  1520. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:30 */
  1521. .x-title-align-left {
  1522. text-align: left;
  1523. }
  1524. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:33 */
  1525. .x-title-align-left.x-rtl {
  1526. text-align: right;
  1527. }
  1528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:39 */
  1529. .x-title-align-center {
  1530. text-align: center;
  1531. }
  1532. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:43 */
  1533. .x-title-align-right {
  1534. text-align: right;
  1535. }
  1536. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:46 */
  1537. .x-title-align-right.x-rtl {
  1538. text-align: left;
  1539. }
  1540. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:52 */
  1541. .x-title-rotate-right {
  1542. -webkit-transform: rotate(90deg);
  1543. -webkit-transform-origin: 0 0;
  1544. -moz-transform: rotate(90deg);
  1545. -moz-transform-origin: 0 0;
  1546. -ms-transform: rotate(90deg);
  1547. -ms-transform-origin: 0 0;
  1548. transform: rotate(90deg);
  1549. transform-origin: 0 0;
  1550. }
  1551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  1552. .x-ie8 .x-title-rotate-right {
  1553. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  1554. }
  1555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:56 */
  1556. .x-title-rotate-right.x-rtl {
  1557. -webkit-transform: rotate(270deg);
  1558. -webkit-transform-origin: 100% 0;
  1559. -moz-transform: rotate(270deg);
  1560. -moz-transform-origin: 100% 0;
  1561. -ms-transform: rotate(270deg);
  1562. -ms-transform-origin: 100% 0;
  1563. transform: rotate(270deg);
  1564. transform-origin: 100% 0;
  1565. }
  1566. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  1567. .x-ie8 .x-title-rotate-right.x-rtl {
  1568. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  1569. }
  1570. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:62 */
  1571. .x-title-rotate-left {
  1572. -webkit-transform: rotate(270deg);
  1573. -webkit-transform-origin: 100% 0;
  1574. -moz-transform: rotate(270deg);
  1575. -moz-transform-origin: 100% 0;
  1576. -ms-transform: rotate(270deg);
  1577. -ms-transform-origin: 100% 0;
  1578. transform: rotate(270deg);
  1579. transform-origin: 100% 0;
  1580. }
  1581. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  1582. .x-ie8 .x-title-rotate-left {
  1583. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  1584. }
  1585. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:66 */
  1586. .x-title-rotate-left.x-rtl {
  1587. -webkit-transform: rotate(90deg);
  1588. -webkit-transform-origin: 0 0;
  1589. -moz-transform: rotate(90deg);
  1590. -moz-transform-origin: 0 0;
  1591. -ms-transform: rotate(90deg);
  1592. -ms-transform-origin: 0 0;
  1593. transform: rotate(90deg);
  1594. transform-origin: 0 0;
  1595. }
  1596. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  1597. .x-ie8 .x-title-rotate-left.x-rtl {
  1598. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  1599. }
  1600. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:75 */
  1601. .x-horizontal.x-header .x-title-rotate-right.x-title-align-left > .x-title-item {
  1602. vertical-align: bottom;
  1603. }
  1604. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:79 */
  1605. .x-horizontal.x-header .x-title-rotate-right.x-title-align-center > .x-title-item {
  1606. vertical-align: middle;
  1607. }
  1608. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:83 */
  1609. .x-horizontal.x-header .x-title-rotate-right.x-title-align-right > .x-title-item {
  1610. vertical-align: top;
  1611. }
  1612. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:89 */
  1613. .x-horizontal.x-header .x-title-rotate-left.x-title-align-left > .x-title-item {
  1614. vertical-align: top;
  1615. }
  1616. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:93 */
  1617. .x-horizontal.x-header .x-title-rotate-left.x-title-align-center > .x-title-item {
  1618. vertical-align: middle;
  1619. }
  1620. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:97 */
  1621. .x-horizontal.x-header .x-title-rotate-left.x-title-align-right > .x-title-item {
  1622. vertical-align: bottom;
  1623. }
  1624. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:105 */
  1625. .x-vertical.x-header .x-title-rotate-none.x-title-align-left > .x-title-item {
  1626. vertical-align: top;
  1627. }
  1628. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:109 */
  1629. .x-vertical.x-header .x-title-rotate-none.x-title-align-center > .x-title-item {
  1630. vertical-align: middle;
  1631. }
  1632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:113 */
  1633. .x-vertical.x-header .x-title-rotate-none.x-title-align-right > .x-title-item {
  1634. vertical-align: bottom;
  1635. }
  1636. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:120 */
  1637. .x-title-icon-wrap {
  1638. display: table-cell;
  1639. text-align: center;
  1640. vertical-align: middle;
  1641. line-height: 0;
  1642. }
  1643. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:125 */
  1644. .x-title-icon-wrap.x-title-icon-top,
  1645. .x-title-icon-wrap.x-title-icon-bottom {
  1646. display: table-row;
  1647. }
  1648. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Title.scss:131 */
  1649. .x-title-icon {
  1650. display: inline-block;
  1651. vertical-align: middle;
  1652. background-position: center;
  1653. background-repeat: no-repeat;
  1654. }
  1655. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Tool.scss:1 */
  1656. .x-tool {
  1657. font-size: 16px;
  1658. line-height: 1;
  1659. }
  1660. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Header.scss:4 */
  1661. .x-header > .x-box-inner,
  1662. .x-panel-header-mc > .x-box-inner,
  1663. .x-window-header-mc > .x-box-inner {
  1664. overflow: visible;
  1665. }
  1666. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:1 */
  1667. .x-splitter {
  1668. font-size: 1px;
  1669. }
  1670. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:5 */
  1671. .x-splitter-horizontal {
  1672. cursor: e-resize;
  1673. cursor: row-resize;
  1674. }
  1675. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:10 */
  1676. .x-splitter-vertical {
  1677. cursor: e-resize;
  1678. cursor: col-resize;
  1679. }
  1680. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:15 */
  1681. .x-splitter-collapsed,
  1682. .x-splitter-horizontal-noresize,
  1683. .x-splitter-vertical-noresize {
  1684. cursor: default;
  1685. }
  1686. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:21 */
  1687. .x-splitter-active {
  1688. z-index: 4;
  1689. }
  1690. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:25 */
  1691. .x-collapse-el {
  1692. position: absolute;
  1693. background-repeat: no-repeat;
  1694. }
  1695. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Splitter.scss:30 */
  1696. .x-splitter-focus {
  1697. z-index: 4;
  1698. }
  1699. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:1 */
  1700. .x-box-layout-ct {
  1701. overflow: hidden;
  1702. }
  1703. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:5 */
  1704. .x-box-target {
  1705. position: absolute;
  1706. width: 20000px;
  1707. top: 0;
  1708. left: 0;
  1709. min-height: 1px;
  1710. }
  1711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:26 */
  1712. .x-rtl.x-box-target {
  1713. left: auto;
  1714. right: 0;
  1715. }
  1716. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:32 */
  1717. .x-box-inner {
  1718. overflow: hidden;
  1719. position: relative;
  1720. left: 0;
  1721. top: 0;
  1722. }
  1723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:39 */
  1724. .x-box-scroller {
  1725. position: absolute;
  1726. background-repeat: no-repeat;
  1727. background-position: center;
  1728. line-height: 0;
  1729. font-size: 0;
  1730. text-align: center;
  1731. }
  1732. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:48 */
  1733. .x-box-scroller-top {
  1734. top: 0;
  1735. }
  1736. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:52 */
  1737. .x-box-scroller-right {
  1738. right: 0;
  1739. }
  1740. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:56 */
  1741. .x-box-scroller-bottom {
  1742. bottom: 0;
  1743. }
  1744. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:60 */
  1745. .x-box-scroller-left {
  1746. left: 0;
  1747. }
  1748. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:64 */
  1749. .x-box-menu-body-horizontal {
  1750. float: left;
  1751. }
  1752. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:68 */
  1753. .x-box-menu-after {
  1754. position: relative;
  1755. float: left;
  1756. }
  1757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:75 */
  1758. .x-box-scroller-body-vertical,
  1759. .x-box-scroller-body-horizontal {
  1760. -ms-overflow-style: none;
  1761. }
  1762. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:78 */
  1763. .x-box-scroller-body-vertical .x-scroller,
  1764. .x-box-scroller-body-horizontal .x-scroller {
  1765. -ms-overflow-style: auto;
  1766. }
  1767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Box.scss:81 */
  1768. .x-box-scroller-body-vertical :not(.x-scroller)::-webkit-scrollbar,
  1769. .x-box-scroller-body-horizontal :not(.x-scroller)::-webkit-scrollbar {
  1770. display: none;
  1771. }
  1772. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Toolbar.scss:1 */
  1773. .x-toolbar-text {
  1774. white-space: nowrap;
  1775. }
  1776. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Toolbar.scss:5 */
  1777. .x-toolbar-separator {
  1778. display: block;
  1779. font-size: 1px;
  1780. overflow: hidden;
  1781. cursor: default;
  1782. border: 0;
  1783. width: 0;
  1784. height: 0;
  1785. line-height: 0px;
  1786. }
  1787. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Toolbar.scss:16 */
  1788. .x-toolbar-scroller {
  1789. padding-left: 0;
  1790. }
  1791. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Toolbar.scss:23 */
  1792. .x-toolbar-plain {
  1793. border: 0;
  1794. }
  1795. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/DD.scss:3 */
  1796. .x-dd-drag-proxy,
  1797. .x-dd-drag-current {
  1798. z-index: 1000000!important;
  1799. pointer-events: none;
  1800. }
  1801. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:1 */
  1802. .x-dd-drag-proxy {
  1803. display: table;
  1804. }
  1805. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:6 */
  1806. .x-dd-drag-repair .x-dd-drag-ghost {
  1807. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  1808. opacity: 0.6;
  1809. }
  1810. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:10 */
  1811. .x-dd-drag-repair .x-dd-drop-icon {
  1812. display: none;
  1813. }
  1814. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:15 */
  1815. .x-dd-drag-ghost,
  1816. .x-dd-drop-icon {
  1817. display: table-cell;
  1818. vertical-align: middle;
  1819. }
  1820. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:21 */
  1821. .x-dd-drag-ghost {
  1822. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  1823. opacity: 0.85;
  1824. white-space: nowrap;
  1825. }
  1826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:26 */
  1827. .x-dd-drop-icon {
  1828. height: 26px;
  1829. width: 26px;
  1830. background-color: transparent;
  1831. background-position: center;
  1832. background-repeat: no-repeat;
  1833. }
  1834. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:40 */
  1835. .x-rtl .x-dd-drag-ghost {
  1836. padding-left: 5px;
  1837. padding-right: 20px;
  1838. }
  1839. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/dd/StatusProxy.scss:44 */
  1840. .x-rtl .x-dd-drop-icon {
  1841. left: auto;
  1842. right: 3px;
  1843. }
  1844. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:1 */
  1845. .x-docked {
  1846. position: absolute !important;
  1847. z-index: 2;
  1848. }
  1849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:7 */
  1850. .x-docked-vertical {
  1851. position: static;
  1852. }
  1853. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:11 */
  1854. .x-docked-top {
  1855. border-bottom-width: 0 !important;
  1856. }
  1857. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:15 */
  1858. .x-docked-bottom {
  1859. border-top-width: 0 !important;
  1860. }
  1861. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:19 */
  1862. .x-docked-left {
  1863. border-right-width: 0 !important;
  1864. }
  1865. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:23 */
  1866. .x-docked-right {
  1867. border-left-width: 0 !important;
  1868. }
  1869. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:27 */
  1870. .x-docked-noborder-top {
  1871. border-top-width: 0 !important;
  1872. }
  1873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:31 */
  1874. .x-docked-noborder-right {
  1875. border-right-width: 0 !important;
  1876. }
  1877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:35 */
  1878. .x-docked-noborder-bottom {
  1879. border-bottom-width: 0 !important;
  1880. }
  1881. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:39 */
  1882. .x-docked-noborder-left {
  1883. border-left-width: 0 !important;
  1884. }
  1885. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:45 */
  1886. .x-noborder-l {
  1887. border-left-width: 0 !important;
  1888. }
  1889. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:48 */
  1890. .x-noborder-b {
  1891. border-bottom-width: 0 !important;
  1892. }
  1893. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:51 */
  1894. .x-noborder-bl {
  1895. border-bottom-width: 0 !important;
  1896. border-left-width: 0 !important;
  1897. }
  1898. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:55 */
  1899. .x-noborder-r {
  1900. border-right-width: 0 !important;
  1901. }
  1902. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:58 */
  1903. .x-noborder-rl {
  1904. border-right-width: 0 !important;
  1905. border-left-width: 0 !important;
  1906. }
  1907. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:62 */
  1908. .x-noborder-rb {
  1909. border-right-width: 0 !important;
  1910. border-bottom-width: 0 !important;
  1911. }
  1912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:66 */
  1913. .x-noborder-rbl {
  1914. border-right-width: 0 !important;
  1915. border-bottom-width: 0 !important;
  1916. border-left-width: 0 !important;
  1917. }
  1918. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:71 */
  1919. .x-noborder-t {
  1920. border-top-width: 0 !important;
  1921. }
  1922. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:74 */
  1923. .x-noborder-tl {
  1924. border-top-width: 0 !important;
  1925. border-left-width: 0 !important;
  1926. }
  1927. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:78 */
  1928. .x-noborder-tb {
  1929. border-top-width: 0 !important;
  1930. border-bottom-width: 0 !important;
  1931. }
  1932. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:82 */
  1933. .x-noborder-tbl {
  1934. border-top-width: 0 !important;
  1935. border-bottom-width: 0 !important;
  1936. border-left-width: 0 !important;
  1937. }
  1938. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:87 */
  1939. .x-noborder-tr {
  1940. border-top-width: 0 !important;
  1941. border-right-width: 0 !important;
  1942. }
  1943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:91 */
  1944. .x-noborder-trl {
  1945. border-top-width: 0 !important;
  1946. border-right-width: 0 !important;
  1947. border-left-width: 0 !important;
  1948. }
  1949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:96 */
  1950. .x-noborder-trb {
  1951. border-top-width: 0 !important;
  1952. border-right-width: 0 !important;
  1953. border-bottom-width: 0 !important;
  1954. }
  1955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/component/Dock.scss:101 */
  1956. .x-noborder-trbl {
  1957. border-width: 0 !important;
  1958. }
  1959. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:1 */
  1960. .x-panel,
  1961. .x-plain {
  1962. overflow: hidden;
  1963. position: relative;
  1964. }
  1965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:7 */
  1966. .x-panel {
  1967. outline: none;
  1968. }
  1969. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:13 */
  1970. td.x-frame-mc {
  1971. vertical-align: top;
  1972. }
  1973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:18 */
  1974. .x-panel-bodyWrap {
  1975. overflow: hidden;
  1976. position: static;
  1977. height: 100%;
  1978. width: 100%;
  1979. }
  1980. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:25 */
  1981. .x-panel-body {
  1982. overflow: hidden;
  1983. position: relative;
  1984. }
  1985. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:30 */
  1986. .x-panel-header-plain,
  1987. .x-panel-body-plain {
  1988. border: 0;
  1989. padding: 0;
  1990. }
  1991. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:40 */
  1992. .x-panel-collapsed-mini {
  1993. visibility: hidden;
  1994. }
  1995. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Panel.scss:50 */
  1996. .x-viewport > .x-body.x-panel > .x-panel-bodyWrap {
  1997. position: absolute;
  1998. top: 0;
  1999. right: 0;
  2000. bottom: 0;
  2001. left: 0;
  2002. }
  2003. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Table.scss:1 */
  2004. .x-table-layout {
  2005. font-size: 1em;
  2006. }
  2007. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/container/ButtonGroup.scss:1 */
  2008. .x-btn-group {
  2009. position: relative;
  2010. overflow: hidden;
  2011. }
  2012. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/container/ButtonGroup.scss:6 */
  2013. .x-btn-group-body {
  2014. position: relative;
  2015. }
  2016. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/container/ButtonGroup.scss:8 */
  2017. .x-btn-group-body .x-table-layout-cell {
  2018. vertical-align: top;
  2019. }
  2020. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/container/ButtonGroup.scss:10 */
  2021. .x-btn-group-body .x-table-layout-cell .x-btn {
  2022. width: 100%;
  2023. }
  2024. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/plugin/Viewport.scss:1 */
  2025. .x-viewport,
  2026. .x-viewport > .x-body {
  2027. margin: 0;
  2028. padding: 0;
  2029. border: 0 none;
  2030. }
  2031. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/plugin/Viewport.scss:8 */
  2032. .x-viewport {
  2033. width: 100%;
  2034. height: 100%;
  2035. position: static;
  2036. }
  2037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/plugin/Viewport.scss:16 */
  2038. .x-viewport > .x-body {
  2039. position: fixed;
  2040. top: 0;
  2041. left: 0;
  2042. min-width: 100%;
  2043. min-height: 100%;
  2044. }
  2045. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/plugin/Viewport.scss:30 */
  2046. @media print {
  2047. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/plugin/Viewport.scss:33 */
  2048. .x-viewport > .x-body {
  2049. position: static;
  2050. }
  2051. }
  2052. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Column.scss:1 */
  2053. .x-column {
  2054. float: left;
  2055. }
  2056. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Column.scss:6 */
  2057. .x-rtl > .x-column {
  2058. float: right;
  2059. }
  2060. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/SplitterTracker.scss:1 */
  2061. .x-resizable-overlay {
  2062. position: absolute;
  2063. left: 0;
  2064. top: 0;
  2065. width: 100%;
  2066. height: 100%;
  2067. display: none;
  2068. z-index: 200000;
  2069. background-color: #fff;
  2070. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2071. opacity: 0;
  2072. }
  2073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/window/Window.scss:1 */
  2074. .x-window {
  2075. outline: none;
  2076. overflow: hidden;
  2077. }
  2078. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/window/Window.scss:5 */
  2079. .x-window .x-window-wrap {
  2080. position: relative;
  2081. }
  2082. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/window/Window.scss:10 */
  2083. .x-window-body {
  2084. position: relative;
  2085. overflow: hidden;
  2086. }
  2087. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:1 */
  2088. .x-form-item {
  2089. display: table;
  2090. table-layout: fixed;
  2091. border-spacing: 0;
  2092. border-collapse: separate;
  2093. }
  2094. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:10 */
  2095. .x-form-item-label {
  2096. overflow: hidden;
  2097. }
  2098. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:14 */
  2099. .x-form-item.x-form-item-no-label > .x-form-item-label {
  2100. display: none;
  2101. }
  2102. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:18 */
  2103. .x-form-item-label,
  2104. .x-form-item-body {
  2105. display: table-cell;
  2106. }
  2107. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:23 */
  2108. .x-form-item-body {
  2109. vertical-align: middle;
  2110. height: 100%;
  2111. }
  2112. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:28 */
  2113. .x-form-item-label-inner {
  2114. display: inline-block;
  2115. }
  2116. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:32 */
  2117. .x-form-item-label-top {
  2118. display: table-row;
  2119. height: 1px;
  2120. }
  2121. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:35 */
  2122. .x-form-item-label-top > .x-form-item-label-inner {
  2123. display: table-cell;
  2124. }
  2125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:39 */
  2126. .x-form-item-label-top-side-error:after {
  2127. display: table-cell;
  2128. content: '';
  2129. }
  2130. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:44 */
  2131. .x-form-item-label-right {
  2132. text-align: right;
  2133. }
  2134. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:47 */
  2135. .x-form-item-label-right.x-rtl {
  2136. text-align: left;
  2137. }
  2138. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:53 */
  2139. .x-form-error-wrap-side {
  2140. display: table-cell;
  2141. vertical-align: middle;
  2142. }
  2143. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:58 */
  2144. .x-form-error-wrap-under {
  2145. display: table-row;
  2146. height: 1px;
  2147. }
  2148. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:61 */
  2149. .x-form-error-wrap-under > .x-form-error-msg {
  2150. display: table-cell;
  2151. }
  2152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:66 */
  2153. .x-form-error-wrap-under-side-label:before {
  2154. display: table-cell;
  2155. content: '';
  2156. pointer-events: none;
  2157. }
  2158. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:72 */
  2159. .x-form-invalid-icon {
  2160. overflow: hidden;
  2161. }
  2162. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/Labelable.scss:74 */
  2163. .x-form-invalid-icon ul {
  2164. display: none;
  2165. }
  2166. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:1 */
  2167. .x-form-trigger-wrap {
  2168. display: table;
  2169. width: 100%;
  2170. }
  2171. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:6 */
  2172. .x-form-text-heighted .x-form-trigger-wrap {
  2173. height: 100%;
  2174. }
  2175. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:17 */
  2176. .x-gecko .x-form-trigger-wrap {
  2177. display: -moz-inline-box;
  2178. display: inline-flex;
  2179. vertical-align: top;
  2180. }
  2181. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:27 */
  2182. .x-form-type-text.x-has-min-height {
  2183. height: 1px;
  2184. }
  2185. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:32 */
  2186. .x-form-type-text.x-has-min-height .x-form-text-field-body,
  2187. .x-form-type-text.x-has-min-height .x-form-trigger-wrap,
  2188. .x-form-type-text.x-has-min-height .x-form-text-wrap {
  2189. min-height: inherit;
  2190. }
  2191. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:40 */
  2192. .x-ie8 .x-form-type-text.x-has-min-height .x-form-text-field-body,
  2193. .x-ie8 .x-form-type-text.x-has-min-height .x-form-trigger-wrap,
  2194. .x-ie8 .x-form-type-text.x-has-min-height .x-form-text-wrap {
  2195. min-height: inherit;
  2196. }
  2197. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:47 */
  2198. .x-ie8 .x-form-type-text.x-has-min-height .x-form-text {
  2199. min-height: inherit;
  2200. }
  2201. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:52 */
  2202. .x-form-type-text.x-has-min-height .x-form-text {
  2203. height: 100%;
  2204. }
  2205. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:57 */
  2206. .x-form-text-wrap {
  2207. display: table-cell;
  2208. overflow: hidden;
  2209. height: 100%;
  2210. position: relative;
  2211. }
  2212. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:65 */
  2213. .x-gecko .x-form-text-wrap {
  2214. display: block;
  2215. -moz-box-flex: 1;
  2216. flex: 1;
  2217. }
  2218. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:72 */
  2219. .x-form-text-wrap .x-placeholder-label {
  2220. position: absolute;
  2221. top: 0;
  2222. left: 0;
  2223. cursor: text;
  2224. white-space: nowrap;
  2225. overflow: hidden;
  2226. }
  2227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:84 */
  2228. .x-form-item-body.x-form-text-grow {
  2229. min-width: inherit;
  2230. max-width: inherit;
  2231. }
  2232. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:89 */
  2233. .x-form-text {
  2234. border: 0;
  2235. margin: 0;
  2236. -webkit-border-radius: 0;
  2237. -moz-border-radius: 0;
  2238. -ms-border-radius: 0;
  2239. -o-border-radius: 0;
  2240. border-radius: 0;
  2241. display: block;
  2242. background: repeat-x 0 0;
  2243. width: 100%;
  2244. height: 100%;
  2245. }
  2246. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:99 */
  2247. .x-form-trigger {
  2248. display: table-cell;
  2249. vertical-align: top;
  2250. cursor: pointer;
  2251. overflow: hidden;
  2252. background-repeat: no-repeat;
  2253. text-align: center;
  2254. line-height: 0;
  2255. white-space: nowrap;
  2256. }
  2257. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:111 */
  2258. .x-item-disabled .x-form-trigger {
  2259. cursor: default;
  2260. }
  2261. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:114 */
  2262. .x-form-trigger.x-form-trigger-cmp {
  2263. background: none;
  2264. border: 0;
  2265. }
  2266. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:123 */
  2267. .x-form-trigger.x-form-trigger-cmp.x-rtl {
  2268. background: none;
  2269. border: 0;
  2270. }
  2271. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Text.scss:131 */
  2272. .x-gecko .x-form-trigger {
  2273. display: block;
  2274. }
  2275. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/TextArea.scss:2 */
  2276. .x-form-textarea-body.x-form-text-grow > .x-form-trigger-wrap {
  2277. height: 100%;
  2278. }
  2279. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/TextArea.scss:7 */
  2280. .x-form-textarea {
  2281. overflow: auto;
  2282. resize: none;
  2283. }
  2284. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/TextArea.scss:12 */
  2285. div.x-form-text-grow .x-form-textarea {
  2286. min-height: inherit;
  2287. }
  2288. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/window/MessageBox.scss:2 */
  2289. .x-message-box .x-form-display-field {
  2290. height: auto;
  2291. }
  2292. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldContainer.scss:4 */
  2293. .x-safari .x-form-fieldcontainer {
  2294. table-layout: auto;
  2295. }
  2296. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldContainer.scss:12 */
  2297. .x-ie8 .x-form-fieldcontainer > .x-form-item-body.x-field-container-body-vertical {
  2298. display: table-row;
  2299. }
  2300. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:1 */
  2301. .x-form-cb-wrap {
  2302. vertical-align: top;
  2303. }
  2304. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:5 */
  2305. .x-form-cb-wrap-inner {
  2306. position: relative;
  2307. }
  2308. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:9 */
  2309. .x-form-cb {
  2310. position: absolute;
  2311. left: 0;
  2312. right: auto;
  2313. vertical-align: top;
  2314. overflow: hidden;
  2315. padding: 0;
  2316. border: 0;
  2317. }
  2318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:17 */
  2319. .x-form-cb::-moz-focus-inner {
  2320. padding: 0;
  2321. border: 0;
  2322. }
  2323. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:23 */
  2324. .x-form-cb-input {
  2325. position: absolute;
  2326. margin: 0;
  2327. padding: 0;
  2328. border: 0;
  2329. top: 0;
  2330. left: 0;
  2331. width: 100%;
  2332. height: 100%;
  2333. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2334. opacity: 0;
  2335. }
  2336. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:36 */
  2337. .x-rtl.x-form-cb {
  2338. right: 0;
  2339. left: auto;
  2340. }
  2341. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:43 */
  2342. .x-form-cb-after {
  2343. /* allow for the component to be positioned after the label */
  2344. left: auto;
  2345. right: 0;
  2346. }
  2347. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:49 */
  2348. .x-rtl.x-form-cb-after {
  2349. left: 0;
  2350. right: auto;
  2351. }
  2352. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:57 */
  2353. .x-form-cb-label {
  2354. /* some browsers like IE 10 need a block element to be able to measure
  2355. the height of a multi-line element */
  2356. display: inline-block;
  2357. }
  2358. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Checkbox.scss:60 */
  2359. .x-form-cb-label.x-form-cb-no-box-label {
  2360. display: none;
  2361. }
  2362. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:1 */
  2363. .x-fieldset {
  2364. display: block;
  2365. /* preserve margins in IE */
  2366. position: relative;
  2367. overflow: hidden;
  2368. }
  2369. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:7 */
  2370. .x-safari:not(.x-safari10m) .x-fieldset {
  2371. overflow: visible;
  2372. }
  2373. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:12 */
  2374. .x-fieldset-header {
  2375. overflow: hidden;
  2376. }
  2377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:15 */
  2378. .x-fieldset-header .x-form-item,
  2379. .x-fieldset-header .x-tool {
  2380. float: left;
  2381. }
  2382. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:20 */
  2383. .x-fieldset-header .x-fieldset-header-text {
  2384. float: left;
  2385. }
  2386. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:24 */
  2387. .x-fieldset-header .x-form-cb-wrap {
  2388. font-size: 0;
  2389. line-height: 0;
  2390. min-height: 0;
  2391. height: auto;
  2392. }
  2393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:31 */
  2394. .x-fieldset-header .x-form-cb {
  2395. margin: 0;
  2396. position: static;
  2397. display: inherit;
  2398. }
  2399. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:40 */
  2400. .x-fieldset-body {
  2401. overflow: hidden;
  2402. }
  2403. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:44 */
  2404. .x-fieldset-collapsed {
  2405. padding-bottom: 0 !important;
  2406. }
  2407. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:47 */
  2408. .x-fieldset-collapsed > .x-fieldset-body {
  2409. display: none;
  2410. }
  2411. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:52 */
  2412. .x-fieldset-header-text-collapsible {
  2413. cursor: pointer;
  2414. }
  2415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:58 */
  2416. .x-rtl.x-fieldset-header .x-form-item,
  2417. .x-rtl.x-fieldset-header .x-tool {
  2418. float: right;
  2419. }
  2420. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/FieldSet.scss:63 */
  2421. .x-rtl.x-fieldset-header .x-fieldset-header-text {
  2422. float: right;
  2423. }
  2424. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/view/View.scss:2 */
  2425. .x-keyboard-mode .x-view-item-focused {
  2426. outline: 1px dashed #2196f3 !important;
  2427. outline: 1px dashed var(--base-color) !important;
  2428. outline-offset: -1px;
  2429. }
  2430. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/view/BoundList.scss:8 */
  2431. .x-ie9 .x-boundlist-list-ct {
  2432. min-height: 0%;
  2433. }
  2434. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:1 */
  2435. .x-datepicker {
  2436. position: relative;
  2437. }
  2438. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:4 */
  2439. .x-datepicker .x-monthpicker {
  2440. left: 0;
  2441. top: 0;
  2442. display: block;
  2443. }
  2444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:10 */
  2445. .x-datepicker .x-monthpicker-months,
  2446. .x-datepicker .x-monthpicker-years {
  2447. height: 100%;
  2448. }
  2449. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:16 */
  2450. .x-datepicker-inner {
  2451. table-layout: fixed;
  2452. width: 100%;
  2453. border-collapse: separate;
  2454. }
  2455. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:22 */
  2456. .x-datepicker-cell {
  2457. padding: 0;
  2458. }
  2459. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:26 */
  2460. .x-datepicker-header {
  2461. position: relative;
  2462. }
  2463. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:30 */
  2464. .x-datepicker-arrow {
  2465. position: absolute;
  2466. outline: none;
  2467. font-size: 0;
  2468. display: table;
  2469. }
  2470. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:37 */
  2471. .x-datepicker-arrow:before {
  2472. display: table-cell;
  2473. text-align: center;
  2474. vertical-align: middle;
  2475. }
  2476. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:45 */
  2477. .x-datepicker-column-header {
  2478. padding: 0;
  2479. }
  2480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:49 */
  2481. .x-datepicker-date {
  2482. display: block;
  2483. text-decoration: none;
  2484. }
  2485. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:54 */
  2486. .x-monthpicker {
  2487. display: table;
  2488. }
  2489. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:57 */
  2490. .x-monthpicker-body {
  2491. height: 100%;
  2492. position: relative;
  2493. }
  2494. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:62 */
  2495. .x-monthpicker-months,
  2496. .x-monthpicker-years {
  2497. float: left;
  2498. }
  2499. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:67 */
  2500. .x-monthpicker-item {
  2501. float: left;
  2502. }
  2503. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:71 */
  2504. .x-monthpicker-item-inner {
  2505. display: block;
  2506. text-decoration: none;
  2507. }
  2508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:76 */
  2509. .x-monthpicker-yearnav-button-ct {
  2510. float: left;
  2511. text-align: center;
  2512. }
  2513. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:81 */
  2514. .x-monthpicker-yearnav-button {
  2515. display: inline-block;
  2516. outline: none;
  2517. font-size: 0;
  2518. }
  2519. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:87 */
  2520. .x-monthpicker-buttons {
  2521. width: 100%;
  2522. }
  2523. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:91 */
  2524. .x-datepicker .x-monthpicker-buttons {
  2525. position: absolute;
  2526. bottom: 0;
  2527. }
  2528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Date.scss:96 */
  2529. .x-datepicker-month .x-btn-split > .x-btn-button:after {
  2530. content: none;
  2531. }
  2532. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Display.scss:1 */
  2533. .x-form-display-field-body {
  2534. vertical-align: top;
  2535. }
  2536. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Display.scss:3 */
  2537. .x-form-display-field-body .x-form-display-field {
  2538. overflow-wrap: break-word;
  2539. word-wrap: break-word;
  2540. -ms-word-break: break-all;
  2541. /* This is dangerous in WebKit as it breaks things at random points */
  2542. word-break: break-all;
  2543. /* Use this non-standard instead */
  2544. word-break: break-word;
  2545. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  2546. -ms-hyphens: auto;
  2547. -moz-hyphens: auto;
  2548. -webkit-hyphens: auto;
  2549. hyphens: auto;
  2550. }
  2551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/trigger/Component.scss:3 */
  2552. .x-form-trigger.x-form-trigger-cmp:before {
  2553. content: none;
  2554. }
  2555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/File.scss:1 */
  2556. .x-form-file-btn {
  2557. overflow: hidden;
  2558. position: relative;
  2559. }
  2560. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/File.scss:6 */
  2561. .x-form-file-input {
  2562. border: 0;
  2563. position: absolute;
  2564. cursor: pointer;
  2565. top: 0;
  2566. right: 0;
  2567. width: 100%;
  2568. height: 100%;
  2569. overflow: hidden;
  2570. text-indent: -10000px;
  2571. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  2572. opacity: 0;
  2573. /* Yes, there's actually a good reason for this...
  2574. * If the configured buttonText is set to something longer than the default,
  2575. * then it will quickly exceed the width of the hidden file input's "Browse..."
  2576. * button, so part of the custom button's clickable area will be covered by
  2577. * the hidden file input's text box instead. This results in a text-selection
  2578. * mouse cursor over that part of the button, at least in Firefox, which is
  2579. * confusing to a user. Giving the hidden file input a huge font-size makes
  2580. * the native button part very large so it will cover the whole clickable area.
  2581. */
  2582. font-size: 1000px;
  2583. }
  2584. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/File.scss:35 */
  2585. .x-rtl.x-form-file-input {
  2586. right: auto;
  2587. left: 0;
  2588. }
  2589. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Hidden.scss:1 */
  2590. .x-form-item-hidden {
  2591. margin: 0;
  2592. }
  2593. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tip/Tip.scss:1 */
  2594. .x-tip {
  2595. position: absolute;
  2596. overflow: visible;
  2597. }
  2598. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tip/Tip.scss:6 */
  2599. .x-tip-body {
  2600. overflow: hidden;
  2601. position: relative;
  2602. }
  2603. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tip/Tip.scss:11 */
  2604. .x-tip-anchor {
  2605. position: absolute;
  2606. border-style: solid;
  2607. height: 0;
  2608. width: 0;
  2609. }
  2610. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Color.scss:1 */
  2611. .x-color-picker-item {
  2612. float: left;
  2613. text-decoration: none;
  2614. }
  2615. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/picker/Color.scss:6 */
  2616. .x-color-picker-item-inner {
  2617. display: block;
  2618. font-size: 1px;
  2619. }
  2620. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/HtmlEditor.scss:1 */
  2621. .x-html-editor-tb .x-toolbar {
  2622. position: static !important;
  2623. }
  2624. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/HtmlEditor.scss:5 */
  2625. .x-htmleditor-iframe,
  2626. .x-htmleditor-textarea {
  2627. display: block;
  2628. overflow: auto;
  2629. width: 100%;
  2630. height: 100%;
  2631. border: 0;
  2632. }
  2633. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:1 */
  2634. .x-tagfield-body {
  2635. vertical-align: top;
  2636. }
  2637. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:5 */
  2638. .x-tagfield {
  2639. height: auto!important;
  2640. /* The wrap has to accommodate the list, so override the .x-form-text height rule */
  2641. cursor: text;
  2642. overflow-y: auto;
  2643. }
  2644. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:11 */
  2645. .x-tagfield .x-tagfield-list {
  2646. padding: 0;
  2647. margin: 0;
  2648. }
  2649. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:16 */
  2650. .x-tagfield-list.x-tagfield-singleselect {
  2651. white-space: nowrap;
  2652. overflow: hidden;
  2653. }
  2654. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:21 */
  2655. .x-tagfield-input,
  2656. .x-tagfield-item {
  2657. vertical-align: top;
  2658. display: inline-block;
  2659. position: relative;
  2660. }
  2661. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:27 */
  2662. .x-tagfield-input-field {
  2663. font: inherit;
  2664. border: 0;
  2665. margin: 0;
  2666. background: none;
  2667. width: 100%;
  2668. }
  2669. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:35 */
  2670. .x-tagfield-input-field-nogrow {
  2671. min-width: 3px;
  2672. width: 3px;
  2673. max-width: 130px;
  2674. padding: 0;
  2675. }
  2676. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:44 */
  2677. .x-field.x-not-editable .x-tagfield-input-field-nogrow,
  2678. .x-tagfield-list.x-tagfield-singleselect .x-tagfield-input-field-nogrow {
  2679. position: absolute;
  2680. }
  2681. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:53 */
  2682. .x-tagfield-stacked .x-tagfield-item {
  2683. display: block;
  2684. }
  2685. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:57 */
  2686. .x-tagfield-item {
  2687. cursor: default;
  2688. }
  2689. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:61 */
  2690. .x-tagfield-item-close {
  2691. cursor: pointer;
  2692. position: absolute;
  2693. }
  2694. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:66 */
  2695. .x-tagfield-arialist {
  2696. list-style-type: none;
  2697. position: absolute;
  2698. clip: rect(0, 0, 0, 0);
  2699. }
  2700. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/form/field/Tag.scss:72 */
  2701. .x-tagfield-arialist-item {
  2702. list-style-type: none;
  2703. }
  2704. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Fit.scss:1 */
  2705. .x-fit-item {
  2706. position: relative;
  2707. }
  2708. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:1 */
  2709. .x-grid-view {
  2710. overflow: hidden;
  2711. position: relative;
  2712. }
  2713. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:11 */
  2714. .x-grid-row-table {
  2715. /* A grid *item* is a dataview item. It is encapsulated by a <table class="x-grid-item">.
  2716. * One item always corresponds to one store record
  2717. * But an item may contain more than one <tr>.
  2718. * ONE child row, <tr class="x-grid-row"> will be the grid-row and will contain record data
  2719. */
  2720. width: 0;
  2721. table-layout: fixed;
  2722. border: 0 none;
  2723. border-collapse: separate;
  2724. border-spacing: 0;
  2725. }
  2726. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:25 */
  2727. .x-grid-item {
  2728. table-layout: fixed;
  2729. outline: none;
  2730. position: relative;
  2731. }
  2732. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:34 */
  2733. .x-ie10 .x-grid-item {
  2734. transform: translateZ(0);
  2735. }
  2736. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:39 */
  2737. .x-grid-row {
  2738. outline: none;
  2739. }
  2740. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:43 */
  2741. .x-grid-td {
  2742. overflow: hidden;
  2743. border-width: 0;
  2744. vertical-align: top;
  2745. }
  2746. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:49 */
  2747. .x-grid-cell-inner {
  2748. overflow: hidden;
  2749. white-space: nowrap;
  2750. }
  2751. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:55 */
  2752. .x-wrap-cell .x-grid-cell-inner {
  2753. white-space: normal;
  2754. }
  2755. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/panel/Table.scss:60 */
  2756. .x-grid-resize-marker {
  2757. position: absolute;
  2758. z-index: 5;
  2759. top: 0;
  2760. }
  2761. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/view/Table.scss:3 */
  2762. .x-grid-item-container {
  2763. min-height: 1px;
  2764. position: relative;
  2765. }
  2766. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/header/DropZone.scss:1 */
  2767. .x-col-move-top,
  2768. .x-col-move-bottom {
  2769. position: absolute;
  2770. top: 0;
  2771. line-height: 0;
  2772. font-size: 0;
  2773. overflow: hidden;
  2774. z-index: 20000;
  2775. background: no-repeat center top transparent;
  2776. }
  2777. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/header/Container.scss:1 */
  2778. .x-grid-header-ct {
  2779. cursor: default;
  2780. z-index: 3;
  2781. }
  2782. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:1 */
  2783. .x-column-header {
  2784. position: absolute;
  2785. overflow: hidden;
  2786. background-repeat: repeat-x;
  2787. }
  2788. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:11 */
  2789. .x-column-header-inner {
  2790. /*
  2791. * TODO:
  2792. * When IE8 retires, revisit https://jsbin.com/honawo/quiet for better way to center header text
  2793. */
  2794. white-space: nowrap;
  2795. position: relative;
  2796. overflow: hidden;
  2797. }
  2798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:17 */
  2799. .x-leaf-column-header {
  2800. height: 100%;
  2801. }
  2802. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:19 */
  2803. .x-leaf-column-header .x-column-header-text-container {
  2804. height: 100%;
  2805. }
  2806. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:26 */
  2807. .x-column-header-text-container {
  2808. width: 100%;
  2809. display: table;
  2810. table-layout: fixed;
  2811. }
  2812. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:31 */
  2813. .x-column-header-text-container.x-column-header-text-container-auto {
  2814. table-layout: auto;
  2815. }
  2816. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:36 */
  2817. .x-column-header-text-wrapper {
  2818. display: table-cell;
  2819. vertical-align: middle;
  2820. }
  2821. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:41 */
  2822. .x-column-header-text {
  2823. display: block;
  2824. overflow: hidden;
  2825. text-overflow: ellipsis;
  2826. white-space: nowrap;
  2827. }
  2828. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:50 */
  2829. .x-column-header-sort-DESC .x-column-header-text,
  2830. .x-column-header-sort-ASC .x-column-header-text {
  2831. overflow: visible;
  2832. }
  2833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:57 */
  2834. .x-column-header-text-inner {
  2835. background-repeat: no-repeat;
  2836. }
  2837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:60 */
  2838. .x-column-header-inner-empty .x-column-header-text-inner {
  2839. display: none;
  2840. }
  2841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:63 */
  2842. .x-column-header-inner-empty .x-column-header-text-container {
  2843. line-height: 0;
  2844. }
  2845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:68 */
  2846. .x-rtl.x-column-header-text {
  2847. display: inline-block;
  2848. }
  2849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:76 */
  2850. .x-column-header-trigger {
  2851. display: none;
  2852. height: 100%;
  2853. background-repeat: no-repeat;
  2854. position: absolute;
  2855. right: 0;
  2856. top: 0;
  2857. text-align: center;
  2858. }
  2859. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:86 */
  2860. .x-ie9m .x-column-header-trigger {
  2861. z-index: 6;
  2862. }
  2863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:94 */
  2864. .x-rtl.x-column-header-trigger {
  2865. left: 0;
  2866. right: auto;
  2867. }
  2868. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:101 */
  2869. .x-column-header-over .x-column-header-trigger,
  2870. .x-column-header-open .x-column-header-trigger {
  2871. display: block;
  2872. }
  2873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:106 */
  2874. .x-column-header-align-right {
  2875. text-align: right;
  2876. }
  2877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:111 */
  2878. .x-rtl.x-column-header-align-right {
  2879. text-align: left;
  2880. }
  2881. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:116 */
  2882. .x-column-header-align-left {
  2883. text-align: left;
  2884. }
  2885. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:121 */
  2886. .x-rtl.x-column-header-align-left {
  2887. text-align: right;
  2888. }
  2889. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Column.scss:126 */
  2890. .x-column-header-align-center {
  2891. text-align: center;
  2892. }
  2893. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Action.scss:1 */
  2894. .x-grid-cell-inner-action-col {
  2895. line-height: 0;
  2896. font-size: 0;
  2897. }
  2898. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Action.scss:6 */
  2899. .x-keyboard-mode .x-grid-cell-inner-action-col :focus {
  2900. outline: 0px solid #2196f3;
  2901. outline: 0px solid var(--base-color);
  2902. }
  2903. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Action.scss:12 */
  2904. .x-action-col-icon {
  2905. display: inline-block;
  2906. line-height: 1;
  2907. }
  2908. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Check.scss:4 */
  2909. .x-column-header-checkbox .x-column-header-text {
  2910. margin-bottom: 0.4em;
  2911. }
  2912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Check.scss:9 */
  2913. .x-column-header-checkbox .x-column-header-inner-empty .x-column-header-text {
  2914. margin-bottom: 0;
  2915. }
  2916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Check.scss:15 */
  2917. .x-grid-checkcolumn-cell-inner {
  2918. line-height: 0;
  2919. }
  2920. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/column/Check.scss:19 */
  2921. .x-keyboard-mode .x-grid-checkcolumn-cell-inner :focus {
  2922. outline: 0px solid #2196f3;
  2923. outline: 0px solid var(--base-color);
  2924. }
  2925. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/AdvancedGrouping.scss:3 */
  2926. .x-rtl.x-grid-view .x-grid-advanced-group-title:before {
  2927. right: 0;
  2928. }
  2929. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/AdvancedGrouping.scss:11 */
  2930. .x-rtl.x-grid-view .x-grid-advanced-group-hd {
  2931. border-width: 0 1px 0 0;
  2932. }
  2933. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/AdvancedGrouping.scss:14 */
  2934. .x-rtl.x-grid-view .x-grid-advanced-group-record {
  2935. border-width: 0 1px 0 0;
  2936. }
  2937. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:1 */
  2938. .x-group-hd-container {
  2939. overflow: hidden;
  2940. }
  2941. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:5 */
  2942. .x-grid-group-hd {
  2943. white-space: nowrap;
  2944. outline: none;
  2945. }
  2946. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:10 */
  2947. .x-grid-group-title {
  2948. position: relative;
  2949. }
  2950. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:14 */
  2951. .x-grid-group-title:before {
  2952. position: absolute;
  2953. left: 0;
  2954. }
  2955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:23 */
  2956. .x-rtl.x-grid-view .x-grid-group-title:before {
  2957. right: 0;
  2958. }
  2959. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/Grouping.scss:29 */
  2960. .x-grid-row-body-hidden,
  2961. .x-grid-group-collapsed {
  2962. display: none;
  2963. }
  2964. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/feature/RowBody.scss:1 */
  2965. .x-grid-row-body-hidden {
  2966. display: none;
  2967. }
  2968. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:1 */
  2969. .x-menu {
  2970. outline: none;
  2971. }
  2972. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:5 */
  2973. .x-menu-body {
  2974. position: relative;
  2975. }
  2976. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:9 */
  2977. .x-menu-item {
  2978. white-space: nowrap;
  2979. overflow: hidden;
  2980. border-color: transparent;
  2981. border-style: solid;
  2982. }
  2983. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:17 */
  2984. .x-menu-item-cmp {
  2985. margin: 2px;
  2986. }
  2987. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:20 */
  2988. .x-menu-item-cmp .x-field-label-cell {
  2989. vertical-align: middle;
  2990. }
  2991. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:28 */
  2992. .x-menu-icon-separator {
  2993. position: absolute;
  2994. top: 0px;
  2995. z-index: 0;
  2996. height: 100%;
  2997. overflow: hidden;
  2998. }
  2999. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:34 */
  3000. .x-menu-plain .x-menu-icon-separator {
  3001. display: none;
  3002. }
  3003. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:39 */
  3004. .x-menu-item-link {
  3005. -webkit-tap-highlight-color: transparent;
  3006. -webkit-touch-callout: none;
  3007. text-decoration: none;
  3008. outline: 0;
  3009. display: block;
  3010. }
  3011. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:54 */
  3012. .x-menu-item-link-href {
  3013. -webkit-touch-callout: default;
  3014. }
  3015. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:58 */
  3016. .x-menu-item-text {
  3017. display: inline-block;
  3018. }
  3019. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/menu/Menu.scss:62 */
  3020. .x-menu-item-icon,
  3021. .x-menu-item-icon-right,
  3022. .x-menu-item-arrow {
  3023. font-size: 0;
  3024. position: absolute;
  3025. text-align: center;
  3026. background-repeat: no-repeat;
  3027. }
  3028. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:1 */
  3029. .x-grid-scroll-container {
  3030. position: absolute;
  3031. z-index: 1;
  3032. }
  3033. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:7 */
  3034. .x-grid-scrollbar-clipper-floated,
  3035. .x-grid-scrollbar-floated {
  3036. z-index: 2;
  3037. }
  3038. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:12 */
  3039. .x-grid-scroll-body {
  3040. width: 100%;
  3041. position: relative;
  3042. }
  3043. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:17 */
  3044. .x-grid-scrollbar-clipper {
  3045. overflow: hidden;
  3046. position: absolute;
  3047. top: 0;
  3048. left: 0;
  3049. }
  3050. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:23 */
  3051. .x-grid-scrollbar-clipper > .x-grid-view,
  3052. .x-grid-scrollbar-clipper > .x-tree-view {
  3053. overflow-y: hidden !important;
  3054. }
  3055. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:29 */
  3056. .x-grid-with-col-lines .x-grid-scrollbar-clipper-locked .x-grid-cell-last {
  3057. border-right-width: 0;
  3058. }
  3059. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:34 */
  3060. .x-rtl.x-grid-scrollbar-clipper {
  3061. left: auto;
  3062. right: 0;
  3063. }
  3064. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:38 */
  3065. .x-grid-with-col-lines .x-rtl.x-grid-scrollbar-clipper-locked .x-grid-cell-last {
  3066. border-left-width: 0;
  3067. }
  3068. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:43 */
  3069. .x-grid-scrollbar {
  3070. position: absolute;
  3071. bottom: 0;
  3072. left: 0;
  3073. display: none;
  3074. }
  3075. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:51 */
  3076. .x-rtl.x-grid-scrollbar {
  3077. left: auto;
  3078. right: 0;
  3079. }
  3080. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:56 */
  3081. .x-grid-scrollbar-visible {
  3082. display: block;
  3083. }
  3084. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:61 */
  3085. .x-grid-locking-body > .x-grid {
  3086. z-index: 2;
  3087. pointer-events: none;
  3088. }
  3089. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:65 */
  3090. .x-grid-locking-body > .x-grid .x-docked {
  3091. pointer-events: auto;
  3092. }
  3093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:70 */
  3094. .x-grid-locking-body .x-grid-body {
  3095. background: transparent;
  3096. }
  3097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:74 */
  3098. .x-grid-locking-body > .x-splitter {
  3099. z-index: 2;
  3100. }
  3101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:80 */
  3102. .x-grid-locking-body > .x-splitter-active {
  3103. z-index: 4;
  3104. }
  3105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:84 */
  3106. .x-grid-locking-body > .x-splitter-focus {
  3107. z-index: 4;
  3108. }
  3109. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:90 */
  3110. .x-grid-inner-locked.x-border-region-slide-in {
  3111. z-index: 3;
  3112. }
  3113. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/locking/Lockable.scss:92 */
  3114. .x-grid-inner-locked.x-border-region-slide-in > .x-panel-bodyWrap > .x-grid-body > .x-grid-view,
  3115. .x-grid-inner-locked.x-border-region-slide-in > .x-panel-bodyWrap > .x-grid-body > .x-tree-view {
  3116. overflow-y: hidden !important;
  3117. }
  3118. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/Editing.scss:7 */
  3119. .x-grid-editor .x-form-cb-wrap {
  3120. /*
  3121. * Rules for fields which are rendered to fit inside grid cells.
  3122. * This includes cell and row editor fields and fields in widget columns.
  3123. */
  3124. text-align: center;
  3125. }
  3126. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/Editing.scss:12 */
  3127. .x-grid-editor .x-form-cb {
  3128. position: static;
  3129. display: inline-block;
  3130. }
  3131. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/Editing.scss:20 */
  3132. .x-grid-editor .x-form-display-field {
  3133. margin: 0;
  3134. white-space: nowrap;
  3135. overflow: hidden;
  3136. }
  3137. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/Editing.scss:28 */
  3138. .x-grid-editor div.x-form-action-col-field {
  3139. line-height: 0;
  3140. }
  3141. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowEditing.scss:1 */
  3142. .x-grid-row-editor-wrap {
  3143. position: absolute;
  3144. overflow: visible;
  3145. z-index: 2;
  3146. }
  3147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowEditing.scss:8 */
  3148. .x-grid-row-editor {
  3149. position: absolute;
  3150. z-index: 0;
  3151. }
  3152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowEditing.scss:15 */
  3153. .x-grid-row-editor-buttons {
  3154. position: absolute;
  3155. white-space: nowrap;
  3156. }
  3157. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowExpander.scss:1 */
  3158. .x-grid-row-expander {
  3159. font-size: 0;
  3160. line-height: 0;
  3161. text-align: center;
  3162. }
  3163. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowExpander.scss:8 */
  3164. .x-keyboard-mode .x-grid-row-expander:focus {
  3165. outline: 0px solid #2196f3;
  3166. outline: 0px solid var(--base-color);
  3167. }
  3168. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowExpander.scss:13 */
  3169. .x-grid-hide-row-expander-spacer .x-grid-row-expander-spacer {
  3170. display: none;
  3171. }
  3172. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/plugin/RowExpander.scss:17 */
  3173. .x-grid-row-expander-spacer {
  3174. border: 0 none;
  3175. }
  3176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/selection/SpreadsheetModel.scss:1 */
  3177. .x-ssm-row-numberer-hd {
  3178. cursor: se-resize!important;
  3179. }
  3180. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/selection/SpreadsheetModel.scss:6 */
  3181. .x-ssm-row-numberer-cell {
  3182. cursor: e-resize;
  3183. }
  3184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/selection/SpreadsheetModel.scss:11 */
  3185. .x-ssm-column-select .x-column-header {
  3186. cursor: s-resize;
  3187. }
  3188. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/selection/SpreadsheetModel.scss:16 */
  3189. .x-ssm-extender-drag-handle {
  3190. position: absolute;
  3191. z-index: 1;
  3192. cursor: crosshair;
  3193. }
  3194. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/grid/selection/SpreadsheetModel.scss:22 */
  3195. .x-ssm-extender-mask {
  3196. position: absolute;
  3197. z-index: 1;
  3198. pointer-events: none;
  3199. }
  3200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Absolute.scss:1 */
  3201. .x-abs-layout-ct {
  3202. position: relative;
  3203. }
  3204. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Absolute.scss:5 */
  3205. .x-abs-layout-item {
  3206. position: absolute !important;
  3207. }
  3208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Border.scss:1 */
  3209. .x-border-layout-ct {
  3210. overflow: hidden;
  3211. }
  3212. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Border.scss:5 */
  3213. .x-border-layout-ct {
  3214. position: relative;
  3215. }
  3216. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Border.scss:9 */
  3217. .x-border-region-slide-in {
  3218. z-index: 6;
  3219. }
  3220. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Border.scss:13 */
  3221. .x-region-collapsed-placeholder {
  3222. z-index: 4;
  3223. }
  3224. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Center.scss:1 */
  3225. .x-center-layout-item {
  3226. position: absolute;
  3227. }
  3228. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Center.scss:5 */
  3229. .x-center-target {
  3230. position: relative;
  3231. }
  3232. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:1 */
  3233. .x-form-layout-wrap {
  3234. display: table;
  3235. width: 100%;
  3236. border-collapse: separate;
  3237. }
  3238. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:7 */
  3239. .x-form-layout-colgroup {
  3240. display: table-column-group;
  3241. }
  3242. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:11 */
  3243. .x-form-layout-column {
  3244. display: table-column;
  3245. }
  3246. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:16 */
  3247. .x-form-layout-auto-label > * > .x-form-item-label {
  3248. width: auto !important;
  3249. }
  3250. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:20 */
  3251. .x-form-layout-auto-label > * > .x-form-item-label > .x-form-item-label-inner {
  3252. width: auto !important;
  3253. white-space: nowrap;
  3254. }
  3255. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:26 */
  3256. .x-form-layout-auto-label > * > .x-form-layout-label-column {
  3257. width: 1px;
  3258. }
  3259. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:33 */
  3260. .x-form-layout-sized-label > * > .x-form-item-label {
  3261. width: auto !important;
  3262. }
  3263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:40 */
  3264. .x-form-form-item {
  3265. display: table-row;
  3266. }
  3267. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:43 */
  3268. .x-form-form-item > .x-form-item-label {
  3269. padding-left: 0 !important;
  3270. padding-right: 0 !important;
  3271. padding-bottom: 0 !important;
  3272. }
  3273. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:51 */
  3274. .x-form-form-item > .x-form-item-body {
  3275. max-width: none;
  3276. }
  3277. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/layout/container/Form.scss:60 */
  3278. .x-form-form-item.x-form-item-no-label:before {
  3279. content: ' ';
  3280. display: table-cell;
  3281. pointer-events: none;
  3282. }
  3283. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/resizer/Resizer.scss:2 */
  3284. .x-resizable-wrapped {
  3285. box-sizing: border-box;
  3286. -moz-box-sizing: border-box;
  3287. -ms-box-sizing: border-box;
  3288. -webkit-box-sizing: border-box;
  3289. }
  3290. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:1 */
  3291. .x-slider {
  3292. outline: none;
  3293. position: relative;
  3294. }
  3295. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:6 */
  3296. .x-slider-inner {
  3297. position: relative;
  3298. left: 0;
  3299. top: 0;
  3300. overflow: visible;
  3301. }
  3302. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:11 */
  3303. .x-slider-vert .x-slider-inner {
  3304. background: repeat-y 0 0;
  3305. }
  3306. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:16 */
  3307. .x-slider-thumb {
  3308. position: absolute;
  3309. background: no-repeat 0 0;
  3310. cursor: default;
  3311. -webkit-user-callout: none;
  3312. display: table;
  3313. table-layout: fixed;
  3314. }
  3315. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:19 */
  3316. .x-slider-horz .x-slider-thumb {
  3317. left: 0;
  3318. }
  3319. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:22 */
  3320. .x-slider-vert .x-slider-thumb {
  3321. bottom: 0;
  3322. }
  3323. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/slider/Multi.scss:35 */
  3324. .x-slider-thumb:before {
  3325. display: table-cell;
  3326. vertical-align: middle;
  3327. text-align: center;
  3328. }
  3329. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:21 */
  3330. .x-tab {
  3331. display: block;
  3332. outline: 0;
  3333. cursor: pointer;
  3334. white-space: nowrap;
  3335. text-decoration: none;
  3336. vertical-align: top;
  3337. overflow: hidden;
  3338. position: relative;
  3339. }
  3340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:33 */
  3341. .x-tab > .x-frame {
  3342. height: 100%;
  3343. width: 100%;
  3344. }
  3345. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:39 */
  3346. .x-tab-wrap {
  3347. height: 100%;
  3348. width: 100%;
  3349. display: table;
  3350. border-spacing: 0;
  3351. }
  3352. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:64 */
  3353. .x-tab-button {
  3354. white-space: nowrap;
  3355. line-height: 0;
  3356. position: relative;
  3357. display: table-cell;
  3358. vertical-align: middle;
  3359. }
  3360. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:103 */
  3361. .x-tab-inner {
  3362. overflow: hidden;
  3363. text-overflow: ellipsis;
  3364. display: inline-block;
  3365. vertical-align: middle;
  3366. }
  3367. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:122 */
  3368. .x-tab-icon.x-tab-no-text > .x-tab-inner {
  3369. display: none;
  3370. }
  3371. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:127 */
  3372. .x-tab-icon-el {
  3373. display: none;
  3374. vertical-align: middle;
  3375. text-align: center;
  3376. background-position: center center;
  3377. background-repeat: no-repeat;
  3378. }
  3379. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:148 */
  3380. .x-tab-icon > .x-tab-icon-el {
  3381. display: inline-block;
  3382. }
  3383. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:152 */
  3384. .x-tab-icon-top > .x-tab-icon-el,
  3385. .x-tab-icon-bottom > .x-tab-icon-el {
  3386. display: block;
  3387. }
  3388. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:161 */
  3389. .x-ie9m .x-tab-button-center {
  3390. text-align: center;
  3391. }
  3392. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:169 */
  3393. .x-tab-button-center.x-tab-icon-top,
  3394. .x-tab-button-center.x-tab-icon-bottom {
  3395. text-align: center;
  3396. }
  3397. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:175 */
  3398. .x-tab-button-left {
  3399. text-align: left;
  3400. }
  3401. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:183 */
  3402. .x-rtl.x-tab-button-left {
  3403. text-align: right;
  3404. }
  3405. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:188 */
  3406. .x-tab-button-right {
  3407. text-align: right;
  3408. }
  3409. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:195 */
  3410. .x-tab-tooltip {
  3411. display: none;
  3412. position: absolute;
  3413. pointer-events: auto;
  3414. top: 0;
  3415. bottom: 0;
  3416. left: 0;
  3417. right: 0;
  3418. }
  3419. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:204 */
  3420. .x-btn-disabled .x-tab-tooltip {
  3421. display: block;
  3422. }
  3423. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:210 */
  3424. .x-rtl.x-tab-button-right {
  3425. text-align: left;
  3426. }
  3427. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/var/button/Button.scss:311 */
  3428. .x-tab-mc {
  3429. overflow: visible;
  3430. }
  3431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:13 */
  3432. .x-tab {
  3433. z-index: 1;
  3434. }
  3435. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:17 */
  3436. .x-tab-active {
  3437. z-index: 3;
  3438. }
  3439. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:21 */
  3440. .x-tab-button {
  3441. position: relative;
  3442. }
  3443. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:27 */
  3444. .x-tab-close-btn {
  3445. display: block;
  3446. position: absolute;
  3447. overflow: hidden;
  3448. font-size: 0;
  3449. line-height: 0;
  3450. }
  3451. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:35 */
  3452. .x-tab-rotate-left {
  3453. -webkit-transform: rotate(270deg);
  3454. -webkit-transform-origin: 100% 0;
  3455. -moz-transform: rotate(270deg);
  3456. -moz-transform-origin: 100% 0;
  3457. -ms-transform: rotate(270deg);
  3458. -ms-transform-origin: 100% 0;
  3459. transform: rotate(270deg);
  3460. transform-origin: 100% 0;
  3461. }
  3462. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  3463. .x-ie8 .x-tab-rotate-left {
  3464. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  3465. }
  3466. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:39 */
  3467. .x-tab-rotate-left.x-rtl {
  3468. -webkit-transform: rotate(90deg);
  3469. -webkit-transform-origin: 0 0;
  3470. -moz-transform: rotate(90deg);
  3471. -moz-transform-origin: 0 0;
  3472. -ms-transform: rotate(90deg);
  3473. -ms-transform-origin: 0 0;
  3474. transform: rotate(90deg);
  3475. transform-origin: 0 0;
  3476. }
  3477. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  3478. .x-ie8 .x-tab-rotate-left.x-rtl {
  3479. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  3480. }
  3481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:45 */
  3482. .x-tab-rotate-right {
  3483. -webkit-transform: rotate(90deg);
  3484. -webkit-transform-origin: 0 0;
  3485. -moz-transform: rotate(90deg);
  3486. -moz-transform-origin: 0 0;
  3487. -ms-transform: rotate(90deg);
  3488. -ms-transform-origin: 0 0;
  3489. transform: rotate(90deg);
  3490. transform-origin: 0 0;
  3491. }
  3492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  3493. .x-ie8 .x-tab-rotate-right {
  3494. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  3495. }
  3496. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:49 */
  3497. .x-tab-rotate-right.x-rtl {
  3498. -webkit-transform: rotate(270deg);
  3499. -webkit-transform-origin: 100% 0;
  3500. -moz-transform: rotate(270deg);
  3501. -moz-transform-origin: 100% 0;
  3502. -ms-transform: rotate(270deg);
  3503. -ms-transform-origin: 100% 0;
  3504. transform: rotate(270deg);
  3505. transform-origin: 100% 0;
  3506. }
  3507. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/rotate-element.scss:41 */
  3508. .x-ie8 .x-tab-rotate-right.x-rtl {
  3509. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  3510. }
  3511. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Tab.scss:57 */
  3512. .x-tab-tr,
  3513. .x-tab-br,
  3514. .x-tab-mr,
  3515. .x-tab-tl,
  3516. .x-tab-bl,
  3517. .x-tab-ml {
  3518. width: 1px;
  3519. }
  3520. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:1 */
  3521. .x-tab-bar {
  3522. z-index: 0;
  3523. position: relative;
  3524. }
  3525. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:6 */
  3526. .x-tab-bar-strip {
  3527. position: absolute;
  3528. line-height: 0;
  3529. font-size: 0;
  3530. z-index: 2;
  3531. }
  3532. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:12 */
  3533. .x-tab-bar-top > .x-tab-bar-strip {
  3534. bottom: 0;
  3535. }
  3536. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:16 */
  3537. .x-tab-bar-bottom > .x-tab-bar-strip {
  3538. top: 0;
  3539. }
  3540. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:20 */
  3541. .x-tab-bar-left > .x-tab-bar-strip {
  3542. right: 0;
  3543. }
  3544. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:24 */
  3545. .x-tab-bar-left > .x-tab-bar-strip.x-rtl {
  3546. right: auto;
  3547. left: 0;
  3548. }
  3549. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:31 */
  3550. .x-tab-bar-right > .x-tab-bar-strip {
  3551. left: 0;
  3552. }
  3553. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:35 */
  3554. .x-tab-bar-right > .x-tab-bar-strip.x-rtl {
  3555. left: auto;
  3556. right: 0;
  3557. }
  3558. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:43 */
  3559. .x-tab-bar-horizontal .x-tab-bar-strip {
  3560. width: 100%;
  3561. left: 0;
  3562. }
  3563. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:48 */
  3564. .x-tab-bar-vertical {
  3565. display: table-cell;
  3566. }
  3567. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:54 */
  3568. .x-tab-bar-vertical .x-tab-bar-strip {
  3569. height: 100%;
  3570. top: 0;
  3571. }
  3572. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:60 */
  3573. .x-tab-bar-plain {
  3574. background: transparent !important;
  3575. }
  3576. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tab/Bar.scss:64 */
  3577. .x-box-scroller-plain {
  3578. background-color: transparent !important;
  3579. }
  3580. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Breadcrumb.scss:1 */
  3581. .x-breadcrumb-btn .x-box-target:first-child {
  3582. margin: 0;
  3583. }
  3584. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Breadcrumb.scss:7 */
  3585. .x-breadcrumb-btn > .x-btn-split-right > .x-btn-button:after {
  3586. content: none;
  3587. }
  3588. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/toolbar/Breadcrumb.scss:12 */
  3589. .x-breadcrumb-btn.x-btn-over > .x-btn-split-right > .x-btn-button:after,
  3590. .x-breadcrumb-btn.x-btn-menu-active > .x-btn-split-right > .x-btn-button:after {
  3591. content: '';
  3592. }
  3593. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:4 */
  3594. .x-autowidth-table .x-grid-item-container {
  3595. overflow: visible;
  3596. }
  3597. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:8 */
  3598. .x-autowidth-table .x-grid-item {
  3599. table-layout: auto;
  3600. width: auto !important;
  3601. }
  3602. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:14 */
  3603. .x-tree-view {
  3604. overflow: hidden;
  3605. }
  3606. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:18 */
  3607. .x-tree-elbow-img,
  3608. .x-tree-icon {
  3609. display: inline-block;
  3610. text-align: center;
  3611. background-repeat: no-repeat;
  3612. background-position: 0 center;
  3613. vertical-align: top;
  3614. }
  3615. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:27 */
  3616. .x-tree-checkbox {
  3617. display: inline-block;
  3618. vertical-align: top;
  3619. position: relative;
  3620. }
  3621. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/src/tree/View.scss:33 */
  3622. .x-tree-animator-wrap {
  3623. overflow: hidden;
  3624. }
  3625. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/Component.scss:1 */
  3626. .x-body {
  3627. color: #111;
  3628. color: var(--color);
  3629. font-size: 13px;
  3630. line-height: 17px;
  3631. font-weight: 400;
  3632. font-family: Roboto, sans-serif;
  3633. background: #f6f6f6;
  3634. }
  3635. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/Component.scss:18 */
  3636. .x-animating-size,
  3637. .x-collapsed {
  3638. overflow: hidden!important;
  3639. }
  3640. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/Component.scss:25 */
  3641. .x-animating-size {
  3642. z-index: 10000;
  3643. }
  3644. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/Editor.scss:2 */
  3645. .x-editor .x-form-item-body {
  3646. padding-bottom: 0;
  3647. }
  3648. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:1 */
  3649. .x-mask {
  3650. background-image: none;
  3651. background-color: rgba(208, 208, 208, 0.5);
  3652. cursor: default;
  3653. }
  3654. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/background-opacity.scss:19 */
  3655. .x-ie8 .x-mask {
  3656. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#80d0d0d0, endColorstr=#80d0d0d0)";
  3657. zoom: 1;
  3658. }
  3659. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:16 */
  3660. body > .x-mask {
  3661. background-image: none;
  3662. background-color: rgba(0, 0, 0, 0.75);
  3663. }
  3664. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/background-opacity.scss:19 */
  3665. .x-ie8 body > .x-mask {
  3666. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#bf000000, endColorstr=#bf000000)";
  3667. zoom: 1;
  3668. }
  3669. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:31 */
  3670. .x-mask-msg {
  3671. padding: 10px;
  3672. background: #fff;
  3673. }
  3674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:49 */
  3675. .x-mask-msg-inner {
  3676. padding: 16px 0px;
  3677. background-color: transparent;
  3678. color: #111;
  3679. font: 400 13px Roboto, sans-serif;
  3680. }
  3681. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:61 */
  3682. .x-mask-msg-text {
  3683. padding: 25px 0 0;
  3684. background-image: url(images/loadmask/loading.gif);
  3685. background-repeat: no-repeat;
  3686. background-position: center 0;
  3687. }
  3688. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/LoadMask.scss:72 */
  3689. .x-rtl.x-mask-msg-text {
  3690. padding: 25px 0 0 0;
  3691. }
  3692. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:219 */
  3693. .x-progress-default {
  3694. background-color: #bbdefb;
  3695. background-color: var(--base-light-color);
  3696. border-width: 0;
  3697. height: 24px;
  3698. border-color: #2196f3;
  3699. border-color: var(--base-color);
  3700. border-style: solid;
  3701. }
  3702. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:234 */
  3703. .x-progress-default .x-progress-bar-default {
  3704. background-image: none;
  3705. background-color: #2196f3;
  3706. background-color: var(--base-color);
  3707. }
  3708. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:249 */
  3709. .x-progress-default .x-progress-text {
  3710. color: #fff;
  3711. font-weight: 600;
  3712. font-size: 13px;
  3713. font-family: Roboto, sans-serif;
  3714. text-align: center;
  3715. line-height: 24px;
  3716. }
  3717. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:258 */
  3718. .x-progress-default .x-progress-text-back {
  3719. color: #111;
  3720. line-height: 24px;
  3721. }
  3722. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  3723. .x-keyboard-mode .x-progress-default.x-progress-focus:after {
  3724. position: absolute;
  3725. content: ' ';
  3726. top: 0;
  3727. right: 0;
  3728. bottom: 0;
  3729. left: 0;
  3730. border: 0 solid #2196f3;
  3731. border: 0 solid var(--base-color);
  3732. pointer-events: none;
  3733. }
  3734. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:285 */
  3735. .x-progressbar-default-cell > .x-grid-cell-inner,
  3736. .x-progress-default-cell > .x-grid-cell-inner,
  3737. .x-progressbarwidget-default-cell > .x-grid-cell-inner {
  3738. padding-top: 12px;
  3739. padding-bottom: 12px;
  3740. }
  3741. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/ProgressBar.scss:288 */
  3742. .x-progressbar-default-cell > .x-grid-cell-inner .x-progress-default,
  3743. .x-progress-default-cell > .x-grid-cell-inner .x-progress-default,
  3744. .x-progressbarwidget-default-cell > .x-grid-cell-inner .x-progress-default {
  3745. height: 24px;
  3746. }
  3747. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  3748. .x-btn-default-small {
  3749. -webkit-border-radius: 2px;
  3750. -moz-border-radius: 2px;
  3751. -ms-border-radius: 2px;
  3752. -o-border-radius: 2px;
  3753. border-radius: 2px;
  3754. padding: 8px 16px 8px 16px;
  3755. border-width: 0px;
  3756. border-style: solid;
  3757. background-color: transparent;
  3758. }
  3759. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  3760. .x-btn-default-small-mc {
  3761. background-color: transparent;
  3762. }
  3763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  3764. .x-nbr .x-btn-default-small {
  3765. padding: 0 !important;
  3766. border-width: 0 !important;
  3767. -webkit-border-radius: 0px;
  3768. -moz-border-radius: 0px;
  3769. -ms-border-radius: 0px;
  3770. -o-border-radius: 0px;
  3771. border-radius: 0px;
  3772. background-color: transparent !important;
  3773. box-shadow: none !important;
  3774. }
  3775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  3776. .x-btn-default-small-frameInfo {
  3777. font-family: th-2-2-2-2-0-0-0-0-8-16-8-16;
  3778. }
  3779. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  3780. .x-btn-default-small-tl {
  3781. background-position: 0 -4px;
  3782. }
  3783. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  3784. .x-btn-default-small-tr {
  3785. background-position: right -6px;
  3786. }
  3787. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  3788. .x-btn-default-small-bl {
  3789. background-position: 0 -8px;
  3790. }
  3791. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  3792. .x-btn-default-small-br {
  3793. background-position: right -10px;
  3794. }
  3795. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  3796. .x-btn-default-small-ml {
  3797. background-position: 0 top;
  3798. }
  3799. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  3800. .x-btn-default-small-mr {
  3801. background-position: right top;
  3802. }
  3803. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  3804. .x-btn-default-small-tc {
  3805. background-position: 0 0;
  3806. }
  3807. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  3808. .x-btn-default-small-bc {
  3809. background-position: 0 -2px;
  3810. }
  3811. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  3812. .x-btn-default-small-tr,
  3813. .x-btn-default-small-br,
  3814. .x-btn-default-small-mr {
  3815. padding-right: 2px;
  3816. }
  3817. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  3818. .x-btn-default-small-tl,
  3819. .x-btn-default-small-bl,
  3820. .x-btn-default-small-ml {
  3821. padding-left: 2px;
  3822. }
  3823. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  3824. .x-btn-default-small-tc {
  3825. height: 2px;
  3826. }
  3827. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  3828. .x-btn-default-small-bc {
  3829. height: 2px;
  3830. }
  3831. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  3832. .x-btn-default-small-mc {
  3833. padding: 6px 14px 6px 14px;
  3834. }
  3835. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  3836. .x-btn-default-small {
  3837. border-color: #5da8e5;
  3838. }
  3839. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  3840. .x-btn-button-default-small {
  3841. min-height: 16px;
  3842. }
  3843. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  3844. .x-ie9m .x-btn-button-default-small {
  3845. min-height: auto;
  3846. height: 16px;
  3847. }
  3848. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  3849. .x-btn-inner-default-small {
  3850. font: 600 13px/15px Roboto, sans-serif;
  3851. color: #2196f3;
  3852. color: var(--base-color);
  3853. padding: 0 5px;
  3854. max-width: 100%;
  3855. }
  3856. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  3857. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-small,
  3858. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-small {
  3859. max-width: calc(100% - 16px);
  3860. }
  3861. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  3862. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-small,
  3863. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-small {
  3864. max-width: calc(100% - 15px);
  3865. }
  3866. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  3867. .x-ie10p .x-btn-inner-default-small {
  3868. max-width: none;
  3869. }
  3870. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  3871. .x-btn-icon-el-default-small {
  3872. font-size: 16px;
  3873. height: 16px;
  3874. color: #2196f3;
  3875. color: var(--base-color);
  3876. line-height: 16px;
  3877. }
  3878. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  3879. .x-btn-icon-left > .x-btn-icon-el-default-small,
  3880. .x-btn-icon-right > .x-btn-icon-el-default-small {
  3881. width: 16px;
  3882. }
  3883. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  3884. .x-btn-icon-top > .x-btn-icon-el-default-small,
  3885. .x-btn-icon-bottom > .x-btn-icon-el-default-small {
  3886. min-width: 16px;
  3887. }
  3888. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  3889. .x-ie8 .x-btn-icon-el-default-small.x-btn-glyph {
  3890. color: #2196f3;
  3891. }
  3892. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  3893. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small {
  3894. margin-right: 3px;
  3895. }
  3896. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  3897. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-small.x-rtl {
  3898. margin-right: 0;
  3899. margin-left: 3px;
  3900. }
  3901. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  3902. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
  3903. margin-left: 3px;
  3904. }
  3905. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  3906. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small.x-rtl {
  3907. margin-left: 0;
  3908. margin-right: 3px;
  3909. }
  3910. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  3911. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-small {
  3912. margin-bottom: 8px;
  3913. }
  3914. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  3915. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-small {
  3916. margin-top: 8px;
  3917. }
  3918. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  3919. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small {
  3920. padding-right: 8px;
  3921. }
  3922. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  3923. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
  3924. margin-right: 5px;
  3925. }
  3926. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  3927. .x-btn-arrow-bottom > .x-btn-button-default-small,
  3928. .x-btn-split-bottom > .x-btn-button-default-small {
  3929. padding-bottom: 8px;
  3930. }
  3931. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  3932. .x-btn-wrap-default-small.x-btn-arrow-right:after {
  3933. width: 18px;
  3934. content: 'arrow_drop_down';
  3935. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  3936. color: #2196f3;
  3937. color: var(--base-color);
  3938. }
  3939. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  3940. .x-btn-wrap-default-small.x-btn-arrow-bottom:after {
  3941. height: 12px;
  3942. content: 'arrow_drop_down';
  3943. font: 16px/12px 'Material Icons', 'Font Awesome 5 Free';
  3944. color: #2196f3;
  3945. color: var(--base-color);
  3946. }
  3947. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  3948. .x-btn-wrap-default-small.x-btn-split-right > .x-btn-button {
  3949. padding-right: 16px;
  3950. }
  3951. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  3952. .x-btn-wrap-default-small.x-btn-split-right > .x-btn-button.x-rtl {
  3953. padding-right: 0;
  3954. padding-left: 16px;
  3955. }
  3956. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  3957. .x-btn-wrap-default-small.x-btn-split-right > .x-btn-button:after {
  3958. border-right: 1px solid #2196f3;
  3959. border-right: 1px solid var(--base-color);
  3960. }
  3961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  3962. .x-btn-wrap-default-small.x-btn-split-right:after {
  3963. width: 16px;
  3964. content: 'arrow_drop_down';
  3965. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  3966. color: #2196f3;
  3967. color: var(--base-color);
  3968. padding-left: 16px;
  3969. }
  3970. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  3971. .x-btn-wrap-default-small.x-rtl.x-btn-split-right:after {
  3972. padding-left: 0;
  3973. padding-right: 16px;
  3974. }
  3975. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  3976. .x-btn-wrap-default-small.x-btn-split-bottom {
  3977. margin-bottom: -8px;
  3978. }
  3979. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  3980. .x-btn-wrap-default-small.x-btn-split-bottom > .x-btn-button:after {
  3981. border-bottom: 1px solid #2196f3;
  3982. border-bottom: 1px solid var(--base-color);
  3983. }
  3984. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  3985. .x-btn-wrap-default-small.x-btn-split-bottom:after {
  3986. height: 16px;
  3987. content: 'arrow_drop_down';
  3988. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  3989. color: #2196f3;
  3990. color: var(--base-color);
  3991. }
  3992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  3993. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-small {
  3994. padding-right: 8px;
  3995. }
  3996. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  3997. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-small {
  3998. margin-right: 5px;
  3999. }
  4000. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  4001. .x-keyboard-mode .x-btn-focus.x-btn-default-small {
  4002. background-image: none;
  4003. background-color: #42a5f5;
  4004. background-color: var(--base-focused-color);
  4005. -webkit-box-shadow: none;
  4006. -moz-box-shadow: none;
  4007. box-shadow: none;
  4008. }
  4009. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  4010. .x-keyboard-mode .x-btn-focus.x-btn-default-small .x-btn-inner {
  4011. color: #fff;
  4012. }
  4013. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  4014. .x-btn-default-small .x-btn-arrow-el {
  4015. position: absolute;
  4016. top: 0;
  4017. right: 0;
  4018. height: 100%;
  4019. width: 32px;
  4020. pointer-events: none;
  4021. }
  4022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  4023. .x-btn-default-small .x-btn-arrow-el.x-rtl {
  4024. right: inherit;
  4025. left: 0;
  4026. }
  4027. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  4028. .x-keyboard-mode .x-btn-default-small.x-arrow-focus .x-btn-arrow-el {
  4029. border: 0px solid #d9edfd;
  4030. }
  4031. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  4032. .x-btn-over.x-btn-default-small {
  4033. border-color: #569bd2;
  4034. background-image: none;
  4035. background-color: rgba(17, 17, 17, 0.075);
  4036. }
  4037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  4038. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-small {
  4039. -webkit-box-shadow: none;
  4040. -moz-box-shadow: none;
  4041. box-shadow: none;
  4042. }
  4043. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  4044. .x-btn.x-btn-menu-active.x-btn-default-small,
  4045. .x-btn.x-btn-pressed.x-btn-default-small {
  4046. border-color: #467eac;
  4047. background-image: none;
  4048. background-color: #0c7ce6;
  4049. }
  4050. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  4051. .x-btn.x-btn-menu-active.x-btn-default-small .x-btn-inner,
  4052. .x-btn.x-btn-pressed.x-btn-default-small .x-btn-inner {
  4053. color: #fff;
  4054. }
  4055. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  4056. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-small,
  4057. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-small {
  4058. background-image: none;
  4059. background-color: #6ab8f7;
  4060. background-color: var(--base-pressed-color);
  4061. -webkit-box-shadow: none;
  4062. -moz-box-shadow: none;
  4063. box-shadow: none;
  4064. }
  4065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  4066. .x-btn.x-btn-disabled.x-btn-default-small {
  4067. background-image: none;
  4068. background-color: transparent;
  4069. }
  4070. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2944 */
  4071. .x-btn.x-btn-disabled.x-btn-default-small .x-btn-inner {
  4072. color: rgba(0, 0, 0, 0.26);
  4073. }
  4074. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  4075. .x-keyboard-mode .x-btn-focus .x-btn-default-small-tl,
  4076. .x-keyboard-mode .x-btn-focus .x-btn-default-small-bl,
  4077. .x-keyboard-mode .x-btn-focus .x-btn-default-small-tr,
  4078. .x-keyboard-mode .x-btn-focus .x-btn-default-small-br,
  4079. .x-keyboard-mode .x-btn-focus .x-btn-default-small-tc,
  4080. .x-keyboard-mode .x-btn-focus .x-btn-default-small-bc {
  4081. background-image: url(images/btn/btn-default-small-focus-corners.gif);
  4082. }
  4083. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  4084. .x-keyboard-mode .x-btn-focus .x-btn-default-small-ml,
  4085. .x-keyboard-mode .x-btn-focus .x-btn-default-small-mr {
  4086. background-image: url(images/btn/btn-default-small-focus-sides.gif);
  4087. }
  4088. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  4089. .x-keyboard-mode .x-btn-focus .x-btn-default-small-mc {
  4090. background-color: #42a5f5;
  4091. background-color: var(--base-focused-color);
  4092. }
  4093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  4094. .x-btn-over .x-btn-default-small-tl,
  4095. .x-btn-over .x-btn-default-small-bl,
  4096. .x-btn-over .x-btn-default-small-tr,
  4097. .x-btn-over .x-btn-default-small-br,
  4098. .x-btn-over .x-btn-default-small-tc,
  4099. .x-btn-over .x-btn-default-small-bc {
  4100. background-image: url(images/btn/btn-default-small-over-corners.gif);
  4101. }
  4102. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  4103. .x-btn-over .x-btn-default-small-ml,
  4104. .x-btn-over .x-btn-default-small-mr {
  4105. background-image: url(images/btn/btn-default-small-over-sides.gif);
  4106. }
  4107. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  4108. .x-btn-over .x-btn-default-small-mc {
  4109. background-color: rgba(17, 17, 17, 0.075);
  4110. }
  4111. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  4112. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-tl,
  4113. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-bl,
  4114. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-tr,
  4115. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-br,
  4116. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-tc,
  4117. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-bc {
  4118. background-image: url(images/btn/btn-default-small-focus-over-corners.gif);
  4119. }
  4120. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  4121. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-ml,
  4122. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-mr {
  4123. background-image: url(images/btn/btn-default-small-focus-over-sides.gif);
  4124. }
  4125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  4126. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-small-mc {
  4127. background-color: rgba(17, 17, 17, 0.075);
  4128. }
  4129. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  4130. .x-btn.x-btn-menu-active .x-btn-default-small-tl,
  4131. .x-btn.x-btn-menu-active .x-btn-default-small-bl,
  4132. .x-btn.x-btn-menu-active .x-btn-default-small-tr,
  4133. .x-btn.x-btn-menu-active .x-btn-default-small-br,
  4134. .x-btn.x-btn-menu-active .x-btn-default-small-tc,
  4135. .x-btn.x-btn-menu-active .x-btn-default-small-bc,
  4136. .x-btn.x-btn-pressed .x-btn-default-small-tl,
  4137. .x-btn.x-btn-pressed .x-btn-default-small-bl,
  4138. .x-btn.x-btn-pressed .x-btn-default-small-tr,
  4139. .x-btn.x-btn-pressed .x-btn-default-small-br,
  4140. .x-btn.x-btn-pressed .x-btn-default-small-tc,
  4141. .x-btn.x-btn-pressed .x-btn-default-small-bc {
  4142. background-image: url(images/btn/btn-default-small-pressed-corners.gif);
  4143. }
  4144. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  4145. .x-btn.x-btn-menu-active .x-btn-default-small-ml,
  4146. .x-btn.x-btn-menu-active .x-btn-default-small-mr,
  4147. .x-btn.x-btn-pressed .x-btn-default-small-ml,
  4148. .x-btn.x-btn-pressed .x-btn-default-small-mr {
  4149. background-image: url(images/btn/btn-default-small-pressed-sides.gif);
  4150. }
  4151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  4152. .x-btn.x-btn-menu-active .x-btn-default-small-mc,
  4153. .x-btn.x-btn-pressed .x-btn-default-small-mc {
  4154. background-color: #0c7ce6;
  4155. }
  4156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  4157. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-tl,
  4158. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-bl,
  4159. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-tr,
  4160. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-br,
  4161. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-tc,
  4162. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-bc,
  4163. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-tl,
  4164. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-bl,
  4165. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-tr,
  4166. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-br,
  4167. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-tc,
  4168. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-bc {
  4169. background-image: url(images/btn/btn-default-small-focus-pressed-corners.gif);
  4170. }
  4171. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  4172. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-ml,
  4173. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-mr,
  4174. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-ml,
  4175. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-mr {
  4176. background-image: url(images/btn/btn-default-small-focus-pressed-sides.gif);
  4177. }
  4178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  4179. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-small-mc,
  4180. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-small-mc {
  4181. background-color: #6ab8f7;
  4182. background-color: var(--base-pressed-color);
  4183. }
  4184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  4185. .x-btn.x-btn-disabled .x-btn-default-small-tl,
  4186. .x-btn.x-btn-disabled .x-btn-default-small-bl,
  4187. .x-btn.x-btn-disabled .x-btn-default-small-tr,
  4188. .x-btn.x-btn-disabled .x-btn-default-small-br,
  4189. .x-btn.x-btn-disabled .x-btn-default-small-tc,
  4190. .x-btn.x-btn-disabled .x-btn-default-small-bc {
  4191. background-image: url(images/btn/btn-default-small-disabled-corners.gif);
  4192. }
  4193. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  4194. .x-btn.x-btn-disabled .x-btn-default-small-ml,
  4195. .x-btn.x-btn-disabled .x-btn-default-small-mr {
  4196. background-image: url(images/btn/btn-default-small-disabled-sides.gif);
  4197. }
  4198. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  4199. .x-btn.x-btn-disabled .x-btn-default-small-mc {
  4200. background-color: transparent;
  4201. }
  4202. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  4203. .x-nbr .x-btn-default-small {
  4204. background-image: none;
  4205. }
  4206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  4207. .x-btn-disabled.x-btn-default-small {
  4208. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=)";
  4209. }
  4210. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  4211. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first {
  4212. border-right-width: 0px !important;
  4213. }
  4214. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  4215. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first .x-btn-default-small-mc {
  4216. padding-right: 16px !important;
  4217. }
  4218. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  4219. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-middle {
  4220. border-right-width: 0px !important;
  4221. }
  4222. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  4223. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-middle .x-btn-default-small-mc {
  4224. padding-right: 16px !important;
  4225. padding-left: 16px !important;
  4226. }
  4227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  4228. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-last .x-btn-default-small-mc {
  4229. padding-left: 16px !important;
  4230. }
  4231. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  4232. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first {
  4233. border-bottom-width: 0px !important;
  4234. }
  4235. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  4236. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first .x-btn-default-small-mc {
  4237. padding-bottom: 8px !important;
  4238. }
  4239. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  4240. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-middle {
  4241. border-bottom-width: 0px !important;
  4242. }
  4243. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  4244. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-middle .x-btn-default-small-mc {
  4245. padding-top: 8px !important;
  4246. padding-bottom: 8px !important;
  4247. }
  4248. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  4249. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-last .x-btn-default-small-mc {
  4250. padding-top: 8px !important;
  4251. }
  4252. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  4253. .x-nbr .x-segmented-button-item.x-btn-default-small:after {
  4254. content: ' ';
  4255. border-style: solid;
  4256. border-width: 0;
  4257. position: absolute;
  4258. }
  4259. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  4260. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small:after {
  4261. top: 0px;
  4262. right: 0;
  4263. bottom: 0px;
  4264. left: 0;
  4265. }
  4266. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  4267. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-first:after {
  4268. left: 0px;
  4269. }
  4270. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  4271. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-small.x-segmented-button-last:after {
  4272. right: 0px;
  4273. }
  4274. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  4275. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small:after {
  4276. top: 0;
  4277. right: 0px;
  4278. bottom: 0;
  4279. left: 0px;
  4280. }
  4281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  4282. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-first:after {
  4283. top: 0px;
  4284. }
  4285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  4286. .x-nbr .x-segmented-button-item-vertical.x-btn-default-small.x-segmented-button-last:after {
  4287. bottom: 0px;
  4288. }
  4289. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  4290. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-small:after {
  4291. border-width: 0px;
  4292. border-color: #d9edfd;
  4293. }
  4294. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  4295. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-small:after {
  4296. border-width: 0px;
  4297. border-color: rgba(33, 149, 241, 0.8150000000000001);
  4298. }
  4299. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  4300. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-small:after,
  4301. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-small:after {
  4302. border-width: 0px;
  4303. border-color: #e1f1fd;
  4304. }
  4305. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  4306. .x-button-default-small-cell > .x-grid-cell-inner {
  4307. padding-top: 8px;
  4308. padding-bottom: 8px;
  4309. }
  4310. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  4311. .x-button-default-small-cell > .x-grid-cell-inner >.x-btn-default-small {
  4312. vertical-align: top;
  4313. }
  4314. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  4315. .x-btn-default-medium {
  4316. -webkit-border-radius: 0;
  4317. -moz-border-radius: 0;
  4318. -ms-border-radius: 0;
  4319. -o-border-radius: 0;
  4320. border-radius: 0;
  4321. padding: 8px 16px 8px 16px;
  4322. border-width: 0px;
  4323. border-style: solid;
  4324. background-color: transparent;
  4325. }
  4326. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  4327. .x-btn-default-medium-mc {
  4328. background-color: transparent;
  4329. }
  4330. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  4331. .x-nbr .x-btn-default-medium {
  4332. padding: 0 !important;
  4333. border-width: 0 !important;
  4334. -webkit-border-radius: 0px;
  4335. -moz-border-radius: 0px;
  4336. -ms-border-radius: 0px;
  4337. -o-border-radius: 0px;
  4338. border-radius: 0px;
  4339. background-color: transparent !important;
  4340. box-shadow: none !important;
  4341. }
  4342. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  4343. .x-btn-default-medium-frameInfo {
  4344. font-family: th-0-0-0-0-0-0-0-0-8-16-8-16;
  4345. }
  4346. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  4347. .x-btn-default-medium-tl {
  4348. background-position: 0 0px;
  4349. }
  4350. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  4351. .x-btn-default-medium-tr {
  4352. background-position: right 0px;
  4353. }
  4354. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  4355. .x-btn-default-medium-bl {
  4356. background-position: 0 0px;
  4357. }
  4358. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  4359. .x-btn-default-medium-br {
  4360. background-position: right 0px;
  4361. }
  4362. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  4363. .x-btn-default-medium-ml {
  4364. background-position: 0 top;
  4365. }
  4366. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  4367. .x-btn-default-medium-mr {
  4368. background-position: right top;
  4369. }
  4370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  4371. .x-btn-default-medium-tc {
  4372. background-position: 0 0;
  4373. }
  4374. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  4375. .x-btn-default-medium-bc {
  4376. background-position: 0 0px;
  4377. }
  4378. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  4379. .x-btn-default-medium-tr,
  4380. .x-btn-default-medium-br,
  4381. .x-btn-default-medium-mr {
  4382. padding-right: 0px;
  4383. }
  4384. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  4385. .x-btn-default-medium-tl,
  4386. .x-btn-default-medium-bl,
  4387. .x-btn-default-medium-ml {
  4388. padding-left: 0px;
  4389. }
  4390. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  4391. .x-btn-default-medium-tc {
  4392. height: 0px;
  4393. }
  4394. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  4395. .x-btn-default-medium-bc {
  4396. height: 0px;
  4397. }
  4398. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  4399. .x-btn-default-medium-mc {
  4400. padding: 8px 16px 8px 16px;
  4401. }
  4402. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  4403. .x-btn-default-medium {
  4404. border-color: #5da8e5;
  4405. }
  4406. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  4407. .x-btn-button-default-medium {
  4408. min-height: 20px;
  4409. }
  4410. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  4411. .x-ie9m .x-btn-button-default-medium {
  4412. min-height: auto;
  4413. height: 20px;
  4414. }
  4415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  4416. .x-btn-inner-default-medium {
  4417. font: 600 14px/16px Roboto, sans-serif;
  4418. color: #2196f3;
  4419. color: var(--base-color);
  4420. padding: 0 8px;
  4421. max-width: 100%;
  4422. }
  4423. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  4424. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-medium,
  4425. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-medium {
  4426. max-width: calc(100% - 20px);
  4427. }
  4428. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  4429. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-medium,
  4430. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-medium {
  4431. max-width: calc(100% - 19px);
  4432. }
  4433. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  4434. .x-ie10p .x-btn-inner-default-medium {
  4435. max-width: none;
  4436. }
  4437. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  4438. .x-btn-icon-el-default-medium {
  4439. font-size: 20px;
  4440. height: 20px;
  4441. color: #2196f3;
  4442. color: var(--base-color);
  4443. line-height: 20px;
  4444. }
  4445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  4446. .x-btn-icon-left > .x-btn-icon-el-default-medium,
  4447. .x-btn-icon-right > .x-btn-icon-el-default-medium {
  4448. width: 20px;
  4449. }
  4450. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  4451. .x-btn-icon-top > .x-btn-icon-el-default-medium,
  4452. .x-btn-icon-bottom > .x-btn-icon-el-default-medium {
  4453. min-width: 20px;
  4454. }
  4455. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  4456. .x-ie8 .x-btn-icon-el-default-medium.x-btn-glyph {
  4457. color: #2196f3;
  4458. }
  4459. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  4460. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium {
  4461. margin-right: 0px;
  4462. }
  4463. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  4464. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-medium.x-rtl {
  4465. margin-right: 0;
  4466. margin-left: 0px;
  4467. }
  4468. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  4469. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
  4470. margin-left: 0px;
  4471. }
  4472. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  4473. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium.x-rtl {
  4474. margin-left: 0;
  4475. margin-right: 0px;
  4476. }
  4477. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  4478. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-medium {
  4479. margin-bottom: 8px;
  4480. }
  4481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  4482. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-medium {
  4483. margin-top: 8px;
  4484. }
  4485. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  4486. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium {
  4487. padding-right: 8px;
  4488. }
  4489. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  4490. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
  4491. margin-right: 8px;
  4492. }
  4493. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  4494. .x-btn-arrow-bottom > .x-btn-button-default-medium,
  4495. .x-btn-split-bottom > .x-btn-button-default-medium {
  4496. padding-bottom: 8px;
  4497. }
  4498. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  4499. .x-btn-wrap-default-medium.x-btn-arrow-right:after {
  4500. width: 20px;
  4501. content: 'arrow_drop_down';
  4502. font: 20px/1 'Material Icons', 'Font Awesome 5 Free';
  4503. color: #2196f3;
  4504. color: var(--base-color);
  4505. }
  4506. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  4507. .x-btn-wrap-default-medium.x-btn-arrow-bottom:after {
  4508. height: 14px;
  4509. content: 'arrow_drop_down';
  4510. font: 20px/14px 'Material Icons', 'Font Awesome 5 Free';
  4511. color: #2196f3;
  4512. color: var(--base-color);
  4513. }
  4514. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  4515. .x-btn-wrap-default-medium.x-btn-split-right > .x-btn-button {
  4516. padding-right: 16px;
  4517. }
  4518. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  4519. .x-btn-wrap-default-medium.x-btn-split-right > .x-btn-button.x-rtl {
  4520. padding-right: 0;
  4521. padding-left: 16px;
  4522. }
  4523. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  4524. .x-btn-wrap-default-medium.x-btn-split-right > .x-btn-button:after {
  4525. border-right: 1px solid #2196f3;
  4526. border-right: 1px solid var(--base-color);
  4527. }
  4528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  4529. .x-btn-wrap-default-medium.x-btn-split-right:after {
  4530. width: 24px;
  4531. content: 'arrow_drop_down';
  4532. font: 20px/1 'Material Icons', 'Font Awesome 5 Free';
  4533. color: #2196f3;
  4534. color: var(--base-color);
  4535. padding-left: 16px;
  4536. }
  4537. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  4538. .x-btn-wrap-default-medium.x-rtl.x-btn-split-right:after {
  4539. padding-left: 0;
  4540. padding-right: 16px;
  4541. }
  4542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  4543. .x-btn-wrap-default-medium.x-btn-split-bottom {
  4544. margin-bottom: -8px;
  4545. }
  4546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  4547. .x-btn-wrap-default-medium.x-btn-split-bottom > .x-btn-button:after {
  4548. border-bottom: 1px solid #2196f3;
  4549. border-bottom: 1px solid var(--base-color);
  4550. }
  4551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  4552. .x-btn-wrap-default-medium.x-btn-split-bottom:after {
  4553. height: 24px;
  4554. content: 'arrow_drop_down';
  4555. font: 20px/24px 'Material Icons', 'Font Awesome 5 Free';
  4556. color: #2196f3;
  4557. color: var(--base-color);
  4558. }
  4559. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  4560. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-medium {
  4561. padding-right: 8px;
  4562. }
  4563. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  4564. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-medium {
  4565. margin-right: 8px;
  4566. }
  4567. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  4568. .x-keyboard-mode .x-btn-focus.x-btn-default-medium {
  4569. background-image: none;
  4570. background-color: #42a5f5;
  4571. background-color: var(--base-focused-color);
  4572. -webkit-box-shadow: none;
  4573. -moz-box-shadow: none;
  4574. box-shadow: none;
  4575. }
  4576. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  4577. .x-keyboard-mode .x-btn-focus.x-btn-default-medium .x-btn-inner {
  4578. color: #fff;
  4579. }
  4580. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  4581. .x-btn-default-medium .x-btn-arrow-el {
  4582. position: absolute;
  4583. top: 0;
  4584. right: 0;
  4585. height: 100%;
  4586. width: 40px;
  4587. pointer-events: none;
  4588. }
  4589. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  4590. .x-btn-default-medium .x-btn-arrow-el.x-rtl {
  4591. right: inherit;
  4592. left: 0;
  4593. }
  4594. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  4595. .x-keyboard-mode .x-btn-default-medium.x-arrow-focus .x-btn-arrow-el {
  4596. border: 0px solid #d9edfd;
  4597. }
  4598. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  4599. .x-btn-over.x-btn-default-medium {
  4600. border-color: #569bd2;
  4601. background-image: none;
  4602. background-color: rgba(17, 17, 17, 0.075);
  4603. }
  4604. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  4605. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-medium {
  4606. -webkit-box-shadow: none;
  4607. -moz-box-shadow: none;
  4608. box-shadow: none;
  4609. }
  4610. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  4611. .x-btn.x-btn-menu-active.x-btn-default-medium,
  4612. .x-btn.x-btn-pressed.x-btn-default-medium {
  4613. border-color: #467eac;
  4614. background-image: none;
  4615. background-color: #0c7ce6;
  4616. }
  4617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  4618. .x-btn.x-btn-menu-active.x-btn-default-medium .x-btn-inner,
  4619. .x-btn.x-btn-pressed.x-btn-default-medium .x-btn-inner {
  4620. color: #fff;
  4621. }
  4622. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  4623. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-medium,
  4624. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-medium {
  4625. background-image: none;
  4626. background-color: #6ab8f7;
  4627. background-color: var(--base-pressed-color);
  4628. -webkit-box-shadow: none;
  4629. -moz-box-shadow: none;
  4630. box-shadow: none;
  4631. }
  4632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  4633. .x-btn.x-btn-disabled.x-btn-default-medium {
  4634. background-image: none;
  4635. background-color: transparent;
  4636. }
  4637. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2944 */
  4638. .x-btn.x-btn-disabled.x-btn-default-medium .x-btn-inner {
  4639. color: rgba(0, 0, 0, 0.26);
  4640. }
  4641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  4642. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-tl,
  4643. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-bl,
  4644. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-tr,
  4645. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-br,
  4646. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-tc,
  4647. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-bc {
  4648. background-image: url(images/btn/btn-default-medium-focus-corners.gif);
  4649. }
  4650. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  4651. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-ml,
  4652. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-mr {
  4653. background-image: url(images/btn/btn-default-medium-focus-sides.gif);
  4654. }
  4655. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  4656. .x-keyboard-mode .x-btn-focus .x-btn-default-medium-mc {
  4657. background-color: #42a5f5;
  4658. background-color: var(--base-focused-color);
  4659. }
  4660. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  4661. .x-btn-over .x-btn-default-medium-tl,
  4662. .x-btn-over .x-btn-default-medium-bl,
  4663. .x-btn-over .x-btn-default-medium-tr,
  4664. .x-btn-over .x-btn-default-medium-br,
  4665. .x-btn-over .x-btn-default-medium-tc,
  4666. .x-btn-over .x-btn-default-medium-bc {
  4667. background-image: url(images/btn/btn-default-medium-over-corners.gif);
  4668. }
  4669. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  4670. .x-btn-over .x-btn-default-medium-ml,
  4671. .x-btn-over .x-btn-default-medium-mr {
  4672. background-image: url(images/btn/btn-default-medium-over-sides.gif);
  4673. }
  4674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  4675. .x-btn-over .x-btn-default-medium-mc {
  4676. background-color: rgba(17, 17, 17, 0.075);
  4677. }
  4678. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  4679. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-tl,
  4680. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-bl,
  4681. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-tr,
  4682. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-br,
  4683. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-tc,
  4684. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-bc {
  4685. background-image: url(images/btn/btn-default-medium-focus-over-corners.gif);
  4686. }
  4687. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  4688. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-ml,
  4689. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-mr {
  4690. background-image: url(images/btn/btn-default-medium-focus-over-sides.gif);
  4691. }
  4692. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  4693. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-medium-mc {
  4694. background-color: rgba(17, 17, 17, 0.075);
  4695. }
  4696. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  4697. .x-btn.x-btn-menu-active .x-btn-default-medium-tl,
  4698. .x-btn.x-btn-menu-active .x-btn-default-medium-bl,
  4699. .x-btn.x-btn-menu-active .x-btn-default-medium-tr,
  4700. .x-btn.x-btn-menu-active .x-btn-default-medium-br,
  4701. .x-btn.x-btn-menu-active .x-btn-default-medium-tc,
  4702. .x-btn.x-btn-menu-active .x-btn-default-medium-bc,
  4703. .x-btn.x-btn-pressed .x-btn-default-medium-tl,
  4704. .x-btn.x-btn-pressed .x-btn-default-medium-bl,
  4705. .x-btn.x-btn-pressed .x-btn-default-medium-tr,
  4706. .x-btn.x-btn-pressed .x-btn-default-medium-br,
  4707. .x-btn.x-btn-pressed .x-btn-default-medium-tc,
  4708. .x-btn.x-btn-pressed .x-btn-default-medium-bc {
  4709. background-image: url(images/btn/btn-default-medium-pressed-corners.gif);
  4710. }
  4711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  4712. .x-btn.x-btn-menu-active .x-btn-default-medium-ml,
  4713. .x-btn.x-btn-menu-active .x-btn-default-medium-mr,
  4714. .x-btn.x-btn-pressed .x-btn-default-medium-ml,
  4715. .x-btn.x-btn-pressed .x-btn-default-medium-mr {
  4716. background-image: url(images/btn/btn-default-medium-pressed-sides.gif);
  4717. }
  4718. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  4719. .x-btn.x-btn-menu-active .x-btn-default-medium-mc,
  4720. .x-btn.x-btn-pressed .x-btn-default-medium-mc {
  4721. background-color: #0c7ce6;
  4722. }
  4723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  4724. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tl,
  4725. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-bl,
  4726. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tr,
  4727. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-br,
  4728. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-tc,
  4729. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-bc,
  4730. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-tl,
  4731. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-bl,
  4732. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-tr,
  4733. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-br,
  4734. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-tc,
  4735. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-bc {
  4736. background-image: url(images/btn/btn-default-medium-focus-pressed-corners.gif);
  4737. }
  4738. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  4739. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-ml,
  4740. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-mr,
  4741. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-ml,
  4742. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-mr {
  4743. background-image: url(images/btn/btn-default-medium-focus-pressed-sides.gif);
  4744. }
  4745. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  4746. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-medium-mc,
  4747. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-medium-mc {
  4748. background-color: #6ab8f7;
  4749. background-color: var(--base-pressed-color);
  4750. }
  4751. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  4752. .x-btn.x-btn-disabled .x-btn-default-medium-tl,
  4753. .x-btn.x-btn-disabled .x-btn-default-medium-bl,
  4754. .x-btn.x-btn-disabled .x-btn-default-medium-tr,
  4755. .x-btn.x-btn-disabled .x-btn-default-medium-br,
  4756. .x-btn.x-btn-disabled .x-btn-default-medium-tc,
  4757. .x-btn.x-btn-disabled .x-btn-default-medium-bc {
  4758. background-image: url(images/btn/btn-default-medium-disabled-corners.gif);
  4759. }
  4760. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  4761. .x-btn.x-btn-disabled .x-btn-default-medium-ml,
  4762. .x-btn.x-btn-disabled .x-btn-default-medium-mr {
  4763. background-image: url(images/btn/btn-default-medium-disabled-sides.gif);
  4764. }
  4765. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  4766. .x-btn.x-btn-disabled .x-btn-default-medium-mc {
  4767. background-color: transparent;
  4768. }
  4769. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  4770. .x-nbr .x-btn-default-medium {
  4771. background-image: none;
  4772. }
  4773. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  4774. .x-btn-disabled.x-btn-default-medium {
  4775. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=)";
  4776. }
  4777. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  4778. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first {
  4779. border-right-width: 0px !important;
  4780. }
  4781. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  4782. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first .x-btn-default-medium-mc {
  4783. padding-right: 16px !important;
  4784. }
  4785. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  4786. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-middle {
  4787. border-right-width: 0px !important;
  4788. }
  4789. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  4790. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-middle .x-btn-default-medium-mc {
  4791. padding-right: 16px !important;
  4792. padding-left: 16px !important;
  4793. }
  4794. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  4795. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-last .x-btn-default-medium-mc {
  4796. padding-left: 16px !important;
  4797. }
  4798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  4799. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first {
  4800. border-bottom-width: 0px !important;
  4801. }
  4802. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  4803. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first .x-btn-default-medium-mc {
  4804. padding-bottom: 8px !important;
  4805. }
  4806. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  4807. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-middle {
  4808. border-bottom-width: 0px !important;
  4809. }
  4810. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  4811. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-middle .x-btn-default-medium-mc {
  4812. padding-top: 8px !important;
  4813. padding-bottom: 8px !important;
  4814. }
  4815. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  4816. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-last .x-btn-default-medium-mc {
  4817. padding-top: 8px !important;
  4818. }
  4819. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  4820. .x-nbr .x-segmented-button-item.x-btn-default-medium:after {
  4821. content: ' ';
  4822. border-style: solid;
  4823. border-width: 0;
  4824. position: absolute;
  4825. }
  4826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  4827. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium:after {
  4828. top: 0px;
  4829. right: 0;
  4830. bottom: 0px;
  4831. left: 0;
  4832. }
  4833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  4834. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-first:after {
  4835. left: 0px;
  4836. }
  4837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  4838. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-medium.x-segmented-button-last:after {
  4839. right: 0px;
  4840. }
  4841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  4842. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium:after {
  4843. top: 0;
  4844. right: 0px;
  4845. bottom: 0;
  4846. left: 0px;
  4847. }
  4848. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  4849. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-first:after {
  4850. top: 0px;
  4851. }
  4852. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  4853. .x-nbr .x-segmented-button-item-vertical.x-btn-default-medium.x-segmented-button-last:after {
  4854. bottom: 0px;
  4855. }
  4856. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  4857. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-medium:after {
  4858. border-width: 0px;
  4859. border-color: #d9edfd;
  4860. }
  4861. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  4862. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-medium:after {
  4863. border-width: 0px;
  4864. border-color: rgba(33, 149, 241, 0.8150000000000001);
  4865. }
  4866. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  4867. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-medium:after,
  4868. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-medium:after {
  4869. border-width: 0px;
  4870. border-color: #e1f1fd;
  4871. }
  4872. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  4873. .x-button-default-medium-cell > .x-grid-cell-inner {
  4874. padding-top: 6px;
  4875. padding-bottom: 6px;
  4876. }
  4877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  4878. .x-button-default-medium-cell > .x-grid-cell-inner >.x-btn-default-medium {
  4879. vertical-align: top;
  4880. }
  4881. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  4882. .x-btn-default-large {
  4883. -webkit-border-radius: 0;
  4884. -moz-border-radius: 0;
  4885. -ms-border-radius: 0;
  4886. -o-border-radius: 0;
  4887. border-radius: 0;
  4888. padding: 8px 16px 8px 16px;
  4889. border-width: 0px;
  4890. border-style: solid;
  4891. background-color: transparent;
  4892. }
  4893. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  4894. .x-btn-default-large-mc {
  4895. background-color: transparent;
  4896. }
  4897. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  4898. .x-nbr .x-btn-default-large {
  4899. padding: 0 !important;
  4900. border-width: 0 !important;
  4901. -webkit-border-radius: 0px;
  4902. -moz-border-radius: 0px;
  4903. -ms-border-radius: 0px;
  4904. -o-border-radius: 0px;
  4905. border-radius: 0px;
  4906. background-color: transparent !important;
  4907. box-shadow: none !important;
  4908. }
  4909. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  4910. .x-btn-default-large-frameInfo {
  4911. font-family: th-0-0-0-0-0-0-0-0-8-16-8-16;
  4912. }
  4913. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  4914. .x-btn-default-large-tl {
  4915. background-position: 0 0px;
  4916. }
  4917. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  4918. .x-btn-default-large-tr {
  4919. background-position: right 0px;
  4920. }
  4921. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  4922. .x-btn-default-large-bl {
  4923. background-position: 0 0px;
  4924. }
  4925. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  4926. .x-btn-default-large-br {
  4927. background-position: right 0px;
  4928. }
  4929. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  4930. .x-btn-default-large-ml {
  4931. background-position: 0 top;
  4932. }
  4933. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  4934. .x-btn-default-large-mr {
  4935. background-position: right top;
  4936. }
  4937. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  4938. .x-btn-default-large-tc {
  4939. background-position: 0 0;
  4940. }
  4941. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  4942. .x-btn-default-large-bc {
  4943. background-position: 0 0px;
  4944. }
  4945. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  4946. .x-btn-default-large-tr,
  4947. .x-btn-default-large-br,
  4948. .x-btn-default-large-mr {
  4949. padding-right: 0px;
  4950. }
  4951. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  4952. .x-btn-default-large-tl,
  4953. .x-btn-default-large-bl,
  4954. .x-btn-default-large-ml {
  4955. padding-left: 0px;
  4956. }
  4957. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  4958. .x-btn-default-large-tc {
  4959. height: 0px;
  4960. }
  4961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  4962. .x-btn-default-large-bc {
  4963. height: 0px;
  4964. }
  4965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  4966. .x-btn-default-large-mc {
  4967. padding: 8px 16px 8px 16px;
  4968. }
  4969. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  4970. .x-btn-default-large {
  4971. border-color: #5da8e5;
  4972. }
  4973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  4974. .x-btn-button-default-large {
  4975. min-height: 24px;
  4976. }
  4977. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  4978. .x-ie9m .x-btn-button-default-large {
  4979. min-height: auto;
  4980. height: 24px;
  4981. }
  4982. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  4983. .x-btn-inner-default-large {
  4984. font: 600 16px/20px Roboto, sans-serif;
  4985. color: #2196f3;
  4986. color: var(--base-color);
  4987. padding: 0 10px;
  4988. max-width: 100%;
  4989. }
  4990. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  4991. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-large,
  4992. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-large {
  4993. max-width: calc(100% - 24px);
  4994. }
  4995. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  4996. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-large,
  4997. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-large {
  4998. max-width: calc(100% - 23px);
  4999. }
  5000. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  5001. .x-ie10p .x-btn-inner-default-large {
  5002. max-width: none;
  5003. }
  5004. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  5005. .x-btn-icon-el-default-large {
  5006. font-size: 24px;
  5007. height: 24px;
  5008. color: #2196f3;
  5009. color: var(--base-color);
  5010. line-height: 24px;
  5011. }
  5012. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  5013. .x-btn-icon-left > .x-btn-icon-el-default-large,
  5014. .x-btn-icon-right > .x-btn-icon-el-default-large {
  5015. width: 24px;
  5016. }
  5017. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  5018. .x-btn-icon-top > .x-btn-icon-el-default-large,
  5019. .x-btn-icon-bottom > .x-btn-icon-el-default-large {
  5020. min-width: 24px;
  5021. }
  5022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  5023. .x-ie8 .x-btn-icon-el-default-large.x-btn-glyph {
  5024. color: #2196f3;
  5025. }
  5026. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  5027. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large {
  5028. margin-right: 0;
  5029. }
  5030. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  5031. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-large.x-rtl {
  5032. margin-right: 0;
  5033. margin-left: 0;
  5034. }
  5035. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  5036. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
  5037. margin-left: 0;
  5038. }
  5039. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  5040. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large.x-rtl {
  5041. margin-left: 0;
  5042. margin-right: 0;
  5043. }
  5044. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  5045. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-large {
  5046. margin-bottom: 8px;
  5047. }
  5048. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  5049. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-large {
  5050. margin-top: 8px;
  5051. }
  5052. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  5053. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large {
  5054. padding-right: 8px;
  5055. }
  5056. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  5057. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
  5058. margin-right: 10px;
  5059. }
  5060. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  5061. .x-btn-arrow-bottom > .x-btn-button-default-large,
  5062. .x-btn-split-bottom > .x-btn-button-default-large {
  5063. padding-bottom: 8px;
  5064. }
  5065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  5066. .x-btn-wrap-default-large.x-btn-arrow-right:after {
  5067. width: 22px;
  5068. content: 'arrow_drop_down';
  5069. font: 24px/1 'Material Icons', 'Font Awesome 5 Free';
  5070. color: #2196f3;
  5071. color: var(--base-color);
  5072. }
  5073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  5074. .x-btn-wrap-default-large.x-btn-arrow-bottom:after {
  5075. height: 16px;
  5076. content: 'arrow_drop_down';
  5077. font: 24px/16px 'Material Icons', 'Font Awesome 5 Free';
  5078. color: #2196f3;
  5079. color: var(--base-color);
  5080. }
  5081. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  5082. .x-btn-wrap-default-large.x-btn-split-right > .x-btn-button {
  5083. padding-right: 16px;
  5084. }
  5085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  5086. .x-btn-wrap-default-large.x-btn-split-right > .x-btn-button.x-rtl {
  5087. padding-right: 0;
  5088. padding-left: 16px;
  5089. }
  5090. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  5091. .x-btn-wrap-default-large.x-btn-split-right > .x-btn-button:after {
  5092. border-right: 1px solid #2196f3;
  5093. border-right: 1px solid var(--base-color);
  5094. }
  5095. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  5096. .x-btn-wrap-default-large.x-btn-split-right:after {
  5097. width: 32px;
  5098. content: 'arrow_drop_down';
  5099. font: 24px/1 'Material Icons', 'Font Awesome 5 Free';
  5100. color: #2196f3;
  5101. color: var(--base-color);
  5102. padding-left: 16px;
  5103. }
  5104. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  5105. .x-btn-wrap-default-large.x-rtl.x-btn-split-right:after {
  5106. padding-left: 0;
  5107. padding-right: 16px;
  5108. }
  5109. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  5110. .x-btn-wrap-default-large.x-btn-split-bottom {
  5111. margin-bottom: -8px;
  5112. }
  5113. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  5114. .x-btn-wrap-default-large.x-btn-split-bottom > .x-btn-button:after {
  5115. border-bottom: 1px solid #2196f3;
  5116. border-bottom: 1px solid var(--base-color);
  5117. }
  5118. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  5119. .x-btn-wrap-default-large.x-btn-split-bottom:after {
  5120. height: 32px;
  5121. content: 'arrow_drop_down';
  5122. font: 24px/32px 'Material Icons', 'Font Awesome 5 Free';
  5123. color: #2196f3;
  5124. color: var(--base-color);
  5125. }
  5126. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  5127. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-large {
  5128. padding-right: 8px;
  5129. }
  5130. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  5131. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-large {
  5132. margin-right: 10px;
  5133. }
  5134. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  5135. .x-keyboard-mode .x-btn-focus.x-btn-default-large {
  5136. background-image: none;
  5137. background-color: #42a5f5;
  5138. background-color: var(--base-focused-color);
  5139. -webkit-box-shadow: none;
  5140. -moz-box-shadow: none;
  5141. box-shadow: none;
  5142. }
  5143. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  5144. .x-keyboard-mode .x-btn-focus.x-btn-default-large .x-btn-inner {
  5145. color: #fff;
  5146. }
  5147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  5148. .x-btn-default-large .x-btn-arrow-el {
  5149. position: absolute;
  5150. top: 0;
  5151. right: 0;
  5152. height: 100%;
  5153. width: 48px;
  5154. pointer-events: none;
  5155. }
  5156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  5157. .x-btn-default-large .x-btn-arrow-el.x-rtl {
  5158. right: inherit;
  5159. left: 0;
  5160. }
  5161. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  5162. .x-keyboard-mode .x-btn-default-large.x-arrow-focus .x-btn-arrow-el {
  5163. border: 0px solid #d9edfd;
  5164. }
  5165. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  5166. .x-btn-over.x-btn-default-large {
  5167. border-color: #569bd2;
  5168. background-image: none;
  5169. background-color: rgba(17, 17, 17, 0.075);
  5170. }
  5171. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  5172. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-large {
  5173. -webkit-box-shadow: none;
  5174. -moz-box-shadow: none;
  5175. box-shadow: none;
  5176. }
  5177. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  5178. .x-btn.x-btn-menu-active.x-btn-default-large,
  5179. .x-btn.x-btn-pressed.x-btn-default-large {
  5180. border-color: #467eac;
  5181. background-image: none;
  5182. background-color: #0c7ce6;
  5183. }
  5184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  5185. .x-btn.x-btn-menu-active.x-btn-default-large .x-btn-inner,
  5186. .x-btn.x-btn-pressed.x-btn-default-large .x-btn-inner {
  5187. color: #fff;
  5188. }
  5189. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  5190. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-large,
  5191. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-large {
  5192. background-image: none;
  5193. background-color: #6ab8f7;
  5194. background-color: var(--base-pressed-color);
  5195. -webkit-box-shadow: none;
  5196. -moz-box-shadow: none;
  5197. box-shadow: none;
  5198. }
  5199. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  5200. .x-btn.x-btn-disabled.x-btn-default-large {
  5201. background-image: none;
  5202. background-color: transparent;
  5203. }
  5204. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2944 */
  5205. .x-btn.x-btn-disabled.x-btn-default-large .x-btn-inner {
  5206. color: rgba(0, 0, 0, 0.26);
  5207. }
  5208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  5209. .x-keyboard-mode .x-btn-focus .x-btn-default-large-tl,
  5210. .x-keyboard-mode .x-btn-focus .x-btn-default-large-bl,
  5211. .x-keyboard-mode .x-btn-focus .x-btn-default-large-tr,
  5212. .x-keyboard-mode .x-btn-focus .x-btn-default-large-br,
  5213. .x-keyboard-mode .x-btn-focus .x-btn-default-large-tc,
  5214. .x-keyboard-mode .x-btn-focus .x-btn-default-large-bc {
  5215. background-image: url(images/btn/btn-default-large-focus-corners.gif);
  5216. }
  5217. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  5218. .x-keyboard-mode .x-btn-focus .x-btn-default-large-ml,
  5219. .x-keyboard-mode .x-btn-focus .x-btn-default-large-mr {
  5220. background-image: url(images/btn/btn-default-large-focus-sides.gif);
  5221. }
  5222. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  5223. .x-keyboard-mode .x-btn-focus .x-btn-default-large-mc {
  5224. background-color: #42a5f5;
  5225. background-color: var(--base-focused-color);
  5226. }
  5227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  5228. .x-btn-over .x-btn-default-large-tl,
  5229. .x-btn-over .x-btn-default-large-bl,
  5230. .x-btn-over .x-btn-default-large-tr,
  5231. .x-btn-over .x-btn-default-large-br,
  5232. .x-btn-over .x-btn-default-large-tc,
  5233. .x-btn-over .x-btn-default-large-bc {
  5234. background-image: url(images/btn/btn-default-large-over-corners.gif);
  5235. }
  5236. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  5237. .x-btn-over .x-btn-default-large-ml,
  5238. .x-btn-over .x-btn-default-large-mr {
  5239. background-image: url(images/btn/btn-default-large-over-sides.gif);
  5240. }
  5241. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  5242. .x-btn-over .x-btn-default-large-mc {
  5243. background-color: rgba(17, 17, 17, 0.075);
  5244. }
  5245. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  5246. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-tl,
  5247. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-bl,
  5248. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-tr,
  5249. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-br,
  5250. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-tc,
  5251. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-bc {
  5252. background-image: url(images/btn/btn-default-large-focus-over-corners.gif);
  5253. }
  5254. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  5255. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-ml,
  5256. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-mr {
  5257. background-image: url(images/btn/btn-default-large-focus-over-sides.gif);
  5258. }
  5259. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  5260. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-large-mc {
  5261. background-color: rgba(17, 17, 17, 0.075);
  5262. }
  5263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  5264. .x-btn.x-btn-menu-active .x-btn-default-large-tl,
  5265. .x-btn.x-btn-menu-active .x-btn-default-large-bl,
  5266. .x-btn.x-btn-menu-active .x-btn-default-large-tr,
  5267. .x-btn.x-btn-menu-active .x-btn-default-large-br,
  5268. .x-btn.x-btn-menu-active .x-btn-default-large-tc,
  5269. .x-btn.x-btn-menu-active .x-btn-default-large-bc,
  5270. .x-btn.x-btn-pressed .x-btn-default-large-tl,
  5271. .x-btn.x-btn-pressed .x-btn-default-large-bl,
  5272. .x-btn.x-btn-pressed .x-btn-default-large-tr,
  5273. .x-btn.x-btn-pressed .x-btn-default-large-br,
  5274. .x-btn.x-btn-pressed .x-btn-default-large-tc,
  5275. .x-btn.x-btn-pressed .x-btn-default-large-bc {
  5276. background-image: url(images/btn/btn-default-large-pressed-corners.gif);
  5277. }
  5278. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  5279. .x-btn.x-btn-menu-active .x-btn-default-large-ml,
  5280. .x-btn.x-btn-menu-active .x-btn-default-large-mr,
  5281. .x-btn.x-btn-pressed .x-btn-default-large-ml,
  5282. .x-btn.x-btn-pressed .x-btn-default-large-mr {
  5283. background-image: url(images/btn/btn-default-large-pressed-sides.gif);
  5284. }
  5285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  5286. .x-btn.x-btn-menu-active .x-btn-default-large-mc,
  5287. .x-btn.x-btn-pressed .x-btn-default-large-mc {
  5288. background-color: #0c7ce6;
  5289. }
  5290. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  5291. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-tl,
  5292. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-bl,
  5293. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-tr,
  5294. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-br,
  5295. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-tc,
  5296. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-bc,
  5297. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-tl,
  5298. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-bl,
  5299. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-tr,
  5300. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-br,
  5301. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-tc,
  5302. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-bc {
  5303. background-image: url(images/btn/btn-default-large-focus-pressed-corners.gif);
  5304. }
  5305. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  5306. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-ml,
  5307. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-mr,
  5308. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-ml,
  5309. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-mr {
  5310. background-image: url(images/btn/btn-default-large-focus-pressed-sides.gif);
  5311. }
  5312. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  5313. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-large-mc,
  5314. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-large-mc {
  5315. background-color: #6ab8f7;
  5316. background-color: var(--base-pressed-color);
  5317. }
  5318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  5319. .x-btn.x-btn-disabled .x-btn-default-large-tl,
  5320. .x-btn.x-btn-disabled .x-btn-default-large-bl,
  5321. .x-btn.x-btn-disabled .x-btn-default-large-tr,
  5322. .x-btn.x-btn-disabled .x-btn-default-large-br,
  5323. .x-btn.x-btn-disabled .x-btn-default-large-tc,
  5324. .x-btn.x-btn-disabled .x-btn-default-large-bc {
  5325. background-image: url(images/btn/btn-default-large-disabled-corners.gif);
  5326. }
  5327. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  5328. .x-btn.x-btn-disabled .x-btn-default-large-ml,
  5329. .x-btn.x-btn-disabled .x-btn-default-large-mr {
  5330. background-image: url(images/btn/btn-default-large-disabled-sides.gif);
  5331. }
  5332. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  5333. .x-btn.x-btn-disabled .x-btn-default-large-mc {
  5334. background-color: transparent;
  5335. }
  5336. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  5337. .x-nbr .x-btn-default-large {
  5338. background-image: none;
  5339. }
  5340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  5341. .x-btn-disabled.x-btn-default-large {
  5342. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=)";
  5343. }
  5344. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  5345. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first {
  5346. border-right-width: 0px !important;
  5347. }
  5348. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  5349. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first .x-btn-default-large-mc {
  5350. padding-right: 16px !important;
  5351. }
  5352. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  5353. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-middle {
  5354. border-right-width: 0px !important;
  5355. }
  5356. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  5357. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-middle .x-btn-default-large-mc {
  5358. padding-right: 16px !important;
  5359. padding-left: 16px !important;
  5360. }
  5361. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  5362. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-last .x-btn-default-large-mc {
  5363. padding-left: 16px !important;
  5364. }
  5365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  5366. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first {
  5367. border-bottom-width: 0px !important;
  5368. }
  5369. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  5370. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first .x-btn-default-large-mc {
  5371. padding-bottom: 8px !important;
  5372. }
  5373. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  5374. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-middle {
  5375. border-bottom-width: 0px !important;
  5376. }
  5377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  5378. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-middle .x-btn-default-large-mc {
  5379. padding-top: 8px !important;
  5380. padding-bottom: 8px !important;
  5381. }
  5382. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  5383. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-last .x-btn-default-large-mc {
  5384. padding-top: 8px !important;
  5385. }
  5386. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  5387. .x-nbr .x-segmented-button-item.x-btn-default-large:after {
  5388. content: ' ';
  5389. border-style: solid;
  5390. border-width: 0;
  5391. position: absolute;
  5392. }
  5393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  5394. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large:after {
  5395. top: 0px;
  5396. right: 0;
  5397. bottom: 0px;
  5398. left: 0;
  5399. }
  5400. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  5401. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-first:after {
  5402. left: 0px;
  5403. }
  5404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  5405. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-large.x-segmented-button-last:after {
  5406. right: 0px;
  5407. }
  5408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  5409. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large:after {
  5410. top: 0;
  5411. right: 0px;
  5412. bottom: 0;
  5413. left: 0px;
  5414. }
  5415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  5416. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-first:after {
  5417. top: 0px;
  5418. }
  5419. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  5420. .x-nbr .x-segmented-button-item-vertical.x-btn-default-large.x-segmented-button-last:after {
  5421. bottom: 0px;
  5422. }
  5423. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  5424. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-large:after {
  5425. border-width: 0px;
  5426. border-color: #d9edfd;
  5427. }
  5428. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  5429. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-large:after {
  5430. border-width: 0px;
  5431. border-color: rgba(33, 149, 241, 0.8150000000000001);
  5432. }
  5433. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  5434. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-large:after,
  5435. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-large:after {
  5436. border-width: 0px;
  5437. border-color: #e1f1fd;
  5438. }
  5439. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  5440. .x-button-default-large-cell > .x-grid-cell-inner {
  5441. padding-top: 4px;
  5442. padding-bottom: 4px;
  5443. }
  5444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  5445. .x-button-default-large-cell > .x-grid-cell-inner >.x-btn-default-large {
  5446. vertical-align: top;
  5447. }
  5448. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  5449. .x-btn-default-toolbar-small {
  5450. -webkit-border-radius: 2px;
  5451. -moz-border-radius: 2px;
  5452. -ms-border-radius: 2px;
  5453. -o-border-radius: 2px;
  5454. border-radius: 2px;
  5455. padding: 8px 16px 8px 16px;
  5456. border-width: 0px;
  5457. border-style: solid;
  5458. background-color: transparent;
  5459. }
  5460. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  5461. .x-btn-default-toolbar-small-mc {
  5462. background-color: transparent;
  5463. }
  5464. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  5465. .x-nbr .x-btn-default-toolbar-small {
  5466. padding: 0 !important;
  5467. border-width: 0 !important;
  5468. -webkit-border-radius: 0px;
  5469. -moz-border-radius: 0px;
  5470. -ms-border-radius: 0px;
  5471. -o-border-radius: 0px;
  5472. border-radius: 0px;
  5473. background-color: transparent !important;
  5474. box-shadow: none !important;
  5475. }
  5476. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  5477. .x-btn-default-toolbar-small-frameInfo {
  5478. font-family: th-2-2-2-2-0-0-0-0-8-16-8-16;
  5479. }
  5480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  5481. .x-btn-default-toolbar-small-tl {
  5482. background-position: 0 -4px;
  5483. }
  5484. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  5485. .x-btn-default-toolbar-small-tr {
  5486. background-position: right -6px;
  5487. }
  5488. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  5489. .x-btn-default-toolbar-small-bl {
  5490. background-position: 0 -8px;
  5491. }
  5492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  5493. .x-btn-default-toolbar-small-br {
  5494. background-position: right -10px;
  5495. }
  5496. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  5497. .x-btn-default-toolbar-small-ml {
  5498. background-position: 0 top;
  5499. }
  5500. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  5501. .x-btn-default-toolbar-small-mr {
  5502. background-position: right top;
  5503. }
  5504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  5505. .x-btn-default-toolbar-small-tc {
  5506. background-position: 0 0;
  5507. }
  5508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  5509. .x-btn-default-toolbar-small-bc {
  5510. background-position: 0 -2px;
  5511. }
  5512. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  5513. .x-btn-default-toolbar-small-tr,
  5514. .x-btn-default-toolbar-small-br,
  5515. .x-btn-default-toolbar-small-mr {
  5516. padding-right: 2px;
  5517. }
  5518. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  5519. .x-btn-default-toolbar-small-tl,
  5520. .x-btn-default-toolbar-small-bl,
  5521. .x-btn-default-toolbar-small-ml {
  5522. padding-left: 2px;
  5523. }
  5524. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  5525. .x-btn-default-toolbar-small-tc {
  5526. height: 2px;
  5527. }
  5528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  5529. .x-btn-default-toolbar-small-bc {
  5530. height: 2px;
  5531. }
  5532. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  5533. .x-btn-default-toolbar-small-mc {
  5534. padding: 6px 14px 6px 14px;
  5535. }
  5536. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  5537. .x-btn-default-toolbar-small {
  5538. border-color: #e4e4e4;
  5539. }
  5540. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  5541. .x-btn-button-default-toolbar-small {
  5542. min-height: 16px;
  5543. }
  5544. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  5545. .x-ie9m .x-btn-button-default-toolbar-small {
  5546. min-height: auto;
  5547. height: 16px;
  5548. }
  5549. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  5550. .x-btn-inner-default-toolbar-small {
  5551. font: 600 13px/15px Roboto, sans-serif;
  5552. color: #2196f3;
  5553. color: var(--base-color);
  5554. padding: 0 5px;
  5555. max-width: 100%;
  5556. }
  5557. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  5558. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-toolbar-small,
  5559. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-toolbar-small {
  5560. max-width: calc(100% - 16px);
  5561. }
  5562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  5563. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-toolbar-small,
  5564. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-toolbar-small {
  5565. max-width: calc(100% - 15px);
  5566. }
  5567. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  5568. .x-ie10p .x-btn-inner-default-toolbar-small {
  5569. max-width: none;
  5570. }
  5571. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  5572. .x-btn-icon-el-default-toolbar-small {
  5573. font-size: 16px;
  5574. height: 16px;
  5575. color: #2196f3;
  5576. color: var(--base-color);
  5577. line-height: 16px;
  5578. }
  5579. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  5580. .x-btn-icon-left > .x-btn-icon-el-default-toolbar-small,
  5581. .x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
  5582. width: 16px;
  5583. }
  5584. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  5585. .x-btn-icon-top > .x-btn-icon-el-default-toolbar-small,
  5586. .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small {
  5587. min-width: 16px;
  5588. }
  5589. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  5590. .x-ie8 .x-btn-icon-el-default-toolbar-small.x-btn-glyph {
  5591. color: #2196f3;
  5592. }
  5593. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  5594. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small {
  5595. margin-right: 3px;
  5596. }
  5597. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  5598. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-small.x-rtl {
  5599. margin-right: 0;
  5600. margin-left: 3px;
  5601. }
  5602. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  5603. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
  5604. margin-left: 3px;
  5605. }
  5606. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  5607. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small.x-rtl {
  5608. margin-left: 0;
  5609. margin-right: 3px;
  5610. }
  5611. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  5612. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-small {
  5613. margin-bottom: 8px;
  5614. }
  5615. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  5616. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-small {
  5617. margin-top: 8px;
  5618. }
  5619. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  5620. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small {
  5621. padding-right: 8px;
  5622. }
  5623. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  5624. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
  5625. margin-right: 5px;
  5626. }
  5627. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  5628. .x-btn-arrow-bottom > .x-btn-button-default-toolbar-small,
  5629. .x-btn-split-bottom > .x-btn-button-default-toolbar-small {
  5630. padding-bottom: 8px;
  5631. }
  5632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  5633. .x-btn-wrap-default-toolbar-small.x-btn-arrow-right:after {
  5634. width: 18px;
  5635. content: 'arrow_drop_down';
  5636. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  5637. color: #2196f3;
  5638. color: var(--base-color);
  5639. }
  5640. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  5641. .x-btn-wrap-default-toolbar-small.x-btn-arrow-bottom:after {
  5642. height: 12px;
  5643. content: 'arrow_drop_down';
  5644. font: 16px/12px 'Material Icons', 'Font Awesome 5 Free';
  5645. color: #2196f3;
  5646. color: var(--base-color);
  5647. }
  5648. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  5649. .x-btn-wrap-default-toolbar-small.x-btn-split-right > .x-btn-button {
  5650. padding-right: 16px;
  5651. }
  5652. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  5653. .x-btn-wrap-default-toolbar-small.x-btn-split-right > .x-btn-button.x-rtl {
  5654. padding-right: 0;
  5655. padding-left: 16px;
  5656. }
  5657. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  5658. .x-btn-wrap-default-toolbar-small.x-btn-split-right > .x-btn-button:after {
  5659. border-right: 1px solid #2196f3;
  5660. border-right: 1px solid var(--base-color);
  5661. }
  5662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  5663. .x-btn-wrap-default-toolbar-small.x-btn-split-right:after {
  5664. width: 16px;
  5665. content: 'arrow_drop_down';
  5666. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  5667. color: #2196f3;
  5668. color: var(--base-color);
  5669. padding-left: 16px;
  5670. }
  5671. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  5672. .x-btn-wrap-default-toolbar-small.x-rtl.x-btn-split-right:after {
  5673. padding-left: 0;
  5674. padding-right: 16px;
  5675. }
  5676. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  5677. .x-btn-wrap-default-toolbar-small.x-btn-split-bottom {
  5678. margin-bottom: -8px;
  5679. }
  5680. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  5681. .x-btn-wrap-default-toolbar-small.x-btn-split-bottom > .x-btn-button:after {
  5682. border-bottom: 1px solid #2196f3;
  5683. border-bottom: 1px solid var(--base-color);
  5684. }
  5685. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  5686. .x-btn-wrap-default-toolbar-small.x-btn-split-bottom:after {
  5687. height: 16px;
  5688. content: 'arrow_drop_down';
  5689. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  5690. color: #2196f3;
  5691. color: var(--base-color);
  5692. }
  5693. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  5694. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-small {
  5695. padding-right: 8px;
  5696. }
  5697. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  5698. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-small {
  5699. margin-right: 5px;
  5700. }
  5701. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  5702. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-small {
  5703. background-image: none;
  5704. background-color: #42a5f5;
  5705. background-color: var(--base-focused-color);
  5706. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5707. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5708. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5709. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5710. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5711. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5712. }
  5713. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  5714. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-small .x-btn-inner {
  5715. color: #fff;
  5716. }
  5717. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  5718. .x-btn-default-toolbar-small .x-btn-arrow-el {
  5719. position: absolute;
  5720. top: 0;
  5721. right: 0;
  5722. height: 100%;
  5723. width: 32px;
  5724. pointer-events: none;
  5725. }
  5726. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  5727. .x-btn-default-toolbar-small .x-btn-arrow-el.x-rtl {
  5728. right: inherit;
  5729. left: 0;
  5730. }
  5731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  5732. .x-keyboard-mode .x-btn-default-toolbar-small.x-arrow-focus .x-btn-arrow-el {
  5733. border: 1px solid #2196f3;
  5734. border: 1px solid var(--base-color);
  5735. }
  5736. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  5737. .x-btn-over.x-btn-default-toolbar-small {
  5738. border-color: #dbdbdb;
  5739. background-image: none;
  5740. background-color: rgba(17, 17, 17, 0.075);
  5741. }
  5742. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  5743. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-small {
  5744. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5745. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5746. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5747. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5748. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5749. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5750. }
  5751. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2856 */
  5752. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-small .x-btn-inner {
  5753. color: #fff;
  5754. }
  5755. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  5756. .x-btn.x-btn-menu-active.x-btn-default-toolbar-small,
  5757. .x-btn.x-btn-pressed.x-btn-default-toolbar-small {
  5758. border-color: #d2d2d2;
  5759. background-image: none;
  5760. background-color: #2196f3;
  5761. background-color: var(--base-color);
  5762. -webkit-box-shadow: none;
  5763. -moz-box-shadow: none;
  5764. box-shadow: none;
  5765. }
  5766. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  5767. .x-btn.x-btn-menu-active.x-btn-default-toolbar-small .x-btn-inner,
  5768. .x-btn.x-btn-pressed.x-btn-default-toolbar-small .x-btn-inner {
  5769. color: #fff;
  5770. }
  5771. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  5772. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-small,
  5773. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-small {
  5774. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5775. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5776. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5777. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5778. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  5779. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  5780. }
  5781. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  5782. .x-btn.x-btn-disabled.x-btn-default-toolbar-small {
  5783. background-image: none;
  5784. background-color: transparent;
  5785. }
  5786. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  5787. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-tl,
  5788. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-bl,
  5789. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-tr,
  5790. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-br,
  5791. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-tc,
  5792. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-bc {
  5793. background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif);
  5794. }
  5795. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  5796. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-ml,
  5797. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-mr {
  5798. background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif);
  5799. }
  5800. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  5801. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-small-mc {
  5802. background-color: #42a5f5;
  5803. background-color: var(--base-focused-color);
  5804. }
  5805. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  5806. .x-btn-over .x-btn-default-toolbar-small-tl,
  5807. .x-btn-over .x-btn-default-toolbar-small-bl,
  5808. .x-btn-over .x-btn-default-toolbar-small-tr,
  5809. .x-btn-over .x-btn-default-toolbar-small-br,
  5810. .x-btn-over .x-btn-default-toolbar-small-tc,
  5811. .x-btn-over .x-btn-default-toolbar-small-bc {
  5812. background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif);
  5813. }
  5814. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  5815. .x-btn-over .x-btn-default-toolbar-small-ml,
  5816. .x-btn-over .x-btn-default-toolbar-small-mr {
  5817. background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif);
  5818. }
  5819. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  5820. .x-btn-over .x-btn-default-toolbar-small-mc {
  5821. background-color: rgba(17, 17, 17, 0.075);
  5822. }
  5823. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  5824. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tl,
  5825. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-bl,
  5826. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tr,
  5827. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-br,
  5828. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-tc,
  5829. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-bc {
  5830. background-image: url(images/btn/btn-default-toolbar-small-focus-over-corners.gif);
  5831. }
  5832. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  5833. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-ml,
  5834. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-mr {
  5835. background-image: url(images/btn/btn-default-toolbar-small-focus-over-sides.gif);
  5836. }
  5837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  5838. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-small-mc {
  5839. background-color: rgba(17, 17, 17, 0.075);
  5840. }
  5841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  5842. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tl,
  5843. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-bl,
  5844. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tr,
  5845. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-br,
  5846. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-tc,
  5847. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-bc,
  5848. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tl,
  5849. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-bl,
  5850. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tr,
  5851. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-br,
  5852. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-tc,
  5853. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-bc {
  5854. background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif);
  5855. }
  5856. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  5857. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-ml,
  5858. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-mr,
  5859. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-ml,
  5860. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-mr {
  5861. background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif);
  5862. }
  5863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  5864. .x-btn.x-btn-menu-active .x-btn-default-toolbar-small-mc,
  5865. .x-btn.x-btn-pressed .x-btn-default-toolbar-small-mc {
  5866. background-color: #2196f3;
  5867. background-color: var(--base-color);
  5868. }
  5869. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  5870. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tl,
  5871. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-bl,
  5872. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tr,
  5873. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-br,
  5874. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-tc,
  5875. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-bc,
  5876. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tl,
  5877. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-bl,
  5878. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tr,
  5879. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-br,
  5880. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-tc,
  5881. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-bc {
  5882. background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-corners.gif);
  5883. }
  5884. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  5885. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-ml,
  5886. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-mr,
  5887. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-ml,
  5888. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-mr {
  5889. background-image: url(images/btn/btn-default-toolbar-small-focus-pressed-sides.gif);
  5890. }
  5891. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  5892. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-small-mc,
  5893. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-small-mc {
  5894. background-color: #2196f3;
  5895. background-color: var(--base-color);
  5896. }
  5897. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  5898. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tl,
  5899. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-bl,
  5900. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tr,
  5901. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-br,
  5902. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-tc,
  5903. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-bc {
  5904. background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif);
  5905. }
  5906. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  5907. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-ml,
  5908. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-mr {
  5909. background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif);
  5910. }
  5911. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  5912. .x-btn.x-btn-disabled .x-btn-default-toolbar-small-mc {
  5913. background-color: transparent;
  5914. }
  5915. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  5916. .x-nbr .x-btn-default-toolbar-small {
  5917. background-image: none;
  5918. }
  5919. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  5920. .x-btn-disabled.x-btn-default-toolbar-small {
  5921. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  5922. opacity: 0.5;
  5923. }
  5924. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  5925. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first {
  5926. border-right-width: 0px !important;
  5927. }
  5928. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  5929. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first .x-btn-default-toolbar-small-mc {
  5930. padding-right: 16px !important;
  5931. }
  5932. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  5933. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-middle {
  5934. border-right-width: 0px !important;
  5935. }
  5936. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  5937. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-middle .x-btn-default-toolbar-small-mc {
  5938. padding-right: 16px !important;
  5939. padding-left: 16px !important;
  5940. }
  5941. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  5942. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-last .x-btn-default-toolbar-small-mc {
  5943. padding-left: 16px !important;
  5944. }
  5945. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  5946. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first {
  5947. border-bottom-width: 0px !important;
  5948. }
  5949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  5950. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first .x-btn-default-toolbar-small-mc {
  5951. padding-bottom: 8px !important;
  5952. }
  5953. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  5954. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-middle {
  5955. border-bottom-width: 0px !important;
  5956. }
  5957. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  5958. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-middle .x-btn-default-toolbar-small-mc {
  5959. padding-top: 8px !important;
  5960. padding-bottom: 8px !important;
  5961. }
  5962. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  5963. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-last .x-btn-default-toolbar-small-mc {
  5964. padding-top: 8px !important;
  5965. }
  5966. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  5967. .x-nbr .x-segmented-button-item.x-btn-default-toolbar-small:after {
  5968. content: ' ';
  5969. border-style: solid;
  5970. border-width: 0;
  5971. position: absolute;
  5972. }
  5973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  5974. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small:after {
  5975. top: 0px;
  5976. right: 0;
  5977. bottom: 0px;
  5978. left: 0;
  5979. }
  5980. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  5981. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-first:after {
  5982. left: 0px;
  5983. }
  5984. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  5985. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-small.x-segmented-button-last:after {
  5986. right: 0px;
  5987. }
  5988. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  5989. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small:after {
  5990. top: 0;
  5991. right: 0px;
  5992. bottom: 0;
  5993. left: 0px;
  5994. }
  5995. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  5996. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-first:after {
  5997. top: 0px;
  5998. }
  5999. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  6000. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-small.x-segmented-button-last:after {
  6001. bottom: 0px;
  6002. }
  6003. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  6004. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-small:after {
  6005. border-width: 1px;
  6006. border-color: #2196f3;
  6007. border-color: var(--base-color);
  6008. }
  6009. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  6010. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-small:after {
  6011. border-width: 1px;
  6012. border-color: #2196f3;
  6013. border-color: var(--base-color);
  6014. }
  6015. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3257 */
  6016. .x-nbr .x-segmented-button-item.x-btn.x-btn-menu-active.x-btn-default-toolbar-small:after,
  6017. .x-nbr .x-segmented-button-item.x-btn.x-btn-pressed.x-btn-default-toolbar-small:after {
  6018. border-width: 0px;
  6019. border-color: #51adf6;
  6020. }
  6021. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  6022. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-small:after,
  6023. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-small:after {
  6024. border-width: 1px;
  6025. border-color: #2196f3;
  6026. border-color: var(--base-color);
  6027. }
  6028. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  6029. .x-button-default-toolbar-small-cell > .x-grid-cell-inner {
  6030. padding-top: 8px;
  6031. padding-bottom: 8px;
  6032. }
  6033. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  6034. .x-button-default-toolbar-small-cell > .x-grid-cell-inner >.x-btn-default-toolbar-small {
  6035. vertical-align: top;
  6036. }
  6037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  6038. .x-btn-default-toolbar-medium {
  6039. -webkit-border-radius: 0;
  6040. -moz-border-radius: 0;
  6041. -ms-border-radius: 0;
  6042. -o-border-radius: 0;
  6043. border-radius: 0;
  6044. padding: 8px 16px 8px 16px;
  6045. border-width: 0px;
  6046. border-style: solid;
  6047. background-color: transparent;
  6048. }
  6049. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  6050. .x-btn-default-toolbar-medium-mc {
  6051. background-color: transparent;
  6052. }
  6053. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  6054. .x-nbr .x-btn-default-toolbar-medium {
  6055. padding: 0 !important;
  6056. border-width: 0 !important;
  6057. -webkit-border-radius: 0px;
  6058. -moz-border-radius: 0px;
  6059. -ms-border-radius: 0px;
  6060. -o-border-radius: 0px;
  6061. border-radius: 0px;
  6062. background-color: transparent !important;
  6063. box-shadow: none !important;
  6064. }
  6065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  6066. .x-btn-default-toolbar-medium-frameInfo {
  6067. font-family: th-0-0-0-0-0-0-0-0-8-16-8-16;
  6068. }
  6069. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  6070. .x-btn-default-toolbar-medium-tl {
  6071. background-position: 0 0px;
  6072. }
  6073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  6074. .x-btn-default-toolbar-medium-tr {
  6075. background-position: right 0px;
  6076. }
  6077. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  6078. .x-btn-default-toolbar-medium-bl {
  6079. background-position: 0 0px;
  6080. }
  6081. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  6082. .x-btn-default-toolbar-medium-br {
  6083. background-position: right 0px;
  6084. }
  6085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  6086. .x-btn-default-toolbar-medium-ml {
  6087. background-position: 0 top;
  6088. }
  6089. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  6090. .x-btn-default-toolbar-medium-mr {
  6091. background-position: right top;
  6092. }
  6093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  6094. .x-btn-default-toolbar-medium-tc {
  6095. background-position: 0 0;
  6096. }
  6097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  6098. .x-btn-default-toolbar-medium-bc {
  6099. background-position: 0 0px;
  6100. }
  6101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  6102. .x-btn-default-toolbar-medium-tr,
  6103. .x-btn-default-toolbar-medium-br,
  6104. .x-btn-default-toolbar-medium-mr {
  6105. padding-right: 0px;
  6106. }
  6107. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  6108. .x-btn-default-toolbar-medium-tl,
  6109. .x-btn-default-toolbar-medium-bl,
  6110. .x-btn-default-toolbar-medium-ml {
  6111. padding-left: 0px;
  6112. }
  6113. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  6114. .x-btn-default-toolbar-medium-tc {
  6115. height: 0px;
  6116. }
  6117. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  6118. .x-btn-default-toolbar-medium-bc {
  6119. height: 0px;
  6120. }
  6121. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  6122. .x-btn-default-toolbar-medium-mc {
  6123. padding: 8px 16px 8px 16px;
  6124. }
  6125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  6126. .x-btn-default-toolbar-medium {
  6127. border-color: #e4e4e4;
  6128. }
  6129. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  6130. .x-btn-button-default-toolbar-medium {
  6131. min-height: 20px;
  6132. }
  6133. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  6134. .x-ie9m .x-btn-button-default-toolbar-medium {
  6135. min-height: auto;
  6136. height: 20px;
  6137. }
  6138. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  6139. .x-btn-inner-default-toolbar-medium {
  6140. font: 600 14px/16px Roboto, sans-serif;
  6141. color: #2196f3;
  6142. color: var(--base-color);
  6143. padding: 0 8px;
  6144. max-width: 100%;
  6145. }
  6146. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  6147. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-toolbar-medium,
  6148. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-toolbar-medium {
  6149. max-width: calc(100% - 20px);
  6150. }
  6151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  6152. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-toolbar-medium,
  6153. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-toolbar-medium {
  6154. max-width: calc(100% - 19px);
  6155. }
  6156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  6157. .x-ie10p .x-btn-inner-default-toolbar-medium {
  6158. max-width: none;
  6159. }
  6160. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  6161. .x-btn-icon-el-default-toolbar-medium {
  6162. font-size: 20px;
  6163. height: 20px;
  6164. color: #2196f3;
  6165. color: var(--base-color);
  6166. line-height: 20px;
  6167. }
  6168. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  6169. .x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium,
  6170. .x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
  6171. width: 20px;
  6172. }
  6173. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  6174. .x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium,
  6175. .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium {
  6176. min-width: 20px;
  6177. }
  6178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  6179. .x-ie8 .x-btn-icon-el-default-toolbar-medium.x-btn-glyph {
  6180. color: #2196f3;
  6181. }
  6182. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  6183. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium {
  6184. margin-right: 0px;
  6185. }
  6186. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  6187. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-medium.x-rtl {
  6188. margin-right: 0;
  6189. margin-left: 0px;
  6190. }
  6191. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  6192. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
  6193. margin-left: 0px;
  6194. }
  6195. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  6196. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium.x-rtl {
  6197. margin-left: 0;
  6198. margin-right: 0px;
  6199. }
  6200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  6201. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-medium {
  6202. margin-bottom: 8px;
  6203. }
  6204. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  6205. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-medium {
  6206. margin-top: 8px;
  6207. }
  6208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  6209. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium {
  6210. padding-right: 8px;
  6211. }
  6212. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  6213. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
  6214. margin-right: 8px;
  6215. }
  6216. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  6217. .x-btn-arrow-bottom > .x-btn-button-default-toolbar-medium,
  6218. .x-btn-split-bottom > .x-btn-button-default-toolbar-medium {
  6219. padding-bottom: 8px;
  6220. }
  6221. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  6222. .x-btn-wrap-default-toolbar-medium.x-btn-arrow-right:after {
  6223. width: 20px;
  6224. content: 'arrow_drop_down';
  6225. font: 20px/1 'Material Icons', 'Font Awesome 5 Free';
  6226. color: #2196f3;
  6227. color: var(--base-color);
  6228. }
  6229. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  6230. .x-btn-wrap-default-toolbar-medium.x-btn-arrow-bottom:after {
  6231. height: 14px;
  6232. content: 'arrow_drop_down';
  6233. font: 20px/14px 'Material Icons', 'Font Awesome 5 Free';
  6234. color: #2196f3;
  6235. color: var(--base-color);
  6236. }
  6237. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  6238. .x-btn-wrap-default-toolbar-medium.x-btn-split-right > .x-btn-button {
  6239. padding-right: 16px;
  6240. }
  6241. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  6242. .x-btn-wrap-default-toolbar-medium.x-btn-split-right > .x-btn-button.x-rtl {
  6243. padding-right: 0;
  6244. padding-left: 16px;
  6245. }
  6246. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  6247. .x-btn-wrap-default-toolbar-medium.x-btn-split-right > .x-btn-button:after {
  6248. border-right: 1px solid #2196f3;
  6249. border-right: 1px solid var(--base-color);
  6250. }
  6251. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  6252. .x-btn-wrap-default-toolbar-medium.x-btn-split-right:after {
  6253. width: 24px;
  6254. content: 'arrow_drop_down';
  6255. font: 20px/1 'Material Icons', 'Font Awesome 5 Free';
  6256. color: #2196f3;
  6257. color: var(--base-color);
  6258. padding-left: 16px;
  6259. }
  6260. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  6261. .x-btn-wrap-default-toolbar-medium.x-rtl.x-btn-split-right:after {
  6262. padding-left: 0;
  6263. padding-right: 16px;
  6264. }
  6265. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  6266. .x-btn-wrap-default-toolbar-medium.x-btn-split-bottom {
  6267. margin-bottom: -8px;
  6268. }
  6269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  6270. .x-btn-wrap-default-toolbar-medium.x-btn-split-bottom > .x-btn-button:after {
  6271. border-bottom: 1px solid #2196f3;
  6272. border-bottom: 1px solid var(--base-color);
  6273. }
  6274. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  6275. .x-btn-wrap-default-toolbar-medium.x-btn-split-bottom:after {
  6276. height: 24px;
  6277. content: 'arrow_drop_down';
  6278. font: 20px/24px 'Material Icons', 'Font Awesome 5 Free';
  6279. color: #2196f3;
  6280. color: var(--base-color);
  6281. }
  6282. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  6283. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-medium {
  6284. padding-right: 8px;
  6285. }
  6286. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  6287. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-medium {
  6288. margin-right: 8px;
  6289. }
  6290. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  6291. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-medium {
  6292. background-image: none;
  6293. background-color: #42a5f5;
  6294. background-color: var(--base-focused-color);
  6295. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6296. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6297. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6298. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6299. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6300. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6301. }
  6302. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  6303. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-medium .x-btn-inner {
  6304. color: #fff;
  6305. }
  6306. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  6307. .x-btn-default-toolbar-medium .x-btn-arrow-el {
  6308. position: absolute;
  6309. top: 0;
  6310. right: 0;
  6311. height: 100%;
  6312. width: 40px;
  6313. pointer-events: none;
  6314. }
  6315. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  6316. .x-btn-default-toolbar-medium .x-btn-arrow-el.x-rtl {
  6317. right: inherit;
  6318. left: 0;
  6319. }
  6320. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  6321. .x-keyboard-mode .x-btn-default-toolbar-medium.x-arrow-focus .x-btn-arrow-el {
  6322. border: 1px solid #2196f3;
  6323. border: 1px solid var(--base-color);
  6324. }
  6325. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  6326. .x-btn-over.x-btn-default-toolbar-medium {
  6327. border-color: #dbdbdb;
  6328. background-image: none;
  6329. background-color: rgba(17, 17, 17, 0.075);
  6330. }
  6331. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  6332. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-medium {
  6333. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6334. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6335. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6336. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6337. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6338. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6339. }
  6340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2856 */
  6341. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-medium .x-btn-inner {
  6342. color: #fff;
  6343. }
  6344. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  6345. .x-btn.x-btn-menu-active.x-btn-default-toolbar-medium,
  6346. .x-btn.x-btn-pressed.x-btn-default-toolbar-medium {
  6347. border-color: #d2d2d2;
  6348. background-image: none;
  6349. background-color: #2196f3;
  6350. background-color: var(--base-color);
  6351. -webkit-box-shadow: none;
  6352. -moz-box-shadow: none;
  6353. box-shadow: none;
  6354. }
  6355. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  6356. .x-btn.x-btn-menu-active.x-btn-default-toolbar-medium .x-btn-inner,
  6357. .x-btn.x-btn-pressed.x-btn-default-toolbar-medium .x-btn-inner {
  6358. color: #fff;
  6359. }
  6360. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  6361. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-medium,
  6362. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-medium {
  6363. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6364. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6365. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6366. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6367. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6368. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6369. }
  6370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  6371. .x-btn.x-btn-disabled.x-btn-default-toolbar-medium {
  6372. background-image: none;
  6373. background-color: transparent;
  6374. }
  6375. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  6376. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-tl,
  6377. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-bl,
  6378. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-tr,
  6379. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-br,
  6380. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-tc,
  6381. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-bc {
  6382. background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif);
  6383. }
  6384. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  6385. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-ml,
  6386. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-mr {
  6387. background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif);
  6388. }
  6389. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  6390. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-medium-mc {
  6391. background-color: #42a5f5;
  6392. background-color: var(--base-focused-color);
  6393. }
  6394. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  6395. .x-btn-over .x-btn-default-toolbar-medium-tl,
  6396. .x-btn-over .x-btn-default-toolbar-medium-bl,
  6397. .x-btn-over .x-btn-default-toolbar-medium-tr,
  6398. .x-btn-over .x-btn-default-toolbar-medium-br,
  6399. .x-btn-over .x-btn-default-toolbar-medium-tc,
  6400. .x-btn-over .x-btn-default-toolbar-medium-bc {
  6401. background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif);
  6402. }
  6403. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  6404. .x-btn-over .x-btn-default-toolbar-medium-ml,
  6405. .x-btn-over .x-btn-default-toolbar-medium-mr {
  6406. background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif);
  6407. }
  6408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  6409. .x-btn-over .x-btn-default-toolbar-medium-mc {
  6410. background-color: rgba(17, 17, 17, 0.075);
  6411. }
  6412. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  6413. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tl,
  6414. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-bl,
  6415. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tr,
  6416. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-br,
  6417. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-tc,
  6418. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-bc {
  6419. background-image: url(images/btn/btn-default-toolbar-medium-focus-over-corners.gif);
  6420. }
  6421. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  6422. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-ml,
  6423. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-mr {
  6424. background-image: url(images/btn/btn-default-toolbar-medium-focus-over-sides.gif);
  6425. }
  6426. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  6427. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-medium-mc {
  6428. background-color: rgba(17, 17, 17, 0.075);
  6429. }
  6430. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  6431. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tl,
  6432. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-bl,
  6433. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tr,
  6434. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-br,
  6435. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-tc,
  6436. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-bc,
  6437. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tl,
  6438. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-bl,
  6439. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tr,
  6440. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-br,
  6441. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-tc,
  6442. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-bc {
  6443. background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif);
  6444. }
  6445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  6446. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-ml,
  6447. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-mr,
  6448. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-ml,
  6449. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-mr {
  6450. background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif);
  6451. }
  6452. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  6453. .x-btn.x-btn-menu-active .x-btn-default-toolbar-medium-mc,
  6454. .x-btn.x-btn-pressed .x-btn-default-toolbar-medium-mc {
  6455. background-color: #2196f3;
  6456. background-color: var(--base-color);
  6457. }
  6458. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  6459. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tl,
  6460. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-bl,
  6461. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tr,
  6462. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-br,
  6463. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-tc,
  6464. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-bc,
  6465. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tl,
  6466. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-bl,
  6467. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tr,
  6468. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-br,
  6469. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-tc,
  6470. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-bc {
  6471. background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-corners.gif);
  6472. }
  6473. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  6474. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-ml,
  6475. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-mr,
  6476. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-ml,
  6477. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-mr {
  6478. background-image: url(images/btn/btn-default-toolbar-medium-focus-pressed-sides.gif);
  6479. }
  6480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  6481. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-medium-mc,
  6482. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-medium-mc {
  6483. background-color: #2196f3;
  6484. background-color: var(--base-color);
  6485. }
  6486. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  6487. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tl,
  6488. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-bl,
  6489. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tr,
  6490. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-br,
  6491. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-tc,
  6492. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-bc {
  6493. background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif);
  6494. }
  6495. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  6496. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-ml,
  6497. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-mr {
  6498. background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif);
  6499. }
  6500. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  6501. .x-btn.x-btn-disabled .x-btn-default-toolbar-medium-mc {
  6502. background-color: transparent;
  6503. }
  6504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  6505. .x-nbr .x-btn-default-toolbar-medium {
  6506. background-image: none;
  6507. }
  6508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  6509. .x-btn-disabled.x-btn-default-toolbar-medium {
  6510. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  6511. opacity: 0.5;
  6512. }
  6513. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  6514. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first {
  6515. border-right-width: 0px !important;
  6516. }
  6517. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  6518. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first .x-btn-default-toolbar-medium-mc {
  6519. padding-right: 16px !important;
  6520. }
  6521. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  6522. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-middle {
  6523. border-right-width: 0px !important;
  6524. }
  6525. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  6526. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-middle .x-btn-default-toolbar-medium-mc {
  6527. padding-right: 16px !important;
  6528. padding-left: 16px !important;
  6529. }
  6530. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  6531. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-last .x-btn-default-toolbar-medium-mc {
  6532. padding-left: 16px !important;
  6533. }
  6534. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  6535. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first {
  6536. border-bottom-width: 0px !important;
  6537. }
  6538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  6539. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first .x-btn-default-toolbar-medium-mc {
  6540. padding-bottom: 8px !important;
  6541. }
  6542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  6543. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-middle {
  6544. border-bottom-width: 0px !important;
  6545. }
  6546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  6547. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-middle .x-btn-default-toolbar-medium-mc {
  6548. padding-top: 8px !important;
  6549. padding-bottom: 8px !important;
  6550. }
  6551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  6552. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-last .x-btn-default-toolbar-medium-mc {
  6553. padding-top: 8px !important;
  6554. }
  6555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  6556. .x-nbr .x-segmented-button-item.x-btn-default-toolbar-medium:after {
  6557. content: ' ';
  6558. border-style: solid;
  6559. border-width: 0;
  6560. position: absolute;
  6561. }
  6562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  6563. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium:after {
  6564. top: 0px;
  6565. right: 0;
  6566. bottom: 0px;
  6567. left: 0;
  6568. }
  6569. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  6570. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-first:after {
  6571. left: 0px;
  6572. }
  6573. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  6574. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-medium.x-segmented-button-last:after {
  6575. right: 0px;
  6576. }
  6577. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  6578. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium:after {
  6579. top: 0;
  6580. right: 0px;
  6581. bottom: 0;
  6582. left: 0px;
  6583. }
  6584. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  6585. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-first:after {
  6586. top: 0px;
  6587. }
  6588. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  6589. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-medium.x-segmented-button-last:after {
  6590. bottom: 0px;
  6591. }
  6592. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  6593. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-medium:after {
  6594. border-width: 1px;
  6595. border-color: #2196f3;
  6596. border-color: var(--base-color);
  6597. }
  6598. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  6599. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-medium:after {
  6600. border-width: 1px;
  6601. border-color: #2196f3;
  6602. border-color: var(--base-color);
  6603. }
  6604. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3257 */
  6605. .x-nbr .x-segmented-button-item.x-btn.x-btn-menu-active.x-btn-default-toolbar-medium:after,
  6606. .x-nbr .x-segmented-button-item.x-btn.x-btn-pressed.x-btn-default-toolbar-medium:after {
  6607. border-width: 0px;
  6608. border-color: #51adf6;
  6609. }
  6610. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  6611. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-medium:after,
  6612. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-medium:after {
  6613. border-width: 1px;
  6614. border-color: #2196f3;
  6615. border-color: var(--base-color);
  6616. }
  6617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  6618. .x-button-default-toolbar-medium-cell > .x-grid-cell-inner {
  6619. padding-top: 6px;
  6620. padding-bottom: 6px;
  6621. }
  6622. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  6623. .x-button-default-toolbar-medium-cell > .x-grid-cell-inner >.x-btn-default-toolbar-medium {
  6624. vertical-align: top;
  6625. }
  6626. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  6627. .x-btn-default-toolbar-large {
  6628. -webkit-border-radius: 0;
  6629. -moz-border-radius: 0;
  6630. -ms-border-radius: 0;
  6631. -o-border-radius: 0;
  6632. border-radius: 0;
  6633. padding: 8px 16px 8px 16px;
  6634. border-width: 0px;
  6635. border-style: solid;
  6636. background-color: transparent;
  6637. }
  6638. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  6639. .x-btn-default-toolbar-large-mc {
  6640. background-color: transparent;
  6641. }
  6642. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  6643. .x-nbr .x-btn-default-toolbar-large {
  6644. padding: 0 !important;
  6645. border-width: 0 !important;
  6646. -webkit-border-radius: 0px;
  6647. -moz-border-radius: 0px;
  6648. -ms-border-radius: 0px;
  6649. -o-border-radius: 0px;
  6650. border-radius: 0px;
  6651. background-color: transparent !important;
  6652. box-shadow: none !important;
  6653. }
  6654. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  6655. .x-btn-default-toolbar-large-frameInfo {
  6656. font-family: th-0-0-0-0-0-0-0-0-8-16-8-16;
  6657. }
  6658. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  6659. .x-btn-default-toolbar-large-tl {
  6660. background-position: 0 0px;
  6661. }
  6662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  6663. .x-btn-default-toolbar-large-tr {
  6664. background-position: right 0px;
  6665. }
  6666. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  6667. .x-btn-default-toolbar-large-bl {
  6668. background-position: 0 0px;
  6669. }
  6670. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  6671. .x-btn-default-toolbar-large-br {
  6672. background-position: right 0px;
  6673. }
  6674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  6675. .x-btn-default-toolbar-large-ml {
  6676. background-position: 0 top;
  6677. }
  6678. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  6679. .x-btn-default-toolbar-large-mr {
  6680. background-position: right top;
  6681. }
  6682. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  6683. .x-btn-default-toolbar-large-tc {
  6684. background-position: 0 0;
  6685. }
  6686. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  6687. .x-btn-default-toolbar-large-bc {
  6688. background-position: 0 0px;
  6689. }
  6690. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  6691. .x-btn-default-toolbar-large-tr,
  6692. .x-btn-default-toolbar-large-br,
  6693. .x-btn-default-toolbar-large-mr {
  6694. padding-right: 0px;
  6695. }
  6696. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  6697. .x-btn-default-toolbar-large-tl,
  6698. .x-btn-default-toolbar-large-bl,
  6699. .x-btn-default-toolbar-large-ml {
  6700. padding-left: 0px;
  6701. }
  6702. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  6703. .x-btn-default-toolbar-large-tc {
  6704. height: 0px;
  6705. }
  6706. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  6707. .x-btn-default-toolbar-large-bc {
  6708. height: 0px;
  6709. }
  6710. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  6711. .x-btn-default-toolbar-large-mc {
  6712. padding: 8px 16px 8px 16px;
  6713. }
  6714. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  6715. .x-btn-default-toolbar-large {
  6716. border-color: #e4e4e4;
  6717. }
  6718. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  6719. .x-btn-button-default-toolbar-large {
  6720. min-height: 24px;
  6721. }
  6722. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  6723. .x-ie9m .x-btn-button-default-toolbar-large {
  6724. min-height: auto;
  6725. height: 24px;
  6726. }
  6727. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  6728. .x-btn-inner-default-toolbar-large {
  6729. font: 600 16px/20px Roboto, sans-serif;
  6730. color: #2196f3;
  6731. color: var(--base-color);
  6732. padding: 0 10px;
  6733. max-width: 100%;
  6734. }
  6735. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  6736. .x-ie9 .x-btn-icon-right > .x-btn-inner-default-toolbar-large,
  6737. .x-ie9 .x-btn-icon-left > .x-btn-inner-default-toolbar-large {
  6738. max-width: calc(100% - 24px);
  6739. }
  6740. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  6741. .x-safari8m .x-btn-icon-right > .x-btn-inner-default-toolbar-large,
  6742. .x-safari8m .x-btn-icon-left > .x-btn-inner-default-toolbar-large {
  6743. max-width: calc(100% - 23px);
  6744. }
  6745. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  6746. .x-ie10p .x-btn-inner-default-toolbar-large {
  6747. max-width: none;
  6748. }
  6749. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  6750. .x-btn-icon-el-default-toolbar-large {
  6751. font-size: 24px;
  6752. height: 24px;
  6753. color: #2196f3;
  6754. color: var(--base-color);
  6755. line-height: 24px;
  6756. }
  6757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  6758. .x-btn-icon-left > .x-btn-icon-el-default-toolbar-large,
  6759. .x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
  6760. width: 24px;
  6761. }
  6762. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  6763. .x-btn-icon-top > .x-btn-icon-el-default-toolbar-large,
  6764. .x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large {
  6765. min-width: 24px;
  6766. }
  6767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  6768. .x-ie8 .x-btn-icon-el-default-toolbar-large.x-btn-glyph {
  6769. color: #2196f3;
  6770. }
  6771. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  6772. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large {
  6773. margin-right: 0;
  6774. }
  6775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  6776. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-default-toolbar-large.x-rtl {
  6777. margin-right: 0;
  6778. margin-left: 0;
  6779. }
  6780. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  6781. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
  6782. margin-left: 0;
  6783. }
  6784. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  6785. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large.x-rtl {
  6786. margin-left: 0;
  6787. margin-right: 0;
  6788. }
  6789. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  6790. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-default-toolbar-large {
  6791. margin-bottom: 8px;
  6792. }
  6793. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  6794. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-default-toolbar-large {
  6795. margin-top: 8px;
  6796. }
  6797. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  6798. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large {
  6799. padding-right: 8px;
  6800. }
  6801. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  6802. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
  6803. margin-right: 10px;
  6804. }
  6805. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  6806. .x-btn-arrow-bottom > .x-btn-button-default-toolbar-large,
  6807. .x-btn-split-bottom > .x-btn-button-default-toolbar-large {
  6808. padding-bottom: 8px;
  6809. }
  6810. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  6811. .x-btn-wrap-default-toolbar-large.x-btn-arrow-right:after {
  6812. width: 22px;
  6813. content: 'arrow_drop_down';
  6814. font: 24px/1 'Material Icons', 'Font Awesome 5 Free';
  6815. color: #2196f3;
  6816. color: var(--base-color);
  6817. }
  6818. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  6819. .x-btn-wrap-default-toolbar-large.x-btn-arrow-bottom:after {
  6820. height: 16px;
  6821. content: 'arrow_drop_down';
  6822. font: 24px/16px 'Material Icons', 'Font Awesome 5 Free';
  6823. color: #2196f3;
  6824. color: var(--base-color);
  6825. }
  6826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  6827. .x-btn-wrap-default-toolbar-large.x-btn-split-right > .x-btn-button {
  6828. padding-right: 16px;
  6829. }
  6830. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  6831. .x-btn-wrap-default-toolbar-large.x-btn-split-right > .x-btn-button.x-rtl {
  6832. padding-right: 0;
  6833. padding-left: 16px;
  6834. }
  6835. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  6836. .x-btn-wrap-default-toolbar-large.x-btn-split-right > .x-btn-button:after {
  6837. border-right: 1px solid #2196f3;
  6838. border-right: 1px solid var(--base-color);
  6839. }
  6840. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  6841. .x-btn-wrap-default-toolbar-large.x-btn-split-right:after {
  6842. width: 32px;
  6843. content: 'arrow_drop_down';
  6844. font: 24px/1 'Material Icons', 'Font Awesome 5 Free';
  6845. color: #2196f3;
  6846. color: var(--base-color);
  6847. padding-left: 16px;
  6848. }
  6849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  6850. .x-btn-wrap-default-toolbar-large.x-rtl.x-btn-split-right:after {
  6851. padding-left: 0;
  6852. padding-right: 16px;
  6853. }
  6854. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  6855. .x-btn-wrap-default-toolbar-large.x-btn-split-bottom {
  6856. margin-bottom: -8px;
  6857. }
  6858. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  6859. .x-btn-wrap-default-toolbar-large.x-btn-split-bottom > .x-btn-button:after {
  6860. border-bottom: 1px solid #2196f3;
  6861. border-bottom: 1px solid var(--base-color);
  6862. }
  6863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  6864. .x-btn-wrap-default-toolbar-large.x-btn-split-bottom:after {
  6865. height: 32px;
  6866. content: 'arrow_drop_down';
  6867. font: 24px/32px 'Material Icons', 'Font Awesome 5 Free';
  6868. color: #2196f3;
  6869. color: var(--base-color);
  6870. }
  6871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  6872. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-default-toolbar-large {
  6873. padding-right: 8px;
  6874. }
  6875. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  6876. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-default-toolbar-large {
  6877. margin-right: 10px;
  6878. }
  6879. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  6880. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-large {
  6881. background-image: none;
  6882. background-color: #42a5f5;
  6883. background-color: var(--base-focused-color);
  6884. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6885. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6886. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6887. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6888. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6889. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6890. }
  6891. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2776 */
  6892. .x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-large .x-btn-inner {
  6893. color: #fff;
  6894. }
  6895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  6896. .x-btn-default-toolbar-large .x-btn-arrow-el {
  6897. position: absolute;
  6898. top: 0;
  6899. right: 0;
  6900. height: 100%;
  6901. width: 48px;
  6902. pointer-events: none;
  6903. }
  6904. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  6905. .x-btn-default-toolbar-large .x-btn-arrow-el.x-rtl {
  6906. right: inherit;
  6907. left: 0;
  6908. }
  6909. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2810 */
  6910. .x-keyboard-mode .x-btn-default-toolbar-large.x-arrow-focus .x-btn-arrow-el {
  6911. border: 1px solid #2196f3;
  6912. border: 1px solid var(--base-color);
  6913. }
  6914. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  6915. .x-btn-over.x-btn-default-toolbar-large {
  6916. border-color: #dbdbdb;
  6917. background-image: none;
  6918. background-color: rgba(17, 17, 17, 0.075);
  6919. }
  6920. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2845 */
  6921. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-large {
  6922. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6923. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6924. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6925. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6926. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6927. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6928. }
  6929. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2856 */
  6930. .x-keyboard-mode .x-btn-focus.x-btn-over.x-btn-default-toolbar-large .x-btn-inner {
  6931. color: #fff;
  6932. }
  6933. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  6934. .x-btn.x-btn-menu-active.x-btn-default-toolbar-large,
  6935. .x-btn.x-btn-pressed.x-btn-default-toolbar-large {
  6936. border-color: #d2d2d2;
  6937. background-image: none;
  6938. background-color: #2196f3;
  6939. background-color: var(--base-color);
  6940. -webkit-box-shadow: none;
  6941. -moz-box-shadow: none;
  6942. box-shadow: none;
  6943. }
  6944. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2886 */
  6945. .x-btn.x-btn-menu-active.x-btn-default-toolbar-large .x-btn-inner,
  6946. .x-btn.x-btn-pressed.x-btn-default-toolbar-large .x-btn-inner {
  6947. color: #fff;
  6948. }
  6949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2904 */
  6950. .x-keyboard-mode .x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-large,
  6951. .x-keyboard-mode .x-btn-focus.x-btn-pressed.x-btn-default-toolbar-large {
  6952. -webkit-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6953. -webkit-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6954. -moz-box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6955. -moz-box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6956. box-shadow: #2196f3 0 1px 0px 0 inset, #2196f3 0 -1px 0px 0 inset, #2196f3 -1px 0 0px 0 inset, #2196f3 1px 0 0px 0 inset;
  6957. box-shadow: var(--base-color) 0 1px 0px 0 inset, var(--base-color) 0 -1px 0px 0 inset, var(--base-color) -1px 0 0px 0 inset, var(--base-color) 1px 0 0px 0 inset;
  6958. }
  6959. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  6960. .x-btn.x-btn-disabled.x-btn-default-toolbar-large {
  6961. background-image: none;
  6962. background-color: transparent;
  6963. }
  6964. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  6965. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-tl,
  6966. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-bl,
  6967. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-tr,
  6968. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-br,
  6969. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-tc,
  6970. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-bc {
  6971. background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif);
  6972. }
  6973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  6974. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-ml,
  6975. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-mr {
  6976. background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif);
  6977. }
  6978. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  6979. .x-keyboard-mode .x-btn-focus .x-btn-default-toolbar-large-mc {
  6980. background-color: #42a5f5;
  6981. background-color: var(--base-focused-color);
  6982. }
  6983. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  6984. .x-btn-over .x-btn-default-toolbar-large-tl,
  6985. .x-btn-over .x-btn-default-toolbar-large-bl,
  6986. .x-btn-over .x-btn-default-toolbar-large-tr,
  6987. .x-btn-over .x-btn-default-toolbar-large-br,
  6988. .x-btn-over .x-btn-default-toolbar-large-tc,
  6989. .x-btn-over .x-btn-default-toolbar-large-bc {
  6990. background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif);
  6991. }
  6992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  6993. .x-btn-over .x-btn-default-toolbar-large-ml,
  6994. .x-btn-over .x-btn-default-toolbar-large-mr {
  6995. background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif);
  6996. }
  6997. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  6998. .x-btn-over .x-btn-default-toolbar-large-mc {
  6999. background-color: rgba(17, 17, 17, 0.075);
  7000. }
  7001. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  7002. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tl,
  7003. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-bl,
  7004. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tr,
  7005. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-br,
  7006. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-tc,
  7007. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-bc {
  7008. background-image: url(images/btn/btn-default-toolbar-large-focus-over-corners.gif);
  7009. }
  7010. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  7011. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-ml,
  7012. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-mr {
  7013. background-image: url(images/btn/btn-default-toolbar-large-focus-over-sides.gif);
  7014. }
  7015. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  7016. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-default-toolbar-large-mc {
  7017. background-color: rgba(17, 17, 17, 0.075);
  7018. }
  7019. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  7020. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tl,
  7021. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-bl,
  7022. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tr,
  7023. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-br,
  7024. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-tc,
  7025. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-bc,
  7026. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tl,
  7027. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-bl,
  7028. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tr,
  7029. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-br,
  7030. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-tc,
  7031. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-bc {
  7032. background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif);
  7033. }
  7034. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  7035. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-ml,
  7036. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-mr,
  7037. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-ml,
  7038. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-mr {
  7039. background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif);
  7040. }
  7041. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  7042. .x-btn.x-btn-menu-active .x-btn-default-toolbar-large-mc,
  7043. .x-btn.x-btn-pressed .x-btn-default-toolbar-large-mc {
  7044. background-color: #2196f3;
  7045. background-color: var(--base-color);
  7046. }
  7047. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  7048. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tl,
  7049. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-bl,
  7050. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tr,
  7051. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-br,
  7052. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-tc,
  7053. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-bc,
  7054. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tl,
  7055. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-bl,
  7056. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tr,
  7057. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-br,
  7058. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-tc,
  7059. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-bc {
  7060. background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-corners.gif);
  7061. }
  7062. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  7063. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-ml,
  7064. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-mr,
  7065. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-ml,
  7066. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-mr {
  7067. background-image: url(images/btn/btn-default-toolbar-large-focus-pressed-sides.gif);
  7068. }
  7069. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  7070. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-default-toolbar-large-mc,
  7071. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-default-toolbar-large-mc {
  7072. background-color: #2196f3;
  7073. background-color: var(--base-color);
  7074. }
  7075. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  7076. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tl,
  7077. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-bl,
  7078. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tr,
  7079. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-br,
  7080. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-tc,
  7081. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-bc {
  7082. background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif);
  7083. }
  7084. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  7085. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-ml,
  7086. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-mr {
  7087. background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif);
  7088. }
  7089. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  7090. .x-btn.x-btn-disabled .x-btn-default-toolbar-large-mc {
  7091. background-color: transparent;
  7092. }
  7093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  7094. .x-nbr .x-btn-default-toolbar-large {
  7095. background-image: none;
  7096. }
  7097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  7098. .x-btn-disabled.x-btn-default-toolbar-large {
  7099. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  7100. opacity: 0.5;
  7101. }
  7102. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  7103. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first {
  7104. border-right-width: 0px !important;
  7105. }
  7106. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  7107. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first .x-btn-default-toolbar-large-mc {
  7108. padding-right: 16px !important;
  7109. }
  7110. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  7111. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-middle {
  7112. border-right-width: 0px !important;
  7113. }
  7114. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  7115. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-middle .x-btn-default-toolbar-large-mc {
  7116. padding-right: 16px !important;
  7117. padding-left: 16px !important;
  7118. }
  7119. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  7120. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-last .x-btn-default-toolbar-large-mc {
  7121. padding-left: 16px !important;
  7122. }
  7123. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  7124. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first {
  7125. border-bottom-width: 0px !important;
  7126. }
  7127. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  7128. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first .x-btn-default-toolbar-large-mc {
  7129. padding-bottom: 8px !important;
  7130. }
  7131. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  7132. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-middle {
  7133. border-bottom-width: 0px !important;
  7134. }
  7135. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  7136. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-middle .x-btn-default-toolbar-large-mc {
  7137. padding-top: 8px !important;
  7138. padding-bottom: 8px !important;
  7139. }
  7140. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  7141. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-last .x-btn-default-toolbar-large-mc {
  7142. padding-top: 8px !important;
  7143. }
  7144. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  7145. .x-nbr .x-segmented-button-item.x-btn-default-toolbar-large:after {
  7146. content: ' ';
  7147. border-style: solid;
  7148. border-width: 0;
  7149. position: absolute;
  7150. }
  7151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  7152. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large:after {
  7153. top: 0px;
  7154. right: 0;
  7155. bottom: 0px;
  7156. left: 0;
  7157. }
  7158. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  7159. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-first:after {
  7160. left: 0px;
  7161. }
  7162. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  7163. .x-nbr .x-segmented-button-item-horizontal.x-btn-default-toolbar-large.x-segmented-button-last:after {
  7164. right: 0px;
  7165. }
  7166. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  7167. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large:after {
  7168. top: 0;
  7169. right: 0px;
  7170. bottom: 0;
  7171. left: 0px;
  7172. }
  7173. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  7174. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-first:after {
  7175. top: 0px;
  7176. }
  7177. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  7178. .x-nbr .x-segmented-button-item-vertical.x-btn-default-toolbar-large.x-segmented-button-last:after {
  7179. bottom: 0px;
  7180. }
  7181. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3233 */
  7182. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-default-toolbar-large:after {
  7183. border-width: 1px;
  7184. border-color: #2196f3;
  7185. border-color: var(--base-color);
  7186. }
  7187. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3249 */
  7188. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-over.x-btn-default-toolbar-large:after {
  7189. border-width: 1px;
  7190. border-color: #2196f3;
  7191. border-color: var(--base-color);
  7192. }
  7193. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3257 */
  7194. .x-nbr .x-segmented-button-item.x-btn.x-btn-menu-active.x-btn-default-toolbar-large:after,
  7195. .x-nbr .x-segmented-button-item.x-btn.x-btn-pressed.x-btn-default-toolbar-large:after {
  7196. border-width: 0px;
  7197. border-color: #51adf6;
  7198. }
  7199. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3267 */
  7200. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-menu-active.x-btn-default-toolbar-large:after,
  7201. .x-keyboard-mode .x-nbr .x-segmented-button-item.x-btn-focus.x-btn-pressed.x-btn-default-toolbar-large:after {
  7202. border-width: 1px;
  7203. border-color: #2196f3;
  7204. border-color: var(--base-color);
  7205. }
  7206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  7207. .x-button-default-toolbar-large-cell > .x-grid-cell-inner {
  7208. padding-top: 4px;
  7209. padding-bottom: 4px;
  7210. }
  7211. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  7212. .x-button-default-toolbar-large-cell > .x-grid-cell-inner >.x-btn-default-toolbar-large {
  7213. vertical-align: top;
  7214. }
  7215. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:1 */
  7216. .x-tool {
  7217. cursor: pointer;
  7218. }
  7219. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:5 */
  7220. .x-tool-tool-el {
  7221. overflow: hidden;
  7222. width: 16px;
  7223. height: 16px;
  7224. margin: 0;
  7225. color: #fff;
  7226. text-align: center;
  7227. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  7228. opacity: 0.8;
  7229. }
  7230. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:16 */
  7231. .x-tool-over .x-tool-tool-el {
  7232. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  7233. opacity: 1;
  7234. }
  7235. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:21 */
  7236. .x-tool-pressed .x-tool-tool-el {
  7237. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  7238. opacity: 0.8;
  7239. }
  7240. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:30 */
  7241. .x-keyboard-mode .x-tool-focus {
  7242. outline: 1px solid #2196f3;
  7243. outline: 1px solid var(--base-color);
  7244. outline-offset: 2px;
  7245. }
  7246. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  7247. .x-ie .x-keyboard-mode .x-tool-focus,
  7248. .x-ie10p .x-keyboard-mode .x-tool-focus,
  7249. .x-edge .x-keyboard-mode .x-tool-focus {
  7250. outline: none;
  7251. }
  7252. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  7253. .x-ie .x-keyboard-mode .x-tool-focus:after,
  7254. .x-ie10p .x-keyboard-mode .x-tool-focus:after,
  7255. .x-edge .x-keyboard-mode .x-tool-focus:after {
  7256. position: absolute;
  7257. content: ' ';
  7258. top: -3px;
  7259. right: -3px;
  7260. bottom: -3px;
  7261. left: -3px;
  7262. border: 1px solid #2196f3;
  7263. border: 1px solid var(--base-color);
  7264. pointer-events: none;
  7265. }
  7266. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:40 */
  7267. .x-tool-img {
  7268. background-image: url(images/tools/tool-sprites.png);
  7269. }
  7270. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:44 */
  7271. .x-tool-placeholder {
  7272. visibility: hidden;
  7273. }
  7274. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:48 */
  7275. .x-tool-close {
  7276. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7277. line-height: 1;
  7278. background: none !important;
  7279. }
  7280. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7281. .x-tool-close:before {
  7282. content: 'close';
  7283. }
  7284. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:57 */
  7285. .x-tool-minimize {
  7286. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7287. line-height: 1;
  7288. background: none;
  7289. }
  7290. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7291. .x-tool-minimize:before {
  7292. content: 'fullscreen_exit';
  7293. }
  7294. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:66 */
  7295. .x-tool-maximize {
  7296. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7297. line-height: 1;
  7298. background: none;
  7299. }
  7300. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7301. .x-tool-maximize:before {
  7302. content: 'fullscreen';
  7303. }
  7304. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:75 */
  7305. .x-tool-restore {
  7306. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7307. background: none;
  7308. }
  7309. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7310. .x-tool-restore:before {
  7311. content: '\f066';
  7312. }
  7313. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:84 */
  7314. .x-tool-toggle {
  7315. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7316. background: none !important;
  7317. }
  7318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7319. .x-tool-toggle:before {
  7320. content: '\f077';
  7321. }
  7322. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:92 */
  7323. .x-panel-collapsed .x-tool-toggle {
  7324. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7325. background: none !important;
  7326. }
  7327. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7328. .x-panel-collapsed .x-tool-toggle:before {
  7329. content: '\f078';
  7330. }
  7331. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:102 */
  7332. .x-tool-gear {
  7333. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7334. line-height: 1;
  7335. background: none !important;
  7336. }
  7337. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7338. .x-tool-gear:before {
  7339. content: 'settings';
  7340. }
  7341. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:111 */
  7342. .x-tool-prev {
  7343. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7344. background: none !important;
  7345. }
  7346. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7347. .x-tool-prev:before {
  7348. content: '\f053';
  7349. }
  7350. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:120 */
  7351. .x-tool-next {
  7352. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7353. background: none !important;
  7354. }
  7355. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7356. .x-tool-next:before {
  7357. content: '\f054';
  7358. }
  7359. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:129 */
  7360. .x-tool-pin {
  7361. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7362. background: none !important;
  7363. }
  7364. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7365. .x-tool-pin:before {
  7366. content: '\f08d';
  7367. }
  7368. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:138 */
  7369. .x-tool-unpin {
  7370. font: 16px/1 ExtJS;
  7371. background: none !important;
  7372. }
  7373. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7374. .x-tool-unpin:before {
  7375. content: "\e611";
  7376. }
  7377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:147 */
  7378. .x-tool-right {
  7379. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7380. background: none !important;
  7381. }
  7382. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7383. .x-tool-right:before {
  7384. content: '\f0da';
  7385. }
  7386. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:156 */
  7387. .x-tool-left {
  7388. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7389. background: none !important;
  7390. }
  7391. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7392. .x-tool-left:before {
  7393. content: '\f0d9';
  7394. }
  7395. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:165 */
  7396. .x-tool-down {
  7397. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7398. background: none !important;
  7399. }
  7400. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7401. .x-tool-down:before {
  7402. content: '\f0d7';
  7403. }
  7404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:174 */
  7405. .x-tool-up {
  7406. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7407. background: none !important;
  7408. }
  7409. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7410. .x-tool-up:before {
  7411. content: '\f0d8';
  7412. }
  7413. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:183 */
  7414. .x-tool-refresh {
  7415. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7416. background: none !important;
  7417. }
  7418. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7419. .x-tool-refresh:before {
  7420. content: '\f021';
  7421. }
  7422. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:192 */
  7423. .x-tool-plus {
  7424. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7425. background: none !important;
  7426. }
  7427. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7428. .x-tool-plus:before {
  7429. content: '\f067';
  7430. }
  7431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:201 */
  7432. .x-tool-minus {
  7433. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7434. background: none !important;
  7435. }
  7436. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7437. .x-tool-minus:before {
  7438. content: '\f068';
  7439. }
  7440. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:210 */
  7441. .x-tool-search {
  7442. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7443. background: none !important;
  7444. }
  7445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7446. .x-tool-search:before {
  7447. content: '\f002';
  7448. }
  7449. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:219 */
  7450. .x-tool-save {
  7451. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7452. background: none !important;
  7453. }
  7454. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7455. .x-tool-save:before {
  7456. content: '\f00c';
  7457. }
  7458. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:228 */
  7459. .x-tool-help {
  7460. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7461. background: none !important;
  7462. }
  7463. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7464. .x-tool-help:before {
  7465. content: '\f128';
  7466. }
  7467. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:237 */
  7468. .x-tool-print {
  7469. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7470. background: none !important;
  7471. }
  7472. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7473. .x-tool-print:before {
  7474. content: '\f02f';
  7475. }
  7476. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:246 */
  7477. .x-tool-expand {
  7478. font: 16px/1 ExtJS;
  7479. background: none !important;
  7480. }
  7481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7482. .x-tool-expand:before {
  7483. content: "\e600";
  7484. }
  7485. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:255 */
  7486. .x-tool-collapse {
  7487. font: 16px/1 ExtJS;
  7488. background: none !important;
  7489. }
  7490. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7491. .x-tool-collapse:before {
  7492. content: "\e606";
  7493. }
  7494. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:264 */
  7495. .x-tool-resize {
  7496. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7497. background: none !important;
  7498. }
  7499. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7500. .x-tool-resize:before {
  7501. content: '\f337';
  7502. }
  7503. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:273 */
  7504. .x-tool-move {
  7505. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7506. background: none !important;
  7507. }
  7508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7509. .x-tool-move:before {
  7510. content: '\f31e';
  7511. }
  7512. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:282 */
  7513. .x-tool-expand-bottom {
  7514. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7515. line-height: 1;
  7516. background: none !important;
  7517. }
  7518. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7519. .x-tool-expand-bottom:before {
  7520. content: 'keyboard_arrow_down';
  7521. }
  7522. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:291 */
  7523. .x-tool-collapse-bottom {
  7524. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7525. line-height: 1;
  7526. background: none !important;
  7527. }
  7528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7529. .x-tool-collapse-bottom:before {
  7530. content: 'keyboard_arrow_down';
  7531. }
  7532. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:300 */
  7533. .x-tool-expand-top {
  7534. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7535. line-height: 1;
  7536. background: none !important;
  7537. }
  7538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7539. .x-tool-expand-top:before {
  7540. content: 'keyboard_arrow_up';
  7541. }
  7542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:309 */
  7543. .x-tool-collapse-top {
  7544. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7545. line-height: 1;
  7546. background: none !important;
  7547. }
  7548. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7549. .x-tool-collapse-top:before {
  7550. content: 'keyboard_arrow_up';
  7551. }
  7552. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:318 */
  7553. .x-tool-expand-left {
  7554. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7555. line-height: 1;
  7556. background: none !important;
  7557. }
  7558. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7559. .x-tool-expand-left:before {
  7560. content: 'keyboard_arrow_left';
  7561. }
  7562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:327 */
  7563. .x-tool-collapse-left {
  7564. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7565. line-height: 1;
  7566. background: none !important;
  7567. }
  7568. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7569. .x-tool-collapse-left:before {
  7570. content: 'keyboard_arrow_left';
  7571. }
  7572. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:336 */
  7573. .x-tool-expand-right {
  7574. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7575. line-height: 1;
  7576. background: none !important;
  7577. }
  7578. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7579. .x-tool-expand-right:before {
  7580. content: 'keyboard_arrow_right';
  7581. }
  7582. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:345 */
  7583. .x-tool-collapse-right {
  7584. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7585. line-height: 1;
  7586. background: none !important;
  7587. }
  7588. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7589. .x-tool-collapse-right:before {
  7590. content: 'keyboard_arrow_right';
  7591. }
  7592. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:356 */
  7593. .x-rtl.x-tool-expand-left {
  7594. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7595. line-height: 1;
  7596. background: none !important;
  7597. }
  7598. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7599. .x-rtl.x-tool-expand-left:before {
  7600. content: 'keyboard_arrow_right';
  7601. }
  7602. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:365 */
  7603. .x-rtl.x-tool-collapse-left {
  7604. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7605. line-height: 1;
  7606. background: none !important;
  7607. }
  7608. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7609. .x-rtl.x-tool-collapse-left:before {
  7610. content: 'keyboard_arrow_right';
  7611. }
  7612. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:374 */
  7613. .x-rtl.x-tool-expand-right {
  7614. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7615. line-height: 1;
  7616. background: none !important;
  7617. }
  7618. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7619. .x-rtl.x-tool-expand-right:before {
  7620. content: 'keyboard_arrow_left';
  7621. }
  7622. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Tool.scss:383 */
  7623. .x-rtl.x-tool-collapse-right {
  7624. font-family: 'Material Icons', 'Font Awesome 5 Free';
  7625. line-height: 1;
  7626. background: none !important;
  7627. }
  7628. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7629. .x-rtl.x-tool-collapse-right:before {
  7630. content: 'keyboard_arrow_left';
  7631. }
  7632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Header.scss:1 */
  7633. .x-header-draggable,
  7634. .x-header-ghost {
  7635. cursor: move;
  7636. }
  7637. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Header.scss:6 */
  7638. .x-header-text {
  7639. white-space: nowrap;
  7640. }
  7641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:22 */
  7642. .x-collapse-el {
  7643. cursor: pointer;
  7644. color: #fff;
  7645. display: table;
  7646. table-layout: fixed;
  7647. background-color: #d6d6d6;
  7648. }
  7649. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:31 */
  7650. .x-collapse-el:before {
  7651. display: table-cell;
  7652. vertical-align: middle;
  7653. text-align: center;
  7654. }
  7655. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:46 */
  7656. .x-layout-split-left {
  7657. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7658. }
  7659. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7660. .x-layout-split-left:before {
  7661. content: '\f0d9';
  7662. }
  7663. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:55 */
  7664. .x-layout-split-right {
  7665. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7666. padding: 0 0 0 2px;
  7667. }
  7668. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7669. .x-layout-split-right:before {
  7670. content: '\f0da';
  7671. }
  7672. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:66 */
  7673. .x-rtl.x-layout-split-left {
  7674. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7675. padding: 0 0 0 2px;
  7676. }
  7677. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7678. .x-rtl.x-layout-split-left:before {
  7679. content: '\f0da';
  7680. }
  7681. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:75 */
  7682. .x-rtl.x-layout-split-right {
  7683. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7684. }
  7685. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7686. .x-rtl.x-layout-split-right:before {
  7687. content: '\f0d9';
  7688. }
  7689. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:86 */
  7690. .x-layout-split-top {
  7691. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7692. padding: 0 0 2px 0;
  7693. }
  7694. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7695. .x-layout-split-top:before {
  7696. content: '\f0d8';
  7697. }
  7698. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:95 */
  7699. .x-layout-split-bottom {
  7700. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7701. }
  7702. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7703. .x-layout-split-bottom:before {
  7704. content: '\f0d7';
  7705. }
  7706. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:105 */
  7707. .x-splitter-collapsed .x-layout-split-left {
  7708. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7709. padding: 0 0 0 2px;
  7710. }
  7711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7712. .x-splitter-collapsed .x-layout-split-left:before {
  7713. content: '\f0da';
  7714. }
  7715. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:114 */
  7716. .x-splitter-collapsed .x-layout-split-right {
  7717. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7718. }
  7719. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7720. .x-splitter-collapsed .x-layout-split-right:before {
  7721. content: '\f0d9';
  7722. }
  7723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:125 */
  7724. .x-splitter-collapsed .x-rtl.x-layout-split-left {
  7725. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7726. }
  7727. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7728. .x-splitter-collapsed .x-rtl.x-layout-split-left:before {
  7729. content: '\f0d9';
  7730. }
  7731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:134 */
  7732. .x-splitter-collapsed .x-rtl.x-layout-split-right {
  7733. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7734. padding: 0 0 0 2px;
  7735. }
  7736. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7737. .x-splitter-collapsed .x-rtl.x-layout-split-right:before {
  7738. content: '\f0da';
  7739. }
  7740. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:145 */
  7741. .x-splitter-collapsed .x-layout-split-top {
  7742. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7743. }
  7744. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7745. .x-splitter-collapsed .x-layout-split-top:before {
  7746. content: '\f0d7';
  7747. }
  7748. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:154 */
  7749. .x-splitter-collapsed .x-layout-split-bottom {
  7750. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7751. padding: 0 0 2px 0;
  7752. }
  7753. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7754. .x-splitter-collapsed .x-layout-split-bottom:before {
  7755. content: '\f0d8';
  7756. }
  7757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:164 */
  7758. .x-splitter-active {
  7759. background-color: #b4b4b4;
  7760. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  7761. opacity: 0.8;
  7762. }
  7763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:168 */
  7764. .x-splitter-active .x-collapse-el {
  7765. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  7766. opacity: 0.3;
  7767. }
  7768. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:173 */
  7769. .x-layout-split-left,
  7770. .x-layout-split-right {
  7771. top: 50%;
  7772. margin-top: -24px;
  7773. width: 100%;
  7774. height: 48px;
  7775. }
  7776. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:184 */
  7777. .x-layout-split-top,
  7778. .x-layout-split-bottom {
  7779. left: 50%;
  7780. width: 48px;
  7781. height: 100%;
  7782. margin-left: -24px;
  7783. }
  7784. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Splitter.scss:199 */
  7785. .x-layout-split-top:before,
  7786. .x-layout-split-bottom:before {
  7787. width: 100%;
  7788. line-height: 10px;
  7789. }
  7790. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  7791. .x-keyboard-mode .x-splitter-focus:after {
  7792. position: absolute;
  7793. content: ' ';
  7794. top: 1px;
  7795. right: 1px;
  7796. bottom: 1px;
  7797. left: 1px;
  7798. border: 1px solid #1976d2;
  7799. border: 1px solid var(--base-dark-color);
  7800. pointer-events: none;
  7801. }
  7802. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:598 */
  7803. .x-toolbar-default {
  7804. padding: 6px 0 6px 8px;
  7805. border-style: solid;
  7806. border-color: #d0d0d0;
  7807. border-width: 1px;
  7808. background-image: none;
  7809. background-color: #f5f5f5;
  7810. background-color: var(--alt-background-color);
  7811. }
  7812. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:602 */
  7813. .x-toolbar-default.x-rtl {
  7814. padding: 6px 8px 6px 0;
  7815. }
  7816. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:614 */
  7817. .x-toolbar-default .x-tool-img {
  7818. color: #919191;
  7819. background-color: #f5f5f5;
  7820. background-color: var(--alt-background-color);
  7821. }
  7822. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:629 */
  7823. .x-toolbar-default .x-toolbar-item {
  7824. margin: 0 8px 0 0;
  7825. }
  7826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:633 */
  7827. .x-toolbar-default .x-toolbar-item.x-rtl {
  7828. margin: 0 0 0 8px;
  7829. }
  7830. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:639 */
  7831. .x-toolbar-default .x-toolbar-separator-horizontal {
  7832. margin: 0 8px 0 0;
  7833. height: 14px;
  7834. border-style: none;
  7835. border-width: 0 0 0 1px;
  7836. border-left-color: #d0d0d0;
  7837. border-right-color: #fff;
  7838. }
  7839. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:648 */
  7840. .x-toolbar-default .x-box-menu-after {
  7841. margin: 0 8px;
  7842. }
  7843. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:653 */
  7844. .x-toolbar-default-vertical {
  7845. padding: 6px 8px 0;
  7846. }
  7847. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:657 */
  7848. .x-toolbar-default-vertical.x-rtl {
  7849. padding: 6px 8px 0;
  7850. }
  7851. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:662 */
  7852. .x-toolbar-default-vertical .x-toolbar-item {
  7853. margin: 0 0 6px 0;
  7854. }
  7855. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:665 */
  7856. .x-toolbar-default-vertical .x-toolbar-item.x-rtl {
  7857. margin: 0 0 6px 0;
  7858. }
  7859. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:671 */
  7860. .x-toolbar-default-vertical .x-toolbar-separator-vertical {
  7861. margin: 0 5px 6px;
  7862. border-style: solid none;
  7863. border-width: 1px 0 0;
  7864. border-top-color: #d0d0d0;
  7865. border-bottom-color: #fff;
  7866. }
  7867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:679 */
  7868. .x-toolbar-default-vertical .x-box-menu-after {
  7869. margin: 6px 0;
  7870. }
  7871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:694 */
  7872. .x-toolbar-text-default {
  7873. padding: 8px 16px;
  7874. color: #40464b;
  7875. font: 600 16px/16px Roboto, sans-serif;
  7876. }
  7877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:700 */
  7878. .x-toolbar-spacer-default {
  7879. width: 2px;
  7880. }
  7881. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:182 */
  7882. .x-toolbar-default-scroller .x-box-scroller-body-horizontal {
  7883. margin-left: 24px;
  7884. }
  7885. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:187 */
  7886. .x-toolbar-default-scroller.x-rtl .x-box-scroller-body-horizontal {
  7887. margin-left: 0;
  7888. margin-right: 24px;
  7889. }
  7890. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:195 */
  7891. .x-toolbar-default-vertical-scroller .x-box-scroller-body-vertical {
  7892. margin-top: 26px;
  7893. }
  7894. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:200 */
  7895. .x-box-scroller-toolbar-default {
  7896. cursor: pointer;
  7897. color: #919191;
  7898. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  7899. opacity: 0.6;
  7900. }
  7901. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:210 */
  7902. .x-box-scroller-toolbar-default.x-box-scroller-hover {
  7903. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  7904. opacity: 0.8;
  7905. }
  7906. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:216 */
  7907. .x-box-scroller-toolbar-default.x-box-scroller-pressed {
  7908. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  7909. opacity: 1;
  7910. }
  7911. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:222 */
  7912. .x-box-scroller-toolbar-default.x-box-scroller-disabled {
  7913. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  7914. opacity: 0.25;
  7915. cursor: default;
  7916. }
  7917. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:232 */
  7918. .x-box-scroller-toolbar-default.x-box-scroller-left,
  7919. .x-box-scroller-toolbar-default.x-box-scroller-right {
  7920. width: 24px;
  7921. height: 24px;
  7922. top: 50%;
  7923. margin-top: -12px;
  7924. }
  7925. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:259 */
  7926. .x-box-scroller-toolbar-default.x-box-scroller-left {
  7927. margin-left: 4px;
  7928. margin-right: 4px;
  7929. margin-bottom: 0;
  7930. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  7931. }
  7932. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7933. .x-box-scroller-toolbar-default.x-box-scroller-left:before {
  7934. content: '\f053';
  7935. }
  7936. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:284 */
  7937. .x-box-scroller-toolbar-default.x-box-scroller-right {
  7938. margin-left: 4px;
  7939. margin-right: 4px;
  7940. margin-bottom: 0;
  7941. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  7942. }
  7943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7944. .x-box-scroller-toolbar-default.x-box-scroller-right:before {
  7945. content: '\f054';
  7946. }
  7947. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:311 */
  7948. .x-box-scroller-toolbar-default.x-box-scroller-top,
  7949. .x-box-scroller-toolbar-default.x-box-scroller-bottom {
  7950. height: 24px;
  7951. width: 24px;
  7952. left: 50%;
  7953. margin-left: -12px;
  7954. }
  7955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:338 */
  7956. .x-box-scroller-toolbar-default.x-box-scroller-top {
  7957. margin-top: 4px;
  7958. margin-right: 0;
  7959. margin-bottom: 4px;
  7960. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  7961. }
  7962. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7963. .x-box-scroller-toolbar-default.x-box-scroller-top:before {
  7964. content: '\f077';
  7965. }
  7966. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:363 */
  7967. .x-box-scroller-toolbar-default.x-box-scroller-bottom {
  7968. margin-top: 4px;
  7969. margin-right: 0;
  7970. margin-bottom: 4px;
  7971. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  7972. }
  7973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7974. .x-box-scroller-toolbar-default.x-box-scroller-bottom:before {
  7975. content: '\f078';
  7976. }
  7977. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:742 */
  7978. .x-ie8 .x-box-scroller-toolbar-default {
  7979. background-color: #f5f5f5;
  7980. background-color: var(--alt-background-color);
  7981. }
  7982. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:748 */
  7983. .x-toolbar-more-icon {
  7984. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  7985. color: #2196f3;
  7986. color: var(--base-color);
  7987. }
  7988. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  7989. .x-toolbar-more-icon:before {
  7990. content: '\f0c9';
  7991. }
  7992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:598 */
  7993. .x-toolbar-footer {
  7994. padding: 6px 0 6px 6px;
  7995. border-style: solid;
  7996. border-color: #d0d0d0;
  7997. border-width: 0;
  7998. background-image: none;
  7999. background-color: #fafafa;
  8000. background-color: var(--background-color);
  8001. }
  8002. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:602 */
  8003. .x-toolbar-footer.x-rtl {
  8004. padding: 6px 6px 6px 0;
  8005. }
  8006. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:614 */
  8007. .x-toolbar-footer .x-tool-img {
  8008. color: #919191;
  8009. background-color: #fafafa;
  8010. background-color: var(--background-color);
  8011. }
  8012. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:629 */
  8013. .x-toolbar-footer .x-toolbar-item {
  8014. margin: 0 6px 0 0;
  8015. }
  8016. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:633 */
  8017. .x-toolbar-footer .x-toolbar-item.x-rtl {
  8018. margin: 0 0 0 6px;
  8019. }
  8020. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:639 */
  8021. .x-toolbar-footer .x-toolbar-separator-horizontal {
  8022. margin: 0 8px 0 0;
  8023. height: 14px;
  8024. border-style: none;
  8025. border-width: 0 0 0 1px;
  8026. border-left-color: #d0d0d0;
  8027. border-right-color: #fff;
  8028. }
  8029. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:648 */
  8030. .x-toolbar-footer .x-box-menu-after {
  8031. margin: 0 6px;
  8032. }
  8033. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:653 */
  8034. .x-toolbar-footer-vertical {
  8035. padding: 6px 6px 0;
  8036. }
  8037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:657 */
  8038. .x-toolbar-footer-vertical.x-rtl {
  8039. padding: 6px 6px 0;
  8040. }
  8041. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:662 */
  8042. .x-toolbar-footer-vertical .x-toolbar-item {
  8043. margin: 0 0 6px 0;
  8044. }
  8045. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:665 */
  8046. .x-toolbar-footer-vertical .x-toolbar-item.x-rtl {
  8047. margin: 0 0 6px 0;
  8048. }
  8049. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:671 */
  8050. .x-toolbar-footer-vertical .x-toolbar-separator-vertical {
  8051. margin: 0 5px 6px;
  8052. border-style: solid none;
  8053. border-width: 1px 0 0;
  8054. border-top-color: #d0d0d0;
  8055. border-bottom-color: #fff;
  8056. }
  8057. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:679 */
  8058. .x-toolbar-footer-vertical .x-box-menu-after {
  8059. margin: 6px 0;
  8060. }
  8061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:694 */
  8062. .x-toolbar-text-footer {
  8063. padding: 8px 16px;
  8064. color: #40464b;
  8065. font: 600 16px/16px Roboto, sans-serif;
  8066. }
  8067. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:700 */
  8068. .x-toolbar-spacer-footer {
  8069. width: 2px;
  8070. }
  8071. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:182 */
  8072. .x-toolbar-footer-scroller .x-box-scroller-body-horizontal {
  8073. margin-left: 26px;
  8074. }
  8075. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:187 */
  8076. .x-toolbar-footer-scroller.x-rtl .x-box-scroller-body-horizontal {
  8077. margin-left: 0;
  8078. margin-right: 26px;
  8079. }
  8080. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:195 */
  8081. .x-toolbar-footer-vertical-scroller .x-box-scroller-body-vertical {
  8082. margin-top: 26px;
  8083. }
  8084. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:200 */
  8085. .x-box-scroller-toolbar-footer {
  8086. cursor: pointer;
  8087. color: #919191;
  8088. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  8089. opacity: 0.6;
  8090. }
  8091. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:210 */
  8092. .x-box-scroller-toolbar-footer.x-box-scroller-hover {
  8093. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  8094. opacity: 0.8;
  8095. }
  8096. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:216 */
  8097. .x-box-scroller-toolbar-footer.x-box-scroller-pressed {
  8098. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  8099. opacity: 1;
  8100. }
  8101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:222 */
  8102. .x-box-scroller-toolbar-footer.x-box-scroller-disabled {
  8103. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  8104. opacity: 0.25;
  8105. cursor: default;
  8106. }
  8107. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:232 */
  8108. .x-box-scroller-toolbar-footer.x-box-scroller-left,
  8109. .x-box-scroller-toolbar-footer.x-box-scroller-right {
  8110. width: 24px;
  8111. height: 24px;
  8112. top: 50%;
  8113. margin-top: -12px;
  8114. }
  8115. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:259 */
  8116. .x-box-scroller-toolbar-footer.x-box-scroller-left {
  8117. margin-left: 4px;
  8118. margin-right: 4px;
  8119. margin-bottom: 0;
  8120. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  8121. }
  8122. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8123. .x-box-scroller-toolbar-footer.x-box-scroller-left:before {
  8124. content: '\f053';
  8125. }
  8126. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:284 */
  8127. .x-box-scroller-toolbar-footer.x-box-scroller-right {
  8128. margin-left: 4px;
  8129. margin-right: 4px;
  8130. margin-bottom: 0;
  8131. font: 16px/24px 'Material Icons', 'Font Awesome 5 Free';
  8132. }
  8133. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8134. .x-box-scroller-toolbar-footer.x-box-scroller-right:before {
  8135. content: '\f054';
  8136. }
  8137. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:742 */
  8138. .x-ie8 .x-box-scroller-toolbar-footer {
  8139. background-color: #fafafa;
  8140. background-color: var(--background-color);
  8141. }
  8142. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/toolbar/Toolbar.scss:748 */
  8143. .x-toolbar-more-icon {
  8144. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  8145. color: #2196f3;
  8146. color: var(--base-color);
  8147. }
  8148. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8149. .x-toolbar-more-icon:before {
  8150. content: '\f0c9';
  8151. }
  8152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:1 */
  8153. .x-dd-drag-proxy {
  8154. color: #111;
  8155. color: var(--color);
  8156. font: 400 13px/17px Roboto, sans-serif;
  8157. border: 1px solid #d0d0d0;
  8158. background-color: #fff;
  8159. }
  8160. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:8 */
  8161. .x-dd-drag-ghost,
  8162. .x-dd-drop-icon {
  8163. padding: 5px;
  8164. }
  8165. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:13 */
  8166. .x-rtl .x-dd-drag-ghost,
  8167. .x-rtl .x-dd-drop-icon {
  8168. padding: 5px 5px 5px 5px;
  8169. }
  8170. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:19 */
  8171. .x-dd-drag-ghost {
  8172. padding-left: 0;
  8173. }
  8174. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:23 */
  8175. .x-rtl .x-dd-drag-ghost {
  8176. padding-left: 5px;
  8177. padding-right: 0;
  8178. }
  8179. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:30 */
  8180. .x-dd-drop-ok .x-dd-drop-icon {
  8181. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  8182. color: #a4cf6d;
  8183. }
  8184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8185. .x-dd-drop-ok .x-dd-drop-icon:before {
  8186. content: '\f058';
  8187. }
  8188. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:38 */
  8189. .x-dd-drop-ok-add .x-dd-drop-icon {
  8190. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  8191. color: #a4cf6d;
  8192. }
  8193. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8194. .x-dd-drop-ok-add .x-dd-drop-icon:before {
  8195. content: '\f058';
  8196. }
  8197. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dd/StatusProxy.scss:47 */
  8198. .x-dd-drop-nodrop div.x-dd-drop-icon {
  8199. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  8200. color: #d9705d;
  8201. }
  8202. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  8203. .x-dd-drop-nodrop div.x-dd-drop-icon:before {
  8204. content: '\f057';
  8205. }
  8206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/panel/Panel.scss:1 */
  8207. .x-panel-ghost {
  8208. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  8209. opacity: 0.5;
  8210. }
  8211. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:799 */
  8212. .x-panel-default {
  8213. border-color: #2196f3;
  8214. border-color: var(--base-color);
  8215. padding: 0;
  8216. }
  8217. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:802 */
  8218. .x-panel-default.x-masked {
  8219. border-color: #90cbf9;
  8220. }
  8221. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:810 */
  8222. .x-panel-header-default {
  8223. font-size: 18px;
  8224. border: 1px solid #2196f3;
  8225. border: 1px solid var(--base-color);
  8226. }
  8227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:836 */
  8228. .x-panel-header-default .x-tool-tool-el {
  8229. background-color: #2196f3;
  8230. background-color: var(--base-color);
  8231. }
  8232. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:842 */
  8233. .x-panel-header-default-horizontal {
  8234. padding: 16px;
  8235. }
  8236. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:846 */
  8237. .x-panel-header-default-horizontal .x-panel-header-default-tab-bar {
  8238. margin-top: -16px;
  8239. margin-bottom: -16px;
  8240. }
  8241. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:854 */
  8242. .x-panel-header-default-horizontal.x-header-noborder {
  8243. padding: 17px 17px 16px 17px;
  8244. }
  8245. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:858 */
  8246. .x-panel-header-default-horizontal.x-header-noborder .x-panel-header-default-tab-bar {
  8247. margin-top: -17px;
  8248. margin-bottom: -16px;
  8249. }
  8250. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:866 */
  8251. .x-panel-header-default-vertical {
  8252. padding: 16px 16px 16px 16px;
  8253. }
  8254. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:870 */
  8255. .x-panel-header-default-vertical .x-panel-header-default-tab-bar {
  8256. margin-right: -16px;
  8257. margin-left: -16px;
  8258. }
  8259. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:878 */
  8260. .x-panel-header-default-vertical.x-header-noborder {
  8261. padding: 17px 17px 17px 16px;
  8262. }
  8263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:882 */
  8264. .x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar {
  8265. margin-right: -17px;
  8266. margin-left: -16px;
  8267. }
  8268. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:891 */
  8269. .x-rtl.x-panel-header-default-vertical {
  8270. padding: 16px 16px 16px 16px;
  8271. }
  8272. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:895 */
  8273. .x-rtl.x-panel-header-default-vertical .x-panel-header-default-tab-bar {
  8274. margin-left: -16px;
  8275. margin-right: -16px;
  8276. }
  8277. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:903 */
  8278. .x-rtl.x-panel-header-default-vertical.x-header-noborder {
  8279. padding: 17px 16px 17px 17px;
  8280. }
  8281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:907 */
  8282. .x-rtl.x-panel-header-default-vertical.x-header-noborder .x-panel-header-default-tab-bar {
  8283. margin-left: -17px;
  8284. margin-right: -16px;
  8285. }
  8286. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:916 */
  8287. .x-panel-header-title-default {
  8288. color: #fff;
  8289. font-size: 18px;
  8290. font-weight: 600;
  8291. font-family: Roboto, sans-serif;
  8292. line-height: 22px;
  8293. }
  8294. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:929 */
  8295. .x-keyboard-mode .x-panel-header-title-default.x-title-focus {
  8296. outline: 1px solid #fff;
  8297. outline-offset: 2px;
  8298. }
  8299. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  8300. .x-ie .x-keyboard-mode .x-panel-header-title-default.x-title-focus,
  8301. .x-ie10p .x-keyboard-mode .x-panel-header-title-default.x-title-focus,
  8302. .x-edge .x-keyboard-mode .x-panel-header-title-default.x-title-focus {
  8303. outline: none;
  8304. }
  8305. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  8306. .x-ie .x-keyboard-mode .x-panel-header-title-default.x-title-focus:after,
  8307. .x-ie10p .x-keyboard-mode .x-panel-header-title-default.x-title-focus:after,
  8308. .x-edge .x-keyboard-mode .x-panel-header-title-default.x-title-focus:after {
  8309. position: absolute;
  8310. content: ' ';
  8311. top: -3px;
  8312. right: -3px;
  8313. bottom: -3px;
  8314. left: -3px;
  8315. border: 1px solid #fff;
  8316. pointer-events: none;
  8317. }
  8318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:950 */
  8319. .x-panel-header-title-default > .x-title-text-default {
  8320. text-transform: none;
  8321. padding: 0;
  8322. }
  8323. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:997 */
  8324. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-top {
  8325. height: 24px;
  8326. padding-bottom: 8px;
  8327. }
  8328. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1002 */
  8329. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right {
  8330. width: 24px;
  8331. padding-left: 8px;
  8332. }
  8333. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1007 */
  8334. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl {
  8335. padding-left: 0;
  8336. padding-right: 8px;
  8337. }
  8338. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1014 */
  8339. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom {
  8340. height: 24px;
  8341. padding-top: 8px;
  8342. }
  8343. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1019 */
  8344. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left {
  8345. width: 24px;
  8346. padding-right: 8px;
  8347. }
  8348. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1024 */
  8349. .x-panel-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl {
  8350. padding-right: 0;
  8351. padding-left: 8px;
  8352. }
  8353. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1031 */
  8354. .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default {
  8355. width: 16px;
  8356. height: 16px;
  8357. font-size: 16px;
  8358. color: #fff;
  8359. background-position: center center;
  8360. }
  8361. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1051 */
  8362. .x-ie8 .x-panel-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default.x-title-glyph {
  8363. color: #fff;
  8364. }
  8365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1062 */
  8366. .x-panel-body-default {
  8367. background: #fff;
  8368. background: var(--reverse-color);
  8369. border-color: #d0d0d0;
  8370. color: #111;
  8371. color: var(--color);
  8372. font-size: 13px;
  8373. font-weight: 400;
  8374. font-family: Roboto, sans-serif;
  8375. border-width: 1px;
  8376. border-style: solid;
  8377. }
  8378. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1226 */
  8379. .x-panel-header-default {
  8380. background-image: none;
  8381. background-color: #2196f3;
  8382. background-color: var(--base-color);
  8383. }
  8384. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1230 */
  8385. .x-panel-header-default-vertical {
  8386. background-image: none;
  8387. background-color: #2196f3;
  8388. background-color: var(--base-color);
  8389. }
  8390. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1235 */
  8391. .x-rtl.x-panel-header-default-vertical {
  8392. background-image: none;
  8393. background-color: #2196f3;
  8394. background-color: var(--base-color);
  8395. }
  8396. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1288 */
  8397. .x-panel .x-panel-header-default-collapsed-border-top {
  8398. border-bottom-width: 1px !important;
  8399. }
  8400. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1292 */
  8401. .x-panel .x-panel-header-default-collapsed-border-right {
  8402. border-left-width: 1px !important;
  8403. }
  8404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1296 */
  8405. .x-panel .x-panel-header-default-collapsed-border-bottom {
  8406. border-top-width: 1px !important;
  8407. }
  8408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1300 */
  8409. .x-panel .x-panel-header-default-collapsed-border-left {
  8410. border-right-width: 1px !important;
  8411. }
  8412. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1336 */
  8413. .x-panel-header-default-horizontal .x-tool-after-title {
  8414. margin: 0 0 0 6px;
  8415. }
  8416. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1341 */
  8417. .x-panel-header-default-horizontal .x-rtl.x-tool-after-title {
  8418. margin: 0 6px 0 0;
  8419. }
  8420. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1346 */
  8421. .x-panel-header-default-horizontal .x-tool-before-title {
  8422. margin: 0 6px 0 0;
  8423. }
  8424. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1351 */
  8425. .x-panel-header-default-horizontal .x-rtl.x-tool-before-title {
  8426. margin: 0 0 0 6px;
  8427. }
  8428. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1358 */
  8429. .x-panel-header-default-vertical .x-tool-after-title {
  8430. margin: 6px 0 0 0;
  8431. }
  8432. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1363 */
  8433. .x-panel-header-default-vertical .x-rtl.x-tool-after-title {
  8434. margin: 6px 0 0 0;
  8435. }
  8436. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1368 */
  8437. .x-panel-header-default-vertical .x-tool-before-title {
  8438. margin: 0 0 6px 0;
  8439. }
  8440. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1373 */
  8441. .x-panel-header-default-vertical .x-rtl.x-tool-before-title {
  8442. margin: 0 0 6px 0;
  8443. }
  8444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1381 */
  8445. .x-keyboard-mode .x-panel-header-default .x-tool-focus {
  8446. outline: 1px solid #fff;
  8447. outline-offset: 2px;
  8448. }
  8449. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  8450. .x-ie .x-keyboard-mode .x-panel-header-default .x-tool-focus,
  8451. .x-ie10p .x-keyboard-mode .x-panel-header-default .x-tool-focus,
  8452. .x-edge .x-keyboard-mode .x-panel-header-default .x-tool-focus {
  8453. outline: none;
  8454. }
  8455. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  8456. .x-ie .x-keyboard-mode .x-panel-header-default .x-tool-focus:after,
  8457. .x-ie10p .x-keyboard-mode .x-panel-header-default .x-tool-focus:after,
  8458. .x-edge .x-keyboard-mode .x-panel-header-default .x-tool-focus:after {
  8459. position: absolute;
  8460. content: ' ';
  8461. top: -3px;
  8462. right: -3px;
  8463. bottom: -3px;
  8464. left: -3px;
  8465. border: 1px solid #fff;
  8466. pointer-events: none;
  8467. }
  8468. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1412 */
  8469. .x-rtl.x-panel-header-default-collapsed-border-right {
  8470. border-right-width: 1px !important;
  8471. }
  8472. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1415 */
  8473. .x-rtl.x-panel-header-default-collapsed-border-left {
  8474. border-left-width: 1px !important;
  8475. }
  8476. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1429 */
  8477. .x-panel-default-resizable .x-panel-handle {
  8478. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  8479. opacity: 0;
  8480. }
  8481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:2 */
  8482. .x-panel-default-outer-border-l {
  8483. border-left-color: #2196f3 !important;
  8484. border-left-color: var(--base-color) !important;
  8485. border-left-width: 1px !important;
  8486. }
  8487. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:6 */
  8488. .x-panel-default-outer-border-b {
  8489. border-bottom-color: #2196f3 !important;
  8490. border-bottom-color: var(--base-color) !important;
  8491. border-bottom-width: 1px !important;
  8492. }
  8493. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:10 */
  8494. .x-panel-default-outer-border-bl {
  8495. border-bottom-color: #2196f3 !important;
  8496. border-bottom-color: var(--base-color) !important;
  8497. border-bottom-width: 1px !important;
  8498. border-left-color: #2196f3 !important;
  8499. border-left-color: var(--base-color) !important;
  8500. border-left-width: 1px !important;
  8501. }
  8502. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:16 */
  8503. .x-panel-default-outer-border-r {
  8504. border-right-color: #2196f3 !important;
  8505. border-right-color: var(--base-color) !important;
  8506. border-right-width: 1px !important;
  8507. }
  8508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:20 */
  8509. .x-panel-default-outer-border-rl {
  8510. border-right-color: #2196f3 !important;
  8511. border-right-color: var(--base-color) !important;
  8512. border-right-width: 1px !important;
  8513. border-left-color: #2196f3 !important;
  8514. border-left-color: var(--base-color) !important;
  8515. border-left-width: 1px !important;
  8516. }
  8517. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:26 */
  8518. .x-panel-default-outer-border-rb {
  8519. border-right-color: #2196f3 !important;
  8520. border-right-color: var(--base-color) !important;
  8521. border-right-width: 1px !important;
  8522. border-bottom-color: #2196f3 !important;
  8523. border-bottom-color: var(--base-color) !important;
  8524. border-bottom-width: 1px !important;
  8525. }
  8526. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:32 */
  8527. .x-panel-default-outer-border-rbl {
  8528. border-right-color: #2196f3 !important;
  8529. border-right-color: var(--base-color) !important;
  8530. border-right-width: 1px !important;
  8531. border-bottom-color: #2196f3 !important;
  8532. border-bottom-color: var(--base-color) !important;
  8533. border-bottom-width: 1px !important;
  8534. border-left-color: #2196f3 !important;
  8535. border-left-color: var(--base-color) !important;
  8536. border-left-width: 1px !important;
  8537. }
  8538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:40 */
  8539. .x-panel-default-outer-border-t {
  8540. border-top-color: #2196f3 !important;
  8541. border-top-color: var(--base-color) !important;
  8542. border-top-width: 1px !important;
  8543. }
  8544. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:44 */
  8545. .x-panel-default-outer-border-tl {
  8546. border-top-color: #2196f3 !important;
  8547. border-top-color: var(--base-color) !important;
  8548. border-top-width: 1px !important;
  8549. border-left-color: #2196f3 !important;
  8550. border-left-color: var(--base-color) !important;
  8551. border-left-width: 1px !important;
  8552. }
  8553. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:50 */
  8554. .x-panel-default-outer-border-tb {
  8555. border-top-color: #2196f3 !important;
  8556. border-top-color: var(--base-color) !important;
  8557. border-top-width: 1px !important;
  8558. border-bottom-color: #2196f3 !important;
  8559. border-bottom-color: var(--base-color) !important;
  8560. border-bottom-width: 1px !important;
  8561. }
  8562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:56 */
  8563. .x-panel-default-outer-border-tbl {
  8564. border-top-color: #2196f3 !important;
  8565. border-top-color: var(--base-color) !important;
  8566. border-top-width: 1px !important;
  8567. border-bottom-color: #2196f3 !important;
  8568. border-bottom-color: var(--base-color) !important;
  8569. border-bottom-width: 1px !important;
  8570. border-left-color: #2196f3 !important;
  8571. border-left-color: var(--base-color) !important;
  8572. border-left-width: 1px !important;
  8573. }
  8574. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:64 */
  8575. .x-panel-default-outer-border-tr {
  8576. border-top-color: #2196f3 !important;
  8577. border-top-color: var(--base-color) !important;
  8578. border-top-width: 1px !important;
  8579. border-right-color: #2196f3 !important;
  8580. border-right-color: var(--base-color) !important;
  8581. border-right-width: 1px !important;
  8582. }
  8583. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:70 */
  8584. .x-panel-default-outer-border-trl {
  8585. border-top-color: #2196f3 !important;
  8586. border-top-color: var(--base-color) !important;
  8587. border-top-width: 1px !important;
  8588. border-right-color: #2196f3 !important;
  8589. border-right-color: var(--base-color) !important;
  8590. border-right-width: 1px !important;
  8591. border-left-color: #2196f3 !important;
  8592. border-left-color: var(--base-color) !important;
  8593. border-left-width: 1px !important;
  8594. }
  8595. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:78 */
  8596. .x-panel-default-outer-border-trb {
  8597. border-top-color: #2196f3 !important;
  8598. border-top-color: var(--base-color) !important;
  8599. border-top-width: 1px !important;
  8600. border-right-color: #2196f3 !important;
  8601. border-right-color: var(--base-color) !important;
  8602. border-right-width: 1px !important;
  8603. border-bottom-color: #2196f3 !important;
  8604. border-bottom-color: var(--base-color) !important;
  8605. border-bottom-width: 1px !important;
  8606. }
  8607. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:86 */
  8608. .x-panel-default-outer-border-trbl {
  8609. border-color: #2196f3 !important;
  8610. border-color: var(--base-color) !important;
  8611. border-width: 1px !important;
  8612. }
  8613. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:799 */
  8614. .x-panel-default-framed {
  8615. border-color: #e1e1e1;
  8616. padding: 0;
  8617. }
  8618. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:802 */
  8619. .x-panel-default-framed.x-masked {
  8620. border-color: #f0f0f0;
  8621. }
  8622. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:810 */
  8623. .x-panel-header-default-framed {
  8624. font-size: 18px;
  8625. border: 1px solid #e1e1e1;
  8626. }
  8627. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:836 */
  8628. .x-panel-header-default-framed .x-tool-tool-el {
  8629. background-color: #2196f3;
  8630. background-color: var(--base-color);
  8631. }
  8632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:842 */
  8633. .x-panel-header-default-framed-horizontal {
  8634. padding: 16px 16px 15px 16px;
  8635. }
  8636. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:846 */
  8637. .x-panel-header-default-framed-horizontal .x-panel-header-default-framed-tab-bar {
  8638. margin-top: -16px;
  8639. margin-bottom: -15px;
  8640. }
  8641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:854 */
  8642. .x-panel-header-default-framed-horizontal.x-header-noborder {
  8643. padding: 17px 17px 15px 17px;
  8644. }
  8645. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:858 */
  8646. .x-panel-header-default-framed-horizontal.x-header-noborder .x-panel-header-default-framed-tab-bar {
  8647. margin-top: -17px;
  8648. margin-bottom: -15px;
  8649. }
  8650. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:866 */
  8651. .x-panel-header-default-framed-vertical {
  8652. padding: 16px 16px 16px 15px;
  8653. }
  8654. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:870 */
  8655. .x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar {
  8656. margin-right: -16px;
  8657. margin-left: -15px;
  8658. }
  8659. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:878 */
  8660. .x-panel-header-default-framed-vertical.x-header-noborder {
  8661. padding: 17px 17px 17px 15px;
  8662. }
  8663. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:882 */
  8664. .x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar {
  8665. margin-right: -17px;
  8666. margin-left: -15px;
  8667. }
  8668. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:891 */
  8669. .x-rtl.x-panel-header-default-framed-vertical {
  8670. padding: 16px 15px 16px 16px;
  8671. }
  8672. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:895 */
  8673. .x-rtl.x-panel-header-default-framed-vertical .x-panel-header-default-framed-tab-bar {
  8674. margin-left: -16px;
  8675. margin-right: -15px;
  8676. }
  8677. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:903 */
  8678. .x-rtl.x-panel-header-default-framed-vertical.x-header-noborder {
  8679. padding: 17px 15px 17px 17px;
  8680. }
  8681. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:907 */
  8682. .x-rtl.x-panel-header-default-framed-vertical.x-header-noborder .x-panel-header-default-framed-tab-bar {
  8683. margin-left: -17px;
  8684. margin-right: -15px;
  8685. }
  8686. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:916 */
  8687. .x-panel-header-title-default-framed {
  8688. color: #fff;
  8689. font-size: 18px;
  8690. font-weight: 600;
  8691. font-family: Roboto, sans-serif;
  8692. line-height: 22px;
  8693. }
  8694. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:929 */
  8695. .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus {
  8696. outline: 1px solid #fff;
  8697. outline-offset: 2px;
  8698. }
  8699. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  8700. .x-ie .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus,
  8701. .x-ie10p .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus,
  8702. .x-edge .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus {
  8703. outline: none;
  8704. }
  8705. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  8706. .x-ie .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus:after,
  8707. .x-ie10p .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus:after,
  8708. .x-edge .x-keyboard-mode .x-panel-header-title-default-framed.x-title-focus:after {
  8709. position: absolute;
  8710. content: ' ';
  8711. top: -3px;
  8712. right: -3px;
  8713. bottom: -3px;
  8714. left: -3px;
  8715. border: 1px solid #fff;
  8716. pointer-events: none;
  8717. }
  8718. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:950 */
  8719. .x-panel-header-title-default-framed > .x-title-text-default-framed {
  8720. text-transform: none;
  8721. padding: 0;
  8722. }
  8723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:997 */
  8724. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-top {
  8725. height: 24px;
  8726. padding-bottom: 8px;
  8727. }
  8728. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1002 */
  8729. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right {
  8730. width: 24px;
  8731. padding-left: 8px;
  8732. }
  8733. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1007 */
  8734. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-right.x-rtl {
  8735. padding-left: 0;
  8736. padding-right: 8px;
  8737. }
  8738. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1014 */
  8739. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-bottom {
  8740. height: 24px;
  8741. padding-top: 8px;
  8742. }
  8743. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1019 */
  8744. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left {
  8745. width: 24px;
  8746. padding-right: 8px;
  8747. }
  8748. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1024 */
  8749. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed.x-title-icon-left.x-rtl {
  8750. padding-right: 0;
  8751. padding-left: 8px;
  8752. }
  8753. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1031 */
  8754. .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-icon-default-framed {
  8755. width: 16px;
  8756. height: 16px;
  8757. font-size: 16px;
  8758. color: #fff;
  8759. background-position: center center;
  8760. }
  8761. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1051 */
  8762. .x-ie8 .x-panel-header-title-default-framed > .x-title-icon-wrap-default-framed > .x-title-icon-default-framed.x-title-glyph {
  8763. color: #fff;
  8764. }
  8765. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1062 */
  8766. .x-panel-body-default-framed {
  8767. background: #fff;
  8768. background: var(--reverse-color);
  8769. border-color: #d0d0d0;
  8770. color: #111;
  8771. color: var(--color);
  8772. font-size: 13px;
  8773. font-weight: 400;
  8774. font-family: Roboto, sans-serif;
  8775. border-width: 1px;
  8776. border-style: solid;
  8777. }
  8778. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  8779. .x-panel-default-framed {
  8780. -moz-border-radius-topleft: 0;
  8781. -webkit-border-top-left-radius: 0;
  8782. border-top-left-radius: 0;
  8783. -moz-border-radius-topright: 0;
  8784. -webkit-border-top-right-radius: 0;
  8785. border-top-right-radius: 0;
  8786. -moz-border-radius-bottomright: 0;
  8787. -webkit-border-bottom-right-radius: 0;
  8788. border-bottom-right-radius: 0;
  8789. -moz-border-radius-bottomleft: 0;
  8790. -webkit-border-bottom-left-radius: 0;
  8791. border-bottom-left-radius: 0;
  8792. padding: 0 0 0 0;
  8793. border-width: 1px;
  8794. border-style: solid;
  8795. background-color: #fff;
  8796. background-color: var(--reverse-color);
  8797. }
  8798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  8799. .x-panel-default-framed-mc {
  8800. background-color: #fff;
  8801. background-color: var(--reverse-color);
  8802. }
  8803. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  8804. .x-nbr .x-panel-default-framed {
  8805. padding: 0 !important;
  8806. border-width: 0 !important;
  8807. -webkit-border-radius: 0px;
  8808. -moz-border-radius: 0px;
  8809. -ms-border-radius: 0px;
  8810. -o-border-radius: 0px;
  8811. border-radius: 0px;
  8812. background-color: transparent !important;
  8813. box-shadow: none !important;
  8814. }
  8815. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  8816. .x-panel-default-framed-frameInfo {
  8817. font-family: dh-1-1-1-1-1-1-1-1-0px-0px-0px-0px;
  8818. }
  8819. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  8820. .x-panel-default-framed-tl {
  8821. background-position: 0 -2px;
  8822. }
  8823. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  8824. .x-panel-default-framed-tr {
  8825. background-position: right -3px;
  8826. }
  8827. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  8828. .x-panel-default-framed-bl {
  8829. background-position: 0 -4px;
  8830. }
  8831. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  8832. .x-panel-default-framed-br {
  8833. background-position: right -5px;
  8834. }
  8835. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  8836. .x-panel-default-framed-ml {
  8837. background-position: 0 top;
  8838. }
  8839. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  8840. .x-panel-default-framed-mr {
  8841. background-position: right top;
  8842. }
  8843. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  8844. .x-panel-default-framed-tc {
  8845. background-position: 0 0;
  8846. }
  8847. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  8848. .x-panel-default-framed-bc {
  8849. background-position: 0 -1px;
  8850. }
  8851. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  8852. .x-panel-default-framed-tr,
  8853. .x-panel-default-framed-br,
  8854. .x-panel-default-framed-mr {
  8855. padding-right: 1px;
  8856. }
  8857. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  8858. .x-panel-default-framed-tl,
  8859. .x-panel-default-framed-bl,
  8860. .x-panel-default-framed-ml {
  8861. padding-left: 1px;
  8862. }
  8863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  8864. .x-panel-default-framed-tc {
  8865. height: 1px;
  8866. }
  8867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  8868. .x-panel-default-framed-bc {
  8869. height: 1px;
  8870. }
  8871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  8872. .x-panel-default-framed-tl,
  8873. .x-panel-default-framed-bl,
  8874. .x-panel-default-framed-tr,
  8875. .x-panel-default-framed-br,
  8876. .x-panel-default-framed-tc,
  8877. .x-panel-default-framed-bc,
  8878. .x-panel-default-framed-ml,
  8879. .x-panel-default-framed-mr {
  8880. background-image: url(images/panel/panel-default-framed-corners.gif);
  8881. }
  8882. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  8883. .x-panel-default-framed-ml,
  8884. .x-panel-default-framed-mr {
  8885. background-image: url(images/panel/panel-default-framed-sides.gif);
  8886. background-repeat: repeat-y;
  8887. }
  8888. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  8889. .x-panel-default-framed-mc {
  8890. padding: 0px 0px 0px 0px;
  8891. }
  8892. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  8893. .x-panel-header-default-framed-top {
  8894. -moz-border-radius-topleft: 0;
  8895. -webkit-border-top-left-radius: 0;
  8896. border-top-left-radius: 0;
  8897. -moz-border-radius-topright: 0;
  8898. -webkit-border-top-right-radius: 0;
  8899. border-top-right-radius: 0;
  8900. -moz-border-radius-bottomright: 0;
  8901. -webkit-border-bottom-right-radius: 0;
  8902. border-bottom-right-radius: 0;
  8903. -moz-border-radius-bottomleft: 0;
  8904. -webkit-border-bottom-left-radius: 0;
  8905. border-bottom-left-radius: 0;
  8906. padding: 16px 16px 15px 16px;
  8907. border-width: 1px 1px 0 1px;
  8908. border-style: solid;
  8909. background-color: #2196f3;
  8910. background-color: var(--base-color);
  8911. }
  8912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  8913. .x-panel-header-default-framed-top-mc {
  8914. background-color: #2196f3;
  8915. background-color: var(--base-color);
  8916. }
  8917. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  8918. .x-nbr .x-panel-header-default-framed-top {
  8919. padding: 0 !important;
  8920. border-width: 0 !important;
  8921. -webkit-border-radius: 0px;
  8922. -moz-border-radius: 0px;
  8923. -ms-border-radius: 0px;
  8924. -o-border-radius: 0px;
  8925. border-radius: 0px;
  8926. background-color: transparent !important;
  8927. box-shadow: none !important;
  8928. }
  8929. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  8930. .x-panel-header-default-framed-top-frameInfo {
  8931. font-family: dh-1-1-0-1-1-1-0-1-16-16-15-16;
  8932. }
  8933. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  8934. .x-panel-header-default-framed-top-tl {
  8935. background-position: 0 -2px;
  8936. }
  8937. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  8938. .x-panel-header-default-framed-top-tr {
  8939. background-position: right -3px;
  8940. }
  8941. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  8942. .x-panel-header-default-framed-top-bl {
  8943. background-position: 0 -4px;
  8944. }
  8945. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  8946. .x-panel-header-default-framed-top-br {
  8947. background-position: right -5px;
  8948. }
  8949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  8950. .x-panel-header-default-framed-top-ml {
  8951. background-position: 0 top;
  8952. }
  8953. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  8954. .x-panel-header-default-framed-top-mr {
  8955. background-position: right top;
  8956. }
  8957. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  8958. .x-panel-header-default-framed-top-tc {
  8959. background-position: 0 0;
  8960. }
  8961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  8962. .x-panel-header-default-framed-top-bc {
  8963. background-position: 0 -1px;
  8964. }
  8965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  8966. .x-panel-header-default-framed-top-tr,
  8967. .x-panel-header-default-framed-top-br,
  8968. .x-panel-header-default-framed-top-mr {
  8969. padding-right: 1px;
  8970. }
  8971. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  8972. .x-panel-header-default-framed-top-tl,
  8973. .x-panel-header-default-framed-top-bl,
  8974. .x-panel-header-default-framed-top-ml {
  8975. padding-left: 1px;
  8976. }
  8977. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  8978. .x-panel-header-default-framed-top-tc {
  8979. height: 1px;
  8980. }
  8981. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  8982. .x-panel-header-default-framed-top-bc {
  8983. height: 0;
  8984. }
  8985. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  8986. .x-panel-header-default-framed-top-tl,
  8987. .x-panel-header-default-framed-top-bl,
  8988. .x-panel-header-default-framed-top-tr,
  8989. .x-panel-header-default-framed-top-br,
  8990. .x-panel-header-default-framed-top-tc,
  8991. .x-panel-header-default-framed-top-bc,
  8992. .x-panel-header-default-framed-top-ml,
  8993. .x-panel-header-default-framed-top-mr {
  8994. background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif);
  8995. }
  8996. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  8997. .x-panel-header-default-framed-top-ml,
  8998. .x-panel-header-default-framed-top-mr {
  8999. background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif);
  9000. background-repeat: repeat-y;
  9001. }
  9002. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9003. .x-panel-header-default-framed-top-mc {
  9004. padding: 16px 16px 15px 16px;
  9005. }
  9006. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9007. .x-panel-header-default-framed-right {
  9008. -moz-border-radius-topleft: 0;
  9009. -webkit-border-top-left-radius: 0;
  9010. border-top-left-radius: 0;
  9011. -moz-border-radius-topright: 0;
  9012. -webkit-border-top-right-radius: 0;
  9013. border-top-right-radius: 0;
  9014. -moz-border-radius-bottomright: 0;
  9015. -webkit-border-bottom-right-radius: 0;
  9016. border-bottom-right-radius: 0;
  9017. -moz-border-radius-bottomleft: 0;
  9018. -webkit-border-bottom-left-radius: 0;
  9019. border-bottom-left-radius: 0;
  9020. padding: 16px 16px 16px 15px;
  9021. border-width: 1px 1px 1px 0;
  9022. border-style: solid;
  9023. background-color: #2196f3;
  9024. background-color: var(--base-color);
  9025. }
  9026. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:226 */
  9027. .x-rtl.x-panel-header-default-framed-right {
  9028. background-image: none;
  9029. background-color: #2196f3;
  9030. background-color: var(--base-color);
  9031. }
  9032. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9033. .x-panel-header-default-framed-right-mc {
  9034. background-color: #2196f3;
  9035. background-color: var(--base-color);
  9036. }
  9037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9038. .x-nbr .x-panel-header-default-framed-right {
  9039. padding: 0 !important;
  9040. border-width: 0 !important;
  9041. -webkit-border-radius: 0px;
  9042. -moz-border-radius: 0px;
  9043. -ms-border-radius: 0px;
  9044. -o-border-radius: 0px;
  9045. border-radius: 0px;
  9046. background-color: transparent !important;
  9047. box-shadow: none !important;
  9048. }
  9049. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9050. .x-panel-header-default-framed-right-frameInfo {
  9051. font-family: dh-1-1-1-0-1-1-1-0-16-16-16-15;
  9052. }
  9053. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9054. .x-panel-header-default-framed-right-tl {
  9055. background-position: 0 -2px;
  9056. }
  9057. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9058. .x-panel-header-default-framed-right-tr {
  9059. background-position: right -3px;
  9060. }
  9061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9062. .x-panel-header-default-framed-right-bl {
  9063. background-position: 0 -4px;
  9064. }
  9065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9066. .x-panel-header-default-framed-right-br {
  9067. background-position: right -5px;
  9068. }
  9069. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9070. .x-panel-header-default-framed-right-ml {
  9071. background-position: right 0;
  9072. }
  9073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9074. .x-panel-header-default-framed-right-mr {
  9075. background-position: right 0;
  9076. }
  9077. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9078. .x-panel-header-default-framed-right-tc {
  9079. background-position: 0 0;
  9080. }
  9081. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9082. .x-panel-header-default-framed-right-bc {
  9083. background-position: 0 -1px;
  9084. }
  9085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9086. .x-panel-header-default-framed-right-tr,
  9087. .x-panel-header-default-framed-right-br,
  9088. .x-panel-header-default-framed-right-mr {
  9089. padding-right: 1px;
  9090. }
  9091. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9092. .x-panel-header-default-framed-right-tl,
  9093. .x-panel-header-default-framed-right-bl,
  9094. .x-panel-header-default-framed-right-ml {
  9095. padding-left: 0;
  9096. }
  9097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9098. .x-panel-header-default-framed-right-tc {
  9099. height: 1px;
  9100. }
  9101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9102. .x-panel-header-default-framed-right-bc {
  9103. height: 1px;
  9104. }
  9105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9106. .x-panel-header-default-framed-right-tl,
  9107. .x-panel-header-default-framed-right-bl,
  9108. .x-panel-header-default-framed-right-tr,
  9109. .x-panel-header-default-framed-right-br,
  9110. .x-panel-header-default-framed-right-tc,
  9111. .x-panel-header-default-framed-right-bc,
  9112. .x-panel-header-default-framed-right-ml,
  9113. .x-panel-header-default-framed-right-mr {
  9114. background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif);
  9115. }
  9116. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:423 */
  9117. .x-rtl.x-panel-header-default-framed-right-tl,
  9118. .x-rtl.x-panel-header-default-framed-right-ml,
  9119. .x-rtl.x-panel-header-default-framed-right-bl,
  9120. .x-rtl.x-panel-header-default-framed-right-tr,
  9121. .x-rtl.x-panel-header-default-framed-right-mr,
  9122. .x-rtl.x-panel-header-default-framed-right-br {
  9123. background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif);
  9124. }
  9125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9126. .x-panel-header-default-framed-right-ml,
  9127. .x-panel-header-default-framed-right-mr {
  9128. background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif);
  9129. background-repeat: repeat-y;
  9130. }
  9131. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9132. .x-panel-header-default-framed-right-mc {
  9133. padding: 16px 16px 16px 15px;
  9134. }
  9135. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9136. .x-panel-header-default-framed-bottom {
  9137. -moz-border-radius-topleft: 0;
  9138. -webkit-border-top-left-radius: 0;
  9139. border-top-left-radius: 0;
  9140. -moz-border-radius-topright: 0;
  9141. -webkit-border-top-right-radius: 0;
  9142. border-top-right-radius: 0;
  9143. -moz-border-radius-bottomright: 0;
  9144. -webkit-border-bottom-right-radius: 0;
  9145. border-bottom-right-radius: 0;
  9146. -moz-border-radius-bottomleft: 0;
  9147. -webkit-border-bottom-left-radius: 0;
  9148. border-bottom-left-radius: 0;
  9149. padding: 16px 16px 15px 16px;
  9150. border-width: 0 1px 1px 1px;
  9151. border-style: solid;
  9152. background-color: #2196f3;
  9153. background-color: var(--base-color);
  9154. }
  9155. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9156. .x-panel-header-default-framed-bottom-mc {
  9157. background-color: #2196f3;
  9158. background-color: var(--base-color);
  9159. }
  9160. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9161. .x-nbr .x-panel-header-default-framed-bottom {
  9162. padding: 0 !important;
  9163. border-width: 0 !important;
  9164. -webkit-border-radius: 0px;
  9165. -moz-border-radius: 0px;
  9166. -ms-border-radius: 0px;
  9167. -o-border-radius: 0px;
  9168. border-radius: 0px;
  9169. background-color: transparent !important;
  9170. box-shadow: none !important;
  9171. }
  9172. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9173. .x-panel-header-default-framed-bottom-frameInfo {
  9174. font-family: dh-0-1-1-1-0-1-1-1-16-16-15-16;
  9175. }
  9176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9177. .x-panel-header-default-framed-bottom-tl {
  9178. background-position: 0 -2px;
  9179. }
  9180. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9181. .x-panel-header-default-framed-bottom-tr {
  9182. background-position: right -3px;
  9183. }
  9184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9185. .x-panel-header-default-framed-bottom-bl {
  9186. background-position: 0 -4px;
  9187. }
  9188. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9189. .x-panel-header-default-framed-bottom-br {
  9190. background-position: right -5px;
  9191. }
  9192. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9193. .x-panel-header-default-framed-bottom-ml {
  9194. background-position: 0 bottom;
  9195. }
  9196. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9197. .x-panel-header-default-framed-bottom-mr {
  9198. background-position: right bottom;
  9199. }
  9200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9201. .x-panel-header-default-framed-bottom-tc {
  9202. background-position: 0 0;
  9203. }
  9204. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9205. .x-panel-header-default-framed-bottom-bc {
  9206. background-position: 0 -1px;
  9207. }
  9208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9209. .x-panel-header-default-framed-bottom-tr,
  9210. .x-panel-header-default-framed-bottom-br,
  9211. .x-panel-header-default-framed-bottom-mr {
  9212. padding-right: 1px;
  9213. }
  9214. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9215. .x-panel-header-default-framed-bottom-tl,
  9216. .x-panel-header-default-framed-bottom-bl,
  9217. .x-panel-header-default-framed-bottom-ml {
  9218. padding-left: 1px;
  9219. }
  9220. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9221. .x-panel-header-default-framed-bottom-tc {
  9222. height: 0;
  9223. }
  9224. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9225. .x-panel-header-default-framed-bottom-bc {
  9226. height: 1px;
  9227. }
  9228. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9229. .x-panel-header-default-framed-bottom-tl,
  9230. .x-panel-header-default-framed-bottom-bl,
  9231. .x-panel-header-default-framed-bottom-tr,
  9232. .x-panel-header-default-framed-bottom-br,
  9233. .x-panel-header-default-framed-bottom-tc,
  9234. .x-panel-header-default-framed-bottom-bc,
  9235. .x-panel-header-default-framed-bottom-ml,
  9236. .x-panel-header-default-framed-bottom-mr {
  9237. background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif);
  9238. }
  9239. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9240. .x-panel-header-default-framed-bottom-ml,
  9241. .x-panel-header-default-framed-bottom-mr {
  9242. background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif);
  9243. background-repeat: repeat-y;
  9244. }
  9245. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9246. .x-panel-header-default-framed-bottom-mc {
  9247. padding: 16px 16px 15px 16px;
  9248. }
  9249. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9250. .x-panel-header-default-framed-left {
  9251. -moz-border-radius-topleft: 0;
  9252. -webkit-border-top-left-radius: 0;
  9253. border-top-left-radius: 0;
  9254. -moz-border-radius-topright: 0;
  9255. -webkit-border-top-right-radius: 0;
  9256. border-top-right-radius: 0;
  9257. -moz-border-radius-bottomright: 0;
  9258. -webkit-border-bottom-right-radius: 0;
  9259. border-bottom-right-radius: 0;
  9260. -moz-border-radius-bottomleft: 0;
  9261. -webkit-border-bottom-left-radius: 0;
  9262. border-bottom-left-radius: 0;
  9263. padding: 16px 16px 16px 15px;
  9264. border-width: 1px 0 1px 1px;
  9265. border-style: solid;
  9266. background-color: #2196f3;
  9267. background-color: var(--base-color);
  9268. }
  9269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:226 */
  9270. .x-rtl.x-panel-header-default-framed-left {
  9271. background-image: none;
  9272. background-color: #2196f3;
  9273. background-color: var(--base-color);
  9274. }
  9275. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9276. .x-panel-header-default-framed-left-mc {
  9277. background-color: #2196f3;
  9278. background-color: var(--base-color);
  9279. }
  9280. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9281. .x-nbr .x-panel-header-default-framed-left {
  9282. padding: 0 !important;
  9283. border-width: 0 !important;
  9284. -webkit-border-radius: 0px;
  9285. -moz-border-radius: 0px;
  9286. -ms-border-radius: 0px;
  9287. -o-border-radius: 0px;
  9288. border-radius: 0px;
  9289. background-color: transparent !important;
  9290. box-shadow: none !important;
  9291. }
  9292. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9293. .x-panel-header-default-framed-left-frameInfo {
  9294. font-family: dh-1-0-1-1-1-0-1-1-16-16-16-15;
  9295. }
  9296. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9297. .x-panel-header-default-framed-left-tl {
  9298. background-position: 0 -2px;
  9299. }
  9300. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9301. .x-panel-header-default-framed-left-tr {
  9302. background-position: right -3px;
  9303. }
  9304. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9305. .x-panel-header-default-framed-left-bl {
  9306. background-position: 0 -4px;
  9307. }
  9308. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9309. .x-panel-header-default-framed-left-br {
  9310. background-position: right -5px;
  9311. }
  9312. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9313. .x-panel-header-default-framed-left-ml {
  9314. background-position: left 0;
  9315. }
  9316. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9317. .x-panel-header-default-framed-left-mr {
  9318. background-position: left 0;
  9319. }
  9320. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9321. .x-panel-header-default-framed-left-tc {
  9322. background-position: 0 0;
  9323. }
  9324. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9325. .x-panel-header-default-framed-left-bc {
  9326. background-position: 0 -1px;
  9327. }
  9328. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9329. .x-panel-header-default-framed-left-tr,
  9330. .x-panel-header-default-framed-left-br,
  9331. .x-panel-header-default-framed-left-mr {
  9332. padding-right: 0;
  9333. }
  9334. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9335. .x-panel-header-default-framed-left-tl,
  9336. .x-panel-header-default-framed-left-bl,
  9337. .x-panel-header-default-framed-left-ml {
  9338. padding-left: 1px;
  9339. }
  9340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9341. .x-panel-header-default-framed-left-tc {
  9342. height: 1px;
  9343. }
  9344. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9345. .x-panel-header-default-framed-left-bc {
  9346. height: 1px;
  9347. }
  9348. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9349. .x-panel-header-default-framed-left-tl,
  9350. .x-panel-header-default-framed-left-bl,
  9351. .x-panel-header-default-framed-left-tr,
  9352. .x-panel-header-default-framed-left-br,
  9353. .x-panel-header-default-framed-left-tc,
  9354. .x-panel-header-default-framed-left-bc,
  9355. .x-panel-header-default-framed-left-ml,
  9356. .x-panel-header-default-framed-left-mr {
  9357. background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif);
  9358. }
  9359. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:423 */
  9360. .x-rtl.x-panel-header-default-framed-left-tl,
  9361. .x-rtl.x-panel-header-default-framed-left-ml,
  9362. .x-rtl.x-panel-header-default-framed-left-bl,
  9363. .x-rtl.x-panel-header-default-framed-left-tr,
  9364. .x-rtl.x-panel-header-default-framed-left-mr,
  9365. .x-rtl.x-panel-header-default-framed-left-br {
  9366. background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif);
  9367. }
  9368. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9369. .x-panel-header-default-framed-left-ml,
  9370. .x-panel-header-default-framed-left-mr {
  9371. background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif);
  9372. background-repeat: repeat-y;
  9373. }
  9374. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9375. .x-panel-header-default-framed-left-mc {
  9376. padding: 16px 16px 16px 15px;
  9377. }
  9378. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9379. .x-panel-header-default-framed-collapsed-top {
  9380. -moz-border-radius-topleft: 0;
  9381. -webkit-border-top-left-radius: 0;
  9382. border-top-left-radius: 0;
  9383. -moz-border-radius-topright: 0;
  9384. -webkit-border-top-right-radius: 0;
  9385. border-top-right-radius: 0;
  9386. -moz-border-radius-bottomright: 0;
  9387. -webkit-border-bottom-right-radius: 0;
  9388. border-bottom-right-radius: 0;
  9389. -moz-border-radius-bottomleft: 0;
  9390. -webkit-border-bottom-left-radius: 0;
  9391. border-bottom-left-radius: 0;
  9392. padding: 16px 16px 15px 16px;
  9393. border-width: 1px;
  9394. border-style: solid;
  9395. background-color: #2196f3;
  9396. background-color: var(--base-color);
  9397. }
  9398. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9399. .x-panel-header-default-framed-collapsed-top-mc {
  9400. background-color: #2196f3;
  9401. background-color: var(--base-color);
  9402. }
  9403. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9404. .x-nbr .x-panel-header-default-framed-collapsed-top {
  9405. padding: 0 !important;
  9406. border-width: 0 !important;
  9407. -webkit-border-radius: 0px;
  9408. -moz-border-radius: 0px;
  9409. -ms-border-radius: 0px;
  9410. -o-border-radius: 0px;
  9411. border-radius: 0px;
  9412. background-color: transparent !important;
  9413. box-shadow: none !important;
  9414. }
  9415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9416. .x-panel-header-default-framed-collapsed-top-frameInfo {
  9417. font-family: dh-1-1-1-1-1-1-1-1-16-16-15-16;
  9418. }
  9419. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9420. .x-panel-header-default-framed-collapsed-top-tl {
  9421. background-position: 0 -2px;
  9422. }
  9423. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9424. .x-panel-header-default-framed-collapsed-top-tr {
  9425. background-position: right -3px;
  9426. }
  9427. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9428. .x-panel-header-default-framed-collapsed-top-bl {
  9429. background-position: 0 -4px;
  9430. }
  9431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9432. .x-panel-header-default-framed-collapsed-top-br {
  9433. background-position: right -5px;
  9434. }
  9435. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9436. .x-panel-header-default-framed-collapsed-top-ml {
  9437. background-position: 0 top;
  9438. }
  9439. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9440. .x-panel-header-default-framed-collapsed-top-mr {
  9441. background-position: right top;
  9442. }
  9443. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9444. .x-panel-header-default-framed-collapsed-top-tc {
  9445. background-position: 0 0;
  9446. }
  9447. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9448. .x-panel-header-default-framed-collapsed-top-bc {
  9449. background-position: 0 -1px;
  9450. }
  9451. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9452. .x-panel-header-default-framed-collapsed-top-tr,
  9453. .x-panel-header-default-framed-collapsed-top-br,
  9454. .x-panel-header-default-framed-collapsed-top-mr {
  9455. padding-right: 1px;
  9456. }
  9457. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9458. .x-panel-header-default-framed-collapsed-top-tl,
  9459. .x-panel-header-default-framed-collapsed-top-bl,
  9460. .x-panel-header-default-framed-collapsed-top-ml {
  9461. padding-left: 1px;
  9462. }
  9463. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9464. .x-panel-header-default-framed-collapsed-top-tc {
  9465. height: 1px;
  9466. }
  9467. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9468. .x-panel-header-default-framed-collapsed-top-bc {
  9469. height: 1px;
  9470. }
  9471. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9472. .x-panel-header-default-framed-collapsed-top-tl,
  9473. .x-panel-header-default-framed-collapsed-top-bl,
  9474. .x-panel-header-default-framed-collapsed-top-tr,
  9475. .x-panel-header-default-framed-collapsed-top-br,
  9476. .x-panel-header-default-framed-collapsed-top-tc,
  9477. .x-panel-header-default-framed-collapsed-top-bc,
  9478. .x-panel-header-default-framed-collapsed-top-ml,
  9479. .x-panel-header-default-framed-collapsed-top-mr {
  9480. background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif);
  9481. }
  9482. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9483. .x-panel-header-default-framed-collapsed-top-ml,
  9484. .x-panel-header-default-framed-collapsed-top-mr {
  9485. background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif);
  9486. background-repeat: repeat-y;
  9487. }
  9488. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9489. .x-panel-header-default-framed-collapsed-top-mc {
  9490. padding: 16px 16px 15px 16px;
  9491. }
  9492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9493. .x-panel-header-default-framed-collapsed-right {
  9494. -moz-border-radius-topleft: 0;
  9495. -webkit-border-top-left-radius: 0;
  9496. border-top-left-radius: 0;
  9497. -moz-border-radius-topright: 0;
  9498. -webkit-border-top-right-radius: 0;
  9499. border-top-right-radius: 0;
  9500. -moz-border-radius-bottomright: 0;
  9501. -webkit-border-bottom-right-radius: 0;
  9502. border-bottom-right-radius: 0;
  9503. -moz-border-radius-bottomleft: 0;
  9504. -webkit-border-bottom-left-radius: 0;
  9505. border-bottom-left-radius: 0;
  9506. padding: 16px 16px 16px 15px;
  9507. border-width: 1px;
  9508. border-style: solid;
  9509. background-color: #2196f3;
  9510. background-color: var(--base-color);
  9511. }
  9512. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:226 */
  9513. .x-rtl.x-panel-header-default-framed-collapsed-right {
  9514. background-image: none;
  9515. background-color: #2196f3;
  9516. background-color: var(--base-color);
  9517. }
  9518. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9519. .x-panel-header-default-framed-collapsed-right-mc {
  9520. background-color: #2196f3;
  9521. background-color: var(--base-color);
  9522. }
  9523. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9524. .x-nbr .x-panel-header-default-framed-collapsed-right {
  9525. padding: 0 !important;
  9526. border-width: 0 !important;
  9527. -webkit-border-radius: 0px;
  9528. -moz-border-radius: 0px;
  9529. -ms-border-radius: 0px;
  9530. -o-border-radius: 0px;
  9531. border-radius: 0px;
  9532. background-color: transparent !important;
  9533. box-shadow: none !important;
  9534. }
  9535. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9536. .x-panel-header-default-framed-collapsed-right-frameInfo {
  9537. font-family: dh-1-1-1-1-1-1-1-1-16-16-16-15;
  9538. }
  9539. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9540. .x-panel-header-default-framed-collapsed-right-tl {
  9541. background-position: 0 -2px;
  9542. }
  9543. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9544. .x-panel-header-default-framed-collapsed-right-tr {
  9545. background-position: right -3px;
  9546. }
  9547. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9548. .x-panel-header-default-framed-collapsed-right-bl {
  9549. background-position: 0 -4px;
  9550. }
  9551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9552. .x-panel-header-default-framed-collapsed-right-br {
  9553. background-position: right -5px;
  9554. }
  9555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9556. .x-panel-header-default-framed-collapsed-right-ml {
  9557. background-position: right 0;
  9558. }
  9559. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9560. .x-panel-header-default-framed-collapsed-right-mr {
  9561. background-position: right 0;
  9562. }
  9563. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9564. .x-panel-header-default-framed-collapsed-right-tc {
  9565. background-position: 0 0;
  9566. }
  9567. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9568. .x-panel-header-default-framed-collapsed-right-bc {
  9569. background-position: 0 -1px;
  9570. }
  9571. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9572. .x-panel-header-default-framed-collapsed-right-tr,
  9573. .x-panel-header-default-framed-collapsed-right-br,
  9574. .x-panel-header-default-framed-collapsed-right-mr {
  9575. padding-right: 1px;
  9576. }
  9577. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9578. .x-panel-header-default-framed-collapsed-right-tl,
  9579. .x-panel-header-default-framed-collapsed-right-bl,
  9580. .x-panel-header-default-framed-collapsed-right-ml {
  9581. padding-left: 1px;
  9582. }
  9583. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9584. .x-panel-header-default-framed-collapsed-right-tc {
  9585. height: 1px;
  9586. }
  9587. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9588. .x-panel-header-default-framed-collapsed-right-bc {
  9589. height: 1px;
  9590. }
  9591. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9592. .x-panel-header-default-framed-collapsed-right-tl,
  9593. .x-panel-header-default-framed-collapsed-right-bl,
  9594. .x-panel-header-default-framed-collapsed-right-tr,
  9595. .x-panel-header-default-framed-collapsed-right-br,
  9596. .x-panel-header-default-framed-collapsed-right-tc,
  9597. .x-panel-header-default-framed-collapsed-right-bc,
  9598. .x-panel-header-default-framed-collapsed-right-ml,
  9599. .x-panel-header-default-framed-collapsed-right-mr {
  9600. background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif);
  9601. }
  9602. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:423 */
  9603. .x-rtl.x-panel-header-default-framed-collapsed-right-tl,
  9604. .x-rtl.x-panel-header-default-framed-collapsed-right-ml,
  9605. .x-rtl.x-panel-header-default-framed-collapsed-right-bl,
  9606. .x-rtl.x-panel-header-default-framed-collapsed-right-tr,
  9607. .x-rtl.x-panel-header-default-framed-collapsed-right-mr,
  9608. .x-rtl.x-panel-header-default-framed-collapsed-right-br {
  9609. background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif);
  9610. }
  9611. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9612. .x-panel-header-default-framed-collapsed-right-ml,
  9613. .x-panel-header-default-framed-collapsed-right-mr {
  9614. background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);
  9615. background-repeat: repeat-y;
  9616. }
  9617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9618. .x-panel-header-default-framed-collapsed-right-mc {
  9619. padding: 16px 16px 16px 15px;
  9620. }
  9621. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9622. .x-panel-header-default-framed-collapsed-bottom {
  9623. -moz-border-radius-topleft: 0;
  9624. -webkit-border-top-left-radius: 0;
  9625. border-top-left-radius: 0;
  9626. -moz-border-radius-topright: 0;
  9627. -webkit-border-top-right-radius: 0;
  9628. border-top-right-radius: 0;
  9629. -moz-border-radius-bottomright: 0;
  9630. -webkit-border-bottom-right-radius: 0;
  9631. border-bottom-right-radius: 0;
  9632. -moz-border-radius-bottomleft: 0;
  9633. -webkit-border-bottom-left-radius: 0;
  9634. border-bottom-left-radius: 0;
  9635. padding: 16px 16px 15px 16px;
  9636. border-width: 1px;
  9637. border-style: solid;
  9638. background-color: #2196f3;
  9639. background-color: var(--base-color);
  9640. }
  9641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9642. .x-panel-header-default-framed-collapsed-bottom-mc {
  9643. background-color: #2196f3;
  9644. background-color: var(--base-color);
  9645. }
  9646. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9647. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  9648. padding: 0 !important;
  9649. border-width: 0 !important;
  9650. -webkit-border-radius: 0px;
  9651. -moz-border-radius: 0px;
  9652. -ms-border-radius: 0px;
  9653. -o-border-radius: 0px;
  9654. border-radius: 0px;
  9655. background-color: transparent !important;
  9656. box-shadow: none !important;
  9657. }
  9658. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9659. .x-panel-header-default-framed-collapsed-bottom-frameInfo {
  9660. font-family: dh-1-1-1-1-1-1-1-1-16-16-15-16;
  9661. }
  9662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9663. .x-panel-header-default-framed-collapsed-bottom-tl {
  9664. background-position: 0 -2px;
  9665. }
  9666. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9667. .x-panel-header-default-framed-collapsed-bottom-tr {
  9668. background-position: right -3px;
  9669. }
  9670. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9671. .x-panel-header-default-framed-collapsed-bottom-bl {
  9672. background-position: 0 -4px;
  9673. }
  9674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9675. .x-panel-header-default-framed-collapsed-bottom-br {
  9676. background-position: right -5px;
  9677. }
  9678. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9679. .x-panel-header-default-framed-collapsed-bottom-ml {
  9680. background-position: 0 bottom;
  9681. }
  9682. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9683. .x-panel-header-default-framed-collapsed-bottom-mr {
  9684. background-position: right bottom;
  9685. }
  9686. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9687. .x-panel-header-default-framed-collapsed-bottom-tc {
  9688. background-position: 0 0;
  9689. }
  9690. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9691. .x-panel-header-default-framed-collapsed-bottom-bc {
  9692. background-position: 0 -1px;
  9693. }
  9694. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9695. .x-panel-header-default-framed-collapsed-bottom-tr,
  9696. .x-panel-header-default-framed-collapsed-bottom-br,
  9697. .x-panel-header-default-framed-collapsed-bottom-mr {
  9698. padding-right: 1px;
  9699. }
  9700. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9701. .x-panel-header-default-framed-collapsed-bottom-tl,
  9702. .x-panel-header-default-framed-collapsed-bottom-bl,
  9703. .x-panel-header-default-framed-collapsed-bottom-ml {
  9704. padding-left: 1px;
  9705. }
  9706. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9707. .x-panel-header-default-framed-collapsed-bottom-tc {
  9708. height: 1px;
  9709. }
  9710. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9711. .x-panel-header-default-framed-collapsed-bottom-bc {
  9712. height: 1px;
  9713. }
  9714. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9715. .x-panel-header-default-framed-collapsed-bottom-tl,
  9716. .x-panel-header-default-framed-collapsed-bottom-bl,
  9717. .x-panel-header-default-framed-collapsed-bottom-tr,
  9718. .x-panel-header-default-framed-collapsed-bottom-br,
  9719. .x-panel-header-default-framed-collapsed-bottom-tc,
  9720. .x-panel-header-default-framed-collapsed-bottom-bc,
  9721. .x-panel-header-default-framed-collapsed-bottom-ml,
  9722. .x-panel-header-default-framed-collapsed-bottom-mr {
  9723. background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif);
  9724. }
  9725. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9726. .x-panel-header-default-framed-collapsed-bottom-ml,
  9727. .x-panel-header-default-framed-collapsed-bottom-mr {
  9728. background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif);
  9729. background-repeat: repeat-y;
  9730. }
  9731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9732. .x-panel-header-default-framed-collapsed-bottom-mc {
  9733. padding: 16px 16px 15px 16px;
  9734. }
  9735. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  9736. .x-panel-header-default-framed-collapsed-left {
  9737. -moz-border-radius-topleft: 0;
  9738. -webkit-border-top-left-radius: 0;
  9739. border-top-left-radius: 0;
  9740. -moz-border-radius-topright: 0;
  9741. -webkit-border-top-right-radius: 0;
  9742. border-top-right-radius: 0;
  9743. -moz-border-radius-bottomright: 0;
  9744. -webkit-border-bottom-right-radius: 0;
  9745. border-bottom-right-radius: 0;
  9746. -moz-border-radius-bottomleft: 0;
  9747. -webkit-border-bottom-left-radius: 0;
  9748. border-bottom-left-radius: 0;
  9749. padding: 16px 16px 16px 15px;
  9750. border-width: 1px;
  9751. border-style: solid;
  9752. background-color: #2196f3;
  9753. background-color: var(--base-color);
  9754. }
  9755. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:226 */
  9756. .x-rtl.x-panel-header-default-framed-collapsed-left {
  9757. background-image: none;
  9758. background-color: #2196f3;
  9759. background-color: var(--base-color);
  9760. }
  9761. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  9762. .x-panel-header-default-framed-collapsed-left-mc {
  9763. background-color: #2196f3;
  9764. background-color: var(--base-color);
  9765. }
  9766. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  9767. .x-nbr .x-panel-header-default-framed-collapsed-left {
  9768. padding: 0 !important;
  9769. border-width: 0 !important;
  9770. -webkit-border-radius: 0px;
  9771. -moz-border-radius: 0px;
  9772. -ms-border-radius: 0px;
  9773. -o-border-radius: 0px;
  9774. border-radius: 0px;
  9775. background-color: transparent !important;
  9776. box-shadow: none !important;
  9777. }
  9778. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  9779. .x-panel-header-default-framed-collapsed-left-frameInfo {
  9780. font-family: dh-1-1-1-1-1-1-1-1-16-16-16-15;
  9781. }
  9782. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  9783. .x-panel-header-default-framed-collapsed-left-tl {
  9784. background-position: 0 -2px;
  9785. }
  9786. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  9787. .x-panel-header-default-framed-collapsed-left-tr {
  9788. background-position: right -3px;
  9789. }
  9790. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  9791. .x-panel-header-default-framed-collapsed-left-bl {
  9792. background-position: 0 -4px;
  9793. }
  9794. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  9795. .x-panel-header-default-framed-collapsed-left-br {
  9796. background-position: right -5px;
  9797. }
  9798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  9799. .x-panel-header-default-framed-collapsed-left-ml {
  9800. background-position: left 0;
  9801. }
  9802. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  9803. .x-panel-header-default-framed-collapsed-left-mr {
  9804. background-position: left 0;
  9805. }
  9806. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  9807. .x-panel-header-default-framed-collapsed-left-tc {
  9808. background-position: 0 0;
  9809. }
  9810. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  9811. .x-panel-header-default-framed-collapsed-left-bc {
  9812. background-position: 0 -1px;
  9813. }
  9814. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  9815. .x-panel-header-default-framed-collapsed-left-tr,
  9816. .x-panel-header-default-framed-collapsed-left-br,
  9817. .x-panel-header-default-framed-collapsed-left-mr {
  9818. padding-right: 1px;
  9819. }
  9820. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  9821. .x-panel-header-default-framed-collapsed-left-tl,
  9822. .x-panel-header-default-framed-collapsed-left-bl,
  9823. .x-panel-header-default-framed-collapsed-left-ml {
  9824. padding-left: 1px;
  9825. }
  9826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  9827. .x-panel-header-default-framed-collapsed-left-tc {
  9828. height: 1px;
  9829. }
  9830. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  9831. .x-panel-header-default-framed-collapsed-left-bc {
  9832. height: 1px;
  9833. }
  9834. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  9835. .x-panel-header-default-framed-collapsed-left-tl,
  9836. .x-panel-header-default-framed-collapsed-left-bl,
  9837. .x-panel-header-default-framed-collapsed-left-tr,
  9838. .x-panel-header-default-framed-collapsed-left-br,
  9839. .x-panel-header-default-framed-collapsed-left-tc,
  9840. .x-panel-header-default-framed-collapsed-left-bc,
  9841. .x-panel-header-default-framed-collapsed-left-ml,
  9842. .x-panel-header-default-framed-collapsed-left-mr {
  9843. background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif);
  9844. }
  9845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:423 */
  9846. .x-rtl.x-panel-header-default-framed-collapsed-left-tl,
  9847. .x-rtl.x-panel-header-default-framed-collapsed-left-ml,
  9848. .x-rtl.x-panel-header-default-framed-collapsed-left-bl,
  9849. .x-rtl.x-panel-header-default-framed-collapsed-left-tr,
  9850. .x-rtl.x-panel-header-default-framed-collapsed-left-mr,
  9851. .x-rtl.x-panel-header-default-framed-collapsed-left-br {
  9852. background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif);
  9853. }
  9854. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  9855. .x-panel-header-default-framed-collapsed-left-ml,
  9856. .x-panel-header-default-framed-collapsed-left-mr {
  9857. background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);
  9858. background-repeat: repeat-y;
  9859. }
  9860. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  9861. .x-panel-header-default-framed-collapsed-left-mc {
  9862. padding: 16px 16px 16px 15px;
  9863. }
  9864. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1188 */
  9865. .x-panel .x-panel-header-default-framed-top {
  9866. border-bottom-width: 1px !important;
  9867. }
  9868. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1192 */
  9869. .x-panel .x-panel-header-default-framed-right {
  9870. border-left-width: 1px !important;
  9871. }
  9872. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1196 */
  9873. .x-panel .x-panel-header-default-framed-bottom {
  9874. border-top-width: 1px !important;
  9875. }
  9876. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1200 */
  9877. .x-panel .x-panel-header-default-framed-left {
  9878. border-right-width: 1px !important;
  9879. }
  9880. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1206 */
  9881. .x-nbr .x-panel-header-default-framed-collapsed-top {
  9882. border-bottom-width: 0 !important;
  9883. }
  9884. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1210 */
  9885. .x-nbr .x-panel-header-default-framed-collapsed-right {
  9886. border-left-width: 0 !important;
  9887. }
  9888. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1214 */
  9889. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  9890. border-top-width: 0 !important;
  9891. }
  9892. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1218 */
  9893. .x-nbr .x-panel-header-default-framed-collapsed-left {
  9894. border-right-width: 0 !important;
  9895. }
  9896. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1336 */
  9897. .x-panel-header-default-framed-horizontal .x-tool-after-title {
  9898. margin: 0 0 0 6px;
  9899. }
  9900. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1341 */
  9901. .x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title {
  9902. margin: 0 6px 0 0;
  9903. }
  9904. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1346 */
  9905. .x-panel-header-default-framed-horizontal .x-tool-before-title {
  9906. margin: 0 6px 0 0;
  9907. }
  9908. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1351 */
  9909. .x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title {
  9910. margin: 0 0 0 6px;
  9911. }
  9912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1358 */
  9913. .x-panel-header-default-framed-vertical .x-tool-after-title {
  9914. margin: 6px 0 0 0;
  9915. }
  9916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1363 */
  9917. .x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title {
  9918. margin: 6px 0 0 0;
  9919. }
  9920. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1368 */
  9921. .x-panel-header-default-framed-vertical .x-tool-before-title {
  9922. margin: 0 0 6px 0;
  9923. }
  9924. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1373 */
  9925. .x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title {
  9926. margin: 0 0 6px 0;
  9927. }
  9928. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1381 */
  9929. .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus {
  9930. outline: 1px solid #fff;
  9931. outline-offset: 2px;
  9932. }
  9933. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  9934. .x-ie .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus,
  9935. .x-ie10p .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus,
  9936. .x-edge .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus {
  9937. outline: none;
  9938. }
  9939. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  9940. .x-ie .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus:after,
  9941. .x-ie10p .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus:after,
  9942. .x-edge .x-keyboard-mode .x-panel-header-default-framed .x-tool-focus:after {
  9943. position: absolute;
  9944. content: ' ';
  9945. top: -3px;
  9946. right: -3px;
  9947. bottom: -3px;
  9948. left: -3px;
  9949. border: 1px solid #fff;
  9950. pointer-events: none;
  9951. }
  9952. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1412 */
  9953. .x-rtl.x-panel-header-default-framed-collapsed-border-right {
  9954. border-right-width: 1px !important;
  9955. }
  9956. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1415 */
  9957. .x-rtl.x-panel-header-default-framed-collapsed-border-left {
  9958. border-left-width: 1px !important;
  9959. }
  9960. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/panel/Panel.scss:1429 */
  9961. .x-panel-default-framed-resizable .x-panel-handle {
  9962. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  9963. opacity: 0;
  9964. }
  9965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:2 */
  9966. .x-panel-default-framed-outer-border-l {
  9967. border-left-color: #2196f3 !important;
  9968. border-left-color: var(--base-color) !important;
  9969. border-left-width: 1px !important;
  9970. }
  9971. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:6 */
  9972. .x-panel-default-framed-outer-border-b {
  9973. border-bottom-color: #2196f3 !important;
  9974. border-bottom-color: var(--base-color) !important;
  9975. border-bottom-width: 1px !important;
  9976. }
  9977. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:10 */
  9978. .x-panel-default-framed-outer-border-bl {
  9979. border-bottom-color: #2196f3 !important;
  9980. border-bottom-color: var(--base-color) !important;
  9981. border-bottom-width: 1px !important;
  9982. border-left-color: #2196f3 !important;
  9983. border-left-color: var(--base-color) !important;
  9984. border-left-width: 1px !important;
  9985. }
  9986. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:16 */
  9987. .x-panel-default-framed-outer-border-r {
  9988. border-right-color: #2196f3 !important;
  9989. border-right-color: var(--base-color) !important;
  9990. border-right-width: 1px !important;
  9991. }
  9992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:20 */
  9993. .x-panel-default-framed-outer-border-rl {
  9994. border-right-color: #2196f3 !important;
  9995. border-right-color: var(--base-color) !important;
  9996. border-right-width: 1px !important;
  9997. border-left-color: #2196f3 !important;
  9998. border-left-color: var(--base-color) !important;
  9999. border-left-width: 1px !important;
  10000. }
  10001. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:26 */
  10002. .x-panel-default-framed-outer-border-rb {
  10003. border-right-color: #2196f3 !important;
  10004. border-right-color: var(--base-color) !important;
  10005. border-right-width: 1px !important;
  10006. border-bottom-color: #2196f3 !important;
  10007. border-bottom-color: var(--base-color) !important;
  10008. border-bottom-width: 1px !important;
  10009. }
  10010. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:32 */
  10011. .x-panel-default-framed-outer-border-rbl {
  10012. border-right-color: #2196f3 !important;
  10013. border-right-color: var(--base-color) !important;
  10014. border-right-width: 1px !important;
  10015. border-bottom-color: #2196f3 !important;
  10016. border-bottom-color: var(--base-color) !important;
  10017. border-bottom-width: 1px !important;
  10018. border-left-color: #2196f3 !important;
  10019. border-left-color: var(--base-color) !important;
  10020. border-left-width: 1px !important;
  10021. }
  10022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:40 */
  10023. .x-panel-default-framed-outer-border-t {
  10024. border-top-color: #2196f3 !important;
  10025. border-top-color: var(--base-color) !important;
  10026. border-top-width: 1px !important;
  10027. }
  10028. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:44 */
  10029. .x-panel-default-framed-outer-border-tl {
  10030. border-top-color: #2196f3 !important;
  10031. border-top-color: var(--base-color) !important;
  10032. border-top-width: 1px !important;
  10033. border-left-color: #2196f3 !important;
  10034. border-left-color: var(--base-color) !important;
  10035. border-left-width: 1px !important;
  10036. }
  10037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:50 */
  10038. .x-panel-default-framed-outer-border-tb {
  10039. border-top-color: #2196f3 !important;
  10040. border-top-color: var(--base-color) !important;
  10041. border-top-width: 1px !important;
  10042. border-bottom-color: #2196f3 !important;
  10043. border-bottom-color: var(--base-color) !important;
  10044. border-bottom-width: 1px !important;
  10045. }
  10046. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:56 */
  10047. .x-panel-default-framed-outer-border-tbl {
  10048. border-top-color: #2196f3 !important;
  10049. border-top-color: var(--base-color) !important;
  10050. border-top-width: 1px !important;
  10051. border-bottom-color: #2196f3 !important;
  10052. border-bottom-color: var(--base-color) !important;
  10053. border-bottom-width: 1px !important;
  10054. border-left-color: #2196f3 !important;
  10055. border-left-color: var(--base-color) !important;
  10056. border-left-width: 1px !important;
  10057. }
  10058. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:64 */
  10059. .x-panel-default-framed-outer-border-tr {
  10060. border-top-color: #2196f3 !important;
  10061. border-top-color: var(--base-color) !important;
  10062. border-top-width: 1px !important;
  10063. border-right-color: #2196f3 !important;
  10064. border-right-color: var(--base-color) !important;
  10065. border-right-width: 1px !important;
  10066. }
  10067. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:70 */
  10068. .x-panel-default-framed-outer-border-trl {
  10069. border-top-color: #2196f3 !important;
  10070. border-top-color: var(--base-color) !important;
  10071. border-top-width: 1px !important;
  10072. border-right-color: #2196f3 !important;
  10073. border-right-color: var(--base-color) !important;
  10074. border-right-width: 1px !important;
  10075. border-left-color: #2196f3 !important;
  10076. border-left-color: var(--base-color) !important;
  10077. border-left-width: 1px !important;
  10078. }
  10079. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:78 */
  10080. .x-panel-default-framed-outer-border-trb {
  10081. border-top-color: #2196f3 !important;
  10082. border-top-color: var(--base-color) !important;
  10083. border-top-width: 1px !important;
  10084. border-right-color: #2196f3 !important;
  10085. border-right-color: var(--base-color) !important;
  10086. border-right-width: 1px !important;
  10087. border-bottom-color: #2196f3 !important;
  10088. border-bottom-color: var(--base-color) !important;
  10089. border-bottom-width: 1px !important;
  10090. }
  10091. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:86 */
  10092. .x-panel-default-framed-outer-border-trbl {
  10093. border-color: #2196f3 !important;
  10094. border-color: var(--base-color) !important;
  10095. border-width: 1px !important;
  10096. }
  10097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:243 */
  10098. .x-btn-group-default {
  10099. border-color: #d0d0d0;
  10100. -webkit-box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10101. -moz-box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10102. box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10103. }
  10104. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:252 */
  10105. .x-btn-group-header-default {
  10106. padding: 8px 8px 7px;
  10107. line-height: 16px;
  10108. background: #fff;
  10109. -moz-border-radius-topleft: 0px;
  10110. -webkit-border-top-left-radius: 0px;
  10111. border-top-left-radius: 0px;
  10112. -moz-border-radius-topright: 0px;
  10113. -webkit-border-top-right-radius: 0px;
  10114. border-top-right-radius: 0px;
  10115. }
  10116. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:263 */
  10117. .x-btn-group-header-default .x-tool-img {
  10118. background-image: url(images/tools/tool-sprites-dark.png);
  10119. background-color: #fff;
  10120. }
  10121. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:274 */
  10122. .x-btn-group-header-title-default {
  10123. font: 400 14px Roboto, sans-serif;
  10124. line-height: 16px;
  10125. color: rgba(17, 17, 17, 0.54);
  10126. color: var(--highlight-color);
  10127. }
  10128. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:280 */
  10129. .x-btn-group-body-default {
  10130. padding: 0 1px;
  10131. }
  10132. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:282 */
  10133. .x-btn-group-body-default .x-table-layout {
  10134. border-spacing: 6px;
  10135. }
  10136. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10137. .x-btn-group-default-framed {
  10138. -webkit-border-radius: 2px;
  10139. -moz-border-radius: 2px;
  10140. -ms-border-radius: 2px;
  10141. -o-border-radius: 2px;
  10142. border-radius: 2px;
  10143. padding: 1px 1px 1px 1px;
  10144. border-width: 1px;
  10145. border-style: solid;
  10146. background-color: #fff;
  10147. }
  10148. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10149. .x-btn-group-default-framed-mc {
  10150. background-color: #fff;
  10151. }
  10152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10153. .x-nbr .x-btn-group-default-framed {
  10154. padding: 0 !important;
  10155. border-width: 0 !important;
  10156. -webkit-border-radius: 0px;
  10157. -moz-border-radius: 0px;
  10158. -ms-border-radius: 0px;
  10159. -o-border-radius: 0px;
  10160. border-radius: 0px;
  10161. background-color: transparent !important;
  10162. box-shadow: none !important;
  10163. }
  10164. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10165. .x-btn-group-default-framed-frameInfo {
  10166. font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1;
  10167. }
  10168. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10169. .x-btn-group-default-framed-tl {
  10170. background-position: 0 -4px;
  10171. }
  10172. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10173. .x-btn-group-default-framed-tr {
  10174. background-position: right -6px;
  10175. }
  10176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10177. .x-btn-group-default-framed-bl {
  10178. background-position: 0 -8px;
  10179. }
  10180. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10181. .x-btn-group-default-framed-br {
  10182. background-position: right -10px;
  10183. }
  10184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10185. .x-btn-group-default-framed-ml {
  10186. background-position: 0 top;
  10187. }
  10188. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10189. .x-btn-group-default-framed-mr {
  10190. background-position: right top;
  10191. }
  10192. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10193. .x-btn-group-default-framed-tc {
  10194. background-position: 0 0;
  10195. }
  10196. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10197. .x-btn-group-default-framed-bc {
  10198. background-position: 0 -2px;
  10199. }
  10200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10201. .x-btn-group-default-framed-tr,
  10202. .x-btn-group-default-framed-br,
  10203. .x-btn-group-default-framed-mr {
  10204. padding-right: 2px;
  10205. }
  10206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10207. .x-btn-group-default-framed-tl,
  10208. .x-btn-group-default-framed-bl,
  10209. .x-btn-group-default-framed-ml {
  10210. padding-left: 2px;
  10211. }
  10212. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10213. .x-btn-group-default-framed-tc {
  10214. height: 2px;
  10215. }
  10216. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10217. .x-btn-group-default-framed-bc {
  10218. height: 2px;
  10219. }
  10220. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  10221. .x-btn-group-default-framed-tl,
  10222. .x-btn-group-default-framed-bl,
  10223. .x-btn-group-default-framed-tr,
  10224. .x-btn-group-default-framed-br,
  10225. .x-btn-group-default-framed-tc,
  10226. .x-btn-group-default-framed-bc,
  10227. .x-btn-group-default-framed-ml,
  10228. .x-btn-group-default-framed-mr {
  10229. background-image: url(images/btn-group/btn-group-default-framed-corners.gif);
  10230. }
  10231. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  10232. .x-btn-group-default-framed-ml,
  10233. .x-btn-group-default-framed-mr {
  10234. background-image: url(images/btn-group/btn-group-default-framed-sides.gif);
  10235. background-repeat: repeat-y;
  10236. }
  10237. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10238. .x-btn-group-default-framed-mc {
  10239. padding: 0px 0px 0px 0px;
  10240. }
  10241. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10242. .x-btn-group-default-framed-notitle {
  10243. -webkit-border-radius: 2px;
  10244. -moz-border-radius: 2px;
  10245. -ms-border-radius: 2px;
  10246. -o-border-radius: 2px;
  10247. border-radius: 2px;
  10248. padding: 1px 1px 1px 1px;
  10249. border-width: 1px;
  10250. border-style: solid;
  10251. background-color: #fff;
  10252. }
  10253. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10254. .x-btn-group-default-framed-notitle-mc {
  10255. background-color: #fff;
  10256. }
  10257. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10258. .x-nbr .x-btn-group-default-framed-notitle {
  10259. padding: 0 !important;
  10260. border-width: 0 !important;
  10261. -webkit-border-radius: 0px;
  10262. -moz-border-radius: 0px;
  10263. -ms-border-radius: 0px;
  10264. -o-border-radius: 0px;
  10265. border-radius: 0px;
  10266. background-color: transparent !important;
  10267. box-shadow: none !important;
  10268. }
  10269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10270. .x-btn-group-default-framed-notitle-frameInfo {
  10271. font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1;
  10272. }
  10273. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10274. .x-btn-group-default-framed-notitle-tl {
  10275. background-position: 0 -4px;
  10276. }
  10277. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10278. .x-btn-group-default-framed-notitle-tr {
  10279. background-position: right -6px;
  10280. }
  10281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10282. .x-btn-group-default-framed-notitle-bl {
  10283. background-position: 0 -8px;
  10284. }
  10285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10286. .x-btn-group-default-framed-notitle-br {
  10287. background-position: right -10px;
  10288. }
  10289. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10290. .x-btn-group-default-framed-notitle-ml {
  10291. background-position: 0 top;
  10292. }
  10293. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10294. .x-btn-group-default-framed-notitle-mr {
  10295. background-position: right top;
  10296. }
  10297. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10298. .x-btn-group-default-framed-notitle-tc {
  10299. background-position: 0 0;
  10300. }
  10301. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10302. .x-btn-group-default-framed-notitle-bc {
  10303. background-position: 0 -2px;
  10304. }
  10305. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10306. .x-btn-group-default-framed-notitle-tr,
  10307. .x-btn-group-default-framed-notitle-br,
  10308. .x-btn-group-default-framed-notitle-mr {
  10309. padding-right: 2px;
  10310. }
  10311. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10312. .x-btn-group-default-framed-notitle-tl,
  10313. .x-btn-group-default-framed-notitle-bl,
  10314. .x-btn-group-default-framed-notitle-ml {
  10315. padding-left: 2px;
  10316. }
  10317. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10318. .x-btn-group-default-framed-notitle-tc {
  10319. height: 2px;
  10320. }
  10321. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10322. .x-btn-group-default-framed-notitle-bc {
  10323. height: 2px;
  10324. }
  10325. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  10326. .x-btn-group-default-framed-notitle-tl,
  10327. .x-btn-group-default-framed-notitle-bl,
  10328. .x-btn-group-default-framed-notitle-tr,
  10329. .x-btn-group-default-framed-notitle-br,
  10330. .x-btn-group-default-framed-notitle-tc,
  10331. .x-btn-group-default-framed-notitle-bc,
  10332. .x-btn-group-default-framed-notitle-ml,
  10333. .x-btn-group-default-framed-notitle-mr {
  10334. background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif);
  10335. }
  10336. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  10337. .x-btn-group-default-framed-notitle-ml,
  10338. .x-btn-group-default-framed-notitle-mr {
  10339. background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif);
  10340. background-repeat: repeat-y;
  10341. }
  10342. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10343. .x-btn-group-default-framed-notitle-mc {
  10344. padding: 0px 0px 0px 0px;
  10345. }
  10346. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:243 */
  10347. .x-btn-group-default-framed {
  10348. border-color: #d0d0d0;
  10349. -webkit-box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10350. -moz-box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10351. box-shadow: #fff 0 1px 0px 0 inset, #fff 0 -1px 0px 0 inset, #fff -1px 0 0px 0 inset, #fff 1px 0 0px 0 inset;
  10352. }
  10353. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:252 */
  10354. .x-btn-group-header-default-framed {
  10355. padding: 8px 8px 7px;
  10356. line-height: 16px;
  10357. background: #fff;
  10358. -moz-border-radius-topleft: 2px;
  10359. -webkit-border-top-left-radius: 2px;
  10360. border-top-left-radius: 2px;
  10361. -moz-border-radius-topright: 2px;
  10362. -webkit-border-top-right-radius: 2px;
  10363. border-top-right-radius: 2px;
  10364. }
  10365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:263 */
  10366. .x-btn-group-header-default-framed .x-tool-img {
  10367. background-image: url(images/tools/tool-sprites-dark.png);
  10368. background-color: #fff;
  10369. }
  10370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:274 */
  10371. .x-btn-group-header-title-default-framed {
  10372. font: 400 14px Roboto, sans-serif;
  10373. line-height: 16px;
  10374. color: rgba(17, 17, 17, 0.54);
  10375. color: var(--highlight-color);
  10376. }
  10377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:280 */
  10378. .x-btn-group-body-default-framed {
  10379. padding: 0 1px;
  10380. }
  10381. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/container/ButtonGroup.scss:282 */
  10382. .x-btn-group-body-default-framed .x-table-layout {
  10383. border-spacing: 6px;
  10384. }
  10385. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:1 */
  10386. .x-dashboard-column {
  10387. padding: 0 0 7px 0;
  10388. }
  10389. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:5 */
  10390. .x-dashboard-panel {
  10391. margin-top: 7px;
  10392. }
  10393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:11 */
  10394. .x-dashboard-column-first {
  10395. padding-left: 4px;
  10396. clear: left;
  10397. }
  10398. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:16 */
  10399. .x-dashboard-column-last {
  10400. padding-right: 4px;
  10401. }
  10402. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:20 */
  10403. .x-dashboard .x-panel-dd-spacer {
  10404. border: 2px dashed #99bbe8;
  10405. background: #f6f6f6;
  10406. border-radius: 4px;
  10407. -moz-border-radius: 4px;
  10408. margin-top: 7px;
  10409. }
  10410. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:30 */
  10411. .x-panel .x-dashboard {
  10412. padding: 0 3px;
  10413. }
  10414. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/dashboard/Dashboard.scss:36 */
  10415. .x-dashboard-dd-over {
  10416. overflow: hidden !important;
  10417. }
  10418. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/Window.scss:1 */
  10419. .x-window-ghost {
  10420. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  10421. opacity: 0.5;
  10422. }
  10423. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:545 */
  10424. .x-window-default {
  10425. border-color: #2196f3;
  10426. border-color: var(--base-color);
  10427. -webkit-border-radius: 0 0 0 0;
  10428. -moz-border-radius: 0 0 0 0;
  10429. -ms-border-radius: 0 0 0 0;
  10430. -o-border-radius: 0 0 0 0;
  10431. border-radius: 0 0 0 0;
  10432. }
  10433. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10434. .x-window-default {
  10435. -moz-border-radius-topleft: 0;
  10436. -webkit-border-top-left-radius: 0;
  10437. border-top-left-radius: 0;
  10438. -moz-border-radius-topright: 0;
  10439. -webkit-border-top-right-radius: 0;
  10440. border-top-right-radius: 0;
  10441. -moz-border-radius-bottomright: 0;
  10442. -webkit-border-bottom-right-radius: 0;
  10443. border-bottom-right-radius: 0;
  10444. -moz-border-radius-bottomleft: 0;
  10445. -webkit-border-bottom-left-radius: 0;
  10446. border-bottom-left-radius: 0;
  10447. padding: 0 0 0 0;
  10448. border-width: 0;
  10449. border-style: solid;
  10450. background-color: #fff;
  10451. }
  10452. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10453. .x-window-default-mc {
  10454. background-color: #fff;
  10455. }
  10456. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10457. .x-nbr .x-window-default {
  10458. padding: 0 !important;
  10459. border-width: 0 !important;
  10460. -webkit-border-radius: 0px;
  10461. -moz-border-radius: 0px;
  10462. -ms-border-radius: 0px;
  10463. -o-border-radius: 0px;
  10464. border-radius: 0px;
  10465. background-color: transparent !important;
  10466. box-shadow: none !important;
  10467. }
  10468. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10469. .x-window-default-frameInfo {
  10470. font-family: dh-0-0-0-0-0-0-0-0-0-0-0-0;
  10471. }
  10472. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10473. .x-window-default-tl {
  10474. background-position: 0 0;
  10475. }
  10476. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10477. .x-window-default-tr {
  10478. background-position: right 0;
  10479. }
  10480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10481. .x-window-default-bl {
  10482. background-position: 0 0;
  10483. }
  10484. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10485. .x-window-default-br {
  10486. background-position: right 0;
  10487. }
  10488. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10489. .x-window-default-ml {
  10490. background-position: 0 top;
  10491. }
  10492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10493. .x-window-default-mr {
  10494. background-position: right top;
  10495. }
  10496. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10497. .x-window-default-tc {
  10498. background-position: 0 0;
  10499. }
  10500. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10501. .x-window-default-bc {
  10502. background-position: 0 0;
  10503. }
  10504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10505. .x-window-default-tr,
  10506. .x-window-default-br,
  10507. .x-window-default-mr {
  10508. padding-right: 0;
  10509. }
  10510. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10511. .x-window-default-tl,
  10512. .x-window-default-bl,
  10513. .x-window-default-ml {
  10514. padding-left: 0;
  10515. }
  10516. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10517. .x-window-default-tc {
  10518. height: 0;
  10519. }
  10520. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10521. .x-window-default-bc {
  10522. height: 0;
  10523. }
  10524. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  10525. .x-window-default-tl,
  10526. .x-window-default-bl,
  10527. .x-window-default-tr,
  10528. .x-window-default-br,
  10529. .x-window-default-tc,
  10530. .x-window-default-bc,
  10531. .x-window-default-ml,
  10532. .x-window-default-mr {
  10533. background-image: url(images/window/window-default-corners.gif);
  10534. }
  10535. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  10536. .x-window-default-ml,
  10537. .x-window-default-mr {
  10538. background-image: url(images/window/window-default-sides.gif);
  10539. background-repeat: repeat-y;
  10540. }
  10541. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10542. .x-window-default-mc {
  10543. padding: 0 0 0 0;
  10544. }
  10545. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:567 */
  10546. .x-window-body-default {
  10547. border-color: #2196f3;
  10548. border-color: var(--base-color);
  10549. border-width: 1px;
  10550. border-style: solid;
  10551. background: #fff;
  10552. color: #000;
  10553. font-size: 13px;
  10554. font-weight: 400;
  10555. font-family: Roboto, sans-serif;
  10556. }
  10557. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:581 */
  10558. .x-window-header-default {
  10559. font-size: 18px;
  10560. border-color: #2196f3;
  10561. border-color: var(--base-color);
  10562. background-color: transparent;
  10563. }
  10564. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:586 */
  10565. .x-window-header-default .x-tool-img {
  10566. background-color: transparent;
  10567. }
  10568. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:599 */
  10569. .x-window-header-default-horizontal .x-window-header-default-tab-bar {
  10570. margin-top: -16px;
  10571. margin-bottom: -15px;
  10572. }
  10573. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:606 */
  10574. .x-window-header-default-vertical .x-window-header-default-tab-bar {
  10575. margin-right: -16px;
  10576. margin-left: -15px;
  10577. }
  10578. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:614 */
  10579. .x-rtl.x-window-header-default-vertical .x-window-header-default-tab-bar {
  10580. margin-left: -16px;
  10581. margin-right: -15px;
  10582. }
  10583. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:622 */
  10584. .x-window-header-title-default {
  10585. color: #111;
  10586. font-size: 18px;
  10587. font-weight: 600;
  10588. font-family: Roboto, sans-serif;
  10589. line-height: 22px;
  10590. }
  10591. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:631 */
  10592. .x-window-header-title-default > .x-title-text-default {
  10593. padding: 0;
  10594. text-transform: none;
  10595. }
  10596. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:678 */
  10597. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-top {
  10598. height: 24px;
  10599. padding-bottom: 8px;
  10600. }
  10601. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:683 */
  10602. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right {
  10603. width: 24px;
  10604. padding-left: 8px;
  10605. }
  10606. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:688 */
  10607. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-right.x-rtl {
  10608. padding-left: 0;
  10609. padding-right: 8px;
  10610. }
  10611. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:695 */
  10612. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-bottom {
  10613. height: 24px;
  10614. padding-top: 8px;
  10615. }
  10616. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:700 */
  10617. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left {
  10618. width: 24px;
  10619. padding-right: 8px;
  10620. }
  10621. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:705 */
  10622. .x-window-header-title-default > .x-title-icon-wrap-default.x-title-icon-left.x-rtl {
  10623. padding-right: 0;
  10624. padding-left: 8px;
  10625. }
  10626. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:712 */
  10627. .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default {
  10628. width: 16px;
  10629. height: 16px;
  10630. font-size: 16px;
  10631. color: #111;
  10632. background-position: center center;
  10633. }
  10634. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:732 */
  10635. .x-ie8 .x-window-header-title-default > .x-title-icon-wrap-default > .x-title-icon-default.x-title-glyph {
  10636. color: #111;
  10637. }
  10638. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10639. .x-window-header-default-top {
  10640. -moz-border-radius-topleft: 0;
  10641. -webkit-border-top-left-radius: 0;
  10642. border-top-left-radius: 0;
  10643. -moz-border-radius-topright: 0;
  10644. -webkit-border-top-right-radius: 0;
  10645. border-top-right-radius: 0;
  10646. -moz-border-radius-bottomright: 0;
  10647. -webkit-border-bottom-right-radius: 0;
  10648. border-bottom-right-radius: 0;
  10649. -moz-border-radius-bottomleft: 0;
  10650. -webkit-border-bottom-left-radius: 0;
  10651. border-bottom-left-radius: 0;
  10652. padding: 16px 16px 15px 16px;
  10653. border-width: 0 0 0 0;
  10654. border-style: solid;
  10655. background-color: transparent;
  10656. }
  10657. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10658. .x-window-header-default-top-mc {
  10659. background-color: transparent;
  10660. }
  10661. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10662. .x-nbr .x-window-header-default-top {
  10663. padding: 0 !important;
  10664. border-width: 0 !important;
  10665. -webkit-border-radius: 0px;
  10666. -moz-border-radius: 0px;
  10667. -ms-border-radius: 0px;
  10668. -o-border-radius: 0px;
  10669. border-radius: 0px;
  10670. background-color: transparent !important;
  10671. box-shadow: none !important;
  10672. }
  10673. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10674. .x-window-header-default-top-frameInfo {
  10675. font-family: dh-0-0-0-0-0-0-0-0-16-16-15-16;
  10676. }
  10677. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10678. .x-window-header-default-top-tl {
  10679. background-position: 0 0;
  10680. }
  10681. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10682. .x-window-header-default-top-tr {
  10683. background-position: right 0;
  10684. }
  10685. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10686. .x-window-header-default-top-bl {
  10687. background-position: 0 0;
  10688. }
  10689. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10690. .x-window-header-default-top-br {
  10691. background-position: right 0;
  10692. }
  10693. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10694. .x-window-header-default-top-ml {
  10695. background-position: 0 top;
  10696. }
  10697. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10698. .x-window-header-default-top-mr {
  10699. background-position: right top;
  10700. }
  10701. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10702. .x-window-header-default-top-tc {
  10703. background-position: 0 0;
  10704. }
  10705. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10706. .x-window-header-default-top-bc {
  10707. background-position: 0 0;
  10708. }
  10709. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10710. .x-window-header-default-top-tr,
  10711. .x-window-header-default-top-br,
  10712. .x-window-header-default-top-mr {
  10713. padding-right: 0;
  10714. }
  10715. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10716. .x-window-header-default-top-tl,
  10717. .x-window-header-default-top-bl,
  10718. .x-window-header-default-top-ml {
  10719. padding-left: 0;
  10720. }
  10721. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10722. .x-window-header-default-top-tc {
  10723. height: 0;
  10724. }
  10725. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10726. .x-window-header-default-top-bc {
  10727. height: 0;
  10728. }
  10729. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10730. .x-window-header-default-top-mc {
  10731. padding: 16px 16px 15px 16px;
  10732. }
  10733. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10734. .x-window-header-default-right {
  10735. -moz-border-radius-topleft: 0;
  10736. -webkit-border-top-left-radius: 0;
  10737. border-top-left-radius: 0;
  10738. -moz-border-radius-topright: 0;
  10739. -webkit-border-top-right-radius: 0;
  10740. border-top-right-radius: 0;
  10741. -moz-border-radius-bottomright: 0;
  10742. -webkit-border-bottom-right-radius: 0;
  10743. border-bottom-right-radius: 0;
  10744. -moz-border-radius-bottomleft: 0;
  10745. -webkit-border-bottom-left-radius: 0;
  10746. border-bottom-left-radius: 0;
  10747. padding: 16px 16px 16px 15px;
  10748. border-width: 0 0 0 0;
  10749. border-style: solid;
  10750. background-color: transparent;
  10751. }
  10752. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10753. .x-window-header-default-right-mc {
  10754. background-color: transparent;
  10755. }
  10756. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10757. .x-nbr .x-window-header-default-right {
  10758. padding: 0 !important;
  10759. border-width: 0 !important;
  10760. -webkit-border-radius: 0px;
  10761. -moz-border-radius: 0px;
  10762. -ms-border-radius: 0px;
  10763. -o-border-radius: 0px;
  10764. border-radius: 0px;
  10765. background-color: transparent !important;
  10766. box-shadow: none !important;
  10767. }
  10768. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10769. .x-window-header-default-right-frameInfo {
  10770. font-family: dh-0-0-0-0-0-0-0-0-16-16-16-15;
  10771. }
  10772. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10773. .x-window-header-default-right-tl {
  10774. background-position: 0 0;
  10775. }
  10776. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10777. .x-window-header-default-right-tr {
  10778. background-position: right 0;
  10779. }
  10780. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10781. .x-window-header-default-right-bl {
  10782. background-position: 0 0;
  10783. }
  10784. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10785. .x-window-header-default-right-br {
  10786. background-position: right 0;
  10787. }
  10788. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10789. .x-window-header-default-right-ml {
  10790. background-position: 0 top;
  10791. }
  10792. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10793. .x-window-header-default-right-mr {
  10794. background-position: right top;
  10795. }
  10796. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10797. .x-window-header-default-right-tc {
  10798. background-position: 0 0;
  10799. }
  10800. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10801. .x-window-header-default-right-bc {
  10802. background-position: 0 0;
  10803. }
  10804. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10805. .x-window-header-default-right-tr,
  10806. .x-window-header-default-right-br,
  10807. .x-window-header-default-right-mr {
  10808. padding-right: 0;
  10809. }
  10810. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10811. .x-window-header-default-right-tl,
  10812. .x-window-header-default-right-bl,
  10813. .x-window-header-default-right-ml {
  10814. padding-left: 0;
  10815. }
  10816. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10817. .x-window-header-default-right-tc {
  10818. height: 0;
  10819. }
  10820. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10821. .x-window-header-default-right-bc {
  10822. height: 0;
  10823. }
  10824. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10825. .x-window-header-default-right-mc {
  10826. padding: 16px 16px 16px 15px;
  10827. }
  10828. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10829. .x-window-header-default-bottom {
  10830. -moz-border-radius-topleft: 0;
  10831. -webkit-border-top-left-radius: 0;
  10832. border-top-left-radius: 0;
  10833. -moz-border-radius-topright: 0;
  10834. -webkit-border-top-right-radius: 0;
  10835. border-top-right-radius: 0;
  10836. -moz-border-radius-bottomright: 0;
  10837. -webkit-border-bottom-right-radius: 0;
  10838. border-bottom-right-radius: 0;
  10839. -moz-border-radius-bottomleft: 0;
  10840. -webkit-border-bottom-left-radius: 0;
  10841. border-bottom-left-radius: 0;
  10842. padding: 15px 16px 16px 16px;
  10843. border-width: 0 0 0 0;
  10844. border-style: solid;
  10845. background-color: transparent;
  10846. }
  10847. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10848. .x-window-header-default-bottom-mc {
  10849. background-color: transparent;
  10850. }
  10851. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10852. .x-nbr .x-window-header-default-bottom {
  10853. padding: 0 !important;
  10854. border-width: 0 !important;
  10855. -webkit-border-radius: 0px;
  10856. -moz-border-radius: 0px;
  10857. -ms-border-radius: 0px;
  10858. -o-border-radius: 0px;
  10859. border-radius: 0px;
  10860. background-color: transparent !important;
  10861. box-shadow: none !important;
  10862. }
  10863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10864. .x-window-header-default-bottom-frameInfo {
  10865. font-family: dh-0-0-0-0-0-0-0-0-15-16-16-16;
  10866. }
  10867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10868. .x-window-header-default-bottom-tl {
  10869. background-position: 0 0;
  10870. }
  10871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10872. .x-window-header-default-bottom-tr {
  10873. background-position: right 0;
  10874. }
  10875. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10876. .x-window-header-default-bottom-bl {
  10877. background-position: 0 0;
  10878. }
  10879. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10880. .x-window-header-default-bottom-br {
  10881. background-position: right 0;
  10882. }
  10883. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10884. .x-window-header-default-bottom-ml {
  10885. background-position: 0 top;
  10886. }
  10887. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10888. .x-window-header-default-bottom-mr {
  10889. background-position: right top;
  10890. }
  10891. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10892. .x-window-header-default-bottom-tc {
  10893. background-position: 0 0;
  10894. }
  10895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10896. .x-window-header-default-bottom-bc {
  10897. background-position: 0 0;
  10898. }
  10899. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10900. .x-window-header-default-bottom-tr,
  10901. .x-window-header-default-bottom-br,
  10902. .x-window-header-default-bottom-mr {
  10903. padding-right: 0;
  10904. }
  10905. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  10906. .x-window-header-default-bottom-tl,
  10907. .x-window-header-default-bottom-bl,
  10908. .x-window-header-default-bottom-ml {
  10909. padding-left: 0;
  10910. }
  10911. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  10912. .x-window-header-default-bottom-tc {
  10913. height: 0;
  10914. }
  10915. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  10916. .x-window-header-default-bottom-bc {
  10917. height: 0;
  10918. }
  10919. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  10920. .x-window-header-default-bottom-mc {
  10921. padding: 15px 16px 16px 16px;
  10922. }
  10923. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  10924. .x-window-header-default-left {
  10925. -moz-border-radius-topleft: 0;
  10926. -webkit-border-top-left-radius: 0;
  10927. border-top-left-radius: 0;
  10928. -moz-border-radius-topright: 0;
  10929. -webkit-border-top-right-radius: 0;
  10930. border-top-right-radius: 0;
  10931. -moz-border-radius-bottomright: 0;
  10932. -webkit-border-bottom-right-radius: 0;
  10933. border-bottom-right-radius: 0;
  10934. -moz-border-radius-bottomleft: 0;
  10935. -webkit-border-bottom-left-radius: 0;
  10936. border-bottom-left-radius: 0;
  10937. padding: 16px 15px 16px 16px;
  10938. border-width: 0 0 0 0;
  10939. border-style: solid;
  10940. background-color: transparent;
  10941. }
  10942. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  10943. .x-window-header-default-left-mc {
  10944. background-color: transparent;
  10945. }
  10946. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  10947. .x-nbr .x-window-header-default-left {
  10948. padding: 0 !important;
  10949. border-width: 0 !important;
  10950. -webkit-border-radius: 0px;
  10951. -moz-border-radius: 0px;
  10952. -ms-border-radius: 0px;
  10953. -o-border-radius: 0px;
  10954. border-radius: 0px;
  10955. background-color: transparent !important;
  10956. box-shadow: none !important;
  10957. }
  10958. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  10959. .x-window-header-default-left-frameInfo {
  10960. font-family: dh-0-0-0-0-0-0-0-0-16-15-16-16;
  10961. }
  10962. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  10963. .x-window-header-default-left-tl {
  10964. background-position: 0 0;
  10965. }
  10966. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  10967. .x-window-header-default-left-tr {
  10968. background-position: right 0;
  10969. }
  10970. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  10971. .x-window-header-default-left-bl {
  10972. background-position: 0 0;
  10973. }
  10974. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  10975. .x-window-header-default-left-br {
  10976. background-position: right 0;
  10977. }
  10978. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  10979. .x-window-header-default-left-ml {
  10980. background-position: 0 top;
  10981. }
  10982. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  10983. .x-window-header-default-left-mr {
  10984. background-position: right top;
  10985. }
  10986. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  10987. .x-window-header-default-left-tc {
  10988. background-position: 0 0;
  10989. }
  10990. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  10991. .x-window-header-default-left-bc {
  10992. background-position: 0 0;
  10993. }
  10994. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  10995. .x-window-header-default-left-tr,
  10996. .x-window-header-default-left-br,
  10997. .x-window-header-default-left-mr {
  10998. padding-right: 0;
  10999. }
  11000. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  11001. .x-window-header-default-left-tl,
  11002. .x-window-header-default-left-bl,
  11003. .x-window-header-default-left-ml {
  11004. padding-left: 0;
  11005. }
  11006. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  11007. .x-window-header-default-left-tc {
  11008. height: 0;
  11009. }
  11010. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  11011. .x-window-header-default-left-bc {
  11012. height: 0;
  11013. }
  11014. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  11015. .x-window-header-default-left-mc {
  11016. padding: 16px 15px 16px 16px;
  11017. }
  11018. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  11019. .x-window-header-default-collapsed-top {
  11020. -moz-border-radius-topleft: 0;
  11021. -webkit-border-top-left-radius: 0;
  11022. border-top-left-radius: 0;
  11023. -moz-border-radius-topright: 0;
  11024. -webkit-border-top-right-radius: 0;
  11025. border-top-right-radius: 0;
  11026. -moz-border-radius-bottomright: 0;
  11027. -webkit-border-bottom-right-radius: 0;
  11028. border-bottom-right-radius: 0;
  11029. -moz-border-radius-bottomleft: 0;
  11030. -webkit-border-bottom-left-radius: 0;
  11031. border-bottom-left-radius: 0;
  11032. padding: 16px 16px 15px 16px;
  11033. border-width: 0;
  11034. border-style: solid;
  11035. background-color: transparent;
  11036. }
  11037. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  11038. .x-window-header-default-collapsed-top-mc {
  11039. background-color: transparent;
  11040. }
  11041. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  11042. .x-nbr .x-window-header-default-collapsed-top {
  11043. padding: 0 !important;
  11044. border-width: 0 !important;
  11045. -webkit-border-radius: 0px;
  11046. -moz-border-radius: 0px;
  11047. -ms-border-radius: 0px;
  11048. -o-border-radius: 0px;
  11049. border-radius: 0px;
  11050. background-color: transparent !important;
  11051. box-shadow: none !important;
  11052. }
  11053. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  11054. .x-window-header-default-collapsed-top-frameInfo {
  11055. font-family: dh-0-0-0-0-0-0-0-0-16-16-15-16;
  11056. }
  11057. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  11058. .x-window-header-default-collapsed-top-tl {
  11059. background-position: 0 0;
  11060. }
  11061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  11062. .x-window-header-default-collapsed-top-tr {
  11063. background-position: right 0;
  11064. }
  11065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  11066. .x-window-header-default-collapsed-top-bl {
  11067. background-position: 0 0;
  11068. }
  11069. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  11070. .x-window-header-default-collapsed-top-br {
  11071. background-position: right 0;
  11072. }
  11073. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  11074. .x-window-header-default-collapsed-top-ml {
  11075. background-position: 0 top;
  11076. }
  11077. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  11078. .x-window-header-default-collapsed-top-mr {
  11079. background-position: right top;
  11080. }
  11081. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  11082. .x-window-header-default-collapsed-top-tc {
  11083. background-position: 0 0;
  11084. }
  11085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  11086. .x-window-header-default-collapsed-top-bc {
  11087. background-position: 0 0;
  11088. }
  11089. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  11090. .x-window-header-default-collapsed-top-tr,
  11091. .x-window-header-default-collapsed-top-br,
  11092. .x-window-header-default-collapsed-top-mr {
  11093. padding-right: 0;
  11094. }
  11095. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  11096. .x-window-header-default-collapsed-top-tl,
  11097. .x-window-header-default-collapsed-top-bl,
  11098. .x-window-header-default-collapsed-top-ml {
  11099. padding-left: 0;
  11100. }
  11101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  11102. .x-window-header-default-collapsed-top-tc {
  11103. height: 0;
  11104. }
  11105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  11106. .x-window-header-default-collapsed-top-bc {
  11107. height: 0;
  11108. }
  11109. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  11110. .x-window-header-default-collapsed-top-mc {
  11111. padding: 16px 16px 15px 16px;
  11112. }
  11113. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  11114. .x-window-header-default-collapsed-right {
  11115. -moz-border-radius-topleft: 0;
  11116. -webkit-border-top-left-radius: 0;
  11117. border-top-left-radius: 0;
  11118. -moz-border-radius-topright: 0;
  11119. -webkit-border-top-right-radius: 0;
  11120. border-top-right-radius: 0;
  11121. -moz-border-radius-bottomright: 0;
  11122. -webkit-border-bottom-right-radius: 0;
  11123. border-bottom-right-radius: 0;
  11124. -moz-border-radius-bottomleft: 0;
  11125. -webkit-border-bottom-left-radius: 0;
  11126. border-bottom-left-radius: 0;
  11127. padding: 16px 16px 16px 15px;
  11128. border-width: 0;
  11129. border-style: solid;
  11130. background-color: transparent;
  11131. }
  11132. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  11133. .x-window-header-default-collapsed-right-mc {
  11134. background-color: transparent;
  11135. }
  11136. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  11137. .x-nbr .x-window-header-default-collapsed-right {
  11138. padding: 0 !important;
  11139. border-width: 0 !important;
  11140. -webkit-border-radius: 0px;
  11141. -moz-border-radius: 0px;
  11142. -ms-border-radius: 0px;
  11143. -o-border-radius: 0px;
  11144. border-radius: 0px;
  11145. background-color: transparent !important;
  11146. box-shadow: none !important;
  11147. }
  11148. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  11149. .x-window-header-default-collapsed-right-frameInfo {
  11150. font-family: dh-0-0-0-0-0-0-0-0-16-16-16-15;
  11151. }
  11152. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  11153. .x-window-header-default-collapsed-right-tl {
  11154. background-position: 0 0;
  11155. }
  11156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  11157. .x-window-header-default-collapsed-right-tr {
  11158. background-position: right 0;
  11159. }
  11160. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  11161. .x-window-header-default-collapsed-right-bl {
  11162. background-position: 0 0;
  11163. }
  11164. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  11165. .x-window-header-default-collapsed-right-br {
  11166. background-position: right 0;
  11167. }
  11168. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  11169. .x-window-header-default-collapsed-right-ml {
  11170. background-position: 0 top;
  11171. }
  11172. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  11173. .x-window-header-default-collapsed-right-mr {
  11174. background-position: right top;
  11175. }
  11176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  11177. .x-window-header-default-collapsed-right-tc {
  11178. background-position: 0 0;
  11179. }
  11180. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  11181. .x-window-header-default-collapsed-right-bc {
  11182. background-position: 0 0;
  11183. }
  11184. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  11185. .x-window-header-default-collapsed-right-tr,
  11186. .x-window-header-default-collapsed-right-br,
  11187. .x-window-header-default-collapsed-right-mr {
  11188. padding-right: 0;
  11189. }
  11190. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  11191. .x-window-header-default-collapsed-right-tl,
  11192. .x-window-header-default-collapsed-right-bl,
  11193. .x-window-header-default-collapsed-right-ml {
  11194. padding-left: 0;
  11195. }
  11196. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  11197. .x-window-header-default-collapsed-right-tc {
  11198. height: 0;
  11199. }
  11200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  11201. .x-window-header-default-collapsed-right-bc {
  11202. height: 0;
  11203. }
  11204. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  11205. .x-window-header-default-collapsed-right-mc {
  11206. padding: 16px 16px 16px 15px;
  11207. }
  11208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  11209. .x-window-header-default-collapsed-bottom {
  11210. -moz-border-radius-topleft: 0;
  11211. -webkit-border-top-left-radius: 0;
  11212. border-top-left-radius: 0;
  11213. -moz-border-radius-topright: 0;
  11214. -webkit-border-top-right-radius: 0;
  11215. border-top-right-radius: 0;
  11216. -moz-border-radius-bottomright: 0;
  11217. -webkit-border-bottom-right-radius: 0;
  11218. border-bottom-right-radius: 0;
  11219. -moz-border-radius-bottomleft: 0;
  11220. -webkit-border-bottom-left-radius: 0;
  11221. border-bottom-left-radius: 0;
  11222. padding: 15px 16px 16px 16px;
  11223. border-width: 0;
  11224. border-style: solid;
  11225. background-color: transparent;
  11226. }
  11227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  11228. .x-window-header-default-collapsed-bottom-mc {
  11229. background-color: transparent;
  11230. }
  11231. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  11232. .x-nbr .x-window-header-default-collapsed-bottom {
  11233. padding: 0 !important;
  11234. border-width: 0 !important;
  11235. -webkit-border-radius: 0px;
  11236. -moz-border-radius: 0px;
  11237. -ms-border-radius: 0px;
  11238. -o-border-radius: 0px;
  11239. border-radius: 0px;
  11240. background-color: transparent !important;
  11241. box-shadow: none !important;
  11242. }
  11243. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  11244. .x-window-header-default-collapsed-bottom-frameInfo {
  11245. font-family: dh-0-0-0-0-0-0-0-0-15-16-16-16;
  11246. }
  11247. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  11248. .x-window-header-default-collapsed-bottom-tl {
  11249. background-position: 0 0;
  11250. }
  11251. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  11252. .x-window-header-default-collapsed-bottom-tr {
  11253. background-position: right 0;
  11254. }
  11255. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  11256. .x-window-header-default-collapsed-bottom-bl {
  11257. background-position: 0 0;
  11258. }
  11259. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  11260. .x-window-header-default-collapsed-bottom-br {
  11261. background-position: right 0;
  11262. }
  11263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  11264. .x-window-header-default-collapsed-bottom-ml {
  11265. background-position: 0 top;
  11266. }
  11267. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  11268. .x-window-header-default-collapsed-bottom-mr {
  11269. background-position: right top;
  11270. }
  11271. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  11272. .x-window-header-default-collapsed-bottom-tc {
  11273. background-position: 0 0;
  11274. }
  11275. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  11276. .x-window-header-default-collapsed-bottom-bc {
  11277. background-position: 0 0;
  11278. }
  11279. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  11280. .x-window-header-default-collapsed-bottom-tr,
  11281. .x-window-header-default-collapsed-bottom-br,
  11282. .x-window-header-default-collapsed-bottom-mr {
  11283. padding-right: 0;
  11284. }
  11285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  11286. .x-window-header-default-collapsed-bottom-tl,
  11287. .x-window-header-default-collapsed-bottom-bl,
  11288. .x-window-header-default-collapsed-bottom-ml {
  11289. padding-left: 0;
  11290. }
  11291. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  11292. .x-window-header-default-collapsed-bottom-tc {
  11293. height: 0;
  11294. }
  11295. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  11296. .x-window-header-default-collapsed-bottom-bc {
  11297. height: 0;
  11298. }
  11299. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  11300. .x-window-header-default-collapsed-bottom-mc {
  11301. padding: 15px 16px 16px 16px;
  11302. }
  11303. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  11304. .x-window-header-default-collapsed-left {
  11305. -moz-border-radius-topleft: 0;
  11306. -webkit-border-top-left-radius: 0;
  11307. border-top-left-radius: 0;
  11308. -moz-border-radius-topright: 0;
  11309. -webkit-border-top-right-radius: 0;
  11310. border-top-right-radius: 0;
  11311. -moz-border-radius-bottomright: 0;
  11312. -webkit-border-bottom-right-radius: 0;
  11313. border-bottom-right-radius: 0;
  11314. -moz-border-radius-bottomleft: 0;
  11315. -webkit-border-bottom-left-radius: 0;
  11316. border-bottom-left-radius: 0;
  11317. padding: 16px 15px 16px 16px;
  11318. border-width: 0;
  11319. border-style: solid;
  11320. background-color: transparent;
  11321. }
  11322. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  11323. .x-window-header-default-collapsed-left-mc {
  11324. background-color: transparent;
  11325. }
  11326. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  11327. .x-nbr .x-window-header-default-collapsed-left {
  11328. padding: 0 !important;
  11329. border-width: 0 !important;
  11330. -webkit-border-radius: 0px;
  11331. -moz-border-radius: 0px;
  11332. -ms-border-radius: 0px;
  11333. -o-border-radius: 0px;
  11334. border-radius: 0px;
  11335. background-color: transparent !important;
  11336. box-shadow: none !important;
  11337. }
  11338. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  11339. .x-window-header-default-collapsed-left-frameInfo {
  11340. font-family: dh-0-0-0-0-0-0-0-0-16-15-16-16;
  11341. }
  11342. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  11343. .x-window-header-default-collapsed-left-tl {
  11344. background-position: 0 0;
  11345. }
  11346. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  11347. .x-window-header-default-collapsed-left-tr {
  11348. background-position: right 0;
  11349. }
  11350. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  11351. .x-window-header-default-collapsed-left-bl {
  11352. background-position: 0 0;
  11353. }
  11354. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  11355. .x-window-header-default-collapsed-left-br {
  11356. background-position: right 0;
  11357. }
  11358. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  11359. .x-window-header-default-collapsed-left-ml {
  11360. background-position: 0 top;
  11361. }
  11362. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  11363. .x-window-header-default-collapsed-left-mr {
  11364. background-position: right top;
  11365. }
  11366. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  11367. .x-window-header-default-collapsed-left-tc {
  11368. background-position: 0 0;
  11369. }
  11370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  11371. .x-window-header-default-collapsed-left-bc {
  11372. background-position: 0 0;
  11373. }
  11374. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  11375. .x-window-header-default-collapsed-left-tr,
  11376. .x-window-header-default-collapsed-left-br,
  11377. .x-window-header-default-collapsed-left-mr {
  11378. padding-right: 0;
  11379. }
  11380. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  11381. .x-window-header-default-collapsed-left-tl,
  11382. .x-window-header-default-collapsed-left-bl,
  11383. .x-window-header-default-collapsed-left-ml {
  11384. padding-left: 0;
  11385. }
  11386. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  11387. .x-window-header-default-collapsed-left-tc {
  11388. height: 0;
  11389. }
  11390. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  11391. .x-window-header-default-collapsed-left-bc {
  11392. height: 0;
  11393. }
  11394. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  11395. .x-window-header-default-collapsed-left-mc {
  11396. padding: 16px 15px 16px 16px;
  11397. }
  11398. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:857 */
  11399. .x-window-header-default .x-window-header-icon {
  11400. width: 16px;
  11401. height: 16px;
  11402. color: #111;
  11403. font-size: 16px;
  11404. line-height: 16px;
  11405. background-position: center center;
  11406. }
  11407. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:866 */
  11408. .x-window-header-default .x-window-header-glyph {
  11409. color: #111;
  11410. font-size: 16px;
  11411. line-height: 16px;
  11412. }
  11413. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:883 */
  11414. .x-ie8 .x-window-header-default .x-window-header-glyph {
  11415. color: #111;
  11416. }
  11417. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:892 */
  11418. .x-window-header-default-horizontal .x-tool-after-title {
  11419. margin: 0 0 0 6px;
  11420. }
  11421. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:897 */
  11422. .x-window-header-default-horizontal .x-rtl.x-tool-after-title {
  11423. margin: 0 6px 0 0;
  11424. }
  11425. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:902 */
  11426. .x-window-header-default-horizontal .x-tool-before-title {
  11427. margin: 0 6px 0 0;
  11428. }
  11429. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:907 */
  11430. .x-window-header-default-horizontal .x-rtl.x-tool-before-title {
  11431. margin: 0 0 0 6px;
  11432. }
  11433. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:914 */
  11434. .x-window-header-default-vertical .x-tool-after-title {
  11435. margin: 6px 0 0 0;
  11436. }
  11437. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:919 */
  11438. .x-window-header-default-vertical .x-rtl.x-tool-after-title {
  11439. margin: 6px 0 0 0;
  11440. }
  11441. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:924 */
  11442. .x-window-header-default-vertical .x-tool-before-title {
  11443. margin: 0 0 6px 0;
  11444. }
  11445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:929 */
  11446. .x-window-header-default-vertical .x-rtl.x-tool-before-title {
  11447. margin: 0 0 6px 0;
  11448. }
  11449. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:937 */
  11450. .x-keyboard-mode .x-window-header-default .x-tool-focus {
  11451. outline: 1px solid #fff;
  11452. outline-offset: 2px;
  11453. }
  11454. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  11455. .x-ie .x-keyboard-mode .x-window-header-default .x-tool-focus,
  11456. .x-ie10p .x-keyboard-mode .x-window-header-default .x-tool-focus,
  11457. .x-edge .x-keyboard-mode .x-window-header-default .x-tool-focus {
  11458. outline: none;
  11459. }
  11460. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  11461. .x-ie .x-keyboard-mode .x-window-header-default .x-tool-focus:after,
  11462. .x-ie10p .x-keyboard-mode .x-window-header-default .x-tool-focus:after,
  11463. .x-edge .x-keyboard-mode .x-window-header-default .x-tool-focus:after {
  11464. position: absolute;
  11465. content: ' ';
  11466. top: -3px;
  11467. right: -3px;
  11468. bottom: -3px;
  11469. left: -3px;
  11470. border: 1px solid #fff;
  11471. pointer-events: none;
  11472. }
  11473. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:951 */
  11474. .x-window-header-default {
  11475. border-width: 0 !important;
  11476. }
  11477. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/window/Window.scss:961 */
  11478. .x-nbr .x-window-default-collapsed .x-window-header {
  11479. border-width: 0 !important;
  11480. }
  11481. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:2 */
  11482. .x-window-default-outer-border-l {
  11483. border-left-color: #2196f3 !important;
  11484. border-left-color: var(--base-color) !important;
  11485. border-left-width: 1px !important;
  11486. }
  11487. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:6 */
  11488. .x-window-default-outer-border-b {
  11489. border-bottom-color: #2196f3 !important;
  11490. border-bottom-color: var(--base-color) !important;
  11491. border-bottom-width: 1px !important;
  11492. }
  11493. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:10 */
  11494. .x-window-default-outer-border-bl {
  11495. border-bottom-color: #2196f3 !important;
  11496. border-bottom-color: var(--base-color) !important;
  11497. border-bottom-width: 1px !important;
  11498. border-left-color: #2196f3 !important;
  11499. border-left-color: var(--base-color) !important;
  11500. border-left-width: 1px !important;
  11501. }
  11502. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:16 */
  11503. .x-window-default-outer-border-r {
  11504. border-right-color: #2196f3 !important;
  11505. border-right-color: var(--base-color) !important;
  11506. border-right-width: 1px !important;
  11507. }
  11508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:20 */
  11509. .x-window-default-outer-border-rl {
  11510. border-right-color: #2196f3 !important;
  11511. border-right-color: var(--base-color) !important;
  11512. border-right-width: 1px !important;
  11513. border-left-color: #2196f3 !important;
  11514. border-left-color: var(--base-color) !important;
  11515. border-left-width: 1px !important;
  11516. }
  11517. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:26 */
  11518. .x-window-default-outer-border-rb {
  11519. border-right-color: #2196f3 !important;
  11520. border-right-color: var(--base-color) !important;
  11521. border-right-width: 1px !important;
  11522. border-bottom-color: #2196f3 !important;
  11523. border-bottom-color: var(--base-color) !important;
  11524. border-bottom-width: 1px !important;
  11525. }
  11526. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:32 */
  11527. .x-window-default-outer-border-rbl {
  11528. border-right-color: #2196f3 !important;
  11529. border-right-color: var(--base-color) !important;
  11530. border-right-width: 1px !important;
  11531. border-bottom-color: #2196f3 !important;
  11532. border-bottom-color: var(--base-color) !important;
  11533. border-bottom-width: 1px !important;
  11534. border-left-color: #2196f3 !important;
  11535. border-left-color: var(--base-color) !important;
  11536. border-left-width: 1px !important;
  11537. }
  11538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:40 */
  11539. .x-window-default-outer-border-t {
  11540. border-top-color: #2196f3 !important;
  11541. border-top-color: var(--base-color) !important;
  11542. border-top-width: 1px !important;
  11543. }
  11544. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:44 */
  11545. .x-window-default-outer-border-tl {
  11546. border-top-color: #2196f3 !important;
  11547. border-top-color: var(--base-color) !important;
  11548. border-top-width: 1px !important;
  11549. border-left-color: #2196f3 !important;
  11550. border-left-color: var(--base-color) !important;
  11551. border-left-width: 1px !important;
  11552. }
  11553. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:50 */
  11554. .x-window-default-outer-border-tb {
  11555. border-top-color: #2196f3 !important;
  11556. border-top-color: var(--base-color) !important;
  11557. border-top-width: 1px !important;
  11558. border-bottom-color: #2196f3 !important;
  11559. border-bottom-color: var(--base-color) !important;
  11560. border-bottom-width: 1px !important;
  11561. }
  11562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:56 */
  11563. .x-window-default-outer-border-tbl {
  11564. border-top-color: #2196f3 !important;
  11565. border-top-color: var(--base-color) !important;
  11566. border-top-width: 1px !important;
  11567. border-bottom-color: #2196f3 !important;
  11568. border-bottom-color: var(--base-color) !important;
  11569. border-bottom-width: 1px !important;
  11570. border-left-color: #2196f3 !important;
  11571. border-left-color: var(--base-color) !important;
  11572. border-left-width: 1px !important;
  11573. }
  11574. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:64 */
  11575. .x-window-default-outer-border-tr {
  11576. border-top-color: #2196f3 !important;
  11577. border-top-color: var(--base-color) !important;
  11578. border-top-width: 1px !important;
  11579. border-right-color: #2196f3 !important;
  11580. border-right-color: var(--base-color) !important;
  11581. border-right-width: 1px !important;
  11582. }
  11583. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:70 */
  11584. .x-window-default-outer-border-trl {
  11585. border-top-color: #2196f3 !important;
  11586. border-top-color: var(--base-color) !important;
  11587. border-top-width: 1px !important;
  11588. border-right-color: #2196f3 !important;
  11589. border-right-color: var(--base-color) !important;
  11590. border-right-width: 1px !important;
  11591. border-left-color: #2196f3 !important;
  11592. border-left-color: var(--base-color) !important;
  11593. border-left-width: 1px !important;
  11594. }
  11595. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:78 */
  11596. .x-window-default-outer-border-trb {
  11597. border-top-color: #2196f3 !important;
  11598. border-top-color: var(--base-color) !important;
  11599. border-top-width: 1px !important;
  11600. border-right-color: #2196f3 !important;
  11601. border-right-color: var(--base-color) !important;
  11602. border-right-width: 1px !important;
  11603. border-bottom-color: #2196f3 !important;
  11604. border-bottom-color: var(--base-color) !important;
  11605. border-bottom-width: 1px !important;
  11606. }
  11607. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/border-management.scss:86 */
  11608. .x-window-default-outer-border-trbl {
  11609. border-color: #2196f3 !important;
  11610. border-color: var(--base-color) !important;
  11611. border-width: 1px !important;
  11612. }
  11613. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/Window.scss:11 */
  11614. .x-window-body-plain {
  11615. background-color: transparent;
  11616. }
  11617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:97 */
  11618. .x-form-item-label-default {
  11619. color: rgba(17, 17, 17, 0.54);
  11620. color: var(--highlight-color);
  11621. font: 400 13px/16px Roboto, sans-serif;
  11622. min-height: 32px;
  11623. padding-top: 8px;
  11624. padding-right: 5px;
  11625. }
  11626. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:106 */
  11627. .x-form-item-label-default.x-rtl {
  11628. padding-left: 5px;
  11629. padding-right: 0;
  11630. }
  11631. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:113 */
  11632. .x-ie8 .x-form-item-label-default {
  11633. min-height: 24px;
  11634. }
  11635. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:119 */
  11636. .x-form-item-label-default.x-form-item-label-top {
  11637. height: 1px;
  11638. }
  11639. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:121 */
  11640. .x-form-item-label-default.x-form-item-label-top > .x-form-item-label-inner {
  11641. padding-top: 8px;
  11642. padding-bottom: 5px;
  11643. }
  11644. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:127 */
  11645. .x-form-item-label-default.x-form-item-label-top-side-error:after {
  11646. width: 26px;
  11647. }
  11648. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:132 */
  11649. .x-form-item-body-default {
  11650. min-height: 32px;
  11651. }
  11652. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:136 */
  11653. .x-form-invalid-icon-default {
  11654. width: 16px;
  11655. height: 16px;
  11656. margin: 0 5px;
  11657. background: url(images/form/exclamation.png) no-repeat;
  11658. }
  11659. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:143 */
  11660. .x-form-invalid-under-default {
  11661. padding: 2px 2px 2px 20px;
  11662. color: #cf4c35;
  11663. font: 400 13px/16px Roboto, sans-serif;
  11664. background: no-repeat 0 2px;
  11665. background-image: url(images/form/exclamation.png);
  11666. }
  11667. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:151 */
  11668. .x-form-error-wrap-default.x-form-error-wrap-side {
  11669. width: 26px;
  11670. }
  11671. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/Labelable.scss:156 */
  11672. .x-form-item-default.x-item-disabled {
  11673. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  11674. opacity: 0.3;
  11675. }
  11676. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/Labelable.scss:33 */
  11677. .x-autocontainer-form-item,
  11678. .x-anchor-form-item,
  11679. .x-vbox-form-item,
  11680. .x-table-form-item {
  11681. margin-bottom: 10px;
  11682. }
  11683. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:201 */
  11684. .x-form-text-field-body-default {
  11685. min-width: 170px;
  11686. max-width: 170px;
  11687. }
  11688. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:221 */
  11689. .x-form-trigger-wrap-default {
  11690. border-width: 0 0 3px 0;
  11691. border-style: solid;
  11692. border-color: #d0d0d0;
  11693. }
  11694. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:229 */
  11695. .x-form-trigger-wrap-default.x-form-trigger-wrap-focus {
  11696. border-color: #42a6f5;
  11697. }
  11698. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:233 */
  11699. .x-form-trigger-wrap-default.x-form-trigger-wrap-invalid {
  11700. border-color: #cf4c35;
  11701. }
  11702. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:258 */
  11703. .x-form-text-default {
  11704. color: #111;
  11705. color: var(--color);
  11706. padding: 5px 10px 4px;
  11707. background-color: #fff;
  11708. font: 400 13px/20px Roboto, sans-serif;
  11709. min-height: 29px;
  11710. }
  11711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:272 */
  11712. .x-ie8 .x-form-text-default {
  11713. min-height: 20px;
  11714. }
  11715. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:278 */
  11716. .x-form-text-default.x-form-textarea {
  11717. line-height: 16px;
  11718. min-height: 64px;
  11719. }
  11720. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:283 */
  11721. .x-ie8 .x-form-text-default.x-form-textarea {
  11722. min-height: 55px;
  11723. }
  11724. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:290 */
  11725. .x-form-text-heighted .x-form-text-default.x-form-textarea {
  11726. min-height: auto;
  11727. }
  11728. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:298 */
  11729. .x-form-text-default.x-form-text-file {
  11730. color: grey;
  11731. }
  11732. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:302 */
  11733. .x-form-text-default.x-webkit-border-box-bug {
  11734. height: calc(100% + 9px);
  11735. }
  11736. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:308 */
  11737. .x-placeholder-label-default {
  11738. padding: 5px 10px 4px;
  11739. }
  11740. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:312 */
  11741. .x-form-empty-field-default + .x-placeholder-label-default {
  11742. color: grey;
  11743. }
  11744. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:317 */
  11745. .x-form-text-default:-ms-input-placeholder {
  11746. color: grey;
  11747. }
  11748. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:321 */
  11749. .x-form-invalid-field-default {
  11750. background-color: #fff;
  11751. }
  11752. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:332 */
  11753. .x-form-trigger-default {
  11754. width: 32px;
  11755. font: 16px/29px 'Material Icons', 'Font Awesome 5 Free';
  11756. background: transparent;
  11757. color: #919191;
  11758. }
  11759. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11760. .x-form-trigger-default:before {
  11761. content: '\f0d7';
  11762. }
  11763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:355 */
  11764. .x-form-trigger-default.x-form-trigger-over {
  11765. background-position: -32px center;
  11766. }
  11767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:361 */
  11768. .x-form-trigger-default.x-form-trigger-over.x-form-trigger-focus {
  11769. background-position: -128px center;
  11770. }
  11771. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:366 */
  11772. .x-form-trigger-default.x-form-trigger-focus {
  11773. background-position: -96px center;
  11774. }
  11775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:375 */
  11776. .x-form-trigger.x-form-trigger-default.x-form-trigger-click {
  11777. background-position: -64px center;
  11778. }
  11779. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Text.scss:384 */
  11780. .x-textfield-default-cell > .x-grid-cell-inner {
  11781. padding-top: 8px;
  11782. padding-bottom: 8px;
  11783. }
  11784. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/Text.scss:54 */
  11785. .x-form-clear-trigger {
  11786. font-size: 16px;
  11787. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11788. }
  11789. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11790. .x-form-clear-trigger:before {
  11791. content: '\f00d';
  11792. }
  11793. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/Text.scss:67 */
  11794. .x-form-search-trigger {
  11795. font-size: 16px;
  11796. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11797. }
  11798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11799. .x-form-search-trigger:before {
  11800. content: '\f002';
  11801. }
  11802. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:1 */
  11803. .x-message-box .x-window-body {
  11804. background-color: #fff;
  11805. border-width: 0;
  11806. }
  11807. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:10 */
  11808. .x-message-box-info,
  11809. .x-message-box-warning,
  11810. .x-message-box-question,
  11811. .x-message-box-error {
  11812. background-position: left top;
  11813. background-repeat: no-repeat;
  11814. }
  11815. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:20 */
  11816. .x-rtl.x-message-box-info,
  11817. .x-rtl.x-message-box-warning,
  11818. .x-rtl.x-message-box-question,
  11819. .x-rtl.x-message-box-error {
  11820. background-position: right top;
  11821. }
  11822. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:29 */
  11823. .x-message-box-icon {
  11824. height: 44px;
  11825. width: 44px;
  11826. margin-right: 10px;
  11827. }
  11828. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:35 */
  11829. .x-message-box-info {
  11830. font: 40px/1 'Material Icons', 'Font Awesome 5 Free';
  11831. color: grey;
  11832. }
  11833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11834. .x-message-box-info:before {
  11835. content: '\f05a';
  11836. }
  11837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:44 */
  11838. .x-message-box-warning {
  11839. font: 40px/1 'Material Icons', 'Font Awesome 5 Free';
  11840. color: #f8d400;
  11841. }
  11842. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11843. .x-message-box-warning:before {
  11844. content: '\f071';
  11845. }
  11846. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:53 */
  11847. .x-message-box-question {
  11848. font: 40px/1 'Material Icons', 'Font Awesome 5 Free';
  11849. color: grey;
  11850. }
  11851. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11852. .x-message-box-question:before {
  11853. content: 'warning';
  11854. }
  11855. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/window/MessageBox.scss:62 */
  11856. .x-message-box-error {
  11857. font: 40px/1 'Material Icons', 'Font Awesome 5 Free';
  11858. color: #ee611f;
  11859. }
  11860. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11861. .x-message-box-error:before {
  11862. content: '\f057';
  11863. }
  11864. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:89 */
  11865. .x-form-cb-wrap-default {
  11866. height: 32px;
  11867. min-width: 18px;
  11868. }
  11869. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:98 */
  11870. .x-form-cb-default {
  11871. margin-top: 7px;
  11872. }
  11873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:103 */
  11874. .x-form-checkbox-default,
  11875. .x-form-radio-default {
  11876. width: 18px;
  11877. height: 18px;
  11878. }
  11879. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:109 */
  11880. .x-form-radio-default {
  11881. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11882. line-height: 1;
  11883. color: rgba(17, 17, 17, 0.54);
  11884. color: var(--highlight-color);
  11885. }
  11886. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11887. .x-form-radio-default:before {
  11888. content: 'radio_button_unchecked';
  11889. }
  11890. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:114 */
  11891. .x-form-cb-checked .x-form-radio-default {
  11892. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11893. line-height: 1;
  11894. }
  11895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11896. .x-form-cb-checked .x-form-radio-default:before {
  11897. content: 'radio_button_checked';
  11898. }
  11899. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:126 */
  11900. .x-form-checkbox-default {
  11901. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11902. line-height: 1;
  11903. color: rgba(17, 17, 17, 0.54);
  11904. color: var(--highlight-color);
  11905. }
  11906. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11907. .x-form-checkbox-default:before {
  11908. content: 'check_box_outline_blank';
  11909. }
  11910. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:131 */
  11911. .x-form-cb-checked .x-form-checkbox-default {
  11912. font-family: 'Material Icons', 'Font Awesome 5 Free';
  11913. line-height: 1;
  11914. }
  11915. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  11916. .x-form-cb-checked .x-form-checkbox-default:before {
  11917. content: 'check_box';
  11918. }
  11919. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:145 */
  11920. .x-keyboard-mode .x-form-checkbox-focus.x-form-radio-default {
  11921. color: #2196f3;
  11922. color: var(--base-color);
  11923. }
  11924. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:154 */
  11925. .x-keyboard-mode .x-form-checkbox-focus.x-form-checkbox-default {
  11926. color: #2196f3;
  11927. color: var(--base-color);
  11928. }
  11929. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:165 */
  11930. .x-keyboard-mode .x-form-cb-checked .x-form-checkbox-focus.x-form-radio-default {
  11931. color: #2196f3;
  11932. color: var(--base-color);
  11933. }
  11934. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:174 */
  11935. .x-keyboard-mode .x-form-cb-checked .x-form-checkbox-focus.x-form-checkbox-default {
  11936. color: #2196f3;
  11937. color: var(--base-color);
  11938. }
  11939. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:185 */
  11940. .x-form-cb-label-default {
  11941. margin-top: 8px;
  11942. font: 400 12px/16px Roboto, sans-serif;
  11943. color: #111;
  11944. color: var(--color);
  11945. }
  11946. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:190 */
  11947. .x-form-cb-label-default.x-form-cb-label-before {
  11948. padding-right: 30px;
  11949. }
  11950. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:194 */
  11951. .x-form-cb-label-default.x-form-cb-label-before.x-rtl {
  11952. padding-right: 0;
  11953. padding-left: 30px;
  11954. }
  11955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:201 */
  11956. .x-form-cb-label-default.x-form-cb-label-after {
  11957. padding-left: 30px;
  11958. }
  11959. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:206 */
  11960. .x-form-cb-label-default.x-rtl {
  11961. padding-left: 0;
  11962. padding-right: 30px;
  11963. }
  11964. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Checkbox.scss:215 */
  11965. .x-checkbox-default-cell > .x-grid-cell-inner {
  11966. padding-top: 8px;
  11967. padding-bottom: 8px;
  11968. }
  11969. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/CheckboxGroup.scss:96 */
  11970. .x-form-item-body-default.x-form-checkboxgroup-body {
  11971. padding: 0 4px;
  11972. }
  11973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/CheckboxGroup.scss:99 */
  11974. .x-form-invalid .x-form-item-body-default.x-form-checkboxgroup-body {
  11975. border-width: 1px;
  11976. border-style: solid;
  11977. border-color: #cf4c35;
  11978. }
  11979. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:282 */
  11980. .x-fieldset-default {
  11981. border: 1px solid #e0e0e0;
  11982. padding: 16px 8px;
  11983. margin: 0px 0px 10px 0px;
  11984. }
  11985. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:295 */
  11986. .x-ie8 .x-fieldset-default {
  11987. padding-top: 0;
  11988. }
  11989. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:298 */
  11990. .x-ie8 .x-fieldset-body-default {
  11991. padding-top: 16px;
  11992. }
  11993. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:304 */
  11994. .x-fieldset-header-default {
  11995. padding: 0px 8px;
  11996. line-height: 20px;
  11997. }
  11998. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:308 */
  11999. .x-fieldset-header-default > .x-fieldset-header-text {
  12000. font: 600 16px/20px Roboto, sans-serif;
  12001. color: #919191;
  12002. padding: 1px 0;
  12003. }
  12004. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:315 */
  12005. .x-fieldset-header-checkbox-default {
  12006. margin: 2px 4px 0 0;
  12007. line-height: 20px;
  12008. }
  12009. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:318 */
  12010. .x-fieldset-header-checkbox-default.x-rtl {
  12011. margin: 2px 0 0 4px;
  12012. }
  12013. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:325 */
  12014. .x-fieldset-header-tool-default {
  12015. margin: 2px 4px 0 0;
  12016. padding: 0;
  12017. }
  12018. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:328 */
  12019. .x-fieldset-header-tool-default.x-rtl {
  12020. margin: 2px 0 0 4px;
  12021. }
  12022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:334 */
  12023. .x-fieldset-header-tool-default > .x-tool-img {
  12024. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  12025. opacity: 0.8;
  12026. height: 16px;
  12027. width: 16px;
  12028. }
  12029. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:341 */
  12030. .x-fieldset-header-tool-default.x-tool-over > .x-tool-img {
  12031. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  12032. opacity: 0.9;
  12033. }
  12034. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:347 */
  12035. .x-fieldset-header-tool-default.x-tool-pressed > .x-tool-img {
  12036. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  12037. opacity: 1;
  12038. }
  12039. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:353 */
  12040. .x-fieldset-header-tool-default > .x-tool-toggle {
  12041. font: 14px/1 'Material Icons', 'Font Awesome 5 Free';
  12042. color: #919191;
  12043. }
  12044. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12045. .x-fieldset-header-tool-default > .x-tool-toggle:before {
  12046. content: '\f146';
  12047. }
  12048. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:373 */
  12049. .x-keyboard-mode .x-fieldset-header-tool-default.x-focus {
  12050. outline: 1px solid #42a6f5;
  12051. }
  12052. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:380 */
  12053. .x-fieldset-default.x-fieldset-collapsed {
  12054. border-width: 1px 1px 0 1px;
  12055. border-left-color: transparent;
  12056. border-right-color: transparent;
  12057. }
  12058. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/FieldSet.scss:389 */
  12059. .x-fieldset-default.x-fieldset-collapsed .x-tool-toggle {
  12060. font: 14px/1 'Material Icons', 'Font Awesome 5 Free';
  12061. }
  12062. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12063. .x-fieldset-default.x-fieldset-collapsed .x-tool-toggle:before {
  12064. content: '\f0fe';
  12065. }
  12066. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:71 */
  12067. .x-form-trigger-spinner-default {
  12068. width: 32px;
  12069. }
  12070. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:79 */
  12071. .x-form-trigger-spinner-default:before {
  12072. content: '';
  12073. }
  12074. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:85 */
  12075. .x-form-spinner-default {
  12076. background-color: #fff;
  12077. width: 32px;
  12078. height: 14.5px;
  12079. color: #919191;
  12080. }
  12081. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:131 */
  12082. .x-form-spinner-up-default {
  12083. font: 16px/1 ExtJS;
  12084. }
  12085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12086. .x-form-spinner-up-default:before {
  12087. content: "\e61c";
  12088. }
  12089. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:137 */
  12090. .x-form-spinner-down-default {
  12091. font: 16px/1 ExtJS;
  12092. }
  12093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12094. .x-form-spinner-down-default:before {
  12095. content: "\e61b";
  12096. }
  12097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:143 */
  12098. .x-form-spinner-up-default {
  12099. background-position: 0 0;
  12100. }
  12101. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:146 */
  12102. .x-form-spinner-up-default.x-form-spinner-over {
  12103. background-position: -32px 0;
  12104. }
  12105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:148 */
  12106. .x-form-spinner-up-default.x-form-spinner-over.x-form-spinner-focus {
  12107. background-position: -128px 0;
  12108. }
  12109. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:153 */
  12110. .x-form-spinner-up-default.x-form-spinner-focus {
  12111. background-position: -96px 0;
  12112. }
  12113. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:158 */
  12114. .x-form-spinner-up-default.x-form-spinner.x-form-spinner-click {
  12115. background-position: -64px 0;
  12116. }
  12117. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:163 */
  12118. .x-form-spinner-down-default {
  12119. background-position: 0 -14.5px;
  12120. }
  12121. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:166 */
  12122. .x-form-spinner-down-default.x-form-spinner-over {
  12123. background-position: -32px -14.5px;
  12124. }
  12125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:168 */
  12126. .x-form-spinner-down-default.x-form-spinner-over.x-form-spinner-focus {
  12127. background-position: -128px -14.5px;
  12128. }
  12129. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:173 */
  12130. .x-form-spinner-down-default.x-form-spinner-focus {
  12131. background-position: -96px -14.5px;
  12132. }
  12133. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/trigger/Spinner.scss:178 */
  12134. .x-form-spinner-down-default.x-form-spinner.x-form-spinner-click {
  12135. background-position: -64px -14.5px;
  12136. }
  12137. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:1 */
  12138. .x-tbar-page-number {
  12139. width: 30px;
  12140. }
  12141. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:10 */
  12142. .x-btn-icon-el.x-tbar-page-first {
  12143. font: 16px/16px ExtJS;
  12144. color: #2196f3;
  12145. color: var(--base-color);
  12146. }
  12147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12148. .x-btn-icon-el.x-tbar-page-first:before {
  12149. content: "\e617";
  12150. }
  12151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:19 */
  12152. .x-btn-icon-el.x-tbar-page-prev {
  12153. font: 16px/16px ExtJS;
  12154. color: #2196f3;
  12155. color: var(--base-color);
  12156. }
  12157. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12158. .x-btn-icon-el.x-tbar-page-prev:before {
  12159. content: "\e615";
  12160. }
  12161. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:28 */
  12162. .x-btn-icon-el.x-tbar-page-next {
  12163. font: 16px/16px ExtJS;
  12164. color: #2196f3;
  12165. color: var(--base-color);
  12166. }
  12167. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12168. .x-btn-icon-el.x-tbar-page-next:before {
  12169. content: "\e616";
  12170. }
  12171. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:37 */
  12172. .x-btn-icon-el.x-tbar-page-last {
  12173. font: 16px/16px ExtJS;
  12174. color: #2196f3;
  12175. color: var(--base-color);
  12176. }
  12177. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12178. .x-btn-icon-el.x-tbar-page-last:before {
  12179. content: "\e618";
  12180. }
  12181. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:46 */
  12182. .x-btn-icon-el.x-tbar-loading {
  12183. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  12184. color: #2196f3;
  12185. color: var(--base-color);
  12186. }
  12187. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12188. .x-btn-icon-el.x-tbar-loading:before {
  12189. content: '\f021';
  12190. }
  12191. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:92 */
  12192. .x-rtl.x-tbar-page-first {
  12193. font: 16px/16px ExtJS;
  12194. }
  12195. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12196. .x-rtl.x-tbar-page-first:before {
  12197. content: "\e618";
  12198. }
  12199. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:100 */
  12200. .x-rtl.x-tbar-page-prev {
  12201. font: 16px/16px ExtJS;
  12202. }
  12203. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12204. .x-rtl.x-tbar-page-prev:before {
  12205. content: "\e616";
  12206. }
  12207. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:108 */
  12208. .x-rtl.x-tbar-page-next {
  12209. font: 16px/16px ExtJS;
  12210. }
  12211. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12212. .x-rtl.x-tbar-page-next:before {
  12213. content: "\e615";
  12214. }
  12215. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/toolbar/Paging.scss:116 */
  12216. .x-rtl.x-tbar-page-last {
  12217. font: 16px/16px ExtJS;
  12218. }
  12219. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12220. .x-rtl.x-tbar-page-last:before {
  12221. content: "\e617";
  12222. }
  12223. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:1 */
  12224. .x-boundlist {
  12225. border-width: 1px;
  12226. border-style: solid;
  12227. border-color: #d0d0d0;
  12228. background: #fff;
  12229. }
  12230. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:8 */
  12231. .x-boundlist-item {
  12232. padding: 0 10px;
  12233. font: normal 13px Roboto, sans-serif;
  12234. line-height: 30px;
  12235. cursor: pointer;
  12236. cursor: hand;
  12237. position: relative;
  12238. /*allow hover in IE on empty items*/
  12239. border-width: 1px;
  12240. border-style: dotted;
  12241. border-color: #fff;
  12242. color: #111;
  12243. color: var(--color);
  12244. }
  12245. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:25 */
  12246. .x-boundlist-selected {
  12247. color: #fff;
  12248. background: #2196f3;
  12249. background: var(--base-color);
  12250. border-color: #2196f3;
  12251. border-color: var(--base-color);
  12252. }
  12253. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:33 */
  12254. .x-boundlist-item-over {
  12255. color: #fff;
  12256. background: #64b5f6;
  12257. background: var(--base-highlight-color);
  12258. border-color: #64b5f6;
  12259. border-color: var(--base-highlight-color);
  12260. }
  12261. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:42 */
  12262. .x-boundlist-floating {
  12263. border-top-width: 0;
  12264. }
  12265. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/BoundList.scss:46 */
  12266. .x-boundlist-above {
  12267. border-top-width: 1px;
  12268. border-bottom-width: 1px;
  12269. }
  12270. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:9 */
  12271. .x-datepicker {
  12272. border-width: 1px;
  12273. border-style: solid;
  12274. border-color: #d0d0d0;
  12275. background-color: #fff;
  12276. background-color: var(--reverse-color);
  12277. width: 282px;
  12278. }
  12279. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:19 */
  12280. .x-datepicker-header {
  12281. padding: 0;
  12282. text-align: center;
  12283. background-color: #fff;
  12284. background-color: var(--reverse-color);
  12285. }
  12286. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:29 */
  12287. .x-datepicker-arrow {
  12288. width: 32px;
  12289. height: 44px;
  12290. top: 0px;
  12291. cursor: pointer;
  12292. -webkit-touch-callout: none;
  12293. color: #919191;
  12294. background-color: #fff;
  12295. background-color: var(--reverse-color);
  12296. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  12297. opacity: 0.7;
  12298. }
  12299. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:51 */
  12300. div.x-datepicker-arrow:hover {
  12301. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  12302. opacity: 1;
  12303. }
  12304. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:56 */
  12305. .x-datepicker-next {
  12306. right: 0;
  12307. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  12308. }
  12309. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12310. .x-datepicker-next:before {
  12311. content: '\f105';
  12312. }
  12313. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:65 */
  12314. .x-datepicker-prev {
  12315. left: 0;
  12316. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  12317. }
  12318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12319. .x-datepicker-prev:before {
  12320. content: '\f104';
  12321. }
  12322. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:74 */
  12323. .x-datepicker-month {
  12324. background: transparent;
  12325. }
  12326. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:77 */
  12327. .x-datepicker-month .x-btn,
  12328. .x-datepicker-month .x-btn .x-btn-tc,
  12329. .x-datepicker-month .x-btn .x-btn-tl,
  12330. .x-datepicker-month .x-btn .x-btn-tr,
  12331. .x-datepicker-month .x-btn .x-btn-mc,
  12332. .x-datepicker-month .x-btn .x-btn-ml,
  12333. .x-datepicker-month .x-btn .x-btn-mr,
  12334. .x-datepicker-month .x-btn .x-btn-bc,
  12335. .x-datepicker-month .x-btn .x-btn-bl,
  12336. .x-datepicker-month .x-btn .x-btn-br {
  12337. background: transparent;
  12338. border-width: 0 !important;
  12339. }
  12340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:93 */
  12341. .x-datepicker-month .x-btn-inner {
  12342. color: #111;
  12343. color: var(--color);
  12344. }
  12345. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:98 */
  12346. .x-datepicker-month .x-btn-split-right:after,
  12347. .x-datepicker-month .x-btn-over .x-btn-split-right:after {
  12348. content: '\f107';
  12349. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  12350. color: #111;
  12351. background: none;
  12352. padding: 0;
  12353. text-align: right;
  12354. width: 16px;
  12355. }
  12356. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:111 */
  12357. .x-datepicker-month .x-btn {
  12358. padding: 14px;
  12359. }
  12360. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:115 */
  12361. .x-datepicker-month .x-btn-over {
  12362. border-color: transparent;
  12363. background: #f2f2f2;
  12364. }
  12365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:120 */
  12366. .x-datepicker-month .x-btn.x-btn-pressed {
  12367. border-color: transparent;
  12368. background: #e6e6e6;
  12369. }
  12370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:125 */
  12371. .x-datepicker-month .x-btn-inner {
  12372. font-size: 14px;
  12373. }
  12374. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:130 */
  12375. .x-datepicker-column-header {
  12376. width: 40px;
  12377. color: #919191;
  12378. font: 600 13px Roboto, sans-serif;
  12379. text-align: right;
  12380. background-color: #fff;
  12381. background-color: var(--reverse-color);
  12382. }
  12383. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:149 */
  12384. .x-datepicker-column-header-inner {
  12385. line-height: 40px;
  12386. padding: 0 15px 0 0;
  12387. }
  12388. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:154 */
  12389. .x-datepicker-cell {
  12390. text-align: right;
  12391. border: 0;
  12392. }
  12393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:163 */
  12394. .x-datepicker-date {
  12395. padding: 0 15px 0 0;
  12396. font: 400 13px Roboto, sans-serif;
  12397. color: #111;
  12398. color: var(--color);
  12399. cursor: pointer;
  12400. line-height: 40px;
  12401. }
  12402. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:173 */
  12403. div.x-datepicker-date:hover {
  12404. color: #111;
  12405. color: var(--color);
  12406. background-color: transparent;
  12407. }
  12408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:178 */
  12409. .x-datepicker-selected {
  12410. border-style: none;
  12411. border-color: transparent;
  12412. }
  12413. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:181 */
  12414. .x-datepicker-selected div.x-datepicker-date {
  12415. background-color: #2196f3;
  12416. background-color: var(--base-color);
  12417. color: #fff;
  12418. font-weight: 600;
  12419. }
  12420. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:188 */
  12421. .x-datepicker-today {
  12422. border-color: darkred;
  12423. border-style: none;
  12424. background-color: none;
  12425. }
  12426. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:199 */
  12427. .x-datepicker-prevday .x-datepicker-date,
  12428. .x-datepicker-nextday .x-datepicker-date {
  12429. color: #111;
  12430. }
  12431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:206 */
  12432. .x-datepicker-disabled .x-datepicker-date {
  12433. background-color: none;
  12434. cursor: default;
  12435. color: #919191;
  12436. }
  12437. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:214 */
  12438. .x-datepicker-disabled div.x-datepicker-date:hover {
  12439. background-color: none;
  12440. color: #919191;
  12441. }
  12442. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:219 */
  12443. .x-datepicker-footer,
  12444. .x-monthpicker-buttons {
  12445. padding: 6px 0;
  12446. background-color: #fff;
  12447. background-color: var(--reverse-color);
  12448. text-align: center;
  12449. }
  12450. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:236 */
  12451. .x-datepicker-footer .x-btn,
  12452. .x-monthpicker-buttons .x-btn {
  12453. margin: 0 3px 0 2px;
  12454. }
  12455. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:242 */
  12456. .x-monthpicker {
  12457. width: 282px;
  12458. border-width: 1px;
  12459. border-style: solid;
  12460. border-color: #d0d0d0;
  12461. background-color: #fff;
  12462. background-color: var(--reverse-color);
  12463. }
  12464. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:252 */
  12465. .x-monthpicker-months {
  12466. border-width: 0 1px 0 0;
  12467. border-color: #d0d0d0;
  12468. border-style: solid;
  12469. width: 140px;
  12470. }
  12471. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:261 */
  12472. .x-monthpicker-months .x-monthpicker-item {
  12473. width: 69px;
  12474. }
  12475. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:266 */
  12476. .x-monthpicker-years {
  12477. width: 140px;
  12478. }
  12479. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:269 */
  12480. .x-monthpicker-years .x-monthpicker-item {
  12481. width: 70px;
  12482. }
  12483. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:274 */
  12484. .x-monthpicker-item {
  12485. margin: 5px 0 5px;
  12486. font: 400 13px Roboto, sans-serif;
  12487. text-align: center;
  12488. }
  12489. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:280 */
  12490. .x-monthpicker-item-inner {
  12491. margin: 0 5px 0 5px;
  12492. color: #111;
  12493. color: var(--color);
  12494. border: 0;
  12495. line-height: 37px;
  12496. cursor: pointer;
  12497. }
  12498. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:295 */
  12499. a.x-monthpicker-item-inner:hover {
  12500. color: #111;
  12501. color: var(--color);
  12502. background-color: transparent;
  12503. }
  12504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:301 */
  12505. .x-monthpicker-item a.x-monthpicker-selected {
  12506. background-color: #2196f3;
  12507. background-color: var(--base-color);
  12508. color: #fff;
  12509. border-style: none;
  12510. border-color: transparent;
  12511. }
  12512. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:308 */
  12513. .x-monthpicker-yearnav {
  12514. height: 47px;
  12515. }
  12516. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:312 */
  12517. .x-monthpicker-yearnav-button-ct {
  12518. width: 70px;
  12519. }
  12520. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:316 */
  12521. .x-monthpicker-yearnav-button {
  12522. height: 16px;
  12523. width: 16px;
  12524. cursor: pointer;
  12525. margin-top: 15px;
  12526. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  12527. opacity: 0.7;
  12528. -webkit-touch-callout: none;
  12529. color: #919191;
  12530. background-color: #fff;
  12531. background-color: var(--reverse-color);
  12532. }
  12533. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:337 */
  12534. a.x-monthpicker-yearnav-button:hover {
  12535. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  12536. opacity: 1;
  12537. }
  12538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:342 */
  12539. .x-monthpicker-yearnav-next {
  12540. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  12541. }
  12542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12543. .x-monthpicker-yearnav-next:before {
  12544. content: '\f105';
  12545. }
  12546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:356 */
  12547. .x-monthpicker-yearnav-prev {
  12548. font: 18px/1 'Material Icons', 'Font Awesome 5 Free';
  12549. }
  12550. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12551. .x-monthpicker-yearnav-prev:before {
  12552. content: '\f104';
  12553. }
  12554. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:371 */
  12555. .x-monthpicker-small .x-monthpicker-item {
  12556. margin: 2px 0 2px;
  12557. }
  12558. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:375 */
  12559. .x-monthpicker-small .x-monthpicker-item-inner {
  12560. margin: 0 5px 0 5px;
  12561. }
  12562. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:379 */
  12563. .x-monthpicker-small .x-monthpicker-yearnav {
  12564. height: 41px;
  12565. }
  12566. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Date.scss:383 */
  12567. .x-monthpicker-small .x-monthpicker-yearnav-button {
  12568. margin-top: 12px;
  12569. }
  12570. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/Date.scss:2 */
  12571. .x-form-field-date .x-form-date-trigger {
  12572. font-size: 16px;
  12573. font-family: 'Material Icons', 'Font Awesome 5 Free';
  12574. }
  12575. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  12576. .x-form-field-date .x-form-date-trigger:before {
  12577. content: '\f073';
  12578. }
  12579. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Display.scss:52 */
  12580. .x-form-display-field-default {
  12581. min-height: 32px;
  12582. font: 400 12px/17px Roboto, sans-serif;
  12583. color: #111;
  12584. color: var(--color);
  12585. margin-top: 8px;
  12586. }
  12587. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Display.scss:60 */
  12588. .x-keyboard-mode .x-form-display-field-default.x-field-form-focus {
  12589. outline: 1px solid #42a6f5;
  12590. outline-offset: -1px;
  12591. }
  12592. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  12593. .x-ie .x-keyboard-mode .x-form-display-field-default.x-field-form-focus,
  12594. .x-ie10p .x-keyboard-mode .x-form-display-field-default.x-field-form-focus,
  12595. .x-edge .x-keyboard-mode .x-form-display-field-default.x-field-form-focus {
  12596. outline: none;
  12597. }
  12598. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  12599. .x-ie .x-keyboard-mode .x-form-display-field-default.x-field-form-focus:after,
  12600. .x-ie10p .x-keyboard-mode .x-form-display-field-default.x-field-form-focus:after,
  12601. .x-edge .x-keyboard-mode .x-form-display-field-default.x-field-form-focus:after {
  12602. position: absolute;
  12603. content: ' ';
  12604. top: 0px;
  12605. right: 0px;
  12606. bottom: 0px;
  12607. left: 0px;
  12608. border: 1px solid #42a6f5;
  12609. pointer-events: none;
  12610. }
  12611. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Display.scss:71 */
  12612. .x-ie8 .x-form-display-field-default.x-field-form-focus {
  12613. position: relative;
  12614. }
  12615. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  12616. .x-tip-default {
  12617. -webkit-border-radius: 2px;
  12618. -moz-border-radius: 2px;
  12619. -ms-border-radius: 2px;
  12620. -o-border-radius: 2px;
  12621. border-radius: 2px;
  12622. padding: 1px 1px 1px 1px;
  12623. border-width: 1px;
  12624. border-style: solid;
  12625. background-color: #fff;
  12626. }
  12627. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  12628. .x-tip-default-mc {
  12629. background-color: #fff;
  12630. }
  12631. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  12632. .x-nbr .x-tip-default {
  12633. padding: 0 !important;
  12634. border-width: 0 !important;
  12635. -webkit-border-radius: 0px;
  12636. -moz-border-radius: 0px;
  12637. -ms-border-radius: 0px;
  12638. -o-border-radius: 0px;
  12639. border-radius: 0px;
  12640. background-color: transparent !important;
  12641. box-shadow: none !important;
  12642. }
  12643. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  12644. .x-tip-default-frameInfo {
  12645. font-family: th-2-2-2-2-1-1-1-1-1-1-1-1;
  12646. }
  12647. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  12648. .x-tip-default-tl {
  12649. background-position: 0 -4px;
  12650. }
  12651. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  12652. .x-tip-default-tr {
  12653. background-position: right -6px;
  12654. }
  12655. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  12656. .x-tip-default-bl {
  12657. background-position: 0 -8px;
  12658. }
  12659. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  12660. .x-tip-default-br {
  12661. background-position: right -10px;
  12662. }
  12663. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  12664. .x-tip-default-ml {
  12665. background-position: 0 top;
  12666. }
  12667. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  12668. .x-tip-default-mr {
  12669. background-position: right top;
  12670. }
  12671. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  12672. .x-tip-default-tc {
  12673. background-position: 0 0;
  12674. }
  12675. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  12676. .x-tip-default-bc {
  12677. background-position: 0 -2px;
  12678. }
  12679. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  12680. .x-tip-default-tr,
  12681. .x-tip-default-br,
  12682. .x-tip-default-mr {
  12683. padding-right: 2px;
  12684. }
  12685. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  12686. .x-tip-default-tl,
  12687. .x-tip-default-bl,
  12688. .x-tip-default-ml {
  12689. padding-left: 2px;
  12690. }
  12691. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  12692. .x-tip-default-tc {
  12693. height: 2px;
  12694. }
  12695. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  12696. .x-tip-default-bc {
  12697. height: 2px;
  12698. }
  12699. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  12700. .x-tip-default-tl,
  12701. .x-tip-default-bl,
  12702. .x-tip-default-tr,
  12703. .x-tip-default-br,
  12704. .x-tip-default-tc,
  12705. .x-tip-default-bc,
  12706. .x-tip-default-ml,
  12707. .x-tip-default-mr {
  12708. background-image: url(images/tip/tip-default-corners.gif);
  12709. }
  12710. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  12711. .x-tip-default-ml,
  12712. .x-tip-default-mr {
  12713. background-image: url(images/tip/tip-default-sides.gif);
  12714. background-repeat: repeat-y;
  12715. }
  12716. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  12717. .x-tip-default-mc {
  12718. padding: 0px 0px 0px 0px;
  12719. }
  12720. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:318 */
  12721. .x-tip-default {
  12722. background-color: #fff;
  12723. border-color: #fff;
  12724. }
  12725. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:328 */
  12726. .x-tip-default .x-tool-img {
  12727. background-image: url(images/tools/tool-sprites-dark.png);
  12728. background-color: #fff;
  12729. }
  12730. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:343 */
  12731. .x-tip-header-default .x-tool-after-title {
  12732. margin: 0 0 0 6px;
  12733. }
  12734. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:348 */
  12735. .x-tip-header-default .x-rtl.x-tool-after-title {
  12736. margin: 0 6px 0 0;
  12737. }
  12738. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:353 */
  12739. .x-tip-header-default .x-tool-before-title {
  12740. margin: 0 6px 0 0;
  12741. }
  12742. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:358 */
  12743. .x-tip-header-default .x-rtl.x-tool-before-title {
  12744. margin: 0 0 0 6px;
  12745. }
  12746. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:364 */
  12747. .x-tip-header-default {
  12748. padding: 8px 8px 0 8px;
  12749. }
  12750. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:368 */
  12751. .x-tip-header-title-default {
  12752. color: #111;
  12753. font-size: 18px;
  12754. font-weight: 600;
  12755. }
  12756. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:374 */
  12757. .x-tip-body-default {
  12758. padding: 16px 8px;
  12759. color: #111;
  12760. font-size: 12px;
  12761. font-weight: 400;
  12762. }
  12763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:379 */
  12764. .x-tip-body-default a {
  12765. color: #111;
  12766. }
  12767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:390 */
  12768. .x-tip-default .x-tip-anchor {
  12769. border: 10px solid transparent;
  12770. _border-color: pink;
  12771. _filter: chroma(color=pink);
  12772. }
  12773. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:467 */
  12774. .x-tip-default .x-tip-anchor-top {
  12775. border-top-width: 0;
  12776. border-bottom: 10px solid #fff;
  12777. top: -10px;
  12778. }
  12779. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:473 */
  12780. .x-tip-default .x-tip-anchor-bottom {
  12781. border-bottom-width: 0;
  12782. border-top: 10px solid #fff;
  12783. bottom: -10px;
  12784. }
  12785. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:479 */
  12786. .x-tip-default .x-tip-anchor-left {
  12787. border-left-width: 0;
  12788. border-right: 10px solid #fff;
  12789. left: -10px;
  12790. }
  12791. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:485 */
  12792. .x-tip-default .x-tip-anchor-right {
  12793. border-right-width: 0;
  12794. border-left: 10px solid #fff;
  12795. right: -10px;
  12796. }
  12797. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  12798. .x-tip-form-invalid {
  12799. -webkit-border-radius: 2px;
  12800. -moz-border-radius: 2px;
  12801. -ms-border-radius: 2px;
  12802. -o-border-radius: 2px;
  12803. border-radius: 2px;
  12804. padding: 1px 1px 1px 1px;
  12805. border-width: 1px;
  12806. border-style: solid;
  12807. background-color: #fff;
  12808. }
  12809. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  12810. .x-tip-form-invalid-mc {
  12811. background-color: #fff;
  12812. }
  12813. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  12814. .x-nbr .x-tip-form-invalid {
  12815. padding: 0 !important;
  12816. border-width: 0 !important;
  12817. -webkit-border-radius: 0px;
  12818. -moz-border-radius: 0px;
  12819. -ms-border-radius: 0px;
  12820. -o-border-radius: 0px;
  12821. border-radius: 0px;
  12822. background-color: transparent !important;
  12823. box-shadow: none !important;
  12824. }
  12825. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  12826. .x-tip-form-invalid-frameInfo {
  12827. font-family: th-2-2-2-2-1-1-1-1-1-1-1-1;
  12828. }
  12829. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  12830. .x-tip-form-invalid-tl {
  12831. background-position: 0 -4px;
  12832. }
  12833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  12834. .x-tip-form-invalid-tr {
  12835. background-position: right -6px;
  12836. }
  12837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  12838. .x-tip-form-invalid-bl {
  12839. background-position: 0 -8px;
  12840. }
  12841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  12842. .x-tip-form-invalid-br {
  12843. background-position: right -10px;
  12844. }
  12845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  12846. .x-tip-form-invalid-ml {
  12847. background-position: 0 top;
  12848. }
  12849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  12850. .x-tip-form-invalid-mr {
  12851. background-position: right top;
  12852. }
  12853. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  12854. .x-tip-form-invalid-tc {
  12855. background-position: 0 0;
  12856. }
  12857. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  12858. .x-tip-form-invalid-bc {
  12859. background-position: 0 -2px;
  12860. }
  12861. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  12862. .x-tip-form-invalid-tr,
  12863. .x-tip-form-invalid-br,
  12864. .x-tip-form-invalid-mr {
  12865. padding-right: 2px;
  12866. }
  12867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  12868. .x-tip-form-invalid-tl,
  12869. .x-tip-form-invalid-bl,
  12870. .x-tip-form-invalid-ml {
  12871. padding-left: 2px;
  12872. }
  12873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  12874. .x-tip-form-invalid-tc {
  12875. height: 2px;
  12876. }
  12877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  12878. .x-tip-form-invalid-bc {
  12879. height: 2px;
  12880. }
  12881. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  12882. .x-tip-form-invalid-tl,
  12883. .x-tip-form-invalid-bl,
  12884. .x-tip-form-invalid-tr,
  12885. .x-tip-form-invalid-br,
  12886. .x-tip-form-invalid-tc,
  12887. .x-tip-form-invalid-bc,
  12888. .x-tip-form-invalid-ml,
  12889. .x-tip-form-invalid-mr {
  12890. background-image: url(images/tip/tip-form-invalid-corners.gif);
  12891. }
  12892. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  12893. .x-tip-form-invalid-ml,
  12894. .x-tip-form-invalid-mr {
  12895. background-image: url(images/tip/tip-form-invalid-sides.gif);
  12896. background-repeat: repeat-y;
  12897. }
  12898. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  12899. .x-tip-form-invalid-mc {
  12900. padding: 0px 0px 0px 0px;
  12901. }
  12902. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:318 */
  12903. .x-tip-form-invalid {
  12904. background-color: #fff;
  12905. border-color: #fff;
  12906. }
  12907. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:328 */
  12908. .x-tip-form-invalid .x-tool-img {
  12909. background-image: url(images/tools/tool-sprites-dark.png);
  12910. background-color: #fff;
  12911. }
  12912. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:343 */
  12913. .x-tip-header-form-invalid .x-tool-after-title {
  12914. margin: 0 0 0 6px;
  12915. }
  12916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:348 */
  12917. .x-tip-header-form-invalid .x-rtl.x-tool-after-title {
  12918. margin: 0 6px 0 0;
  12919. }
  12920. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:353 */
  12921. .x-tip-header-form-invalid .x-tool-before-title {
  12922. margin: 0 6px 0 0;
  12923. }
  12924. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:358 */
  12925. .x-tip-header-form-invalid .x-rtl.x-tool-before-title {
  12926. margin: 0 0 0 6px;
  12927. }
  12928. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:364 */
  12929. .x-tip-header-form-invalid {
  12930. padding: 8px 8px 0 8px;
  12931. }
  12932. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:368 */
  12933. .x-tip-header-title-form-invalid {
  12934. color: #111;
  12935. font-size: 18px;
  12936. font-weight: 600;
  12937. }
  12938. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:374 */
  12939. .x-tip-body-form-invalid {
  12940. padding: 3px 3px 3px 22px;
  12941. color: #111;
  12942. font-size: 12px;
  12943. font-weight: 400;
  12944. }
  12945. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:379 */
  12946. .x-tip-body-form-invalid a {
  12947. color: #111;
  12948. }
  12949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:390 */
  12950. .x-tip-form-invalid .x-tip-anchor {
  12951. border: 10px solid transparent;
  12952. _border-color: pink;
  12953. _filter: chroma(color=pink);
  12954. }
  12955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:467 */
  12956. .x-tip-form-invalid .x-tip-anchor-top {
  12957. border-top-width: 0;
  12958. border-bottom: 10px solid #fff;
  12959. top: -10px;
  12960. }
  12961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:473 */
  12962. .x-tip-form-invalid .x-tip-anchor-bottom {
  12963. border-bottom-width: 0;
  12964. border-top: 10px solid #fff;
  12965. bottom: -10px;
  12966. }
  12967. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:479 */
  12968. .x-tip-form-invalid .x-tip-anchor-left {
  12969. border-left-width: 0;
  12970. border-right: 10px solid #fff;
  12971. left: -10px;
  12972. }
  12973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/tip/Tip.scss:485 */
  12974. .x-tip-form-invalid .x-tip-anchor-right {
  12975. border-right-width: 0;
  12976. border-left: 10px solid #fff;
  12977. right: -10px;
  12978. }
  12979. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/tip/Tip.scss:25 */
  12980. .x-tip-body-form-invalid {
  12981. background: 1px 1px no-repeat;
  12982. background-image: url(images/form/exclamation.png);
  12983. }
  12984. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/tip/Tip.scss:28 */
  12985. .x-tip-body-form-invalid li {
  12986. margin-bottom: 4px;
  12987. }
  12988. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/tip/Tip.scss:30 */
  12989. .x-tip-body-form-invalid li.last {
  12990. margin-bottom: 0;
  12991. }
  12992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Color.scss:1 */
  12993. .x-color-picker {
  12994. width: 192px;
  12995. height: 120px;
  12996. background-color: #fff;
  12997. border-color: #fff;
  12998. border-width: 0;
  12999. border-style: solid;
  13000. }
  13001. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Color.scss:10 */
  13002. .x-color-picker-item {
  13003. width: 24px;
  13004. height: 24px;
  13005. border-width: 1px;
  13006. border-color: #fff;
  13007. border-style: solid;
  13008. background-color: #fff;
  13009. cursor: pointer;
  13010. padding: 2px;
  13011. }
  13012. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Color.scss:22 */
  13013. a.x-color-picker-item:hover {
  13014. border-color: #8bb8f3;
  13015. background-color: #d9d9d9;
  13016. }
  13017. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Color.scss:27 */
  13018. .x-color-picker-selected {
  13019. border-color: #8bb8f3;
  13020. background-color: #d9d9d9;
  13021. }
  13022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/picker/Color.scss:32 */
  13023. .x-color-picker-item-inner {
  13024. line-height: 16px;
  13025. border-color: #d0d0d0;
  13026. border-width: 1px;
  13027. border-style: solid;
  13028. }
  13029. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:1 */
  13030. .x-html-editor-tb .x-btn-icon-el {
  13031. color: #919191;
  13032. }
  13033. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:7 */
  13034. .x-html-editor-tb .x-edit-bold,
  13035. .x-menu-item div.x-edit-bold {
  13036. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13037. background: none;
  13038. }
  13039. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13040. .x-html-editor-tb .x-edit-bold:before,
  13041. .x-menu-item div.x-edit-bold:before {
  13042. content: '\f032';
  13043. }
  13044. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:18 */
  13045. .x-html-editor-tb .x-edit-italic,
  13046. .x-menu-item div.x-edit-italic {
  13047. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13048. background: none;
  13049. }
  13050. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13051. .x-html-editor-tb .x-edit-italic:before,
  13052. .x-menu-item div.x-edit-italic:before {
  13053. content: '\f033';
  13054. }
  13055. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:29 */
  13056. .x-html-editor-tb .x-edit-underline,
  13057. .x-menu-item div.x-edit-underline {
  13058. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13059. background: none;
  13060. }
  13061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13062. .x-html-editor-tb .x-edit-underline:before,
  13063. .x-menu-item div.x-edit-underline:before {
  13064. content: '\f0cd';
  13065. }
  13066. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:40 */
  13067. .x-html-editor-tb .x-edit-forecolor,
  13068. .x-menu-item div.x-edit-forecolor {
  13069. font: 16px/1 ExtJS;
  13070. background: none;
  13071. }
  13072. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13073. .x-html-editor-tb .x-edit-forecolor:before,
  13074. .x-menu-item div.x-edit-forecolor:before {
  13075. content: "\e60e";
  13076. }
  13077. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:51 */
  13078. .x-html-editor-tb .x-edit-backcolor,
  13079. .x-menu-item div.x-edit-backcolor {
  13080. font: 16px/1 ExtJS;
  13081. background: none;
  13082. }
  13083. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13084. .x-html-editor-tb .x-edit-backcolor:before,
  13085. .x-menu-item div.x-edit-backcolor:before {
  13086. content: "\e60d";
  13087. }
  13088. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:62 */
  13089. .x-html-editor-tb .x-edit-justifyleft,
  13090. .x-menu-item div.x-edit-justifyleft {
  13091. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13092. background: none;
  13093. }
  13094. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13095. .x-html-editor-tb .x-edit-justifyleft:before,
  13096. .x-menu-item div.x-edit-justifyleft:before {
  13097. content: '\f036';
  13098. }
  13099. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:73 */
  13100. .x-html-editor-tb .x-edit-justifycenter,
  13101. .x-menu-item div.x-edit-justifycenter {
  13102. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13103. background: none;
  13104. }
  13105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13106. .x-html-editor-tb .x-edit-justifycenter:before,
  13107. .x-menu-item div.x-edit-justifycenter:before {
  13108. content: '\f037';
  13109. }
  13110. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:84 */
  13111. .x-html-editor-tb .x-edit-justifyright,
  13112. .x-menu-item div.x-edit-justifyright {
  13113. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13114. background: none;
  13115. }
  13116. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13117. .x-html-editor-tb .x-edit-justifyright:before,
  13118. .x-menu-item div.x-edit-justifyright:before {
  13119. content: '\f038';
  13120. }
  13121. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:95 */
  13122. .x-html-editor-tb .x-edit-insertorderedlist,
  13123. .x-menu-item div.x-edit-insertorderedlist {
  13124. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13125. background: none;
  13126. }
  13127. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13128. .x-html-editor-tb .x-edit-insertorderedlist:before,
  13129. .x-menu-item div.x-edit-insertorderedlist:before {
  13130. content: '\f0cb';
  13131. }
  13132. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:106 */
  13133. .x-html-editor-tb .x-edit-insertunorderedlist,
  13134. .x-menu-item div.x-edit-insertunorderedlist {
  13135. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13136. background: none;
  13137. }
  13138. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13139. .x-html-editor-tb .x-edit-insertunorderedlist:before,
  13140. .x-menu-item div.x-edit-insertunorderedlist:before {
  13141. content: '\f0ca';
  13142. }
  13143. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:117 */
  13144. .x-html-editor-tb .x-edit-increasefontsize,
  13145. .x-menu-item div.x-edit-increasefontsize {
  13146. font: 16px/1 ExtJS;
  13147. background: none;
  13148. }
  13149. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13150. .x-html-editor-tb .x-edit-increasefontsize:before,
  13151. .x-menu-item div.x-edit-increasefontsize:before {
  13152. content: "\e610";
  13153. }
  13154. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:128 */
  13155. .x-html-editor-tb .x-edit-decreasefontsize,
  13156. .x-menu-item div.x-edit-decreasefontsize {
  13157. font: 16px/1 ExtJS;
  13158. background: none;
  13159. }
  13160. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13161. .x-html-editor-tb .x-edit-decreasefontsize:before,
  13162. .x-menu-item div.x-edit-decreasefontsize:before {
  13163. content: "\e60f";
  13164. }
  13165. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:139 */
  13166. .x-html-editor-tb .x-edit-sourceedit,
  13167. .x-menu-item div.x-edit-sourceedit {
  13168. font: 16px/1 ExtJS;
  13169. background: none;
  13170. }
  13171. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13172. .x-html-editor-tb .x-edit-sourceedit:before,
  13173. .x-menu-item div.x-edit-sourceedit:before {
  13174. content: "\e604";
  13175. }
  13176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:150 */
  13177. .x-html-editor-tb .x-edit-createlink,
  13178. .x-menu-item div.x-edit-createlink {
  13179. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13180. background: none;
  13181. }
  13182. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13183. .x-html-editor-tb .x-edit-createlink:before,
  13184. .x-menu-item div.x-edit-createlink:before {
  13185. content: '\f0c1';
  13186. }
  13187. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:161 */
  13188. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  13189. padding: 5px;
  13190. padding-bottom: 1px;
  13191. }
  13192. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:166 */
  13193. .x-html-editor-tb .x-font-select {
  13194. font-size: 13px;
  13195. font-family: inherit;
  13196. }
  13197. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:171 */
  13198. .x-html-editor-wrap textarea {
  13199. font: 400 13px Roboto, sans-serif;
  13200. background-color: #fff;
  13201. resize: none;
  13202. }
  13203. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/form/field/HtmlEditor.scss:177 */
  13204. .x-htmleditor-iframe {
  13205. background-color: #fff;
  13206. }
  13207. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:320 */
  13208. .x-form-text-default.x-tagfield {
  13209. padding: 0 8px;
  13210. }
  13211. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:324 */
  13212. .x-form-text-default .x-tagfield-input {
  13213. margin: 8px 8px 8px 0;
  13214. }
  13215. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:328 */
  13216. .x-form-text-default .x-tagfield-input-field {
  13217. height: 24px;
  13218. line-height: 24px;
  13219. }
  13220. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:333 */
  13221. .x-form-text-default .x-tagfield-item {
  13222. -webkit-border-radius: 3px 3px 3px 3px;
  13223. -moz-border-radius: 3px 3px 3px 3px;
  13224. -ms-border-radius: 3px 3px 3px 3px;
  13225. -o-border-radius: 3px 3px 3px 3px;
  13226. border-radius: 3px 3px 3px 3px;
  13227. background-color: #e0e0e0;
  13228. border: 1px solid #e0e0e0;
  13229. padding: 0 26px 0 8px;
  13230. margin: 8px 8px 8px 0;
  13231. color: #111;
  13232. color: var(--color);
  13233. line-height: 22px;
  13234. }
  13235. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:344 */
  13236. .x-form-text-default .x-tagfield-item:hover {
  13237. background-color: #2196f3;
  13238. background-color: var(--base-color);
  13239. border-color: #2196f3;
  13240. border-color: var(--base-color);
  13241. color: #fff;
  13242. }
  13243. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:352 */
  13244. .x-form-text-default .x-tagfield-item.x-tagfield-item-selected {
  13245. background-color: #64b5f6;
  13246. background-color: var(--base-highlight-color);
  13247. border-color: #64b5f6;
  13248. border-color: var(--base-highlight-color);
  13249. color: #fff;
  13250. }
  13251. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:361 */
  13252. .x-form-text-default .x-tagfield-item.x-rtl {
  13253. padding: 0 8px 0 26px;
  13254. }
  13255. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:367 */
  13256. .x-form-text-default .x-tagfield-item-close {
  13257. width: 12px;
  13258. height: 12px;
  13259. top: 0px;
  13260. right: 8px;
  13261. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  13262. opacity: 0.85;
  13263. font: 12px/1 'Material Icons', 'Font Awesome 5 Free';
  13264. color: #919191;
  13265. }
  13266. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13267. .x-form-text-default .x-tagfield-item-close:before {
  13268. content: '\f00d';
  13269. }
  13270. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:384 */
  13271. .x-form-text-default .x-tagfield-item-close:hover {
  13272. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=93)";
  13273. opacity: 0.93;
  13274. color: #fff;
  13275. }
  13276. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:395 */
  13277. .x-form-text-default .x-tagfield-item-close:active {
  13278. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  13279. opacity: 1;
  13280. }
  13281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:405 */
  13282. .x-form-text-default .x-tagfield-item-close.x-rtl {
  13283. right: auto;
  13284. left: 8px;
  13285. }
  13286. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:412 */
  13287. .x-form-text-default .x-tagfield-item-selected .x-tagfield-item-close {
  13288. color: #fff;
  13289. }
  13290. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/form/field/Tag.scss:416 */
  13291. .x-form-text-default .x-tagfield-item-selected .x-tagfield-item-close:hover {
  13292. color: #fff;
  13293. }
  13294. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:5 */
  13295. .x-grid-view,
  13296. .x-tree-view {
  13297. z-index: 1;
  13298. }
  13299. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:11 */
  13300. .x-theme-row-height-el {
  13301. height: 48px;
  13302. }
  13303. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:15 */
  13304. .x-grid-body {
  13305. background: #fff;
  13306. background: var(--reverse-color);
  13307. border-width: 2px 1px 1px;
  13308. border-style: solid;
  13309. border-color: #d0d0d0;
  13310. }
  13311. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:22 */
  13312. .x-grid-empty {
  13313. padding: 16px 8px;
  13314. color: grey;
  13315. background-color: #fff;
  13316. background-color: var(--reverse-color);
  13317. font: 400 13px Roboto, sans-serif;
  13318. }
  13319. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:30 */
  13320. .x-grid-item {
  13321. color: #111;
  13322. color: var(--color);
  13323. font: 400 13px/16px Roboto, sans-serif;
  13324. background-color: #fff;
  13325. background-color: var(--reverse-color);
  13326. }
  13327. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:36 */
  13328. .x-grid-item-alt {
  13329. background-color: #fff;
  13330. background-color: var(--reverse-color);
  13331. }
  13332. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:40 */
  13333. .x-grid-item-over {
  13334. color: #111;
  13335. color: var(--color);
  13336. background-color: #eee;
  13337. background-color: var(--hovered-background-color);
  13338. }
  13339. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:47 */
  13340. .x-grid-item-focused {
  13341. outline: 0;
  13342. }
  13343. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:51 */
  13344. .x-grid-item-focused .x-grid-cell-inner {
  13345. z-index: 2;
  13346. }
  13347. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:57 */
  13348. .x-keyboard-mode .x-grid-item-focused {
  13349. color: #111;
  13350. color: var(--color);
  13351. }
  13352. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:60 */
  13353. .x-keyboard-mode .x-grid-item-focused .x-grid-cell-inner:before {
  13354. content: "";
  13355. position: absolute;
  13356. z-index: -1;
  13357. top: 0px;
  13358. right: 0px;
  13359. bottom: 0px;
  13360. left: 0px;
  13361. pointer-events: none;
  13362. border: 0px solid #2196f3;
  13363. border: 0px solid var(--base-color);
  13364. }
  13365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:83 */
  13366. .x-grid-item-selected {
  13367. color: #111;
  13368. color: var(--color);
  13369. background-color: #e0e0e0;
  13370. background-color: var(--selected-background-color);
  13371. }
  13372. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:89 */
  13373. .x-grid-with-row-lines .x-grid-item {
  13374. border-style: solid;
  13375. border-width: 1px 0 0;
  13376. border-color: #e2e2e2;
  13377. border-color: var(--divider-color);
  13378. }
  13379. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:95 */
  13380. .x-grid-with-row-lines .x-grid-item:first-child {
  13381. border-top-color: #fff;
  13382. border-top-color: var(--reverse-color);
  13383. }
  13384. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:101 */
  13385. .x-grid-with-row-lines .x-grid-item.x-grid-item-over {
  13386. border-style: solid;
  13387. border-color: #e2e2e2;
  13388. }
  13389. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:106 */
  13390. .x-grid-with-row-lines .x-grid-item-over + .x-grid-item {
  13391. border-top-style: solid;
  13392. border-top-color: #e2e2e2;
  13393. }
  13394. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:111 */
  13395. .x-grid-with-row-lines .x-grid-item.x-grid-item-selected {
  13396. border-style: solid;
  13397. border-color: #d5d5d5;
  13398. }
  13399. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:116 */
  13400. .x-grid-with-row-lines .x-grid-item-selected + .x-grid-item {
  13401. border-top-style: solid;
  13402. border-top-color: #d5d5d5;
  13403. }
  13404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:121 */
  13405. .x-grid-with-row-lines .x-grid-item:last-child {
  13406. border-bottom-width: 1px;
  13407. }
  13408. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:131 */
  13409. .x-ie8 .x-grid-with-row-lines .x-grid-item {
  13410. border-width: 1px 0;
  13411. margin-top: -1px;
  13412. }
  13413. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:136 */
  13414. .x-ie8 .x-grid-with-row-lines .x-grid-item:first-child {
  13415. margin-top: 0;
  13416. }
  13417. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:142 */
  13418. .x-grid-cell-inner {
  13419. position: relative;
  13420. z-index: 1;
  13421. text-overflow: ellipsis;
  13422. padding: 16px 8px;
  13423. }
  13424. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:162 */
  13425. .x-grid-cell-special {
  13426. border-color: #e2e2e2;
  13427. border-color: var(--divider-color);
  13428. border-style: solid;
  13429. border-right-width: 1px;
  13430. }
  13431. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:205 */
  13432. .x-rtl.x-grid-cell-special {
  13433. border-right-width: 0;
  13434. border-left-width: 1px;
  13435. }
  13436. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:214 */
  13437. .x-grid-dirty-cell > .x-grid-cell-inner:after {
  13438. content: "\e602";
  13439. font: 14px/1 ExtJS;
  13440. color: #cf4c35;
  13441. position: absolute;
  13442. top: 0;
  13443. left: 0;
  13444. }
  13445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:229 */
  13446. .x-rtl.x-grid-dirty-cell > .x-grid-cell-inner:after {
  13447. content: "\e603";
  13448. font: 14px/1 ExtJS;
  13449. right: 0;
  13450. }
  13451. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:242 */
  13452. .x-grid-row .x-grid-cell-selected {
  13453. color: #111;
  13454. color: var(--color);
  13455. background-color: #e0e0e0;
  13456. background-color: var(--selected-background-color);
  13457. }
  13458. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:249 */
  13459. .x-grid-with-col-lines .x-grid-cell {
  13460. border-style: solid;
  13461. border-color: #e2e2e2;
  13462. border-color: var(--divider-color);
  13463. border-width: 0 1px 0 0;
  13464. }
  13465. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:255 */
  13466. .x-grid-with-col-lines .x-grid-item-over .x-grid-cell {
  13467. border-color: #e2e2e2;
  13468. border-style: solid;
  13469. }
  13470. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:260 */
  13471. .x-grid-with-col-lines .x-grid-item-selected .x-grid-cell {
  13472. border-color: #d5d5d5;
  13473. border-style: solid;
  13474. }
  13475. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:268 */
  13476. .x-rtl.x-grid-with-col-lines .x-grid-cell {
  13477. border-width: 0 0 0 1px;
  13478. }
  13479. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/Table.scss:273 */
  13480. .x-grid-resize-marker {
  13481. width: 1px;
  13482. background-color: #0f0f0f;
  13483. }
  13484. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/DropZone.scss:1 */
  13485. .x-grid-drop-indicator {
  13486. position: absolute;
  13487. height: 1px;
  13488. line-height: 0px;
  13489. background-color: #77bc71;
  13490. overflow: visible;
  13491. pointer-events: none;
  13492. }
  13493. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/DropZone.scss:9 */
  13494. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  13495. position: absolute;
  13496. top: -8px;
  13497. left: -12px;
  13498. background-image: url(images/grid/dd-insert-arrow-right.png);
  13499. height: 16px;
  13500. width: 16px;
  13501. }
  13502. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/view/DropZone.scss:18 */
  13503. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  13504. position: absolute;
  13505. top: -8px;
  13506. right: -11px;
  13507. background-image: url(images/grid/dd-insert-arrow-left.png);
  13508. height: 16px;
  13509. width: 16px;
  13510. }
  13511. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/DropZone.scss:1 */
  13512. .x-col-move-top,
  13513. .x-col-move-bottom {
  13514. width: 9px;
  13515. height: 9px;
  13516. }
  13517. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/DropZone.scss:7 */
  13518. .x-col-move-top {
  13519. background-image: url(images/grid/col-move-top.png);
  13520. }
  13521. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/DropZone.scss:11 */
  13522. .x-col-move-bottom {
  13523. background-image: url(images/grid/col-move-bottom.png);
  13524. }
  13525. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:1 */
  13526. .x-grid-header-ct {
  13527. border: 1px solid #d0d0d0;
  13528. border-bottom-color: #fff;
  13529. border-bottom-color: var(--reverse-color);
  13530. background-color: #fff;
  13531. background-color: var(--reverse-color);
  13532. }
  13533. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:14 */
  13534. .x-accordion-item .x-grid-header-ct {
  13535. border-width: 0 0 1px !important;
  13536. }
  13537. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:21 */
  13538. .x-grid-header-ct-hidden {
  13539. border-top: 0 !important;
  13540. border-bottom: 0 !important;
  13541. }
  13542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:31 */
  13543. .x-grid-body {
  13544. border-top-color: #e2e2e2;
  13545. }
  13546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:35 */
  13547. .x-hmenu-sort-asc {
  13548. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13549. line-height: 16px;
  13550. }
  13551. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13552. .x-hmenu-sort-asc:before {
  13553. content: 'arrow_upward';
  13554. }
  13555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:46 */
  13556. .x-hmenu-sort-desc {
  13557. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13558. line-height: 16px;
  13559. }
  13560. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13561. .x-hmenu-sort-desc:before {
  13562. content: 'arrow_downward';
  13563. }
  13564. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/header/Container.scss:57 */
  13565. .x-cols-icon {
  13566. font: 16px/16px ExtJS;
  13567. }
  13568. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13569. .x-cols-icon:before {
  13570. content: "\e601";
  13571. }
  13572. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:1 */
  13573. .x-column-header {
  13574. border-right: 1px solid #e2e2e2;
  13575. color: #111;
  13576. color: var(--color);
  13577. font: 400 13px/16px Roboto, sans-serif;
  13578. outline: 0;
  13579. background-color: #fff;
  13580. background-color: var(--reverse-color);
  13581. }
  13582. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:21 */
  13583. .x-rtl.x-column-header {
  13584. border-right: 0 none;
  13585. border-left: 1px solid #e2e2e2;
  13586. }
  13587. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:27 */
  13588. .x-group-sub-header {
  13589. background: transparent;
  13590. border-top: 1px solid #e2e2e2;
  13591. }
  13592. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:32 */
  13593. .x-group-sub-header .x-column-header-inner {
  13594. padding: 15px 8px 16px 8px;
  13595. }
  13596. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:37 */
  13597. .x-column-header-inner {
  13598. padding: 16px 8px;
  13599. }
  13600. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:41 */
  13601. .x-column-header-inner-empty {
  13602. text-overflow: clip;
  13603. }
  13604. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:50 */
  13605. .x-keyboard-mode .x-column-header.x-column-header-focus {
  13606. color: #111;
  13607. color: var(--color);
  13608. }
  13609. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:51 */
  13610. .x-keyboard-mode .x-column-header.x-column-header-focus .x-column-header-inner:after {
  13611. content: "";
  13612. position: absolute;
  13613. z-index: 5;
  13614. top: 0px;
  13615. right: 0px;
  13616. bottom: 0px;
  13617. left: 0px;
  13618. border: 0px solid #fff;
  13619. border: 0px solid var(--reverse-color);
  13620. pointer-events: none;
  13621. }
  13622. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:65 */
  13623. .x-keyboard-mode .x-column-header.x-column-header-focus.x-group-sub-header .x-column-header-inner:before {
  13624. bottom: 0px;
  13625. }
  13626. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:79 */
  13627. .x-column-header-over {
  13628. background-image: none;
  13629. background-color: #fff;
  13630. background-color: var(--reverse-color);
  13631. }
  13632. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:83 */
  13633. .x-column-header-sort-ASC,
  13634. .x-column-header-sort-DESC {
  13635. background-image: none;
  13636. background-color: #fff;
  13637. background-color: var(--reverse-color);
  13638. }
  13639. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:111 */
  13640. .x-column-header-open {
  13641. background-color: #fff;
  13642. background-color: var(--reverse-color);
  13643. }
  13644. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:114 */
  13645. .x-column-header-open .x-column-header-trigger {
  13646. background-color: #fff;
  13647. background-color: var(--reverse-color);
  13648. }
  13649. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:119 */
  13650. .x-column-header-over .x-column-header-trigger,
  13651. .x-column-header-open .x-column-header-trigger {
  13652. width: 24px;
  13653. cursor: pointer;
  13654. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13655. color: #919191;
  13656. }
  13657. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  13658. .x-column-header-over .x-column-header-trigger:before,
  13659. .x-column-header-open .x-column-header-trigger:before {
  13660. content: '\f0d7';
  13661. }
  13662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:127 */
  13663. .x-column-header-over .x-column-header-trigger:before,
  13664. .x-column-header-open .x-column-header-trigger:before {
  13665. top: 50%;
  13666. margin-top: -8px;
  13667. text-align: center;
  13668. position: relative;
  13669. display: block;
  13670. }
  13671. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:141 */
  13672. .x-rtl.x-column-header-trigger {
  13673. background-position: center center;
  13674. }
  13675. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:151 */
  13676. .x-column-header-align-right .x-column-header-text {
  13677. margin-right: 20px;
  13678. }
  13679. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:156 */
  13680. .x-column-header-align-right .x-rtl.x-column-header-text {
  13681. margin-right: 0;
  13682. margin-left: 20px;
  13683. }
  13684. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:165 */
  13685. .x-column-header-sort-ASC .x-column-header-text-inner,
  13686. .x-column-header-sort-DESC .x-column-header-text-inner {
  13687. background-position: right center;
  13688. }
  13689. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:167 */
  13690. .x-column-header-sort-ASC .x-column-header-text-inner:after,
  13691. .x-column-header-sort-DESC .x-column-header-text-inner:after {
  13692. display: inline-block;
  13693. text-align: center;
  13694. margin-left: 5px;
  13695. width: 14px;
  13696. }
  13697. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:183 */
  13698. .x-column-header-sort-ASC .x-rtl.x-column-header-text-inner,
  13699. .x-column-header-sort-DESC .x-rtl.x-column-header-text-inner {
  13700. background-position: 0 center;
  13701. }
  13702. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:185 */
  13703. .x-column-header-sort-ASC .x-rtl.x-column-header-text-inner:after,
  13704. .x-column-header-sort-DESC .x-rtl.x-column-header-text-inner:after {
  13705. margin-left: 0;
  13706. margin-right: 5px;
  13707. }
  13708. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:139 */
  13709. .x-column-header-sort-ASC .x-column-header-text-inner:after {
  13710. content: 'arrow_upward';
  13711. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13712. line-height: 1;
  13713. color: #919191;
  13714. }
  13715. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:139 */
  13716. .x-column-header-sort-DESC .x-column-header-text-inner:after {
  13717. content: 'arrow_downward';
  13718. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13719. line-height: 1;
  13720. color: #919191;
  13721. }
  13722. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:224 */
  13723. .x-no-header-borders .x-column-header {
  13724. border: 0 none;
  13725. }
  13726. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Column.scss:227 */
  13727. .x-no-header-borders .x-column-header .x-column-header-inner {
  13728. padding-top: 16px;
  13729. }
  13730. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Action.scss:1 */
  13731. .x-grid-cell-inner-action-col {
  13732. padding: 15px 4px 15px 4px;
  13733. }
  13734. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Action.scss:14 */
  13735. .x-action-col-cell .x-item-disabled {
  13736. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  13737. opacity: 0.3;
  13738. }
  13739. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Action.scss:18 */
  13740. .x-action-col-icon {
  13741. color: #919191;
  13742. font-size: 18px;
  13743. height: 18px;
  13744. width: 18px;
  13745. cursor: pointer;
  13746. }
  13747. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Check.scss:2 */
  13748. .x-column-header-checkbox .x-column-header-inner,
  13749. .x-grid-checkcolumn-cell-inner {
  13750. padding: 15px 4px 15px 4px;
  13751. text-overflow: clip;
  13752. }
  13753. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Check.scss:20 */
  13754. .x-column-header-checkbox {
  13755. border-color: #e2e2e2;
  13756. }
  13757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Check.scss:22 */
  13758. .x-column-header-checkbox .x-column-header-text {
  13759. overflow: visible;
  13760. }
  13761. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:139 */
  13762. .x-column-header-checkbox .x-column-header-checkbox:after,
  13763. .x-grid-checkcolumn:after {
  13764. content: 'check_box_outline_blank';
  13765. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13766. line-height: 1;
  13767. color: rgba(17, 17, 17, 0.54);
  13768. color: var(--highlight-color);
  13769. }
  13770. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Check.scss:42 */
  13771. .x-item-disabled .x-column-header-checkbox .x-column-header-checkbox,
  13772. .x-item-disabled .x-grid-checkcolumn {
  13773. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  13774. opacity: 0.3;
  13775. }
  13776. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:139 */
  13777. .x-grid-hd-checker-on .x-column-header-checkbox:after,
  13778. .x-grid-checkcolumn-checked:after {
  13779. content: 'check_box';
  13780. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13781. line-height: 1;
  13782. color: rgba(17, 17, 17, 0.54);
  13783. color: var(--highlight-color);
  13784. }
  13785. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:139 */
  13786. .x-grid-item-selected .x-selmodel-column .x-grid-checkcolumn:after {
  13787. content: 'check_box';
  13788. font-family: 'Material Icons', 'Font Awesome 5 Free';
  13789. line-height: 1;
  13790. color: rgba(17, 17, 17, 0.54);
  13791. color: var(--highlight-color);
  13792. }
  13793. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Check.scss:79 */
  13794. .x-selmodel-checkbox .x-grid-checkcolumn,
  13795. .x-selmodel-column .x-grid-checkcolumn {
  13796. pointer-events: none;
  13797. }
  13798. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/RowNumberer.scss:1 */
  13799. .x-grid-cell-row-numberer {
  13800. background-color: #fff;
  13801. background-color: var(--reverse-color);
  13802. }
  13803. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/RowNumberer.scss:10 */
  13804. .x-grid-cell-inner-row-numberer {
  13805. padding: 16px 5px 16px 3px;
  13806. }
  13807. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  13808. .x-btn-grid-cell-small {
  13809. -webkit-border-radius: 0;
  13810. -moz-border-radius: 0;
  13811. -ms-border-radius: 0;
  13812. -o-border-radius: 0;
  13813. border-radius: 0;
  13814. padding: 8px 16px 8px 16px;
  13815. border-width: 0px;
  13816. border-style: solid;
  13817. background-color: transparent;
  13818. }
  13819. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  13820. .x-btn-grid-cell-small-mc {
  13821. background-color: transparent;
  13822. }
  13823. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  13824. .x-nbr .x-btn-grid-cell-small {
  13825. padding: 0 !important;
  13826. border-width: 0 !important;
  13827. -webkit-border-radius: 0px;
  13828. -moz-border-radius: 0px;
  13829. -ms-border-radius: 0px;
  13830. -o-border-radius: 0px;
  13831. border-radius: 0px;
  13832. background-color: transparent !important;
  13833. box-shadow: none !important;
  13834. }
  13835. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  13836. .x-btn-grid-cell-small-frameInfo {
  13837. font-family: th-0-0-0-0-0-0-0-0-8-16-8-16;
  13838. }
  13839. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  13840. .x-btn-grid-cell-small-tl {
  13841. background-position: 0 0px;
  13842. }
  13843. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  13844. .x-btn-grid-cell-small-tr {
  13845. background-position: right 0px;
  13846. }
  13847. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  13848. .x-btn-grid-cell-small-bl {
  13849. background-position: 0 0px;
  13850. }
  13851. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  13852. .x-btn-grid-cell-small-br {
  13853. background-position: right 0px;
  13854. }
  13855. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  13856. .x-btn-grid-cell-small-ml {
  13857. background-position: 0 top;
  13858. }
  13859. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  13860. .x-btn-grid-cell-small-mr {
  13861. background-position: right top;
  13862. }
  13863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  13864. .x-btn-grid-cell-small-tc {
  13865. background-position: 0 0;
  13866. }
  13867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  13868. .x-btn-grid-cell-small-bc {
  13869. background-position: 0 0px;
  13870. }
  13871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  13872. .x-btn-grid-cell-small-tr,
  13873. .x-btn-grid-cell-small-br,
  13874. .x-btn-grid-cell-small-mr {
  13875. padding-right: 0px;
  13876. }
  13877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  13878. .x-btn-grid-cell-small-tl,
  13879. .x-btn-grid-cell-small-bl,
  13880. .x-btn-grid-cell-small-ml {
  13881. padding-left: 0px;
  13882. }
  13883. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  13884. .x-btn-grid-cell-small-tc {
  13885. height: 0px;
  13886. }
  13887. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  13888. .x-btn-grid-cell-small-bc {
  13889. height: 0px;
  13890. }
  13891. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  13892. .x-btn-grid-cell-small-mc {
  13893. padding: 8px 16px 8px 16px;
  13894. }
  13895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2463 */
  13896. .x-btn-grid-cell-small {
  13897. border-color: #5da8e5;
  13898. }
  13899. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2470 */
  13900. .x-btn-button-grid-cell-small {
  13901. min-height: 16px;
  13902. }
  13903. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2475 */
  13904. .x-ie9m .x-btn-button-grid-cell-small {
  13905. min-height: auto;
  13906. height: 16px;
  13907. }
  13908. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2482 */
  13909. .x-btn-inner-grid-cell-small {
  13910. font: 600 13px/15px Roboto, sans-serif;
  13911. color: #2196f3;
  13912. color: var(--base-color);
  13913. padding: 0 5px;
  13914. max-width: 100%;
  13915. }
  13916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2502 */
  13917. .x-ie9 .x-btn-icon-right > .x-btn-inner-grid-cell-small,
  13918. .x-ie9 .x-btn-icon-left > .x-btn-inner-grid-cell-small {
  13919. max-width: calc(100% - 16px);
  13920. }
  13921. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2510 */
  13922. .x-safari8m .x-btn-icon-right > .x-btn-inner-grid-cell-small,
  13923. .x-safari8m .x-btn-icon-left > .x-btn-inner-grid-cell-small {
  13924. max-width: calc(100% - 15px);
  13925. }
  13926. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2516 */
  13927. .x-ie10p .x-btn-inner-grid-cell-small {
  13928. max-width: none;
  13929. }
  13930. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2521 */
  13931. .x-btn-icon-el-grid-cell-small {
  13932. font-size: 16px;
  13933. height: 16px;
  13934. color: #2196f3;
  13935. color: var(--base-color);
  13936. line-height: 16px;
  13937. }
  13938. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2527 */
  13939. .x-btn-icon-left > .x-btn-icon-el-grid-cell-small,
  13940. .x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
  13941. width: 16px;
  13942. }
  13943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2532 */
  13944. .x-btn-icon-top > .x-btn-icon-el-grid-cell-small,
  13945. .x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small {
  13946. min-width: 16px;
  13947. }
  13948. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2554 */
  13949. .x-ie8 .x-btn-icon-el-grid-cell-small.x-btn-glyph {
  13950. color: #2196f3;
  13951. }
  13952. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2561 */
  13953. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small {
  13954. margin-right: 3px;
  13955. }
  13956. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2565 */
  13957. .x-btn-text.x-btn-icon-left > .x-btn-icon-el-grid-cell-small.x-rtl {
  13958. margin-right: 0;
  13959. margin-left: 3px;
  13960. }
  13961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2572 */
  13962. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
  13963. margin-left: 3px;
  13964. }
  13965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2576 */
  13966. .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small.x-rtl {
  13967. margin-left: 0;
  13968. margin-right: 3px;
  13969. }
  13970. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2583 */
  13971. .x-btn-text.x-btn-icon-top > .x-btn-icon-el-grid-cell-small {
  13972. margin-bottom: 8px;
  13973. }
  13974. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2587 */
  13975. .x-btn-text.x-btn-icon-bottom > .x-btn-icon-el-grid-cell-small {
  13976. margin-top: 8px;
  13977. }
  13978. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2593 */
  13979. .x-btn-arrow-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small {
  13980. padding-right: 8px;
  13981. }
  13982. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2596 */
  13983. .x-btn-arrow-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
  13984. margin-right: 5px;
  13985. }
  13986. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2603 */
  13987. .x-btn-arrow-bottom > .x-btn-button-grid-cell-small,
  13988. .x-btn-split-bottom > .x-btn-button-grid-cell-small {
  13989. padding-bottom: 8px;
  13990. }
  13991. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2609 */
  13992. .x-btn-wrap-grid-cell-small.x-btn-arrow-right:after {
  13993. width: 8px;
  13994. content: 'arrow_drop_down';
  13995. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  13996. color: #2196f3;
  13997. color: var(--base-color);
  13998. }
  13999. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2636 */
  14000. .x-btn-wrap-grid-cell-small.x-btn-arrow-bottom:after {
  14001. height: 8px;
  14002. content: 'arrow_drop_down';
  14003. font: 16px/8px 'Material Icons', 'Font Awesome 5 Free';
  14004. color: #2196f3;
  14005. color: var(--base-color);
  14006. }
  14007. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2663 */
  14008. .x-btn-wrap-grid-cell-small.x-btn-split-right > .x-btn-button {
  14009. padding-right: 16px;
  14010. }
  14011. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2666 */
  14012. .x-btn-wrap-grid-cell-small.x-btn-split-right > .x-btn-button.x-rtl {
  14013. padding-right: 0;
  14014. padding-left: 16px;
  14015. }
  14016. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2671 */
  14017. .x-btn-wrap-grid-cell-small.x-btn-split-right > .x-btn-button:after {
  14018. border-right: 1px solid #2196f3;
  14019. border-right: 1px solid var(--base-color);
  14020. }
  14021. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2676 */
  14022. .x-btn-wrap-grid-cell-small.x-btn-split-right:after {
  14023. width: 14px;
  14024. content: 'arrow_drop_down';
  14025. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  14026. color: #2196f3;
  14027. color: var(--base-color);
  14028. padding-left: 16px;
  14029. }
  14030. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2692 */
  14031. .x-btn-wrap-grid-cell-small.x-rtl.x-btn-split-right:after {
  14032. padding-left: 0;
  14033. padding-right: 16px;
  14034. }
  14035. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2702 */
  14036. .x-btn-wrap-grid-cell-small.x-btn-split-bottom {
  14037. margin-bottom: -8px;
  14038. }
  14039. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2704 */
  14040. .x-btn-wrap-grid-cell-small.x-btn-split-bottom > .x-btn-button:after {
  14041. border-bottom: 1px solid #2196f3;
  14042. border-bottom: 1px solid var(--base-color);
  14043. }
  14044. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2715 */
  14045. .x-btn-wrap-grid-cell-small.x-btn-split-bottom:after {
  14046. height: 14px;
  14047. content: 'arrow_drop_down';
  14048. font: 16px/14px 'Material Icons', 'Font Awesome 5 Free';
  14049. color: #2196f3;
  14050. color: var(--base-color);
  14051. }
  14052. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2748 */
  14053. .x-btn-split-right > .x-btn-icon.x-btn-no-text.x-btn-button-grid-cell-small {
  14054. padding-right: 8px;
  14055. }
  14056. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2751 */
  14057. .x-btn-split-right > .x-btn-text.x-btn-icon-right > .x-btn-icon-el-grid-cell-small {
  14058. margin-right: 5px;
  14059. }
  14060. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2757 */
  14061. .x-keyboard-mode .x-btn-focus.x-btn-grid-cell-small {
  14062. background-image: none;
  14063. background-color: transparent;
  14064. }
  14065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2793 */
  14066. .x-btn-grid-cell-small .x-btn-arrow-el {
  14067. position: absolute;
  14068. top: 0;
  14069. right: 0;
  14070. height: 100%;
  14071. width: 30px;
  14072. pointer-events: none;
  14073. }
  14074. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2802 */
  14075. .x-btn-grid-cell-small .x-btn-arrow-el.x-rtl {
  14076. right: inherit;
  14077. left: 0;
  14078. }
  14079. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2817 */
  14080. .x-btn-over.x-btn-grid-cell-small {
  14081. border-color: #569bd2;
  14082. background-image: none;
  14083. background-color: transparent;
  14084. }
  14085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2874 */
  14086. .x-btn.x-btn-menu-active.x-btn-grid-cell-small,
  14087. .x-btn.x-btn-pressed.x-btn-grid-cell-small {
  14088. border-color: #467eac;
  14089. background-image: none;
  14090. background-color: transparent;
  14091. }
  14092. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2933 */
  14093. .x-btn.x-btn-disabled.x-btn-grid-cell-small {
  14094. background-image: none;
  14095. background-color: transparent;
  14096. }
  14097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2966 */
  14098. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-tl,
  14099. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-bl,
  14100. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-tr,
  14101. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-br,
  14102. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-tc,
  14103. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-bc {
  14104. background-image: url(images/btn/btn-grid-cell-small-focus-corners.gif);
  14105. }
  14106. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2974 */
  14107. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-ml,
  14108. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-mr {
  14109. background-image: url(images/btn/btn-grid-cell-small-focus-sides.gif);
  14110. }
  14111. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2978 */
  14112. .x-keyboard-mode .x-btn-focus .x-btn-grid-cell-small-mc {
  14113. background-color: transparent;
  14114. }
  14115. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2991 */
  14116. .x-btn-over .x-btn-grid-cell-small-tl,
  14117. .x-btn-over .x-btn-grid-cell-small-bl,
  14118. .x-btn-over .x-btn-grid-cell-small-tr,
  14119. .x-btn-over .x-btn-grid-cell-small-br,
  14120. .x-btn-over .x-btn-grid-cell-small-tc,
  14121. .x-btn-over .x-btn-grid-cell-small-bc {
  14122. background-image: url(images/btn/btn-grid-cell-small-over-corners.gif);
  14123. }
  14124. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:2999 */
  14125. .x-btn-over .x-btn-grid-cell-small-ml,
  14126. .x-btn-over .x-btn-grid-cell-small-mr {
  14127. background-image: url(images/btn/btn-grid-cell-small-over-sides.gif);
  14128. }
  14129. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3003 */
  14130. .x-btn-over .x-btn-grid-cell-small-mc {
  14131. background-color: transparent;
  14132. }
  14133. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3016 */
  14134. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tl,
  14135. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-bl,
  14136. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tr,
  14137. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-br,
  14138. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-tc,
  14139. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-bc {
  14140. background-image: url(images/btn/btn-grid-cell-small-focus-over-corners.gif);
  14141. }
  14142. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3024 */
  14143. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-ml,
  14144. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-mr {
  14145. background-image: url(images/btn/btn-grid-cell-small-focus-over-sides.gif);
  14146. }
  14147. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3028 */
  14148. .x-keyboard-mode .x-btn-focus.x-btn-over .x-btn-grid-cell-small-mc {
  14149. background-color: transparent;
  14150. }
  14151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3043 */
  14152. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tl,
  14153. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-bl,
  14154. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tr,
  14155. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-br,
  14156. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-tc,
  14157. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-bc,
  14158. .x-btn.x-btn-pressed .x-btn-grid-cell-small-tl,
  14159. .x-btn.x-btn-pressed .x-btn-grid-cell-small-bl,
  14160. .x-btn.x-btn-pressed .x-btn-grid-cell-small-tr,
  14161. .x-btn.x-btn-pressed .x-btn-grid-cell-small-br,
  14162. .x-btn.x-btn-pressed .x-btn-grid-cell-small-tc,
  14163. .x-btn.x-btn-pressed .x-btn-grid-cell-small-bc {
  14164. background-image: url(images/btn/btn-grid-cell-small-pressed-corners.gif);
  14165. }
  14166. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3051 */
  14167. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-ml,
  14168. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-mr,
  14169. .x-btn.x-btn-pressed .x-btn-grid-cell-small-ml,
  14170. .x-btn.x-btn-pressed .x-btn-grid-cell-small-mr {
  14171. background-image: url(images/btn/btn-grid-cell-small-pressed-sides.gif);
  14172. }
  14173. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3055 */
  14174. .x-btn.x-btn-menu-active .x-btn-grid-cell-small-mc,
  14175. .x-btn.x-btn-pressed .x-btn-grid-cell-small-mc {
  14176. background-color: transparent;
  14177. }
  14178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3069 */
  14179. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tl,
  14180. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-bl,
  14181. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tr,
  14182. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-br,
  14183. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-tc,
  14184. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-bc,
  14185. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tl,
  14186. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-bl,
  14187. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tr,
  14188. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-br,
  14189. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-tc,
  14190. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-bc {
  14191. background-image: url(images/btn/btn-grid-cell-small-focus-pressed-corners.gif);
  14192. }
  14193. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3077 */
  14194. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-ml,
  14195. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-mr,
  14196. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-ml,
  14197. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-mr {
  14198. background-image: url(images/btn/btn-grid-cell-small-focus-pressed-sides.gif);
  14199. }
  14200. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3081 */
  14201. .x-keyboard-mode .x-btn-focus.x-btn-menu-active .x-btn-grid-cell-small-mc,
  14202. .x-keyboard-mode .x-btn-focus.x-btn-pressed .x-btn-grid-cell-small-mc {
  14203. background-color: transparent;
  14204. }
  14205. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3095 */
  14206. .x-btn.x-btn-disabled .x-btn-grid-cell-small-tl,
  14207. .x-btn.x-btn-disabled .x-btn-grid-cell-small-bl,
  14208. .x-btn.x-btn-disabled .x-btn-grid-cell-small-tr,
  14209. .x-btn.x-btn-disabled .x-btn-grid-cell-small-br,
  14210. .x-btn.x-btn-disabled .x-btn-grid-cell-small-tc,
  14211. .x-btn.x-btn-disabled .x-btn-grid-cell-small-bc {
  14212. background-image: url(images/btn/btn-grid-cell-small-disabled-corners.gif);
  14213. }
  14214. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3103 */
  14215. .x-btn.x-btn-disabled .x-btn-grid-cell-small-ml,
  14216. .x-btn.x-btn-disabled .x-btn-grid-cell-small-mr {
  14217. background-image: url(images/btn/btn-grid-cell-small-disabled-sides.gif);
  14218. }
  14219. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3107 */
  14220. .x-btn.x-btn-disabled .x-btn-grid-cell-small-mc {
  14221. background-color: transparent;
  14222. }
  14223. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3117 */
  14224. .x-nbr .x-btn-grid-cell-small {
  14225. background-image: none;
  14226. }
  14227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3123 */
  14228. .x-btn-disabled.x-btn-grid-cell-small {
  14229. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=)";
  14230. }
  14231. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3142 */
  14232. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first {
  14233. border-right-width: 0px !important;
  14234. }
  14235. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3144 */
  14236. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first .x-btn-grid-cell-small-mc {
  14237. padding-right: 16px !important;
  14238. }
  14239. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3148 */
  14240. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-middle {
  14241. border-right-width: 0px !important;
  14242. }
  14243. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3150 */
  14244. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-middle .x-btn-grid-cell-small-mc {
  14245. padding-right: 16px !important;
  14246. padding-left: 16px !important;
  14247. }
  14248. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3156 */
  14249. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-last .x-btn-grid-cell-small-mc {
  14250. padding-left: 16px !important;
  14251. }
  14252. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3163 */
  14253. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first {
  14254. border-bottom-width: 0px !important;
  14255. }
  14256. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3165 */
  14257. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first .x-btn-grid-cell-small-mc {
  14258. padding-bottom: 8px !important;
  14259. }
  14260. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3169 */
  14261. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-middle {
  14262. border-bottom-width: 0px !important;
  14263. }
  14264. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3171 */
  14265. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-middle .x-btn-grid-cell-small-mc {
  14266. padding-top: 8px !important;
  14267. padding-bottom: 8px !important;
  14268. }
  14269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3177 */
  14270. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-last .x-btn-grid-cell-small-mc {
  14271. padding-top: 8px !important;
  14272. }
  14273. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3183 */
  14274. .x-nbr .x-segmented-button-item.x-btn-grid-cell-small:after {
  14275. content: ' ';
  14276. border-style: solid;
  14277. border-width: 0;
  14278. position: absolute;
  14279. }
  14280. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3201 */
  14281. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small:after {
  14282. top: 0px;
  14283. right: 0;
  14284. bottom: 0px;
  14285. left: 0;
  14286. }
  14287. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3207 */
  14288. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-first:after {
  14289. left: 0px;
  14290. }
  14291. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3210 */
  14292. .x-nbr .x-segmented-button-item-horizontal.x-btn-grid-cell-small.x-segmented-button-last:after {
  14293. right: 0px;
  14294. }
  14295. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3216 */
  14296. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small:after {
  14297. top: 0;
  14298. right: 0px;
  14299. bottom: 0;
  14300. left: 0px;
  14301. }
  14302. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3222 */
  14303. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-first:after {
  14304. top: 0px;
  14305. }
  14306. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3225 */
  14307. .x-nbr .x-segmented-button-item-vertical.x-btn-grid-cell-small.x-segmented-button-last:after {
  14308. bottom: 0px;
  14309. }
  14310. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3294 */
  14311. .x-button-grid-cell-small-cell > .x-grid-cell-inner {
  14312. padding-top: 8px;
  14313. padding-bottom: 8px;
  14314. }
  14315. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/button/Button.scss:3299 */
  14316. .x-button-grid-cell-small-cell > .x-grid-cell-inner >.x-btn-grid-cell-small {
  14317. vertical-align: top;
  14318. }
  14319. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/column/Widget.scss:110 */
  14320. .x-grid-widgetcolumn-cell-inner {
  14321. text-overflow: clip;
  14322. }
  14323. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:1 */
  14324. .x-grid-advanced-group-hd {
  14325. border-width: 0 0 0 1px;
  14326. border-style: solid;
  14327. border-color: #e2e2e2;
  14328. padding: 16px 8px;
  14329. cursor: pointer;
  14330. white-space: nowrap;
  14331. outline: none;
  14332. }
  14333. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:11 */
  14334. .x-grid-advanced-group-record {
  14335. border-width: 0 0 0 1px;
  14336. border-style: solid;
  14337. border-color: #e2e2e2;
  14338. padding: 16px 8px;
  14339. }
  14340. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:18 */
  14341. .x-grid-advanced-group-hd-not-collapsible {
  14342. cursor: default;
  14343. }
  14344. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:22 */
  14345. .x-grid-advanced-group-hd-collapsible .x-grid-advanced-group-title {
  14346. padding: 0 0 0 24px;
  14347. }
  14348. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14349. .x-grid-advanced-group-hd-collapsible .x-grid-advanced-group-title:before {
  14350. content: '\f146';
  14351. font-size: 14px;
  14352. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14353. color: #919191;
  14354. }
  14355. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:38 */
  14356. .x-rtl.x-grid-view .x-grid-advanced-group-hd-collapsible .x-grid-advanced-group-title {
  14357. background-position: right center;
  14358. padding: 0 24px 0 0;
  14359. }
  14360. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:44 */
  14361. .x-grid-advanced-group-title {
  14362. position: relative;
  14363. font: 600 13px/15px Roboto, sans-serif;
  14364. }
  14365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:48 */
  14366. .x-grid-advanced-group-title:before {
  14367. position: absolute;
  14368. left: 0;
  14369. }
  14370. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14371. .x-grid-advanced-group-hd-collapsed .x-grid-advanced-group-title:before {
  14372. content: '\f0fe';
  14373. font-size: 14px;
  14374. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14375. color: #919191;
  14376. }
  14377. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:66 */
  14378. .x-groups-icon {
  14379. font: 16px/16px ExtJS;
  14380. }
  14381. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14382. .x-groups-icon:before {
  14383. content: "\e90f";
  14384. }
  14385. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:77 */
  14386. .x-group-by-icon {
  14387. font: 16px/16px ExtJS;
  14388. }
  14389. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14390. .x-group-by-icon:before {
  14391. content: "\e607";
  14392. }
  14393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:88 */
  14394. .x-add-group-icon {
  14395. font: 16px/16px ExtJS;
  14396. }
  14397. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14398. .x-add-group-icon:before {
  14399. content: "\e910";
  14400. }
  14401. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:99 */
  14402. .x-remove-group-icon {
  14403. font: 16px/16px ExtJS;
  14404. }
  14405. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14406. .x-remove-group-icon:before {
  14407. content: "\e911";
  14408. }
  14409. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGrouping.scss:113 */
  14410. .x-grid-advanced-group-summary .x-grid-cell,
  14411. .x-grid-summary .x-grid-cell {
  14412. border-style: solid;
  14413. border-color: #e2e2e2;
  14414. border-color: var(--divider-color);
  14415. background-color: #fff;
  14416. background-color: var(--reverse-color);
  14417. color: #111;
  14418. color: var(--color);
  14419. font: 400 13px/16px Roboto, sans-serif;
  14420. }
  14421. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGroupingSummary.scss:1 */
  14422. .x-docked-grid-summary {
  14423. border-width: 1px;
  14424. border-color: #e2e2e2;
  14425. border-color: var(--divider-color);
  14426. border-style: solid;
  14427. background-color: #fff;
  14428. background-color: var(--reverse-color);
  14429. }
  14430. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGroupingSummary.scss:6 */
  14431. .x-docked-grid-summary .x-grid-item {
  14432. border: 0 none;
  14433. }
  14434. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/AdvancedGroupingSummary.scss:14 */
  14435. .x-grid-summary .x-grid-cell {
  14436. border-color: #e2e2e2;
  14437. border-color: var(--divider-color);
  14438. background-color: #fff !important;
  14439. background-color: var(--reverse-color) !important;
  14440. border-top: 1px solid #e2e2e2;
  14441. border-top: 1px solid var(--divider-color);
  14442. font: 400 13px/16px Roboto, sans-serif;
  14443. }
  14444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:1 */
  14445. .x-grid-group-hd {
  14446. border-width: 0 0 1px 0;
  14447. border-style: solid;
  14448. border-color: #e2e2e2;
  14449. padding: 16px 8px;
  14450. background: #fff;
  14451. background: var(--reverse-color);
  14452. cursor: pointer;
  14453. }
  14454. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:10 */
  14455. .x-grid-group-hd-not-collapsible {
  14456. cursor: default;
  14457. }
  14458. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:14 */
  14459. .x-grid-group-hd-collapsible .x-grid-group-title {
  14460. padding: 0 0 0 24px;
  14461. }
  14462. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14463. .x-grid-group-hd-collapsible .x-grid-group-title:before {
  14464. content: '\f146';
  14465. font-size: 14px;
  14466. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14467. color: #919191;
  14468. }
  14469. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:30 */
  14470. .x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title {
  14471. background-position: right center;
  14472. padding: 0 24px 0 0;
  14473. }
  14474. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:36 */
  14475. .x-grid-group-title {
  14476. color: #111;
  14477. color: var(--color);
  14478. font: 600 13px/15px Roboto, sans-serif;
  14479. }
  14480. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14481. .x-grid-group-hd-collapsed .x-grid-group-title:before {
  14482. content: '\f0fe';
  14483. font-size: 14px;
  14484. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14485. color: #919191;
  14486. }
  14487. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Grouping.scss:54 */
  14488. .x-group-by-icon {
  14489. font: 16px/16px ExtJS;
  14490. }
  14491. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14492. .x-group-by-icon:before {
  14493. content: "\e607";
  14494. }
  14495. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/RowBody.scss:1 */
  14496. .x-grid-rowbody {
  14497. font: 400 13px/16px Roboto, sans-serif;
  14498. padding: 8px;
  14499. }
  14500. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:1 */
  14501. .x-docked-summary {
  14502. border-width: 1px;
  14503. border-color: #d0d0d0;
  14504. border-style: solid;
  14505. background: #fff!important;
  14506. background: var(--reverse-color)!important;
  14507. }
  14508. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:6 */
  14509. .x-docked-summary .x-grid-table {
  14510. border: 0 none;
  14511. }
  14512. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:14 */
  14513. .x-grid-row-summary .x-grid-cell,
  14514. .x-grid-row-summary .x-grid-rowwrap,
  14515. .x-grid-row-summary .x-grid-cell-rowbody {
  14516. border-color: #e2e2e2;
  14517. border-color: var(--divider-color);
  14518. background-color: #fff !important;
  14519. background-color: var(--reverse-color) !important;
  14520. border-top: 1px solid #e2e2e2;
  14521. border-top: 1px solid var(--divider-color);
  14522. font: 400 13px/16px Roboto, sans-serif;
  14523. }
  14524. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:26 */
  14525. .x-docked-summary .x-grid-item,
  14526. .x-docked-summary .x-grid-row-summary .x-grid-cell {
  14527. border-bottom: 0 none;
  14528. border-top: 0 none;
  14529. }
  14530. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:34 */
  14531. .x-docked-summary > :first-child {
  14532. background-color: #fff;
  14533. background-color: var(--reverse-color);
  14534. }
  14535. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/feature/Summary.scss:40 */
  14536. .x-grid-row-summary .x-grid-cell-inner-row-expander {
  14537. display: none;
  14538. }
  14539. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:818 */
  14540. .x-menu-default {
  14541. border-style: solid;
  14542. border-width: 1px;
  14543. border-color: #e2e2e2;
  14544. border-color: var(--divider-color);
  14545. }
  14546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:824 */
  14547. .x-menu-body-default {
  14548. background: #fff;
  14549. background: var(--reverse-color);
  14550. padding: 8px 0;
  14551. }
  14552. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:829 */
  14553. .x-menu-icon-separator-default {
  14554. left: 48px;
  14555. border-left: solid 1px #e0e0e0;
  14556. background-color: #fff;
  14557. width: 1px;
  14558. }
  14559. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:838 */
  14560. .x-rtl > .x-menu-icon-separator {
  14561. left: auto;
  14562. right: 48px;
  14563. }
  14564. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:843 */
  14565. .x-menu-item-default {
  14566. border-width: 0;
  14567. cursor: pointer;
  14568. }
  14569. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:849 */
  14570. .x-menu-item-default.x-menu-item-focus,
  14571. .x-menu-item-default.x-menu-item-active {
  14572. background-image: none;
  14573. background-color: #64b5f6;
  14574. background-color: var(--base-highlight-color);
  14575. }
  14576. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:862 */
  14577. .x-nlg .x-menu-item-default.x-menu-item-focus,
  14578. .x-nlg .x-menu-item-default.x-menu-item-active {
  14579. background: #64b5f6 repeat-x left top;
  14580. background: var(--base-highlight-color) repeat-x left top;
  14581. background-image: url(images/menu/menu-item-default-active-bg.gif);
  14582. }
  14583. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:869 */
  14584. .x-menu-item-default.x-menu-item-disabled {
  14585. cursor: default;
  14586. }
  14587. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:872 */
  14588. .x-menu-item-default.x-menu-item-disabled a {
  14589. cursor: default;
  14590. }
  14591. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:877 */
  14592. .x-menu-item-default.x-menu-item-separator {
  14593. height: 1px;
  14594. border-top: solid 1px #e0e0e0;
  14595. background-color: #fff;
  14596. margin: 2px 0;
  14597. padding: 0;
  14598. }
  14599. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:885 */
  14600. .x-menu-item-default.x-menu-item-disabled {
  14601. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  14602. opacity: 0.5;
  14603. }
  14604. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:890 */
  14605. .x-ie9m .x-menu-item-default.x-menu-item-disabled .x-menu-item-icon-ui {
  14606. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  14607. opacity: 0.5;
  14608. }
  14609. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:894 */
  14610. .x-ie9m .x-menu-item-default.x-menu-item-disabled .x-menu-item-text-default {
  14611. background-color: transparent;
  14612. }
  14613. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:904 */
  14614. .x-menu-item-default .x-form-item-label {
  14615. font-size: 14px;
  14616. color: #111;
  14617. color: var(--color);
  14618. }
  14619. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:911 */
  14620. .x-menu-item-text-default,
  14621. .x-menu-item-cmp-default {
  14622. margin: 0 16px 0 16px;
  14623. }
  14624. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:916 */
  14625. .x-menu-item-text-default {
  14626. font: 400 14px Roboto, sans-serif;
  14627. line-height: 31px;
  14628. padding-top: 1px;
  14629. color: #111;
  14630. color: var(--color);
  14631. cursor: pointer;
  14632. }
  14633. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:934 */
  14634. .x-menu-item-text-default.x-menu-item-indent {
  14635. margin-left: 65px;
  14636. }
  14637. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:938 */
  14638. .x-menu-item-text-default.x-menu-item-indent-no-separator {
  14639. margin-left: 48px;
  14640. }
  14641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:942 */
  14642. .x-menu-item-text-default.x-menu-item-indent-right-icon {
  14643. margin-right: 64px;
  14644. }
  14645. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:946 */
  14646. .x-menu-item-text-default.x-menu-item-indent-right-arrow {
  14647. margin-right: 37px;
  14648. }
  14649. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:950 */
  14650. .x-menu-item-disabled .x-menu-item-text-default {
  14651. cursor: default;
  14652. }
  14653. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:957 */
  14654. .x-rtl.x-menu-item-text-default,
  14655. .x-rtl.x-menu-item-cmp-default {
  14656. margin: 0 16px 0 16px;
  14657. }
  14658. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:963 */
  14659. .x-rtl.x-menu-item-text-default.x-menu-item-indent {
  14660. margin-right: 65px;
  14661. }
  14662. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:967 */
  14663. .x-rtl.x-menu-item-text-default.x-menu-item-indent-no-separator {
  14664. margin-right: 48px;
  14665. }
  14666. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:971 */
  14667. .x-rtl.x-menu-item-text-default.x-menu-item-indent-right-icon {
  14668. margin-left: 64px;
  14669. }
  14670. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:975 */
  14671. .x-rtl.x-menu-item-text-default.x-menu-item-indent-right-arrow {
  14672. margin-left: 37px;
  14673. }
  14674. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:982 */
  14675. .x-menu-item-indent-default {
  14676. margin-left: 65px;
  14677. }
  14678. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:985 */
  14679. .x-menu-item-indent-default.x-rtl {
  14680. margin-left: 0;
  14681. margin-right: 65px;
  14682. }
  14683. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:992 */
  14684. .x-menu-item-icon-default {
  14685. width: 16px;
  14686. height: 16px;
  14687. top: 8px;
  14688. left: 16px;
  14689. line-height: 16px;
  14690. font-size: 16px;
  14691. color: #111;
  14692. color: var(--color);
  14693. background-position: center center;
  14694. }
  14695. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1017 */
  14696. .x-menu-item-icon-default.x-rtl {
  14697. left: auto;
  14698. right: 16px;
  14699. }
  14700. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1021 */
  14701. .x-menu-item-focus .x-menu-item-icon-default.x-rtl,
  14702. .x-menu-item-active .x-menu-item-icon-default.x-rtl {
  14703. right: 16px;
  14704. }
  14705. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1041 */
  14706. .x-ie8 .x-menu-item-icon-default.x-menu-item-glyph {
  14707. color: #111;
  14708. }
  14709. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1049 */
  14710. .x-menu-item-icon-default.x-menu-item-icon-right {
  14711. width: 16px;
  14712. height: 16px;
  14713. top: 8px;
  14714. right: 16px;
  14715. left: auto;
  14716. background-position: center center;
  14717. }
  14718. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1058 */
  14719. .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl {
  14720. right: auto;
  14721. left: 16px;
  14722. }
  14723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1062 */
  14724. .x-menu-item-focus .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl,
  14725. .x-menu-item-active .x-menu-item-icon-default.x-menu-item-icon-right.x-rtl {
  14726. left: 16px;
  14727. }
  14728. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1070 */
  14729. .x-menu-item-icon-default.x-menu-item-checkbox {
  14730. color: rgba(17, 17, 17, 0.54);
  14731. color: var(--highlight-color);
  14732. }
  14733. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1080 */
  14734. .x-menu-item-focus .x-menu-item-icon-default.x-menu-item-checkbox,
  14735. .x-menu-item-active .x-menu-item-icon-default.x-menu-item-checkbox {
  14736. color: #111;
  14737. color: var(--color);
  14738. }
  14739. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1087 */
  14740. .x-menu-item-checked .x-menu-item-icon-default.x-menu-item-checkbox {
  14741. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14742. line-height: 16px;
  14743. }
  14744. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14745. .x-menu-item-checked .x-menu-item-icon-default.x-menu-item-checkbox:before {
  14746. content: 'check_box';
  14747. }
  14748. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1095 */
  14749. .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-item-checkbox {
  14750. font-family: 'Material Icons', 'Font Awesome 5 Free';
  14751. line-height: 16px;
  14752. }
  14753. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14754. .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-item-checkbox:before {
  14755. content: 'check_box_outline_blank';
  14756. }
  14757. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1110 */
  14758. .x-menu-item-focus .x-menu-item-icon-default.x-menu-group-icon,
  14759. .x-menu-item-active .x-menu-item-icon-default.x-menu-group-icon {
  14760. color: #111;
  14761. color: var(--color);
  14762. }
  14763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1117 */
  14764. .x-menu-item-checked .x-menu-item-icon-default.x-menu-group-icon {
  14765. font: 18px/16px 'Material Icons', 'Font Awesome 5 Free';
  14766. }
  14767. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14768. .x-menu-item-checked .x-menu-item-icon-default.x-menu-group-icon:before {
  14769. content: '\f00c';
  14770. }
  14771. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1125 */
  14772. .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-group-icon {
  14773. background-image: none;
  14774. }
  14775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1130 */
  14776. .x-menu-item-unchecked .x-menu-item-icon-default.x-menu-group-icon:before {
  14777. content: '';
  14778. }
  14779. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1140 */
  14780. .x-menu-item-arrow-default {
  14781. width: 16px;
  14782. height: 16px;
  14783. top: 8px;
  14784. right: 0;
  14785. margin: 0 4px 0;
  14786. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  14787. color: #919191;
  14788. }
  14789. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14790. .x-menu-item-arrow-default:before {
  14791. content: '\f0da';
  14792. }
  14793. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1152 */
  14794. .x-menu-item-focus .x-menu-item-arrow-default,
  14795. .x-menu-item-active .x-menu-item-arrow-default {
  14796. color: #111;
  14797. color: var(--color);
  14798. }
  14799. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1161 */
  14800. .x-menu-item-focus .x-menu-item-arrow-default,
  14801. .x-menu-item-active .x-menu-item-arrow-default {
  14802. top: 8px;
  14803. right: 0;
  14804. }
  14805. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1168 */
  14806. .x-menu-item-arrow-default.x-rtl {
  14807. left: 0;
  14808. right: auto;
  14809. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  14810. }
  14811. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14812. .x-menu-item-arrow-default.x-rtl:before {
  14813. content: '\f0d9';
  14814. }
  14815. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1179 */
  14816. .x-menu-item-focus .x-menu-item-arrow-default.x-rtl,
  14817. .x-menu-item-active .x-menu-item-arrow-default.x-rtl {
  14818. left: 0;
  14819. }
  14820. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:182 */
  14821. .x-menu-default-scroller .x-box-scroller-body-horizontal {
  14822. margin-left: 16px;
  14823. }
  14824. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:187 */
  14825. .x-menu-default-scroller.x-rtl .x-box-scroller-body-horizontal {
  14826. margin-left: 0;
  14827. margin-right: 16px;
  14828. }
  14829. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:195 */
  14830. .x-menu-default-vertical-scroller .x-box-scroller-body-vertical {
  14831. margin-top: 16px;
  14832. }
  14833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:200 */
  14834. .x-box-scroller-menu-default {
  14835. cursor: pointer;
  14836. color: #919191;
  14837. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  14838. opacity: 0.5;
  14839. }
  14840. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:210 */
  14841. .x-box-scroller-menu-default.x-box-scroller-hover {
  14842. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  14843. opacity: 0.6;
  14844. }
  14845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:216 */
  14846. .x-box-scroller-menu-default.x-box-scroller-pressed {
  14847. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  14848. opacity: 0.7;
  14849. }
  14850. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:222 */
  14851. .x-box-scroller-menu-default.x-box-scroller-disabled {
  14852. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  14853. opacity: 0.25;
  14854. cursor: default;
  14855. }
  14856. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:311 */
  14857. .x-box-scroller-menu-default.x-box-scroller-top,
  14858. .x-box-scroller-menu-default.x-box-scroller-bottom {
  14859. height: 16px;
  14860. width: 16px;
  14861. left: 50%;
  14862. margin-left: -8px;
  14863. }
  14864. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:338 */
  14865. .x-box-scroller-menu-default.x-box-scroller-top {
  14866. margin-top: 4px;
  14867. margin-right: 0;
  14868. margin-bottom: 4px;
  14869. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  14870. }
  14871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14872. .x-box-scroller-menu-default.x-box-scroller-top:before {
  14873. content: '\f077';
  14874. }
  14875. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:363 */
  14876. .x-box-scroller-menu-default.x-box-scroller-bottom {
  14877. margin-top: 4px;
  14878. margin-right: 0;
  14879. margin-bottom: 4px;
  14880. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  14881. }
  14882. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  14883. .x-box-scroller-menu-default.x-box-scroller-bottom:before {
  14884. content: '\f078';
  14885. }
  14886. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1217 */
  14887. .x-ie8 .x-box-scroller-menu-default {
  14888. background-color: #fff;
  14889. background-color: var(--reverse-color);
  14890. }
  14891. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:818 */
  14892. .x-menu-default-menubar {
  14893. border-style: solid;
  14894. border-width: 1px;
  14895. border-color: #e2e2e2;
  14896. border-color: var(--divider-color);
  14897. }
  14898. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:824 */
  14899. .x-menu-body-default-menubar {
  14900. background: #fff;
  14901. background: var(--reverse-color);
  14902. padding: 8px 0;
  14903. }
  14904. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:829 */
  14905. .x-menu-icon-separator-default-menubar {
  14906. left: 48px;
  14907. border-left: solid 1px #e0e0e0;
  14908. background-color: #fff;
  14909. width: 1px;
  14910. }
  14911. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:838 */
  14912. .x-rtl > .x-menu-icon-separator {
  14913. left: auto;
  14914. right: 48px;
  14915. }
  14916. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:843 */
  14917. .x-menu-item-default-menubar {
  14918. border-width: 0;
  14919. cursor: pointer;
  14920. }
  14921. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:849 */
  14922. .x-menu-item-default-menubar.x-menu-item-focus,
  14923. .x-menu-item-default-menubar.x-menu-item-active {
  14924. background-image: none;
  14925. background-color: #64b5f6;
  14926. background-color: var(--base-highlight-color);
  14927. }
  14928. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:862 */
  14929. .x-nlg .x-menu-item-default-menubar.x-menu-item-focus,
  14930. .x-nlg .x-menu-item-default-menubar.x-menu-item-active {
  14931. background: #64b5f6 repeat-x left top;
  14932. background: var(--base-highlight-color) repeat-x left top;
  14933. background-image: url(images/menu/menu-item-default-menubar-active-bg.gif);
  14934. }
  14935. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:869 */
  14936. .x-menu-item-default-menubar.x-menu-item-disabled {
  14937. cursor: default;
  14938. }
  14939. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:872 */
  14940. .x-menu-item-default-menubar.x-menu-item-disabled a {
  14941. cursor: default;
  14942. }
  14943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:877 */
  14944. .x-menu-item-default-menubar.x-menu-item-separator {
  14945. height: 1px;
  14946. border-top: solid 1px #e0e0e0;
  14947. background-color: #fff;
  14948. margin: 2px 0;
  14949. padding: 0;
  14950. }
  14951. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:885 */
  14952. .x-menu-item-default-menubar.x-menu-item-disabled {
  14953. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  14954. opacity: 0.5;
  14955. }
  14956. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:890 */
  14957. .x-ie9m .x-menu-item-default-menubar.x-menu-item-disabled .x-menu-item-icon-ui {
  14958. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  14959. opacity: 0.5;
  14960. }
  14961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:894 */
  14962. .x-ie9m .x-menu-item-default-menubar.x-menu-item-disabled .x-menu-item-text-default-menubar {
  14963. background-color: transparent;
  14964. }
  14965. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:904 */
  14966. .x-menu-item-default-menubar .x-form-item-label {
  14967. font-size: 14px;
  14968. color: #111;
  14969. color: var(--color);
  14970. }
  14971. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:911 */
  14972. .x-menu-item-text-default-menubar,
  14973. .x-menu-item-cmp-default-menubar {
  14974. margin: 0 16px 0 16px;
  14975. }
  14976. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:916 */
  14977. .x-menu-item-text-default-menubar {
  14978. font: 400 14px Roboto, sans-serif;
  14979. line-height: 31px;
  14980. padding-top: 1px;
  14981. color: #111;
  14982. color: var(--color);
  14983. cursor: pointer;
  14984. }
  14985. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:934 */
  14986. .x-menu-item-text-default-menubar.x-menu-item-indent {
  14987. margin-left: 65px;
  14988. }
  14989. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:938 */
  14990. .x-menu-item-text-default-menubar.x-menu-item-indent-no-separator {
  14991. margin-left: 48px;
  14992. }
  14993. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:942 */
  14994. .x-menu-item-text-default-menubar.x-menu-item-indent-right-icon {
  14995. margin-right: 64px;
  14996. }
  14997. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:946 */
  14998. .x-menu-item-text-default-menubar.x-menu-item-indent-right-arrow {
  14999. margin-right: 35px;
  15000. }
  15001. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:950 */
  15002. .x-menu-item-disabled .x-menu-item-text-default-menubar {
  15003. cursor: default;
  15004. }
  15005. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:957 */
  15006. .x-rtl.x-menu-item-text-default-menubar,
  15007. .x-rtl.x-menu-item-cmp-default-menubar {
  15008. margin: 0 16px 0 16px;
  15009. }
  15010. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:963 */
  15011. .x-rtl.x-menu-item-text-default-menubar.x-menu-item-indent {
  15012. margin-right: 65px;
  15013. }
  15014. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:967 */
  15015. .x-rtl.x-menu-item-text-default-menubar.x-menu-item-indent-no-separator {
  15016. margin-right: 48px;
  15017. }
  15018. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:971 */
  15019. .x-rtl.x-menu-item-text-default-menubar.x-menu-item-indent-right-icon {
  15020. margin-left: 64px;
  15021. }
  15022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:975 */
  15023. .x-rtl.x-menu-item-text-default-menubar.x-menu-item-indent-right-arrow {
  15024. margin-left: 35px;
  15025. }
  15026. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:982 */
  15027. .x-menu-item-indent-default-menubar {
  15028. margin-left: 65px;
  15029. }
  15030. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:985 */
  15031. .x-menu-item-indent-default-menubar.x-rtl {
  15032. margin-left: 0;
  15033. margin-right: 65px;
  15034. }
  15035. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:992 */
  15036. .x-menu-item-icon-default-menubar {
  15037. width: 16px;
  15038. height: 16px;
  15039. top: 8px;
  15040. left: 16px;
  15041. line-height: 16px;
  15042. font-size: 16px;
  15043. color: #111;
  15044. color: var(--color);
  15045. background-position: center center;
  15046. }
  15047. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1017 */
  15048. .x-menu-item-icon-default-menubar.x-rtl {
  15049. left: auto;
  15050. right: 16px;
  15051. }
  15052. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1021 */
  15053. .x-menu-item-focus .x-menu-item-icon-default-menubar.x-rtl,
  15054. .x-menu-item-active .x-menu-item-icon-default-menubar.x-rtl {
  15055. right: 16px;
  15056. }
  15057. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1041 */
  15058. .x-ie8 .x-menu-item-icon-default-menubar.x-menu-item-glyph {
  15059. color: #111;
  15060. }
  15061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1049 */
  15062. .x-menu-item-icon-default-menubar.x-menu-item-icon-right {
  15063. width: 16px;
  15064. height: 16px;
  15065. top: 8px;
  15066. right: 16px;
  15067. left: auto;
  15068. background-position: center center;
  15069. }
  15070. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1058 */
  15071. .x-menu-item-icon-default-menubar.x-menu-item-icon-right.x-rtl {
  15072. right: auto;
  15073. left: 16px;
  15074. }
  15075. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1062 */
  15076. .x-menu-item-focus .x-menu-item-icon-default-menubar.x-menu-item-icon-right.x-rtl,
  15077. .x-menu-item-active .x-menu-item-icon-default-menubar.x-menu-item-icon-right.x-rtl {
  15078. left: 16px;
  15079. }
  15080. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1070 */
  15081. .x-menu-item-icon-default-menubar.x-menu-item-checkbox {
  15082. color: rgba(17, 17, 17, 0.54);
  15083. color: var(--highlight-color);
  15084. }
  15085. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1080 */
  15086. .x-menu-item-focus .x-menu-item-icon-default-menubar.x-menu-item-checkbox,
  15087. .x-menu-item-active .x-menu-item-icon-default-menubar.x-menu-item-checkbox {
  15088. color: #111;
  15089. color: var(--color);
  15090. }
  15091. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1087 */
  15092. .x-menu-item-checked .x-menu-item-icon-default-menubar.x-menu-item-checkbox {
  15093. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15094. line-height: 16px;
  15095. }
  15096. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15097. .x-menu-item-checked .x-menu-item-icon-default-menubar.x-menu-item-checkbox:before {
  15098. content: 'check_box';
  15099. }
  15100. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1095 */
  15101. .x-menu-item-unchecked .x-menu-item-icon-default-menubar.x-menu-item-checkbox {
  15102. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15103. line-height: 16px;
  15104. }
  15105. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15106. .x-menu-item-unchecked .x-menu-item-icon-default-menubar.x-menu-item-checkbox:before {
  15107. content: 'check_box_outline_blank';
  15108. }
  15109. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1110 */
  15110. .x-menu-item-focus .x-menu-item-icon-default-menubar.x-menu-group-icon,
  15111. .x-menu-item-active .x-menu-item-icon-default-menubar.x-menu-group-icon {
  15112. color: #111;
  15113. color: var(--color);
  15114. }
  15115. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1117 */
  15116. .x-menu-item-checked .x-menu-item-icon-default-menubar.x-menu-group-icon {
  15117. font: 18px/16px 'Material Icons', 'Font Awesome 5 Free';
  15118. }
  15119. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15120. .x-menu-item-checked .x-menu-item-icon-default-menubar.x-menu-group-icon:before {
  15121. content: '\f00c';
  15122. }
  15123. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1125 */
  15124. .x-menu-item-unchecked .x-menu-item-icon-default-menubar.x-menu-group-icon {
  15125. background-image: none;
  15126. }
  15127. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1130 */
  15128. .x-menu-item-unchecked .x-menu-item-icon-default-menubar.x-menu-group-icon:before {
  15129. content: '';
  15130. }
  15131. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1140 */
  15132. .x-menu-item-arrow-default-menubar {
  15133. width: 9px;
  15134. height: 6px;
  15135. top: 9px;
  15136. right: 5px;
  15137. margin: 0 4px 0;
  15138. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  15139. color: #919191;
  15140. }
  15141. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15142. .x-menu-item-arrow-default-menubar:before {
  15143. content: '\f0d7';
  15144. }
  15145. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1152 */
  15146. .x-menu-item-focus .x-menu-item-arrow-default-menubar,
  15147. .x-menu-item-active .x-menu-item-arrow-default-menubar {
  15148. color: #111;
  15149. color: var(--color);
  15150. }
  15151. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1161 */
  15152. .x-menu-item-focus .x-menu-item-arrow-default-menubar,
  15153. .x-menu-item-active .x-menu-item-arrow-default-menubar {
  15154. top: 9px;
  15155. right: 5px;
  15156. }
  15157. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1168 */
  15158. .x-menu-item-arrow-default-menubar.x-rtl {
  15159. left: 5px;
  15160. right: auto;
  15161. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  15162. }
  15163. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15164. .x-menu-item-arrow-default-menubar.x-rtl:before {
  15165. content: '\f0d7';
  15166. }
  15167. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1179 */
  15168. .x-menu-item-focus .x-menu-item-arrow-default-menubar.x-rtl,
  15169. .x-menu-item-active .x-menu-item-arrow-default-menubar.x-rtl {
  15170. left: 5px;
  15171. }
  15172. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:182 */
  15173. .x-menu-default-menubar-scroller .x-box-scroller-body-horizontal {
  15174. margin-left: 16px;
  15175. }
  15176. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:187 */
  15177. .x-menu-default-menubar-scroller.x-rtl .x-box-scroller-body-horizontal {
  15178. margin-left: 0;
  15179. margin-right: 16px;
  15180. }
  15181. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:195 */
  15182. .x-menu-default-menubar-vertical-scroller .x-box-scroller-body-vertical {
  15183. margin-top: 16px;
  15184. }
  15185. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:200 */
  15186. .x-box-scroller-menu-default-menubar {
  15187. cursor: pointer;
  15188. color: #919191;
  15189. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  15190. opacity: 0.5;
  15191. }
  15192. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:210 */
  15193. .x-box-scroller-menu-default-menubar.x-box-scroller-hover {
  15194. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  15195. opacity: 0.6;
  15196. }
  15197. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:216 */
  15198. .x-box-scroller-menu-default-menubar.x-box-scroller-pressed {
  15199. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  15200. opacity: 0.7;
  15201. }
  15202. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:222 */
  15203. .x-box-scroller-menu-default-menubar.x-box-scroller-disabled {
  15204. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  15205. opacity: 0.25;
  15206. cursor: default;
  15207. }
  15208. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:311 */
  15209. .x-box-scroller-menu-default-menubar.x-box-scroller-top,
  15210. .x-box-scroller-menu-default-menubar.x-box-scroller-bottom {
  15211. height: 16px;
  15212. width: 16px;
  15213. left: 50%;
  15214. margin-left: -8px;
  15215. }
  15216. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:338 */
  15217. .x-box-scroller-menu-default-menubar.x-box-scroller-top {
  15218. margin-top: 4px;
  15219. margin-right: 0;
  15220. margin-bottom: 4px;
  15221. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  15222. }
  15223. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15224. .x-box-scroller-menu-default-menubar.x-box-scroller-top:before {
  15225. content: '\f077';
  15226. }
  15227. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/layout/container/Box.scss:363 */
  15228. .x-box-scroller-menu-default-menubar.x-box-scroller-bottom {
  15229. margin-top: 4px;
  15230. margin-right: 0;
  15231. margin-bottom: 4px;
  15232. font: 16px/16px 'Material Icons', 'Font Awesome 5 Free';
  15233. }
  15234. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15235. .x-box-scroller-menu-default-menubar.x-box-scroller-bottom:before {
  15236. content: '\f078';
  15237. }
  15238. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/var/menu/Menu.scss:1217 */
  15239. .x-ie8 .x-box-scroller-menu-default-menubar {
  15240. background-color: #fff;
  15241. background-color: var(--reverse-color);
  15242. }
  15243. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:1 */
  15244. .x-grid-filters-filtered-column {
  15245. font-style: italic;
  15246. font-weight: 600;
  15247. text-decoration: underline;
  15248. }
  15249. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:7 */
  15250. .x-grid-filters-icon {
  15251. background-repeat: no-repeat;
  15252. background-position: center center;
  15253. color: #111;
  15254. color: var(--color);
  15255. text-align: center;
  15256. }
  15257. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:16 */
  15258. .x-grid-filters-find .x-form-item-label-inner {
  15259. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  15260. }
  15261. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15262. .x-grid-filters-find .x-form-item-label-inner:before {
  15263. content: '\f002';
  15264. }
  15265. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:26 */
  15266. .x-grid-filters-gt .x-form-item-label-inner {
  15267. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  15268. }
  15269. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15270. .x-grid-filters-gt .x-form-item-label-inner:before {
  15271. content: '\f054';
  15272. }
  15273. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:36 */
  15274. .x-grid-filters-lt .x-form-item-label-inner {
  15275. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  15276. }
  15277. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15278. .x-grid-filters-lt .x-form-item-label-inner:before {
  15279. content: '\f053';
  15280. }
  15281. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/filters/Filters.scss:46 */
  15282. .x-grid-filters-eq .x-form-item-label-inner {
  15283. font: 16px/1 ExtJS;
  15284. }
  15285. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15286. .x-grid-filters-eq .x-form-item-label-inner:before {
  15287. content: "\e605";
  15288. }
  15289. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:1 */
  15290. .x-grid-locked .x-grid-inner-locked {
  15291. border-width: 0 2px 0 0;
  15292. border-style: solid;
  15293. }
  15294. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:6 */
  15295. .x-grid-locked .x-rtl.x-grid-inner-locked {
  15296. border-width: 0 0 0 2px;
  15297. }
  15298. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:12 */
  15299. .x-grid-locked-split .x-grid-inner-normal {
  15300. border-width: 0 0 0 2px;
  15301. border-style: solid;
  15302. border-left-color: #e2e2e2;
  15303. }
  15304. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:18 */
  15305. .x-grid-locked-split .x-rtl.x-grid-inner-normal {
  15306. border-width: 0 2px 0 0;
  15307. border-right-color: #e2e2e2;
  15308. }
  15309. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:24 */
  15310. .x-grid-locking-body {
  15311. border-width: 1px;
  15312. }
  15313. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:31 */
  15314. .x-grid-locking-body > .x-splitter {
  15315. background-color: #e1e1e1;
  15316. background-color: var(--faded-color);
  15317. }
  15318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:35 */
  15319. .x-grid-locking-body > .x-splitter-active {
  15320. background-color: #b4b4b4;
  15321. }
  15322. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:40 */
  15323. .x-grid-inner-locked {
  15324. border-right-color: #e2e2e2;
  15325. }
  15326. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:45 */
  15327. .x-grid-inner-locked .x-column-header-last,
  15328. .x-grid-inner-locked .x-grid-cell-last {
  15329. border-right-width: 0!important;
  15330. }
  15331. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:50 */
  15332. .x-grid-inner-locked .x-rtl.x-column-header-last {
  15333. border-left-width: 0!important;
  15334. }
  15335. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:59 */
  15336. .x-rtl.x-grid-inner-locked {
  15337. border-right-color: #2196f3;
  15338. border-right-color: var(--base-color);
  15339. border-left-color: #e2e2e2;
  15340. }
  15341. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:61 */
  15342. .x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last {
  15343. border-left: 0 none;
  15344. }
  15345. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:64 */
  15346. .x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last {
  15347. border-left: 0 none;
  15348. }
  15349. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:75 */
  15350. .x-hmenu-lock {
  15351. font: 16px/16px ExtJS;
  15352. }
  15353. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15354. .x-hmenu-lock:before {
  15355. content: "\e914";
  15356. }
  15357. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:86 */
  15358. .x-hmenu-unlock {
  15359. font: 16px/16px ExtJS;
  15360. }
  15361. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15362. .x-hmenu-unlock:before {
  15363. content: "\e913";
  15364. }
  15365. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:101 */
  15366. .x-grid-scrollbar-clipper > .x-grid-view,
  15367. .x-grid-scrollbar-clipper > .x-tree-view {
  15368. background-color: #fff;
  15369. background-color: var(--reverse-color);
  15370. }
  15371. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:108 */
  15372. .x-grid-scrollbar-clipper-locked,
  15373. .x-grid-scrollbar-locked {
  15374. border-width: 0 2px 0 0;
  15375. border-style: solid;
  15376. border-color: #e2e2e2;
  15377. }
  15378. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:116 */
  15379. .x-grid-locked .x-rtl.x-grid-scrollbar-clipper-locked,
  15380. .x-grid-locked .x-rtl.x-grid-scrollbar-locked {
  15381. border-width: 0 0 0 2px;
  15382. }
  15383. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:123 */
  15384. .x-grid-scroll-container {
  15385. background-color: #fff;
  15386. background-color: var(--reverse-color);
  15387. }
  15388. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:129 */
  15389. .x-rtl > .x-grid-scroll-container {
  15390. direction: rtl;
  15391. }
  15392. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/locking/Lockable.scss:131 */
  15393. .x-rtl > .x-grid-scroll-container > .x-grid-scroll-body {
  15394. direction: rtl;
  15395. }
  15396. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/Editing.scss:18 */
  15397. .x-grid-editor .x-form-display-field {
  15398. text-overflow: ellipsis;
  15399. }
  15400. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/Editing.scss:24 */
  15401. .x-grid-editor .x-form-action-col-field {
  15402. padding: 15px 4px 15px 4px;
  15403. }
  15404. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/Editing.scss:30 */
  15405. .x-grid-editor .x-form-text {
  15406. padding-left: 8px;
  15407. padding-right: 8px;
  15408. }
  15409. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/CellEditing.scss:3 */
  15410. .x-tree-cell-editor .x-form-text {
  15411. padding-left: 5px;
  15412. padding-right: 5px;
  15413. }
  15414. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:1 */
  15415. .x-grid-group-column {
  15416. background-image: none;
  15417. background-color: #fff;
  15418. background-color: var(--reverse-color);
  15419. cursor: pointer;
  15420. margin: 2px;
  15421. }
  15422. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:10 */
  15423. .x-grid-group-column .x-grid-group-column-btn {
  15424. width: 16px;
  15425. height: 16px;
  15426. float: left;
  15427. }
  15428. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:16 */
  15429. .x-grid-group-column .x-column-header-sort-ASC,
  15430. .x-grid-group-column .x-column-header-sort-DESC {
  15431. background-color: transparent !important;
  15432. }
  15433. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:22 */
  15434. .x-grid-group-column.x-focus .x-grid-group-column-inner {
  15435. border: 0px solid #fff;
  15436. border: 0px solid var(--reverse-color);
  15437. }
  15438. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:27 */
  15439. .x-grid-group-column-over {
  15440. background-image: none;
  15441. background-color: #fff;
  15442. background-color: var(--reverse-color);
  15443. }
  15444. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:31 */
  15445. .x-grid-group-column-inner {
  15446. padding: 3px;
  15447. border: 1px solid #e2e2e2;
  15448. margin: 1px;
  15449. font: 400 13px/16px Roboto, sans-serif;
  15450. }
  15451. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Column.scss:41 */
  15452. .x-grid-group-column-btn-image {
  15453. padding: 0 5px 0 0;
  15454. background-position: right center;
  15455. background-repeat: no-repeat;
  15456. }
  15457. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15458. .x-grid-group-column-btn-customize:before {
  15459. content: '\f013';
  15460. font-size: 14px;
  15461. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15462. color: #919191;
  15463. }
  15464. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15465. .x-grid-group-column-btn-sort-asc:before {
  15466. content: '\f30c';
  15467. font-size: 14px;
  15468. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15469. color: #919191;
  15470. }
  15471. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15472. .x-grid-group-column-sort-icon-asc:before {
  15473. content: '\f15d';
  15474. font-size: 14px;
  15475. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15476. color: #919191;
  15477. }
  15478. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15479. .x-grid-group-column-btn-sort-desc:before {
  15480. content: '\f309';
  15481. font-size: 14px;
  15482. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15483. color: #919191;
  15484. }
  15485. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15486. .x-grid-group-column-sort-icon-desc:before {
  15487. content: '\f15e';
  15488. font-size: 14px;
  15489. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15490. color: #919191;
  15491. }
  15492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Panel.scss:1 */
  15493. .x-grid-group-panel-header {
  15494. padding: 2px;
  15495. }
  15496. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Panel.scss:4 */
  15497. .x-grid-group-panel-header .x-panel-header-title {
  15498. font: 400 13px/16px Roboto, sans-serif;
  15499. }
  15500. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Panel.scss:8 */
  15501. .x-grid-group-panel-header.x-header-noborder {
  15502. padding: 2px;
  15503. }
  15504. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Panel.scss:12 */
  15505. .x-grid-group-panel-body {
  15506. background-color: white;
  15507. border: 0 solid #e2e2e2;
  15508. border: 0 solid var(--divider-color);
  15509. }
  15510. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/grouping/Panel.scss:17 */
  15511. .x-grid-group-panel-hint {
  15512. color: darkgray;
  15513. padding: 5px;
  15514. }
  15515. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15516. .x-grid-group-panel-icon:before {
  15517. content: "\e607";
  15518. font-size: 14px;
  15519. font-family: ExtJS;
  15520. color: #919191;
  15521. }
  15522. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15523. .x-grid-group-panel-clear-icon:before {
  15524. content: '\f00d';
  15525. font-size: 14px;
  15526. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15527. color: #919191;
  15528. }
  15529. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:2 */
  15530. .x-grid-row-editor .x-field {
  15531. margin: 0 3px 0 2px;
  15532. }
  15533. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:7 */
  15534. .x-grid-row-editor .x-form-display-field {
  15535. padding: 16px 6px 16px 6px;
  15536. line-height: 16px;
  15537. }
  15538. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:18 */
  15539. .x-ie9m .x-grid-row-editor .x-form-display-field {
  15540. min-height: 16px;
  15541. }
  15542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:26 */
  15543. .x-grid-row-editor .x-form-action-col-field {
  15544. padding: 7px 1px 7px 2px;
  15545. }
  15546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:37 */
  15547. .x-grid-row-editor .x-form-text {
  15548. padding: 5px 4px 4px 5px;
  15549. }
  15550. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:41 */
  15551. .x-gecko .x-grid-row-editor .x-form-text {
  15552. padding-left: 4px;
  15553. padding-right: 3px;
  15554. }
  15555. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:50 */
  15556. .x-grid-row-editor .x-panel-body {
  15557. border-top: 1px solid #d0d0d0 !important;
  15558. border-bottom: 1px solid #d0d0d0 !important;
  15559. padding: 2px 0 2px 0;
  15560. background-color: #f5f5f5;
  15561. background-color: var(--accent-light-color);
  15562. }
  15563. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:60 */
  15564. .x-grid-with-col-lines .x-grid-row-editor .x-form-cb {
  15565. margin-right: 1px;
  15566. }
  15567. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:65 */
  15568. .x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb {
  15569. margin-right: 0;
  15570. margin-left: 1px;
  15571. }
  15572. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  15573. .x-grid-row-editor-buttons-default-bottom {
  15574. -moz-border-radius-topleft: 0;
  15575. -webkit-border-top-left-radius: 0;
  15576. border-top-left-radius: 0;
  15577. -moz-border-radius-topright: 0;
  15578. -webkit-border-top-right-radius: 0;
  15579. border-top-right-radius: 0;
  15580. -moz-border-radius-bottomright: 5px;
  15581. -webkit-border-bottom-right-radius: 5px;
  15582. border-bottom-right-radius: 5px;
  15583. -moz-border-radius-bottomleft: 5px;
  15584. -webkit-border-bottom-left-radius: 5px;
  15585. border-bottom-left-radius: 5px;
  15586. padding: 5px 5px 5px 5px;
  15587. border-width: 0 1px 1px 1px;
  15588. border-style: solid;
  15589. background-color: #f5f5f5;
  15590. background-color: var(--accent-light-color);
  15591. }
  15592. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  15593. .x-grid-row-editor-buttons-default-bottom-mc {
  15594. background-color: #f5f5f5;
  15595. background-color: var(--accent-light-color);
  15596. }
  15597. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  15598. .x-nbr .x-grid-row-editor-buttons-default-bottom {
  15599. padding: 0 !important;
  15600. border-width: 0 !important;
  15601. -webkit-border-radius: 0px;
  15602. -moz-border-radius: 0px;
  15603. -ms-border-radius: 0px;
  15604. -o-border-radius: 0px;
  15605. border-radius: 0px;
  15606. background-color: transparent !important;
  15607. box-shadow: none !important;
  15608. }
  15609. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  15610. .x-grid-row-editor-buttons-default-bottom-frameInfo {
  15611. font-family: th-0-5-5-5-0-1-1-1-5-5-5-5;
  15612. }
  15613. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  15614. .x-grid-row-editor-buttons-default-bottom-tl {
  15615. background-position: 0 -10px;
  15616. }
  15617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  15618. .x-grid-row-editor-buttons-default-bottom-tr {
  15619. background-position: right -15px;
  15620. }
  15621. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  15622. .x-grid-row-editor-buttons-default-bottom-bl {
  15623. background-position: 0 -20px;
  15624. }
  15625. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  15626. .x-grid-row-editor-buttons-default-bottom-br {
  15627. background-position: right -25px;
  15628. }
  15629. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  15630. .x-grid-row-editor-buttons-default-bottom-ml {
  15631. background-position: 0 top;
  15632. }
  15633. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  15634. .x-grid-row-editor-buttons-default-bottom-mr {
  15635. background-position: right top;
  15636. }
  15637. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  15638. .x-grid-row-editor-buttons-default-bottom-tc {
  15639. background-position: 0 0;
  15640. }
  15641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  15642. .x-grid-row-editor-buttons-default-bottom-bc {
  15643. background-position: 0 -5px;
  15644. }
  15645. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  15646. .x-grid-row-editor-buttons-default-bottom-tr,
  15647. .x-grid-row-editor-buttons-default-bottom-br,
  15648. .x-grid-row-editor-buttons-default-bottom-mr {
  15649. padding-right: 5px;
  15650. }
  15651. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  15652. .x-grid-row-editor-buttons-default-bottom-tl,
  15653. .x-grid-row-editor-buttons-default-bottom-bl,
  15654. .x-grid-row-editor-buttons-default-bottom-ml {
  15655. padding-left: 5px;
  15656. }
  15657. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  15658. .x-grid-row-editor-buttons-default-bottom-tc {
  15659. height: 0;
  15660. }
  15661. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  15662. .x-grid-row-editor-buttons-default-bottom-bc {
  15663. height: 5px;
  15664. }
  15665. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  15666. .x-grid-row-editor-buttons-default-bottom-tl,
  15667. .x-grid-row-editor-buttons-default-bottom-bl,
  15668. .x-grid-row-editor-buttons-default-bottom-tr,
  15669. .x-grid-row-editor-buttons-default-bottom-br,
  15670. .x-grid-row-editor-buttons-default-bottom-tc,
  15671. .x-grid-row-editor-buttons-default-bottom-bc,
  15672. .x-grid-row-editor-buttons-default-bottom-ml,
  15673. .x-grid-row-editor-buttons-default-bottom-mr {
  15674. background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif);
  15675. }
  15676. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  15677. .x-grid-row-editor-buttons-default-bottom-ml,
  15678. .x-grid-row-editor-buttons-default-bottom-mr {
  15679. background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);
  15680. background-repeat: repeat-y;
  15681. }
  15682. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  15683. .x-grid-row-editor-buttons-default-bottom-mc {
  15684. padding: 5px 1px 1px 1px;
  15685. }
  15686. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  15687. .x-grid-row-editor-buttons-default-top {
  15688. -moz-border-radius-topleft: 5px;
  15689. -webkit-border-top-left-radius: 5px;
  15690. border-top-left-radius: 5px;
  15691. -moz-border-radius-topright: 5px;
  15692. -webkit-border-top-right-radius: 5px;
  15693. border-top-right-radius: 5px;
  15694. -moz-border-radius-bottomright: 0;
  15695. -webkit-border-bottom-right-radius: 0;
  15696. border-bottom-right-radius: 0;
  15697. -moz-border-radius-bottomleft: 0;
  15698. -webkit-border-bottom-left-radius: 0;
  15699. border-bottom-left-radius: 0;
  15700. padding: 5px 5px 5px 5px;
  15701. border-width: 1px 1px 0 1px;
  15702. border-style: solid;
  15703. background-color: #f5f5f5;
  15704. background-color: var(--accent-light-color);
  15705. }
  15706. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  15707. .x-grid-row-editor-buttons-default-top-mc {
  15708. background-color: #f5f5f5;
  15709. background-color: var(--accent-light-color);
  15710. }
  15711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  15712. .x-nbr .x-grid-row-editor-buttons-default-top {
  15713. padding: 0 !important;
  15714. border-width: 0 !important;
  15715. -webkit-border-radius: 0px;
  15716. -moz-border-radius: 0px;
  15717. -ms-border-radius: 0px;
  15718. -o-border-radius: 0px;
  15719. border-radius: 0px;
  15720. background-color: transparent !important;
  15721. box-shadow: none !important;
  15722. }
  15723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  15724. .x-grid-row-editor-buttons-default-top-frameInfo {
  15725. font-family: th-5-5-0-5-1-1-0-1-5-5-5-5;
  15726. }
  15727. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  15728. .x-grid-row-editor-buttons-default-top-tl {
  15729. background-position: 0 -10px;
  15730. }
  15731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  15732. .x-grid-row-editor-buttons-default-top-tr {
  15733. background-position: right -15px;
  15734. }
  15735. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  15736. .x-grid-row-editor-buttons-default-top-bl {
  15737. background-position: 0 -20px;
  15738. }
  15739. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  15740. .x-grid-row-editor-buttons-default-top-br {
  15741. background-position: right -25px;
  15742. }
  15743. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  15744. .x-grid-row-editor-buttons-default-top-ml {
  15745. background-position: 0 top;
  15746. }
  15747. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  15748. .x-grid-row-editor-buttons-default-top-mr {
  15749. background-position: right top;
  15750. }
  15751. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  15752. .x-grid-row-editor-buttons-default-top-tc {
  15753. background-position: 0 0;
  15754. }
  15755. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  15756. .x-grid-row-editor-buttons-default-top-bc {
  15757. background-position: 0 -5px;
  15758. }
  15759. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  15760. .x-grid-row-editor-buttons-default-top-tr,
  15761. .x-grid-row-editor-buttons-default-top-br,
  15762. .x-grid-row-editor-buttons-default-top-mr {
  15763. padding-right: 5px;
  15764. }
  15765. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  15766. .x-grid-row-editor-buttons-default-top-tl,
  15767. .x-grid-row-editor-buttons-default-top-bl,
  15768. .x-grid-row-editor-buttons-default-top-ml {
  15769. padding-left: 5px;
  15770. }
  15771. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  15772. .x-grid-row-editor-buttons-default-top-tc {
  15773. height: 5px;
  15774. }
  15775. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  15776. .x-grid-row-editor-buttons-default-top-bc {
  15777. height: 0;
  15778. }
  15779. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  15780. .x-grid-row-editor-buttons-default-top-tl,
  15781. .x-grid-row-editor-buttons-default-top-bl,
  15782. .x-grid-row-editor-buttons-default-top-tr,
  15783. .x-grid-row-editor-buttons-default-top-br,
  15784. .x-grid-row-editor-buttons-default-top-tc,
  15785. .x-grid-row-editor-buttons-default-top-bc,
  15786. .x-grid-row-editor-buttons-default-top-ml,
  15787. .x-grid-row-editor-buttons-default-top-mr {
  15788. background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif);
  15789. }
  15790. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  15791. .x-grid-row-editor-buttons-default-top-ml,
  15792. .x-grid-row-editor-buttons-default-top-mr {
  15793. background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);
  15794. background-repeat: repeat-y;
  15795. }
  15796. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  15797. .x-grid-row-editor-buttons-default-top-mc {
  15798. padding: 1px 1px 5px 1px;
  15799. }
  15800. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:108 */
  15801. .x-grid-row-editor-buttons {
  15802. border-color: #d0d0d0;
  15803. }
  15804. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:112 */
  15805. .x-row-editor-update-button {
  15806. margin-right: 3px;
  15807. }
  15808. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:115 */
  15809. .x-row-editor-cancel-button {
  15810. margin-left: 2px;
  15811. }
  15812. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:120 */
  15813. .x-rtl.x-row-editor-update-button {
  15814. margin-left: 3px;
  15815. margin-right: auto;
  15816. }
  15817. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:124 */
  15818. .x-rtl.x-row-editor-cancel-button {
  15819. margin-right: 2px;
  15820. margin-left: auto;
  15821. }
  15822. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:131 */
  15823. .x-grid-row-editor-errors .x-tip-body {
  15824. padding: 5px;
  15825. }
  15826. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:136 */
  15827. .x-grid-row-editor-errors-item {
  15828. list-style: disc;
  15829. margin-left: 15px;
  15830. }
  15831. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowEditing.scss:143 */
  15832. .x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item {
  15833. margin-left: 0;
  15834. margin-right: 15px;
  15835. }
  15836. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowExpander.scss:1 */
  15837. .x-grid-cell-inner-row-expander {
  15838. padding: 16px 8px 16px 8px;
  15839. }
  15840. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowExpander.scss:16 */
  15841. .x-grid-row-expander {
  15842. width: 16px;
  15843. height: 16px;
  15844. cursor: pointer;
  15845. color: #919191;
  15846. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15847. line-height: 1;
  15848. }
  15849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15850. .x-grid-row-expander:before {
  15851. content: 'expand_less';
  15852. }
  15853. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowExpander.scss:31 */
  15854. .x-grid-row-collapsed .x-grid-row-expander {
  15855. font-family: 'Material Icons', 'Font Awesome 5 Free';
  15856. line-height: 1;
  15857. }
  15858. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15859. .x-grid-row-collapsed .x-grid-row-expander:before {
  15860. content: 'expand_more';
  15861. }
  15862. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/RowExpander.scss:40 */
  15863. .x-grid-row-non-expander {
  15864. width: 16px;
  15865. height: 16px;
  15866. }
  15867. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/Summaries.scss:1 */
  15868. .x-summaries-icon {
  15869. font: 16px/16px ExtJS;
  15870. }
  15871. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15872. .x-summaries-icon:before {
  15873. content: "\e912";
  15874. }
  15875. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/filterbar/Operator.scss:1 */
  15876. .x-operator-button {
  15877. width: 24px !important;
  15878. vertical-align: middle;
  15879. cursor: pointer;
  15880. background-color: #fff;
  15881. line-height: 32px;
  15882. }
  15883. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15884. .x-operator-like:before {
  15885. content: "\e900";
  15886. font: 16px/1 ExtJS;
  15887. color: #919191;
  15888. }
  15889. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15890. .x-operator-nlike:before {
  15891. content: "\e901";
  15892. font: 16px/1 ExtJS;
  15893. color: #919191;
  15894. }
  15895. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15896. .x-operator-eq:before {
  15897. content: "\e902";
  15898. font: 16px/1 ExtJS;
  15899. color: #919191;
  15900. }
  15901. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15902. .x-operator-neq:before {
  15903. content: "\e903";
  15904. font: 16px/1 ExtJS;
  15905. color: #919191;
  15906. }
  15907. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15908. .x-operator-gt:before {
  15909. content: "\e90b";
  15910. font: 16px/1 ExtJS;
  15911. color: #919191;
  15912. }
  15913. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15914. .x-operator-gte:before {
  15915. content: "\e90c";
  15916. font: 16px/1 ExtJS;
  15917. color: #919191;
  15918. }
  15919. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15920. .x-operator-lt:before {
  15921. content: "\e90d";
  15922. font: 16px/1 ExtJS;
  15923. color: #919191;
  15924. }
  15925. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15926. .x-operator-lte:before {
  15927. content: "\e90e";
  15928. font: 16px/1 ExtJS;
  15929. color: #919191;
  15930. }
  15931. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15932. .x-operator-in:before {
  15933. content: "\e906";
  15934. font: 16px/1 ExtJS;
  15935. color: #919191;
  15936. }
  15937. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15938. .x-operator-nin:before {
  15939. content: "\e907";
  15940. font: 16px/1 ExtJS;
  15941. color: #919191;
  15942. }
  15943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15944. .x-operator-identical:before {
  15945. content: "\e908";
  15946. font: 16px/1 ExtJS;
  15947. color: #919191;
  15948. }
  15949. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15950. .x-operator-nidentical:before {
  15951. content: "\e909";
  15952. font: 16px/1 ExtJS;
  15953. color: #919191;
  15954. }
  15955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15956. .x-operator-empty:before {
  15957. content: "\e904";
  15958. font: 16px/1 ExtJS;
  15959. color: #919191;
  15960. }
  15961. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15962. .x-operator-exists:before {
  15963. content: "\e905";
  15964. font: 16px/1 ExtJS;
  15965. color: #919191;
  15966. }
  15967. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  15968. .x-operator-fn:before {
  15969. content: "\e90a";
  15970. font: 16px/1 ExtJS;
  15971. color: #919191;
  15972. }
  15973. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/filterbar/filters/Base.scss:2 */
  15974. .x-grid-filter-base .x-form-trigger-wrap-default {
  15975. border-width: 0 1px 0 0;
  15976. border-style: solid;
  15977. border-color: #e2e2e2;
  15978. }
  15979. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/filterbar/filters/None.scss:1 */
  15980. .x-grid-filter-none {
  15981. background-color: #f6f6f6;
  15982. min-height: 32px;
  15983. border-width: 0 1px 0 0;
  15984. border-style: solid;
  15985. border-color: #e2e2e2;
  15986. }
  15987. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/filterbar/FilterBar.scss:2 */
  15988. .x-grid-filterbar .x-form-text {
  15989. padding: 3px;
  15990. font-size: 11px;
  15991. }
  15992. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/plugin/filterbar/FilterBar.scss:8 */
  15993. .x-grid-filterbar-filtered-column {
  15994. font-style: italic;
  15995. font-weight: inherit;
  15996. text-decoration: inherit;
  15997. }
  15998. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/selection/SpreadsheetModel.scss:1 */
  15999. .x-ssm-row-numberer-hd {
  16000. cursor: se-resize!important;
  16001. }
  16002. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/selection/SpreadsheetModel.scss:6 */
  16003. .x-ssm-row-numberer-cell {
  16004. cursor: e-resize;
  16005. }
  16006. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/selection/SpreadsheetModel.scss:11 */
  16007. .x-ssm-column-select .x-column-header {
  16008. cursor: s-resize;
  16009. }
  16010. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/selection/SpreadsheetModel.scss:16 */
  16011. .x-ssm-extender-drag-handle {
  16012. height: 7px;
  16013. width: 7px;
  16014. background-color: #2196f3;
  16015. background-color: var(--base-color);
  16016. }
  16017. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/grid/selection/SpreadsheetModel.scss:22 */
  16018. .x-ssm-extender-mask {
  16019. border: 1px dotted #2196f3;
  16020. border: 1px dotted var(--base-color);
  16021. }
  16022. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:1 */
  16023. .x-accordion-layout-ct {
  16024. background-color: #fff;
  16025. padding: 16px 8px;
  16026. }
  16027. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:6 */
  16028. .x-accordion-hd .x-panel-header-title {
  16029. color: #111;
  16030. color: var(--color);
  16031. font-weight: 600;
  16032. font-family: Roboto, sans-serif;
  16033. text-transform: none;
  16034. }
  16035. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:13 */
  16036. .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus {
  16037. outline: 1px solid #2196f3;
  16038. outline: 1px solid var(--base-color);
  16039. outline-offset: 2px;
  16040. }
  16041. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  16042. .x-ie .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus,
  16043. .x-ie10p .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus,
  16044. .x-edge .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus {
  16045. outline: none;
  16046. }
  16047. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  16048. .x-ie .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus:after,
  16049. .x-ie10p .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus:after,
  16050. .x-edge .x-keyboard-mode .x-accordion-hd .x-panel-header-title.x-title-focus:after {
  16051. position: absolute;
  16052. content: ' ';
  16053. top: -3px;
  16054. right: -3px;
  16055. bottom: -3px;
  16056. left: -3px;
  16057. border: 1px solid #2196f3;
  16058. border: 1px solid var(--base-color);
  16059. pointer-events: none;
  16060. }
  16061. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:34 */
  16062. .x-accordion-item {
  16063. margin: 0 0 5px;
  16064. }
  16065. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:37 */
  16066. .x-accordion-item .x-accordion-hd {
  16067. background: #f5f5f5;
  16068. background: var(--alt-background-color);
  16069. border-width: 0;
  16070. border-color: #2196f3;
  16071. border-color: var(--base-color);
  16072. padding: 16px 8px;
  16073. }
  16074. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:45 */
  16075. .x-accordion-item .x-accordion-hd-over {
  16076. background-color: #f6f6f6;
  16077. }
  16078. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:48 */
  16079. .x-accordion-item .x-accordion-hd-over .x-tool-tool-el {
  16080. background-color: #f6f6f6;
  16081. }
  16082. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:54 */
  16083. .x-accordion-item .x-accordion-hd-sibling-expanded {
  16084. border-top-color: #2196f3;
  16085. border-top-color: var(--base-color);
  16086. border-top-width: 0;
  16087. }
  16088. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:59 */
  16089. .x-accordion-item .x-accordion-hd-last-collapsed {
  16090. border-bottom-color: #f5f5f5;
  16091. border-bottom-color: var(--alt-background-color);
  16092. }
  16093. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:63 */
  16094. .x-accordion-item .x-accordion-body {
  16095. border-width: 0;
  16096. }
  16097. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:72 */
  16098. .x-accordion-hd .x-tool-tool-el {
  16099. background-color: #f5f5f5;
  16100. background-color: var(--alt-background-color);
  16101. color: #616161;
  16102. }
  16103. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:77 */
  16104. .x-accordion-hd .x-tool-img {
  16105. background-image: url(images/tools/tool-sprites-dark.png);
  16106. background-image: none;
  16107. }
  16108. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:87 */
  16109. .x-accordion-hd .x-tool-collapse-top,
  16110. .x-accordion-hd .x-tool-collapse-bottom {
  16111. font: 16px/1 'Font Awesome 5 Free';
  16112. background-image: none;
  16113. }
  16114. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16115. .x-accordion-hd .x-tool-collapse-top:before,
  16116. .x-accordion-hd .x-tool-collapse-bottom:before {
  16117. content: '\f068';
  16118. }
  16119. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:106 */
  16120. .x-accordion-hd .x-tool-expand-top,
  16121. .x-accordion-hd .x-tool-expand-bottom {
  16122. font: 16px/1 'Font Awesome 5 Free';
  16123. background-image: none;
  16124. }
  16125. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16126. .x-accordion-hd .x-tool-expand-top:before,
  16127. .x-accordion-hd .x-tool-expand-bottom:before {
  16128. content: '\f067';
  16129. }
  16130. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Accordion.scss:126 */
  16131. .x-keyboard-mode .x-accordion-hd .x-tool-focus {
  16132. outline: 1px solid #2196f3;
  16133. outline: 1px solid var(--base-color);
  16134. outline-offset: 2px;
  16135. }
  16136. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:63 */
  16137. .x-ie .x-keyboard-mode .x-accordion-hd .x-tool-focus,
  16138. .x-ie10p .x-keyboard-mode .x-accordion-hd .x-tool-focus,
  16139. .x-edge .x-keyboard-mode .x-accordion-hd .x-tool-focus {
  16140. outline: none;
  16141. }
  16142. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/css-outline.scss:39 */
  16143. .x-ie .x-keyboard-mode .x-accordion-hd .x-tool-focus:after,
  16144. .x-ie10p .x-keyboard-mode .x-accordion-hd .x-tool-focus:after,
  16145. .x-edge .x-keyboard-mode .x-accordion-hd .x-tool-focus:after {
  16146. position: absolute;
  16147. content: ' ';
  16148. top: -3px;
  16149. right: -3px;
  16150. bottom: -3px;
  16151. left: -3px;
  16152. border: 1px solid #2196f3;
  16153. border: 1px solid var(--base-color);
  16154. pointer-events: none;
  16155. }
  16156. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Border.scss:5 */
  16157. body.x-border-layout-ct,
  16158. div.x-border-layout-ct {
  16159. background-color: #e1e1e1;
  16160. background-color: var(--faded-color);
  16161. }
  16162. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/layout/container/Form.scss:1 */
  16163. .x-form-layout-wrap {
  16164. border-spacing: 10px;
  16165. }
  16166. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:1 */
  16167. .x-resizable-handle {
  16168. position: absolute;
  16169. z-index: 100;
  16170. font-size: 1px;
  16171. line-height: 10px;
  16172. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  16173. opacity: 0;
  16174. background-color: #ececec;
  16175. color: #919191;
  16176. text-align: center;
  16177. }
  16178. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:20 */
  16179. .x-collapsed .x-resizable-handle {
  16180. display: none;
  16181. }
  16182. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:24 */
  16183. .x-resizable-handle-southeast {
  16184. cursor: se-resize;
  16185. }
  16186. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:27 */
  16187. .x-resizable-handle-southeast:before {
  16188. position: absolute;
  16189. bottom: 0;
  16190. right: 0;
  16191. }
  16192. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:34 */
  16193. .x-resizable-handle-northwest {
  16194. cursor: nw-resize;
  16195. }
  16196. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:37 */
  16197. .x-resizable-handle-northwest:before {
  16198. position: absolute;
  16199. top: 0;
  16200. left: 0;
  16201. }
  16202. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:44 */
  16203. .x-resizable-handle-northeast {
  16204. cursor: ne-resize;
  16205. }
  16206. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:47 */
  16207. .x-resizable-handle-northeast:before {
  16208. position: absolute;
  16209. top: 0;
  16210. right: 0;
  16211. }
  16212. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:54 */
  16213. .x-resizable-handle-southwest {
  16214. cursor: sw-resize;
  16215. }
  16216. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:57 */
  16217. .x-resizable-handle-southwest:before {
  16218. position: absolute;
  16219. bottom: 0;
  16220. left: 0;
  16221. }
  16222. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:68 */
  16223. .x-resizable-handle-east:before,
  16224. .x-resizable-handle-west:before {
  16225. display: block;
  16226. position: absolute;
  16227. top: 50%;
  16228. margin-top: -0.5em;
  16229. width: 100%;
  16230. }
  16231. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:78 */
  16232. .x-resizable-handle-east {
  16233. cursor: e-resize;
  16234. width: 10px;
  16235. right: 0;
  16236. top: 0;
  16237. bottom: 0;
  16238. }
  16239. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:86 */
  16240. .x-resizable-handle-south {
  16241. cursor: s-resize;
  16242. height: 10px;
  16243. left: 0;
  16244. right: 0;
  16245. bottom: 0;
  16246. }
  16247. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:94 */
  16248. .x-resizable-handle-west {
  16249. cursor: w-resize;
  16250. width: 10px;
  16251. left: 0;
  16252. top: 0;
  16253. bottom: 0;
  16254. }
  16255. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:102 */
  16256. .x-resizable-handle-north {
  16257. cursor: n-resize;
  16258. height: 10px;
  16259. left: 0;
  16260. right: 0;
  16261. top: 0;
  16262. }
  16263. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:110 */
  16264. .x-resizable-handle-southeast {
  16265. width: 10px;
  16266. height: 10px;
  16267. right: 0;
  16268. bottom: 0;
  16269. z-index: 101;
  16270. }
  16271. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:118 */
  16272. .x-resizable-handle-northwest {
  16273. width: 10px;
  16274. height: 10px;
  16275. left: 0;
  16276. top: 0;
  16277. z-index: 101;
  16278. }
  16279. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:126 */
  16280. .x-resizable-handle-northeast {
  16281. width: 10px;
  16282. height: 10px;
  16283. right: 0;
  16284. top: 0;
  16285. z-index: 101;
  16286. }
  16287. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:134 */
  16288. .x-resizable-handle-southwest {
  16289. width: 10px;
  16290. height: 10px;
  16291. left: 0;
  16292. bottom: 0;
  16293. z-index: 101;
  16294. }
  16295. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:145 */
  16296. .x-tablet .x-resizable-handle-north,
  16297. .x-tablet .x-resizable-handle-south {
  16298. height: 20px;
  16299. }
  16300. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:149 */
  16301. .x-tablet .x-resizable-handle-east,
  16302. .x-tablet .x-resizable-handle-west {
  16303. width: 20px;
  16304. }
  16305. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:153 */
  16306. .x-tablet .x-resizable-handle-northwest,
  16307. .x-tablet .x-resizable-handle-northeast,
  16308. .x-tablet .x-resizable-handle-southwest,
  16309. .x-tablet .x-resizable-handle-southeast {
  16310. width: 20px;
  16311. height: 20px;
  16312. }
  16313. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:163 */
  16314. .x-window .x-window-handle {
  16315. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  16316. opacity: 0;
  16317. }
  16318. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:167 */
  16319. .x-window-collapsed .x-window-handle {
  16320. display: none;
  16321. }
  16322. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:172 */
  16323. .x-resizable-proxy {
  16324. border: 1px dashed #3b5a82;
  16325. position: absolute;
  16326. overflow: hidden;
  16327. z-index: 50000;
  16328. }
  16329. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:180 */
  16330. .x-resizable-handle-over,
  16331. .x-resizable-pinned .x-resizable-handle {
  16332. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  16333. opacity: 1;
  16334. }
  16335. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:186 */
  16336. .x-resizable-handle-east-over,
  16337. .x-resizable-handle-west-over,
  16338. .x-resizable-pinned > .x-resizable-handle-east,
  16339. .x-resizable-pinned > .x-resizable-handle-west {
  16340. font: 16px/1 'Material Icons', 'Font Awesome 5 Free';
  16341. }
  16342. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16343. .x-resizable-handle-east-over:before,
  16344. .x-resizable-handle-west-over:before,
  16345. .x-resizable-pinned > .x-resizable-handle-east:before,
  16346. .x-resizable-pinned > .x-resizable-handle-west:before {
  16347. content: '\f142';
  16348. }
  16349. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:198 */
  16350. .x-resizable-handle-south-over,
  16351. .x-resizable-handle-north-over,
  16352. .x-resizable-pinned > .x-resizable-handle-south,
  16353. .x-resizable-pinned > .x-resizable-handle-north {
  16354. font: 16px/10px 'Material Icons', 'Font Awesome 5 Free';
  16355. }
  16356. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16357. .x-resizable-handle-south-over:before,
  16358. .x-resizable-handle-north-over:before,
  16359. .x-resizable-pinned > .x-resizable-handle-south:before,
  16360. .x-resizable-pinned > .x-resizable-handle-north:before {
  16361. content: '\f141';
  16362. }
  16363. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:210 */
  16364. .x-resizable-handle-southeast-over,
  16365. .x-resizable-pinned > .x-resizable-handle-southeast {
  16366. font: 16px/1 ExtJS;
  16367. }
  16368. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16369. .x-resizable-handle-southeast-over:before,
  16370. .x-resizable-pinned > .x-resizable-handle-southeast:before {
  16371. content: "\e60c";
  16372. }
  16373. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:220 */
  16374. .x-resizable-handle-northwest-over,
  16375. .x-resizable-pinned > .x-resizable-handle-northwest {
  16376. font: 16px/1 ExtJS;
  16377. }
  16378. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16379. .x-resizable-handle-northwest-over:before,
  16380. .x-resizable-pinned > .x-resizable-handle-northwest:before {
  16381. content: "\e609";
  16382. }
  16383. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:230 */
  16384. .x-resizable-handle-northeast-over,
  16385. .x-resizable-pinned > .x-resizable-handle-northeast {
  16386. font: 16px/1 ExtJS;
  16387. }
  16388. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16389. .x-resizable-handle-northeast-over:before,
  16390. .x-resizable-pinned > .x-resizable-handle-northeast:before {
  16391. content: "\e60a";
  16392. }
  16393. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/resizer/Resizer.scss:240 */
  16394. .x-resizable-handle-southwest-over,
  16395. .x-resizable-pinned > .x-resizable-handle-southwest {
  16396. font: 16px/1 ExtJS;
  16397. }
  16398. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16399. .x-resizable-handle-southwest-over:before,
  16400. .x-resizable-pinned > .x-resizable-handle-southwest:before {
  16401. content: "\e60b";
  16402. }
  16403. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:2 */
  16404. .x-slider:before {
  16405. content: '';
  16406. position: absolute;
  16407. border-radius: 2px;
  16408. background-color: #e1e1e1;
  16409. background-color: var(--faded-color);
  16410. box-sizing: border-box;
  16411. -moz-box-sizing: border-box;
  16412. -ms-box-sizing: border-box;
  16413. -webkit-box-sizing: border-box;
  16414. }
  16415. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:20 */
  16416. .x-slider-thumb {
  16417. background-color: #2196f3;
  16418. background-color: var(--base-color);
  16419. border-radius: 9px;
  16420. }
  16421. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:28 */
  16422. .x-slider-thumb:before {
  16423. color: #d0d0d0;
  16424. }
  16425. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:33 */
  16426. .x-slider-thumb-over {
  16427. background-color: #bce0fb;
  16428. border-color: #c5cdd4;
  16429. }
  16430. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:36 */
  16431. .x-slider-thumb-over:before {
  16432. color: #d0d0d0;
  16433. }
  16434. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:42 */
  16435. .x-keyboard-mode .x-slider-focus .x-slider-thumb {
  16436. background-color: #2196f3;
  16437. background-color: var(--base-color);
  16438. border-color: #2196f3;
  16439. border-color: var(--base-color);
  16440. }
  16441. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:45 */
  16442. .x-keyboard-mode .x-slider-focus .x-slider-thumb:before {
  16443. color: #87c1f0;
  16444. }
  16445. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:52 */
  16446. .x-keyboard-mode .x-slider-focus .x-slider-thumb-over {
  16447. background-color: #bce0fb;
  16448. }
  16449. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:57 */
  16450. .x-slider-thumb-drag {
  16451. background-color: #2093ee;
  16452. border-color: #bcc8d1;
  16453. }
  16454. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:60 */
  16455. .x-slider-thumb-drag:before {
  16456. color: #d0d0d0;
  16457. }
  16458. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:66 */
  16459. .x-keyboard-mode .x-slider-focus .x-slider-thumb-drag {
  16460. background-color: #2093ee;
  16461. }
  16462. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:79 */
  16463. .x-slider-horz {
  16464. padding-left: 9px;
  16465. background: no-repeat 0 -18px;
  16466. margin: 7px 0 7px;
  16467. }
  16468. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:86 */
  16469. .x-slider-horz .x-slider-end {
  16470. padding-right: 9px;
  16471. background: no-repeat right -36px;
  16472. }
  16473. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:91 */
  16474. .x-slider-horz .x-slider-inner {
  16475. height: 18px;
  16476. }
  16477. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:96 */
  16478. .x-slider-horz:before {
  16479. height: 2px;
  16480. width: 100%;
  16481. top: 50%;
  16482. left: 0;
  16483. margin-top: -1px;
  16484. }
  16485. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:106 */
  16486. .x-slider-horz .x-slider-thumb {
  16487. width: 18px;
  16488. height: 18px;
  16489. margin-left: -9px;
  16490. font: 0/1 ExtJS;
  16491. }
  16492. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16493. .x-slider-horz .x-slider-thumb:before {
  16494. content: "\e612";
  16495. }
  16496. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:148 */
  16497. .x-rtl.x-slider-horz {
  16498. padding-left: 0;
  16499. padding-right: 9px;
  16500. }
  16501. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:155 */
  16502. .x-rtl.x-slider-horz .x-slider-end {
  16503. padding-right: 0;
  16504. padding-left: 9px;
  16505. }
  16506. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:163 */
  16507. .x-rtl.x-slider-horz .x-slider-thumb {
  16508. margin-right: -9px;
  16509. }
  16510. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:170 */
  16511. .x-slider-ct-vert {
  16512. /* Vertical styles */
  16513. height: 100%;
  16514. }
  16515. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:174 */
  16516. .x-slider-vert {
  16517. padding-top: 10px;
  16518. height: 100%;
  16519. }
  16520. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:181 */
  16521. .x-slider-vert > .x-slider-end {
  16522. height: 100%;
  16523. }
  16524. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:183 */
  16525. .x-slider-vert > .x-slider-end > .x-slider-inner {
  16526. height: 100%;
  16527. }
  16528. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:189 */
  16529. .x-slider-vert:before {
  16530. width: 2px;
  16531. height: 100%;
  16532. left: 10px;
  16533. top: 0;
  16534. margin-left: -1px;
  16535. }
  16536. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:199 */
  16537. .x-slider-vert .x-slider-end {
  16538. padding-bottom: 10px;
  16539. background: no-repeat -20px bottom;
  16540. width: 20px;
  16541. }
  16542. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:205 */
  16543. .x-slider-vert .x-slider-inner {
  16544. width: 20px;
  16545. }
  16546. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:209 */
  16547. .x-slider-vert .x-slider-thumb {
  16548. width: 20px;
  16549. height: 20px;
  16550. margin-bottom: -10px;
  16551. font: 0/1 ExtJS;
  16552. }
  16553. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/etc/mixins/font-icon.scss:132 */
  16554. .x-slider-vert .x-slider-thumb:before {
  16555. content: "\e605";
  16556. }
  16557. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-neutral/sass/src/slider/Multi.scss:262 */
  16558. .x-slider-default-cell > .x-grid-cell-inner,
  16559. .x-sliderwidget-default-cell > .x-grid-cell-inner {
  16560. padding-top: 8px;
  16561. padding-bottom: 8px;
  16562. }
  16563. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  16564. .x-tab-default-top {
  16565. -webkit-border-radius: 0;
  16566. -moz-border-radius: 0;
  16567. -ms-border-radius: 0;
  16568. -o-border-radius: 0;
  16569. border-radius: 0;
  16570. padding: 16px 32px 16px 32px;
  16571. border-width: 0 0 5px 0;
  16572. border-style: solid;
  16573. background-color: #2196f3;
  16574. background-color: var(--base-color);
  16575. }
  16576. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  16577. .x-tab-default-top-mc {
  16578. background-color: #2196f3;
  16579. background-color: var(--base-color);
  16580. }
  16581. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  16582. .x-nbr .x-tab-default-top {
  16583. padding: 0 !important;
  16584. border-width: 0 !important;
  16585. -webkit-border-radius: 0px;
  16586. -moz-border-radius: 0px;
  16587. -ms-border-radius: 0px;
  16588. -o-border-radius: 0px;
  16589. border-radius: 0px;
  16590. background-color: transparent !important;
  16591. box-shadow: none !important;
  16592. }
  16593. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  16594. .x-tab-default-top-frameInfo {
  16595. font-family: th-0-0-5-0-0-0-5-0-16-32-16-32;
  16596. }
  16597. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  16598. .x-tab-default-top-tl {
  16599. background-position: 0 -10px;
  16600. }
  16601. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  16602. .x-tab-default-top-tr {
  16603. background-position: right -15px;
  16604. }
  16605. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  16606. .x-tab-default-top-bl {
  16607. background-position: 0 -20px;
  16608. }
  16609. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  16610. .x-tab-default-top-br {
  16611. background-position: right -25px;
  16612. }
  16613. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  16614. .x-tab-default-top-ml {
  16615. background-position: 0 top;
  16616. }
  16617. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  16618. .x-tab-default-top-mr {
  16619. background-position: right top;
  16620. }
  16621. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  16622. .x-tab-default-top-tc {
  16623. background-position: 0 0;
  16624. }
  16625. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  16626. .x-tab-default-top-bc {
  16627. background-position: 0 -5px;
  16628. }
  16629. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  16630. .x-tab-default-top-tr,
  16631. .x-tab-default-top-br,
  16632. .x-tab-default-top-mr {
  16633. padding-right: 0;
  16634. }
  16635. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  16636. .x-tab-default-top-tl,
  16637. .x-tab-default-top-bl,
  16638. .x-tab-default-top-ml {
  16639. padding-left: 0;
  16640. }
  16641. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  16642. .x-tab-default-top-tc {
  16643. height: 0;
  16644. }
  16645. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  16646. .x-tab-default-top-bc {
  16647. height: 5px;
  16648. }
  16649. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  16650. .x-tab-default-top-tl,
  16651. .x-tab-default-top-bl,
  16652. .x-tab-default-top-tr,
  16653. .x-tab-default-top-br,
  16654. .x-tab-default-top-tc,
  16655. .x-tab-default-top-bc,
  16656. .x-tab-default-top-ml,
  16657. .x-tab-default-top-mr {
  16658. background-image: url(images/tab/tab-default-top-corners.gif);
  16659. }
  16660. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  16661. .x-tab-default-top-ml,
  16662. .x-tab-default-top-mr {
  16663. background-image: url(images/tab/tab-default-top-sides.gif);
  16664. background-repeat: repeat-y;
  16665. }
  16666. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  16667. .x-tab-default-top-mc {
  16668. padding: 16px 32px 16px 32px;
  16669. }
  16670. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  16671. .x-tab-default-bottom {
  16672. -moz-border-radius-topleft: 0;
  16673. -webkit-border-top-left-radius: 0;
  16674. border-top-left-radius: 0;
  16675. -moz-border-radius-topright: 0;
  16676. -webkit-border-top-right-radius: 0;
  16677. border-top-right-radius: 0;
  16678. -moz-border-radius-bottomright: 0;
  16679. -webkit-border-bottom-right-radius: 0;
  16680. border-bottom-right-radius: 0;
  16681. -moz-border-radius-bottomleft: 0;
  16682. -webkit-border-bottom-left-radius: 0;
  16683. border-bottom-left-radius: 0;
  16684. padding: 16px 32px 16px 32px;
  16685. border-width: 5px 0 0 0;
  16686. border-style: solid;
  16687. background-color: #2196f3;
  16688. background-color: var(--base-color);
  16689. }
  16690. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  16691. .x-tab-default-bottom-mc {
  16692. background-color: #2196f3;
  16693. background-color: var(--base-color);
  16694. }
  16695. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  16696. .x-nbr .x-tab-default-bottom {
  16697. padding: 0 !important;
  16698. border-width: 0 !important;
  16699. -webkit-border-radius: 0px;
  16700. -moz-border-radius: 0px;
  16701. -ms-border-radius: 0px;
  16702. -o-border-radius: 0px;
  16703. border-radius: 0px;
  16704. background-color: transparent !important;
  16705. box-shadow: none !important;
  16706. }
  16707. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  16708. .x-tab-default-bottom-frameInfo {
  16709. font-family: th-5-0-0-0-5-0-0-0-16-32-16-32;
  16710. }
  16711. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  16712. .x-tab-default-bottom-tl {
  16713. background-position: 0 -10px;
  16714. }
  16715. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  16716. .x-tab-default-bottom-tr {
  16717. background-position: right -15px;
  16718. }
  16719. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  16720. .x-tab-default-bottom-bl {
  16721. background-position: 0 -20px;
  16722. }
  16723. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  16724. .x-tab-default-bottom-br {
  16725. background-position: right -25px;
  16726. }
  16727. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  16728. .x-tab-default-bottom-ml {
  16729. background-position: 0 bottom;
  16730. }
  16731. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  16732. .x-tab-default-bottom-mr {
  16733. background-position: right bottom;
  16734. }
  16735. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  16736. .x-tab-default-bottom-tc {
  16737. background-position: 0 0;
  16738. }
  16739. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  16740. .x-tab-default-bottom-bc {
  16741. background-position: 0 -5px;
  16742. }
  16743. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  16744. .x-tab-default-bottom-tr,
  16745. .x-tab-default-bottom-br,
  16746. .x-tab-default-bottom-mr {
  16747. padding-right: 0;
  16748. }
  16749. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  16750. .x-tab-default-bottom-tl,
  16751. .x-tab-default-bottom-bl,
  16752. .x-tab-default-bottom-ml {
  16753. padding-left: 0;
  16754. }
  16755. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  16756. .x-tab-default-bottom-tc {
  16757. height: 5px;
  16758. }
  16759. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  16760. .x-tab-default-bottom-bc {
  16761. height: 0;
  16762. }
  16763. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  16764. .x-tab-default-bottom-tl,
  16765. .x-tab-default-bottom-bl,
  16766. .x-tab-default-bottom-tr,
  16767. .x-tab-default-bottom-br,
  16768. .x-tab-default-bottom-tc,
  16769. .x-tab-default-bottom-bc,
  16770. .x-tab-default-bottom-ml,
  16771. .x-tab-default-bottom-mr {
  16772. background-image: url(images/tab/tab-default-bottom-corners.gif);
  16773. }
  16774. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  16775. .x-tab-default-bottom-ml,
  16776. .x-tab-default-bottom-mr {
  16777. background-image: url(images/tab/tab-default-bottom-sides.gif);
  16778. background-repeat: repeat-y;
  16779. }
  16780. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  16781. .x-tab-default-bottom-mc {
  16782. padding: 16px 32px 16px 32px;
  16783. }
  16784. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  16785. .x-tab-default-left {
  16786. -moz-border-radius-topleft: 0;
  16787. -webkit-border-top-left-radius: 0;
  16788. border-top-left-radius: 0;
  16789. -moz-border-radius-topright: 0;
  16790. -webkit-border-top-right-radius: 0;
  16791. border-top-right-radius: 0;
  16792. -moz-border-radius-bottomright: 0;
  16793. -webkit-border-bottom-right-radius: 0;
  16794. border-bottom-right-radius: 0;
  16795. -moz-border-radius-bottomleft: 0;
  16796. -webkit-border-bottom-left-radius: 0;
  16797. border-bottom-left-radius: 0;
  16798. padding: 16px 32px 16px 32px;
  16799. border-width: 0 5px 0 0;
  16800. border-style: solid;
  16801. background-color: #2196f3;
  16802. background-color: var(--base-color);
  16803. }
  16804. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  16805. .x-tab-default-left-mc {
  16806. background-color: #2196f3;
  16807. background-color: var(--base-color);
  16808. }
  16809. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  16810. .x-nbr .x-tab-default-left {
  16811. padding: 0 !important;
  16812. border-width: 0 !important;
  16813. -webkit-border-radius: 0px;
  16814. -moz-border-radius: 0px;
  16815. -ms-border-radius: 0px;
  16816. -o-border-radius: 0px;
  16817. border-radius: 0px;
  16818. background-color: transparent !important;
  16819. box-shadow: none !important;
  16820. }
  16821. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  16822. .x-tab-default-left-frameInfo {
  16823. font-family: th-0-5-0-0-0-5-0-0-16-32-16-32;
  16824. }
  16825. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  16826. .x-tab-default-left-tl {
  16827. background-position: 0 -10px;
  16828. }
  16829. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  16830. .x-tab-default-left-tr {
  16831. background-position: right -15px;
  16832. }
  16833. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  16834. .x-tab-default-left-bl {
  16835. background-position: 0 -20px;
  16836. }
  16837. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  16838. .x-tab-default-left-br {
  16839. background-position: right -25px;
  16840. }
  16841. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  16842. .x-tab-default-left-ml {
  16843. background-position: 0 top;
  16844. }
  16845. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  16846. .x-tab-default-left-mr {
  16847. background-position: right top;
  16848. }
  16849. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  16850. .x-tab-default-left-tc {
  16851. background-position: 0 0;
  16852. }
  16853. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  16854. .x-tab-default-left-bc {
  16855. background-position: 0 -5px;
  16856. }
  16857. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:388 */
  16858. .x-tab-default-left-tr,
  16859. .x-tab-default-left-br,
  16860. .x-tab-default-left-mr {
  16861. padding-right: 5px;
  16862. }
  16863. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:394 */
  16864. .x-tab-default-left-tl,
  16865. .x-tab-default-left-bl,
  16866. .x-tab-default-left-ml {
  16867. padding-left: 0;
  16868. }
  16869. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:400 */
  16870. .x-tab-default-left-tc {
  16871. height: 0;
  16872. }
  16873. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:403 */
  16874. .x-tab-default-left-bc {
  16875. height: 0;
  16876. }
  16877. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:407 */
  16878. .x-tab-default-left-tl,
  16879. .x-tab-default-left-bl,
  16880. .x-tab-default-left-tr,
  16881. .x-tab-default-left-br,
  16882. .x-tab-default-left-tc,
  16883. .x-tab-default-left-bc,
  16884. .x-tab-default-left-ml,
  16885. .x-tab-default-left-mr {
  16886. background-image: url(images/tab/tab-default-left-corners.gif);
  16887. }
  16888. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:453 */
  16889. .x-tab-default-left-ml,
  16890. .x-tab-default-left-mr {
  16891. background-image: url(images/tab/tab-default-left-sides.gif);
  16892. background-repeat: repeat-y;
  16893. }
  16894. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:464 */
  16895. .x-tab-default-left-mc {
  16896. padding: 16px 32px 16px 32px;
  16897. }
  16898. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:187 */
  16899. .x-tab-default-right {
  16900. -moz-border-radius-topleft: 0;
  16901. -webkit-border-top-left-radius: 0;
  16902. border-top-left-radius: 0;
  16903. -moz-border-radius-topright: 0;
  16904. -webkit-border-top-right-radius: 0;
  16905. border-top-right-radius: 0;
  16906. -moz-border-radius-bottomright: 0;
  16907. -webkit-border-bottom-right-radius: 0;
  16908. border-bottom-right-radius: 0;
  16909. -moz-border-radius-bottomleft: 0;
  16910. -webkit-border-bottom-left-radius: 0;
  16911. border-bottom-left-radius: 0;
  16912. padding: 16px 32px 16px 32px;
  16913. border-width: 0 0 0 5px;
  16914. border-style: solid;
  16915. background-color: #2196f3;
  16916. background-color: var(--base-color);
  16917. }
  16918. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:237 */
  16919. .x-tab-default-right-mc {
  16920. background-color: #2196f3;
  16921. background-color: var(--base-color);
  16922. }
  16923. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:264 */
  16924. .x-nbr .x-tab-default-right {
  16925. padding: 0 !important;
  16926. border-width: 0 !important;
  16927. -webkit-border-radius: 0px;
  16928. -moz-border-radius: 0px;
  16929. -ms-border-radius: 0px;
  16930. -o-border-radius: 0px;
  16931. border-radius: 0px;
  16932. background-color: transparent !important;
  16933. box-shadow: none !important;
  16934. }
  16935. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:281 */
  16936. .x-tab-default-right-frameInfo {
  16937. font-family: th-0-0-0-5-0-0-0-5-16-32-16-32;
  16938. }
  16939. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:347 */
  16940. .x-tab-default-right-tl {
  16941. background-position: 0 -10px;
  16942. }
  16943. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:351 */
  16944. .x-tab-default-right-tr {
  16945. background-position: right -15px;
  16946. }
  16947. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:355 */
  16948. .x-tab-default-right-bl {
  16949. background-position: 0 -20px;
  16950. }
  16951. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:359 */
  16952. .x-tab-default-right-br {
  16953. background-position: right -25px;
  16954. }
  16955. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:363 */
  16956. .x-tab-default-right-ml {
  16957. background-position: 0 top;
  16958. }
  16959. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:371 */
  16960. .x-tab-default-right-mr {
  16961. background-position: right top;
  16962. }
  16963. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:379 */
  16964. .x-tab-default-right-tc {
  16965. background-position: 0 0;
  16966. }
  16967. /* D:/SourceCode/ext-js/ext-framework/ext-7.4.0.42/classic/theme-base/sass/etc/mixins/frame.scss:383 */
  16968. .x-tab-default-right-bc {
  16969. background-position: 0 -5px;
  16970. }