ext-all-gray-debug.css 381 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as
  7. published by the Free Software Foundation and appearing in the file LICENSE included in the
  8. packaging of this file.
  9. Please review the following information to ensure the GNU General Public License version 3.0
  10. requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  11. If you are unsure which license is appropriate for your use, please contact the sales department
  12. at http://www.sencha.com/contact.
  13. Build date: 2012-07-04 21:11:01 (65ff594cd80b9bad45df640c22cc0adb52c95a7b)
  14. */
  15. /**
  16. * @class Global_CSS
  17. *
  18. * Global CSS variables and mixins of Sencha Touch.
  19. */
  20. /**
  21. * @var {string} $prefix
  22. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  23. * JavaScript application.
  24. */
  25. /**
  26. * @var {string} $theme-name
  27. * The name of the theme. This must match the the output directory of the images.
  28. * (defaults to 'default')
  29. */
  30. /**
  31. * @var {boolean/string} $relative-image-path-for-uis
  32. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  33. * It can also be a string of the path value.
  34. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  35. */
  36. /**
  37. * @var {string} $font-family
  38. * The default font-family to be used throughout the theme.
  39. */
  40. /**
  41. * @var {string} $base-gradient
  42. * The base gradient to be used throughout the theme.
  43. */
  44. /**
  45. * @var {color} $base-color
  46. * The base color to be used throughout the theme.
  47. */
  48. /**
  49. * @var {boolean} $include-not-found-images
  50. * True to include files which are not found when compiling your SASS
  51. */
  52. /**
  53. * @var {boolean} $include-ie
  54. * True to include Internet Explorer specific rules
  55. */
  56. /**
  57. * @var {boolean} $include-ff
  58. * True to include Firefox specific rules
  59. */
  60. /**
  61. * @var {boolean} $include-chrome
  62. * True to include Chrome specific rules
  63. */
  64. /**
  65. * @var {boolean} $include-safari
  66. * True to include Safari specific rules
  67. */
  68. /**
  69. * @var {boolean} $include-opera
  70. * True to include Opera specific rules
  71. */
  72. /**
  73. * @var {boolean} $include-webkit
  74. * True to include Webkit specific rules
  75. */
  76. /**
  77. * @var {boolean} $compile-all
  78. * True to copile all CSS, even if above include rules are false
  79. */
  80. /**
  81. * @var {boolean} $scope-reset-css
  82. * True to scope the reset CSS within the $prefix variable.
  83. */
  84. /**
  85. * @var {color} $css-shadow-background-color
  86. * The base color for CSS shadows
  87. */
  88. /**
  89. * @var {color} $include-shadow-images
  90. * True to include all shadow images.
  91. */
  92. /**
  93. * @class Ext.form.field.Base
  94. */
  95. /**
  96. * @var {measurement} $form-field-height
  97. * Height for form fields.
  98. */
  99. /**
  100. * @var {measurement} $form-toolbar-field-height
  101. * Height for form fields in toolbar.
  102. */
  103. /**
  104. * @var {measurement} $form-error-icon-width
  105. * Width for form error icons.
  106. */
  107. /**
  108. * @var {measurement} $form-field-padding
  109. * Padding around form fields.
  110. */
  111. /**
  112. * @var {measurement} $form-field-font-size
  113. * Font size for form fields.
  114. */
  115. /**
  116. * @var {font-family} $form-field-font-family
  117. * Font family for form fields.
  118. */
  119. /**
  120. * @var {font-weight} $form-field-font-weight
  121. * Font weight for form fields.
  122. */
  123. /**
  124. * @var {font} $form-field-font
  125. * Font for form fields.
  126. */
  127. /**
  128. * @var {color} $form-field-color
  129. * Text color for form fields.
  130. */
  131. /**
  132. * @var {color} $form-field-empty-color
  133. * Text color for empty form fields.
  134. */
  135. /**
  136. * @var {color} $form-field-border-color
  137. * Border color for form fields.
  138. */
  139. /**
  140. * @var {measurement} $form-field-border-width
  141. * Border width for form fields.
  142. */
  143. /**
  144. * @var {color} $form-field-focus-border-color
  145. * Border color for focused form fields.
  146. */
  147. /**
  148. * @var {color} $form-field-invalid-border-color
  149. * Border color for invalid form fields.
  150. */
  151. /**
  152. * @var {color} $form-field-background-color
  153. * Background color for form fields.
  154. */
  155. /**
  156. * @var {string} $form-field-background-image
  157. * Background image for form fields.
  158. */
  159. /**
  160. * @var {color} $form-field-invalid-background-color
  161. * Background color for invalid form fields.
  162. */
  163. /**
  164. * @var {string} $form-field-invalid-background-image
  165. * Background image for invalid form fields.
  166. */
  167. /**
  168. * @var {background-repeat} $form-field-invalid-background-repeat
  169. * Background repeat for invalid form fields.
  170. */
  171. /**
  172. * @var {background-position} $form-field-invalid-background-position
  173. * Background position for invalid form fields.
  174. */
  175. /**
  176. * @class Ext.form.field.TextArea
  177. */
  178. /**
  179. * @class Ext.form.Label
  180. */
  181. /**
  182. * @class Ext.form.field.Checkbox
  183. */
  184. /**
  185. * @class Ext.form.field.Radio
  186. */
  187. /* Error messages */
  188. /**
  189. * @class Ext.form.field.Trigger
  190. */
  191. /**
  192. * @class Ext.form.FieldSet
  193. */
  194. /**
  195. * @class Ext.slider.Multi
  196. */
  197. /**
  198. * Creates a background gradient.
  199. *
  200. * @param {Color} $bg-color The background color of the gradient
  201. * @param {String/List} [$type] The type of gradient to be used. Can either
  202. * be a String which is a predefined gradient, or it can can be a list of
  203. * color_stops. If none is set, it will still set the `background-color`
  204. * to the $background-color.
  205. * @param {String} [$direction=top] The direction of the gradient. Can either be
  206. * `top` or `left`.
  207. * @member Global_CSS
  208. */
  209. /*
  210. * Method which inserts a full background-image property for a theme image.
  211. * It checks if the file exists and if it doesn't, it'll throw an error.
  212. * By default it will not include the background-image property if it is not found,
  213. * but this can be changed by changing the default value of $include-missing-images to
  214. * be true.
  215. */
  216. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  217. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  218. h4, h5, h6, pre, code, form, fieldset, legend,
  219. input, textarea, p, blockquote, th, td {
  220. margin: 0;
  221. padding: 0; }
  222. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  223. table {
  224. border-collapse: collapse;
  225. border-spacing: 0; }
  226. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  227. fieldset, img {
  228. border: 0; }
  229. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  230. address, caption, cite, code,
  231. dfn, em, strong, th, var {
  232. font-style: normal;
  233. font-weight: normal; }
  234. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  235. li {
  236. list-style: none; }
  237. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  238. caption, th {
  239. text-align: left; }
  240. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  241. h1, h2, h3, h4, h5, h6 {
  242. font-size: 100%; }
  243. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  244. q:before,
  245. q:after {
  246. content: ""; }
  247. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  248. abbr, acronym {
  249. border: 0;
  250. font-variant: normal; }
  251. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  252. sup {
  253. vertical-align: text-top; }
  254. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  255. sub {
  256. vertical-align: text-bottom; }
  257. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  258. input, textarea, select {
  259. font-family: inherit;
  260. font-size: inherit;
  261. font-weight: inherit; }
  262. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  263. *:focus {
  264. outline: none; }
  265. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  266. .x-border-box,
  267. .x-border-box * {
  268. box-sizing: border-box;
  269. -moz-box-sizing: border-box;
  270. -ms-box-sizing: border-box;
  271. -webkit-box-sizing: border-box; }
  272. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  273. .x-body {
  274. color: black;
  275. font-size: 12px;
  276. font-family: tahoma, arial, verdana, sans-serif; }
  277. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  278. .x-rtl {
  279. direction: rtl; }
  280. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  281. .x-ltr {
  282. direction: ltr; }
  283. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  284. .x-clear {
  285. overflow: hidden;
  286. clear: both;
  287. font-size: 0;
  288. line-height: 0;
  289. display: table; }
  290. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  291. .x-strict .x-ie7 .x-clear {
  292. height: 0;
  293. width: 0; }
  294. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  295. .x-layer {
  296. position: absolute !important;
  297. overflow: hidden;
  298. zoom: 1; }
  299. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  300. .x-shim {
  301. position: absolute;
  302. left: 0;
  303. top: 0;
  304. overflow: hidden;
  305. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  306. opacity: 0; }
  307. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  308. .x-hide-display {
  309. display: none !important; }
  310. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  311. .x-hide-visibility {
  312. visibility: hidden !important; }
  313. /* line 56, ../themes/stylesheets/ext4/default/core/_core.scss */
  314. .x-item-disabled .x-form-item-label,
  315. .x-item-disabled .x-form-field,
  316. .x-item-disabled .x-form-cb-label,
  317. .x-item-disabled .x-form-trigger {
  318. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  319. opacity: 0.3; }
  320. /* line 60, ../themes/stylesheets/ext4/default/core/_core.scss */
  321. .x-ie6 .x-item-disabled {
  322. filter: none; }
  323. /* line 65, ../themes/stylesheets/ext4/default/core/_core.scss */
  324. .x-hidden,
  325. .x-hide-offsets {
  326. display: block !important;
  327. visibility: hidden !important;
  328. position: absolute!important;
  329. left: -10000px !important;
  330. top: -10000px !important; }
  331. /* line 75, ../themes/stylesheets/ext4/default/core/_core.scss */
  332. .x-hide-nosize {
  333. height: 0!important;
  334. width: 0!important; }
  335. /* line 80, ../themes/stylesheets/ext4/default/core/_core.scss */
  336. .x-masked-relative {
  337. position: relative; }
  338. /* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
  339. .x-ie6 .x-masked select,
  340. .x-ie6.x-body-masked select {
  341. visibility: hidden !important; }
  342. /* line 92, ../themes/stylesheets/ext4/default/core/_core.scss */
  343. .x-css-shadow {
  344. position: absolute;
  345. -moz-border-radius: 5px 5px;
  346. -webkit-border-radius: 5px 5px;
  347. -o-border-radius: 5px 5px;
  348. -ms-border-radius: 5px 5px;
  349. -khtml-border-radius: 5px 5px;
  350. border-radius: 5px 5px; }
  351. /* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
  352. .x-ie-shadow {
  353. background-color: #777;
  354. display: none;
  355. position: absolute;
  356. overflow: hidden;
  357. zoom: 1; }
  358. /* line 107, ../themes/stylesheets/ext4/default/core/_core.scss */
  359. .x-box-tl {
  360. background: transparent no-repeat 0 0;
  361. zoom: 1; }
  362. /* line 112, ../themes/stylesheets/ext4/default/core/_core.scss */
  363. .x-box-tc {
  364. height: 8px;
  365. background: transparent repeat-x 0 0;
  366. overflow: hidden; }
  367. /* line 118, ../themes/stylesheets/ext4/default/core/_core.scss */
  368. .x-box-tr {
  369. background: transparent no-repeat right -8px; }
  370. /* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
  371. .x-box-ml {
  372. background: transparent repeat-y 0;
  373. padding-left: 4px;
  374. overflow: hidden;
  375. zoom: 1; }
  376. /* line 129, ../themes/stylesheets/ext4/default/core/_core.scss */
  377. .x-box-mc {
  378. background: repeat-x 0 -16px;
  379. padding: 4px 10px; }
  380. /* line 134, ../themes/stylesheets/ext4/default/core/_core.scss */
  381. .x-box-mc h3 {
  382. margin: 0 0 4px 0;
  383. zoom: 1; }
  384. /* line 139, ../themes/stylesheets/ext4/default/core/_core.scss */
  385. .x-box-mr {
  386. background: transparent repeat-y right;
  387. padding-right: 4px;
  388. overflow: hidden; }
  389. /* line 145, ../themes/stylesheets/ext4/default/core/_core.scss */
  390. .x-box-bl {
  391. background: transparent no-repeat 0 -16px;
  392. zoom: 1; }
  393. /* line 150, ../themes/stylesheets/ext4/default/core/_core.scss */
  394. .x-box-bc {
  395. background: transparent repeat-x 0 -8px;
  396. height: 8px;
  397. overflow: hidden; }
  398. /* line 156, ../themes/stylesheets/ext4/default/core/_core.scss */
  399. .x-box-br {
  400. background: transparent no-repeat right -24px; }
  401. /* line 160, ../themes/stylesheets/ext4/default/core/_core.scss */
  402. .x-box-tl, .x-box-bl {
  403. padding-left: 8px;
  404. overflow: hidden; }
  405. /* line 165, ../themes/stylesheets/ext4/default/core/_core.scss */
  406. .x-box-tr, .x-box-br {
  407. padding-right: 8px;
  408. overflow: hidden; }
  409. /* line 170, ../themes/stylesheets/ext4/default/core/_core.scss */
  410. .x-box-tl {
  411. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  412. /* line 174, ../themes/stylesheets/ext4/default/core/_core.scss */
  413. .x-box-tc {
  414. background-image: url('../../resources/themes/images/gray/box/tb.gif'); }
  415. /* line 178, ../themes/stylesheets/ext4/default/core/_core.scss */
  416. .x-box-tr {
  417. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  418. /* line 182, ../themes/stylesheets/ext4/default/core/_core.scss */
  419. .x-box-ml {
  420. background-image: url('../../resources/themes/images/gray/box/l.gif'); }
  421. /* line 186, ../themes/stylesheets/ext4/default/core/_core.scss */
  422. .x-box-mc {
  423. background-color: #eee;
  424. background-image: url('../../resources/themes/images/gray/box/tb.gif');
  425. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  426. color: #393939;
  427. font-size: 15px; }
  428. /* line 194, ../themes/stylesheets/ext4/default/core/_core.scss */
  429. .x-box-mc h3 {
  430. font-size: 18px;
  431. font-weight: bold; }
  432. /* line 199, ../themes/stylesheets/ext4/default/core/_core.scss */
  433. .x-box-mr {
  434. background-image: url('../../resources/themes/images/gray/box/r.gif'); }
  435. /* line 203, ../themes/stylesheets/ext4/default/core/_core.scss */
  436. .x-box-bl {
  437. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  438. /* line 207, ../themes/stylesheets/ext4/default/core/_core.scss */
  439. .x-box-bc {
  440. background-image: url('../../resources/themes/images/gray/box/tb.gif'); }
  441. /* line 211, ../themes/stylesheets/ext4/default/core/_core.scss */
  442. .x-box-br {
  443. background-image: url('../../resources/themes/images/gray/box/corners.gif'); }
  444. /* line 215, ../themes/stylesheets/ext4/default/core/_core.scss */
  445. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  446. background-image: url('../../resources/themes/images/gray/box/corners-blue.gif'); }
  447. /* line 219, ../themes/stylesheets/ext4/default/core/_core.scss */
  448. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  449. background-image: url('../../resources/themes/images/gray/box/tb-blue.gif'); }
  450. /* line 223, ../themes/stylesheets/ext4/default/core/_core.scss */
  451. .x-box-blue .x-box-mc {
  452. background-color: #c3daf9; }
  453. /* line 227, ../themes/stylesheets/ext4/default/core/_core.scss */
  454. .x-box-blue .x-box-mc h3 {
  455. color: #17385b; }
  456. /* line 231, ../themes/stylesheets/ext4/default/core/_core.scss */
  457. .x-box-blue .x-box-ml {
  458. background-image: url('../../resources/themes/images/gray/box/l-blue.gif'); }
  459. /* line 235, ../themes/stylesheets/ext4/default/core/_core.scss */
  460. .x-box-blue .x-box-mr {
  461. background-image: url('../../resources/themes/images/gray/box/r-blue.gif'); }
  462. /* line 239, ../themes/stylesheets/ext4/default/core/_core.scss */
  463. .x-container {
  464. zoom: 1; }
  465. /* line 244, ../themes/stylesheets/ext4/default/core/_core.scss */
  466. .x-container:before {
  467. content: "";
  468. clear: both;
  469. display: table; }
  470. /* line 254, ../themes/stylesheets/ext4/default/core/_core.scss */
  471. table.x-container:before,
  472. tbody.x-container:before,
  473. tr.x-container:before {
  474. display: none; }
  475. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  476. .x-focus-element {
  477. position: absolute;
  478. top: -10px;
  479. left: -10px;
  480. width: 0px;
  481. height: 0px; }
  482. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  483. .x-focus-frame {
  484. position: absolute;
  485. left: 0px;
  486. top: 0px;
  487. z-index: 100000000;
  488. width: 0px;
  489. height: 0px; }
  490. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  491. .x-focus-frame-top,
  492. .x-focus-frame-bottom,
  493. .x-focus-frame-left,
  494. .x-focus-frame-right {
  495. position: absolute;
  496. top: 0px;
  497. left: 0px; }
  498. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  499. .x-focus-frame-top,
  500. .x-focus-frame-bottom {
  501. border-top: solid 2px #15428b;
  502. height: 2px; }
  503. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  504. .x-focus-frame-left,
  505. .x-focus-frame-right {
  506. border-left: solid 2px #15428b;
  507. width: 2px; }
  508. /**
  509. * Creates the base structure of a BoundList.
  510. * @member Ext.view.BoundList
  511. */
  512. /**
  513. * Creates the base structure of an Ext.Button
  514. * @member Ext.button.Button
  515. */
  516. /**
  517. * Creates a visual theme of an Ext.Button
  518. * @member Ext.button.Button
  519. */
  520. /**
  521. * Creates the base structure of a button group.
  522. * @member Ext.container.ButtonGroup
  523. */
  524. /**
  525. * Creates a visual theme of a button group.
  526. * @member Ext.container.ButtonGroup
  527. */
  528. /**
  529. * Creates the base structure of a date picker.
  530. * @member Ext.picker.Date
  531. */
  532. /**
  533. * Creates base structure for Ext.picker.Color
  534. * @member Ext.picker.Color
  535. */
  536. /**
  537. * Creates the base structure of a Menu
  538. * @member Ext.menu.Menu
  539. */
  540. /**
  541. * Create the base structure of an Ext.Panel
  542. * @member Ext.panel.Panel
  543. */
  544. /**
  545. * Creates a visual theme for an Ext.Panel
  546. * @member Ext.panel.Panel
  547. */
  548. /**
  549. * Creates base structure for Toolbar
  550. * @member Ext.toolbar.Toolbar
  551. */
  552. /**
  553. * Creates a visual theme for an Toolbar.
  554. * @param {String} $ui The name of the UI
  555. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  556. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  557. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  558. * @member Ext.toolbar.Toolbar
  559. */
  560. /**
  561. * Creates the base structure of Ext.form.Panel.
  562. * @member Ext.form.Panel
  563. */
  564. /**
  565. * Creates the base structure of form field.
  566. * @member Ext.form.field.Base
  567. */
  568. /**
  569. * Creates the base structure of FieldSet.
  570. * @member Ext.form.FieldSet
  571. */
  572. /**
  573. * Creates the base structure of file field.
  574. * @member Ext.form.field.File
  575. */
  576. /**
  577. * Creates the base structure of checkbox field.
  578. * @member Ext.form.field.Checkbox
  579. */
  580. /**
  581. * Creates the base structure of CheckboxGroup.
  582. * @member Ext.form.CheckboxGroup
  583. */
  584. /**
  585. * Creates the base structure of trigger field.
  586. * @member Ext.form.field.Trigger
  587. */
  588. /**
  589. * Creates the base structure of HtmlEditor field.
  590. * @member Ext.form.field.HtmlEditor
  591. */
  592. /**
  593. * Creates the base structure of QuickTip.
  594. * @member Ext.tip.QuickTip
  595. */
  596. /**
  597. * Creates the base structure of an Ext.Window
  598. * @member Ext.window.Window
  599. */
  600. /**
  601. * Creates a visual theme for an Ext.Panel
  602. * @member Ext.window.Window
  603. */
  604. /**
  605. * Creates a visual theme for TabBar
  606. * @member Ext.tab.Bar
  607. */
  608. /**
  609. * Creates the base structure of a Tab.
  610. * @member Ext.tab.Tab
  611. */
  612. /**
  613. * Creates the base structure of slider.
  614. * @member Ext.slider.Multi
  615. */
  616. /**
  617. * Creates base structure for a Grid.
  618. * @member Ext.grid.Panel
  619. */
  620. /**
  621. * Creates the base structure of Tree.
  622. * @member Ext.tree.Panel
  623. */
  624. /* Styles for Ext.LoadMask */
  625. /* line 3, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  626. .x-mask {
  627. z-index: 100;
  628. position: absolute;
  629. top: 0;
  630. left: 0;
  631. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  632. opacity: 0.5;
  633. width: 100%;
  634. height: 100%;
  635. zoom: 1;
  636. background: #cccccc; }
  637. /* line 19, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  638. .x-mask-msg {
  639. z-index: 20001;
  640. position: absolute;
  641. top: 0;
  642. left: 0;
  643. padding: 2px;
  644. border: 1px solid;
  645. border-color: #d0d0d0;
  646. background-image: none;
  647. background-color: #e0e0e0; }
  648. /* line 38, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  649. .x-mask-msg div {
  650. padding: 5px 10px 5px 25px;
  651. background-image: url('../../resources/themes/images/gray/grid/loading.gif');
  652. background-repeat: no-repeat;
  653. background-position: 5px center;
  654. cursor: wait;
  655. border: 1px solid #b3b3b3;
  656. background-color: #eeeeee;
  657. color: #222222;
  658. font: normal 11px tahoma, arial, verdana, sans-serif; }
  659. /**
  660. * Creates the base structure of an Ext.ProgressBar
  661. * @member Ext.ProgressBar
  662. */
  663. /**
  664. * Creates a visual theme for an Ext.ProgressBar
  665. * @member Ext.ProgressBar
  666. */
  667. /**
  668. * Creates base structure for a Draw Component.
  669. * @member Ext.draw.Component
  670. */
  671. /**
  672. * Creates the base structure of Viewport.
  673. * @member Ext.container.Viewport
  674. */
  675. /**
  676. * W3C suggested default style sheet for HTML 4:
  677. * [http://www.w3.org/TR/CSS21/sample.html](http://www.w3.org/TR/CSS21/sample.html)
  678. *
  679. * @member Global_CSS
  680. */
  681. /* line 6, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  682. .x-boundlist {
  683. border-width: 1px;
  684. border-style: solid;
  685. border-color: #b5b8c8;
  686. background: white; }
  687. /* line 12, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  688. .x-boundlist .x-toolbar {
  689. border-width: 1px 0 0 0; }
  690. /* line 22, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  691. .x-strict .x-ie6 .x-boundlist-list-ct,
  692. .x-strict .x-ie7 .x-boundlist-list-ct {
  693. position: relative; }
  694. /* line 29, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  695. .x-boundlist-item {
  696. padding: 2px;
  697. user-select: none;
  698. -o-user-select: none;
  699. -ms-user-select: none;
  700. -moz-user-select: -moz-none;
  701. -webkit-user-select: none;
  702. cursor: default;
  703. cursor: pointer;
  704. cursor: hand;
  705. position: relative;
  706. /*allow hover in IE on empty items*/
  707. border-width: 1px;
  708. border-style: dotted;
  709. border-color: white; }
  710. /* line 43, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  711. .x-boundlist-selected {
  712. background: #d3d3d3;
  713. border-color: #b3abaa; }
  714. /* line 48, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  715. .x-boundlist-item-over {
  716. background: #e0e0e0;
  717. border-color: #bfb8b8; }
  718. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  719. .x-boundlist-floating {
  720. border-top-width: 0; }
  721. /* line 57, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  722. .x-boundlist-above {
  723. border-top-width: 1px;
  724. border-bottom-width: 1px; }
  725. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  726. .x-btn {
  727. display: inline-block;
  728. zoom: 1;
  729. *display: inline;
  730. position: relative;
  731. cursor: pointer;
  732. cursor: hand;
  733. white-space: nowrap;
  734. vertical-align: middle;
  735. background-repeat: no-repeat; }
  736. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  737. .x-btn * {
  738. cursor: pointer;
  739. cursor: hand; }
  740. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  741. .x-btn em {
  742. background-repeat: no-repeat; }
  743. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  744. .x-btn em a {
  745. text-decoration: none;
  746. display: block;
  747. color: inherit;
  748. width: 100%;
  749. zoom: 1; }
  750. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  751. .x-btn button {
  752. width: 100%;
  753. display: block;
  754. margin: 0;
  755. padding: 0;
  756. border: 0;
  757. background: none;
  758. outline: 0 none;
  759. overflow: hidden;
  760. vertical-align: bottom;
  761. -webkit-appearance: none; }
  762. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  763. .x-btn button::-moz-focus-inner {
  764. border: 0;
  765. padding: 0; }
  766. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  767. .x-btn .x-btn-inner {
  768. display: block;
  769. white-space: nowrap;
  770. background-color: transparent;
  771. background-repeat: no-repeat;
  772. background-position: left center;
  773. overflow: hidden; }
  774. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  775. .x-btn .x-btn-left .x-btn-inner {
  776. text-align: left; }
  777. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  778. .x-btn .x-btn-center .x-btn-inner {
  779. text-align: center; }
  780. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  781. .x-btn .x-btn-right .x-btn-inner {
  782. text-align: right; }
  783. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  784. .x-btn-disabled span {
  785. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  786. opacity: 0.5; }
  787. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  788. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  789. filter: none; }
  790. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  791. .x-ie7 .x-btn-disabled,
  792. .x-ie8 .x-btn-disabled {
  793. filter: none; }
  794. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  795. .x-ie6 .x-btn-disabled .x-btn-icon,
  796. .x-ie7 .x-btn-disabled .x-btn-icon,
  797. .x-ie8 .x-btn-disabled .x-btn-icon {
  798. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  799. opacity: 0.6; }
  800. /* IE9 shows scrollbars in a button unless this is set */
  801. /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  802. .x-ie9 .x-btn button {
  803. overflow: visible!important; }
  804. /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  805. * html .x-ie .x-btn button {
  806. width: 1px; }
  807. /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  808. .x-ie .x-btn button {
  809. overflow-x: visible;
  810. /*prevents extra horiz space in IE*/
  811. vertical-align: baseline;
  812. /*IE doesn't like bottom*/ }
  813. /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  814. .x-strict .x-ie6 .x-btn .x-frame-mc,
  815. .x-strict .x-ie7 .x-btn .x-frame-mc {
  816. height: 100%; }
  817. /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
  818. /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  819. .x-btn .x-frame-mc {
  820. vertical-align: middle;
  821. white-space: nowrap;
  822. cursor: pointer; }
  823. /* Only center when all there is is text. Otherwise solo icons get centered. */
  824. /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  825. .x-btn-noicon .x-frame-mc {
  826. text-align: center; }
  827. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  828. .x-btn-icon-text-left .x-btn-icon {
  829. background-position: left center; }
  830. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  831. .x-btn-icon-text-right .x-btn-icon {
  832. background-position: right center; }
  833. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  834. .x-btn-icon-text-top .x-btn-icon {
  835. background-position: center top; }
  836. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  837. .x-btn-icon-text-bottom .x-btn-icon {
  838. background-position: center bottom; }
  839. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  840. .x-btn button, .x-btn a {
  841. position: relative; }
  842. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  843. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  844. position: absolute;
  845. background-repeat: no-repeat; }
  846. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  847. .x-btn-arrow-right {
  848. background: transparent no-repeat right center;
  849. padding-right: 12px; }
  850. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  851. .x-btn-arrow-right .x-btn-inner {
  852. padding-right: 0 !important; }
  853. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  854. .x-toolbar .x-btn-arrow-right {
  855. padding-right: 12px; }
  856. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  857. .x-btn-arrow-bottom {
  858. background: transparent no-repeat center bottom;
  859. padding-bottom: 12px; }
  860. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  861. .x-btn-arrow {
  862. background-image: url('../../resources/themes/images/gray/button/arrow.gif');
  863. display: block; }
  864. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  865. .x-btn-split-right,
  866. .x-btn-over .x-btn-split-right {
  867. background: transparent no-repeat right center;
  868. background-image: url('../../resources/themes/images/gray/button/s-arrow.gif');
  869. padding-right: 14px !important; }
  870. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  871. .x-btn-split-bottom,
  872. .x-btn-over .x-btn-split-bottom {
  873. background: transparent no-repeat center bottom;
  874. background-image: url('../../resources/themes/images/gray/button/s-arrow-b.gif');
  875. padding-bottom: 14px; }
  876. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  877. .x-toolbar .x-btn-split-right {
  878. background-image: url('../../resources/themes/images/gray/button/s-arrow-noline.gif');
  879. padding-right: 12px !important; }
  880. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  881. .x-toolbar .x-btn-split-bottom {
  882. background-image: url('../../resources/themes/images/gray/button/s-arrow-b-noline.gif'); }
  883. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  884. .x-btn-split {
  885. display: block; }
  886. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  887. .x-item-disabled,
  888. .x-item-disabled * {
  889. cursor: default; }
  890. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  891. .x-cycle-fixed-width .x-btn-inner {
  892. text-align: inherit; }
  893. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  894. .x-btn-over .x-btn-split-right {
  895. background-image: url('../../resources/themes/images/gray/button/s-arrow-o.gif'); }
  896. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  897. .x-btn-over .x-btn-split-bottom {
  898. background-image: url('../../resources/themes/images/gray/button/s-arrow-bo.gif'); }
  899. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  900. .x-btn-default-small {
  901. border-color: #bbbbbb; }
  902. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  903. .x-btn-default-small {
  904. -moz-border-radius: 3px;
  905. -webkit-border-radius: 3px;
  906. -o-border-radius: 3px;
  907. -ms-border-radius: 3px;
  908. -khtml-border-radius: 3px;
  909. border-radius: 3px;
  910. padding: 2px 2px 2px 2px;
  911. border-width: 1px;
  912. border-style: solid;
  913. background-image: none;
  914. background-color: #f8f8f8;
  915. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  916. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  917. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  918. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  919. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  920. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  921. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  922. .x-nlg .x-btn-default-small-mc {
  923. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-bg.gif');
  924. background-color: #f8f8f8; }
  925. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  926. .x-nbr .x-btn-default-small {
  927. padding: 0 !important;
  928. border-width: 0 !important;
  929. -moz-border-radius: 0px;
  930. -webkit-border-radius: 0px;
  931. -o-border-radius: 0px;
  932. -ms-border-radius: 0px;
  933. -khtml-border-radius: 0px;
  934. border-radius: 0px;
  935. background-color: transparent;
  936. background-position: 1100303px 1000303px; }
  937. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  938. .x-nbr .x-btn-default-small-tl,
  939. .x-nbr .x-btn-default-small-bl,
  940. .x-nbr .x-btn-default-small-tr,
  941. .x-nbr .x-btn-default-small-br,
  942. .x-nbr .x-btn-default-small-tc,
  943. .x-nbr .x-btn-default-small-bc,
  944. .x-nbr .x-btn-default-small-ml,
  945. .x-nbr .x-btn-default-small-mr {
  946. zoom: 1;
  947. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-corners.gif'); }
  948. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  949. .x-nbr .x-btn-default-small-ml,
  950. .x-nbr .x-btn-default-small-mr {
  951. zoom: 1;
  952. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-sides.gif');
  953. background-position: 0 0; }
  954. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  955. .x-nbr .x-btn-default-small-mc {
  956. padding: 0px 0px 0px 0px; }
  957. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  958. .x-strict .x-ie7 .x-btn-default-small-tl,
  959. .x-strict .x-ie7 .x-btn-default-small-bl {
  960. position: relative;
  961. right: 0; }
  962. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  963. .x-btn-default-small .x-btn-inner {
  964. font-size: 11px;
  965. font-weight: normal;
  966. font-family: tahoma, arial, verdana, sans-serif;
  967. color: #333333;
  968. background-repeat: no-repeat;
  969. padding: 0 4px; }
  970. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  971. .x-btn-default-small-icon button,
  972. .x-btn-default-small-icon a,
  973. .x-btn-default-small-icon .x-btn-inner,
  974. .x-btn-default-small-noicon button,
  975. .x-btn-default-small-noicon a,
  976. .x-btn-default-small-noicon .x-btn-inner {
  977. height: 16px;
  978. line-height: 16px; }
  979. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  980. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  981. padding: 0; }
  982. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  983. .x-btn-default-small-icon .x-btn-inner {
  984. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  985. width: 16px;
  986. padding: 0; }
  987. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  988. .x-btn-default-small-icon .x-btn-icon {
  989. width: 16px;
  990. height: 16px;
  991. top: 0;
  992. left: 0;
  993. bottom: 0;
  994. right: 0; }
  995. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  996. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  997. height: 16px; }
  998. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  999. .x-btn-default-small-icon-text-left .x-btn-inner {
  1000. height: 16px;
  1001. line-height: 16px;
  1002. padding-left: 20px; }
  1003. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1004. .x-btn-default-small-icon-text-left .x-btn-icon {
  1005. width: 16px;
  1006. height: auto;
  1007. top: 0;
  1008. left: 0;
  1009. bottom: 0;
  1010. right: auto; }
  1011. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1012. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  1013. height: 16px; }
  1014. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1015. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  1016. height: 16px; }
  1017. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1018. .x-btn-default-small-icon-text-right .x-btn-inner {
  1019. height: 16px;
  1020. line-height: 16px;
  1021. padding-right: 20px !important; }
  1022. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1023. .x-btn-default-small-icon-text-right .x-btn-icon {
  1024. width: 16px;
  1025. height: auto;
  1026. top: 0;
  1027. left: auto;
  1028. bottom: 0;
  1029. right: 0; }
  1030. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1031. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  1032. height: 16px; }
  1033. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1034. .x-btn-default-small-icon-text-top .x-btn-inner {
  1035. padding-top: 20px; }
  1036. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1037. .x-btn-default-small-icon-text-top .x-btn-icon {
  1038. width: auto;
  1039. height: 16px;
  1040. top: 0;
  1041. left: 0;
  1042. bottom: auto;
  1043. right: 0; }
  1044. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1045. .x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon {
  1046. width: 16px; }
  1047. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1048. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  1049. padding-bottom: 20px; }
  1050. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1051. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1052. width: auto;
  1053. height: 16px;
  1054. top: auto;
  1055. left: 0;
  1056. bottom: 0;
  1057. right: 0; }
  1058. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1059. .x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon {
  1060. width: 16px; }
  1061. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1062. .x-btn-default-small-over {
  1063. border-color: #9d9d9d;
  1064. background-image: none;
  1065. background-color: #f3f3f3;
  1066. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1067. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1068. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1069. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1070. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1071. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1072. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1073. .x-btn-default-small-focus {
  1074. border-color: #9d9d9d;
  1075. background-image: none;
  1076. background-color: #f3f3f3;
  1077. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1078. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1079. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1080. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1081. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1082. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1083. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1084. .x-btn-default-small-menu-active,
  1085. .x-btn-default-small-pressed {
  1086. border-color: #9d9d9d;
  1087. background-image: none;
  1088. background-color: #d6d6d6;
  1089. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1090. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1091. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1092. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1093. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1094. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1095. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1096. .x-btn-default-small-disabled {
  1097. border-color: #d7d7d7;
  1098. background-image: none;
  1099. background-color: #ececec;
  1100. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1101. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1102. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1103. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1104. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1105. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1106. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1107. .x-btn-default-small-disabled .x-btn-inner {
  1108. color: #333333 !important; }
  1109. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1110. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  1111. color: #595959 !important; }
  1112. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1113. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  1114. color: #8c8c8c !important; }
  1115. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1116. .x-nbr .x-btn-default-small-over .x-frame-tl,
  1117. .x-nbr .x-btn-default-small-over .x-frame-bl,
  1118. .x-nbr .x-btn-default-small-over .x-frame-tr,
  1119. .x-nbr .x-btn-default-small-over .x-frame-br,
  1120. .x-nbr .x-btn-default-small-over .x-frame-tc,
  1121. .x-nbr .x-btn-default-small-over .x-frame-bc {
  1122. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-corners.gif'); }
  1123. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1124. .x-nbr .x-btn-default-small-over .x-frame-ml,
  1125. .x-nbr .x-btn-default-small-over .x-frame-mr {
  1126. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-sides.gif'); }
  1127. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1128. .x-nbr .x-btn-default-small-over .x-frame-mc {
  1129. background-color: #f3f3f3;
  1130. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-bg.gif'); }
  1131. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1132. .x-nbr .x-btn-default-small-focus .x-frame-tl,
  1133. .x-nbr .x-btn-default-small-focus .x-frame-bl,
  1134. .x-nbr .x-btn-default-small-focus .x-frame-tr,
  1135. .x-nbr .x-btn-default-small-focus .x-frame-br,
  1136. .x-nbr .x-btn-default-small-focus .x-frame-tc,
  1137. .x-nbr .x-btn-default-small-focus .x-frame-bc {
  1138. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-corners.gif'); }
  1139. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1140. .x-nbr .x-btn-default-small-focus .x-frame-ml,
  1141. .x-nbr .x-btn-default-small-focus .x-frame-mr {
  1142. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-sides.gif'); }
  1143. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1144. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  1145. background-color: #f3f3f3;
  1146. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-bg.gif'); }
  1147. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1148. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
  1149. .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
  1150. .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
  1151. .x-nbr .x-btn-default-small-menu-active .x-frame-br,
  1152. .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
  1153. .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
  1154. .x-nbr .x-btn-default-small-pressed .x-frame-tl,
  1155. .x-nbr .x-btn-default-small-pressed .x-frame-bl,
  1156. .x-nbr .x-btn-default-small-pressed .x-frame-tr,
  1157. .x-nbr .x-btn-default-small-pressed .x-frame-br,
  1158. .x-nbr .x-btn-default-small-pressed .x-frame-tc,
  1159. .x-nbr .x-btn-default-small-pressed .x-frame-bc {
  1160. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-corners.gif'); }
  1161. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1162. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
  1163. .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
  1164. .x-nbr .x-btn-default-small-pressed .x-frame-ml,
  1165. .x-nbr .x-btn-default-small-pressed .x-frame-mr {
  1166. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-sides.gif'); }
  1167. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1168. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
  1169. .x-nbr .x-btn-default-small-pressed .x-frame-mc {
  1170. background-color: #d6d6d6;
  1171. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-bg.gif'); }
  1172. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1173. .x-nbr .x-btn-default-small-disabled .x-frame-tl,
  1174. .x-nbr .x-btn-default-small-disabled .x-frame-bl,
  1175. .x-nbr .x-btn-default-small-disabled .x-frame-tr,
  1176. .x-nbr .x-btn-default-small-disabled .x-frame-br,
  1177. .x-nbr .x-btn-default-small-disabled .x-frame-tc,
  1178. .x-nbr .x-btn-default-small-disabled .x-frame-bc {
  1179. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-corners.gif'); }
  1180. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1181. .x-nbr .x-btn-default-small-disabled .x-frame-ml,
  1182. .x-nbr .x-btn-default-small-disabled .x-frame-mr {
  1183. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-sides.gif'); }
  1184. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1185. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  1186. background-color: #ececec;
  1187. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-bg.gif'); }
  1188. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1189. .x-nlg .x-btn-default-small {
  1190. background-repeat: repeat-x;
  1191. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-bg.gif'); }
  1192. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1193. .x-nlg .x-btn-default-small-over {
  1194. background-repeat: repeat-x;
  1195. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-over-bg.gif'); }
  1196. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1197. .x-nlg .x-btn-default-small-focus {
  1198. background-repeat: repeat-x;
  1199. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-focus-bg.gif'); }
  1200. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1201. .x-nlg .x-btn-default-small-menu-active,
  1202. .x-nlg .x-btn-default-small-pressed {
  1203. background-repeat: repeat-x;
  1204. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-pressed-bg.gif'); }
  1205. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1206. .x-nlg .x-btn-default-small-disabled {
  1207. background-repeat: repeat-x;
  1208. background-image: url('../../resources/themes/images/gray/btn/btn-default-small-disabled-bg.gif'); }
  1209. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1210. .x-btn-default-medium {
  1211. border-color: #bbbbbb; }
  1212. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1213. .x-btn-default-medium {
  1214. -moz-border-radius: 3px;
  1215. -webkit-border-radius: 3px;
  1216. -o-border-radius: 3px;
  1217. -ms-border-radius: 3px;
  1218. -khtml-border-radius: 3px;
  1219. border-radius: 3px;
  1220. padding: 3px 3px 3px 3px;
  1221. border-width: 1px;
  1222. border-style: solid;
  1223. background-image: none;
  1224. background-color: #f8f8f8;
  1225. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  1226. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  1227. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  1228. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  1229. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  1230. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  1231. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1232. .x-nlg .x-btn-default-medium-mc {
  1233. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-bg.gif');
  1234. background-color: #f8f8f8; }
  1235. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1236. .x-nbr .x-btn-default-medium {
  1237. padding: 0 !important;
  1238. border-width: 0 !important;
  1239. -moz-border-radius: 0px;
  1240. -webkit-border-radius: 0px;
  1241. -o-border-radius: 0px;
  1242. -ms-border-radius: 0px;
  1243. -khtml-border-radius: 0px;
  1244. border-radius: 0px;
  1245. background-color: transparent;
  1246. background-position: 1100303px 1000303px; }
  1247. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1248. .x-nbr .x-btn-default-medium-tl,
  1249. .x-nbr .x-btn-default-medium-bl,
  1250. .x-nbr .x-btn-default-medium-tr,
  1251. .x-nbr .x-btn-default-medium-br,
  1252. .x-nbr .x-btn-default-medium-tc,
  1253. .x-nbr .x-btn-default-medium-bc,
  1254. .x-nbr .x-btn-default-medium-ml,
  1255. .x-nbr .x-btn-default-medium-mr {
  1256. zoom: 1;
  1257. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-corners.gif'); }
  1258. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1259. .x-nbr .x-btn-default-medium-ml,
  1260. .x-nbr .x-btn-default-medium-mr {
  1261. zoom: 1;
  1262. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-sides.gif');
  1263. background-position: 0 0; }
  1264. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1265. .x-nbr .x-btn-default-medium-mc {
  1266. padding: 1px 1px 1px 1px; }
  1267. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1268. .x-strict .x-ie7 .x-btn-default-medium-tl,
  1269. .x-strict .x-ie7 .x-btn-default-medium-bl {
  1270. position: relative;
  1271. right: 0; }
  1272. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1273. .x-btn-default-medium .x-btn-inner {
  1274. font-size: 11px;
  1275. font-weight: normal;
  1276. font-family: tahoma, arial, verdana, sans-serif;
  1277. color: #333333;
  1278. background-repeat: no-repeat;
  1279. padding: 0 3px; }
  1280. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1281. .x-btn-default-medium-icon button,
  1282. .x-btn-default-medium-icon a,
  1283. .x-btn-default-medium-icon .x-btn-inner,
  1284. .x-btn-default-medium-noicon button,
  1285. .x-btn-default-medium-noicon a,
  1286. .x-btn-default-medium-noicon .x-btn-inner {
  1287. height: 24px;
  1288. line-height: 24px; }
  1289. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1290. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1291. padding: 0; }
  1292. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1293. .x-btn-default-medium-icon .x-btn-inner {
  1294. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1295. width: 24px;
  1296. padding: 0; }
  1297. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1298. .x-btn-default-medium-icon .x-btn-icon {
  1299. width: 24px;
  1300. height: 24px;
  1301. top: 0;
  1302. left: 0;
  1303. bottom: 0;
  1304. right: 0; }
  1305. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1306. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1307. height: 24px; }
  1308. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1309. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1310. height: 24px;
  1311. line-height: 24px;
  1312. padding-left: 28px; }
  1313. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1314. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1315. width: 24px;
  1316. height: auto;
  1317. top: 0;
  1318. left: 0;
  1319. bottom: 0;
  1320. right: auto; }
  1321. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1322. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1323. height: 24px; }
  1324. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1325. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1326. height: 24px; }
  1327. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1328. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1329. height: 24px;
  1330. line-height: 24px;
  1331. padding-right: 28px !important; }
  1332. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1333. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1334. width: 24px;
  1335. height: auto;
  1336. top: 0;
  1337. left: auto;
  1338. bottom: 0;
  1339. right: 0; }
  1340. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1341. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1342. height: 24px; }
  1343. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1344. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1345. padding-top: 28px; }
  1346. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1347. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1348. width: auto;
  1349. height: 24px;
  1350. top: 0;
  1351. left: 0;
  1352. bottom: auto;
  1353. right: 0; }
  1354. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1355. .x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon {
  1356. width: 24px; }
  1357. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1358. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1359. padding-bottom: 28px; }
  1360. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1361. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1362. width: auto;
  1363. height: 24px;
  1364. top: auto;
  1365. left: 0;
  1366. bottom: 0;
  1367. right: 0; }
  1368. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1369. .x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1370. width: 24px; }
  1371. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1372. .x-btn-default-medium-over {
  1373. border-color: #9d9d9d;
  1374. background-image: none;
  1375. background-color: #f3f3f3;
  1376. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1377. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1378. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1379. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1380. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1381. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1382. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1383. .x-btn-default-medium-focus {
  1384. border-color: #9d9d9d;
  1385. background-image: none;
  1386. background-color: #f3f3f3;
  1387. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1388. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1389. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1390. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1391. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1392. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1393. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1394. .x-btn-default-medium-menu-active,
  1395. .x-btn-default-medium-pressed {
  1396. border-color: #9d9d9d;
  1397. background-image: none;
  1398. background-color: #d6d6d6;
  1399. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1400. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1401. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1402. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1403. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1404. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1405. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1406. .x-btn-default-medium-disabled {
  1407. border-color: #d7d7d7;
  1408. background-image: none;
  1409. background-color: #ececec;
  1410. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1411. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1412. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1413. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1414. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1415. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1416. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1417. .x-btn-default-medium-disabled .x-btn-inner {
  1418. color: #333333 !important; }
  1419. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1420. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1421. color: #595959 !important; }
  1422. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1423. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1424. color: #8c8c8c !important; }
  1425. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1426. .x-nbr .x-btn-default-medium-over .x-frame-tl,
  1427. .x-nbr .x-btn-default-medium-over .x-frame-bl,
  1428. .x-nbr .x-btn-default-medium-over .x-frame-tr,
  1429. .x-nbr .x-btn-default-medium-over .x-frame-br,
  1430. .x-nbr .x-btn-default-medium-over .x-frame-tc,
  1431. .x-nbr .x-btn-default-medium-over .x-frame-bc {
  1432. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-corners.gif'); }
  1433. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1434. .x-nbr .x-btn-default-medium-over .x-frame-ml,
  1435. .x-nbr .x-btn-default-medium-over .x-frame-mr {
  1436. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-sides.gif'); }
  1437. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1438. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1439. background-color: #f3f3f3;
  1440. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-bg.gif'); }
  1441. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1442. .x-nbr .x-btn-default-medium-focus .x-frame-tl,
  1443. .x-nbr .x-btn-default-medium-focus .x-frame-bl,
  1444. .x-nbr .x-btn-default-medium-focus .x-frame-tr,
  1445. .x-nbr .x-btn-default-medium-focus .x-frame-br,
  1446. .x-nbr .x-btn-default-medium-focus .x-frame-tc,
  1447. .x-nbr .x-btn-default-medium-focus .x-frame-bc {
  1448. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-corners.gif'); }
  1449. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1450. .x-nbr .x-btn-default-medium-focus .x-frame-ml,
  1451. .x-nbr .x-btn-default-medium-focus .x-frame-mr {
  1452. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-sides.gif'); }
  1453. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1454. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1455. background-color: #f3f3f3;
  1456. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-bg.gif'); }
  1457. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1458. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
  1459. .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
  1460. .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
  1461. .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
  1462. .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
  1463. .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
  1464. .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
  1465. .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
  1466. .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
  1467. .x-nbr .x-btn-default-medium-pressed .x-frame-br,
  1468. .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
  1469. .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
  1470. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-corners.gif'); }
  1471. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1472. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
  1473. .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
  1474. .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
  1475. .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
  1476. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-sides.gif'); }
  1477. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1478. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
  1479. .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
  1480. background-color: #d6d6d6;
  1481. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-bg.gif'); }
  1482. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1483. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
  1484. .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
  1485. .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
  1486. .x-nbr .x-btn-default-medium-disabled .x-frame-br,
  1487. .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
  1488. .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
  1489. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-corners.gif'); }
  1490. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1491. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
  1492. .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
  1493. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-sides.gif'); }
  1494. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1495. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1496. background-color: #ececec;
  1497. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-bg.gif'); }
  1498. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1499. .x-nlg .x-btn-default-medium {
  1500. background-repeat: repeat-x;
  1501. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-bg.gif'); }
  1502. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1503. .x-nlg .x-btn-default-medium-over {
  1504. background-repeat: repeat-x;
  1505. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-over-bg.gif'); }
  1506. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1507. .x-nlg .x-btn-default-medium-focus {
  1508. background-repeat: repeat-x;
  1509. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-focus-bg.gif'); }
  1510. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1511. .x-nlg .x-btn-default-medium-menu-active,
  1512. .x-nlg .x-btn-default-medium-pressed {
  1513. background-repeat: repeat-x;
  1514. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-pressed-bg.gif'); }
  1515. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1516. .x-nlg .x-btn-default-medium-disabled {
  1517. background-repeat: repeat-x;
  1518. background-image: url('../../resources/themes/images/gray/btn/btn-default-medium-disabled-bg.gif'); }
  1519. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1520. .x-btn-default-large {
  1521. border-color: #bbbbbb; }
  1522. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1523. .x-btn-default-large {
  1524. -moz-border-radius: 3px;
  1525. -webkit-border-radius: 3px;
  1526. -o-border-radius: 3px;
  1527. -ms-border-radius: 3px;
  1528. -khtml-border-radius: 3px;
  1529. border-radius: 3px;
  1530. padding: 3px 3px 3px 3px;
  1531. border-width: 1px;
  1532. border-style: solid;
  1533. background-image: none;
  1534. background-color: #f8f8f8;
  1535. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
  1536. background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  1537. background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  1538. background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  1539. background-image: -ms-linear-gradient(top, #ffffff, #eeeeee);
  1540. background-image: linear-gradient(top, #ffffff, #eeeeee); }
  1541. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1542. .x-nlg .x-btn-default-large-mc {
  1543. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-bg.gif');
  1544. background-color: #f8f8f8; }
  1545. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1546. .x-nbr .x-btn-default-large {
  1547. padding: 0 !important;
  1548. border-width: 0 !important;
  1549. -moz-border-radius: 0px;
  1550. -webkit-border-radius: 0px;
  1551. -o-border-radius: 0px;
  1552. -ms-border-radius: 0px;
  1553. -khtml-border-radius: 0px;
  1554. border-radius: 0px;
  1555. background-color: transparent;
  1556. background-position: 1100303px 1000303px; }
  1557. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1558. .x-nbr .x-btn-default-large-tl,
  1559. .x-nbr .x-btn-default-large-bl,
  1560. .x-nbr .x-btn-default-large-tr,
  1561. .x-nbr .x-btn-default-large-br,
  1562. .x-nbr .x-btn-default-large-tc,
  1563. .x-nbr .x-btn-default-large-bc,
  1564. .x-nbr .x-btn-default-large-ml,
  1565. .x-nbr .x-btn-default-large-mr {
  1566. zoom: 1;
  1567. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-corners.gif'); }
  1568. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1569. .x-nbr .x-btn-default-large-ml,
  1570. .x-nbr .x-btn-default-large-mr {
  1571. zoom: 1;
  1572. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-sides.gif');
  1573. background-position: 0 0; }
  1574. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1575. .x-nbr .x-btn-default-large-mc {
  1576. padding: 1px 1px 1px 1px; }
  1577. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1578. .x-strict .x-ie7 .x-btn-default-large-tl,
  1579. .x-strict .x-ie7 .x-btn-default-large-bl {
  1580. position: relative;
  1581. right: 0; }
  1582. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1583. .x-btn-default-large .x-btn-inner {
  1584. font-size: 11px;
  1585. font-weight: normal;
  1586. font-family: tahoma, arial, verdana, sans-serif;
  1587. color: #333333;
  1588. background-repeat: no-repeat;
  1589. padding: 0 3px; }
  1590. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1591. .x-btn-default-large-icon button,
  1592. .x-btn-default-large-icon a,
  1593. .x-btn-default-large-icon .x-btn-inner,
  1594. .x-btn-default-large-noicon button,
  1595. .x-btn-default-large-noicon a,
  1596. .x-btn-default-large-noicon .x-btn-inner {
  1597. height: 32px;
  1598. line-height: 32px; }
  1599. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1600. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1601. padding: 0; }
  1602. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1603. .x-btn-default-large-icon .x-btn-inner {
  1604. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1605. width: 32px;
  1606. padding: 0; }
  1607. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1608. .x-btn-default-large-icon .x-btn-icon {
  1609. width: 32px;
  1610. height: 32px;
  1611. top: 0;
  1612. left: 0;
  1613. bottom: 0;
  1614. right: 0; }
  1615. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1616. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1617. height: 32px; }
  1618. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1619. .x-btn-default-large-icon-text-left .x-btn-inner {
  1620. height: 32px;
  1621. line-height: 32px;
  1622. padding-left: 36px; }
  1623. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1624. .x-btn-default-large-icon-text-left .x-btn-icon {
  1625. width: 32px;
  1626. height: auto;
  1627. top: 0;
  1628. left: 0;
  1629. bottom: 0;
  1630. right: auto; }
  1631. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1632. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1633. height: 32px; }
  1634. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1635. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1636. height: 32px; }
  1637. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1638. .x-btn-default-large-icon-text-right .x-btn-inner {
  1639. height: 32px;
  1640. line-height: 32px;
  1641. padding-right: 36px !important; }
  1642. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1643. .x-btn-default-large-icon-text-right .x-btn-icon {
  1644. width: 32px;
  1645. height: auto;
  1646. top: 0;
  1647. left: auto;
  1648. bottom: 0;
  1649. right: 0; }
  1650. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1651. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1652. height: 32px; }
  1653. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1654. .x-btn-default-large-icon-text-top .x-btn-inner {
  1655. padding-top: 36px; }
  1656. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1657. .x-btn-default-large-icon-text-top .x-btn-icon {
  1658. width: auto;
  1659. height: 32px;
  1660. top: 0;
  1661. left: 0;
  1662. bottom: auto;
  1663. right: 0; }
  1664. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1665. .x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon {
  1666. width: 32px; }
  1667. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1668. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1669. padding-bottom: 36px; }
  1670. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1671. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1672. width: auto;
  1673. height: 32px;
  1674. top: auto;
  1675. left: 0;
  1676. bottom: 0;
  1677. right: 0; }
  1678. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1679. .x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1680. width: 32px; }
  1681. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1682. .x-btn-default-large-over {
  1683. border-color: #9d9d9d;
  1684. background-image: none;
  1685. background-color: #f3f3f3;
  1686. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1687. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1688. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1689. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1690. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1691. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1692. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1693. .x-btn-default-large-focus {
  1694. border-color: #9d9d9d;
  1695. background-image: none;
  1696. background-color: #f3f3f3;
  1697. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1698. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1699. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1700. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1701. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1702. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1703. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1704. .x-btn-default-large-menu-active,
  1705. .x-btn-default-large-pressed {
  1706. border-color: #9d9d9d;
  1707. background-image: none;
  1708. background-color: #d6d6d6;
  1709. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  1710. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  1711. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  1712. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  1713. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  1714. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  1715. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1716. .x-btn-default-large-disabled {
  1717. border-color: #d7d7d7;
  1718. background-image: none;
  1719. background-color: #ececec;
  1720. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2));
  1721. background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2);
  1722. background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2);
  1723. background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2);
  1724. background-image: -ms-linear-gradient(top, #f4f4f4, #e2e2e2);
  1725. background-image: linear-gradient(top, #f4f4f4, #e2e2e2); }
  1726. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1727. .x-btn-default-large-disabled .x-btn-inner {
  1728. color: #333333 !important; }
  1729. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1730. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1731. color: #595959 !important; }
  1732. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1733. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1734. color: #8c8c8c !important; }
  1735. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1736. .x-nbr .x-btn-default-large-over .x-frame-tl,
  1737. .x-nbr .x-btn-default-large-over .x-frame-bl,
  1738. .x-nbr .x-btn-default-large-over .x-frame-tr,
  1739. .x-nbr .x-btn-default-large-over .x-frame-br,
  1740. .x-nbr .x-btn-default-large-over .x-frame-tc,
  1741. .x-nbr .x-btn-default-large-over .x-frame-bc {
  1742. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-corners.gif'); }
  1743. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1744. .x-nbr .x-btn-default-large-over .x-frame-ml,
  1745. .x-nbr .x-btn-default-large-over .x-frame-mr {
  1746. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-sides.gif'); }
  1747. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1748. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1749. background-color: #f3f3f3;
  1750. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-bg.gif'); }
  1751. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1752. .x-nbr .x-btn-default-large-focus .x-frame-tl,
  1753. .x-nbr .x-btn-default-large-focus .x-frame-bl,
  1754. .x-nbr .x-btn-default-large-focus .x-frame-tr,
  1755. .x-nbr .x-btn-default-large-focus .x-frame-br,
  1756. .x-nbr .x-btn-default-large-focus .x-frame-tc,
  1757. .x-nbr .x-btn-default-large-focus .x-frame-bc {
  1758. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-corners.gif'); }
  1759. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1760. .x-nbr .x-btn-default-large-focus .x-frame-ml,
  1761. .x-nbr .x-btn-default-large-focus .x-frame-mr {
  1762. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-sides.gif'); }
  1763. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1764. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1765. background-color: #f3f3f3;
  1766. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-bg.gif'); }
  1767. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1768. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
  1769. .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
  1770. .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
  1771. .x-nbr .x-btn-default-large-menu-active .x-frame-br,
  1772. .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
  1773. .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
  1774. .x-nbr .x-btn-default-large-pressed .x-frame-tl,
  1775. .x-nbr .x-btn-default-large-pressed .x-frame-bl,
  1776. .x-nbr .x-btn-default-large-pressed .x-frame-tr,
  1777. .x-nbr .x-btn-default-large-pressed .x-frame-br,
  1778. .x-nbr .x-btn-default-large-pressed .x-frame-tc,
  1779. .x-nbr .x-btn-default-large-pressed .x-frame-bc {
  1780. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-corners.gif'); }
  1781. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1782. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
  1783. .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
  1784. .x-nbr .x-btn-default-large-pressed .x-frame-ml,
  1785. .x-nbr .x-btn-default-large-pressed .x-frame-mr {
  1786. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-sides.gif'); }
  1787. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1788. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
  1789. .x-nbr .x-btn-default-large-pressed .x-frame-mc {
  1790. background-color: #d6d6d6;
  1791. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-bg.gif'); }
  1792. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1793. .x-nbr .x-btn-default-large-disabled .x-frame-tl,
  1794. .x-nbr .x-btn-default-large-disabled .x-frame-bl,
  1795. .x-nbr .x-btn-default-large-disabled .x-frame-tr,
  1796. .x-nbr .x-btn-default-large-disabled .x-frame-br,
  1797. .x-nbr .x-btn-default-large-disabled .x-frame-tc,
  1798. .x-nbr .x-btn-default-large-disabled .x-frame-bc {
  1799. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-corners.gif'); }
  1800. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1801. .x-nbr .x-btn-default-large-disabled .x-frame-ml,
  1802. .x-nbr .x-btn-default-large-disabled .x-frame-mr {
  1803. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-sides.gif'); }
  1804. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1805. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1806. background-color: #ececec;
  1807. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-bg.gif'); }
  1808. /* line 982, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1809. .x-nlg .x-btn-default-large {
  1810. background-repeat: repeat-x;
  1811. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-bg.gif'); }
  1812. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1813. .x-nlg .x-btn-default-large-over {
  1814. background-repeat: repeat-x;
  1815. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-over-bg.gif'); }
  1816. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1817. .x-nlg .x-btn-default-large-focus {
  1818. background-repeat: repeat-x;
  1819. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-focus-bg.gif'); }
  1820. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1821. .x-nlg .x-btn-default-large-menu-active,
  1822. .x-nlg .x-btn-default-large-pressed {
  1823. background-repeat: repeat-x;
  1824. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-pressed-bg.gif'); }
  1825. /* line 1019, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1826. .x-nlg .x-btn-default-large-disabled {
  1827. background-repeat: repeat-x;
  1828. background-image: url('../../resources/themes/images/gray/btn/btn-default-large-disabled-bg.gif'); }
  1829. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1830. .x-btn-default-toolbar-small {
  1831. border-color: transparent; }
  1832. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1833. .x-btn-default-toolbar-small {
  1834. -moz-border-radius: 3px;
  1835. -webkit-border-radius: 3px;
  1836. -o-border-radius: 3px;
  1837. -ms-border-radius: 3px;
  1838. -khtml-border-radius: 3px;
  1839. border-radius: 3px;
  1840. padding: 2px 2px 2px 2px;
  1841. border-width: 1px;
  1842. border-style: solid;
  1843. background-color: transparent; }
  1844. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1845. .x-nlg .x-btn-default-toolbar-small-mc {
  1846. background-color: transparent; }
  1847. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1848. .x-nbr .x-btn-default-toolbar-small {
  1849. padding: 0 !important;
  1850. border-width: 0 !important;
  1851. -moz-border-radius: 0px;
  1852. -webkit-border-radius: 0px;
  1853. -o-border-radius: 0px;
  1854. -ms-border-radius: 0px;
  1855. -khtml-border-radius: 0px;
  1856. border-radius: 0px;
  1857. background-color: transparent;
  1858. background-position: 1100303px 1000303px; }
  1859. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1860. .x-nbr .x-btn-default-toolbar-small-tl,
  1861. .x-nbr .x-btn-default-toolbar-small-bl,
  1862. .x-nbr .x-btn-default-toolbar-small-tr,
  1863. .x-nbr .x-btn-default-toolbar-small-br,
  1864. .x-nbr .x-btn-default-toolbar-small-tc,
  1865. .x-nbr .x-btn-default-toolbar-small-bc,
  1866. .x-nbr .x-btn-default-toolbar-small-ml,
  1867. .x-nbr .x-btn-default-toolbar-small-mr {
  1868. zoom: 1; }
  1869. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1870. .x-nbr .x-btn-default-toolbar-small-ml,
  1871. .x-nbr .x-btn-default-toolbar-small-mr {
  1872. zoom: 1; }
  1873. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1874. .x-nbr .x-btn-default-toolbar-small-mc {
  1875. padding: 0px 0px 0px 0px; }
  1876. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1877. .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
  1878. .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  1879. position: relative;
  1880. right: 0; }
  1881. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1882. .x-btn-default-toolbar-small .x-btn-inner {
  1883. font-size: 11px;
  1884. font-weight: normal;
  1885. font-family: tahoma, arial, verdana, sans-serif;
  1886. color: #333333;
  1887. background-repeat: no-repeat;
  1888. padding: 0 4px; }
  1889. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1890. .x-btn-default-toolbar-small-icon button,
  1891. .x-btn-default-toolbar-small-icon a,
  1892. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1893. .x-btn-default-toolbar-small-noicon button,
  1894. .x-btn-default-toolbar-small-noicon a,
  1895. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1896. height: 16px;
  1897. line-height: 16px; }
  1898. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1899. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1900. padding: 0; }
  1901. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1902. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1903. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1904. width: 16px;
  1905. padding: 0; }
  1906. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1907. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1908. width: 16px;
  1909. height: 16px;
  1910. top: 0;
  1911. left: 0;
  1912. bottom: 0;
  1913. right: 0; }
  1914. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1915. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1916. height: 16px; }
  1917. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1918. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1919. height: 16px;
  1920. line-height: 16px;
  1921. padding-left: 20px; }
  1922. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1923. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1924. width: 16px;
  1925. height: auto;
  1926. top: 0;
  1927. left: 0;
  1928. bottom: 0;
  1929. right: auto; }
  1930. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1931. .x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1932. height: 16px; }
  1933. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1934. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1935. height: 16px; }
  1936. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1937. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1938. height: 16px;
  1939. line-height: 16px;
  1940. padding-right: 20px !important; }
  1941. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1942. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1943. width: 16px;
  1944. height: auto;
  1945. top: 0;
  1946. left: auto;
  1947. bottom: 0;
  1948. right: 0; }
  1949. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1950. .x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1951. height: 16px; }
  1952. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1953. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1954. padding-top: 20px; }
  1955. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1956. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1957. width: auto;
  1958. height: 16px;
  1959. top: 0;
  1960. left: 0;
  1961. bottom: auto;
  1962. right: 0; }
  1963. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1964. .x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1965. width: 16px; }
  1966. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1967. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1968. padding-bottom: 20px; }
  1969. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1970. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1971. width: auto;
  1972. height: 16px;
  1973. top: auto;
  1974. left: 0;
  1975. bottom: 0;
  1976. right: 0; }
  1977. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1978. .x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1979. width: 16px; }
  1980. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1981. .x-btn-default-toolbar-small-over {
  1982. border-color: #9d9d9d;
  1983. background-image: none;
  1984. background-color: #f3f3f3;
  1985. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1986. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1987. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1988. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  1989. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  1990. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  1991. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1992. .x-btn-default-toolbar-small-focus {
  1993. border-color: #9d9d9d;
  1994. background-image: none;
  1995. background-color: #f3f3f3;
  1996. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  1997. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  1998. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  1999. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2000. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2001. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2002. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2003. .x-btn-default-toolbar-small-menu-active,
  2004. .x-btn-default-toolbar-small-pressed {
  2005. border-color: #9d9d9d;
  2006. background-image: none;
  2007. background-color: #d6d6d6;
  2008. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  2009. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  2010. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2011. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2012. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2013. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2014. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2015. .x-btn-default-toolbar-small-disabled {
  2016. border-color: #d7d7d7;
  2017. background-image: none;
  2018. background-color: transparent; }
  2019. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2020. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2021. color: #333333 !important; }
  2022. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2023. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2024. color: #595959 !important; }
  2025. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2026. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  2027. color: #8c8c8c !important; }
  2028. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2029. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
  2030. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
  2031. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
  2032. .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
  2033. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
  2034. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
  2035. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-corners.gif'); }
  2036. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2037. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
  2038. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
  2039. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-sides.gif'); }
  2040. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2041. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  2042. background-color: #f3f3f3;
  2043. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-bg.gif'); }
  2044. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2045. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
  2046. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
  2047. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
  2048. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
  2049. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
  2050. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
  2051. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-corners.gif'); }
  2052. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2053. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
  2054. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
  2055. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-sides.gif'); }
  2056. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2057. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  2058. background-color: #f3f3f3;
  2059. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2060. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2061. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
  2062. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
  2063. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
  2064. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
  2065. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
  2066. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
  2067. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
  2068. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
  2069. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
  2070. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
  2071. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
  2072. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
  2073. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-corners.gif'); }
  2074. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2075. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
  2076. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
  2077. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
  2078. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
  2079. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-sides.gif'); }
  2080. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2081. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
  2082. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
  2083. background-color: #d6d6d6;
  2084. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2085. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2086. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
  2087. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
  2088. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
  2089. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
  2090. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
  2091. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
  2092. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-disabled-corners.gif'); }
  2093. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2094. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
  2095. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
  2096. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-disabled-sides.gif'); }
  2097. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2098. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  2099. background-color: transparent; }
  2100. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2101. .x-nlg .x-btn-default-toolbar-small-over {
  2102. background-repeat: repeat-x;
  2103. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-over-bg.gif'); }
  2104. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2105. .x-nlg .x-btn-default-toolbar-small-focus {
  2106. background-repeat: repeat-x;
  2107. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-focus-bg.gif'); }
  2108. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2109. .x-nlg .x-btn-default-toolbar-small-menu-active,
  2110. .x-nlg .x-btn-default-toolbar-small-pressed {
  2111. background-repeat: repeat-x;
  2112. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  2113. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2114. .x-btn-default-toolbar-medium {
  2115. border-color: transparent; }
  2116. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2117. .x-btn-default-toolbar-medium {
  2118. -moz-border-radius: 3px;
  2119. -webkit-border-radius: 3px;
  2120. -o-border-radius: 3px;
  2121. -ms-border-radius: 3px;
  2122. -khtml-border-radius: 3px;
  2123. border-radius: 3px;
  2124. padding: 3px 3px 3px 3px;
  2125. border-width: 1px;
  2126. border-style: solid;
  2127. background-color: transparent; }
  2128. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2129. .x-nlg .x-btn-default-toolbar-medium-mc {
  2130. background-color: transparent; }
  2131. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2132. .x-nbr .x-btn-default-toolbar-medium {
  2133. padding: 0 !important;
  2134. border-width: 0 !important;
  2135. -moz-border-radius: 0px;
  2136. -webkit-border-radius: 0px;
  2137. -o-border-radius: 0px;
  2138. -ms-border-radius: 0px;
  2139. -khtml-border-radius: 0px;
  2140. border-radius: 0px;
  2141. background-color: transparent;
  2142. background-position: 1100303px 1000303px; }
  2143. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2144. .x-nbr .x-btn-default-toolbar-medium-tl,
  2145. .x-nbr .x-btn-default-toolbar-medium-bl,
  2146. .x-nbr .x-btn-default-toolbar-medium-tr,
  2147. .x-nbr .x-btn-default-toolbar-medium-br,
  2148. .x-nbr .x-btn-default-toolbar-medium-tc,
  2149. .x-nbr .x-btn-default-toolbar-medium-bc,
  2150. .x-nbr .x-btn-default-toolbar-medium-ml,
  2151. .x-nbr .x-btn-default-toolbar-medium-mr {
  2152. zoom: 1; }
  2153. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2154. .x-nbr .x-btn-default-toolbar-medium-ml,
  2155. .x-nbr .x-btn-default-toolbar-medium-mr {
  2156. zoom: 1; }
  2157. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2158. .x-nbr .x-btn-default-toolbar-medium-mc {
  2159. padding: 1px 1px 1px 1px; }
  2160. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2161. .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
  2162. .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  2163. position: relative;
  2164. right: 0; }
  2165. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2166. .x-btn-default-toolbar-medium .x-btn-inner {
  2167. font-size: 11px;
  2168. font-weight: normal;
  2169. font-family: tahoma, arial, verdana, sans-serif;
  2170. color: #333333;
  2171. background-repeat: no-repeat;
  2172. padding: 0 3px; }
  2173. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2174. .x-btn-default-toolbar-medium-icon button,
  2175. .x-btn-default-toolbar-medium-icon a,
  2176. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  2177. .x-btn-default-toolbar-medium-noicon button,
  2178. .x-btn-default-toolbar-medium-noicon a,
  2179. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  2180. height: 24px;
  2181. line-height: 24px; }
  2182. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2183. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  2184. padding: 0; }
  2185. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2186. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  2187. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2188. width: 24px;
  2189. padding: 0; }
  2190. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2191. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  2192. width: 24px;
  2193. height: 24px;
  2194. top: 0;
  2195. left: 0;
  2196. bottom: 0;
  2197. right: 0; }
  2198. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2199. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  2200. height: 24px; }
  2201. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2202. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  2203. height: 24px;
  2204. line-height: 24px;
  2205. padding-left: 28px; }
  2206. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2207. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2208. width: 24px;
  2209. height: auto;
  2210. top: 0;
  2211. left: 0;
  2212. bottom: 0;
  2213. right: auto; }
  2214. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2215. .x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  2216. height: 24px; }
  2217. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2218. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  2219. height: 24px; }
  2220. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2221. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  2222. height: 24px;
  2223. line-height: 24px;
  2224. padding-right: 28px !important; }
  2225. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2226. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2227. width: 24px;
  2228. height: auto;
  2229. top: 0;
  2230. left: auto;
  2231. bottom: 0;
  2232. right: 0; }
  2233. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2234. .x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2235. height: 24px; }
  2236. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2237. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  2238. padding-top: 28px; }
  2239. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2240. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2241. width: auto;
  2242. height: 24px;
  2243. top: 0;
  2244. left: 0;
  2245. bottom: auto;
  2246. right: 0; }
  2247. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2248. .x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2249. width: 24px; }
  2250. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2251. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  2252. padding-bottom: 28px; }
  2253. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2254. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2255. width: auto;
  2256. height: 24px;
  2257. top: auto;
  2258. left: 0;
  2259. bottom: 0;
  2260. right: 0; }
  2261. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2262. .x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2263. width: 24px; }
  2264. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2265. .x-btn-default-toolbar-medium-over {
  2266. border-color: #9d9d9d;
  2267. background-image: none;
  2268. background-color: #f3f3f3;
  2269. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2270. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2271. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2272. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2273. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2274. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2275. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2276. .x-btn-default-toolbar-medium-focus {
  2277. border-color: #9d9d9d;
  2278. background-image: none;
  2279. background-color: #f3f3f3;
  2280. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2281. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2282. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2283. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2284. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2285. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2286. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2287. .x-btn-default-toolbar-medium-menu-active,
  2288. .x-btn-default-toolbar-medium-pressed {
  2289. border-color: #9d9d9d;
  2290. background-image: none;
  2291. background-color: #d6d6d6;
  2292. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  2293. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  2294. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2295. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2296. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2297. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2298. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2299. .x-btn-default-toolbar-medium-disabled {
  2300. border-color: #d7d7d7;
  2301. background-image: none;
  2302. background-color: transparent; }
  2303. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2304. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2305. color: #333333 !important; }
  2306. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2307. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2308. color: #595959 !important; }
  2309. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2310. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2311. color: #8c8c8c !important; }
  2312. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2313. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
  2314. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
  2315. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
  2316. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
  2317. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
  2318. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
  2319. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-corners.gif'); }
  2320. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2321. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
  2322. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
  2323. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-sides.gif'); }
  2324. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2325. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  2326. background-color: #f3f3f3;
  2327. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2328. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2329. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
  2330. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
  2331. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
  2332. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
  2333. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
  2334. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
  2335. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-corners.gif'); }
  2336. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2337. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
  2338. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
  2339. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-sides.gif'); }
  2340. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2341. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  2342. background-color: #f3f3f3;
  2343. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2344. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2345. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
  2346. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
  2347. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
  2348. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
  2349. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
  2350. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
  2351. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
  2352. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
  2353. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
  2354. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
  2355. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
  2356. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  2357. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
  2358. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2359. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
  2360. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
  2361. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
  2362. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  2363. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
  2364. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2365. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
  2366. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  2367. background-color: #d6d6d6;
  2368. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2369. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2370. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
  2371. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
  2372. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
  2373. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
  2374. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
  2375. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  2376. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
  2377. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2378. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
  2379. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  2380. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
  2381. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2382. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  2383. background-color: transparent; }
  2384. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2385. .x-nlg .x-btn-default-toolbar-medium-over {
  2386. background-repeat: repeat-x;
  2387. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2388. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2389. .x-nlg .x-btn-default-toolbar-medium-focus {
  2390. background-repeat: repeat-x;
  2391. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2392. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2393. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  2394. .x-nlg .x-btn-default-toolbar-medium-pressed {
  2395. background-repeat: repeat-x;
  2396. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2397. /* line 637, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2398. .x-btn-default-toolbar-large {
  2399. border-color: transparent; }
  2400. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2401. .x-btn-default-toolbar-large {
  2402. -moz-border-radius: 3px;
  2403. -webkit-border-radius: 3px;
  2404. -o-border-radius: 3px;
  2405. -ms-border-radius: 3px;
  2406. -khtml-border-radius: 3px;
  2407. border-radius: 3px;
  2408. padding: 3px 3px 3px 3px;
  2409. border-width: 1px;
  2410. border-style: solid;
  2411. background-color: transparent; }
  2412. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2413. .x-nlg .x-btn-default-toolbar-large-mc {
  2414. background-color: transparent; }
  2415. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2416. .x-nbr .x-btn-default-toolbar-large {
  2417. padding: 0 !important;
  2418. border-width: 0 !important;
  2419. -moz-border-radius: 0px;
  2420. -webkit-border-radius: 0px;
  2421. -o-border-radius: 0px;
  2422. -ms-border-radius: 0px;
  2423. -khtml-border-radius: 0px;
  2424. border-radius: 0px;
  2425. background-color: transparent;
  2426. background-position: 1100303px 1000303px; }
  2427. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2428. .x-nbr .x-btn-default-toolbar-large-tl,
  2429. .x-nbr .x-btn-default-toolbar-large-bl,
  2430. .x-nbr .x-btn-default-toolbar-large-tr,
  2431. .x-nbr .x-btn-default-toolbar-large-br,
  2432. .x-nbr .x-btn-default-toolbar-large-tc,
  2433. .x-nbr .x-btn-default-toolbar-large-bc,
  2434. .x-nbr .x-btn-default-toolbar-large-ml,
  2435. .x-nbr .x-btn-default-toolbar-large-mr {
  2436. zoom: 1; }
  2437. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2438. .x-nbr .x-btn-default-toolbar-large-ml,
  2439. .x-nbr .x-btn-default-toolbar-large-mr {
  2440. zoom: 1; }
  2441. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2442. .x-nbr .x-btn-default-toolbar-large-mc {
  2443. padding: 1px 1px 1px 1px; }
  2444. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2445. .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
  2446. .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  2447. position: relative;
  2448. right: 0; }
  2449. /* line 643, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2450. .x-btn-default-toolbar-large .x-btn-inner {
  2451. font-size: 11px;
  2452. font-weight: normal;
  2453. font-family: tahoma, arial, verdana, sans-serif;
  2454. color: #333333;
  2455. background-repeat: no-repeat;
  2456. padding: 0 3px; }
  2457. /* line 656, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2458. .x-btn-default-toolbar-large-icon button,
  2459. .x-btn-default-toolbar-large-icon a,
  2460. .x-btn-default-toolbar-large-icon .x-btn-inner,
  2461. .x-btn-default-toolbar-large-noicon button,
  2462. .x-btn-default-toolbar-large-noicon a,
  2463. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  2464. height: 32px;
  2465. line-height: 32px; }
  2466. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2467. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  2468. padding: 0; }
  2469. /* line 669, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2470. .x-btn-default-toolbar-large-icon .x-btn-inner {
  2471. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2472. width: 32px;
  2473. padding: 0; }
  2474. /* line 675, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2475. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2476. width: 32px;
  2477. height: 32px;
  2478. top: 0;
  2479. left: 0;
  2480. bottom: 0;
  2481. right: 0; }
  2482. /* line 687, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2483. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  2484. height: 32px; }
  2485. /* line 690, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2486. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2487. height: 32px;
  2488. line-height: 32px;
  2489. padding-left: 36px; }
  2490. /* line 696, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2491. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2492. width: 32px;
  2493. height: auto;
  2494. top: 0;
  2495. left: 0;
  2496. bottom: 0;
  2497. right: auto; }
  2498. /* line 705, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2499. .x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2500. height: 32px; }
  2501. /* line 713, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2502. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  2503. height: 32px; }
  2504. /* line 716, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2505. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2506. height: 32px;
  2507. line-height: 32px;
  2508. padding-right: 36px !important; }
  2509. /* line 722, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2510. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2511. width: 32px;
  2512. height: auto;
  2513. top: 0;
  2514. left: auto;
  2515. bottom: 0;
  2516. right: 0; }
  2517. /* line 731, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2518. .x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2519. height: 32px; }
  2520. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2521. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2522. padding-top: 36px; }
  2523. /* line 742, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2524. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2525. width: auto;
  2526. height: 32px;
  2527. top: 0;
  2528. left: 0;
  2529. bottom: auto;
  2530. right: 0; }
  2531. /* line 751, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2532. .x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2533. width: 32px; }
  2534. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2535. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2536. padding-bottom: 36px; }
  2537. /* line 762, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2538. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2539. width: auto;
  2540. height: 32px;
  2541. top: auto;
  2542. left: 0;
  2543. bottom: 0;
  2544. right: 0; }
  2545. /* line 771, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2546. .x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2547. width: 32px; }
  2548. /* line 777, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2549. .x-btn-default-toolbar-large-over {
  2550. border-color: #9d9d9d;
  2551. background-image: none;
  2552. background-color: #f3f3f3;
  2553. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2554. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2555. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2556. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2557. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2558. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2559. /* line 801, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2560. .x-btn-default-toolbar-large-focus {
  2561. border-color: #9d9d9d;
  2562. background-image: none;
  2563. background-color: #f3f3f3;
  2564. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9));
  2565. background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9);
  2566. background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9);
  2567. background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9);
  2568. background-image: -ms-linear-gradient(top, #fbfbfb, #e9e9e9);
  2569. background-image: linear-gradient(top, #fbfbfb, #e9e9e9); }
  2570. /* line 826, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2571. .x-btn-default-toolbar-large-menu-active,
  2572. .x-btn-default-toolbar-large-pressed {
  2573. border-color: #9d9d9d;
  2574. background-image: none;
  2575. background-color: #d6d6d6;
  2576. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0));
  2577. background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0);
  2578. background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0);
  2579. background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0);
  2580. background-image: -ms-linear-gradient(top, #c7c7c7, #e0e0e0);
  2581. background-image: linear-gradient(top, #c7c7c7, #e0e0e0); }
  2582. /* line 850, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2583. .x-btn-default-toolbar-large-disabled {
  2584. border-color: #d7d7d7;
  2585. background-image: none;
  2586. background-color: transparent; }
  2587. /* line 858, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2588. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2589. color: #333333 !important; }
  2590. /* line 875, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2591. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2592. color: #595959 !important; }
  2593. /* line 883, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2594. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2595. color: #8c8c8c !important; }
  2596. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2597. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
  2598. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
  2599. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
  2600. .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
  2601. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
  2602. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
  2603. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-corners.gif'); }
  2604. /* line 902, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2605. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
  2606. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
  2607. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-sides.gif'); }
  2608. /* line 905, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2609. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2610. background-color: #f3f3f3;
  2611. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-bg.gif'); }
  2612. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2613. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
  2614. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
  2615. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
  2616. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
  2617. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
  2618. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
  2619. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-corners.gif'); }
  2620. /* line 923, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2621. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
  2622. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
  2623. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-sides.gif'); }
  2624. /* line 926, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2625. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2626. background-color: #f3f3f3;
  2627. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2628. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2629. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
  2630. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
  2631. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
  2632. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
  2633. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
  2634. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
  2635. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
  2636. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
  2637. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
  2638. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
  2639. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
  2640. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
  2641. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-corners.gif'); }
  2642. /* line 945, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2643. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
  2644. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
  2645. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
  2646. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
  2647. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-sides.gif'); }
  2648. /* line 948, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2649. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
  2650. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
  2651. background-color: #d6d6d6;
  2652. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2653. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2654. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
  2655. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
  2656. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
  2657. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
  2658. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
  2659. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
  2660. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-disabled-corners.gif'); }
  2661. /* line 966, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2662. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
  2663. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
  2664. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-disabled-sides.gif'); }
  2665. /* line 969, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2666. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2667. background-color: transparent; }
  2668. /* line 991, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2669. .x-nlg .x-btn-default-toolbar-large-over {
  2670. background-repeat: repeat-x;
  2671. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-over-bg.gif'); }
  2672. /* line 1000, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2673. .x-nlg .x-btn-default-toolbar-large-focus {
  2674. background-repeat: repeat-x;
  2675. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2676. /* line 1010, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2677. .x-nlg .x-btn-default-toolbar-large-menu-active,
  2678. .x-nlg .x-btn-default-toolbar-large-pressed {
  2679. background-repeat: repeat-x;
  2680. background-image: url('../../resources/themes/images/gray/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2681. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2682. .x-btn-default-toolbar-small-disabled,
  2683. .x-btn-default-toolbar-medium-disabled,
  2684. .x-btn-default-toolbar-large-disabled {
  2685. border-color: transparent;
  2686. background-image: none;
  2687. background: transparent; }
  2688. /* line 6, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2689. .x-btn-group {
  2690. position: relative;
  2691. overflow: hidden; }
  2692. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2693. .x-btn-group-body {
  2694. position: relative;
  2695. zoom: 1;
  2696. padding: 0 1px; }
  2697. /* line 15, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2698. .x-btn-group-body .x-table-layout-cell {
  2699. vertical-align: top; }
  2700. /* line 20, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2701. .x-btn-group-header-text {
  2702. white-space: nowrap; }
  2703. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2704. .x-btn-group-default-framed {
  2705. -moz-border-radius: 2px;
  2706. -webkit-border-radius: 2px;
  2707. -o-border-radius: 2px;
  2708. -ms-border-radius: 2px;
  2709. -khtml-border-radius: 2px;
  2710. border-radius: 2px;
  2711. padding: 1px 1px 1px 1px;
  2712. border-width: 1px;
  2713. border-style: solid;
  2714. background-color: #f0f0f0; }
  2715. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2716. .x-nlg .x-btn-group-default-framed-mc {
  2717. background-color: #f0f0f0; }
  2718. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2719. .x-nbr .x-btn-group-default-framed {
  2720. padding: 0 !important;
  2721. border-width: 0 !important;
  2722. -moz-border-radius: 0px;
  2723. -webkit-border-radius: 0px;
  2724. -o-border-radius: 0px;
  2725. -ms-border-radius: 0px;
  2726. -khtml-border-radius: 0px;
  2727. border-radius: 0px;
  2728. background-color: transparent;
  2729. background-position: 1000202px 1000202px; }
  2730. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2731. .x-nbr .x-btn-group-default-framed-tl,
  2732. .x-nbr .x-btn-group-default-framed-bl,
  2733. .x-nbr .x-btn-group-default-framed-tr,
  2734. .x-nbr .x-btn-group-default-framed-br,
  2735. .x-nbr .x-btn-group-default-framed-tc,
  2736. .x-nbr .x-btn-group-default-framed-bc,
  2737. .x-nbr .x-btn-group-default-framed-ml,
  2738. .x-nbr .x-btn-group-default-framed-mr {
  2739. zoom: 1;
  2740. background-image: url('../../resources/themes/images/gray/btn-group/btn-group-default-framed-corners.gif'); }
  2741. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2742. .x-nbr .x-btn-group-default-framed-ml,
  2743. .x-nbr .x-btn-group-default-framed-mr {
  2744. zoom: 1;
  2745. background-image: url('../../resources/themes/images/gray/btn-group/btn-group-default-framed-sides.gif');
  2746. background-position: 0 0;
  2747. background-repeat: repeat-y; }
  2748. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2749. .x-nbr .x-btn-group-default-framed-mc {
  2750. padding: 0px 0px 0px 0px; }
  2751. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2752. .x-strict .x-ie7 .x-btn-group-default-framed-tl,
  2753. .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  2754. position: relative;
  2755. right: 0; }
  2756. /* line 60, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2757. .x-btn-group-default-framed {
  2758. border-color: #d0d0d0;
  2759. -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset;
  2760. -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset;
  2761. -o-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset;
  2762. box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; }
  2763. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2764. .x-btn-group-header-default-framed {
  2765. margin: 2px 2px 0 2px; }
  2766. /* line 72, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2767. .x-btn-group-header-body-default-framed {
  2768. padding: 1px 0;
  2769. background: #dfdfdf;
  2770. -moz-border-radius-topleft: 2px;
  2771. -webkit-border-top-left-radius: 2px;
  2772. -o-border-top-left-radius: 2px;
  2773. -ms-border-top-left-radius: 2px;
  2774. -khtml-border-top-left-radius: 2px;
  2775. border-top-left-radius: 2px;
  2776. -moz-border-radius-topright: 2px;
  2777. -webkit-border-top-right-radius: 2px;
  2778. -o-border-top-right-radius: 2px;
  2779. -ms-border-top-right-radius: 2px;
  2780. -khtml-border-top-right-radius: 2px;
  2781. border-top-right-radius: 2px; }
  2782. /* line 80, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2783. .x-btn-group-header-text-default-framed {
  2784. font: normal 11px tahoma, arial, verdana, sans-serif;
  2785. color: #666666; }
  2786. /* line 6, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2787. .x-datepicker {
  2788. border: 1px solid #585858;
  2789. background-color: white;
  2790. position: relative; }
  2791. /* line 12, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2792. .x-datepicker a {
  2793. -moz-outline: 0 none;
  2794. outline: 0 none;
  2795. color: #523a39;
  2796. text-decoration: none;
  2797. border-width: 0; }
  2798. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2799. .x-datepicker-inner,
  2800. .x-datepicker-inner td,
  2801. .x-datepicker-inner th {
  2802. border-collapse: separate; }
  2803. /* line 29, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2804. .x-datepicker-header {
  2805. position: relative;
  2806. height: 26px;
  2807. background-image: none;
  2808. background-color: #6f6f6f;
  2809. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #777777), color-stop(100%, #656565));
  2810. background-image: -webkit-linear-gradient(top, #777777, #656565);
  2811. background-image: -moz-linear-gradient(top, #777777, #656565);
  2812. background-image: -o-linear-gradient(top, #777777, #656565);
  2813. background-image: -ms-linear-gradient(top, #777777, #656565);
  2814. background-image: linear-gradient(top, #777777, #656565); }
  2815. /* line 42, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2816. .x-datepicker-prev,
  2817. .x-datepicker-next {
  2818. position: absolute;
  2819. top: 5px;
  2820. width: 18px; }
  2821. /* line 48, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2822. .x-datepicker-prev a,
  2823. .x-datepicker-next a {
  2824. display: block;
  2825. width: 16px;
  2826. height: 16px;
  2827. background-position: top;
  2828. background-repeat: no-repeat;
  2829. cursor: pointer;
  2830. text-decoration: none !important;
  2831. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2832. opacity: 0.7; }
  2833. /* line 63, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2834. .x-datepicker-prev a:hover,
  2835. .x-datepicker-next a:hover {
  2836. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2837. opacity: 1; }
  2838. /* line 69, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2839. .x-datepicker-next {
  2840. right: 5px; }
  2841. /* line 72, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2842. .x-datepicker-next a {
  2843. background-image: url('../../resources/themes/images/gray/shared/right-btn.gif'); }
  2844. /* line 77, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2845. .x-datepicker-prev {
  2846. left: 5px; }
  2847. /* line 80, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2848. .x-datepicker-prev a {
  2849. background-image: url('../../resources/themes/images/gray/shared/left-btn.gif'); }
  2850. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2851. .x-item-disabled .x-datepicker-prev a:hover,
  2852. .x-item-disabled .x-datepicker-next a:hover {
  2853. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2854. opacity: 0.6; }
  2855. /* line 90, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2856. .x-datepicker-month {
  2857. padding-top: 3px; }
  2858. /* line 103, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2859. .x-datepicker-month .x-btn,
  2860. .x-datepicker-month button,
  2861. .x-datepicker-month .x-btn-tc,
  2862. .x-datepicker-month .x-btn-tl,
  2863. .x-datepicker-month .x-btn-tr,
  2864. .x-datepicker-month .x-btn-mc,
  2865. .x-datepicker-month .x-btn-ml,
  2866. .x-datepicker-month .x-btn-mr,
  2867. .x-datepicker-month .x-btn-bc,
  2868. .x-datepicker-month .x-btn-bl,
  2869. .x-datepicker-month .x-btn-br {
  2870. background: transparent !important;
  2871. border-width: 0 !important; }
  2872. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2873. .x-datepicker-month span {
  2874. color: #fff !important; }
  2875. /* line 112, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2876. .x-datepicker-month .x-btn-split-right {
  2877. background-image: url('../../resources/themes/images/gray/button/s-arrow-light.gif');
  2878. padding-right: 12px; }
  2879. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2880. .x-datepicker-next {
  2881. text-align: right; }
  2882. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2883. .x-datepicker-month {
  2884. text-align: center; }
  2885. /* line 126, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2886. .x-datepicker-month button {
  2887. color: white !important; }
  2888. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2889. table.x-datepicker-inner {
  2890. width: 100%;
  2891. table-layout: fixed; }
  2892. /* line 136, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2893. table.x-datepicker-inner th {
  2894. width: 25px;
  2895. height: 19px;
  2896. padding: 0;
  2897. color: #3e3e3e;
  2898. font: normal 10px tahoma, arial, verdana, sans-serif;
  2899. text-align: right;
  2900. border-bottom: 1px solid #d0d0d0;
  2901. border-collapse: separate;
  2902. background-image: none;
  2903. background-color: #e9e9e9;
  2904. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #dfdfdf));
  2905. background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdfdf);
  2906. background-image: -moz-linear-gradient(top, #f1f1f1, #dfdfdf);
  2907. background-image: -o-linear-gradient(top, #f1f1f1, #dfdfdf);
  2908. background-image: -ms-linear-gradient(top, #f1f1f1, #dfdfdf);
  2909. background-image: linear-gradient(top, #f1f1f1, #dfdfdf);
  2910. cursor: default; }
  2911. /* line 157, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2912. table.x-datepicker-inner th span {
  2913. display: block;
  2914. padding-right: 7px; }
  2915. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2916. table.x-datepicker-inner tr {
  2917. height: 20px; }
  2918. /* line 167, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2919. table.x-datepicker-inner td {
  2920. border: 1px solid;
  2921. height: 17px;
  2922. border-color: white;
  2923. text-align: right;
  2924. padding: 0; }
  2925. /* line 175, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2926. table.x-datepicker-inner a {
  2927. padding-right: 4px;
  2928. display: block;
  2929. zoom: 1;
  2930. font: normal 11px tahoma, arial, verdana, sans-serif;
  2931. color: black;
  2932. text-decoration: none;
  2933. text-align: right; }
  2934. /* line 188, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2935. table.x-datepicker-inner .x-datepicker-active {
  2936. cursor: pointer;
  2937. color: black; }
  2938. /* line 194, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2939. table.x-datepicker-inner .x-datepicker-selected a {
  2940. background: repeat-x left top;
  2941. background-color: #d8d8d8;
  2942. border: 1px solid #b2aaa9; }
  2943. /* line 200, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2944. table.x-datepicker-inner .x-datepicker-selected span {
  2945. font-weight: bold; }
  2946. /* line 206, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2947. table.x-datepicker-inner .x-datepicker-today a {
  2948. border: 1px solid;
  2949. border-color: darkred; }
  2950. /* line 214, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2951. table.x-datepicker-inner .x-datepicker-prevday a,
  2952. table.x-datepicker-inner .x-datepicker-nextday a {
  2953. text-decoration: none !important;
  2954. color: #aaa; }
  2955. /* line 221, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2956. table.x-datepicker-inner a:hover,
  2957. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2958. text-decoration: none !important;
  2959. color: #000;
  2960. background-color: transparent; }
  2961. /* line 229, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2962. table.x-datepicker-inner .x-datepicker-disabled a {
  2963. cursor: default;
  2964. background-color: #eee;
  2965. color: #bbb; }
  2966. /* line 237, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2967. .x-datepicker-footer,
  2968. .x-monthpicker-buttons {
  2969. position: relative;
  2970. border-top: 1px solid #d0d0d0;
  2971. background-image: none;
  2972. background-color: #e9e9e9;
  2973. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdfdf), color-stop(49%, #d6d6d6), color-stop(51%, #d0d0d0), color-stop(100%, #d2d2d2));
  2974. background-image: -webkit-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2975. background-image: -moz-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2976. background-image: -o-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2977. background-image: -ms-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2978. background-image: linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2);
  2979. text-align: center; }
  2980. /* line 250, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2981. .x-datepicker-footer .x-btn,
  2982. .x-monthpicker-buttons .x-btn {
  2983. position: relative;
  2984. margin: 4px; }
  2985. /* line 256, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2986. .x-item-disabled .x-datepicker-inner a:hover {
  2987. background: none; }
  2988. /* line 261, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2989. .x-datepicker .x-monthpicker {
  2990. position: absolute;
  2991. left: 0;
  2992. top: 0; }
  2993. /* line 268, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2994. .x-monthpicker {
  2995. border: 1px solid #585858;
  2996. background-color: white; }
  2997. /* line 274, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2998. .x-monthpicker-months,
  2999. .x-monthpicker-years {
  3000. float: left;
  3001. height: 167px;
  3002. width: 88px; }
  3003. /* line 281, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3004. .x-monthpicker-item {
  3005. float: left;
  3006. margin: 4px 0 5px 0;
  3007. font: normal 11px tahoma, arial, verdana, sans-serif;
  3008. text-align: center;
  3009. vertical-align: middle;
  3010. height: 18px;
  3011. width: 43px;
  3012. border: 0 none; }
  3013. /* line 295, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3014. .x-monthpicker-item a {
  3015. display: block;
  3016. margin: 0 5px;
  3017. text-decoration: none;
  3018. color: #523a39;
  3019. border: 1px solid white;
  3020. line-height: 17px; }
  3021. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3022. .x-monthpicker-item a:hover {
  3023. background-color: transparent; }
  3024. /* line 312, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3025. .x-monthpicker-item a.x-monthpicker-selected {
  3026. background-color: #e9e9e9;
  3027. border: 1px solid #b2aaa9; }
  3028. /* line 319, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3029. .x-monthpicker-months {
  3030. border-right: 1px solid #585858;
  3031. width: 87px; }
  3032. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3033. .x-monthpicker-years .x-monthpicker-item {
  3034. width: 44px; }
  3035. /* line 328, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3036. .x-monthpicker-yearnav {
  3037. height: 28px; }
  3038. /* line 331, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3039. .x-monthpicker-yearnav button {
  3040. background-image: url('../../resources/themes/images/gray/tools/tool-sprites.gif');
  3041. height: 15px;
  3042. width: 15px;
  3043. padding: 0;
  3044. margin: 6px 12px 5px 15px;
  3045. border: 0;
  3046. outline: 0 none; }
  3047. /* line 339, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3048. .x-monthpicker-yearnav button::-moz-focus-inner {
  3049. border: 0;
  3050. padding: 0; }
  3051. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3052. .x-monthpicker-yearnav-next {
  3053. background-position: 0 -120px; }
  3054. /* line 350, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3055. .x-monthpicker-yearnav-next-over {
  3056. cursor: pointer;
  3057. cursor: hand;
  3058. background-position: -15px -120px; }
  3059. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3060. .x-monthpicker-yearnav-prev {
  3061. background-position: 0 -105px; }
  3062. /* line 360, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3063. .x-monthpicker-yearnav-prev-over {
  3064. cursor: pointer;
  3065. cursor: hand;
  3066. background-position: -15px -105px; }
  3067. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3068. .x-monthpicker-small .x-monthpicker-item {
  3069. margin: 2px 0 2px 0; }
  3070. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3071. .x-monthpicker-small .x-monthpicker-yearnav {
  3072. height: 23px; }
  3073. /* line 375, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3074. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  3075. height: 136px; }
  3076. /* line 385, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3077. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
  3078. .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
  3079. margin-top: 2px; }
  3080. /* line 391, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3081. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  3082. margin-top: 3px;
  3083. margin-bottom: 3px; }
  3084. /* line 397, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3085. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  3086. margin-top: 3px;
  3087. margin-bottom: 3px; }
  3088. /* line 407, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3089. .x-nlg .x-datepicker-header {
  3090. background-image: url('../../resources/themes/images/gray/datepicker/datepicker-header-bg.gif');
  3091. background-repeat: repeat-x;
  3092. background-position: top left; }
  3093. /* line 416, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  3094. .x-nlg .x-datepicker-footer,
  3095. .x-nlg .x-monthpicker-buttons {
  3096. background-image: url('../../resources/themes/images/gray/datepicker/datepicker-footer-bg.gif');
  3097. background-repeat: repeat-x;
  3098. background-position: top left; }
  3099. /* line 6, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3100. .x-color-picker {
  3101. width: 144px;
  3102. height: 90px;
  3103. cursor: pointer; }
  3104. /* line 12, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3105. .x-color-picker a {
  3106. border: 1px solid #fff;
  3107. float: left;
  3108. padding: 2px;
  3109. text-decoration: none;
  3110. -moz-outline: 0 none;
  3111. outline: 0 none;
  3112. cursor: pointer; }
  3113. /* line 28, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3114. .x-color-picker a:hover,
  3115. .x-color-picker a.x-color-picker-selected {
  3116. border-color: #8bb8f3;
  3117. background-color: #deecfd; }
  3118. /* line 33, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3119. .x-color-picker em {
  3120. display: block;
  3121. border: 1px solid #aca899; }
  3122. /* line 39, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  3123. .x-color-picker em span {
  3124. cursor: pointer;
  3125. display: block;
  3126. height: 10px;
  3127. width: 10px;
  3128. line-height: 10px; }
  3129. /* line 6, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3130. .x-menu-body {
  3131. user-select: none;
  3132. -o-user-select: none;
  3133. -ms-user-select: none;
  3134. -moz-user-select: -moz-none;
  3135. -webkit-user-select: none;
  3136. cursor: default;
  3137. background: #f0f0f0 !important;
  3138. padding: 2px; }
  3139. /* line 12, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3140. .x-menu-item .x-form-text {
  3141. user-select: text;
  3142. -webkit-user-select: text;
  3143. -o-user-select: text;
  3144. -ie-user-select: text;
  3145. -moz-user-select: text;
  3146. -ie-user-select: text; }
  3147. /* line 21, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3148. .x-menu-icon-separator {
  3149. position: absolute;
  3150. top: 0px;
  3151. left: 27px;
  3152. z-index: 0;
  3153. border-left: solid 1px #e0e0e0;
  3154. background-color: white;
  3155. width: 2px;
  3156. overflow: hidden; }
  3157. /* line 33, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3158. .x-menu-plain .x-menu-icon-separator {
  3159. display: none; }
  3160. /* line 38, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3161. .x-menu-focus {
  3162. display: block;
  3163. position: absolute;
  3164. top: -10px;
  3165. left: -10px;
  3166. width: 0px;
  3167. height: 0px; }
  3168. /* line 47, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3169. .x-menu-item {
  3170. white-space: nowrap;
  3171. overflow: hidden;
  3172. z-index: 1; }
  3173. /* line 53, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3174. .x-menu-item-cmp {
  3175. margin-bottom: 1px; }
  3176. /* line 57, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3177. .x-menu-item-link {
  3178. display: block;
  3179. margin: 1px;
  3180. padding: 6px 2px 3px 32px;
  3181. text-decoration: none !important;
  3182. line-height: 16px;
  3183. cursor: default; }
  3184. /* line 70, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3185. .x-opera .x-menu-item-link {
  3186. position: relative; }
  3187. /* line 76, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3188. .x-menu-item-icon {
  3189. width: 16px;
  3190. height: 16px;
  3191. position: absolute;
  3192. top: 5px;
  3193. left: 4px;
  3194. background: no-repeat center center; }
  3195. /* line 87, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3196. .x-menu-item-icon-right {
  3197. width: 16px;
  3198. height: 16px;
  3199. position: absolute;
  3200. top: 6px;
  3201. right: 4px;
  3202. background: no-repeat center center; }
  3203. /* line 96, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3204. .x-menu-item-text {
  3205. font-size: 11px;
  3206. color: #222222; }
  3207. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3208. .x-menu-item-checked .x-menu-item-icon {
  3209. background-image: url('../../resources/themes/images/gray/menu/checked.gif'); }
  3210. /* line 105, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3211. .x-menu-item-checked .x-menu-group-icon {
  3212. background-image: url('../../resources/themes/images/gray/menu/group-checked.gif'); }
  3213. /* line 111, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3214. .x-menu-item-unchecked .x-menu-item-icon {
  3215. background-image: url('../../resources/themes/images/gray/menu/unchecked.gif'); }
  3216. /* line 114, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3217. .x-menu-item-unchecked .x-menu-group-icon {
  3218. background-image: none; }
  3219. /* line 119, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3220. .x-menu-item-separator {
  3221. height: 2px;
  3222. border-top: solid 1px #e0e0e0;
  3223. background-color: white;
  3224. margin: 2px 0px;
  3225. overflow: hidden; }
  3226. /* line 127, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3227. .x-menu-item-arrow {
  3228. position: absolute;
  3229. width: 12px;
  3230. height: 9px;
  3231. top: 9px;
  3232. right: 0px;
  3233. background: no-repeat center center;
  3234. background-image: url('../../resources/themes/images/gray/menu/menu-parent.gif'); }
  3235. /* line 137, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3236. .x-menu-item-indent {
  3237. margin-left: 31px;
  3238. /* The 2px is the width of the seperator */ }
  3239. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3240. .x-menu-item-active {
  3241. cursor: pointer; }
  3242. /* line 144, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3243. .x-menu-item-active .x-menu-item-link {
  3244. background-image: none;
  3245. background-color: #e6e6e6;
  3246. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #dcdcdc));
  3247. background-image: -webkit-linear-gradient(top, #eeeeee, #dcdcdc);
  3248. background-image: -moz-linear-gradient(top, #eeeeee, #dcdcdc);
  3249. background-image: -o-linear-gradient(top, #eeeeee, #dcdcdc);
  3250. background-image: -ms-linear-gradient(top, #eeeeee, #dcdcdc);
  3251. background-image: linear-gradient(top, #eeeeee, #dcdcdc);
  3252. margin: 0px;
  3253. border: 1px solid #9d9d9d;
  3254. cursor: pointer;
  3255. -moz-border-radius: 3px;
  3256. -webkit-border-radius: 3px;
  3257. -o-border-radius: 3px;
  3258. -ms-border-radius: 3px;
  3259. -khtml-border-radius: 3px;
  3260. border-radius: 3px; }
  3261. /* line 153, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3262. .x-menu-item-disabled {
  3263. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3264. opacity: 0.5; }
  3265. /* line 160, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3266. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  3267. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3268. opacity: 0.5; }
  3269. /* line 164, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3270. .x-ie .x-menu-item-disabled .x-menu-item-text {
  3271. background-color: transparent; }
  3272. /* line 171, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3273. .x-strict .x-ie7m .x-ie .x-menu-icon-separator {
  3274. width: 1px; }
  3275. /* line 175, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3276. .x-strict .x-ie7m .x-ie .x-menu-item-separator {
  3277. height: 1px; }
  3278. /* line 184, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3279. .x-ie6 .x-menu-item-link,
  3280. .x-ie7 .x-menu-item-link,
  3281. .x-quirks .x-ie8 .x-menu-item-link {
  3282. padding-bottom: 2px; }
  3283. /* line 192, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3284. .x-nlg .x-menu-item-active .x-menu-item-link {
  3285. background: #e6e6e6 repeat-x left top;
  3286. background-image: url('../../resources/themes/images/gray/menu/menu-item-active-bg.gif'); }
  3287. /* line 199, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3288. .x-menu-date-item {
  3289. border-color: #99BBE8; }
  3290. /* line 8, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3291. .x-panel .x-grid-body {
  3292. background: white;
  3293. border-color: #d0d0d0;
  3294. border-style: solid;
  3295. border-width: 1px;
  3296. border-top-color: #c5c5c5; }
  3297. /* line 17, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3298. .x-panel .x-grid-header-ct-hidden {
  3299. visibility: hidden; }
  3300. /* line 22, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3301. .x-grid-empty {
  3302. padding: 10px;
  3303. color: gray;
  3304. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  3305. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3306. .x-grid-header-hidden .x-grid-body {
  3307. border-top-color: #d0d0d0 !important; }
  3308. /* line 32, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3309. .x-grid-view {
  3310. overflow: hidden;
  3311. position: relative; }
  3312. /* line 38, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3313. .x-grid-table {
  3314. table-layout: fixed;
  3315. border-collapse: separate; }
  3316. /* line 45, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3317. .x-autowidth-table table.x-grid-table {
  3318. table-layout: auto;
  3319. width: auto!important; }
  3320. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3321. .x-grid-row .x-grid-table {
  3322. border-collapse: collapse; }
  3323. /* line 54, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3324. .x-grid-locked .x-grid-inner-locked {
  3325. border-width: 0 1px 0 0 !important;
  3326. border-style: solid; }
  3327. /* line 59, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3328. .x-grid-header-ct {
  3329. cursor: default;
  3330. zoom: 1;
  3331. padding: 0;
  3332. border: 1px solid #d0d0d0;
  3333. border-bottom-color: #c5c5c5;
  3334. background-image: none;
  3335. background-color: #c5c5c5;
  3336. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
  3337. background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
  3338. background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
  3339. background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
  3340. background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
  3341. background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
  3342. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3343. .x-accordion-item .x-grid-header-ct {
  3344. border-width: 0 0 1px 0!important; }
  3345. /* line 77, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3346. .x-column-header {
  3347. padding: 0;
  3348. position: absolute;
  3349. overflow: hidden;
  3350. border-right: 1px solid #c5c5c5;
  3351. border-left: 0 none;
  3352. border-top: 0 none;
  3353. border-bottom: 0 none;
  3354. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  3355. color: null;
  3356. font: normal 11px tahoma, arial, verdana, sans-serif;
  3357. background-image: none;
  3358. background-color: #c5c5c5;
  3359. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6));
  3360. background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6);
  3361. background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6);
  3362. background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6);
  3363. background-image: -ms-linear-gradient(top, #f9f9f9, #e3e4e6);
  3364. background-image: linear-gradient(top, #f9f9f9, #e3e4e6); }
  3365. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3366. .x-group-header {
  3367. padding: 0;
  3368. border-left-width: 0; }
  3369. /* line 103, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3370. .x-group-sub-header {
  3371. background: transparent;
  3372. border-top: 1px solid #c5c5c5;
  3373. border-left-width: 0; }
  3374. /* line 109, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3375. .x-column-header-inner {
  3376. zoom: 1;
  3377. position: relative;
  3378. white-space: nowrap;
  3379. line-height: 15px;
  3380. padding: 3px 6px 4px; }
  3381. /* line 116, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3382. .x-column-header-inner .x-column-header-text {
  3383. white-space: nowrap; }
  3384. /* line 123, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3385. .x-column-header-over,
  3386. .x-column-header-sort-ASC,
  3387. .x-column-header-sort-DESC {
  3388. border-left-color: #c4c4c4;
  3389. border-right-color: #c4c4c4;
  3390. background-image: none;
  3391. background-color: #c4c4c4;
  3392. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e8e8), color-stop(39%, #e9e8e8), color-stop(40%, #dedede), color-stop(100%, #dedede));
  3393. background-image: -webkit-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3394. background-image: -moz-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3395. background-image: -o-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3396. background-image: -ms-linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede);
  3397. background-image: linear-gradient(top, #e9e8e8, #e9e8e8 39%, #dedede 40%, #dedede); }
  3398. /* line 135, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3399. .x-nlg .x-grid-header-ct,
  3400. .x-nlg .x-column-header {
  3401. background: repeat-x 0 top;
  3402. background-image: url('../../resources/themes/images/gray/grid/column-header-bg.gif'); }
  3403. /* line 142, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3404. .x-nlg .x-column-header-over,
  3405. .x-nlg .x-column-header-sort-ASC,
  3406. .x-nlg .x-column-header-sort-DESC {
  3407. background: #ebf3fd repeat-x 0 top;
  3408. background-image: url('../../resources/themes/images/gray/grid/column-header-over-bg.gif'); }
  3409. /* line 149, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3410. .x-column-header-trigger {
  3411. display: none;
  3412. height: 100%;
  3413. width: 14px;
  3414. background: no-repeat left center;
  3415. background-color: #c3daf9;
  3416. background-image: url('../../resources/themes/images/gray/grid/grid3-hd-btn.gif');
  3417. position: absolute;
  3418. right: 0;
  3419. top: 0;
  3420. z-index: 2;
  3421. cursor: pointer; }
  3422. /* line 164, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3423. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  3424. display: block; }
  3425. /* line 169, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3426. .x-column-header-align-right {
  3427. text-align: right; }
  3428. /* line 172, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3429. .x-column-header-align-right .x-column-header-text {
  3430. padding-right: 0.5ex;
  3431. margin-right: 6px; }
  3432. /* line 177, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3433. .x-column-header-align-center {
  3434. text-align: center; }
  3435. /* line 180, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3436. .x-column-header-align-left {
  3437. text-align: left; }
  3438. /* line 185, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3439. .x-column-header-sort-ASC .x-column-header-text {
  3440. padding-right: 16px;
  3441. background: no-repeat right 6px;
  3442. background-image: url('../../resources/themes/images/gray/grid/sort_asc.gif'); }
  3443. /* line 190, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3444. .x-column-header-sort-DESC .x-column-header-text {
  3445. padding-right: 16px;
  3446. background: no-repeat right 6px;
  3447. background-image: url('../../resources/themes/images/gray/grid/sort_desc.gif'); }
  3448. /* line 197, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3449. .x-grid-row {
  3450. vertical-align: top; }
  3451. /* line 199, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3452. .x-grid-row .x-grid-cell {
  3453. color: null;
  3454. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3455. background-color: white;
  3456. border-color: #ededed;
  3457. border-style: solid;
  3458. border-top-color: #fafafa;
  3459. border-width: 0; }
  3460. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3461. .x-grid-with-row-lines .x-grid-cell {
  3462. border-width: 1px 0; }
  3463. /* line 216, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3464. .x-grid-rowwrap-div {
  3465. border-width: 1px 0;
  3466. border-color: #ededed;
  3467. border-style: solid;
  3468. border-top-color: #fafafa;
  3469. overflow: hidden; }
  3470. /* line 226, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3471. .x-grid-row-alt .x-grid-cell,
  3472. .x-grid-row-alt .x-grid-rowwrap-div {
  3473. background-color: #fafafa; }
  3474. /* line 231, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3475. .x-grid-row-over .x-grid-cell,
  3476. .x-grid-row-over .x-grid-rowwrap-div {
  3477. border-color: #dddddd;
  3478. background-color: #efefef; }
  3479. /* line 238, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3480. .x-grid-row-focused .x-grid-cell,
  3481. .x-grid-row-focused .x-grid-rowwrap-div {
  3482. border-color: #dddddd;
  3483. background-color: #efefef; }
  3484. /* line 245, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3485. .x-grid-row-selected .x-grid-cell,
  3486. .x-grid-row-selected .x-grid-rowwrap-div {
  3487. border-style: dotted;
  3488. border-color: #bfb8b8;
  3489. background-color: #e0e0e0 !important; }
  3490. /* line 254, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3491. .x-grid-rowwrap-div .x-grid-cell,
  3492. .x-grid-rowwrap-div .x-grid-cell-inner {
  3493. border-width: 0;
  3494. background: transparent; }
  3495. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3496. .x-grid-row-body-hidden {
  3497. display: none; }
  3498. /* line 265, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3499. .x-grid-rowbody {
  3500. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  3501. padding: 4px; }
  3502. /* line 270, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3503. .x-grid-rowbody p {
  3504. margin: 5px 5px 10px 5px; }
  3505. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3506. .x-grid-cell {
  3507. overflow: hidden; }
  3508. /* line 280, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3509. .x-grid-cell-inner {
  3510. overflow: hidden;
  3511. -o-text-overflow: ellipsis;
  3512. text-overflow: ellipsis;
  3513. padding: 2px 6px 3px;
  3514. white-space: nowrap; }
  3515. /* line 291, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3516. .x-grid-with-row-lines .x-grid-cell-inner {
  3517. line-height: 13px;
  3518. padding-bottom: 4px; }
  3519. /* line 297, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3520. .x-action-col-cell .x-grid-cell-inner {
  3521. line-height: 0;
  3522. padding: 2px; }
  3523. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3524. .x-action-col-cell .x-item-disabled {
  3525. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  3526. opacity: 0.3; }
  3527. /* line 306, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3528. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  3529. padding-top: 1px; }
  3530. /* line 310, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3531. .x-grid-row .x-grid-cell-special {
  3532. padding: 0;
  3533. border-right: 1px solid #c6c6c6;
  3534. background-image: none;
  3535. background-color: #f6f6f6;
  3536. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  3537. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3538. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3539. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3540. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3541. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  3542. /* line 316, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3543. .x-grid-row .x-grid-cell-row-checker {
  3544. vertical-align: middle; }
  3545. /*
  3546. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  3547. use an IE-specific trick to make the row disappear. We cannot do this on any
  3548. other browser, because it is not a non-standard thing to do and those other
  3549. browsers will do whacky things with it.
  3550. */
  3551. /* line 330, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3552. .x-ie6 .x-grid-header-row,
  3553. .x-ie7 .x-grid-header-row,
  3554. .x-quirks .x-ie8 .x-grid-header-row {
  3555. position: absolute; }
  3556. /* line 335, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3557. .x-grid-row-selected .x-grid-cell-special {
  3558. border-right: 1px solid #d4b7b7;
  3559. background-image: none;
  3560. background-color: #e0e0e0;
  3561. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e0e0e0), color-stop(100%, #d3d3d3));
  3562. background-image: -webkit-linear-gradient(left, #e0e0e0, #d3d3d3);
  3563. background-image: -moz-linear-gradient(left, #e0e0e0, #d3d3d3);
  3564. background-image: -o-linear-gradient(left, #e0e0e0, #d3d3d3);
  3565. background-image: -ms-linear-gradient(left, #e0e0e0, #d3d3d3);
  3566. background-image: linear-gradient(left, #e0e0e0, #d3d3d3); }
  3567. /* line 341, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3568. .x-grid-dirty-cell {
  3569. background-image: url('../../resources/themes/images/gray/grid/dirty.gif');
  3570. background-position: 0 0;
  3571. background-repeat: no-repeat; }
  3572. /* line 347, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3573. .x-grid-cell-selected {
  3574. background-color: #B8CFEE !important; }
  3575. /* line 353, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3576. .x-nlg .x-grid-cell-special {
  3577. background-repeat: repeat-y;
  3578. background-position: top right; }
  3579. /* line 359, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3580. .x-nlg .x-grid-row .x-grid-cell-special,
  3581. .x-nlg .x-grid-row-over .x-grid-cell-special {
  3582. background-image: url('../../resources/themes/images/gray/grid/cell-special-bg.gif'); }
  3583. /* line 365, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3584. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  3585. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  3586. background-image: url('../../resources/themes/images/gray/grid/cell-special-selected-bg.gif'); }
  3587. /* line 371, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3588. .x-grid-with-col-lines .x-grid-cell {
  3589. padding-right: 0;
  3590. border-right: 1px solid #c6c6c6; }
  3591. /* line 378, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3592. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3593. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3594. padding-left: 12px;
  3595. background-image: url('../../resources/themes/images/gray/grid/property-cell-bg.gif');
  3596. background-repeat: no-repeat;
  3597. background-position: -16px 2px; }
  3598. /* line 388, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3599. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3600. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3601. background-position: -16px 1px; }
  3602. /* line 394, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3603. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3604. background-position: -16px 2px; }
  3605. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3606. .x-unselectable {
  3607. user-select: none;
  3608. -o-user-select: none;
  3609. -ms-user-select: none;
  3610. -moz-user-select: -moz-none;
  3611. -webkit-user-select: none;
  3612. cursor: default; }
  3613. /* line 403, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3614. .x-grid-row-body-hidden {
  3615. display: none; }
  3616. /* line 407, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3617. .x-grid-group-collapsed {
  3618. display: none; }
  3619. /* line 413, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3620. .x-grid-view .x-grid-td-expander {
  3621. vertical-align: top; }
  3622. /* line 418, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3623. .x-grid-td-expander {
  3624. background: repeat-y right transparent; }
  3625. /* line 424, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3626. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3627. padding: 0 !important; }
  3628. /* line 430, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3629. .x-grid-row-expander {
  3630. background-image: url('../../resources/themes/images/gray/grid/group-collapse.gif');
  3631. background-color: transparent;
  3632. width: 9px;
  3633. height: 13px;
  3634. margin-left: 3px;
  3635. background-repeat: no-repeat;
  3636. background-position: 0 -2px; }
  3637. /* line 444, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3638. .x-grid-row-collapsed .x-grid-row-expander {
  3639. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3640. /* line 449, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3641. .x-grid-resize-marker {
  3642. position: absolute;
  3643. z-index: 5;
  3644. top: 0;
  3645. width: 1px;
  3646. background-color: #0f0f0f; }
  3647. /* line 459, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3648. .col-move-top,
  3649. .col-move-bottom {
  3650. width: 9px;
  3651. height: 9px;
  3652. position: absolute;
  3653. top: 0;
  3654. line-height: 0;
  3655. font-size: 0;
  3656. overflow: hidden;
  3657. z-index: 20000;
  3658. background: no-repeat left top transparent; }
  3659. /* line 471, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3660. .col-move-top {
  3661. background-image: url('../../resources/themes/images/gray/grid/col-move-top.gif'); }
  3662. /* line 475, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3663. .col-move-bottom {
  3664. background-image: url('../../resources/themes/images/gray/grid/col-move-bottom.gif'); }
  3665. /* line 480, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3666. .x-tbar-page-number {
  3667. width: 30px; }
  3668. /* line 487, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3669. .x-grid-group,
  3670. .x-grid-group-body,
  3671. .x-grid-group-hd {
  3672. zoom: 1; }
  3673. /* line 491, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3674. .x-grid-group-hd {
  3675. padding-top: 6px; }
  3676. /* line 494, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3677. .x-grid-group-hd .x-grid-cell-inner {
  3678. padding: 10px 4px 4px 4px;
  3679. background: white;
  3680. border-width: 0 0 2px 0;
  3681. border-style: solid;
  3682. border-color: #bcb1b0;
  3683. cursor: pointer; }
  3684. /* line 508, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3685. .x-grid-group-hd-collapsible .x-grid-group-title {
  3686. background: transparent no-repeat 0 -1px;
  3687. background-image: url('../../resources/themes/images/gray/grid/group-collapse.gif');
  3688. padding: 0 0 0 14px; }
  3689. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3690. .x-grid-group-title {
  3691. color: #616161;
  3692. font: bold 11px tahoma, arial, verdana, sans-serif; }
  3693. /* line 521, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3694. .x-grid-group-hd-collapsed .x-grid-group-title {
  3695. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3696. /* line 526, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3697. .x-grid-group-collapsed .x-grid-group-body {
  3698. display: none; }
  3699. /* line 530, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3700. .x-grid-group-collapsed .x-grid-group-title {
  3701. background-image: url('../../resources/themes/images/gray/grid/group-expand.gif'); }
  3702. /* line 534, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3703. .x-group-by-icon {
  3704. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3705. /* line 538, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3706. .x-show-groups-icon {
  3707. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3708. /* line 542, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3709. .x-column-header-checkbox .x-column-header-inner {
  3710. padding: 0; }
  3711. /* line 546, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3712. .x-grid-cell-special .x-grid-cell-inner {
  3713. padding-left: 4px;
  3714. padding-right: 4px; }
  3715. /* line 552, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3716. .x-grid-row-checker,
  3717. .x-column-header-checkbox .x-column-header-text {
  3718. height: 14px;
  3719. width: 14px;
  3720. line-height: 0;
  3721. background-image: url('../../resources/themes/images/gray/grid/unchecked.gif');
  3722. background-position: -1px -1px;
  3723. background-repeat: no-repeat;
  3724. background-color: transparent; }
  3725. /* line 564, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3726. .x-column-header-checkbox .x-column-header-text {
  3727. display: block;
  3728. margin: 0 5px; }
  3729. /* IE6, IE7, and all IE Quirks mode need line-height to be the same as checkbox height or the header/row height will be too tall */
  3730. /* line 573, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3731. .x-quirks .x-ie .x-grid-row-checker,
  3732. .x-quirks .x-ie .x-column-header-checkbox .x-column-header-text, .x-ie7m .x-grid-row-checker, .x-ie7m .x-column-header-checkbox .x-column-header-text {
  3733. line-height: 14px; }
  3734. /* line 579, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3735. .x-grid-hd-checker-on .x-column-header-text {
  3736. background-image: url('../../resources/themes/images/gray/grid/checked.gif'); }
  3737. /* line 583, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3738. .x-grid-cell-row-checker .x-grid-cell-inner {
  3739. padding-top: 4px;
  3740. padding-bottom: 2px;
  3741. line-height: 14px; }
  3742. /* line 588, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3743. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  3744. padding-top: 3px; }
  3745. /* line 591, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3746. .x-grid-row-checker {
  3747. margin-left: 1px;
  3748. background-position: 50% -2px; }
  3749. /* line 598, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3750. .x-grid-row-selected .x-grid-row-checker,
  3751. .x-grid-row-checked .x-grid-row-checker {
  3752. background-image: url('../../resources/themes/images/gray/grid/checked.gif'); }
  3753. /* line 603, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3754. .x-tbar-page-first {
  3755. background-image: url('../../resources/themes/images/gray/grid/page-first.gif') !important; }
  3756. /* line 607, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3757. .x-tbar-loading {
  3758. background-image: url('../../resources/themes/images/gray/grid/refresh.gif') !important; }
  3759. /* line 611, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3760. .x-tbar-page-last {
  3761. background-image: url('../../resources/themes/images/gray/grid/page-last.gif') !important; }
  3762. /* line 615, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3763. .x-tbar-page-next {
  3764. background-image: url('../../resources/themes/images/gray/grid/page-next.gif') !important; }
  3765. /* line 619, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3766. .x-tbar-page-prev {
  3767. background-image: url('../../resources/themes/images/gray/grid/page-prev.gif') !important; }
  3768. /* line 624, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3769. .x-item-disabled .x-tbar-loading {
  3770. background-image: url('../../resources/themes/images/gray/grid/refresh-disabled.gif') !important; }
  3771. /* line 628, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3772. .x-item-disabled .x-tbar-page-first {
  3773. background-image: url('../../resources/themes/images/gray/grid/page-first-disabled.gif') !important; }
  3774. /* line 632, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3775. .x-item-disabled .x-tbar-page-last {
  3776. background-image: url('../../resources/themes/images/gray/grid/page-last-disabled.gif') !important; }
  3777. /* line 636, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3778. .x-item-disabled .x-tbar-page-next {
  3779. background-image: url('../../resources/themes/images/gray/grid/page-next-disabled.gif') !important; }
  3780. /* line 640, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3781. .x-item-disabled .x-tbar-page-prev {
  3782. background-image: url('../../resources/themes/images/gray/grid/page-prev-disabled.gif') !important; }
  3783. /* line 646, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3784. .x-hmenu-sort-asc .x-menu-item-icon {
  3785. background-image: url('../../resources/themes/images/gray/grid/hmenu-asc.gif'); }
  3786. /* line 650, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3787. .x-hmenu-sort-desc .x-menu-item-icon {
  3788. background-image: url('../../resources/themes/images/gray/grid/hmenu-desc.gif'); }
  3789. /* line 654, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3790. .x-hmenu-lock .x-menu-item-icon {
  3791. background-image: url('../../resources/themes/images/gray/grid/hmenu-lock.gif'); }
  3792. /* line 658, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3793. .x-hmenu-unlock .x-menu-item-icon {
  3794. background-image: url('../../resources/themes/images/gray/grid/hmenu-unlock.gif'); }
  3795. /* line 662, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3796. .x-group-by-icon {
  3797. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3798. /* line 666, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3799. .x-cols-icon .x-menu-item-icon {
  3800. background-image: url('../../resources/themes/images/gray/grid/columns.gif'); }
  3801. /* line 670, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3802. .x-show-groups-icon {
  3803. background-image: url('../../resources/themes/images/gray/grid/group-by.gif'); }
  3804. /* line 675, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3805. .x-grid-drop-indicator {
  3806. position: absolute;
  3807. height: 1px;
  3808. line-height: 0px;
  3809. background-color: #77BC71;
  3810. overflow: visible; }
  3811. /* line 682, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3812. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3813. position: absolute;
  3814. top: -8px;
  3815. left: -12px;
  3816. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-right.png');
  3817. height: 16px;
  3818. width: 16px; }
  3819. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3820. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3821. position: absolute;
  3822. top: -8px;
  3823. right: -11px;
  3824. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-left.png');
  3825. height: 16px;
  3826. width: 16px; }
  3827. /* line 702, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3828. .x-ie6 .x-grid-drop-indicator-left {
  3829. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-right.gif'); }
  3830. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3831. .x-ie6 .x-grid-drop-indicator-right {
  3832. background-image: url('../../resources/themes/images/gray/grid/dd-insert-arrow-left.gif'); }
  3833. /* line 714, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3834. .x-grid-editor .x-form-text {
  3835. padding: 0 4px; }
  3836. /* line 717, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3837. .x-grid-editor .x-form-cb-wrap {
  3838. padding-top: 3px; }
  3839. /* line 723, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3840. .x-grid-row-editor {
  3841. position: absolute !important;
  3842. z-index: 1;
  3843. zoom: 1;
  3844. overflow: visible !important; }
  3845. /* line 729, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3846. .x-grid-row-editor .x-form-text {
  3847. padding: 0 2px; }
  3848. /* line 732, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3849. .x-grid-row-editor .x-form-cb-wrap {
  3850. padding-top: 0; }
  3851. /* line 735, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3852. .x-grid-row-editor .x-form-checkbox {
  3853. margin-left: -4px; }
  3854. /* line 738, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3855. .x-grid-row-editor .x-form-display-field {
  3856. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3857. padding-top: 0;
  3858. padding-left: 2px; }
  3859. /* line 744, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3860. .x-grid-row-editor .x-panel-body {
  3861. background-color: #ebe6e6;
  3862. border-top: 1px solid #d0d0d0 !important;
  3863. border-bottom: 1px solid #d0d0d0 !important; }
  3864. /* line 754, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3865. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3866. text-align: center; }
  3867. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3868. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3869. height: 19px; }
  3870. /* line 761, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3871. .x-grid-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-form-trigger-wrap .x-form-spinner-down, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-up, .x-grid-row-editor .x-form-trigger-wrap .x-form-spinner-down {
  3872. background-image: url('../../resources/themes/images/gray/form/spinner-small.gif');
  3873. height: 10px !important; }
  3874. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3875. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3876. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3877. height: 18px; }
  3878. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3879. .x-border-box .x-grid-editor .x-form-trigger,
  3880. .x-border-box .x-grid-row-editor .x-form-trigger {
  3881. height: 20px; }
  3882. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3883. .x-border-box .x-grid-editor .x-form-text,
  3884. .x-border-box .x-grid-row-editor .x-form-text {
  3885. height: 20px;
  3886. padding-bottom: 1px; }
  3887. /* line 787, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3888. .x-ie .x-grid-editor .x-form-text {
  3889. padding-left: 5px; }
  3890. /* line 790, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3891. .x-ie .x-grid-row-editor .x-form-text {
  3892. padding-left: 3px; }
  3893. /* line 796, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3894. .x-ie8m .x-grid-editor .x-form-text,
  3895. .x-ie8m .x-grid-row-editor .x-form-text {
  3896. padding-top: 1px; }
  3897. /* line 803, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3898. .x-strict .x-ie6 .x-grid-editor .x-form-text,
  3899. .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
  3900. .x-strict .x-ie7 .x-grid-editor .x-form-text,
  3901. .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
  3902. height: 17px; }
  3903. /* line 809, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3904. .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
  3905. line-height: 17px; }
  3906. /* line 818, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3907. .x-opera .x-grid-editor .x-form-text {
  3908. padding-left: 5px; }
  3909. /* line 821, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3910. .x-opera .x-grid-row-editor .x-form-text {
  3911. padding-left: 3px; }
  3912. /* line 828, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3913. .x-grid-row-editor-buttons {
  3914. background-color: #ebe6e6;
  3915. position: absolute;
  3916. bottom: -31px;
  3917. padding: 4px;
  3918. height: 32px; }
  3919. /* line 835, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3920. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3921. width: 192px;
  3922. height: 24px; }
  3923. /* line 845, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3924. .x-grid-row-editor-buttons-ml,
  3925. .x-grid-row-editor-buttons-mr,
  3926. .x-grid-row-editor-buttons-bl,
  3927. .x-grid-row-editor-buttons-br,
  3928. .x-grid-row-editor-buttons-bc {
  3929. position: absolute;
  3930. overflow: hidden; }
  3931. /* line 851, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3932. .x-grid-row-editor-buttons-bl,
  3933. .x-grid-row-editor-buttons-br {
  3934. width: 4px;
  3935. height: 4px;
  3936. bottom: 0px;
  3937. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-corners.gif'); }
  3938. /* line 857, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3939. .x-grid-row-editor-buttons-bl {
  3940. left: 0px;
  3941. background-position: 0px -16px; }
  3942. /* line 861, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3943. .x-grid-row-editor-buttons-br {
  3944. right: 0px;
  3945. background-position: 0px -20px; }
  3946. /* line 866, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3947. .x-grid-row-editor-buttons-bc {
  3948. position: absolute;
  3949. left: 4px;
  3950. bottom: 0px;
  3951. width: 192px;
  3952. height: 1px;
  3953. background-color: #d0d0d0; }
  3954. /* line 876, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3955. .x-grid-row-editor-buttons-ml,
  3956. .x-grid-row-editor-buttons-mr {
  3957. height: 27px;
  3958. width: 1px;
  3959. top: 1px;
  3960. background-color: #d0d0d0; }
  3961. /* line 882, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3962. .x-grid-row-editor-buttons-ml {
  3963. left: 0px; }
  3964. /* line 885, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3965. .x-grid-row-editor-buttons-mr {
  3966. background-position: 0px -20px;
  3967. right: 0px; }
  3968. /* line 891, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3969. .x-grid-row-editor-errors ul {
  3970. margin-left: 5px; }
  3971. /* line 894, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3972. .x-grid-row-editor-errors li {
  3973. list-style: disc;
  3974. margin-left: 15px; }
  3975. /*misc*/
  3976. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3977. .x-webkit *:focus {
  3978. outline: none !important; }
  3979. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3980. .x-form-item {
  3981. vertical-align: top;
  3982. table-layout: fixed; }
  3983. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3984. .x-autocontainer-form-item,
  3985. .x-anchor-form-item,
  3986. .x-vbox-form-item,
  3987. .x-checkboxgroup-form-item,
  3988. .x-table-form-item {
  3989. margin-bottom: 5px; }
  3990. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3991. .x-form-layout-table {
  3992. border-collapse: separate;
  3993. border-spacing: 0 2px; }
  3994. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3995. .x-form-item-body {
  3996. position: relative; }
  3997. /* line 42, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3998. .x-form-form-item td {
  3999. border-top: 1px solid transparent; }
  4000. /* line 51, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4001. .x-ie6 .x-form-layout-table {
  4002. border-collapse: collapse;
  4003. border-spacing: 0; }
  4004. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4005. .x-ie6 .x-form-form-item td {
  4006. border-top-width: 0; }
  4007. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4008. .x-ie6 td.x-form-item-pad {
  4009. height: 5px; }
  4010. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4011. .x-editor .x-form-item-body {
  4012. padding-bottom: 0; }
  4013. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4014. .x-form-item-label {
  4015. display: block;
  4016. padding: 3px 0 0;
  4017. font-size: 12px;
  4018. user-select: none;
  4019. -o-user-select: none;
  4020. -ms-user-select: none;
  4021. -moz-user-select: -moz-none;
  4022. -webkit-user-select: none;
  4023. cursor: default; }
  4024. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4025. .x-form-item-label-top {
  4026. display: block;
  4027. zoom: 1;
  4028. padding: 0 0 5px 0; }
  4029. /* line 85, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4030. .x-form-item-label-right {
  4031. text-align: right; }
  4032. /* line 89, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4033. .x-form-invalid-under {
  4034. padding: 2px 2px 2px 18px;
  4035. color: #c0272b;
  4036. font: normal 11px tahoma, arial, verdana, sans-serif;
  4037. line-height: 16px;
  4038. background: no-repeat 0 2px;
  4039. background-image: url('../../resources/themes/images/gray/form/exclamation.gif'); }
  4040. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4041. .x-form-invalid-icon {
  4042. width: 18px;
  4043. height: 14px;
  4044. background: no-repeat center center;
  4045. background-image: url('../../resources/themes/images/gray/form/exclamation.gif');
  4046. overflow: hidden; }
  4047. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4048. .x-form-invalid-icon ul {
  4049. display: block;
  4050. width: 18px; }
  4051. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4052. .x-form-invalid-icon ul li {
  4053. /* prevent inner elements from interfering with QuickTip hovering */
  4054. display: none; }
  4055. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  4056. .x-lbl-top-err-icon {
  4057. margin-bottom: 4px; }
  4058. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4059. .x-form-field,
  4060. .x-form-display-field {
  4061. margin: 0 0 0 0;
  4062. font: normal 12px tahoma, arial, verdana, sans-serif;
  4063. color: black; }
  4064. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4065. .x-form-item-hidden {
  4066. margin: 0; }
  4067. /* line 19, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4068. .x-form-text,
  4069. textarea.x-form-field {
  4070. padding: 1px 3px;
  4071. background: repeat-x 0 0;
  4072. border: 1px solid;
  4073. background-color: white;
  4074. background-image: url('../../resources/themes/images/gray/form/text-bg.gif');
  4075. border-color: #b5b8c8; }
  4076. /* line 36, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4077. .x-form-text {
  4078. height: 18px;
  4079. line-height: 15px;
  4080. vertical-align: top; }
  4081. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4082. .x-ie8m .x-form-text {
  4083. line-height: 15px; }
  4084. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4085. .x-border-box .x-form-text {
  4086. height: 22px; }
  4087. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4088. textarea.x-form-field {
  4089. color: black;
  4090. overflow: auto;
  4091. height: auto;
  4092. line-height: normal;
  4093. background: repeat-x 0 0;
  4094. background-color: white;
  4095. background-image: url('../../resources/themes/images/gray/form/text-bg.gif');
  4096. resize: none; }
  4097. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4098. .x-border-box textarea.x-form-field {
  4099. height: auto; }
  4100. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4101. .x-safari.x-mac textarea.x-form-field {
  4102. margin-bottom: -2px; }
  4103. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4104. .x-form-focus,
  4105. textarea.x-form-focus {
  4106. border-color: #a1a1a1; }
  4107. /* line 81, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4108. .x-form-invalid-field,
  4109. textarea.x-form-invalid-field {
  4110. background-color: white;
  4111. background-image: url('../../resources/themes/images/gray/grid/invalid_line.gif');
  4112. background-repeat: repeat-x;
  4113. background-position: bottom;
  4114. border-color: #cc3300; }
  4115. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4116. .x-form-item {
  4117. font: normal 12px tahoma, arial, verdana, sans-serif; }
  4118. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4119. .x-form-empty-field, textarea.x-form-empty-field {
  4120. color: gray; }
  4121. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4122. .x-webkit .x-form-empty-field {
  4123. line-height: 15px; }
  4124. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4125. .x-form-display-field {
  4126. padding-top: 3px; }
  4127. /*
  4128. In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
  4129. This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
  4130. IE8 quirks on Windows 7 requires this fix, but on
  4131. IE8 quirks on Windows XP, this is breaks the layout.
  4132. TODO: Check field input heights in IE8 quirks on Windows Vista.
  4133. Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
  4134. */
  4135. /* line 121, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4136. .x-quirks .x-ie9p .x-form-text,
  4137. .x-ie7m .x-form-text {
  4138. margin-top: -1px;
  4139. margin-bottom: -1px; }
  4140. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4141. .x-ie .x-form-file {
  4142. height: 23px;
  4143. line-height: 18px;
  4144. vertical-align: middle; }
  4145. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4146. .x-field-default-toolbar .x-form-text {
  4147. height: 16px; }
  4148. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4149. .x-border-box .x-field-default-toolbar .x-form-text {
  4150. height: 20px; }
  4151. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  4152. .x-field-default-toolbar .x-form-item-label-left {
  4153. padding-left: 4px; }
  4154. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4155. .x-fieldset {
  4156. border: 1px solid #b5b8c8;
  4157. padding: 10px;
  4158. margin-bottom: 10px;
  4159. display: block;
  4160. /* preserve margins in IE */
  4161. position: relative; }
  4162. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4163. .x-ie .x-fieldset {
  4164. padding-top: 0; }
  4165. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4166. .x-ie .x-fieldset .x-fieldset-body {
  4167. padding-top: 10px; }
  4168. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4169. .x-fieldset-header-checkbox {
  4170. line-height: 14px; }
  4171. /* line 29, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4172. .x-fieldset-header {
  4173. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  4174. color: #333333;
  4175. padding: 0 3px 1px;
  4176. overflow: hidden; }
  4177. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4178. .x-fieldset-header .x-fieldset-header-text {
  4179. float: left;
  4180. padding: 1px 0; }
  4181. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4182. .x-fieldset-header .x-fieldset-header-text-collapsible {
  4183. cursor: pointer; }
  4184. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4185. .x-fieldset-header .x-form-item,
  4186. .x-fieldset-header .x-tool {
  4187. float: left;
  4188. margin: 1px 0 0 0; }
  4189. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4190. .x-fieldset-header .x-form-cb-wrap {
  4191. padding: 1px 0;
  4192. font-size: 0;
  4193. line-height: 0; }
  4194. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4195. .x-fieldset-with-title .x-fieldset-header-checkbox,
  4196. .x-fieldset-with-title .x-tool {
  4197. margin-right: 3px; }
  4198. /* line 65, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4199. .x-webkit .x-fieldset-header {
  4200. -webkit-padding-start: 3px;
  4201. -webkit-padding-end: 3px; }
  4202. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4203. .x-opera .x-fieldset-with-legend {
  4204. margin-top: -1px; }
  4205. /* line 78, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4206. .x-opera.x-mac .x-fieldset-header-text {
  4207. padding: 2px 0 0; }
  4208. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4209. .x-strict .x-ie8 .x-fieldset-header {
  4210. margin-bottom: -1px; }
  4211. /* line 90, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4212. .x-strict .x-ie8 .x-fieldset-header .x-tool,
  4213. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
  4214. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  4215. position: relative;
  4216. top: -1px; }
  4217. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4218. .x-quirks .x-ie .x-fieldset-header,
  4219. .x-ie8m .x-fieldset-header {
  4220. padding-left: 1px;
  4221. padding-right: 1px; }
  4222. /* line 108, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4223. .x-fieldset-collapsed .x-fieldset-body {
  4224. display: none; }
  4225. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4226. .x-fieldset-collapsed {
  4227. padding-bottom: 0 !important;
  4228. border-width: 1px 1px 0 1px !important;
  4229. border-left-color: transparent !important;
  4230. border-right-color: transparent !important; }
  4231. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4232. .x-ie6 .x-fieldset-collapsed {
  4233. border-width: 1px 0 0 0 !important;
  4234. padding-bottom: 0 !important;
  4235. margin-left: 1px;
  4236. margin-right: 1px; }
  4237. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4238. .x-ie .x-fieldset-bwrap {
  4239. zoom: 1; }
  4240. /* IE legend positioning bug */
  4241. /* line 137, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4242. .x-ie .x-fieldset-noborder legend {
  4243. position: relative;
  4244. margin-bottom: 23px; }
  4245. /* line 143, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4246. .x-ie .x-fieldset-noborder legend span {
  4247. position: absolute;
  4248. left: 16px; }
  4249. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4250. .x-fieldset {
  4251. overflow: hidden; }
  4252. /* line 153, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4253. .x-fieldset-bwrap {
  4254. overflow: hidden;
  4255. zoom: 1; }
  4256. /* line 159, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  4257. .x-fieldset-body {
  4258. overflow: hidden; }
  4259. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4260. .x-form-file-wrap .x-form-text {
  4261. color: #777; }
  4262. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4263. .x-form-file-wrap .x-form-file-btn {
  4264. overflow: hidden; }
  4265. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  4266. .x-form-file-wrap .x-form-file-input {
  4267. position: absolute;
  4268. top: -4px;
  4269. right: -2px;
  4270. height: 30px;
  4271. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  4272. opacity: 0;
  4273. /* Yes, there's actually a good reason for this...
  4274. * If the configured buttonText is set to something longer than the default,
  4275. * then it will quickly exceed the width of the hidden file input's "Browse..."
  4276. * button, so part of the custom button's clickable area will be covered by
  4277. * the hidden file input's text box instead. This results in a text-selection
  4278. * mouse cursor over that part of the button, at least in Firefox, which is
  4279. * confusing to a user. Giving the hidden file input a huge font-size makes
  4280. * the native button part very large so it will cover the whole clickable area.
  4281. */
  4282. font-size: 100px; }
  4283. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4284. .x-form-cb-wrap {
  4285. padding-top: 3px; }
  4286. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4287. .x-form-checkbox,
  4288. .x-form-radio {
  4289. vertical-align: -1px;
  4290. width: 13px;
  4291. height: 13px;
  4292. background: no-repeat;
  4293. background-image: url('../../resources/themes/images/gray/form/checkbox.gif');
  4294. overflow: hidden;
  4295. padding: 0;
  4296. border: 0; }
  4297. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4298. .x-form-checkbox::-moz-focus-inner,
  4299. .x-form-radio::-moz-focus-inner {
  4300. padding: 0;
  4301. border: 0; }
  4302. /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
  4303. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4304. .x-nbr.x-ie .x-form-checkbox,
  4305. .x-nbr.x-ie .x-form-radio {
  4306. font-size: 0; }
  4307. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4308. .x-form-cb-checked .x-form-checkbox,
  4309. .x-form-cb-checked .x-form-radio {
  4310. background-position: 0 -13px; }
  4311. /* Focused */
  4312. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4313. .x-form-cb-focus {
  4314. background-position: -13px 0; }
  4315. /* line 48, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4316. .x-form-cb-checked .x-form-cb-focus {
  4317. background-position: -13px -13px; }
  4318. /* Radios */
  4319. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4320. .x-form-radio {
  4321. background-image: url('../../resources/themes/images/gray/form/radio.gif'); }
  4322. /* boxLabel */
  4323. /* line 59, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4324. .x-form-cb-label-before {
  4325. margin-right: 4px; }
  4326. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4327. .x-form-cb-label-after {
  4328. margin-left: 4px; }
  4329. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4330. .x-form-checkboxgroup-body {
  4331. padding: 1px 4px 1px 4px; }
  4332. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4333. .x-form-invalid .x-form-checkboxgroup-body {
  4334. border: 1px solid #c30!important;
  4335. background: transparent repeat-x bottom;
  4336. background-image: url('../../resources/themes/images/gray/grid/invalid_line.gif');
  4337. padding: 1px 3px 0 3px; }
  4338. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4339. .x-check-group-alt {
  4340. background: #d5d5d5;
  4341. border-top: 1px dotted #b4b4b4;
  4342. border-bottom: 1px dotted #b4b4b4; }
  4343. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4344. .x-form-check-group-label {
  4345. color: #333;
  4346. border-bottom: 1px solid #333;
  4347. margin: 0 30px 5px 0;
  4348. padding: 2px; }
  4349. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4350. .x-form-trigger-wrap {
  4351. vertical-align: top; }
  4352. /* line 10, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4353. .x-form-trigger {
  4354. background-image: url('../../resources/themes/images/gray/form/trigger.gif');
  4355. background-position: 0 0;
  4356. width: 17px;
  4357. height: 21px;
  4358. border-bottom: 1px solid #b5b8c8;
  4359. cursor: pointer;
  4360. cursor: hand;
  4361. overflow: hidden; }
  4362. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4363. .x-border-box .x-form-trigger {
  4364. height: 22px; }
  4365. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4366. .x-field-default-toolbar .x-form-trigger {
  4367. height: 19px; }
  4368. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4369. .x-border-box .x-field-default-toolbar .x-form-trigger {
  4370. height: 20px; }
  4371. /* line 37, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4372. .x-form-trigger-over {
  4373. background-position: -17px 0;
  4374. border-bottom-color: #a1a1a1; }
  4375. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4376. .x-form-trigger-wrap-focus .x-form-trigger {
  4377. background-position: -51px 0;
  4378. border-bottom-color: #a1a1a1; }
  4379. /* line 49, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4380. .x-form-trigger-wrap-focus .x-form-trigger-over {
  4381. background-position: -68px 0;
  4382. border-bottom-color: null; }
  4383. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4384. .x-form-trigger-click,
  4385. .x-form-trigger-wrap-focus .x-form-trigger-click {
  4386. background-position: -34px 0;
  4387. border-bottom-color: null; }
  4388. /* line 66, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4389. .x-form-trigger-icon {
  4390. height: 16px;
  4391. background-repeat: no-repeat;
  4392. background-position: 7px 6px; }
  4393. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4394. .x-pickerfield-open .x-form-field {
  4395. -moz-border-radius-bottomleft: 0;
  4396. -webkit-border-bottom-left-radius: 0;
  4397. -o-border-bottom-left-radius: 0;
  4398. -ms-border-bottom-left-radius: 0;
  4399. -khtml-border-bottom-left-radius: 0;
  4400. border-bottom-left-radius: 0;
  4401. -moz-border-radius-bottomright: 0;
  4402. -webkit-border-bottom-right-radius: 0;
  4403. -o-border-bottom-right-radius: 0;
  4404. -ms-border-bottom-right-radius: 0;
  4405. -khtml-border-bottom-right-radius: 0;
  4406. border-bottom-right-radius: 0; }
  4407. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4408. .x-pickerfield-open-above .x-form-field {
  4409. -moz-border-radius-bottomleft: 3px;
  4410. -webkit-border-bottom-left-radius: 3px;
  4411. -o-border-bottom-left-radius: 3px;
  4412. -ms-border-bottom-left-radius: 3px;
  4413. -khtml-border-bottom-left-radius: 3px;
  4414. border-bottom-left-radius: 3px;
  4415. -moz-border-radius-topleft: 0;
  4416. -webkit-border-top-left-radius: 0;
  4417. -o-border-top-left-radius: 0;
  4418. -ms-border-top-left-radius: 0;
  4419. -khtml-border-top-left-radius: 0;
  4420. border-top-left-radius: 0;
  4421. -moz-border-radius-topright: 0;
  4422. -webkit-border-top-right-radius: 0;
  4423. -o-border-top-right-radius: 0;
  4424. -ms-border-top-right-radius: 0;
  4425. -khtml-border-top-right-radius: 0;
  4426. border-top-right-radius: 0; }
  4427. /* line 87, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4428. .x-form-arrow-trigger .x-form-trigger-icon {
  4429. background-image: url('../../resources/themes/images/gray/boundlist/trigger-arrow.png'); }
  4430. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4431. .x-form-date-trigger {
  4432. background-image: url('../../resources/themes/images/gray/form/date-trigger.gif'); }
  4433. /* line 99, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4434. .x-form-trigger-wrap .x-form-spinner-up,
  4435. .x-form-trigger-wrap .x-form-spinner-down {
  4436. background-image: url('../../resources/themes/images/gray/form/spinner.gif');
  4437. width: 17px !important;
  4438. height: 11px !important;
  4439. font-size: 0;
  4440. /*for IE*/
  4441. border-bottom: 0; }
  4442. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4443. .x-form-trigger-wrap .x-form-spinner-down {
  4444. background-position: 0 -11px; }
  4445. /* line 113, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4446. .x-form-trigger-wrap-focus .x-form-spinner-down {
  4447. background-position: -51px -11px; }
  4448. /* line 116, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4449. .x-form-trigger-wrap .x-form-spinner-down-over {
  4450. background-position: -17px -11px; }
  4451. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4452. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4453. background-position: -68px -11px; }
  4454. /* line 122, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4455. .x-form-trigger-wrap .x-form-spinner-down-click {
  4456. background-position: -34px -11px; }
  4457. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4458. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  4459. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4460. background-image: url('../../resources/themes/images/gray/form/spinner-small.gif');
  4461. height: 10px !important; }
  4462. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4463. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4464. background-position: 0 -10px; }
  4465. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4466. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  4467. background-position: -51px -10px; }
  4468. /* line 142, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4469. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  4470. background-position: -17px -10px; }
  4471. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4472. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4473. background-position: -68px -10px; }
  4474. /* line 148, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4475. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  4476. background-position: -34px -10px; }
  4477. /* line 154, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4478. .x-trigger-noedit {
  4479. cursor: pointer;
  4480. cursor: hand; }
  4481. /* line 160, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4482. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  4483. cursor: auto; }
  4484. /* line 166, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4485. .x-form-clear-trigger {
  4486. background-image: url('../../resources/themes/images/gray/form/clear-trigger.gif'); }
  4487. /* line 169, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4488. .x-form-search-trigger {
  4489. background-image: url('../../resources/themes/images/gray/form/search-trigger.gif'); }
  4490. /* line 177, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4491. .x-quirks .prefixie6 .x-form-trigger-input-cell {
  4492. height: 22px; }
  4493. /* line 180, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4494. .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
  4495. height: 20px; }
  4496. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4497. .x-html-editor-wrap {
  4498. border: 1px solid #b5b8c8; }
  4499. /* line 9, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4500. .x-html-editor-wrap .x-toolbar {
  4501. border-top-width: 0;
  4502. border-left-width: 0;
  4503. border-right-width: 0; }
  4504. /* line 15, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4505. .x-html-editor-wrap textarea {
  4506. background-color: white; }
  4507. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4508. .x-html-editor-tb .x-btn-text {
  4509. background: transparent no-repeat;
  4510. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4511. /* line 26, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4512. .x-html-editor-tb .x-edit-bold,
  4513. .x-menu-item img.x-edit-bold {
  4514. background-position: 0 0;
  4515. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4516. /* line 32, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4517. .x-html-editor-tb .x-edit-italic,
  4518. .x-menu-item img.x-edit-italic {
  4519. background-position: -16px 0;
  4520. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4521. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4522. .x-html-editor-tb .x-edit-underline,
  4523. .x-menu-item img.x-edit-underline {
  4524. background-position: -32px 0;
  4525. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4526. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4527. .x-html-editor-tb .x-edit-forecolor,
  4528. .x-menu-item img.x-edit-forecolor {
  4529. background-position: -160px 0;
  4530. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4531. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4532. .x-html-editor-tb .x-edit-backcolor,
  4533. .x-menu-item img.x-edit-backcolor {
  4534. background-position: -176px 0;
  4535. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4536. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4537. .x-html-editor-tb .x-edit-justifyleft,
  4538. .x-menu-item img.x-edit-justifyleft {
  4539. background-position: -112px 0;
  4540. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4541. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4542. .x-html-editor-tb .x-edit-justifycenter,
  4543. .x-menu-item img.x-edit-justifycenter {
  4544. background-position: -128px 0;
  4545. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4546. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4547. .x-html-editor-tb .x-edit-justifyright,
  4548. .x-menu-item img.x-edit-justifyright {
  4549. background-position: -144px 0;
  4550. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4551. /* line 74, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4552. .x-html-editor-tb .x-edit-insertorderedlist,
  4553. .x-menu-item img.x-edit-insertorderedlist {
  4554. background-position: -80px 0;
  4555. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4556. /* line 80, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4557. .x-html-editor-tb .x-edit-insertunorderedlist,
  4558. .x-menu-item img.x-edit-insertunorderedlist {
  4559. background-position: -96px 0;
  4560. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4561. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4562. .x-html-editor-tb .x-edit-increasefontsize,
  4563. .x-menu-item img.x-edit-increasefontsize {
  4564. background-position: -48px 0;
  4565. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4566. /* line 92, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4567. .x-html-editor-tb .x-edit-decreasefontsize,
  4568. .x-menu-item img.x-edit-decreasefontsize {
  4569. background-position: -64px 0;
  4570. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4571. /* line 98, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4572. .x-html-editor-tb .x-edit-sourceedit,
  4573. .x-menu-item img.x-edit-sourceedit {
  4574. background-position: -192px 0;
  4575. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4576. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4577. .x-html-editor-tb .x-edit-createlink,
  4578. .x-menu-item img.x-edit-createlink {
  4579. background-position: -208px 0;
  4580. background-image: url('../../resources/themes/images/gray/editor/tb-sprite.gif'); }
  4581. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4582. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4583. padding: 5px;
  4584. padding-bottom: 1px; }
  4585. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4586. .x-html-editor-tb .x-toolbar {
  4587. position: static !important; }
  4588. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4589. .x-html-editor-tb .x-font-select {
  4590. font-size: 11px; }
  4591. /* line 123, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4592. .x-html-editor-wrap textarea {
  4593. border: 0;
  4594. padding: 3px 2px;
  4595. overflow: auto; }
  4596. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4597. .x-panel,
  4598. .x-plain {
  4599. overflow: hidden;
  4600. position: relative; }
  4601. /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4602. .x-ie .x-panel-header,
  4603. .x-ie .x-panel-header-tl,
  4604. .x-ie .x-panel-header-tc,
  4605. .x-ie .x-panel-header-tr,
  4606. .x-ie .x-panel-header-ml,
  4607. .x-ie .x-panel-header-mc,
  4608. .x-ie .x-panel-header-mr,
  4609. .x-ie .x-panel-header-bl,
  4610. .x-ie .x-panel-header-bc,
  4611. .x-ie .x-panel-header-br {
  4612. zoom: 1; }
  4613. /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4614. .x-ie8 td.x-frame-mc {
  4615. vertical-align: top; }
  4616. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4617. .x-panel-header-horizontal {
  4618. padding: 3px 5px 4px; }
  4619. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4620. .x-panel-header-vertical {
  4621. padding: 5px 4px; }
  4622. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4623. .x-panel-header-icon,
  4624. .x-window-header-icon {
  4625. width: 16px;
  4626. height: 16px;
  4627. background-repeat: no-repeat;
  4628. background-position: 0 0;
  4629. vertical-align: middle;
  4630. margin-right: 4px; }
  4631. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4632. .x-vertical .x-panel-header-icon,
  4633. .x-vertical .x-window-header-icon {
  4634. margin: 0 0 4px; }
  4635. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4636. .x-panel-header-draggable,
  4637. .x-panel-header-draggable .x-panel-header-text,
  4638. .x-window-header-draggable,
  4639. .x-window-header-draggable .x-window-header-text {
  4640. cursor: move; }
  4641. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4642. .x-panel-ghost, .x-window-ghost {
  4643. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  4644. opacity: 0.65;
  4645. cursor: move; }
  4646. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4647. .x-panel-header-horizontal .x-panel-header-body, .x-panel-header-horizontal .x-window-header-body, .x-panel-header-horizontal .x-btn-group-header-body, .x-window-header-horizontal .x-panel-header-body, .x-window-header-horizontal .x-window-header-body, .x-window-header-horizontal .x-btn-group-header-body, .x-btn-group-header-horizontal .x-panel-header-body, .x-btn-group-header-horizontal .x-window-header-body, .x-btn-group-header-horizontal .x-btn-group-header-body {
  4648. width: 100%; }
  4649. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4650. .x-panel-header-vertical .x-panel-header-body, .x-panel-header-vertical .x-window-header-body, .x-panel-header-vertical .x-btn-group-header-body, .x-window-header-vertical .x-panel-header-body, .x-window-header-vertical .x-window-header-body, .x-window-header-vertical .x-btn-group-header-body, .x-btn-group-header-vertical .x-panel-header-body, .x-btn-group-header-vertical .x-window-header-body, .x-btn-group-header-vertical .x-btn-group-header-body {
  4651. height: 100%; }
  4652. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4653. .x-panel-header-text-container {
  4654. overflow: hidden;
  4655. -o-text-overflow: ellipsis;
  4656. text-overflow: ellipsis; }
  4657. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4658. .x-panel-header-text {
  4659. user-select: none;
  4660. -o-user-select: none;
  4661. -ms-user-select: none;
  4662. -moz-user-select: -moz-none;
  4663. -webkit-user-select: none;
  4664. cursor: default;
  4665. white-space: nowrap; }
  4666. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4667. .x-panel-header-left .x-vml-base,
  4668. .x-panel-header-right .x-vml-base {
  4669. left: -3px !important; }
  4670. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4671. .x-panel-body {
  4672. overflow: hidden;
  4673. position: relative;
  4674. font-size: 12px; }
  4675. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4676. .x-panel-header-vertical .x-surface {
  4677. padding-left: 1px; }
  4678. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4679. .x-opera .x-panel-header-vertical .x-surface,
  4680. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  4681. padding-left: 2px; }
  4682. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4683. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4684. border-bottom-width: 1px !important; }
  4685. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4686. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4687. border-left-width: 1px !important; }
  4688. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4689. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4690. border-top-width: 1px !important; }
  4691. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4692. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4693. border-right-width: 1px !important; }
  4694. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4695. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4696. background-repeat: repeat-y; }
  4697. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4698. .x-panel-default {
  4699. border-color: #d0d0d0; }
  4700. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4701. .x-panel-header-default {
  4702. font-size: 11px;
  4703. border-color: #d0d0d0;
  4704. border-width: 1px;
  4705. border-style: solid;
  4706. background-image: none;
  4707. background-color: #d7d2d2;
  4708. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4709. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  4710. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  4711. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  4712. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  4713. background-image: linear-gradient(top, #f0f0f0, #d7d7d7);
  4714. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4715. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4716. -o-box-shadow: #efeded 0 1px 0px 0 inset;
  4717. box-shadow: #efeded 0 1px 0px 0 inset; }
  4718. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4719. .x-nlg .x-panel-header-default-top {
  4720. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-top-bg.gif'); }
  4721. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4722. .x-nlg .x-panel-header-default-bottom {
  4723. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-bottom-bg.gif'); }
  4724. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4725. .x-nlg .x-panel-header-default-left {
  4726. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-left-bg.gif'); }
  4727. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4728. .x-nlg .x-panel-header-default-right {
  4729. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-right-bg.gif'); }
  4730. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4731. .x-nlg .x-panel-header-default-right {
  4732. background-position: top right; }
  4733. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4734. .x-nlg .x-panel-header-default-bottom {
  4735. background-position: bottom left; }
  4736. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4737. .x-panel-header-text-default {
  4738. color: #333333;
  4739. font-size: 11px;
  4740. font-weight: bold;
  4741. font-family: tahoma, arial, verdana, sans-serif;
  4742. line-height: 17px; }
  4743. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4744. .x-panel-body-default {
  4745. background: white;
  4746. border-color: #d0d0d0;
  4747. color: black;
  4748. border-width: 1px;
  4749. border-style: solid; }
  4750. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4751. .x-panel-collapsed .x-window-header-default,
  4752. .x-panel-collapsed .x-panel-header-default {
  4753. border-color: #d0d0d0; }
  4754. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4755. .x-panel-header-default-vertical {
  4756. border-color: #d0d0d0; }
  4757. /* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4758. .x-panel-header-default-left,
  4759. .x-panel-header-default-right {
  4760. background-image: none;
  4761. background-color: #d7d2d2;
  4762. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4763. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  4764. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  4765. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  4766. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  4767. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  4768. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4769. .x-panel-collapsed .x-panel-header-default-top {
  4770. -moz-border-radius-bottomleft: null;
  4771. -webkit-border-bottom-left-radius: null;
  4772. -o-border-bottom-left-radius: null;
  4773. -ms-border-bottom-left-radius: null;
  4774. -khtml-border-bottom-left-radius: null;
  4775. border-bottom-left-radius: null;
  4776. -moz-border-radius-bottomright: null;
  4777. -webkit-border-bottom-right-radius: null;
  4778. -o-border-bottom-right-radius: null;
  4779. -ms-border-bottom-right-radius: null;
  4780. -khtml-border-bottom-right-radius: null;
  4781. border-bottom-right-radius: null; }
  4782. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4783. .x-panel-collapsed .x-panel-header-default-right {
  4784. -moz-border-radius-topleft: null;
  4785. -webkit-border-top-left-radius: null;
  4786. -o-border-top-left-radius: null;
  4787. -ms-border-top-left-radius: null;
  4788. -khtml-border-top-left-radius: null;
  4789. border-top-left-radius: null;
  4790. -moz-border-radius-bottomleft: null;
  4791. -webkit-border-bottom-left-radius: null;
  4792. -o-border-bottom-left-radius: null;
  4793. -ms-border-bottom-left-radius: null;
  4794. -khtml-border-bottom-left-radius: null;
  4795. border-bottom-left-radius: null; }
  4796. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4797. .x-panel-collapsed .x-panel-header-default-bottom {
  4798. -moz-border-radius-topleft: null;
  4799. -webkit-border-top-left-radius: null;
  4800. -o-border-top-left-radius: null;
  4801. -ms-border-top-left-radius: null;
  4802. -khtml-border-top-left-radius: null;
  4803. border-top-left-radius: null;
  4804. -moz-border-radius-topright: null;
  4805. -webkit-border-top-right-radius: null;
  4806. -o-border-top-right-radius: null;
  4807. -ms-border-top-right-radius: null;
  4808. -khtml-border-top-right-radius: null;
  4809. border-top-right-radius: null; }
  4810. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4811. .x-panel-collapsed .x-panel-header-default-left {
  4812. -moz-border-radius-topright: null;
  4813. -webkit-border-top-right-radius: null;
  4814. -o-border-top-right-radius: null;
  4815. -ms-border-top-right-radius: null;
  4816. -khtml-border-top-right-radius: null;
  4817. border-top-right-radius: null;
  4818. -moz-border-radius-bottomright: null;
  4819. -webkit-border-bottom-right-radius: null;
  4820. -o-border-bottom-right-radius: null;
  4821. -ms-border-bottom-right-radius: null;
  4822. -khtml-border-bottom-right-radius: null;
  4823. border-bottom-right-radius: null; }
  4824. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4825. .x-panel-header-default-top {
  4826. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4827. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4828. -o-box-shadow: #efeded 0 1px 0px 0 inset;
  4829. box-shadow: #efeded 0 1px 0px 0 inset; }
  4830. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4831. .x-panel-header-default-right {
  4832. -moz-box-shadow: #efeded -1px 0 0px 0 inset;
  4833. -webkit-box-shadow: #efeded -1px 0 0px 0 inset;
  4834. -o-box-shadow: #efeded -1px 0 0px 0 inset;
  4835. box-shadow: #efeded -1px 0 0px 0 inset; }
  4836. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4837. .x-panel-header-default-bottom {
  4838. -moz-box-shadow: #efeded 0 -1px 0px 0 inset;
  4839. -webkit-box-shadow: #efeded 0 -1px 0px 0 inset;
  4840. -o-box-shadow: #efeded 0 -1px 0px 0 inset;
  4841. box-shadow: #efeded 0 -1px 0px 0 inset; }
  4842. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4843. .x-panel-header-default-left {
  4844. -moz-box-shadow: #efeded 1px 0 0px 0 inset;
  4845. -webkit-box-shadow: #efeded 1px 0 0px 0 inset;
  4846. -o-box-shadow: #efeded 1px 0 0px 0 inset;
  4847. box-shadow: #efeded 1px 0 0px 0 inset; }
  4848. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4849. .x-panel-header-default-right-tc,
  4850. .x-panel-header-default-right-mc,
  4851. .x-panel-header-default-right-bc {
  4852. background-position: right 0; }
  4853. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4854. .x-panel-header-default-bottom-tc,
  4855. .x-panel-header-default-bottom-mc,
  4856. .x-panel-header-default-bottom-bc {
  4857. background-position: 0 bottom; }
  4858. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4859. .x-panel-default-framed {
  4860. border-color: #d0d0d0; }
  4861. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4862. .x-panel-header-default-framed {
  4863. font-size: 11px;
  4864. border-color: #d0d0d0;
  4865. border-width: 1px;
  4866. border-style: solid;
  4867. background-image: none;
  4868. background-color: #d7d2d2;
  4869. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4870. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  4871. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  4872. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  4873. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  4874. background-image: linear-gradient(top, #f0f0f0, #d7d7d7);
  4875. -moz-box-shadow: #efeded 0 1px 0px 0 inset;
  4876. -webkit-box-shadow: #efeded 0 1px 0px 0 inset;
  4877. -o-box-shadow: #efeded 0 1px 0px 0 inset;
  4878. box-shadow: #efeded 0 1px 0px 0 inset; }
  4879. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4880. .x-nlg .x-panel-header-default-framed-top {
  4881. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-bg.gif'); }
  4882. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4883. .x-nlg .x-panel-header-default-framed-bottom {
  4884. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  4885. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4886. .x-nlg .x-panel-header-default-framed-left {
  4887. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-bg.gif'); }
  4888. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4889. .x-nlg .x-panel-header-default-framed-right {
  4890. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-bg.gif'); }
  4891. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4892. .x-nlg .x-panel-header-default-framed-right {
  4893. background-position: top right; }
  4894. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4895. .x-nlg .x-panel-header-default-framed-bottom {
  4896. background-position: bottom left; }
  4897. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4898. .x-nbr .x-panel-header-default-framed {
  4899. background-image: none; }
  4900. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4901. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  4902. .x-nlg.x-opera .x-panel-header-default-framed-top,
  4903. .x-nlg.x-safari .x-panel-header-default-framed-top {
  4904. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-top-bg.gif'); }
  4905. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4906. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  4907. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  4908. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  4909. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-bottom-bg.gif'); }
  4910. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4911. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  4912. .x-nlg.x-opera .x-panel-header-default-framed-left,
  4913. .x-nlg.x-safari .x-panel-header-default-framed-left {
  4914. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-left-bg.gif'); }
  4915. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4916. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  4917. .x-nlg.x-opera .x-panel-header-default-framed-right,
  4918. .x-nlg.x-safari .x-panel-header-default-framed-right {
  4919. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-right-bg.gif'); }
  4920. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4921. .x-panel-header-text-default-framed {
  4922. color: #333333;
  4923. font-size: 11px;
  4924. font-weight: bold;
  4925. font-family: tahoma, arial, verdana, sans-serif;
  4926. line-height: 17px; }
  4927. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4928. .x-panel-body-default-framed {
  4929. background: #f1f1f1;
  4930. border-color: #d0d0d0;
  4931. color: black;
  4932. border-width: 0;
  4933. border-style: solid; }
  4934. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4935. .x-panel-collapsed .x-window-header-default-framed,
  4936. .x-panel-collapsed .x-panel-header-default-framed {
  4937. border-color: #d0d0d0; }
  4938. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4939. .x-panel-header-default-framed-vertical {
  4940. border-color: #d0d0d0; }
  4941. /* line 375, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4942. .x-panel-header-default-framed-left,
  4943. .x-panel-header-default-framed-right {
  4944. background-image: none;
  4945. background-color: #d7d2d2;
  4946. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  4947. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  4948. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  4949. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  4950. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  4951. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  4952. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4953. .x-panel-default-framed {
  4954. -moz-border-radius: 4px;
  4955. -webkit-border-radius: 4px;
  4956. -o-border-radius: 4px;
  4957. -ms-border-radius: 4px;
  4958. -khtml-border-radius: 4px;
  4959. border-radius: 4px;
  4960. padding: 4px 4px 4px 4px;
  4961. border-width: 1px;
  4962. border-style: solid;
  4963. background-color: #f1f1f1; }
  4964. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4965. .x-nlg .x-panel-default-framed-mc {
  4966. background-color: #f1f1f1; }
  4967. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4968. .x-nbr .x-panel-default-framed {
  4969. padding: 0 !important;
  4970. border-width: 0 !important;
  4971. -moz-border-radius: 0px;
  4972. -webkit-border-radius: 0px;
  4973. -o-border-radius: 0px;
  4974. -ms-border-radius: 0px;
  4975. -khtml-border-radius: 0px;
  4976. border-radius: 0px;
  4977. background-color: transparent;
  4978. background-position: 1000404px 1000404px; }
  4979. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4980. .x-nbr .x-panel-default-framed-tl,
  4981. .x-nbr .x-panel-default-framed-bl,
  4982. .x-nbr .x-panel-default-framed-tr,
  4983. .x-nbr .x-panel-default-framed-br,
  4984. .x-nbr .x-panel-default-framed-tc,
  4985. .x-nbr .x-panel-default-framed-bc,
  4986. .x-nbr .x-panel-default-framed-ml,
  4987. .x-nbr .x-panel-default-framed-mr {
  4988. zoom: 1;
  4989. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-corners.gif'); }
  4990. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4991. .x-nbr .x-panel-default-framed-ml,
  4992. .x-nbr .x-panel-default-framed-mr {
  4993. zoom: 1;
  4994. background-image: url('../../resources/themes/images/gray/panel/panel-default-framed-sides.gif');
  4995. background-position: 0 0;
  4996. background-repeat: repeat-y; }
  4997. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4998. .x-nbr .x-panel-default-framed-mc {
  4999. padding: 1px 1px 1px 1px; }
  5000. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5001. .x-strict .x-ie7 .x-panel-default-framed-tl,
  5002. .x-strict .x-ie7 .x-panel-default-framed-bl {
  5003. position: relative;
  5004. right: 0; }
  5005. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5006. .x-panel-header-default-framed-top {
  5007. -moz-border-radius-topleft: 4px;
  5008. -webkit-border-top-left-radius: 4px;
  5009. -o-border-top-left-radius: 4px;
  5010. -ms-border-top-left-radius: 4px;
  5011. -khtml-border-top-left-radius: 4px;
  5012. border-top-left-radius: 4px;
  5013. -moz-border-radius-topright: 4px;
  5014. -webkit-border-top-right-radius: 4px;
  5015. -o-border-top-right-radius: 4px;
  5016. -ms-border-top-right-radius: 4px;
  5017. -khtml-border-top-right-radius: 4px;
  5018. border-top-right-radius: 4px;
  5019. -moz-border-radius-bottomright: 0;
  5020. -webkit-border-bottom-right-radius: 0;
  5021. -o-border-bottom-right-radius: 0;
  5022. -ms-border-bottom-right-radius: 0;
  5023. -khtml-border-bottom-right-radius: 0;
  5024. border-bottom-right-radius: 0;
  5025. -moz-border-radius-bottomleft: 0;
  5026. -webkit-border-bottom-left-radius: 0;
  5027. -o-border-bottom-left-radius: 0;
  5028. -ms-border-bottom-left-radius: 0;
  5029. -khtml-border-bottom-left-radius: 0;
  5030. border-bottom-left-radius: 0;
  5031. padding: 3px 5px 4px 5px;
  5032. border-width: 1px 1px 0 1px;
  5033. border-style: solid;
  5034. background-image: none;
  5035. background-color: #d7d2d2;
  5036. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5037. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5038. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5039. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5040. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5041. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5042. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5043. .x-nlg .x-panel-header-default-framed-top-mc {
  5044. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-bg.gif');
  5045. background-color: #d7d2d2; }
  5046. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5047. .x-nbr .x-panel-header-default-framed-top {
  5048. padding: 0 !important;
  5049. border-width: 0 !important;
  5050. -moz-border-radius: 0px;
  5051. -webkit-border-radius: 0px;
  5052. -o-border-radius: 0px;
  5053. -ms-border-radius: 0px;
  5054. -khtml-border-radius: 0px;
  5055. border-radius: 0px;
  5056. background-color: transparent;
  5057. background-position: 1000404px 1000000px; }
  5058. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5059. .x-nbr .x-panel-header-default-framed-top-tl,
  5060. .x-nbr .x-panel-header-default-framed-top-bl,
  5061. .x-nbr .x-panel-header-default-framed-top-tr,
  5062. .x-nbr .x-panel-header-default-framed-top-br,
  5063. .x-nbr .x-panel-header-default-framed-top-tc,
  5064. .x-nbr .x-panel-header-default-framed-top-bc,
  5065. .x-nbr .x-panel-header-default-framed-top-ml,
  5066. .x-nbr .x-panel-header-default-framed-top-mr {
  5067. zoom: 1;
  5068. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-corners.gif'); }
  5069. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5070. .x-nbr .x-panel-header-default-framed-top-ml,
  5071. .x-nbr .x-panel-header-default-framed-top-mr {
  5072. zoom: 1;
  5073. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-top-sides.gif');
  5074. background-position: 0 0; }
  5075. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5076. .x-nbr .x-panel-header-default-framed-top-mc {
  5077. padding: 0px 2px 4px 2px; }
  5078. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5079. .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
  5080. .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  5081. position: relative;
  5082. right: 0; }
  5083. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5084. .x-panel-header-default-framed-right {
  5085. -moz-border-radius-topleft: 0;
  5086. -webkit-border-top-left-radius: 0;
  5087. -o-border-top-left-radius: 0;
  5088. -ms-border-top-left-radius: 0;
  5089. -khtml-border-top-left-radius: 0;
  5090. border-top-left-radius: 0;
  5091. -moz-border-radius-topright: 4px;
  5092. -webkit-border-top-right-radius: 4px;
  5093. -o-border-top-right-radius: 4px;
  5094. -ms-border-top-right-radius: 4px;
  5095. -khtml-border-top-right-radius: 4px;
  5096. border-top-right-radius: 4px;
  5097. -moz-border-radius-bottomright: 4px;
  5098. -webkit-border-bottom-right-radius: 4px;
  5099. -o-border-bottom-right-radius: 4px;
  5100. -ms-border-bottom-right-radius: 4px;
  5101. -khtml-border-bottom-right-radius: 4px;
  5102. border-bottom-right-radius: 4px;
  5103. -moz-border-radius-bottomleft: 0;
  5104. -webkit-border-bottom-left-radius: 0;
  5105. -o-border-bottom-left-radius: 0;
  5106. -ms-border-bottom-left-radius: 0;
  5107. -khtml-border-bottom-left-radius: 0;
  5108. border-bottom-left-radius: 0;
  5109. padding: 5px 4px 5px 4px;
  5110. border-width: 1px 1px 1px 0;
  5111. border-style: solid;
  5112. background-image: none;
  5113. background-color: #d7d2d2;
  5114. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5115. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5116. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5117. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5118. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5119. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5120. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5121. .x-nlg .x-panel-header-default-framed-right-mc {
  5122. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-bg.gif');
  5123. background-color: #d7d2d2; }
  5124. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5125. .x-nbr .x-panel-header-default-framed-right {
  5126. padding: 0 !important;
  5127. border-width: 0 !important;
  5128. -moz-border-radius: 0px;
  5129. -webkit-border-radius: 0px;
  5130. -o-border-radius: 0px;
  5131. -ms-border-radius: 0px;
  5132. -khtml-border-radius: 0px;
  5133. border-radius: 0px;
  5134. background-color: transparent;
  5135. background-position: 1000004px 1100400px; }
  5136. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5137. .x-nbr .x-panel-header-default-framed-right-tl,
  5138. .x-nbr .x-panel-header-default-framed-right-bl,
  5139. .x-nbr .x-panel-header-default-framed-right-tr,
  5140. .x-nbr .x-panel-header-default-framed-right-br,
  5141. .x-nbr .x-panel-header-default-framed-right-tc,
  5142. .x-nbr .x-panel-header-default-framed-right-bc,
  5143. .x-nbr .x-panel-header-default-framed-right-ml,
  5144. .x-nbr .x-panel-header-default-framed-right-mr {
  5145. zoom: 1;
  5146. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-corners.gif'); }
  5147. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5148. .x-nbr .x-panel-header-default-framed-right-tc,
  5149. .x-nbr .x-panel-header-default-framed-right-bc {
  5150. zoom: 1;
  5151. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-right-sides.gif');
  5152. background-position: 0 0;
  5153. background-repeat: repeat-x; }
  5154. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5155. .x-nbr .x-panel-header-default-framed-right-mc {
  5156. padding: 2px 1px 2px 4px; }
  5157. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5158. .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
  5159. .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  5160. position: relative;
  5161. right: 0; }
  5162. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5163. .x-panel-header-default-framed-bottom {
  5164. -moz-border-radius-topleft: 0;
  5165. -webkit-border-top-left-radius: 0;
  5166. -o-border-top-left-radius: 0;
  5167. -ms-border-top-left-radius: 0;
  5168. -khtml-border-top-left-radius: 0;
  5169. border-top-left-radius: 0;
  5170. -moz-border-radius-topright: 0;
  5171. -webkit-border-top-right-radius: 0;
  5172. -o-border-top-right-radius: 0;
  5173. -ms-border-top-right-radius: 0;
  5174. -khtml-border-top-right-radius: 0;
  5175. border-top-right-radius: 0;
  5176. -moz-border-radius-bottomright: 4px;
  5177. -webkit-border-bottom-right-radius: 4px;
  5178. -o-border-bottom-right-radius: 4px;
  5179. -ms-border-bottom-right-radius: 4px;
  5180. -khtml-border-bottom-right-radius: 4px;
  5181. border-bottom-right-radius: 4px;
  5182. -moz-border-radius-bottomleft: 4px;
  5183. -webkit-border-bottom-left-radius: 4px;
  5184. -o-border-bottom-left-radius: 4px;
  5185. -ms-border-bottom-left-radius: 4px;
  5186. -khtml-border-bottom-left-radius: 4px;
  5187. border-bottom-left-radius: 4px;
  5188. padding: 3px 5px 4px 5px;
  5189. border-width: 0 1px 1px 1px;
  5190. border-style: solid;
  5191. background-image: none;
  5192. background-color: #d7d2d2;
  5193. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5194. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5195. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5196. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5197. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5198. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5199. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5200. .x-nlg .x-panel-header-default-framed-bottom-mc {
  5201. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-bg.gif');
  5202. background-color: #d7d2d2; }
  5203. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5204. .x-nbr .x-panel-header-default-framed-bottom {
  5205. padding: 0 !important;
  5206. border-width: 0 !important;
  5207. -moz-border-radius: 0px;
  5208. -webkit-border-radius: 0px;
  5209. -o-border-radius: 0px;
  5210. -ms-border-radius: 0px;
  5211. -khtml-border-radius: 0px;
  5212. border-radius: 0px;
  5213. background-color: transparent;
  5214. background-position: 1000000px 1000404px; }
  5215. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5216. .x-nbr .x-panel-header-default-framed-bottom-tl,
  5217. .x-nbr .x-panel-header-default-framed-bottom-bl,
  5218. .x-nbr .x-panel-header-default-framed-bottom-tr,
  5219. .x-nbr .x-panel-header-default-framed-bottom-br,
  5220. .x-nbr .x-panel-header-default-framed-bottom-tc,
  5221. .x-nbr .x-panel-header-default-framed-bottom-bc,
  5222. .x-nbr .x-panel-header-default-framed-bottom-ml,
  5223. .x-nbr .x-panel-header-default-framed-bottom-mr {
  5224. zoom: 1;
  5225. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-corners.gif'); }
  5226. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5227. .x-nbr .x-panel-header-default-framed-bottom-ml,
  5228. .x-nbr .x-panel-header-default-framed-bottom-mr {
  5229. zoom: 1;
  5230. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-bottom-sides.gif');
  5231. background-position: 0 0; }
  5232. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5233. .x-nbr .x-panel-header-default-framed-bottom-mc {
  5234. padding: 3px 2px 1px 2px; }
  5235. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5236. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
  5237. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  5238. position: relative;
  5239. right: 0; }
  5240. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5241. .x-panel-header-default-framed-left {
  5242. -moz-border-radius-topleft: 4px;
  5243. -webkit-border-top-left-radius: 4px;
  5244. -o-border-top-left-radius: 4px;
  5245. -ms-border-top-left-radius: 4px;
  5246. -khtml-border-top-left-radius: 4px;
  5247. border-top-left-radius: 4px;
  5248. -moz-border-radius-topright: 0;
  5249. -webkit-border-top-right-radius: 0;
  5250. -o-border-top-right-radius: 0;
  5251. -ms-border-top-right-radius: 0;
  5252. -khtml-border-top-right-radius: 0;
  5253. border-top-right-radius: 0;
  5254. -moz-border-radius-bottomright: 0;
  5255. -webkit-border-bottom-right-radius: 0;
  5256. -o-border-bottom-right-radius: 0;
  5257. -ms-border-bottom-right-radius: 0;
  5258. -khtml-border-bottom-right-radius: 0;
  5259. border-bottom-right-radius: 0;
  5260. -moz-border-radius-bottomleft: 4px;
  5261. -webkit-border-bottom-left-radius: 4px;
  5262. -o-border-bottom-left-radius: 4px;
  5263. -ms-border-bottom-left-radius: 4px;
  5264. -khtml-border-bottom-left-radius: 4px;
  5265. border-bottom-left-radius: 4px;
  5266. padding: 5px 4px 5px 4px;
  5267. border-width: 1px 0 1px 1px;
  5268. border-style: solid;
  5269. background-image: none;
  5270. background-color: #d7d2d2;
  5271. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5272. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5273. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5274. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5275. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5276. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5277. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5278. .x-nlg .x-panel-header-default-framed-left-mc {
  5279. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-bg.gif');
  5280. background-color: #d7d2d2; }
  5281. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5282. .x-nbr .x-panel-header-default-framed-left {
  5283. padding: 0 !important;
  5284. border-width: 0 !important;
  5285. -moz-border-radius: 0px;
  5286. -webkit-border-radius: 0px;
  5287. -o-border-radius: 0px;
  5288. -ms-border-radius: 0px;
  5289. -khtml-border-radius: 0px;
  5290. border-radius: 0px;
  5291. background-color: transparent;
  5292. background-position: 1000400px 1100004px; }
  5293. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5294. .x-nbr .x-panel-header-default-framed-left-tl,
  5295. .x-nbr .x-panel-header-default-framed-left-bl,
  5296. .x-nbr .x-panel-header-default-framed-left-tr,
  5297. .x-nbr .x-panel-header-default-framed-left-br,
  5298. .x-nbr .x-panel-header-default-framed-left-tc,
  5299. .x-nbr .x-panel-header-default-framed-left-bc,
  5300. .x-nbr .x-panel-header-default-framed-left-ml,
  5301. .x-nbr .x-panel-header-default-framed-left-mr {
  5302. zoom: 1;
  5303. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-corners.gif'); }
  5304. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5305. .x-nbr .x-panel-header-default-framed-left-tc,
  5306. .x-nbr .x-panel-header-default-framed-left-bc {
  5307. zoom: 1;
  5308. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-left-sides.gif');
  5309. background-position: 0 0;
  5310. background-repeat: repeat-x; }
  5311. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5312. .x-nbr .x-panel-header-default-framed-left-mc {
  5313. padding: 2px 4px 2px 1px; }
  5314. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5315. .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
  5316. .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  5317. position: relative;
  5318. right: 0; }
  5319. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5320. .x-panel-header-default-framed-top {
  5321. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5322. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5323. -o-box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5324. box-shadow: #efeded 0 1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5325. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5326. .x-panel-header-default-framed-right {
  5327. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset;
  5328. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset;
  5329. -o-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset;
  5330. box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset; }
  5331. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5332. .x-panel-header-default-framed-bottom {
  5333. -moz-box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5334. -webkit-box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5335. -o-box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5336. box-shadow: #efeded 0 -1px 0px 0 inset, #efeded -1px 0 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5337. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5338. .x-panel-header-default-framed-left {
  5339. -moz-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5340. -webkit-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5341. -o-box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset;
  5342. box-shadow: #efeded 0 1px 0px 0 inset, #efeded 0 -1px 0px 0 inset, #efeded 1px 0 0px 0 inset; }
  5343. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5344. .x-panel .x-panel-header-default-framed-top {
  5345. border-bottom-width: 1px !important; }
  5346. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5347. .x-panel .x-panel-header-default-framed-right {
  5348. border-left-width: 1px !important; }
  5349. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5350. .x-panel .x-panel-header-default-framed-bottom {
  5351. border-top-width: 1px !important; }
  5352. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5353. .x-panel .x-panel-header-default-framed-left {
  5354. border-right-width: 1px !important; }
  5355. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5356. .x-panel-header-default-framed-collapsed {
  5357. -moz-border-radius: 4px;
  5358. -webkit-border-radius: 4px;
  5359. -o-border-radius: 4px;
  5360. -ms-border-radius: 4px;
  5361. -khtml-border-radius: 4px;
  5362. border-radius: 4px; }
  5363. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5364. .x-panel-header-default-framed-collapsed-top {
  5365. -moz-border-radius-topleft: 4px;
  5366. -webkit-border-top-left-radius: 4px;
  5367. -o-border-top-left-radius: 4px;
  5368. -ms-border-top-left-radius: 4px;
  5369. -khtml-border-top-left-radius: 4px;
  5370. border-top-left-radius: 4px;
  5371. -moz-border-radius-topright: 4px;
  5372. -webkit-border-top-right-radius: 4px;
  5373. -o-border-top-right-radius: 4px;
  5374. -ms-border-top-right-radius: 4px;
  5375. -khtml-border-top-right-radius: 4px;
  5376. border-top-right-radius: 4px;
  5377. -moz-border-radius-bottomright: 4px;
  5378. -webkit-border-bottom-right-radius: 4px;
  5379. -o-border-bottom-right-radius: 4px;
  5380. -ms-border-bottom-right-radius: 4px;
  5381. -khtml-border-bottom-right-radius: 4px;
  5382. border-bottom-right-radius: 4px;
  5383. -moz-border-radius-bottomleft: 4px;
  5384. -webkit-border-bottom-left-radius: 4px;
  5385. -o-border-bottom-left-radius: 4px;
  5386. -ms-border-bottom-left-radius: 4px;
  5387. -khtml-border-bottom-left-radius: 4px;
  5388. border-bottom-left-radius: 4px;
  5389. padding: 3px 5px 4px 5px;
  5390. border-width: 1px;
  5391. border-style: solid;
  5392. background-image: none;
  5393. background-color: #d7d2d2;
  5394. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5395. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5396. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5397. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5398. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5399. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5400. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5401. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  5402. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  5403. background-color: #d7d2d2; }
  5404. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5405. .x-nbr .x-panel-header-default-framed-collapsed-top {
  5406. padding: 0 !important;
  5407. border-width: 0 !important;
  5408. -moz-border-radius: 0px;
  5409. -webkit-border-radius: 0px;
  5410. -o-border-radius: 0px;
  5411. -ms-border-radius: 0px;
  5412. -khtml-border-radius: 0px;
  5413. border-radius: 0px;
  5414. background-color: transparent;
  5415. background-position: 1000404px 1000404px; }
  5416. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5417. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
  5418. .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
  5419. .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
  5420. .x-nbr .x-panel-header-default-framed-collapsed-top-br,
  5421. .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
  5422. .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
  5423. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5424. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5425. zoom: 1;
  5426. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
  5427. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5428. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  5429. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  5430. zoom: 1;
  5431. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  5432. background-position: 0 0; }
  5433. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5434. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  5435. padding: 0px 2px 1px 2px; }
  5436. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5437. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
  5438. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  5439. position: relative;
  5440. right: 0; }
  5441. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5442. .x-panel-header-default-framed-collapsed-right {
  5443. -moz-border-radius-topleft: 4px;
  5444. -webkit-border-top-left-radius: 4px;
  5445. -o-border-top-left-radius: 4px;
  5446. -ms-border-top-left-radius: 4px;
  5447. -khtml-border-top-left-radius: 4px;
  5448. border-top-left-radius: 4px;
  5449. -moz-border-radius-topright: 4px;
  5450. -webkit-border-top-right-radius: 4px;
  5451. -o-border-top-right-radius: 4px;
  5452. -ms-border-top-right-radius: 4px;
  5453. -khtml-border-top-right-radius: 4px;
  5454. border-top-right-radius: 4px;
  5455. -moz-border-radius-bottomright: 4px;
  5456. -webkit-border-bottom-right-radius: 4px;
  5457. -o-border-bottom-right-radius: 4px;
  5458. -ms-border-bottom-right-radius: 4px;
  5459. -khtml-border-bottom-right-radius: 4px;
  5460. border-bottom-right-radius: 4px;
  5461. -moz-border-radius-bottomleft: 4px;
  5462. -webkit-border-bottom-left-radius: 4px;
  5463. -o-border-bottom-left-radius: 4px;
  5464. -ms-border-bottom-left-radius: 4px;
  5465. -khtml-border-bottom-left-radius: 4px;
  5466. border-bottom-left-radius: 4px;
  5467. padding: 5px 4px 5px 4px;
  5468. border-width: 1px;
  5469. border-style: solid;
  5470. background-image: none;
  5471. background-color: #d7d2d2;
  5472. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5473. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5474. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5475. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5476. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5477. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5478. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5479. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  5480. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  5481. background-color: #d7d2d2; }
  5482. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5483. .x-nbr .x-panel-header-default-framed-collapsed-right {
  5484. padding: 0 !important;
  5485. border-width: 0 !important;
  5486. -moz-border-radius: 0px;
  5487. -webkit-border-radius: 0px;
  5488. -o-border-radius: 0px;
  5489. -ms-border-radius: 0px;
  5490. -khtml-border-radius: 0px;
  5491. border-radius: 0px;
  5492. background-color: transparent;
  5493. background-position: 1000404px 1100404px; }
  5494. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5495. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
  5496. .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
  5497. .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
  5498. .x-nbr .x-panel-header-default-framed-collapsed-right-br,
  5499. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5500. .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
  5501. .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
  5502. .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
  5503. zoom: 1;
  5504. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
  5505. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5506. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  5507. .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
  5508. zoom: 1;
  5509. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  5510. background-position: 0 0;
  5511. background-repeat: repeat-x; }
  5512. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5513. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  5514. padding: 2px 1px 2px 1px; }
  5515. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5516. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
  5517. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  5518. position: relative;
  5519. right: 0; }
  5520. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5521. .x-panel-header-default-framed-collapsed-bottom {
  5522. -moz-border-radius-topleft: 4px;
  5523. -webkit-border-top-left-radius: 4px;
  5524. -o-border-top-left-radius: 4px;
  5525. -ms-border-top-left-radius: 4px;
  5526. -khtml-border-top-left-radius: 4px;
  5527. border-top-left-radius: 4px;
  5528. -moz-border-radius-topright: 4px;
  5529. -webkit-border-top-right-radius: 4px;
  5530. -o-border-top-right-radius: 4px;
  5531. -ms-border-top-right-radius: 4px;
  5532. -khtml-border-top-right-radius: 4px;
  5533. border-top-right-radius: 4px;
  5534. -moz-border-radius-bottomright: 4px;
  5535. -webkit-border-bottom-right-radius: 4px;
  5536. -o-border-bottom-right-radius: 4px;
  5537. -ms-border-bottom-right-radius: 4px;
  5538. -khtml-border-bottom-right-radius: 4px;
  5539. border-bottom-right-radius: 4px;
  5540. -moz-border-radius-bottomleft: 4px;
  5541. -webkit-border-bottom-left-radius: 4px;
  5542. -o-border-bottom-left-radius: 4px;
  5543. -ms-border-bottom-left-radius: 4px;
  5544. -khtml-border-bottom-left-radius: 4px;
  5545. border-bottom-left-radius: 4px;
  5546. padding: 3px 5px 4px 5px;
  5547. border-width: 1px;
  5548. border-style: solid;
  5549. background-image: none;
  5550. background-color: #d7d2d2;
  5551. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5552. background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7);
  5553. background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7);
  5554. background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7);
  5555. background-image: -ms-linear-gradient(top, #f0f0f0, #d7d7d7);
  5556. background-image: linear-gradient(top, #f0f0f0, #d7d7d7); }
  5557. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5558. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  5559. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  5560. background-color: #d7d2d2; }
  5561. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5562. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  5563. padding: 0 !important;
  5564. border-width: 0 !important;
  5565. -moz-border-radius: 0px;
  5566. -webkit-border-radius: 0px;
  5567. -o-border-radius: 0px;
  5568. -ms-border-radius: 0px;
  5569. -khtml-border-radius: 0px;
  5570. border-radius: 0px;
  5571. background-color: transparent;
  5572. background-position: 1000404px 1000404px; }
  5573. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5574. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
  5575. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
  5576. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
  5577. .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
  5578. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
  5579. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
  5580. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5581. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5582. zoom: 1;
  5583. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
  5584. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5585. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5586. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5587. zoom: 1;
  5588. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  5589. background-position: 0 0; }
  5590. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5591. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  5592. padding: 0px 2px 1px 2px; }
  5593. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5594. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
  5595. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  5596. position: relative;
  5597. right: 0; }
  5598. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5599. .x-panel-header-default-framed-collapsed-left {
  5600. -moz-border-radius-topleft: 4px;
  5601. -webkit-border-top-left-radius: 4px;
  5602. -o-border-top-left-radius: 4px;
  5603. -ms-border-top-left-radius: 4px;
  5604. -khtml-border-top-left-radius: 4px;
  5605. border-top-left-radius: 4px;
  5606. -moz-border-radius-topright: 4px;
  5607. -webkit-border-top-right-radius: 4px;
  5608. -o-border-top-right-radius: 4px;
  5609. -ms-border-top-right-radius: 4px;
  5610. -khtml-border-top-right-radius: 4px;
  5611. border-top-right-radius: 4px;
  5612. -moz-border-radius-bottomright: 4px;
  5613. -webkit-border-bottom-right-radius: 4px;
  5614. -o-border-bottom-right-radius: 4px;
  5615. -ms-border-bottom-right-radius: 4px;
  5616. -khtml-border-bottom-right-radius: 4px;
  5617. border-bottom-right-radius: 4px;
  5618. -moz-border-radius-bottomleft: 4px;
  5619. -webkit-border-bottom-left-radius: 4px;
  5620. -o-border-bottom-left-radius: 4px;
  5621. -ms-border-bottom-left-radius: 4px;
  5622. -khtml-border-bottom-left-radius: 4px;
  5623. border-bottom-left-radius: 4px;
  5624. padding: 5px 4px 5px 4px;
  5625. border-width: 1px;
  5626. border-style: solid;
  5627. background-image: none;
  5628. background-color: #d7d2d2;
  5629. background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7));
  5630. background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7);
  5631. background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7);
  5632. background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7);
  5633. background-image: -ms-linear-gradient(right, #f0f0f0, #d7d7d7);
  5634. background-image: linear-gradient(right, #f0f0f0, #d7d7d7); }
  5635. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5636. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  5637. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  5638. background-color: #d7d2d2; }
  5639. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5640. .x-nbr .x-panel-header-default-framed-collapsed-left {
  5641. padding: 0 !important;
  5642. border-width: 0 !important;
  5643. -moz-border-radius: 0px;
  5644. -webkit-border-radius: 0px;
  5645. -o-border-radius: 0px;
  5646. -ms-border-radius: 0px;
  5647. -khtml-border-radius: 0px;
  5648. border-radius: 0px;
  5649. background-color: transparent;
  5650. background-position: 1000404px 1100404px; }
  5651. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5652. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
  5653. .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
  5654. .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
  5655. .x-nbr .x-panel-header-default-framed-collapsed-left-br,
  5656. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5657. .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
  5658. .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
  5659. .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
  5660. zoom: 1;
  5661. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
  5662. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5663. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5664. .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
  5665. zoom: 1;
  5666. background-image: url('../../resources/themes/images/gray/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  5667. background-position: 0 0;
  5668. background-repeat: repeat-x; }
  5669. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5670. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  5671. padding: 2px 1px 2px 1px; }
  5672. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5673. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
  5674. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  5675. position: relative;
  5676. right: 0; }
  5677. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5678. .x-panel-header-default-framed-right-tc,
  5679. .x-panel-header-default-framed-right-mc,
  5680. .x-panel-header-default-framed-right-bc {
  5681. background-position: right 0; }
  5682. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5683. .x-panel-header-default-framed-bottom-tc,
  5684. .x-panel-header-default-framed-bottom-mc,
  5685. .x-panel-header-default-framed-bottom-bc {
  5686. background-position: 0 bottom; }
  5687. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5688. .x-panel-header-plain,
  5689. .x-panel-body-plain {
  5690. border: 0;
  5691. padding: 0; }
  5692. /* line 6, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5693. .x-tip {
  5694. position: absolute;
  5695. overflow: visible;
  5696. /*pointer needs to be able to stick out*/
  5697. border-color: #868686; }
  5698. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5699. .x-tip .x-tip-header .x-box-item {
  5700. padding: 3px 3px 0; }
  5701. /* line 16, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5702. .x-tip .x-tip-header .x-tool {
  5703. padding: 0px 1px 0 0 !important; }
  5704. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5705. .x-tip {
  5706. -moz-border-radius: 3px;
  5707. -webkit-border-radius: 3px;
  5708. -o-border-radius: 3px;
  5709. -ms-border-radius: 3px;
  5710. -khtml-border-radius: 3px;
  5711. border-radius: 3px;
  5712. padding: 2px 2px 2px 2px;
  5713. border-width: 1px;
  5714. border-style: solid;
  5715. background-color: #cccccc; }
  5716. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5717. .x-nlg .x-tip-mc {
  5718. background-color: #cccccc; }
  5719. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5720. .x-nbr .x-tip {
  5721. padding: 0 !important;
  5722. border-width: 0 !important;
  5723. -moz-border-radius: 0px;
  5724. -webkit-border-radius: 0px;
  5725. -o-border-radius: 0px;
  5726. -ms-border-radius: 0px;
  5727. -khtml-border-radius: 0px;
  5728. border-radius: 0px;
  5729. background-color: transparent;
  5730. background-position: 1100303px 1000303px; }
  5731. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5732. .x-nbr .x-tip-tl,
  5733. .x-nbr .x-tip-bl,
  5734. .x-nbr .x-tip-tr,
  5735. .x-nbr .x-tip-br,
  5736. .x-nbr .x-tip-tc,
  5737. .x-nbr .x-tip-bc,
  5738. .x-nbr .x-tip-ml,
  5739. .x-nbr .x-tip-mr {
  5740. zoom: 1;
  5741. background-image: url('../../resources/themes/images/gray/tip/tip-corners.gif'); }
  5742. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5743. .x-nbr .x-tip-ml,
  5744. .x-nbr .x-tip-mr {
  5745. zoom: 1;
  5746. background-image: url('../../resources/themes/images/gray/tip/tip-sides.gif');
  5747. background-position: 0 0;
  5748. background-repeat: repeat-y; }
  5749. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5750. .x-nbr .x-tip-mc {
  5751. padding: 0px 0px 0px 0px; }
  5752. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5753. .x-strict .x-ie7 .x-tip-tl,
  5754. .x-strict .x-ie7 .x-tip-bl {
  5755. position: relative;
  5756. right: 0; }
  5757. /* line 31, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5758. .x-tip-header-text {
  5759. user-select: none;
  5760. -o-user-select: none;
  5761. -ms-user-select: none;
  5762. -moz-user-select: -moz-none;
  5763. -webkit-user-select: none;
  5764. cursor: default;
  5765. color: #444444;
  5766. font-size: 11px;
  5767. font-weight: bold; }
  5768. /* line 40, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5769. .x-tip-header-draggable .x-tip-header-text {
  5770. cursor: move; }
  5771. /* line 47, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5772. .x-tip-body,
  5773. .x-form-invalid-tip-body {
  5774. overflow: hidden;
  5775. position: relative;
  5776. padding: 3px; }
  5777. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5778. .x-tip-header,
  5779. .x-tip-body,
  5780. .x-form-invalid-tip-body {
  5781. color: #444444;
  5782. font-size: 11px;
  5783. font-weight: normal; }
  5784. /* line 59, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5785. .x-tip-header a,
  5786. .x-tip-body a,
  5787. .x-form-invalid-tip-body a {
  5788. color: #2a2a2a; }
  5789. /* line 64, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5790. .x-tip-anchor {
  5791. position: absolute;
  5792. overflow: hidden;
  5793. height: 0;
  5794. width: 0;
  5795. border-style: solid;
  5796. border-width: 5px;
  5797. border-color: #868686;
  5798. zoom: 1; }
  5799. /* line 79, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5800. .x-border-box .x-tip-anchor {
  5801. width: 10px;
  5802. height: 10px; }
  5803. /* line 84, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5804. .x-tip-anchor-top {
  5805. border-top-color: transparent;
  5806. border-left-color: transparent;
  5807. border-right-color: transparent;
  5808. _border-top-color: pink;
  5809. _border-left-color: pink;
  5810. _border-right-color: pink;
  5811. _filter: chroma(color=pink); }
  5812. /* line 97, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5813. .x-tip-anchor-bottom {
  5814. border-bottom-color: transparent;
  5815. border-left-color: transparent;
  5816. border-right-color: transparent;
  5817. _border-bottom-color: pink;
  5818. _border-left-color: pink;
  5819. _border-right-color: pink;
  5820. _filter: chroma(color=pink); }
  5821. /* line 110, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5822. .x-tip-anchor-left {
  5823. border-top-color: transparent;
  5824. border-bottom-color: transparent;
  5825. border-left-color: transparent;
  5826. _border-top-color: pink;
  5827. _border-bottom-color: pink;
  5828. _border-left-color: pink;
  5829. _filter: chroma(color=pink); }
  5830. /* line 123, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5831. .x-tip-anchor-right {
  5832. border-top-color: transparent;
  5833. border-bottom-color: transparent;
  5834. border-right-color: transparent;
  5835. _border-top-color: pink;
  5836. _border-bottom-color: pink;
  5837. _border-right-color: pink;
  5838. _filter: chroma(color=pink); }
  5839. /* line 137, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5840. .x-form-invalid-tip {
  5841. border-color: #a1311f;
  5842. -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5843. -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5844. -o-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset;
  5845. box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; }
  5846. /* line 146, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5847. .x-form-invalid-tip-body {
  5848. background: 1px 1px no-repeat;
  5849. background-image: url('../../resources/themes/images/gray/form/exclamation.gif');
  5850. padding-left: 22px; }
  5851. /* line 151, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5852. .x-form-invalid-tip-body li {
  5853. margin-bottom: 4px; }
  5854. /* line 153, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5855. .x-form-invalid-tip-body li.last {
  5856. margin-bottom: 0; }
  5857. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5858. .x-form-invalid-tip-default {
  5859. -moz-border-radius: 5px;
  5860. -webkit-border-radius: 5px;
  5861. -o-border-radius: 5px;
  5862. -ms-border-radius: 5px;
  5863. -khtml-border-radius: 5px;
  5864. border-radius: 5px;
  5865. padding: 4px 4px 4px 4px;
  5866. border-width: 1px;
  5867. border-style: solid;
  5868. background-color: white; }
  5869. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5870. .x-nlg .x-form-invalid-tip-default-mc {
  5871. background-color: white; }
  5872. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5873. .x-nbr .x-form-invalid-tip-default {
  5874. padding: 0 !important;
  5875. border-width: 0 !important;
  5876. -moz-border-radius: 0px;
  5877. -webkit-border-radius: 0px;
  5878. -o-border-radius: 0px;
  5879. -ms-border-radius: 0px;
  5880. -khtml-border-radius: 0px;
  5881. border-radius: 0px;
  5882. background-color: transparent;
  5883. background-position: 1100505px 1000505px; }
  5884. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5885. .x-nbr .x-form-invalid-tip-default-tl,
  5886. .x-nbr .x-form-invalid-tip-default-bl,
  5887. .x-nbr .x-form-invalid-tip-default-tr,
  5888. .x-nbr .x-form-invalid-tip-default-br,
  5889. .x-nbr .x-form-invalid-tip-default-tc,
  5890. .x-nbr .x-form-invalid-tip-default-bc,
  5891. .x-nbr .x-form-invalid-tip-default-ml,
  5892. .x-nbr .x-form-invalid-tip-default-mr {
  5893. zoom: 1;
  5894. background-image: url('../../resources/themes/images/gray/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
  5895. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5896. .x-nbr .x-form-invalid-tip-default-ml,
  5897. .x-nbr .x-form-invalid-tip-default-mr {
  5898. zoom: 1;
  5899. background-image: url('../../resources/themes/images/gray/form-invalid-tip/form-invalid-tip-default-sides.gif');
  5900. background-position: 0 0;
  5901. background-repeat: repeat-y; }
  5902. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5903. .x-nbr .x-form-invalid-tip-default-mc {
  5904. padding: 0px 0px 0px 0px; }
  5905. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5906. .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
  5907. .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
  5908. position: relative;
  5909. right: 0; }
  5910. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5911. .x-slider {
  5912. zoom: 1; }
  5913. /* line 10, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5914. .x-slider-inner {
  5915. position: relative;
  5916. left: 0;
  5917. top: 0;
  5918. overflow: visible;
  5919. zoom: 1; }
  5920. /* line 18, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5921. .x-slider-focus {
  5922. position: absolute;
  5923. left: 0;
  5924. top: 0;
  5925. width: 1px;
  5926. height: 1px;
  5927. line-height: 1px;
  5928. font-size: 1px;
  5929. -moz-outline: 0 none;
  5930. outline: 0 none;
  5931. user-select: none;
  5932. -o-user-select: none;
  5933. -ms-user-select: none;
  5934. -moz-user-select: -moz-none;
  5935. -webkit-user-select: none;
  5936. cursor: default;
  5937. display: block;
  5938. overflow: hidden; }
  5939. /* Horizontal styles */
  5940. /* line 34, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5941. .x-slider-horz {
  5942. padding-left: 7px;
  5943. background: transparent no-repeat 0 -24px;
  5944. width: 100%; }
  5945. /* line 40, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5946. .x-slider-horz .x-slider-end {
  5947. padding-right: 7px;
  5948. zoom: 1;
  5949. background: transparent no-repeat right -46px; }
  5950. /* line 46, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5951. .x-slider-horz .x-slider-inner {
  5952. background: transparent repeat-x 0 -2px;
  5953. height: 18px; }
  5954. /* line 51, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5955. .x-slider-horz .x-slider-thumb {
  5956. width: 14px;
  5957. height: 15px;
  5958. margin-left: -7px;
  5959. position: absolute;
  5960. left: 0;
  5961. top: 1px;
  5962. background: transparent no-repeat 0 0; }
  5963. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5964. .x-slider-horz .x-slider-thumb-over {
  5965. background-position: -14px -15px; }
  5966. /* line 65, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5967. .x-slider-horz .x-slider-thumb-drag {
  5968. background-position: -28px -30px; }
  5969. /* Vertical styles */
  5970. /* line 70, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5971. .x-slider-vert {
  5972. padding-top: 7px;
  5973. background: transparent no-repeat -44px 0; }
  5974. /* line 75, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5975. .x-slider-vert .x-slider-end {
  5976. padding-bottom: 7px;
  5977. zoom: 1;
  5978. background: transparent no-repeat -22px bottom;
  5979. width: 22px; }
  5980. /* line 82, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5981. .x-slider-vert .x-slider-inner {
  5982. background: transparent repeat-y 0 0;
  5983. width: 22px; }
  5984. /* line 87, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5985. .x-slider-vert .x-slider-thumb {
  5986. width: 15px;
  5987. height: 14px;
  5988. margin-bottom: -7px;
  5989. position: absolute;
  5990. left: 3px;
  5991. bottom: 0;
  5992. background: transparent no-repeat 0 0; }
  5993. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5994. .x-slider-vert .x-slider-thumb-over {
  5995. background-position: -15px -14px; }
  5996. /* line 101, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5997. .x-slider-vert .x-slider-thumb-drag {
  5998. background-position: -30px -28px; }
  5999. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6000. .x-slider-horz,
  6001. .x-slider-horz .x-slider-end,
  6002. .x-slider-horz .x-slider-inner {
  6003. background-image: url('../../resources/themes/images/gray/slider/slider-bg.png'); }
  6004. /* line 111, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6005. .x-slider-horz .x-slider-thumb {
  6006. background-image: url('../../resources/themes/images/gray/slider/slider-thumb.png'); }
  6007. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6008. .x-slider-vert,
  6009. .x-slider-vert .x-slider-end,
  6010. .x-slider-vert .x-slider-inner {
  6011. background-image: url('../../resources/themes/images/gray/slider/slider-v-bg.png'); }
  6012. /* line 121, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6013. .x-slider-vert .x-slider-thumb {
  6014. background-image: url('../../resources/themes/images/gray/slider/slider-v-thumb.png'); }
  6015. /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6016. .x-ie6 .x-slider-horz,
  6017. .x-ie6 .x-slider-horz .x-slider-end,
  6018. .x-ie6 .x-slider-horz .x-slider-inner {
  6019. background-image: url('../../resources/themes/images/gray/slider/slider-bg.gif'); }
  6020. /* line 133, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6021. .x-ie6 .x-slider-horz .x-slider-thumb {
  6022. background-image: url('../../resources/themes/images/gray/slider/slider-thumb.gif'); }
  6023. /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6024. .x-ie6 .x-slider-vert,
  6025. .x-ie6 .x-slider-vert .x-slider-end,
  6026. .x-ie6 .x-slider-vert .x-slider-inner {
  6027. background-image: url('../../resources/themes/images/gray/slider/slider-v-bg.gif'); }
  6028. /* line 143, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  6029. .x-ie6 .x-slider-vert .x-slider-thumb {
  6030. background-image: url('../../resources/themes/images/gray/slider/slider-v-thumb.gif'); }
  6031. /* line 6, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6032. .x-progress {
  6033. position: relative;
  6034. border-width: 1px;
  6035. border-style: solid;
  6036. -moz-border-radius: 0;
  6037. -webkit-border-radius: 0;
  6038. -o-border-radius: 0;
  6039. -ms-border-radius: 0;
  6040. -khtml-border-radius: 0;
  6041. border-radius: 0;
  6042. overflow: hidden;
  6043. height: 20px; }
  6044. /* line 17, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6045. .x-progress-bar {
  6046. height: 18px;
  6047. overflow: hidden;
  6048. position: absolute;
  6049. width: 0;
  6050. -moz-border-radius: 0;
  6051. -webkit-border-radius: 0;
  6052. -o-border-radius: 0;
  6053. -ms-border-radius: 0;
  6054. -khtml-border-radius: 0;
  6055. border-radius: 0;
  6056. border-right: 1px solid;
  6057. border-top: 1px solid; }
  6058. /* line 30, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6059. .x-progress-text {
  6060. overflow: hidden;
  6061. position: absolute;
  6062. padding: 0 5px;
  6063. height: 18px;
  6064. font-weight: bold;
  6065. font-size: 11px;
  6066. line-height: 16px;
  6067. text-align: center; }
  6068. /* line 45, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6069. .x-progress-text-back {
  6070. padding-top: 1px; }
  6071. /* line 50, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6072. .x-strict .x-ie7m .x-progress {
  6073. height: 18px; }
  6074. /* line 93, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6075. .x-progress-default {
  6076. border-color: #8e8e8e; }
  6077. /* line 96, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6078. .x-progress-default .x-progress-bar {
  6079. border-right-color: #8e8e8e;
  6080. border-top-color: #cecece;
  6081. background-image: none;
  6082. background-color: #ababab;
  6083. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d1d1d1), color-stop(50%, #b8b8b8), color-stop(51%, #ababab), color-stop(100%, #9e9e9e));
  6084. background-image: -webkit-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  6085. background-image: -moz-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  6086. background-image: -o-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  6087. background-image: -ms-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e);
  6088. background-image: linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); }
  6089. /* line 103, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6090. .x-progress-default .x-progress-text {
  6091. color: white; }
  6092. /* line 107, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6093. .x-progress-default .x-progress-text-back {
  6094. color: #5d5d5d; }
  6095. /* line 116, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  6096. .x-nlg .x-progress-default .x-progress-bar {
  6097. background: repeat-x;
  6098. background-image: url('../../resources/themes/images/gray/progress/progress-default-bg.gif'); }
  6099. /* line 6, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6100. .x-toolbar {
  6101. font-size: 11px;
  6102. border: 1px solid;
  6103. padding: 2px 0 2px 2px; }
  6104. /* line 13, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6105. .x-toolbar .x-form-item-label {
  6106. font-size: 11px;
  6107. line-height: 15px; }
  6108. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6109. .x-toolbar .x-toolbar-item {
  6110. margin: 0 2px 0 0; }
  6111. /* line 22, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6112. .x-toolbar .x-toolbar-text {
  6113. margin-left: 4px;
  6114. margin-right: 6px;
  6115. white-space: nowrap;
  6116. color: black;
  6117. line-height: 16px;
  6118. font-family: tahoma, arial, verdana, sans-serif;
  6119. font-size: 11px;
  6120. font-weight: normal; }
  6121. /* line 33, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6122. .x-toolbar .x-toolbar-separator {
  6123. display: block;
  6124. font-size: 1px;
  6125. overflow: hidden;
  6126. cursor: default;
  6127. border: 0; }
  6128. /* line 41, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6129. .x-toolbar .x-toolbar-separator-horizontal {
  6130. margin: 0 3px 0 2px;
  6131. height: 14px;
  6132. width: 0px;
  6133. border-left: 1px solid #aca899;
  6134. border-right: 1px solid white; }
  6135. /* line 53, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6136. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  6137. width: 2px; }
  6138. /* line 58, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6139. .x-toolbar-footer {
  6140. background: transparent;
  6141. border: 0px none;
  6142. margin-top: 3px;
  6143. padding: 2px 0 2px 6px; }
  6144. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6145. .x-toolbar-footer .x-box-inner {
  6146. border-width: 0; }
  6147. /* line 69, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6148. .x-toolbar-footer .x-toolbar-item {
  6149. margin: 0 6px 0 0; }
  6150. /* line 74, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6151. .x-toolbar-vertical {
  6152. padding: 2px 2px 0 2px; }
  6153. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6154. .x-toolbar-vertical .x-toolbar-item {
  6155. margin: 0 0 2px 0; }
  6156. /* line 81, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6157. .x-toolbar-vertical .x-toolbar-text {
  6158. margin-top: 4px;
  6159. margin-bottom: 6px; }
  6160. /* line 86, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6161. .x-toolbar-vertical .x-toolbar-separator-vertical {
  6162. margin: 2px 5px 3px 5px;
  6163. height: 0px;
  6164. width: 10px;
  6165. line-height: 0px;
  6166. border-top: 1px solid #aca899;
  6167. border-bottom: 1px solid white; }
  6168. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6169. .x-toolbar-scroller {
  6170. padding-left: 0; }
  6171. /* line 102, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6172. .x-toolbar-spacer {
  6173. width: 2px; }
  6174. /* line 107, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6175. .x-toolbar-more-icon {
  6176. background-image: url('../../resources/themes/images/gray/toolbar/more.gif') !important;
  6177. background-position: 2px center !important;
  6178. background-repeat: no-repeat; }
  6179. /* line 144, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6180. .x-toolbar-default {
  6181. border-color: #d0d0d0;
  6182. background-image: none;
  6183. background-color: #d8d8d8;
  6184. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #efefef));
  6185. background-image: -webkit-linear-gradient(top, #e6e6e6, #efefef);
  6186. background-image: -moz-linear-gradient(top, #e6e6e6, #efefef);
  6187. background-image: -o-linear-gradient(top, #e6e6e6, #efefef);
  6188. background-image: -ms-linear-gradient(top, #e6e6e6, #efefef);
  6189. background-image: linear-gradient(top, #e6e6e6, #efefef); }
  6190. /* line 155, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6191. .x-nlg .x-toolbar-default {
  6192. background-image: url('../../resources/themes/images/gray/toolbar/toolbar-default-bg.gif') !important;
  6193. background-repeat: repeat-x; }
  6194. /* line 123, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  6195. .x-toolbar-plain {
  6196. border: 0; }
  6197. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6198. .x-window {
  6199. outline: none;
  6200. overflow: hidden; }
  6201. /* line 10, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6202. .x-window .x-window-wrap {
  6203. position: relative; }
  6204. /* line 15, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6205. .x-window-body {
  6206. position: relative;
  6207. border-style: solid;
  6208. overflow: hidden; }
  6209. /* line 24, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6210. .x-window-maximized .x-window-wrap .x-window-header {
  6211. -moz-border-radius: 0 !important;
  6212. -webkit-border-radius: 0 !important;
  6213. -o-border-radius: 0 !important;
  6214. -ms-border-radius: 0 !important;
  6215. -khtml-border-radius: 0 !important;
  6216. border-radius: 0 !important; }
  6217. /* line 30, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6218. .x-window-header-top {
  6219. margin-bottom: -2px; }
  6220. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6221. .x-window-header-body-horizontal {
  6222. margin-top: -1px; }
  6223. /* line 37, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6224. .x-window-header-bottom {
  6225. margin-top: -1px;
  6226. margin-bottom: -1px; }
  6227. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6228. .x-window-header-left {
  6229. margin-right: -1px; }
  6230. /* line 46, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6231. .x-window-header-right {
  6232. margin-left: -1px; }
  6233. /* line 51, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6234. .x-window-header-vertical .x-surface {
  6235. padding-left: 1px; }
  6236. /* line 58, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6237. .x-window-collapsed .x-window-header-vertical {
  6238. -moz-border-radius: 5px;
  6239. -webkit-border-radius: 5px;
  6240. -o-border-radius: 5px;
  6241. -ms-border-radius: 5px;
  6242. -khtml-border-radius: 5px;
  6243. border-radius: 5px; }
  6244. /* line 61, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6245. .x-window-collapsed .x-window-header-horizontal {
  6246. -moz-border-radius: 5px;
  6247. -webkit-border-radius: 5px;
  6248. -o-border-radius: 5px;
  6249. -ms-border-radius: 5px;
  6250. -khtml-border-radius: 5px;
  6251. border-radius: 5px; }
  6252. /* line 66, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6253. .x-window-collapsed .x-window-header-left {
  6254. padding-right: 5px !important;
  6255. margin-right: 0; }
  6256. /* line 71, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6257. .x-window-collapsed .x-window-header-right {
  6258. padding-left: 5px !important;
  6259. margin-left: 0; }
  6260. /* line 76, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6261. .x-window-collapsed .x-window-header-top {
  6262. padding-bottom: 5px !important;
  6263. margin-bottom: -1px; }
  6264. /* line 81, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6265. .x-window-collapsed .x-window-header-bottom {
  6266. padding-top: 5px !important;
  6267. margin-top: 0; }
  6268. /* line 89, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6269. .x-window-header-left .x-vml-base,
  6270. .x-window-header-right .x-vml-base {
  6271. left: -3px !important; }
  6272. /* line 97, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6273. .x-opera .x-window-header-vertical .x-surface,
  6274. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  6275. padding-left: 2px; }
  6276. /* line 103, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6277. .x-window-header-text-container {
  6278. overflow: hidden;
  6279. -o-text-overflow: ellipsis;
  6280. text-overflow: ellipsis; }
  6281. /* line 109, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6282. .x-window-header-text {
  6283. user-select: none;
  6284. -o-user-select: none;
  6285. -ms-user-select: none;
  6286. -moz-user-select: -moz-none;
  6287. -webkit-user-select: none;
  6288. cursor: default;
  6289. white-space: nowrap; }
  6290. /* line 159, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6291. .x-window-default {
  6292. border-color: #a9a9a9;
  6293. -moz-border-radius: 5px 5px;
  6294. -webkit-border-radius: 5px 5px;
  6295. -o-border-radius: 5px 5px;
  6296. -ms-border-radius: 5px 5px;
  6297. -khtml-border-radius: 5px 5px;
  6298. border-radius: 5px 5px;
  6299. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6300. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6301. -o-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6302. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6303. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6304. .x-window-default {
  6305. -moz-border-radius-topleft: 5px;
  6306. -webkit-border-top-left-radius: 5px;
  6307. -o-border-top-left-radius: 5px;
  6308. -ms-border-top-left-radius: 5px;
  6309. -khtml-border-top-left-radius: 5px;
  6310. border-top-left-radius: 5px;
  6311. -moz-border-radius-topright: 5px;
  6312. -webkit-border-top-right-radius: 5px;
  6313. -o-border-top-right-radius: 5px;
  6314. -ms-border-top-right-radius: 5px;
  6315. -khtml-border-top-right-radius: 5px;
  6316. border-top-right-radius: 5px;
  6317. -moz-border-radius-bottomright: 5px;
  6318. -webkit-border-bottom-right-radius: 5px;
  6319. -o-border-bottom-right-radius: 5px;
  6320. -ms-border-bottom-right-radius: 5px;
  6321. -khtml-border-bottom-right-radius: 5px;
  6322. border-bottom-right-radius: 5px;
  6323. -moz-border-radius-bottomleft: 5px;
  6324. -webkit-border-bottom-left-radius: 5px;
  6325. -o-border-bottom-left-radius: 5px;
  6326. -ms-border-bottom-left-radius: 5px;
  6327. -khtml-border-bottom-left-radius: 5px;
  6328. border-bottom-left-radius: 5px;
  6329. padding: 4px 4px 4px 4px;
  6330. border-width: 1px;
  6331. border-style: solid;
  6332. background-color: #e8e8e8; }
  6333. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6334. .x-nlg .x-window-default-mc {
  6335. background-color: #e8e8e8; }
  6336. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6337. .x-nbr .x-window-default {
  6338. padding: 0 !important;
  6339. border-width: 0 !important;
  6340. -moz-border-radius: 0px;
  6341. -webkit-border-radius: 0px;
  6342. -o-border-radius: 0px;
  6343. -ms-border-radius: 0px;
  6344. -khtml-border-radius: 0px;
  6345. border-radius: 0px;
  6346. background-color: transparent;
  6347. background-position: 1000505px 1000505px; }
  6348. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6349. .x-nbr .x-window-default-tl,
  6350. .x-nbr .x-window-default-bl,
  6351. .x-nbr .x-window-default-tr,
  6352. .x-nbr .x-window-default-br,
  6353. .x-nbr .x-window-default-tc,
  6354. .x-nbr .x-window-default-bc,
  6355. .x-nbr .x-window-default-ml,
  6356. .x-nbr .x-window-default-mr {
  6357. zoom: 1;
  6358. background-image: url('../../resources/themes/images/gray/window/window-default-corners.gif'); }
  6359. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6360. .x-nbr .x-window-default-ml,
  6361. .x-nbr .x-window-default-mr {
  6362. zoom: 1;
  6363. background-image: url('../../resources/themes/images/gray/window/window-default-sides.gif');
  6364. background-position: 0 0;
  6365. background-repeat: repeat-y; }
  6366. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6367. .x-nbr .x-window-default-mc {
  6368. padding: 0px 0px 0px 0px; }
  6369. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6370. .x-strict .x-ie7 .x-window-default-tl,
  6371. .x-strict .x-ie7 .x-window-default-bl {
  6372. position: relative;
  6373. right: 0; }
  6374. /* line 178, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6375. .x-window-body-default {
  6376. border-color: #bcb1b0;
  6377. border-width: 1px;
  6378. background: #e0e0e0;
  6379. color: black; }
  6380. /* line 188, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6381. .x-window-header-default {
  6382. font-size: 11px;
  6383. border-color: #a9a9a9;
  6384. zoom: 1; }
  6385. /* line 194, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6386. .x-window-header-text-default {
  6387. color: #333333;
  6388. font-weight: bold;
  6389. line-height: 17px;
  6390. font-family: tahoma, arial, verdana, sans-serif;
  6391. font-size: 11px; }
  6392. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6393. .x-window-header-default-top {
  6394. -moz-border-radius-topleft: 5px;
  6395. -webkit-border-top-left-radius: 5px;
  6396. -o-border-top-left-radius: 5px;
  6397. -ms-border-top-left-radius: 5px;
  6398. -khtml-border-top-left-radius: 5px;
  6399. border-top-left-radius: 5px;
  6400. -moz-border-radius-topright: 5px;
  6401. -webkit-border-top-right-radius: 5px;
  6402. -o-border-top-right-radius: 5px;
  6403. -ms-border-top-right-radius: 5px;
  6404. -khtml-border-top-right-radius: 5px;
  6405. border-top-right-radius: 5px;
  6406. -moz-border-radius-bottomright: 0;
  6407. -webkit-border-bottom-right-radius: 0;
  6408. -o-border-bottom-right-radius: 0;
  6409. -ms-border-bottom-right-radius: 0;
  6410. -khtml-border-bottom-right-radius: 0;
  6411. border-bottom-right-radius: 0;
  6412. -moz-border-radius-bottomleft: 0;
  6413. -webkit-border-bottom-left-radius: 0;
  6414. -o-border-bottom-left-radius: 0;
  6415. -ms-border-bottom-left-radius: 0;
  6416. -khtml-border-bottom-left-radius: 0;
  6417. border-bottom-left-radius: 0;
  6418. padding: 4px 5px 0 5px;
  6419. border-width: 1px 1px 0 1px;
  6420. border-style: solid;
  6421. background-color: #e8e8e8; }
  6422. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6423. .x-nlg .x-window-header-default-top-mc {
  6424. background-color: #e8e8e8; }
  6425. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6426. .x-nbr .x-window-header-default-top {
  6427. padding: 0 !important;
  6428. border-width: 0 !important;
  6429. -moz-border-radius: 0px;
  6430. -webkit-border-radius: 0px;
  6431. -o-border-radius: 0px;
  6432. -ms-border-radius: 0px;
  6433. -khtml-border-radius: 0px;
  6434. border-radius: 0px;
  6435. background-color: transparent;
  6436. background-position: 1000505px 1000000px; }
  6437. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6438. .x-nbr .x-window-header-default-top-tl,
  6439. .x-nbr .x-window-header-default-top-bl,
  6440. .x-nbr .x-window-header-default-top-tr,
  6441. .x-nbr .x-window-header-default-top-br,
  6442. .x-nbr .x-window-header-default-top-tc,
  6443. .x-nbr .x-window-header-default-top-bc,
  6444. .x-nbr .x-window-header-default-top-ml,
  6445. .x-nbr .x-window-header-default-top-mr {
  6446. zoom: 1;
  6447. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-top-corners.gif'); }
  6448. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6449. .x-nbr .x-window-header-default-top-ml,
  6450. .x-nbr .x-window-header-default-top-mr {
  6451. zoom: 1;
  6452. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-top-sides.gif');
  6453. background-position: 0 0;
  6454. background-repeat: repeat-y; }
  6455. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6456. .x-nbr .x-window-header-default-top-mc {
  6457. padding: 0px 1px 0 1px; }
  6458. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6459. .x-strict .x-ie7 .x-window-header-default-top-tl,
  6460. .x-strict .x-ie7 .x-window-header-default-top-bl {
  6461. position: relative;
  6462. right: 0; }
  6463. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6464. .x-window-header-default-right {
  6465. -moz-border-radius-topleft: 0;
  6466. -webkit-border-top-left-radius: 0;
  6467. -o-border-top-left-radius: 0;
  6468. -ms-border-top-left-radius: 0;
  6469. -khtml-border-top-left-radius: 0;
  6470. border-top-left-radius: 0;
  6471. -moz-border-radius-topright: 5px;
  6472. -webkit-border-top-right-radius: 5px;
  6473. -o-border-top-right-radius: 5px;
  6474. -ms-border-top-right-radius: 5px;
  6475. -khtml-border-top-right-radius: 5px;
  6476. border-top-right-radius: 5px;
  6477. -moz-border-radius-bottomright: 5px;
  6478. -webkit-border-bottom-right-radius: 5px;
  6479. -o-border-bottom-right-radius: 5px;
  6480. -ms-border-bottom-right-radius: 5px;
  6481. -khtml-border-bottom-right-radius: 5px;
  6482. border-bottom-right-radius: 5px;
  6483. -moz-border-radius-bottomleft: 0;
  6484. -webkit-border-bottom-left-radius: 0;
  6485. -o-border-bottom-left-radius: 0;
  6486. -ms-border-bottom-left-radius: 0;
  6487. -khtml-border-bottom-left-radius: 0;
  6488. border-bottom-left-radius: 0;
  6489. padding: 5px 4px 5px 0;
  6490. border-width: 1px 1px 1px 0;
  6491. border-style: solid;
  6492. background-color: #e8e8e8; }
  6493. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6494. .x-nlg .x-window-header-default-right-mc {
  6495. background-color: #e8e8e8; }
  6496. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6497. .x-nbr .x-window-header-default-right {
  6498. padding: 0 !important;
  6499. border-width: 0 !important;
  6500. -moz-border-radius: 0px;
  6501. -webkit-border-radius: 0px;
  6502. -o-border-radius: 0px;
  6503. -ms-border-radius: 0px;
  6504. -khtml-border-radius: 0px;
  6505. border-radius: 0px;
  6506. background-color: transparent;
  6507. background-position: 1000005px 1000500px; }
  6508. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6509. .x-nbr .x-window-header-default-right-tl,
  6510. .x-nbr .x-window-header-default-right-bl,
  6511. .x-nbr .x-window-header-default-right-tr,
  6512. .x-nbr .x-window-header-default-right-br,
  6513. .x-nbr .x-window-header-default-right-tc,
  6514. .x-nbr .x-window-header-default-right-bc,
  6515. .x-nbr .x-window-header-default-right-ml,
  6516. .x-nbr .x-window-header-default-right-mr {
  6517. zoom: 1;
  6518. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-right-corners.gif'); }
  6519. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6520. .x-nbr .x-window-header-default-right-ml,
  6521. .x-nbr .x-window-header-default-right-mr {
  6522. zoom: 1;
  6523. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-right-sides.gif');
  6524. background-position: 0 0;
  6525. background-repeat: repeat-y; }
  6526. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6527. .x-nbr .x-window-header-default-right-mc {
  6528. padding: 1px 0px 1px 0; }
  6529. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6530. .x-strict .x-ie7 .x-window-header-default-right-tl,
  6531. .x-strict .x-ie7 .x-window-header-default-right-bl {
  6532. position: relative;
  6533. right: 0; }
  6534. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6535. .x-window-header-default-bottom {
  6536. -moz-border-radius-topleft: 0;
  6537. -webkit-border-top-left-radius: 0;
  6538. -o-border-top-left-radius: 0;
  6539. -ms-border-top-left-radius: 0;
  6540. -khtml-border-top-left-radius: 0;
  6541. border-top-left-radius: 0;
  6542. -moz-border-radius-topright: 0;
  6543. -webkit-border-top-right-radius: 0;
  6544. -o-border-top-right-radius: 0;
  6545. -ms-border-top-right-radius: 0;
  6546. -khtml-border-top-right-radius: 0;
  6547. border-top-right-radius: 0;
  6548. -moz-border-radius-bottomright: 5px;
  6549. -webkit-border-bottom-right-radius: 5px;
  6550. -o-border-bottom-right-radius: 5px;
  6551. -ms-border-bottom-right-radius: 5px;
  6552. -khtml-border-bottom-right-radius: 5px;
  6553. border-bottom-right-radius: 5px;
  6554. -moz-border-radius-bottomleft: 5px;
  6555. -webkit-border-bottom-left-radius: 5px;
  6556. -o-border-bottom-left-radius: 5px;
  6557. -ms-border-bottom-left-radius: 5px;
  6558. -khtml-border-bottom-left-radius: 5px;
  6559. border-bottom-left-radius: 5px;
  6560. padding: 0 5px 4px 5px;
  6561. border-width: 0 1px 1px 1px;
  6562. border-style: solid;
  6563. background-color: #e8e8e8; }
  6564. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6565. .x-nlg .x-window-header-default-bottom-mc {
  6566. background-color: #e8e8e8; }
  6567. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6568. .x-nbr .x-window-header-default-bottom {
  6569. padding: 0 !important;
  6570. border-width: 0 !important;
  6571. -moz-border-radius: 0px;
  6572. -webkit-border-radius: 0px;
  6573. -o-border-radius: 0px;
  6574. -ms-border-radius: 0px;
  6575. -khtml-border-radius: 0px;
  6576. border-radius: 0px;
  6577. background-color: transparent;
  6578. background-position: 1000000px 1000505px; }
  6579. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6580. .x-nbr .x-window-header-default-bottom-tl,
  6581. .x-nbr .x-window-header-default-bottom-bl,
  6582. .x-nbr .x-window-header-default-bottom-tr,
  6583. .x-nbr .x-window-header-default-bottom-br,
  6584. .x-nbr .x-window-header-default-bottom-tc,
  6585. .x-nbr .x-window-header-default-bottom-bc,
  6586. .x-nbr .x-window-header-default-bottom-ml,
  6587. .x-nbr .x-window-header-default-bottom-mr {
  6588. zoom: 1;
  6589. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-bottom-corners.gif'); }
  6590. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6591. .x-nbr .x-window-header-default-bottom-ml,
  6592. .x-nbr .x-window-header-default-bottom-mr {
  6593. zoom: 1;
  6594. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-bottom-sides.gif');
  6595. background-position: 0 0;
  6596. background-repeat: repeat-y; }
  6597. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6598. .x-nbr .x-window-header-default-bottom-mc {
  6599. padding: 0 1px 0px 1px; }
  6600. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6601. .x-strict .x-ie7 .x-window-header-default-bottom-tl,
  6602. .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  6603. position: relative;
  6604. right: 0; }
  6605. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6606. .x-window-header-default-left {
  6607. -moz-border-radius-topleft: 5px;
  6608. -webkit-border-top-left-radius: 5px;
  6609. -o-border-top-left-radius: 5px;
  6610. -ms-border-top-left-radius: 5px;
  6611. -khtml-border-top-left-radius: 5px;
  6612. border-top-left-radius: 5px;
  6613. -moz-border-radius-topright: 0;
  6614. -webkit-border-top-right-radius: 0;
  6615. -o-border-top-right-radius: 0;
  6616. -ms-border-top-right-radius: 0;
  6617. -khtml-border-top-right-radius: 0;
  6618. border-top-right-radius: 0;
  6619. -moz-border-radius-bottomright: 0;
  6620. -webkit-border-bottom-right-radius: 0;
  6621. -o-border-bottom-right-radius: 0;
  6622. -ms-border-bottom-right-radius: 0;
  6623. -khtml-border-bottom-right-radius: 0;
  6624. border-bottom-right-radius: 0;
  6625. -moz-border-radius-bottomleft: 5px;
  6626. -webkit-border-bottom-left-radius: 5px;
  6627. -o-border-bottom-left-radius: 5px;
  6628. -ms-border-bottom-left-radius: 5px;
  6629. -khtml-border-bottom-left-radius: 5px;
  6630. border-bottom-left-radius: 5px;
  6631. padding: 5px 0px 5px 4px;
  6632. border-width: 1px 0 1px 1px;
  6633. border-style: solid;
  6634. background-color: #e8e8e8; }
  6635. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6636. .x-nlg .x-window-header-default-left-mc {
  6637. background-color: #e8e8e8; }
  6638. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6639. .x-nbr .x-window-header-default-left {
  6640. padding: 0 !important;
  6641. border-width: 0 !important;
  6642. -moz-border-radius: 0px;
  6643. -webkit-border-radius: 0px;
  6644. -o-border-radius: 0px;
  6645. -ms-border-radius: 0px;
  6646. -khtml-border-radius: 0px;
  6647. border-radius: 0px;
  6648. background-color: transparent;
  6649. background-position: 1000500px 1000005px; }
  6650. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6651. .x-nbr .x-window-header-default-left-tl,
  6652. .x-nbr .x-window-header-default-left-bl,
  6653. .x-nbr .x-window-header-default-left-tr,
  6654. .x-nbr .x-window-header-default-left-br,
  6655. .x-nbr .x-window-header-default-left-tc,
  6656. .x-nbr .x-window-header-default-left-bc,
  6657. .x-nbr .x-window-header-default-left-ml,
  6658. .x-nbr .x-window-header-default-left-mr {
  6659. zoom: 1;
  6660. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-left-corners.gif'); }
  6661. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6662. .x-nbr .x-window-header-default-left-ml,
  6663. .x-nbr .x-window-header-default-left-mr {
  6664. zoom: 1;
  6665. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-left-sides.gif');
  6666. background-position: 0 0;
  6667. background-repeat: repeat-y; }
  6668. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6669. .x-nbr .x-window-header-default-left-mc {
  6670. padding: 1px 0px 1px 0px; }
  6671. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6672. .x-strict .x-ie7 .x-window-header-default-left-tl,
  6673. .x-strict .x-ie7 .x-window-header-default-left-bl {
  6674. position: relative;
  6675. right: 0; }
  6676. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6677. .x-window-header-default-collapsed-top {
  6678. -moz-border-radius-topleft: 5px;
  6679. -webkit-border-top-left-radius: 5px;
  6680. -o-border-top-left-radius: 5px;
  6681. -ms-border-top-left-radius: 5px;
  6682. -khtml-border-top-left-radius: 5px;
  6683. border-top-left-radius: 5px;
  6684. -moz-border-radius-topright: 5px;
  6685. -webkit-border-top-right-radius: 5px;
  6686. -o-border-top-right-radius: 5px;
  6687. -ms-border-top-right-radius: 5px;
  6688. -khtml-border-top-right-radius: 5px;
  6689. border-top-right-radius: 5px;
  6690. -moz-border-radius-bottomright: 5px;
  6691. -webkit-border-bottom-right-radius: 5px;
  6692. -o-border-bottom-right-radius: 5px;
  6693. -ms-border-bottom-right-radius: 5px;
  6694. -khtml-border-bottom-right-radius: 5px;
  6695. border-bottom-right-radius: 5px;
  6696. -moz-border-radius-bottomleft: 5px;
  6697. -webkit-border-bottom-left-radius: 5px;
  6698. -o-border-bottom-left-radius: 5px;
  6699. -ms-border-bottom-left-radius: 5px;
  6700. -khtml-border-bottom-left-radius: 5px;
  6701. border-bottom-left-radius: 5px;
  6702. padding: 4px 5px 4px 5px;
  6703. border-width: 1px;
  6704. border-style: solid;
  6705. background-color: #e8e8e8; }
  6706. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6707. .x-nlg .x-window-header-default-collapsed-top-mc {
  6708. background-color: #e8e8e8; }
  6709. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6710. .x-nbr .x-window-header-default-collapsed-top {
  6711. padding: 0 !important;
  6712. border-width: 0 !important;
  6713. -moz-border-radius: 0px;
  6714. -webkit-border-radius: 0px;
  6715. -o-border-radius: 0px;
  6716. -ms-border-radius: 0px;
  6717. -khtml-border-radius: 0px;
  6718. border-radius: 0px;
  6719. background-color: transparent;
  6720. background-position: 1000505px 1000505px; }
  6721. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6722. .x-nbr .x-window-header-default-collapsed-top-tl,
  6723. .x-nbr .x-window-header-default-collapsed-top-bl,
  6724. .x-nbr .x-window-header-default-collapsed-top-tr,
  6725. .x-nbr .x-window-header-default-collapsed-top-br,
  6726. .x-nbr .x-window-header-default-collapsed-top-tc,
  6727. .x-nbr .x-window-header-default-collapsed-top-bc,
  6728. .x-nbr .x-window-header-default-collapsed-top-ml,
  6729. .x-nbr .x-window-header-default-collapsed-top-mr {
  6730. zoom: 1;
  6731. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-top-corners.gif'); }
  6732. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6733. .x-nbr .x-window-header-default-collapsed-top-ml,
  6734. .x-nbr .x-window-header-default-collapsed-top-mr {
  6735. zoom: 1;
  6736. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-top-sides.gif');
  6737. background-position: 0 0;
  6738. background-repeat: repeat-y; }
  6739. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6740. .x-nbr .x-window-header-default-collapsed-top-mc {
  6741. padding: 0px 1px 0px 1px; }
  6742. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6743. .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
  6744. .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  6745. position: relative;
  6746. right: 0; }
  6747. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6748. .x-window-header-default-collapsed-right {
  6749. -moz-border-radius-topleft: 5px;
  6750. -webkit-border-top-left-radius: 5px;
  6751. -o-border-top-left-radius: 5px;
  6752. -ms-border-top-left-radius: 5px;
  6753. -khtml-border-top-left-radius: 5px;
  6754. border-top-left-radius: 5px;
  6755. -moz-border-radius-topright: 5px;
  6756. -webkit-border-top-right-radius: 5px;
  6757. -o-border-top-right-radius: 5px;
  6758. -ms-border-top-right-radius: 5px;
  6759. -khtml-border-top-right-radius: 5px;
  6760. border-top-right-radius: 5px;
  6761. -moz-border-radius-bottomright: 5px;
  6762. -webkit-border-bottom-right-radius: 5px;
  6763. -o-border-bottom-right-radius: 5px;
  6764. -ms-border-bottom-right-radius: 5px;
  6765. -khtml-border-bottom-right-radius: 5px;
  6766. border-bottom-right-radius: 5px;
  6767. -moz-border-radius-bottomleft: 5px;
  6768. -webkit-border-bottom-left-radius: 5px;
  6769. -o-border-bottom-left-radius: 5px;
  6770. -ms-border-bottom-left-radius: 5px;
  6771. -khtml-border-bottom-left-radius: 5px;
  6772. border-bottom-left-radius: 5px;
  6773. padding: 5px 4px 5px 4px;
  6774. border-width: 1px;
  6775. border-style: solid;
  6776. background-color: #e8e8e8; }
  6777. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6778. .x-nlg .x-window-header-default-collapsed-right-mc {
  6779. background-color: #e8e8e8; }
  6780. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6781. .x-nbr .x-window-header-default-collapsed-right {
  6782. padding: 0 !important;
  6783. border-width: 0 !important;
  6784. -moz-border-radius: 0px;
  6785. -webkit-border-radius: 0px;
  6786. -o-border-radius: 0px;
  6787. -ms-border-radius: 0px;
  6788. -khtml-border-radius: 0px;
  6789. border-radius: 0px;
  6790. background-color: transparent;
  6791. background-position: 1000505px 1000505px; }
  6792. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6793. .x-nbr .x-window-header-default-collapsed-right-tl,
  6794. .x-nbr .x-window-header-default-collapsed-right-bl,
  6795. .x-nbr .x-window-header-default-collapsed-right-tr,
  6796. .x-nbr .x-window-header-default-collapsed-right-br,
  6797. .x-nbr .x-window-header-default-collapsed-right-tc,
  6798. .x-nbr .x-window-header-default-collapsed-right-bc,
  6799. .x-nbr .x-window-header-default-collapsed-right-ml,
  6800. .x-nbr .x-window-header-default-collapsed-right-mr {
  6801. zoom: 1;
  6802. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-right-corners.gif'); }
  6803. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6804. .x-nbr .x-window-header-default-collapsed-right-ml,
  6805. .x-nbr .x-window-header-default-collapsed-right-mr {
  6806. zoom: 1;
  6807. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-right-sides.gif');
  6808. background-position: 0 0;
  6809. background-repeat: repeat-y; }
  6810. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6811. .x-nbr .x-window-header-default-collapsed-right-mc {
  6812. padding: 1px 0px 1px 0px; }
  6813. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6814. .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
  6815. .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  6816. position: relative;
  6817. right: 0; }
  6818. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6819. .x-window-header-default-collapsed-bottom {
  6820. -moz-border-radius-topleft: 5px;
  6821. -webkit-border-top-left-radius: 5px;
  6822. -o-border-top-left-radius: 5px;
  6823. -ms-border-top-left-radius: 5px;
  6824. -khtml-border-top-left-radius: 5px;
  6825. border-top-left-radius: 5px;
  6826. -moz-border-radius-topright: 5px;
  6827. -webkit-border-top-right-radius: 5px;
  6828. -o-border-top-right-radius: 5px;
  6829. -ms-border-top-right-radius: 5px;
  6830. -khtml-border-top-right-radius: 5px;
  6831. border-top-right-radius: 5px;
  6832. -moz-border-radius-bottomright: 5px;
  6833. -webkit-border-bottom-right-radius: 5px;
  6834. -o-border-bottom-right-radius: 5px;
  6835. -ms-border-bottom-right-radius: 5px;
  6836. -khtml-border-bottom-right-radius: 5px;
  6837. border-bottom-right-radius: 5px;
  6838. -moz-border-radius-bottomleft: 5px;
  6839. -webkit-border-bottom-left-radius: 5px;
  6840. -o-border-bottom-left-radius: 5px;
  6841. -ms-border-bottom-left-radius: 5px;
  6842. -khtml-border-bottom-left-radius: 5px;
  6843. border-bottom-left-radius: 5px;
  6844. padding: 4px 5px 4px 5px;
  6845. border-width: 1px;
  6846. border-style: solid;
  6847. background-color: #e8e8e8; }
  6848. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6849. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  6850. background-color: #e8e8e8; }
  6851. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6852. .x-nbr .x-window-header-default-collapsed-bottom {
  6853. padding: 0 !important;
  6854. border-width: 0 !important;
  6855. -moz-border-radius: 0px;
  6856. -webkit-border-radius: 0px;
  6857. -o-border-radius: 0px;
  6858. -ms-border-radius: 0px;
  6859. -khtml-border-radius: 0px;
  6860. border-radius: 0px;
  6861. background-color: transparent;
  6862. background-position: 1000505px 1000505px; }
  6863. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6864. .x-nbr .x-window-header-default-collapsed-bottom-tl,
  6865. .x-nbr .x-window-header-default-collapsed-bottom-bl,
  6866. .x-nbr .x-window-header-default-collapsed-bottom-tr,
  6867. .x-nbr .x-window-header-default-collapsed-bottom-br,
  6868. .x-nbr .x-window-header-default-collapsed-bottom-tc,
  6869. .x-nbr .x-window-header-default-collapsed-bottom-bc,
  6870. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6871. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6872. zoom: 1;
  6873. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-bottom-corners.gif'); }
  6874. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6875. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6876. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6877. zoom: 1;
  6878. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-bottom-sides.gif');
  6879. background-position: 0 0;
  6880. background-repeat: repeat-y; }
  6881. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6882. .x-nbr .x-window-header-default-collapsed-bottom-mc {
  6883. padding: 0px 1px 0px 1px; }
  6884. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6885. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
  6886. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  6887. position: relative;
  6888. right: 0; }
  6889. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6890. .x-window-header-default-collapsed-left {
  6891. -moz-border-radius-topleft: 5px;
  6892. -webkit-border-top-left-radius: 5px;
  6893. -o-border-top-left-radius: 5px;
  6894. -ms-border-top-left-radius: 5px;
  6895. -khtml-border-top-left-radius: 5px;
  6896. border-top-left-radius: 5px;
  6897. -moz-border-radius-topright: 5px;
  6898. -webkit-border-top-right-radius: 5px;
  6899. -o-border-top-right-radius: 5px;
  6900. -ms-border-top-right-radius: 5px;
  6901. -khtml-border-top-right-radius: 5px;
  6902. border-top-right-radius: 5px;
  6903. -moz-border-radius-bottomright: 5px;
  6904. -webkit-border-bottom-right-radius: 5px;
  6905. -o-border-bottom-right-radius: 5px;
  6906. -ms-border-bottom-right-radius: 5px;
  6907. -khtml-border-bottom-right-radius: 5px;
  6908. border-bottom-right-radius: 5px;
  6909. -moz-border-radius-bottomleft: 5px;
  6910. -webkit-border-bottom-left-radius: 5px;
  6911. -o-border-bottom-left-radius: 5px;
  6912. -ms-border-bottom-left-radius: 5px;
  6913. -khtml-border-bottom-left-radius: 5px;
  6914. border-bottom-left-radius: 5px;
  6915. padding: 5px 4px 5px 4px;
  6916. border-width: 1px;
  6917. border-style: solid;
  6918. background-color: #e8e8e8; }
  6919. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6920. .x-nlg .x-window-header-default-collapsed-left-mc {
  6921. background-color: #e8e8e8; }
  6922. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6923. .x-nbr .x-window-header-default-collapsed-left {
  6924. padding: 0 !important;
  6925. border-width: 0 !important;
  6926. -moz-border-radius: 0px;
  6927. -webkit-border-radius: 0px;
  6928. -o-border-radius: 0px;
  6929. -ms-border-radius: 0px;
  6930. -khtml-border-radius: 0px;
  6931. border-radius: 0px;
  6932. background-color: transparent;
  6933. background-position: 1000505px 1000505px; }
  6934. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6935. .x-nbr .x-window-header-default-collapsed-left-tl,
  6936. .x-nbr .x-window-header-default-collapsed-left-bl,
  6937. .x-nbr .x-window-header-default-collapsed-left-tr,
  6938. .x-nbr .x-window-header-default-collapsed-left-br,
  6939. .x-nbr .x-window-header-default-collapsed-left-tc,
  6940. .x-nbr .x-window-header-default-collapsed-left-bc,
  6941. .x-nbr .x-window-header-default-collapsed-left-ml,
  6942. .x-nbr .x-window-header-default-collapsed-left-mr {
  6943. zoom: 1;
  6944. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-left-corners.gif'); }
  6945. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6946. .x-nbr .x-window-header-default-collapsed-left-ml,
  6947. .x-nbr .x-window-header-default-collapsed-left-mr {
  6948. zoom: 1;
  6949. background-image: url('../../resources/themes/images/gray/window-header/window-header-default-collapsed-left-sides.gif');
  6950. background-position: 0 0;
  6951. background-repeat: repeat-y; }
  6952. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6953. .x-nbr .x-window-header-default-collapsed-left-mc {
  6954. padding: 1px 0px 1px 0px; }
  6955. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6956. .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
  6957. .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  6958. position: relative;
  6959. right: 0; }
  6960. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6961. .x-window-header-default-top {
  6962. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6963. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6964. -o-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6965. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6966. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6967. .x-window-header-default-right {
  6968. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset;
  6969. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset;
  6970. -o-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset;
  6971. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; }
  6972. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6973. .x-window-header-default-bottom {
  6974. -moz-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6975. -webkit-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6976. -o-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6977. box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6978. /* line 229, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6979. .x-window-header-default-left {
  6980. -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6981. -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6982. -o-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset;
  6983. box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; }
  6984. /* line 130, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6985. .x-window-body-plain {
  6986. background: transparent; }
  6987. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6988. .x-message-box .x-window-body {
  6989. background-color: #e8e8e8;
  6990. border: none; }
  6991. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6992. .x-message-box .x-progress-wrap {
  6993. margin-top: 4px; }
  6994. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6995. .x-message-box-icon {
  6996. width: 47px;
  6997. height: 32px; }
  6998. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6999. .x-message-box-info,
  7000. .x-message-box-warning,
  7001. .x-message-box-question,
  7002. .x-message-box-error {
  7003. background: transparent no-repeat top left; }
  7004. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  7005. .x-message-box .x-msg-box-wait {
  7006. background-image: url('../../resources/themes/images/gray/shared/blue-loading.gif'); }
  7007. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  7008. .x-message-box-info {
  7009. background-image: url('../../resources/themes/images/gray/shared/icon-info.gif'); }
  7010. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  7011. .x-message-box-warning {
  7012. background-image: url('../../resources/themes/images/gray/shared/icon-warning.gif'); }
  7013. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  7014. .x-message-box-question {
  7015. background-image: url('../../resources/themes/images/gray/shared/icon-question.gif'); }
  7016. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  7017. .x-message-box-error {
  7018. background-image: url('../../resources/themes/images/gray/shared/icon-error.gif'); }
  7019. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7020. .x-tab-bar {
  7021. position: relative;
  7022. background-color: transparent;
  7023. background-image: none;
  7024. background-color: #d2d2d2;
  7025. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2));
  7026. background-image: -webkit-linear-gradient(top, #dfdede, #d2d2d2);
  7027. background-image: -moz-linear-gradient(top, #dfdede, #d2d2d2);
  7028. background-image: -o-linear-gradient(top, #dfdede, #d2d2d2);
  7029. background-image: -ms-linear-gradient(top, #dfdede, #d2d2d2);
  7030. background-image: linear-gradient(top, #dfdede, #d2d2d2);
  7031. font-size: 11px; }
  7032. /* line 80, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7033. .x-nlg .x-tab-bar {
  7034. background-image: url('../../resources/themes/images/gray/tab-bar/tab-bar-default-bg.gif'); }
  7035. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7036. .x-tab-bar-default-plain,
  7037. .x-nlg .x-tab-bar-default-plain {
  7038. background: transparent none; }
  7039. /* line 90, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7040. .x-tab-bar-body {
  7041. border-style: solid;
  7042. border-color: #d0d0d0;
  7043. position: relative;
  7044. z-index: 2;
  7045. zoom: 1; }
  7046. /* Top Tabs */
  7047. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7048. .x-tab-bar-top .x-tab-bar-body {
  7049. height: 20px;
  7050. border-width: 1px 1px 0;
  7051. padding: 1px 0 3px; }
  7052. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7053. .x-tab-bar-top .x-tab-bar-strip {
  7054. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  7055. top: 22px;
  7056. border-width: 1px 1px 0;
  7057. height: 2px; }
  7058. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7059. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  7060. height: 25px; }
  7061. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7062. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  7063. height: 3px; }
  7064. /* line 4, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7065. .x-tab-bar-top .x-tab-bar-body-default-plain {
  7066. height: 20px;
  7067. border-width: 0;
  7068. padding: 0 0 2px; }
  7069. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7070. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  7071. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  7072. top: 20px;
  7073. border-width: 1px 1px 0 1px;
  7074. height: 2px; }
  7075. /* line 19, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7076. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  7077. height: 22px; }
  7078. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7079. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  7080. height: 3px; }
  7081. /* Bottom Tabs */
  7082. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7083. .x-tab-bar-bottom .x-tab-bar-body {
  7084. height: 20px;
  7085. border-width: 0 1px 1px;
  7086. padding: 3px 0 1px; }
  7087. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7088. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  7089. position: relative;
  7090. top: -1px; }
  7091. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7092. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  7093. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  7094. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  7095. height: 22px; }
  7096. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7097. .x-tab-bar-bottom .x-tab-bar-strip {
  7098. top: 0;
  7099. border-width: 0 1px 1px 1px;
  7100. height: 2px; }
  7101. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7102. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  7103. height: 25px; }
  7104. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7105. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  7106. height: 3px; }
  7107. /* line 32, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7108. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  7109. height: 20px;
  7110. border-width: 0;
  7111. padding: 3px 0 0; }
  7112. /* line 37, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7113. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  7114. position: relative;
  7115. top: -1px; }
  7116. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7117. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  7118. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  7119. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  7120. height: 21px; }
  7121. /* line 49, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7122. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  7123. top: 0;
  7124. border-width: 0 1px 1px 1px;
  7125. height: 2px; }
  7126. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7127. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  7128. height: 23px; }
  7129. /* line 61, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7130. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  7131. height: 3px; }
  7132. /* line 141, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  7133. .x-tab-bar-strip-default,
  7134. .x-tab-bar-strip-default-plain {
  7135. font-size: 0;
  7136. line-height: 0;
  7137. position: absolute;
  7138. z-index: 1;
  7139. border-style: solid;
  7140. overflow: hidden;
  7141. border-color: #d0d0d0;
  7142. background-color: #eaeaea;
  7143. zoom: 1; }
  7144. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7145. .x-tab-default-top {
  7146. -moz-border-radius-topleft: 4px;
  7147. -webkit-border-top-left-radius: 4px;
  7148. -o-border-top-left-radius: 4px;
  7149. -ms-border-top-left-radius: 4px;
  7150. -khtml-border-top-left-radius: 4px;
  7151. border-top-left-radius: 4px;
  7152. -moz-border-radius-topright: 4px;
  7153. -webkit-border-top-right-radius: 4px;
  7154. -o-border-top-right-radius: 4px;
  7155. -ms-border-top-right-radius: 4px;
  7156. -khtml-border-top-right-radius: 4px;
  7157. border-top-right-radius: 4px;
  7158. -moz-border-radius-bottomright: 0;
  7159. -webkit-border-bottom-right-radius: 0;
  7160. -o-border-bottom-right-radius: 0;
  7161. -ms-border-bottom-right-radius: 0;
  7162. -khtml-border-bottom-right-radius: 0;
  7163. border-bottom-right-radius: 0;
  7164. -moz-border-radius-bottomleft: 0;
  7165. -webkit-border-bottom-left-radius: 0;
  7166. -o-border-bottom-left-radius: 0;
  7167. -ms-border-bottom-left-radius: 0;
  7168. -khtml-border-bottom-left-radius: 0;
  7169. border-bottom-left-radius: 0;
  7170. padding: 3px 3px 0 3px;
  7171. border-width: 1px 1px 0 1px;
  7172. border-style: solid;
  7173. background-image: none;
  7174. background-color: #eaeaea;
  7175. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea));
  7176. background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea);
  7177. background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea);
  7178. background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea);
  7179. background-image: -ms-linear-gradient(top, #dcdcdc, #eaeaea);
  7180. background-image: linear-gradient(top, #dcdcdc, #eaeaea); }
  7181. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7182. .x-nlg .x-tab-default-top-mc {
  7183. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-bg.gif');
  7184. background-color: #eaeaea; }
  7185. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7186. .x-nbr .x-tab-default-top {
  7187. padding: 0 !important;
  7188. border-width: 0 !important;
  7189. -moz-border-radius: 0px;
  7190. -webkit-border-radius: 0px;
  7191. -o-border-radius: 0px;
  7192. -ms-border-radius: 0px;
  7193. -khtml-border-radius: 0px;
  7194. border-radius: 0px;
  7195. background-color: transparent;
  7196. background-position: 1100404px 1000000px; }
  7197. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7198. .x-nbr .x-tab-default-top-tl,
  7199. .x-nbr .x-tab-default-top-bl,
  7200. .x-nbr .x-tab-default-top-tr,
  7201. .x-nbr .x-tab-default-top-br,
  7202. .x-nbr .x-tab-default-top-tc,
  7203. .x-nbr .x-tab-default-top-bc,
  7204. .x-nbr .x-tab-default-top-ml,
  7205. .x-nbr .x-tab-default-top-mr {
  7206. zoom: 1;
  7207. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-corners.gif'); }
  7208. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7209. .x-nbr .x-tab-default-top-ml,
  7210. .x-nbr .x-tab-default-top-mr {
  7211. zoom: 1;
  7212. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-sides.gif');
  7213. background-position: 0 0; }
  7214. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7215. .x-nbr .x-tab-default-top-mc {
  7216. padding: 0px 0px 0 0px; }
  7217. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7218. .x-strict .x-ie7 .x-tab-default-top-tl,
  7219. .x-strict .x-ie7 .x-tab-default-top-bl {
  7220. position: relative;
  7221. right: 0; }
  7222. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7223. .x-tab-default-bottom {
  7224. -moz-border-radius-topleft: 0;
  7225. -webkit-border-top-left-radius: 0;
  7226. -o-border-top-left-radius: 0;
  7227. -ms-border-top-left-radius: 0;
  7228. -khtml-border-top-left-radius: 0;
  7229. border-top-left-radius: 0;
  7230. -moz-border-radius-topright: 0;
  7231. -webkit-border-top-right-radius: 0;
  7232. -o-border-top-right-radius: 0;
  7233. -ms-border-top-right-radius: 0;
  7234. -khtml-border-top-right-radius: 0;
  7235. border-top-right-radius: 0;
  7236. -moz-border-radius-bottomright: 4px;
  7237. -webkit-border-bottom-right-radius: 4px;
  7238. -o-border-bottom-right-radius: 4px;
  7239. -ms-border-bottom-right-radius: 4px;
  7240. -khtml-border-bottom-right-radius: 4px;
  7241. border-bottom-right-radius: 4px;
  7242. -moz-border-radius-bottomleft: 4px;
  7243. -webkit-border-bottom-left-radius: 4px;
  7244. -o-border-bottom-left-radius: 4px;
  7245. -ms-border-bottom-left-radius: 4px;
  7246. -khtml-border-bottom-left-radius: 4px;
  7247. border-bottom-left-radius: 4px;
  7248. padding: 0 3px 3px 3px;
  7249. border-width: 0 1px 1px 1px;
  7250. border-style: solid;
  7251. background-image: none;
  7252. background-color: #eaeaea;
  7253. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea));
  7254. background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7255. background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7256. background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7257. background-image: -ms-linear-gradient(bottom, #dcdcdc, #eaeaea);
  7258. background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); }
  7259. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7260. .x-nlg .x-tab-default-bottom-mc {
  7261. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-bg.gif');
  7262. background-color: #eaeaea; }
  7263. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7264. .x-nbr .x-tab-default-bottom {
  7265. padding: 0 !important;
  7266. border-width: 0 !important;
  7267. -moz-border-radius: 0px;
  7268. -webkit-border-radius: 0px;
  7269. -o-border-radius: 0px;
  7270. -ms-border-radius: 0px;
  7271. -khtml-border-radius: 0px;
  7272. border-radius: 0px;
  7273. background-color: transparent;
  7274. background-position: 1100000px 1000404px; }
  7275. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7276. .x-nbr .x-tab-default-bottom-tl,
  7277. .x-nbr .x-tab-default-bottom-bl,
  7278. .x-nbr .x-tab-default-bottom-tr,
  7279. .x-nbr .x-tab-default-bottom-br,
  7280. .x-nbr .x-tab-default-bottom-tc,
  7281. .x-nbr .x-tab-default-bottom-bc,
  7282. .x-nbr .x-tab-default-bottom-ml,
  7283. .x-nbr .x-tab-default-bottom-mr {
  7284. zoom: 1;
  7285. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-corners.gif'); }
  7286. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7287. .x-nbr .x-tab-default-bottom-ml,
  7288. .x-nbr .x-tab-default-bottom-mr {
  7289. zoom: 1;
  7290. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-sides.gif');
  7291. background-position: 0 0; }
  7292. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7293. .x-nbr .x-tab-default-bottom-mc {
  7294. padding: 0 0px 0px 0px; }
  7295. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  7296. .x-strict .x-ie7 .x-tab-default-bottom-tl,
  7297. .x-strict .x-ie7 .x-tab-default-bottom-bl {
  7298. position: relative;
  7299. right: 0; }
  7300. /* line 28, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7301. .x-tab {
  7302. z-index: 1;
  7303. margin: 0 0 0 2px;
  7304. display: inline-block;
  7305. zoom: 1;
  7306. *display: inline;
  7307. white-space: nowrap;
  7308. height: 20px;
  7309. border-color: #b5b5b5;
  7310. cursor: pointer;
  7311. cursor: hand; }
  7312. /* line 40, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7313. .x-tab button {
  7314. cursor: pointer;
  7315. cursor: hand; }
  7316. /* line 45, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7317. .x-tab em {
  7318. display: block;
  7319. padding: 0 6px;
  7320. line-height: 1px; }
  7321. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7322. .x-tab button {
  7323. background: none;
  7324. border: 0;
  7325. padding: 0;
  7326. margin: 0;
  7327. -webkit-appearance: none;
  7328. font-size: 11px;
  7329. font-weight: bold;
  7330. font-family: tahoma, arial, verdana, sans-serif;
  7331. color: #6f6f6f;
  7332. outline: 0 none;
  7333. overflow-x: visible; }
  7334. /* line 69, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7335. .x-tab button::-moz-focus-inner {
  7336. border: 0;
  7337. padding: 0; }
  7338. /* line 74, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7339. .x-tab button .x-tab-inner {
  7340. background-color: transparent;
  7341. background-repeat: no-repeat;
  7342. background-position: 0 -2px;
  7343. display: block;
  7344. text-align: center;
  7345. white-space: nowrap;
  7346. text-overflow: ellipsis;
  7347. -o-text-overflow: ellipsis;
  7348. overflow: hidden; }
  7349. /* line 87, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7350. .x-tab img {
  7351. display: none; }
  7352. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7353. .x-border-box .x-tab-default-top {
  7354. height: 21px; }
  7355. /* line 96, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7356. .x-border-box .x-tab-default-bottom {
  7357. height: 21px; }
  7358. /* line 103, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7359. * html .x-ie .x-tab button {
  7360. width: 1px; }
  7361. /* line 110, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7362. .x-strict .x-ie6 .x-tab .x-frame-mc,
  7363. .x-strict .x-ie7 .x-tab .x-frame-mc {
  7364. height: 100%; }
  7365. /* line 115, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7366. .x-ie .x-tab-active button:active {
  7367. position: relative;
  7368. top: -1px;
  7369. left: -1px; }
  7370. /* line 124, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7371. .x-tab-default-top {
  7372. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7373. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7374. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7375. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7376. border-bottom: 1px solid #d0d0d0 !important; }
  7377. /* line 134, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7378. .x-tab-default-top em {
  7379. padding-bottom: 3px; }
  7380. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7381. .x-tab-default-top button,
  7382. .x-tab-default-top .x-tab-inner {
  7383. height: 13px;
  7384. line-height: 13px; }
  7385. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7386. .x-safari4 .x-tab-default-top .x-tab-inner,
  7387. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  7388. line-height: 11px; }
  7389. /* line 153, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7390. .x-nbr .x-tab-default-top {
  7391. border-bottom-width: 1px !important; }
  7392. /* line 157, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7393. .x-tab-default-top-active {
  7394. border-bottom-color: #eaeaea !important; }
  7395. /* line 163, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7396. .x-tab-default-bottom {
  7397. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7398. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7399. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7400. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7401. border-top: 1px solid #d0d0d0 !important;
  7402. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7403. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7404. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  7405. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  7406. /* line 178, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7407. .x-tab-default-bottom em {
  7408. padding-top: 3px; }
  7409. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7410. .x-tab-default-bottom button,
  7411. .x-tab-default-bottom .x-tab-inner {
  7412. height: 13px;
  7413. line-height: 13px; }
  7414. /* line 189, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7415. .x-nbr .x-tab-default-bottom {
  7416. border-top-width: 1px !important; }
  7417. /* line 193, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7418. .x-tab-default-bottom-active {
  7419. border-top-color: #eaeaea !important; }
  7420. /* line 197, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7421. .x-tab-default-disabled {
  7422. cursor: default;
  7423. border-color: #cec7c7;
  7424. background-image: none;
  7425. background-color: #e7dfdf;
  7426. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7427. background-image: -webkit-linear-gradient(top, #e7dfdf, #f2e3e4);
  7428. background-image: -moz-linear-gradient(top, #e7dfdf, #f2e3e4);
  7429. background-image: -o-linear-gradient(top, #e7dfdf, #f2e3e4);
  7430. background-image: -ms-linear-gradient(top, #e7dfdf, #f2e3e4);
  7431. background-image: linear-gradient(top, #e7dfdf, #f2e3e4); }
  7432. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7433. .x-tab-default-disabled button {
  7434. color: #c3b3b3 !important; }
  7435. /* line 209, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7436. .x-tab-icon-text-left .x-tab-inner {
  7437. padding-left: 20px; }
  7438. /* line 214, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7439. .x-tab button {
  7440. position: relative; }
  7441. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7442. .x-tab-icon {
  7443. position: absolute;
  7444. background-repeat: no-repeat;
  7445. background-position: 0 -1px;
  7446. top: 0;
  7447. left: 0;
  7448. right: auto;
  7449. bottom: 0;
  7450. width: 18px;
  7451. height: 18px; }
  7452. /* line 233, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7453. .x-strict .x-ie8 .x-tab button,
  7454. .x-strict .x-ie9 .x-tab button {
  7455. overflow-y: visible; }
  7456. /* line 238, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7457. .x-tab-default-disabled .x-tab-icon {
  7458. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7459. opacity: 0.5; }
  7460. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  7461. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7462. .x-tab-noicon .x-tab-icon {
  7463. display: none; }
  7464. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7465. .x-tab-top-over {
  7466. background-image: none;
  7467. background-color: #f2eeee;
  7468. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7e6e6), color-stop(25%, #eeeaea), color-stop(45%, #f2eeee));
  7469. background-image: -webkit-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7470. background-image: -moz-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7471. background-image: -o-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7472. background-image: -ms-linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7473. background-image: linear-gradient(top, #e7e6e6, #eeeaea 25%, #f2eeee 45%); }
  7474. /* line 272, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7475. .x-tab-bottom-over {
  7476. background-image: none;
  7477. background-color: #f2eeee;
  7478. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e7e6e6), color-stop(25%, #eeeaea), color-stop(45%, #f2eeee));
  7479. background-image: -webkit-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7480. background-image: -moz-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7481. background-image: -o-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7482. background-image: -ms-linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%);
  7483. background-image: linear-gradient(bottom, #e7e6e6, #eeeaea 25%, #f2eeee 45%); }
  7484. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7485. .x-tab-active {
  7486. z-index: 3; }
  7487. /* line 283, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7488. .x-tab-active button {
  7489. color: #333333; }
  7490. /* line 299, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7491. .x-tab-top-active {
  7492. background-image: none;
  7493. background-color: #eaeaea;
  7494. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea));
  7495. background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
  7496. background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
  7497. background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
  7498. background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
  7499. background-image: linear-gradient(top, #ffffff, #eaeaea); }
  7500. /* line 302, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7501. .x-tab-bottom-active {
  7502. background-image: none;
  7503. background-color: #eaeaea;
  7504. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea));
  7505. background-image: -webkit-linear-gradient(bottom, #ffffff, #eaeaea);
  7506. background-image: -moz-linear-gradient(bottom, #ffffff, #eaeaea);
  7507. background-image: -o-linear-gradient(bottom, #ffffff, #eaeaea);
  7508. background-image: -ms-linear-gradient(bottom, #ffffff, #eaeaea);
  7509. background-image: linear-gradient(bottom, #ffffff, #eaeaea); }
  7510. /* line 307, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7511. .x-tab-disabled {
  7512. border-color: #cec7c7; }
  7513. /* line 312, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7514. .x-tab-disabled button {
  7515. color: #c3b3b3; }
  7516. /* line 328, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7517. .x-tab-top-disabled {
  7518. background-image: none;
  7519. background: transparent;
  7520. background-image: none;
  7521. background-color: #e7dfdf;
  7522. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7523. background-image: -webkit-linear-gradient(top, #e7dfdf, #f2e3e4);
  7524. background-image: -moz-linear-gradient(top, #e7dfdf, #f2e3e4);
  7525. background-image: -o-linear-gradient(top, #e7dfdf, #f2e3e4);
  7526. background-image: -ms-linear-gradient(top, #e7dfdf, #f2e3e4);
  7527. background-image: linear-gradient(top, #e7dfdf, #f2e3e4); }
  7528. /* line 333, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7529. .x-tab-bottom-disabled {
  7530. background-image: none;
  7531. background: transparent;
  7532. background-image: none;
  7533. background-color: #e7dfdf;
  7534. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e7dfdf), color-stop(100%, #f2e3e4));
  7535. background-image: -webkit-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7536. background-image: -moz-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7537. background-image: -o-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7538. background-image: -ms-linear-gradient(bottom, #e7dfdf, #f2e3e4);
  7539. background-image: linear-gradient(bottom, #e7dfdf, #f2e3e4); }
  7540. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7541. .x-nlg .x-tab-top {
  7542. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-bg.gif'); }
  7543. /* line 343, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7544. .x-nlg .x-tab-bottom {
  7545. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-bg.gif'); }
  7546. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7547. .x-nlg .x-tab-top-over {
  7548. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-bg.gif'); }
  7549. /* line 348, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7550. .x-nlg .x-tab-bottom-over {
  7551. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-bg.gif'); }
  7552. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7553. .x-nlg .x-tab-top-active {
  7554. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-bg.gif'); }
  7555. /* line 353, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7556. .x-nlg .x-tab-bottom-active {
  7557. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-bg.gif'); }
  7558. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7559. .x-nlg .x-tab-top-disabled {
  7560. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-bg.gif') !important; }
  7561. /* line 358, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7562. .x-nlg .x-tab-bottom-disabled {
  7563. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-bg.gif') !important; }
  7564. /* line 363, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7565. .x-tab-closable em {
  7566. padding-right: 14px; }
  7567. /* line 367, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7568. .x-tab-close-btn {
  7569. position: absolute;
  7570. top: 2px;
  7571. right: 2px;
  7572. width: 11px;
  7573. height: 11px;
  7574. font-size: 0;
  7575. line-height: 0;
  7576. text-indent: -999px;
  7577. background: no-repeat;
  7578. background-image: url('../../resources/themes/images/gray/tab/tab-default-close.gif');
  7579. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7580. opacity: 0.6; }
  7581. /* line 381, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7582. .x-nbr .x-tab-close-btn {
  7583. top: 0px;
  7584. right: 0px; }
  7585. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  7586. /* line 387, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7587. a.x-tab-close-btn:hover {
  7588. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7589. opacity: 1; }
  7590. /* Include the element name to raise the specificity to equal the :hover */
  7591. /* line 392, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7592. .x-tab-default-disabled a.x-tab-close-btn {
  7593. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  7594. opacity: 0.3; }
  7595. /* line 404, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7596. .x-nbr .x-tab-top-over .x-frame-tl,
  7597. .x-nbr .x-tab-top-over .x-frame-bl,
  7598. .x-nbr .x-tab-top-over .x-frame-tr,
  7599. .x-nbr .x-tab-top-over .x-frame-br,
  7600. .x-nbr .x-tab-top-over .x-frame-tc,
  7601. .x-nbr .x-tab-top-over .x-frame-bc {
  7602. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-corners.gif'); }
  7603. /* line 408, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7604. .x-nbr .x-tab-top-over .x-frame-ml,
  7605. .x-nbr .x-tab-top-over .x-frame-mr {
  7606. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-sides.gif'); }
  7607. /* line 412, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7608. .x-nbr .x-tab-top-over .x-frame-mc {
  7609. background-color: #f2eeee;
  7610. background-repeat: repeat-x;
  7611. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-over-bg.gif'); }
  7612. /* line 426, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7613. .x-nbr .x-tab-bottom-over .x-frame-tl,
  7614. .x-nbr .x-tab-bottom-over .x-frame-bl,
  7615. .x-nbr .x-tab-bottom-over .x-frame-tr,
  7616. .x-nbr .x-tab-bottom-over .x-frame-br,
  7617. .x-nbr .x-tab-bottom-over .x-frame-tc,
  7618. .x-nbr .x-tab-bottom-over .x-frame-bc {
  7619. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-corners.gif'); }
  7620. /* line 430, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7621. .x-nbr .x-tab-bottom-over .x-frame-ml,
  7622. .x-nbr .x-tab-bottom-over .x-frame-mr {
  7623. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-sides.gif'); }
  7624. /* line 434, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7625. .x-nbr .x-tab-bottom-over .x-frame-mc {
  7626. background-color: #f2eeee;
  7627. background-repeat: repeat-x;
  7628. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-over-bg.gif'); }
  7629. /* line 448, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7630. .x-nbr .x-tab-top-active .x-frame-tl,
  7631. .x-nbr .x-tab-top-active .x-frame-bl,
  7632. .x-nbr .x-tab-top-active .x-frame-tr,
  7633. .x-nbr .x-tab-top-active .x-frame-br,
  7634. .x-nbr .x-tab-top-active .x-frame-tc,
  7635. .x-nbr .x-tab-top-active .x-frame-bc {
  7636. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-corners.gif'); }
  7637. /* line 452, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7638. .x-nbr .x-tab-top-active .x-frame-ml,
  7639. .x-nbr .x-tab-top-active .x-frame-mr {
  7640. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-sides.gif'); }
  7641. /* line 456, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7642. .x-nbr .x-tab-top-active .x-frame-mc {
  7643. background-color: #eaeaea;
  7644. background-repeat: repeat-x;
  7645. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-active-bg.gif'); }
  7646. /* line 470, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7647. .x-nbr .x-tab-bottom-active .x-frame-tl,
  7648. .x-nbr .x-tab-bottom-active .x-frame-bl,
  7649. .x-nbr .x-tab-bottom-active .x-frame-tr,
  7650. .x-nbr .x-tab-bottom-active .x-frame-br,
  7651. .x-nbr .x-tab-bottom-active .x-frame-tc,
  7652. .x-nbr .x-tab-bottom-active .x-frame-bc {
  7653. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-corners.gif'); }
  7654. /* line 474, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7655. .x-nbr .x-tab-bottom-active .x-frame-ml,
  7656. .x-nbr .x-tab-bottom-active .x-frame-mr {
  7657. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-sides.gif'); }
  7658. /* line 478, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7659. .x-nbr .x-tab-bottom-active .x-frame-mc {
  7660. background-color: #eaeaea;
  7661. background-repeat: repeat-x;
  7662. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-active-bg.gif'); }
  7663. /* line 492, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7664. .x-nbr .x-tab-top-disabled .x-frame-tl,
  7665. .x-nbr .x-tab-top-disabled .x-frame-bl,
  7666. .x-nbr .x-tab-top-disabled .x-frame-tr,
  7667. .x-nbr .x-tab-top-disabled .x-frame-br,
  7668. .x-nbr .x-tab-top-disabled .x-frame-tc,
  7669. .x-nbr .x-tab-top-disabled .x-frame-bc {
  7670. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-corners.gif'); }
  7671. /* line 496, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7672. .x-nbr .x-tab-top-disabled .x-frame-ml,
  7673. .x-nbr .x-tab-top-disabled .x-frame-mr {
  7674. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-sides.gif'); }
  7675. /* line 500, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7676. .x-nbr .x-tab-top-disabled .x-frame-mc {
  7677. background-repeat: repeat-x;
  7678. background-image: url('../../resources/themes/images/gray/tab/tab-default-top-disabled-bg.gif'); }
  7679. /* line 513, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7680. .x-nbr .x-tab-bottom-disabled .x-frame-tl,
  7681. .x-nbr .x-tab-bottom-disabled .x-frame-bl,
  7682. .x-nbr .x-tab-bottom-disabled .x-frame-tr,
  7683. .x-nbr .x-tab-bottom-disabled .x-frame-br,
  7684. .x-nbr .x-tab-bottom-disabled .x-frame-tc,
  7685. .x-nbr .x-tab-bottom-disabled .x-frame-bc {
  7686. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-corners.gif'); }
  7687. /* line 517, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7688. .x-nbr .x-tab-bottom-disabled .x-frame-ml,
  7689. .x-nbr .x-tab-bottom-disabled .x-frame-mr {
  7690. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-sides.gif'); }
  7691. /* line 521, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  7692. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  7693. background-repeat: repeat-x;
  7694. background-image: url('../../resources/themes/images/gray/tab/tab-default-bottom-disabled-bg.gif'); }
  7695. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7696. .x-autowidth-table table.x-grid-table {
  7697. table-layout: auto;
  7698. width: auto!important; }
  7699. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7700. .x-tree-no-lines .x-tree-elbow {
  7701. background-color: transparent; }
  7702. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7703. .x-tree-no-lines .x-tree-elbow-end {
  7704. background-color: transparent; }
  7705. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7706. .x-tree-no-lines .x-tree-elbow-line {
  7707. background-color: transparent; }
  7708. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7709. .x-tree-arrows .x-tree-elbow-plus {
  7710. background: transparent no-repeat 0 0; }
  7711. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7712. .x-tree-arrows .x-tree-elbow-end-plus {
  7713. background: transparent no-repeat 0 0; }
  7714. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7715. .x-tree-arrows .x-tree-elbow-end-minus {
  7716. background: transparent no-repeat -16px 0; }
  7717. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7718. .x-tree-arrows .x-tree-elbow-minus {
  7719. background: transparent no-repeat -16px 0; }
  7720. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7721. .x-tree-arrows .x-tree-elbow {
  7722. background-color: transparent !important; }
  7723. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7724. .x-tree-arrows .x-tree-elbow-end {
  7725. background-color: transparent !important; }
  7726. /* line 51, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7727. .x-tree-arrows .x-tree-elbow-line {
  7728. background-color: transparent !important; }
  7729. /* line 57, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7730. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  7731. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  7732. background-position: -32px 0; }
  7733. /* line 62, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7734. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  7735. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  7736. background-position: -48px 0; }
  7737. /* line 67, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7738. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7739. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7740. background-position: -16px 0; }
  7741. /* line 72, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7742. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  7743. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  7744. background-position: -48px 0; }
  7745. /* line 79, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7746. .x-tree-elbow-plus,
  7747. .x-tree-elbow-minus,
  7748. .x-tree-elbow-end-plus,
  7749. .x-tree-elbow-end-minus {
  7750. cursor: pointer; }
  7751. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7752. .x-tree-lines .x-tree-elbow {
  7753. background-image: url('../../resources/themes/images/gray/tree/elbow.gif'); }
  7754. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7755. .x-tree-lines .x-tree-elbow-end {
  7756. background-image: url('../../resources/themes/images/gray/tree/elbow-end.gif'); }
  7757. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7758. .x-tree-lines .x-tree-elbow-plus {
  7759. background-image: url('../../resources/themes/images/gray/tree/elbow-plus.gif'); }
  7760. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7761. .x-tree-lines .x-tree-elbow-end-plus {
  7762. background-image: url('../../resources/themes/images/gray/tree/elbow-end-plus.gif'); }
  7763. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7764. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  7765. background-image: url('../../resources/themes/images/gray/tree/elbow-minus.gif'); }
  7766. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7767. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7768. background-image: url('../../resources/themes/images/gray/tree/elbow-end-minus.gif'); }
  7769. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7770. .x-tree-lines .x-tree-elbow-line {
  7771. background-image: url('../../resources/themes/images/gray/tree/elbow-line.gif'); }
  7772. /* line 116, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7773. .x-tree-no-lines .x-tree-elbow-plus,
  7774. .x-tree-no-lines .x-tree-elbow-end-plus {
  7775. background-image: url('../../resources/themes/images/gray/tree/elbow-plus-nl.gif'); }
  7776. /* line 121, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7777. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  7778. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  7779. background-image: url('../../resources/themes/images/gray/tree/elbow-end-minus-nl.gif'); }
  7780. /* line 130, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7781. .x-tree-arrows .x-tree-elbow-plus,
  7782. .x-tree-arrows .x-tree-elbow-minus,
  7783. .x-tree-arrows .x-tree-elbow-end-plus,
  7784. .x-tree-arrows .x-tree-elbow-end-minus {
  7785. background-image: url('../../resources/themes/images/gray/tree/arrows.gif'); }
  7786. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7787. .x-tree-icon {
  7788. margin: 2px 3px 0 0; }
  7789. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7790. .x-grid-with-row-lines .x-tree-icon {
  7791. margin-top: 1px; }
  7792. /* line 148, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7793. .x-tree-elbow,
  7794. .x-tree-elbow-end,
  7795. .x-tree-elbow-plus,
  7796. .x-tree-elbow-end-plus,
  7797. .x-tree-elbow-empty,
  7798. .x-tree-elbow-line {
  7799. height: 20px;
  7800. width: 16px; }
  7801. /* line 159, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7802. .x-grid-with-row-lines .x-tree-elbow,
  7803. .x-grid-with-row-lines .x-tree-elbow-end,
  7804. .x-grid-with-row-lines .x-tree-elbow-plus,
  7805. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  7806. .x-grid-with-row-lines .x-tree-elbow-empty,
  7807. .x-grid-with-row-lines .x-tree-elbow-line {
  7808. height: 19px;
  7809. background-position: 0 -1px; }
  7810. /* line 165, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7811. .x-tree-icon-leaf {
  7812. width: 16px;
  7813. background-image: url('../../resources/themes/images/gray/tree/leaf.gif'); }
  7814. /* line 170, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7815. .x-tree-icon-parent {
  7816. width: 16px;
  7817. background-image: url('../../resources/themes/images/gray/tree/folder.gif'); }
  7818. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7819. .x-grid-tree-node-expanded .x-tree-icon-parent {
  7820. background-image: url('../../resources/themes/images/gray/tree/folder-open.gif'); }
  7821. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7822. .x-grid-rowbody {
  7823. padding: 0; }
  7824. /* line 183, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7825. .x-grid-cell-treecolumn .x-grid-cell-inner {
  7826. padding: 0;
  7827. line-height: 19px; }
  7828. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7829. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  7830. line-height: 17px; }
  7831. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7832. .x-tree-panel .x-grid-cell-inner {
  7833. cursor: pointer; }
  7834. /* line 194, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7835. .x-tree-panel .x-grid-cell-inner img {
  7836. display: inline-block;
  7837. vertical-align: top; }
  7838. /* line 207, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7839. .x-ie .x-tree-panel .x-tree-elbow,
  7840. .x-ie .x-tree-panel .x-tree-elbow-end,
  7841. .x-ie .x-tree-panel .x-tree-elbow-plus,
  7842. .x-ie .x-tree-panel .x-tree-elbow-end-plus,
  7843. .x-ie .x-tree-panel .x-tree-elbow-empty,
  7844. .x-ie .x-tree-panel .x-tree-elbow-line {
  7845. vertical-align: -6px; }
  7846. /* line 215, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7847. .x-grid-editor-on-text-node .x-form-text {
  7848. padding-left: 1px;
  7849. padding-right: 1px; }
  7850. /* line 222, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7851. .x-ie .x-grid-editor-on-text-node .x-form-text {
  7852. padding-left: 2px;
  7853. padding-right: 2px; }
  7854. /* line 228, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7855. .x-opera .x-grid-editor-on-text-node .x-form-text {
  7856. padding-left: 2px;
  7857. padding-right: 2px; }
  7858. /* line 234, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7859. .x-tree-checkbox {
  7860. margin: 4px 3px 0 0;
  7861. display: inline-block;
  7862. vertical-align: top;
  7863. width: 13px;
  7864. height: 13px;
  7865. background: no-repeat;
  7866. background-image: url('../../resources/themes/images/gray/form/checkbox.gif');
  7867. overflow: hidden;
  7868. padding: 0;
  7869. border: 0; }
  7870. /* line 247, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7871. .x-tree-checkbox::-moz-focus-inner {
  7872. padding: 0;
  7873. border: 0; }
  7874. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7875. .x-grid-with-row-lines .x-tree-checkbox {
  7876. margin-top: 3px; }
  7877. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7878. .x-tree-checkbox-checked {
  7879. background-position: 0 -13px; }
  7880. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7881. .x-tree-drop-ok-append .x-dd-drop-icon {
  7882. background-image: url('../../resources/themes/images/gray/tree/drop-append.gif'); }
  7883. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7884. .x-tree-drop-ok-above .x-dd-drop-icon {
  7885. background-image: url('../../resources/themes/images/gray/tree/drop-above.gif'); }
  7886. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7887. .x-tree-drop-ok-below .x-dd-drop-icon {
  7888. background-image: url('../../resources/themes/images/gray/tree/drop-below.gif'); }
  7889. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7890. .x-tree-drop-ok-between .x-dd-drop-icon {
  7891. background-image: url('../../resources/themes/images/gray/tree/drop-between.gif'); }
  7892. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7893. .x-grid-tree-loading .x-tree-icon {
  7894. background-image: url('../../resources/themes/images/gray/tree/loading.gif'); }
  7895. /* line 281, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7896. .x-tree-ddindicator {
  7897. height: 1px;
  7898. border-width: 1px 0px 0px;
  7899. border-style: dotted;
  7900. border-color: green; }
  7901. /* line 288, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7902. .x-grid-tree-loading span {
  7903. font-style: italic;
  7904. color: #444444; }
  7905. /* line 293, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7906. .x-tree-animator-wrap {
  7907. overflow: hidden; }
  7908. /* line 6, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7909. .x-surface {
  7910. display: -moz-inline-box;
  7911. -moz-box-orient: vertical;
  7912. display: inline-block;
  7913. vertical-align: middle;
  7914. *vertical-align: auto;
  7915. overflow: hidden; }
  7916. /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  7917. .x-surface {
  7918. *display: inline; }
  7919. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7920. .rvml {
  7921. behavior: url(#default#VML); }
  7922. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7923. .x-surface tspan {
  7924. user-select: none;
  7925. -o-user-select: none;
  7926. -ms-user-select: none;
  7927. -moz-user-select: -moz-none;
  7928. -webkit-user-select: none;
  7929. cursor: default; }
  7930. /* line 19, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7931. .x-vml-sprite {
  7932. position: absolute;
  7933. left: 0;
  7934. top: 0;
  7935. width: 1px;
  7936. height: 1px; }
  7937. /* line 27, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7938. .x-vml-group {
  7939. position: absolute;
  7940. left: 0;
  7941. top: 0;
  7942. width: 1000px;
  7943. height: 1000px; }
  7944. /* line 35, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7945. .x-vml-measure-span {
  7946. position: absolute;
  7947. left: -9999em;
  7948. top: -9999em;
  7949. padding: 0;
  7950. margin: 0;
  7951. display: inline; }
  7952. /* line 44, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7953. .x-vml-base {
  7954. position: relative;
  7955. top: 0;
  7956. left: 0;
  7957. overflow: hidden;
  7958. display: inline-block; }
  7959. /* line 52, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7960. .x-vml-base {
  7961. position: relative;
  7962. top: 0;
  7963. left: 0;
  7964. overflow: hidden;
  7965. display: inline-block; }
  7966. /* line 60, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7967. svg, vml {
  7968. overflow: hidden; }
  7969. /* line 6, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  7970. .x-viewport, .x-viewport body {
  7971. margin: 0;
  7972. padding: 0;
  7973. border: 0 none;
  7974. overflow: hidden;
  7975. height: 100%;
  7976. position: static; }
  7977. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7978. .x-dd-drag-proxy {
  7979. z-index: 1000000!important; }
  7980. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7981. .x-dd-drag-repair .x-dd-drag-ghost {
  7982. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7983. opacity: 0.6; }
  7984. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7985. .x-dd-drag-repair .x-dd-drop-icon {
  7986. display: none; }
  7987. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7988. .x-dd-drag-ghost {
  7989. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  7990. opacity: 0.85;
  7991. padding: 5px;
  7992. padding-left: 20px;
  7993. white-space: nowrap;
  7994. color: #000;
  7995. font: normal 11px tahoma, arial, verdana, sans-serif;
  7996. border: 1px solid;
  7997. border-color: #ddd #bbb #bbb #ddd;
  7998. background-color: #fff; }
  7999. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  8000. .x-dd-drop-icon {
  8001. position: absolute;
  8002. top: 3px;
  8003. left: 3px;
  8004. display: block;
  8005. width: 16px;
  8006. height: 16px;
  8007. background-color: transparent;
  8008. background-position: center;
  8009. background-repeat: no-repeat;
  8010. z-index: 1; }
  8011. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  8012. .x-view-selector {
  8013. position: absolute;
  8014. left: 0;
  8015. top: 0;
  8016. width: 0;
  8017. background-color: #c3daf9;
  8018. border: 1px dotted #3399bb;
  8019. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  8020. opacity: 0.5;
  8021. zoom: 1; }
  8022. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  8023. .x-dd-drop-nodrop .x-dd-drop-icon {
  8024. background-image: url('../../resources/themes/images/gray/dd/drop-no.gif'); }
  8025. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  8026. .x-dd-drop-ok .x-dd-drop-icon {
  8027. background-image: url('../../resources/themes/images/gray/dd/drop-yes.gif'); }
  8028. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  8029. .x-dd-drop-ok-add .x-dd-drop-icon {
  8030. background-image: url('../../resources/themes/images/gray/dd/drop-add.gif'); }
  8031. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8032. .x-resizable-handle {
  8033. position: absolute;
  8034. z-index: 100;
  8035. font-size: 1px;
  8036. line-height: 6px;
  8037. overflow: hidden;
  8038. zoom: 1;
  8039. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  8040. opacity: 0;
  8041. background-color: #fff; }
  8042. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8043. .x-collapsed .x-resizable-handle {
  8044. display: none; }
  8045. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8046. .x-resizable-handle-east {
  8047. width: 6px;
  8048. height: 100%;
  8049. right: 0;
  8050. top: 0; }
  8051. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8052. .x-resizable-over .x-resizable-handle-east {
  8053. cursor: e-resize; }
  8054. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8055. .x-resizable-handle-south {
  8056. width: 100%;
  8057. height: 6px;
  8058. left: 0;
  8059. bottom: 0; }
  8060. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8061. .x-resizable-over .x-resizable-handle-south {
  8062. cursor: s-resize; }
  8063. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8064. .x-resizable-handle-west {
  8065. width: 6px;
  8066. height: 100%;
  8067. left: 0;
  8068. top: 0; }
  8069. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8070. .x-resizable-over .x-resizable-handle-west {
  8071. cursor: w-resize; }
  8072. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8073. .x-resizable-handle-north {
  8074. width: 100%;
  8075. height: 6px;
  8076. left: 0;
  8077. top: 0; }
  8078. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8079. .x-resizable-over .x-resizable-handle-north {
  8080. cursor: n-resize; }
  8081. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8082. .x-resizable-handle-southeast {
  8083. width: 6px;
  8084. height: 6px;
  8085. right: 0;
  8086. bottom: 0;
  8087. z-index: 101; }
  8088. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8089. .x-resizable-over .x-resizable-handle-southeast {
  8090. cursor: se-resize; }
  8091. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8092. .x-resizable-handle-northwest {
  8093. width: 6px;
  8094. height: 6px;
  8095. left: 0;
  8096. top: 0;
  8097. z-index: 101; }
  8098. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8099. .x-resizable-over .x-resizable-handle-northwest {
  8100. cursor: nw-resize; }
  8101. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8102. .x-resizable-handle-northeast {
  8103. width: 6px;
  8104. height: 6px;
  8105. right: 0;
  8106. top: 0;
  8107. z-index: 101; }
  8108. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8109. .x-resizable-over .x-resizable-handle-northeast {
  8110. cursor: ne-resize; }
  8111. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8112. .x-resizable-handle-southwest {
  8113. width: 6px;
  8114. height: 6px;
  8115. left: 0;
  8116. bottom: 0;
  8117. z-index: 101; }
  8118. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8119. .x-resizable-over .x-resizable-handle-southwest {
  8120. cursor: sw-resize; }
  8121. /*IE rounding error*/
  8122. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8123. .x-ie .x-resizable-handle-east {
  8124. margin-right: -1px;
  8125. /*IE rounding error*/ }
  8126. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8127. .x-ie .x-resizable-handle-south {
  8128. margin-bottom: -1px; }
  8129. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8130. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  8131. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  8132. opacity: 1; }
  8133. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8134. .x-window .x-window-handle {
  8135. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  8136. opacity: 0; }
  8137. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8138. .x-window-collapsed .x-window-handle {
  8139. display: none; }
  8140. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8141. .x-resizable-proxy {
  8142. border: 1px dashed #3b5a82;
  8143. position: absolute;
  8144. left: 0;
  8145. top: 0;
  8146. overflow: hidden;
  8147. z-index: 50000; }
  8148. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8149. .x-resizable-overlay {
  8150. position: absolute;
  8151. left: 0;
  8152. top: 0;
  8153. width: 100%;
  8154. height: 100%;
  8155. display: none;
  8156. z-index: 200000;
  8157. background-color: #fff;
  8158. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  8159. opacity: 0; }
  8160. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8161. .x-resizable-over .x-resizable-handle-east,
  8162. .x-resizable-over .x-resizable-handle-west,
  8163. .x-resizable-pinned .x-resizable-handle-east,
  8164. .x-resizable-pinned .x-resizable-handle-west {
  8165. background-position: left;
  8166. background-image: url('../../resources/themes/images/gray/sizer/e-handle.gif'); }
  8167. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8168. .x-resizable-over .x-resizable-handle-south,
  8169. .x-resizable-over .x-resizable-handle-north,
  8170. .x-resizable-pinned .x-resizable-handle-south,
  8171. .x-resizable-pinned .x-resizable-handle-north {
  8172. background-position: top;
  8173. background-image: url('../../resources/themes/images/gray/sizer/s-handle.gif'); }
  8174. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8175. .x-resizable-over .x-resizable-handle-southeast,
  8176. .x-resizable-pinned .x-resizable-handle-southeast {
  8177. background-position: top left;
  8178. background-image: url('../../resources/themes/images/gray/sizer/se-handle.gif'); }
  8179. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8180. .x-resizable-over .x-resizable-handle-northwest,
  8181. .x-resizable-pinned .x-resizable-handle-northwest {
  8182. background-position: bottom right;
  8183. background-image: url('../../resources/themes/images/gray/sizer/nw-handle.gif'); }
  8184. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8185. .x-resizable-over .x-resizable-handle-northeast,
  8186. .x-resizable-pinned .x-resizable-handle-northeast {
  8187. background-position: bottom left;
  8188. background-image: url('../../resources/themes/images/gray/sizer/ne-handle.gif'); }
  8189. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  8190. .x-resizable-over .x-resizable-handle-southwest,
  8191. .x-resizable-pinned .x-resizable-handle-southwest {
  8192. background-position: top right;
  8193. background-image: url('../../resources/themes/images/gray/sizer/sw-handle.gif'); }
  8194. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8195. .x-splitter .x-collapse-el {
  8196. position: absolute;
  8197. cursor: pointer;
  8198. background-color: transparent;
  8199. background-repeat: no-repeat !important; }
  8200. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8201. .x-layout-split-left,
  8202. .x-layout-split-right {
  8203. top: 50%;
  8204. margin-top: -17px;
  8205. width: 5px;
  8206. height: 35px; }
  8207. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8208. .x-layout-split-top,
  8209. .x-layout-split-bottom {
  8210. left: 50%;
  8211. width: 35px;
  8212. height: 5px;
  8213. margin-left: -17px; }
  8214. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8215. .x-layout-split-left {
  8216. background: no-repeat top right;
  8217. background-image: url('../../resources/themes/images/gray/util/splitter/mini-left.gif'); }
  8218. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8219. .x-layout-split-right {
  8220. background: no-repeat top left;
  8221. background-image: url('../../resources/themes/images/gray/util/splitter/mini-right.gif'); }
  8222. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8223. .x-layout-split-top {
  8224. background: no-repeat top left;
  8225. background-image: url('../../resources/themes/images/gray/util/splitter/mini-top.gif'); }
  8226. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8227. .x-layout-split-bottom {
  8228. background: no-repeat top left;
  8229. background-image: url('../../resources/themes/images/gray/util/splitter/mini-bottom.gif'); }
  8230. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8231. .x-splitter-collapsed .x-layout-split-left {
  8232. background: no-repeat top left;
  8233. background-image: url('../../resources/themes/images/gray/util/splitter/mini-right.gif'); }
  8234. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8235. .x-splitter-collapsed .x-layout-split-right {
  8236. background: no-repeat top right;
  8237. background-image: url('../../resources/themes/images/gray/util/splitter/mini-left.gif'); }
  8238. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8239. .x-splitter-collapsed .x-layout-split-top {
  8240. background: no-repeat top left;
  8241. background-image: url('../../resources/themes/images/gray/util/splitter/mini-bottom.gif'); }
  8242. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8243. .x-splitter-collapsed .x-layout-split-bottom {
  8244. background: no-repeat top left;
  8245. background-image: url('../../resources/themes/images/gray/util/splitter/mini-top.gif'); }
  8246. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8247. .x-splitter-horizontal {
  8248. cursor: e-resize;
  8249. cursor: row-resize;
  8250. font-size: 1px; }
  8251. /* line 81, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8252. .x-splitter-vertical {
  8253. cursor: e-resize;
  8254. cursor: col-resize;
  8255. font-size: 1px; }
  8256. /* line 86, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8257. .x-splitter-collapsed, .x-splitter-horizontal-noresize, .x-splitter-vertical-noresize {
  8258. cursor: default; }
  8259. /* line 90, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8260. .x-splitter-active {
  8261. z-index: 4;
  8262. font-size: 1px;
  8263. background-color: #b4b4b4;
  8264. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  8265. opacity: 0.8; }
  8266. /* line 97, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8267. .x-splitter-active .x-collapse-el {
  8268. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  8269. opacity: 0.3; }
  8270. /* line 102, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  8271. .x-proxy-el {
  8272. position: absolute;
  8273. background: #b4b4b4;
  8274. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  8275. opacity: 0.8; }
  8276. /*
  8277. * Dock Layouts
  8278. * @todo move this somewhere else?
  8279. */
  8280. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8281. .x-docked {
  8282. position: absolute !important;
  8283. z-index: 1; }
  8284. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8285. .x-docked-top {
  8286. border-bottom-width: 0 !important; }
  8287. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8288. .x-docked-bottom {
  8289. border-top-width: 0 !important; }
  8290. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8291. .x-docked-left {
  8292. border-right-width: 0 !important; }
  8293. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8294. .x-docked-right {
  8295. border-left-width: 0 !important; }
  8296. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8297. .x-docked-noborder-top {
  8298. border-top-width: 0 !important; }
  8299. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8300. .x-docked-noborder-right {
  8301. border-right-width: 0 !important; }
  8302. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8303. .x-docked-noborder-bottom {
  8304. border-bottom-width: 0 !important; }
  8305. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8306. .x-docked-noborder-left {
  8307. border-left-width: 0 !important; }
  8308. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8309. .x-box-inner {
  8310. overflow: hidden;
  8311. zoom: 1;
  8312. position: relative;
  8313. left: 0;
  8314. top: 0; }
  8315. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8316. .x-box-item {
  8317. position: absolute !important;
  8318. left: 0;
  8319. top: 0; }
  8320. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8321. .x-rtl .x-box-item {
  8322. right: 0;
  8323. left: auto; }
  8324. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8325. .x-box-layout-ct,
  8326. .x-border-layout-ct {
  8327. overflow: hidden;
  8328. zoom: 1; }
  8329. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8330. .x-border-layout-ct {
  8331. background-color: #e0e0e0;
  8332. position: relative; }
  8333. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8334. .x-overflow-hidden {
  8335. overflow: hidden !important; }
  8336. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8337. .x-inline-children > * {
  8338. display: inline-block !important; }
  8339. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8340. .x-abs-layout-ct {
  8341. position: relative; }
  8342. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8343. .x-abs-layout-item {
  8344. position: absolute !important; }
  8345. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8346. .x-fit-item {
  8347. position: relative; }
  8348. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8349. .x-border-region-slide-in {
  8350. z-index: 5; }
  8351. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8352. .x-region-collapsed-placeholder {
  8353. z-index: 4; }
  8354. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8355. .x-accordion-hd .x-panel-header-text {
  8356. color: black;
  8357. font-weight: normal; }
  8358. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8359. .x-accordion-hd {
  8360. background: #e5e5e5 !important;
  8361. -moz-box-shadow: inset 0 0 0 0 #e5e5e5;
  8362. -webkit-box-shadow: inset 0 0 0 0 #e5e5e5;
  8363. -o-box-shadow: inset 0 0 0 0 #e5e5e5;
  8364. box-shadow: inset 0 0 0 0 #e5e5e5; }
  8365. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8366. .x-accordion-hd .x-tool-collapse-top,
  8367. .x-accordion-hd .x-tool-collapse-right,
  8368. .x-accordion-hd .x-tool-collapse-bottom,
  8369. .x-accordion-hd .x-tool-collapse-left {
  8370. background-position: 0 -255px; }
  8371. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8372. .x-accordion-hd .x-tool-expand-top,
  8373. .x-accordion-hd .x-tool-expand-right,
  8374. .x-accordion-hd .x-tool-expand-bottom,
  8375. .x-accordion-hd .x-tool-expand-left {
  8376. background-position: 0 -240px; }
  8377. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8378. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  8379. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  8380. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  8381. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  8382. background-position: -15px -255px; }
  8383. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8384. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  8385. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  8386. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  8387. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  8388. background-position: -15px -240px; }
  8389. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8390. .x-accordion-hd {
  8391. border-width: 1px 0 1px 0 !important;
  8392. padding: 4px 5px 5px 5px;
  8393. border-top-color: #ececec !important; }
  8394. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8395. .x-accordion-body {
  8396. border-width: 0 !important; }
  8397. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8398. .x-accordion-hd-sibling-expanded {
  8399. border-top-color: #d0d0d0 !important;
  8400. -moz-box-shadow: inset 0 1px 0 0 #ececec;
  8401. -webkit-box-shadow: inset 0 1px 0 0 #ececec;
  8402. -o-box-shadow: inset 0 1px 0 0 #ececec;
  8403. box-shadow: inset 0 1px 0 0 #ececec; }
  8404. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8405. .x-accordion-hd-last-collapsed {
  8406. border-bottom-color: #e5e5e5 !important; }
  8407. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8408. .x-frame-tl,
  8409. .x-frame-tr,
  8410. .x-frame-tc,
  8411. .x-frame-bl,
  8412. .x-frame-br,
  8413. .x-frame-bc {
  8414. overflow: hidden;
  8415. background-repeat: no-repeat; }
  8416. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8417. .x-frame-tc,
  8418. .x-frame-bc {
  8419. background-repeat: repeat-x; }
  8420. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8421. .x-frame-mc {
  8422. position: relative;
  8423. background-repeat: repeat-x;
  8424. overflow: hidden; }
  8425. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8426. .x-box-scroller-left {
  8427. float: left;
  8428. height: 100%;
  8429. z-index: 5; }
  8430. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8431. .x-box-scroller-left .x-toolbar-scroll-left,
  8432. .x-box-scroller-left .x-tabbar-scroll-left {
  8433. width: 18px;
  8434. position: relative;
  8435. cursor: pointer;
  8436. height: 20px;
  8437. background: transparent no-repeat -18px 0;
  8438. background-image: url('../../resources/themes/images/gray/tab-bar/scroll-left.gif'); }
  8439. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8440. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  8441. background-position: 0 0; }
  8442. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8443. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  8444. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  8445. background-position: -18px 0;
  8446. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  8447. opacity: 0.5;
  8448. cursor: default; }
  8449. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8450. .x-box-scroller-left .x-toolbar-scroll-left {
  8451. background-image: url('../../resources/themes/images/gray/toolbar/scroll-left.gif');
  8452. background-position: -14px 0; }
  8453. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8454. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  8455. background-position: 0 0; }
  8456. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8457. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  8458. background-position: -14px 0; }
  8459. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8460. .x-box-scroller-left .x-toolbar-scroll-left {
  8461. width: 14px;
  8462. height: 22px;
  8463. border-bottom: 1px solid #8db2e3; }
  8464. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8465. .x-horizontal-box-overflow-body {
  8466. float: left; }
  8467. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8468. .x-box-scroller-right {
  8469. float: right;
  8470. height: 100%;
  8471. z-index: 5; }
  8472. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8473. .x-box-scroller-right .x-toolbar-scroll-right,
  8474. .x-box-scroller-right .x-tabbar-scroll-right {
  8475. width: 18px;
  8476. position: relative;
  8477. cursor: pointer;
  8478. height: 20px;
  8479. background: transparent no-repeat 0 0;
  8480. background-image: url('../../resources/themes/images/gray/tab-bar/scroll-right.gif'); }
  8481. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8482. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  8483. background-position: -18px 0; }
  8484. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8485. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  8486. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  8487. background-position: 0 0;
  8488. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  8489. opacity: 0.5;
  8490. cursor: default; }
  8491. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8492. .x-box-scroller-right .x-toolbar-scroll-right {
  8493. background-image: url('../../resources/themes/images/gray/toolbar/scroll-right.gif'); }
  8494. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8495. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  8496. background-position: -14px 0; }
  8497. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8498. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  8499. background-position: 0 0; }
  8500. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8501. .x-box-scroller-right .x-toolbar-scroll-right {
  8502. width: 14px;
  8503. height: 22px;
  8504. border-bottom: 1px solid #8db2e3; }
  8505. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8506. .x-box-scroller-top .x-box-scroller {
  8507. line-height: 0;
  8508. font-size: 0; }
  8509. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8510. .x-box-scroller-top .x-menu-scroll-top {
  8511. background: transparent no-repeat center center;
  8512. background-image: url('../../resources/themes/images/gray/layout/mini-top.gif');
  8513. height: 8px;
  8514. cursor: pointer; }
  8515. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8516. .x-box-scroller-bottom .x-box-scroller {
  8517. line-height: 0;
  8518. font-size: 0; }
  8519. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8520. .x-box-scroller-bottom .x-menu-scroll-bottom {
  8521. background: transparent no-repeat center center;
  8522. background-image: url('../../resources/themes/images/gray/layout/mini-bottom.gif');
  8523. height: 8px;
  8524. cursor: pointer; }
  8525. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8526. .x-box-menu-right {
  8527. float: right;
  8528. padding-right: 2px; }
  8529. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8530. .x-column {
  8531. float: left; }
  8532. /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8533. .x-ie6 .x-column {
  8534. display: inline;
  8535. /*prevent IE6 double-margin bug*/ }
  8536. /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  8537. .x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  8538. position: relative; }
  8539. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8540. .x-tool {
  8541. height: 15px; }
  8542. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8543. .x-tool img {
  8544. overflow: hidden;
  8545. width: 15px;
  8546. height: 15px;
  8547. cursor: pointer;
  8548. background-color: transparent;
  8549. background-repeat: no-repeat;
  8550. background-image: url('../../resources/themes/images/gray/tools/tool-sprites.gif');
  8551. margin: 0; }
  8552. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8553. .x-panel-header-horizontal .x-tool,
  8554. .x-window-header-horizontal .x-tool {
  8555. margin-left: 2px; }
  8556. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8557. .x-panel-header-vertical .x-tool,
  8558. .x-window-header-vertical .x-tool {
  8559. margin-top: 2px; }
  8560. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8561. .x-panel-header-vertical .x-tool-top,
  8562. .x-window-header-vertical .x-tool-top {
  8563. margin: 0 0 4px; }
  8564. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8565. .x-tool-placeholder {
  8566. visibility: hidden; }
  8567. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8568. .x-tool-toggle {
  8569. background-position: 0 -60px; }
  8570. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8571. .x-tool-over .x-tool-toggle {
  8572. background-position: -15px -60px; }
  8573. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8574. .x-panel-collapsed .x-tool-toggle,
  8575. .x-fieldset-collapsed .x-tool-toggle {
  8576. background-position: 0 -75px; }
  8577. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8578. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  8579. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  8580. background-position: -15px -75px; }
  8581. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8582. .x-tool-close {
  8583. background-position: 0 0; }
  8584. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8585. .x-tool-minimize {
  8586. background-position: 0 -15px; }
  8587. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8588. .x-tool-maximize {
  8589. background-position: 0 -30px; }
  8590. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8591. .x-tool-restore {
  8592. background-position: 0 -45px; }
  8593. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8594. .x-tool-gear {
  8595. background-position: 0 -90px; }
  8596. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8597. .x-tool-prev {
  8598. background-position: 0 -105px; }
  8599. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8600. .x-tool-next {
  8601. background-position: 0 -120px; }
  8602. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8603. .x-tool-pin {
  8604. background-position: 0 -135px; }
  8605. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8606. .x-tool-unpin {
  8607. background-position: 0 -150px; }
  8608. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8609. .x-tool-right {
  8610. background-position: 0 -165px; }
  8611. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8612. .x-tool-left {
  8613. background-position: 0 -180px; }
  8614. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8615. .x-tool-help {
  8616. background-position: 0 -300px; }
  8617. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8618. .x-tool-save {
  8619. background-position: 0 -285px; }
  8620. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8621. .x-tool-search {
  8622. background-position: 0 -270px; }
  8623. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8624. .x-tool-minus {
  8625. background-position: 0 -255px; }
  8626. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8627. .x-tool-plus {
  8628. background-position: 0 -240px; }
  8629. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8630. .x-tool-refresh {
  8631. background-position: 0 -225px; }
  8632. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8633. .x-tool-up {
  8634. background-position: 0 -210px; }
  8635. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8636. .x-tool-down {
  8637. background-position: 0 -195px; }
  8638. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8639. .x-tool-collapse {
  8640. background-position: 0 -345px; }
  8641. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8642. .x-tool-expand {
  8643. background-position: 0 -330px; }
  8644. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8645. .x-tool-print {
  8646. background-position: 0 -315px; }
  8647. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8648. .x-tool-expand-bottom,
  8649. .x-tool-collapse-bottom {
  8650. background-position: 0 -195px; }
  8651. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8652. .x-tool-expand-top,
  8653. .x-tool-collapse-top {
  8654. background-position: 0 -210px; }
  8655. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8656. .x-tool-expand-left,
  8657. .x-tool-collapse-left {
  8658. background-position: 0 -180px; }
  8659. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8660. .x-tool-expand-right,
  8661. .x-tool-collapse-right {
  8662. background-position: 0 -165px; }
  8663. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8664. .x-tool-over .x-tool-close {
  8665. background-position: -15px 0; }
  8666. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8667. .x-tool-over .x-tool-minimize {
  8668. background-position: -15px -15px; }
  8669. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8670. .x-tool-over .x-tool-maximize {
  8671. background-position: -15px -30px; }
  8672. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8673. .x-tool-over .x-tool-restore {
  8674. background-position: -15px -45px; }
  8675. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8676. .x-tool-over .x-tool-gear {
  8677. background-position: -15px -90px; }
  8678. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8679. .x-tool-over .x-tool-prev {
  8680. background-position: -15px -105px; }
  8681. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8682. .x-tool-over .x-tool-next {
  8683. background-position: -15px -120px; }
  8684. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8685. .x-tool-over .x-tool-pin {
  8686. background-position: -15px -135px; }
  8687. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8688. .x-tool-over .x-tool-unpin {
  8689. background-position: -15px -150px; }
  8690. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8691. .x-tool-over .x-tool-right {
  8692. background-position: -15px -165px; }
  8693. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8694. .x-tool-over .x-tool-left {
  8695. background-position: -15px -180px; }
  8696. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8697. .x-tool-over .x-tool-down {
  8698. background-position: -15px -195px; }
  8699. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8700. .x-tool-over .x-tool-up {
  8701. background-position: -15px -210px; }
  8702. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8703. .x-tool-over .x-tool-refresh {
  8704. background-position: -15px -225px; }
  8705. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8706. .x-tool-over .x-tool-plus {
  8707. background-position: -15px -240px; }
  8708. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8709. .x-tool-over .x-tool-minus {
  8710. background-position: -15px -255px; }
  8711. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8712. .x-tool-over .x-tool-search {
  8713. background-position: -15px -270px; }
  8714. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8715. .x-tool-over .x-tool-save {
  8716. background-position: -15px -285px; }
  8717. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8718. .x-tool-over .x-tool-help {
  8719. background-position: -15px -300px; }
  8720. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8721. .x-tool-over .x-tool-print {
  8722. background-position: -15px -315px; }
  8723. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8724. .x-tool-over .x-tool-expand {
  8725. background-position: -15px -330px; }
  8726. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8727. .x-tool-over .x-tool-collapse {
  8728. background-position: -15px -345px; }
  8729. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8730. .x-tool-over .x-tool-expand-bottom,
  8731. .x-tool-over .x-tool-collapse-bottom {
  8732. background-position: -15px -195px; }
  8733. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8734. .x-tool-over .x-tool-expand-top,
  8735. .x-tool-over .x-tool-collapse-top {
  8736. background-position: -15px -210px; }
  8737. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8738. .x-tool-over .x-tool-expand-left,
  8739. .x-tool-over .x-tool-collapse-left {
  8740. background-position: -15px -180px; }
  8741. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  8742. .x-tool-over .x-tool-expand-right,
  8743. .x-tool-over .x-tool-collapse-right {
  8744. background-position: -15px -165px; }
  8745. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8746. .x-horizontal-scroller-present .x-grid-body {
  8747. border-bottom-width: 0px; }
  8748. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8749. .x-vertical-scroller-present .x-grid-body {
  8750. border-right-width: 0px; }
  8751. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8752. .x-scroller {
  8753. overflow: hidden; }
  8754. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8755. .x-scroller-vertical {
  8756. border: 1px solid #d0d0d0;
  8757. border-top-color: #c5c5c5; }
  8758. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8759. .x-scroller-horizontal {
  8760. border: 1px solid #d0d0d0; }
  8761. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8762. .x-vertical-scroller-present .x-scroller-horizontal {
  8763. border-right-width: 0px; }
  8764. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8765. .x-scroller-ct {
  8766. overflow: hidden;
  8767. position: absolute;
  8768. margin: 0;
  8769. padding: 0;
  8770. border: none;
  8771. left: 0px;
  8772. top: 0px;
  8773. /*
  8774. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  8775. perpendicular dimension and breaks the scroll as well as offsets it by the left
  8776. offset that we use to try and keep some size on this element. This works on all
  8777. browsers (including IE9).
  8778. */
  8779. box-sizing: content-box !important;
  8780. -ms-box-sizing: content-box !important;
  8781. -moz-box-sizing: content-box !important;
  8782. -webkit-box-sizing: content-box !important; }
  8783. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8784. .x-scroller-vertical .x-scroller-ct {
  8785. overflow-y: scroll; }
  8786. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  8787. .x-scroller-horizontal .x-scroller-ct {
  8788. overflow-x: scroll; }
  8789. /* line 8, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8790. .x-html {
  8791. /* Begin bidirectionality settings (do not change) */ }
  8792. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8793. .x-html html, .x-html address, .x-html blockquote, .x-html body, .x-html dd, .x-html div, .x-html dl, .x-html dt, .x-html fieldset, .x-html form, .x-html frame, .x-html frameset, .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html noframes, .x-html ol, .x-html p, .x-html ul, .x-html center, .x-html dir, .x-html hr, .x-html menu, .x-html pre {
  8794. display: block; }
  8795. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8796. .x-html li {
  8797. display: list-item;
  8798. list-style: disc; }
  8799. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8800. .x-html head {
  8801. display: none; }
  8802. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8803. .x-html table {
  8804. display: table; }
  8805. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8806. .x-html tr {
  8807. display: table-row; }
  8808. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8809. .x-html thead {
  8810. display: table-header-group; }
  8811. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8812. .x-html tbody {
  8813. display: table-row-group; }
  8814. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8815. .x-html tfoot {
  8816. display: table-footer-group; }
  8817. /* line 42, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8818. .x-html col {
  8819. display: table-column; }
  8820. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8821. .x-html colgroup {
  8822. display: table-column-group; }
  8823. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8824. .x-html td, .x-html th {
  8825. display: table-cell; }
  8826. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8827. .x-html caption {
  8828. display: table-caption; }
  8829. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8830. .x-html th {
  8831. font-weight: bolder;
  8832. text-align: center; }
  8833. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8834. .x-html caption {
  8835. text-align: center; }
  8836. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8837. .x-html body {
  8838. margin: 8px; }
  8839. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8840. .x-html h1 {
  8841. font-size: 2em;
  8842. margin: .67em 0; }
  8843. /* line 51, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8844. .x-html h2 {
  8845. font-size: 1.5em;
  8846. margin: .75em 0; }
  8847. /* line 52, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8848. .x-html h3 {
  8849. font-size: 1.17em;
  8850. margin: .83em 0; }
  8851. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8852. .x-html h4, .x-html p, .x-html blockquote, .x-html ul, .x-html fieldset, .x-html form, .x-html ol, .x-html dl, .x-html dir, .x-html menu {
  8853. margin: 1.12em 0; }
  8854. /* line 63, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8855. .x-html h5 {
  8856. font-size: .83em;
  8857. margin: 1.5em 0; }
  8858. /* line 64, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8859. .x-html h6 {
  8860. font-size: .75em;
  8861. margin: 1.67em 0; }
  8862. /* line 72, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8863. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  8864. font-weight: bolder; }
  8865. /* line 73, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8866. .x-html blockquote {
  8867. margin-left: 40px;
  8868. margin-right: 40px; }
  8869. /* line 78, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8870. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  8871. font-style: italic; }
  8872. /* line 83, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8873. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  8874. font-family: monospace; }
  8875. /* line 84, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8876. .x-html pre {
  8877. white-space: pre; }
  8878. /* line 88, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8879. .x-html button, .x-html textarea, .x-html input, .x-html select {
  8880. display: inline-block; }
  8881. /* line 89, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8882. .x-html big {
  8883. font-size: 1.17em; }
  8884. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8885. .x-html small, .x-html sub, .x-html sup {
  8886. font-size: .83em; }
  8887. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8888. .x-html sub {
  8889. vertical-align: sub; }
  8890. /* line 94, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8891. .x-html sup {
  8892. vertical-align: super; }
  8893. /* line 95, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8894. .x-html table {
  8895. border-spacing: 2px; }
  8896. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8897. .x-html thead, .x-html tbody, .x-html tfoot {
  8898. vertical-align: middle; }
  8899. /* line 100, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8900. .x-html td, .x-html th {
  8901. vertical-align: inherit; }
  8902. /* line 103, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8903. .x-html s, .x-html strike, .x-html del {
  8904. text-decoration: line-through; }
  8905. /* line 104, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8906. .x-html hr {
  8907. border: 1px inset; }
  8908. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8909. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  8910. margin-left: 40px; }
  8911. /* line 110, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8912. .x-html ul, .x-html menu, .x-html dir {
  8913. list-style-type: disc; }
  8914. /* line 111, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8915. .x-html ol {
  8916. list-style-type: decimal; }
  8917. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8918. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  8919. margin-top: 0;
  8920. margin-bottom: 0; }
  8921. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8922. .x-html u, .x-html ins {
  8923. text-decoration: underline; }
  8924. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8925. .x-html br:before {
  8926. content: "\A"; }
  8927. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8928. .x-html :before, .x-html :after {
  8929. white-space: pre-line; }
  8930. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8931. .x-html center {
  8932. text-align: center; }
  8933. /* line 121, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8934. .x-html :link, .x-html :visited {
  8935. text-decoration: underline; }
  8936. /* line 122, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8937. .x-html :focus {
  8938. outline: invert dotted thin; }
  8939. /* line 125, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8940. .x-html BDO[DIR="ltr"] {
  8941. direction: ltr;
  8942. unicode-bidi: bidi-override; }
  8943. /* line 126, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8944. .x-html BDO[DIR="rtl"] {
  8945. direction: rtl;
  8946. unicode-bidi: bidi-override; }