ext-ie-debug.css 352 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055
  1. /*
  2. This file is part of Ext JS 4.1
  3. Copyright (c) 2011-2012 Sencha Inc
  4. Contact: http://www.sencha.com/contact
  5. GNU General Public License Usage
  6. This file may be used under the terms of the GNU General Public License version 3.0 as
  7. published by the Free Software Foundation and appearing in the file LICENSE included in the
  8. packaging of this file.
  9. Please review the following information to ensure the GNU General Public License version 3.0
  10. requirements will be met: http://www.gnu.org/copyleft/gpl.html.
  11. If you are unsure which license is appropriate for your use, please contact the sales department
  12. at http://www.sencha.com/contact.
  13. Build date: 2012-04-20 14:10:47 (19f55ab932145a3443b228045fa80950dfeaf9cc)
  14. */
  15. /**
  16. * @var {string} $prefix
  17. * The prefix to be applied to all CSS selectors. If this is changed, it must also be changed in your
  18. * JavaScript application.
  19. */
  20. /**
  21. * @var {string} $theme-name
  22. * The name of the theme. This must match the the output directory of the images.
  23. * (defaults to 'default')
  24. */
  25. /**
  26. * @var {boolean/string} $relative-image-path-for-uis
  27. * True to use a relative image path for all new UIs. If true, the path will be "../images/".
  28. * It can also be a string of the path value.
  29. * It defaults to false, which means it will look for the images in the ExtJS SDK folder.
  30. */
  31. /**
  32. * @var {string} $font-family
  33. * The default font-family to be used throughout the theme.
  34. */
  35. /**
  36. * @var {string} $base-gradient
  37. * The base gradient to be used throughout the theme.
  38. */
  39. /**
  40. * @var {color} $base-color
  41. * The base color to be used throughout the theme.
  42. */
  43. /**
  44. * @var {boolean} $include-not-found-images
  45. * True to include files which are not found when compiling your SASS
  46. */
  47. /**
  48. * @var {boolean} $include-ie
  49. * True to include Internet Explorer specific rules
  50. */
  51. /**
  52. * @var {boolean} $include-ff
  53. * True to include Firefox specific rules
  54. */
  55. /**
  56. * @var {boolean} $include-chrome
  57. * True to include Chrome specific rules
  58. */
  59. /**
  60. * @var {boolean} $include-safari
  61. * True to include Safari specific rules
  62. */
  63. /**
  64. * @var {boolean} $include-opera
  65. * True to include Opera specific rules
  66. */
  67. /**
  68. * @var {boolean} $include-webkit
  69. * True to include Webkit specific rules
  70. */
  71. /**
  72. * @var {boolean} $compile-all
  73. * True to copile all CSS, even if above include rules are false
  74. */
  75. /**
  76. * @var {boolean} $scope-reset-css
  77. * True to scope the reset CSS within the $prefix variable.
  78. */
  79. /**
  80. * @var {color} $css-shadow-background-color
  81. * The base color for CSS shadows
  82. */
  83. /**
  84. * @var {color} $include-shadow-images
  85. * True to include all shadow images.
  86. */
  87. /**
  88. * Toolbar buttons
  89. */
  90. /**
  91. * @class Ext.form.*
  92. */
  93. /**
  94. * @class Ext.form.field.Base
  95. */
  96. /**
  97. * @class Ext.form.field.TextArea
  98. */
  99. /**
  100. * @class Ext.form.Label
  101. */
  102. /**
  103. * @class Ext.form.field.Checkbox
  104. */
  105. /**
  106. * @class Ext.form.field.Radio
  107. */
  108. /**
  109. * Error messages
  110. */
  111. /**
  112. * Trigger Field
  113. */
  114. /**
  115. * Fieldsets
  116. */
  117. /**
  118. * Sliders
  119. */
  120. /**
  121. * @mixin background-gradient
  122. *
  123. * @param {Color} $background-color The background color of the gradient
  124. * @param {String/List} $type The type of gradient to be used. Can either be a String which is a predefined gradient, or it can
  125. * can be a list of color_stops. If none is set, it will still set the `background-color` to the $background-color.
  126. * @param {String} $direction The direction of the gradient. Can either me `top` or `left`. (defaults to `top`)
  127. */
  128. /**
  129. * Method which inserts a full background-image property for a theme image.
  130. * It checks if the file exists and if it doesn't, it'll throw an error.
  131. * By default it will not include the background-image property if it is not found,
  132. * but this can be changed by changing the default value of $include-missing-images to
  133. * be true.
  134. */
  135. /* line 77, ../themes/stylesheets/ext4/default/core/_reset.scss */
  136. html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
  137. h4, h5, h6, pre, code, form, fieldset, legend,
  138. input, textarea, p, blockquote, th, td {
  139. margin: 0;
  140. padding: 0; }
  141. /* line 82, ../themes/stylesheets/ext4/default/core/_reset.scss */
  142. table {
  143. border-collapse: collapse;
  144. border-spacing: 0; }
  145. /* line 87, ../themes/stylesheets/ext4/default/core/_reset.scss */
  146. fieldset, img {
  147. border: 0; }
  148. /* line 92, ../themes/stylesheets/ext4/default/core/_reset.scss */
  149. address, caption, cite, code,
  150. dfn, em, strong, th, var {
  151. font-style: normal;
  152. font-weight: normal; }
  153. /* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
  154. li {
  155. list-style: none; }
  156. /* line 101, ../themes/stylesheets/ext4/default/core/_reset.scss */
  157. caption, th {
  158. text-align: left; }
  159. /* line 105, ../themes/stylesheets/ext4/default/core/_reset.scss */
  160. h1, h2, h3, h4, h5, h6 {
  161. font-size: 100%; }
  162. /* line 110, ../themes/stylesheets/ext4/default/core/_reset.scss */
  163. q:before,
  164. q:after {
  165. content: ""; }
  166. /* line 114, ../themes/stylesheets/ext4/default/core/_reset.scss */
  167. abbr, acronym {
  168. border: 0;
  169. font-variant: normal; }
  170. /* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
  171. sup {
  172. vertical-align: text-top; }
  173. /* line 123, ../themes/stylesheets/ext4/default/core/_reset.scss */
  174. sub {
  175. vertical-align: text-bottom; }
  176. /* line 127, ../themes/stylesheets/ext4/default/core/_reset.scss */
  177. input, textarea, select {
  178. font-family: inherit;
  179. font-size: inherit;
  180. font-weight: inherit; }
  181. /* line 133, ../themes/stylesheets/ext4/default/core/_reset.scss */
  182. *:focus {
  183. outline: none; }
  184. /* line 138, ../themes/stylesheets/ext4/default/core/_reset.scss */
  185. .x-border-box,
  186. .x-border-box * {
  187. box-sizing: border-box;
  188. -moz-box-sizing: border-box;
  189. -ms-box-sizing: border-box;
  190. -webkit-box-sizing: border-box; }
  191. /* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
  192. .x-body {
  193. color: black;
  194. font-size: 12px;
  195. font-family: tahoma, arial, verdana, sans-serif; }
  196. /* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
  197. .x-rtl {
  198. direction: rtl; }
  199. /* line 11, ../themes/stylesheets/ext4/default/core/_core.scss */
  200. .x-ltr {
  201. direction: ltr; }
  202. /* line 15, ../themes/stylesheets/ext4/default/core/_core.scss */
  203. .x-clear {
  204. overflow: hidden;
  205. clear: both;
  206. font-size: 0;
  207. line-height: 0;
  208. display: table; }
  209. /* line 23, ../themes/stylesheets/ext4/default/core/_core.scss */
  210. .x-strict .x-ie7 .x-clear {
  211. height: 0;
  212. width: 0; }
  213. /* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
  214. .x-layer {
  215. position: absolute !important;
  216. overflow: hidden;
  217. zoom: 1; }
  218. /* line 37, ../themes/stylesheets/ext4/default/core/_core.scss */
  219. .x-shim {
  220. position: absolute;
  221. left: 0;
  222. top: 0;
  223. overflow: hidden;
  224. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  225. opacity: 0; }
  226. /* line 45, ../themes/stylesheets/ext4/default/core/_core.scss */
  227. .x-hide-display {
  228. display: none !important; }
  229. /* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
  230. .x-hide-visibility {
  231. visibility: hidden !important; }
  232. /* line 55, ../themes/stylesheets/ext4/default/core/_core.scss */
  233. .x-item-disabled .x-form-item-label,
  234. .x-item-disabled .x-form-field,
  235. .x-item-disabled .x-form-cb-label {
  236. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  237. opacity: 0.3; }
  238. /* line 59, ../themes/stylesheets/ext4/default/core/_core.scss */
  239. .x-ie6 .x-item-disabled {
  240. filter: none; }
  241. /* line 64, ../themes/stylesheets/ext4/default/core/_core.scss */
  242. .x-hidden,
  243. .x-hide-offsets {
  244. display: block !important;
  245. visibility: hidden !important;
  246. position: absolute!important;
  247. left: -10000px !important;
  248. top: -10000px !important; }
  249. /* line 74, ../themes/stylesheets/ext4/default/core/_core.scss */
  250. .x-hide-nosize {
  251. height: 0!important;
  252. width: 0!important; }
  253. /* line 79, ../themes/stylesheets/ext4/default/core/_core.scss */
  254. .x-masked-relative {
  255. position: relative; }
  256. /* line 85, ../themes/stylesheets/ext4/default/core/_core.scss */
  257. .x-ie6 .x-masked select,
  258. .x-ie6.x-body-masked select {
  259. visibility: hidden !important; }
  260. /* line 91, ../themes/stylesheets/ext4/default/core/_core.scss */
  261. .x-css-shadow {
  262. position: absolute;
  263. -moz-border-radius: 5px 5px;
  264. -webkit-border-radius: 5px 5px;
  265. -o-border-radius: 5px 5px;
  266. -ms-border-radius: 5px 5px;
  267. -khtml-border-radius: 5px 5px;
  268. border-radius: 5px 5px; }
  269. /* line 97, ../themes/stylesheets/ext4/default/core/_core.scss */
  270. .x-ie-shadow {
  271. background-color: #777;
  272. display: none;
  273. position: absolute;
  274. overflow: hidden;
  275. zoom: 1; }
  276. /* line 106, ../themes/stylesheets/ext4/default/core/_core.scss */
  277. .x-box-tl {
  278. background: transparent no-repeat 0 0;
  279. zoom: 1; }
  280. /* line 111, ../themes/stylesheets/ext4/default/core/_core.scss */
  281. .x-box-tc {
  282. height: 8px;
  283. background: transparent repeat-x 0 0;
  284. overflow: hidden; }
  285. /* line 117, ../themes/stylesheets/ext4/default/core/_core.scss */
  286. .x-box-tr {
  287. background: transparent no-repeat right -8px; }
  288. /* line 121, ../themes/stylesheets/ext4/default/core/_core.scss */
  289. .x-box-ml {
  290. background: transparent repeat-y 0;
  291. padding-left: 4px;
  292. overflow: hidden;
  293. zoom: 1; }
  294. /* line 128, ../themes/stylesheets/ext4/default/core/_core.scss */
  295. .x-box-mc {
  296. background: repeat-x 0 -16px;
  297. padding: 4px 10px; }
  298. /* line 133, ../themes/stylesheets/ext4/default/core/_core.scss */
  299. .x-box-mc h3 {
  300. margin: 0 0 4px 0;
  301. zoom: 1; }
  302. /* line 138, ../themes/stylesheets/ext4/default/core/_core.scss */
  303. .x-box-mr {
  304. background: transparent repeat-y right;
  305. padding-right: 4px;
  306. overflow: hidden; }
  307. /* line 144, ../themes/stylesheets/ext4/default/core/_core.scss */
  308. .x-box-bl {
  309. background: transparent no-repeat 0 -16px;
  310. zoom: 1; }
  311. /* line 149, ../themes/stylesheets/ext4/default/core/_core.scss */
  312. .x-box-bc {
  313. background: transparent repeat-x 0 -8px;
  314. height: 8px;
  315. overflow: hidden; }
  316. /* line 155, ../themes/stylesheets/ext4/default/core/_core.scss */
  317. .x-box-br {
  318. background: transparent no-repeat right -24px; }
  319. /* line 159, ../themes/stylesheets/ext4/default/core/_core.scss */
  320. .x-box-tl, .x-box-bl {
  321. padding-left: 8px;
  322. overflow: hidden; }
  323. /* line 164, ../themes/stylesheets/ext4/default/core/_core.scss */
  324. .x-box-tr, .x-box-br {
  325. padding-right: 8px;
  326. overflow: hidden; }
  327. /* line 169, ../themes/stylesheets/ext4/default/core/_core.scss */
  328. .x-box-tl {
  329. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  330. /* line 173, ../themes/stylesheets/ext4/default/core/_core.scss */
  331. .x-box-tc {
  332. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  333. /* line 177, ../themes/stylesheets/ext4/default/core/_core.scss */
  334. .x-box-tr {
  335. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  336. /* line 181, ../themes/stylesheets/ext4/default/core/_core.scss */
  337. .x-box-ml {
  338. background-image: url('../../resources/themes/images/default/box/l.gif'); }
  339. /* line 185, ../themes/stylesheets/ext4/default/core/_core.scss */
  340. .x-box-mc {
  341. background-color: #eee;
  342. background-image: url('../../resources/themes/images/default/box/tb.gif');
  343. font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
  344. color: #393939;
  345. font-size: 15px; }
  346. /* line 193, ../themes/stylesheets/ext4/default/core/_core.scss */
  347. .x-box-mc h3 {
  348. font-size: 18px;
  349. font-weight: bold; }
  350. /* line 198, ../themes/stylesheets/ext4/default/core/_core.scss */
  351. .x-box-mr {
  352. background-image: url('../../resources/themes/images/default/box/r.gif'); }
  353. /* line 202, ../themes/stylesheets/ext4/default/core/_core.scss */
  354. .x-box-bl {
  355. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  356. /* line 206, ../themes/stylesheets/ext4/default/core/_core.scss */
  357. .x-box-bc {
  358. background-image: url('../../resources/themes/images/default/box/tb.gif'); }
  359. /* line 210, ../themes/stylesheets/ext4/default/core/_core.scss */
  360. .x-box-br {
  361. background-image: url('../../resources/themes/images/default/box/corners.gif'); }
  362. /* line 214, ../themes/stylesheets/ext4/default/core/_core.scss */
  363. .x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
  364. background-image: url('../../resources/themes/images/default/box/corners-blue.gif'); }
  365. /* line 218, ../themes/stylesheets/ext4/default/core/_core.scss */
  366. .x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
  367. background-image: url('../../resources/themes/images/default/box/tb-blue.gif'); }
  368. /* line 222, ../themes/stylesheets/ext4/default/core/_core.scss */
  369. .x-box-blue .x-box-mc {
  370. background-color: #c3daf9; }
  371. /* line 226, ../themes/stylesheets/ext4/default/core/_core.scss */
  372. .x-box-blue .x-box-mc h3 {
  373. color: #17385b; }
  374. /* line 230, ../themes/stylesheets/ext4/default/core/_core.scss */
  375. .x-box-blue .x-box-ml {
  376. background-image: url('../../resources/themes/images/default/box/l-blue.gif'); }
  377. /* line 234, ../themes/stylesheets/ext4/default/core/_core.scss */
  378. .x-box-blue .x-box-mr {
  379. background-image: url('../../resources/themes/images/default/box/r-blue.gif'); }
  380. /* line 238, ../themes/stylesheets/ext4/default/core/_core.scss */
  381. .x-container {
  382. zoom: 1; }
  383. /* line 243, ../themes/stylesheets/ext4/default/core/_core.scss */
  384. .x-container:before {
  385. content: "";
  386. clear: both;
  387. display: table; }
  388. /* line 253, ../themes/stylesheets/ext4/default/core/_core.scss */
  389. table.x-container:before,
  390. tbody.x-container:before,
  391. tr.x-container:before {
  392. display: none; }
  393. /* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
  394. .x-focus-element {
  395. position: absolute;
  396. top: -10px;
  397. left: -10px;
  398. width: 0px;
  399. height: 0px; }
  400. /* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
  401. .x-focus-frame {
  402. position: absolute;
  403. left: 0px;
  404. top: 0px;
  405. z-index: 100000000;
  406. width: 0px;
  407. height: 0px; }
  408. /* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
  409. .x-focus-frame-top,
  410. .x-focus-frame-bottom,
  411. .x-focus-frame-left,
  412. .x-focus-frame-right {
  413. position: absolute;
  414. top: 0px;
  415. left: 0px; }
  416. /* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
  417. .x-focus-frame-top,
  418. .x-focus-frame-bottom {
  419. border-top: solid 2px #15428b;
  420. height: 2px; }
  421. /* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
  422. .x-focus-frame-left,
  423. .x-focus-frame-right {
  424. border-left: solid 2px #15428b;
  425. width: 2px; }
  426. /**
  427. * @class Ext.Button
  428. * Used to create the base structure of an Ext.Button
  429. */
  430. /**
  431. * @mixin extjs-btn-group-ui
  432. * @class Ext.ButtonGroup
  433. */
  434. /**
  435. * @class Ext.menu.*
  436. */
  437. /**
  438. * @class Ext.Panel
  439. * Used to create the base structure of an Ext.Panel
  440. */
  441. /**
  442. * @class Ext.Panel
  443. * Used to create a visual theme for an Ext.Panel
  444. */
  445. /**
  446. * @mixin ext-toolbar-ui
  447. * @class Ext.toolbar.Toolbar
  448. * @param {String} $ui The name of the UI
  449. * @param {Color} $background-color The background color of the toolbar (defaults to transparent)
  450. * @param {Gradient/color-stops} $background-gradient The background gradient of the toolbar (defaults to null)
  451. * @param {Color} $border-color The border color of the toolbar (defaults to null)
  452. */
  453. /**
  454. * @class Ext.Window
  455. * Used to create a visual theme for an Ext.Panel
  456. */
  457. /**
  458. * @class Ext.tab.Bar
  459. */
  460. /**
  461. * @class Ext.Tab
  462. */
  463. /**
  464. * @class Ext.LoadMask
  465. * Component used to mask a component
  466. */
  467. /* line 5, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  468. .x-mask {
  469. z-index: 100;
  470. position: absolute;
  471. top: 0;
  472. left: 0;
  473. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  474. opacity: 0.5;
  475. width: 100%;
  476. height: 100%;
  477. zoom: 1;
  478. background: #cccccc; }
  479. /* line 21, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  480. .x-mask-msg {
  481. z-index: 20001;
  482. position: absolute;
  483. top: 0;
  484. left: 0;
  485. padding: 2px;
  486. border: 1px solid;
  487. border-color: #99bce8; }
  488. /* line 40, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
  489. .x-mask-msg div {
  490. padding: 5px 10px 5px 25px;
  491. background-image: url('../../resources/themes/images/default/grid/loading.gif');
  492. background-repeat: no-repeat;
  493. background-position: 5px center;
  494. cursor: wait;
  495. border: 1px solid #a3bad9;
  496. background-color: #eeeeee;
  497. color: #222222;
  498. font: normal 11px tahoma, arial, verdana, sans-serif; }
  499. /**
  500. * @mixin extjs-progress-ui
  501. */
  502. /**
  503. * W3C Suggested Default style sheet for HTML 4
  504. * http://www.w3.org/TR/CSS21/sample.html
  505. */
  506. /* line 2, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  507. .x-boundlist {
  508. border-width: 1px;
  509. border-style: solid;
  510. border-color: #98c0f4;
  511. background: white; }
  512. /* line 8, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  513. .x-boundlist .x-toolbar {
  514. border-width: 1px 0 0 0; }
  515. /* line 18, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  516. .x-strict .x-ie6 .x-boundlist-list-ct,
  517. .x-strict .x-ie7 .x-boundlist-list-ct {
  518. position: relative; }
  519. /* line 25, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  520. .x-boundlist-item {
  521. padding: 2px;
  522. user-select: none;
  523. -o-user-select: none;
  524. -ms-user-select: none;
  525. -moz-user-select: -moz-none;
  526. -webkit-user-select: none;
  527. cursor: default;
  528. cursor: pointer;
  529. cursor: hand;
  530. position: relative;
  531. /*allow hover in IE on empty items*/
  532. border-width: 1px;
  533. border-style: dotted;
  534. border-color: white; }
  535. /* line 39, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  536. .x-boundlist-selected {
  537. background: #cbdaf0;
  538. border-color: #8eabe4; }
  539. /* line 44, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  540. .x-boundlist-item-over {
  541. background: #dfe8f6;
  542. border-color: #a3bae9; }
  543. /* line 49, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  544. .x-boundlist-floating {
  545. border-top-width: 0; }
  546. /* line 53, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
  547. .x-boundlist-above {
  548. border-top-width: 1px;
  549. border-bottom-width: 1px; }
  550. /* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  551. .x-btn {
  552. display: inline-block;
  553. zoom: 1;
  554. *display: inline;
  555. position: relative;
  556. cursor: pointer;
  557. cursor: hand;
  558. white-space: nowrap;
  559. vertical-align: middle;
  560. background-repeat: no-repeat; }
  561. /* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  562. .x-btn * {
  563. cursor: pointer;
  564. cursor: hand; }
  565. /* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  566. .x-btn em {
  567. background-repeat: no-repeat; }
  568. /* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  569. .x-btn em a {
  570. text-decoration: none;
  571. display: block;
  572. color: inherit;
  573. width: 100%;
  574. zoom: 1; }
  575. /* line 45, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  576. .x-btn button {
  577. width: 100%;
  578. display: block;
  579. margin: 0;
  580. padding: 0;
  581. border: 0;
  582. background: none;
  583. outline: 0 none;
  584. overflow: hidden;
  585. vertical-align: bottom;
  586. -webkit-appearance: none; }
  587. /* line 59, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  588. .x-btn button::-moz-focus-inner {
  589. border: 0;
  590. padding: 0; }
  591. /* line 65, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  592. .x-btn .x-btn-inner {
  593. display: block;
  594. white-space: nowrap;
  595. background-color: transparent;
  596. background-repeat: no-repeat;
  597. background-position: left center;
  598. overflow: hidden; }
  599. /* line 74, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  600. .x-btn .x-btn-left .x-btn-inner {
  601. text-align: left; }
  602. /* line 78, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  603. .x-btn .x-btn-center .x-btn-inner {
  604. text-align: center; }
  605. /* line 82, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  606. .x-btn .x-btn-right .x-btn-inner {
  607. text-align: right; }
  608. /* line 87, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  609. .x-btn-disabled span {
  610. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  611. opacity: 0.5; }
  612. /* line 91, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  613. .x-ie6 .x-btn-disabled span, .x-ie7 .x-btn-disabled span {
  614. filter: none; }
  615. /* line 98, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  616. .x-ie7 .x-btn-disabled,
  617. .x-ie8 .x-btn-disabled {
  618. filter: none; }
  619. /* line 105, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  620. .x-ie6 .x-btn-disabled .x-btn-icon,
  621. .x-ie7 .x-btn-disabled .x-btn-icon,
  622. .x-ie8 .x-btn-disabled .x-btn-icon {
  623. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  624. opacity: 0.6; }
  625. /* IE9 shows scrollbars in a button unless this is set */
  626. /* line 112, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  627. .x-ie9 .x-btn button {
  628. overflow: visible!important; }
  629. /* line 117, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  630. * html .x-ie .x-btn button {
  631. width: 1px; }
  632. /* line 122, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  633. .x-ie .x-btn button {
  634. overflow-x: visible;
  635. /*prevents extra horiz space in IE*/
  636. vertical-align: baseline;
  637. /*IE doesn't like bottom*/ }
  638. /* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  639. .x-strict .x-ie6 .x-btn .x-frame-mc,
  640. .x-strict .x-ie7 .x-btn .x-frame-mc {
  641. height: 100%; }
  642. /* Keep the selector simple ".x-btn .x-frame-mc" is enough to target the center frame of the button table */
  643. /* line 138, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  644. .x-btn .x-frame-mc {
  645. vertical-align: middle;
  646. white-space: nowrap;
  647. cursor: pointer; }
  648. /* Only center when all there is is text. Otherwise solo icons get centered. */
  649. /* line 147, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  650. .x-btn-noicon .x-frame-mc {
  651. text-align: center; }
  652. /* line 153, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  653. .x-btn-icon-text-left .x-btn-icon {
  654. background-position: left center; }
  655. /* line 157, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  656. .x-btn-icon-text-right .x-btn-icon {
  657. background-position: right center; }
  658. /* line 161, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  659. .x-btn-icon-text-top .x-btn-icon {
  660. background-position: center top; }
  661. /* line 165, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  662. .x-btn-icon-text-bottom .x-btn-icon {
  663. background-position: center bottom; }
  664. /* line 170, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  665. .x-btn button, .x-btn a {
  666. position: relative; }
  667. /* line 173, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  668. .x-btn button .x-btn-icon, .x-btn a .x-btn-icon {
  669. position: absolute;
  670. background-repeat: no-repeat; }
  671. /* line 180, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  672. .x-btn-arrow-right {
  673. background: transparent no-repeat right center;
  674. padding-right: 12px; }
  675. /* line 184, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  676. .x-btn-arrow-right .x-btn-inner {
  677. padding-right: 0 !important; }
  678. /* line 189, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  679. .x-toolbar .x-btn-arrow-right {
  680. padding-right: 12px; }
  681. /* line 193, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  682. .x-btn-arrow-bottom {
  683. background: transparent no-repeat center bottom;
  684. padding-bottom: 12px; }
  685. /* line 198, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  686. .x-btn-arrow {
  687. background-image: url('../../resources/themes/images/default/button/arrow.gif');
  688. display: block; }
  689. /* line 206, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  690. .x-btn-split-right,
  691. .x-btn-over .x-btn-split-right {
  692. background: transparent no-repeat right center;
  693. background-image: url('../../resources/themes/images/default/button/s-arrow.gif');
  694. padding-right: 14px !important; }
  695. /* line 213, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  696. .x-btn-split-bottom,
  697. .x-btn-over .x-btn-split-bottom {
  698. background: transparent no-repeat center bottom;
  699. background-image: url('../../resources/themes/images/default/button/s-arrow-b.gif');
  700. padding-bottom: 14px; }
  701. /* line 219, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  702. .x-toolbar .x-btn-split-right {
  703. background-image: url('../../resources/themes/images/default/button/s-arrow-noline.gif');
  704. padding-right: 12px !important; }
  705. /* line 224, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  706. .x-toolbar .x-btn-split-bottom {
  707. background-image: url('../../resources/themes/images/default/button/s-arrow-b-noline.gif'); }
  708. /* line 228, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  709. .x-btn-split {
  710. display: block; }
  711. /* line 233, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  712. .x-item-disabled,
  713. .x-item-disabled * {
  714. cursor: default; }
  715. /* line 237, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  716. .x-cycle-fixed-width .x-btn-inner {
  717. text-align: inherit; }
  718. /* line 241, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  719. .x-btn-over .x-btn-split-right {
  720. background-image: url('../../resources/themes/images/default/button/s-arrow-o.gif'); }
  721. /* line 242, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  722. .x-btn-over .x-btn-split-bottom {
  723. background-image: url('../../resources/themes/images/default/button/s-arrow-bo.gif'); }
  724. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  725. .x-btn-default-small {
  726. border-color: #d1d1d1; }
  727. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  728. .x-btn-default-small {
  729. padding: 2px 2px 2px 2px;
  730. border-width: 1px;
  731. border-style: solid;
  732. background-color: white; }
  733. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  734. .x-nlg .x-btn-default-small-mc {
  735. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif');
  736. background-color: white; }
  737. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  738. .x-nbr .x-btn-default-small {
  739. padding: 0 !important;
  740. border-width: 0 !important;
  741. -moz-border-radius: 0px;
  742. -webkit-border-radius: 0px;
  743. -o-border-radius: 0px;
  744. -ms-border-radius: 0px;
  745. -khtml-border-radius: 0px;
  746. border-radius: 0px;
  747. background-color: transparent;
  748. background-position: 1100303px 1000303px; }
  749. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  750. .x-nbr .x-btn-default-small-tl,
  751. .x-nbr .x-btn-default-small-bl,
  752. .x-nbr .x-btn-default-small-tr,
  753. .x-nbr .x-btn-default-small-br,
  754. .x-nbr .x-btn-default-small-tc,
  755. .x-nbr .x-btn-default-small-bc,
  756. .x-nbr .x-btn-default-small-ml,
  757. .x-nbr .x-btn-default-small-mr {
  758. zoom: 1;
  759. background-image: url('../../resources/themes/images/default/btn/btn-default-small-corners.gif'); }
  760. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  761. .x-nbr .x-btn-default-small-ml,
  762. .x-nbr .x-btn-default-small-mr {
  763. zoom: 1;
  764. background-image: url('../../resources/themes/images/default/btn/btn-default-small-sides.gif');
  765. background-position: 0 0; }
  766. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  767. .x-nbr .x-btn-default-small-mc {
  768. padding: 0px 0px 0px 0px; }
  769. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  770. .x-strict .x-ie7 .x-btn-default-small-tl,
  771. .x-strict .x-ie7 .x-btn-default-small-bl {
  772. position: relative;
  773. right: 0; }
  774. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  775. .x-btn-default-small .x-btn-inner {
  776. font-size: 11px;
  777. font-weight: normal;
  778. font-family: tahoma, arial, verdana, sans-serif;
  779. color: #333333;
  780. background-repeat: no-repeat;
  781. padding: 0 4px; }
  782. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  783. .x-btn-default-small-icon button,
  784. .x-btn-default-small-icon a,
  785. .x-btn-default-small-icon .x-btn-inner,
  786. .x-btn-default-small-noicon button,
  787. .x-btn-default-small-noicon a,
  788. .x-btn-default-small-noicon .x-btn-inner {
  789. height: 16px;
  790. line-height: 16px; }
  791. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  792. .x-btn-default-small-icon button, .x-btn-default-small-icon a {
  793. padding: 0; }
  794. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  795. .x-btn-default-small-icon .x-btn-inner {
  796. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  797. width: 16px;
  798. padding: 0; }
  799. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  800. .x-btn-default-small-icon .x-btn-icon {
  801. width: 16px;
  802. height: 16px;
  803. top: 0;
  804. left: 0;
  805. bottom: 0;
  806. right: 0; }
  807. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  808. .x-btn-default-small-icon-text-left button, .x-btn-default-small-icon-text-left a {
  809. height: 16px; }
  810. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  811. .x-btn-default-small-icon-text-left .x-btn-inner {
  812. height: 16px;
  813. line-height: 16px;
  814. padding-left: 20px; }
  815. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  816. .x-btn-default-small-icon-text-left .x-btn-icon {
  817. width: 16px;
  818. height: auto;
  819. top: 0;
  820. left: 0;
  821. bottom: 0;
  822. right: auto; }
  823. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  824. .x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon {
  825. height: 16px; }
  826. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  827. .x-btn-default-small-icon-text-right button, .x-btn-default-small-icon-text-right a {
  828. height: 16px; }
  829. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  830. .x-btn-default-small-icon-text-right .x-btn-inner {
  831. height: 16px;
  832. line-height: 16px;
  833. padding-right: 20px !important; }
  834. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  835. .x-btn-default-small-icon-text-right .x-btn-icon {
  836. width: 16px;
  837. height: auto;
  838. top: 0;
  839. left: auto;
  840. bottom: 0;
  841. right: 0; }
  842. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  843. .x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon {
  844. height: 16px; }
  845. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  846. .x-btn-default-small-icon-text-top .x-btn-inner {
  847. padding-top: 20px; }
  848. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  849. .x-btn-default-small-icon-text-top .x-btn-icon {
  850. width: auto;
  851. height: 16px;
  852. top: 0;
  853. left: 0;
  854. bottom: auto;
  855. right: 0; }
  856. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  857. .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 {
  858. width: 16px; }
  859. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  860. .x-btn-default-small-icon-text-bottom .x-btn-inner {
  861. padding-bottom: 20px; }
  862. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  863. .x-btn-default-small-icon-text-bottom .x-btn-icon {
  864. width: auto;
  865. height: 16px;
  866. top: auto;
  867. left: 0;
  868. bottom: 0;
  869. right: 0; }
  870. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  871. .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 {
  872. width: 16px; }
  873. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  874. .x-btn-default-small-over {
  875. border-color: #b0ccf2;
  876. background-image: none;
  877. background-color: #e4f3ff;
  878. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  879. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  880. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  881. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  882. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  883. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  884. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  885. .x-btn-default-small-focus {
  886. border-color: #b0ccf2;
  887. background-image: none;
  888. background-color: #e4f3ff;
  889. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  890. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  891. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  892. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  893. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  894. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  895. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  896. .x-btn-default-small-menu-active,
  897. .x-btn-default-small-pressed {
  898. border-color: #9ebae1;
  899. background-image: none;
  900. background-color: #b6cbe4;
  901. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  902. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  903. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  904. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  905. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  906. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  907. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  908. .x-btn-default-small-disabled {
  909. border-color: #e1e1e1;
  910. background-image: none;
  911. background-color: #f7f7f7;
  912. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  913. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  914. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  915. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  916. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  917. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  918. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  919. .x-btn-default-small-disabled .x-btn-inner {
  920. color: #333333 !important; }
  921. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  922. .x-ie .x-btn-default-small-disabled .x-btn-inner {
  923. color: #595959 !important; }
  924. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  925. .x-ie6 .x-btn-default-small-disabled .x-btn-inner {
  926. color: #8c8c8c !important; }
  927. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  928. .x-nbr .x-btn-default-small-over .x-frame-tl,
  929. .x-nbr .x-btn-default-small-over .x-frame-bl,
  930. .x-nbr .x-btn-default-small-over .x-frame-tr,
  931. .x-nbr .x-btn-default-small-over .x-frame-br,
  932. .x-nbr .x-btn-default-small-over .x-frame-tc,
  933. .x-nbr .x-btn-default-small-over .x-frame-bc {
  934. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-corners.gif'); }
  935. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  936. .x-nbr .x-btn-default-small-over .x-frame-ml,
  937. .x-nbr .x-btn-default-small-over .x-frame-mr {
  938. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-sides.gif'); }
  939. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  940. .x-nbr .x-btn-default-small-over .x-frame-mc {
  941. background-color: #e4f3ff;
  942. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  943. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  944. .x-nbr .x-btn-default-small-focus .x-frame-tl,
  945. .x-nbr .x-btn-default-small-focus .x-frame-bl,
  946. .x-nbr .x-btn-default-small-focus .x-frame-tr,
  947. .x-nbr .x-btn-default-small-focus .x-frame-br,
  948. .x-nbr .x-btn-default-small-focus .x-frame-tc,
  949. .x-nbr .x-btn-default-small-focus .x-frame-bc {
  950. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-corners.gif'); }
  951. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  952. .x-nbr .x-btn-default-small-focus .x-frame-ml,
  953. .x-nbr .x-btn-default-small-focus .x-frame-mr {
  954. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-sides.gif'); }
  955. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  956. .x-nbr .x-btn-default-small-focus .x-frame-mc {
  957. background-color: #e4f3ff;
  958. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  959. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  960. .x-nbr .x-btn-default-small-menu-active .x-frame-tl,
  961. .x-nbr .x-btn-default-small-menu-active .x-frame-bl,
  962. .x-nbr .x-btn-default-small-menu-active .x-frame-tr,
  963. .x-nbr .x-btn-default-small-menu-active .x-frame-br,
  964. .x-nbr .x-btn-default-small-menu-active .x-frame-tc,
  965. .x-nbr .x-btn-default-small-menu-active .x-frame-bc,
  966. .x-nbr .x-btn-default-small-pressed .x-frame-tl,
  967. .x-nbr .x-btn-default-small-pressed .x-frame-bl,
  968. .x-nbr .x-btn-default-small-pressed .x-frame-tr,
  969. .x-nbr .x-btn-default-small-pressed .x-frame-br,
  970. .x-nbr .x-btn-default-small-pressed .x-frame-tc,
  971. .x-nbr .x-btn-default-small-pressed .x-frame-bc {
  972. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-corners.gif'); }
  973. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  974. .x-nbr .x-btn-default-small-menu-active .x-frame-ml,
  975. .x-nbr .x-btn-default-small-menu-active .x-frame-mr,
  976. .x-nbr .x-btn-default-small-pressed .x-frame-ml,
  977. .x-nbr .x-btn-default-small-pressed .x-frame-mr {
  978. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-sides.gif'); }
  979. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  980. .x-nbr .x-btn-default-small-menu-active .x-frame-mc,
  981. .x-nbr .x-btn-default-small-pressed .x-frame-mc {
  982. background-color: #b6cbe4;
  983. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  984. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  985. .x-nbr .x-btn-default-small-disabled .x-frame-tl,
  986. .x-nbr .x-btn-default-small-disabled .x-frame-bl,
  987. .x-nbr .x-btn-default-small-disabled .x-frame-tr,
  988. .x-nbr .x-btn-default-small-disabled .x-frame-br,
  989. .x-nbr .x-btn-default-small-disabled .x-frame-tc,
  990. .x-nbr .x-btn-default-small-disabled .x-frame-bc {
  991. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-corners.gif'); }
  992. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  993. .x-nbr .x-btn-default-small-disabled .x-frame-ml,
  994. .x-nbr .x-btn-default-small-disabled .x-frame-mr {
  995. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-sides.gif'); }
  996. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  997. .x-nbr .x-btn-default-small-disabled .x-frame-mc {
  998. background-color: #f7f7f7;
  999. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1000. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1001. .x-nlg .x-btn-default-small {
  1002. background-repeat: repeat-x;
  1003. background-image: url('../../resources/themes/images/default/btn/btn-default-small-bg.gif'); }
  1004. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1005. .x-nlg .x-btn-default-small-over {
  1006. background-repeat: repeat-x;
  1007. background-image: url('../../resources/themes/images/default/btn/btn-default-small-over-bg.gif'); }
  1008. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1009. .x-nlg .x-btn-default-small-focus {
  1010. background-repeat: repeat-x;
  1011. background-image: url('../../resources/themes/images/default/btn/btn-default-small-focus-bg.gif'); }
  1012. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1013. .x-nlg .x-btn-default-small-menu-active,
  1014. .x-nlg .x-btn-default-small-pressed {
  1015. background-repeat: repeat-x;
  1016. background-image: url('../../resources/themes/images/default/btn/btn-default-small-pressed-bg.gif'); }
  1017. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1018. .x-nlg .x-btn-default-small-disabled {
  1019. background-repeat: repeat-x;
  1020. background-image: url('../../resources/themes/images/default/btn/btn-default-small-disabled-bg.gif'); }
  1021. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1022. .x-btn-default-medium {
  1023. border-color: #d1d1d1; }
  1024. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1025. .x-btn-default-medium {
  1026. padding: 3px 3px 3px 3px;
  1027. border-width: 1px;
  1028. border-style: solid;
  1029. background-color: white; }
  1030. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1031. .x-nlg .x-btn-default-medium-mc {
  1032. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif');
  1033. background-color: white; }
  1034. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1035. .x-nbr .x-btn-default-medium {
  1036. padding: 0 !important;
  1037. border-width: 0 !important;
  1038. -moz-border-radius: 0px;
  1039. -webkit-border-radius: 0px;
  1040. -o-border-radius: 0px;
  1041. -ms-border-radius: 0px;
  1042. -khtml-border-radius: 0px;
  1043. border-radius: 0px;
  1044. background-color: transparent;
  1045. background-position: 1100303px 1000303px; }
  1046. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1047. .x-nbr .x-btn-default-medium-tl,
  1048. .x-nbr .x-btn-default-medium-bl,
  1049. .x-nbr .x-btn-default-medium-tr,
  1050. .x-nbr .x-btn-default-medium-br,
  1051. .x-nbr .x-btn-default-medium-tc,
  1052. .x-nbr .x-btn-default-medium-bc,
  1053. .x-nbr .x-btn-default-medium-ml,
  1054. .x-nbr .x-btn-default-medium-mr {
  1055. zoom: 1;
  1056. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-corners.gif'); }
  1057. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1058. .x-nbr .x-btn-default-medium-ml,
  1059. .x-nbr .x-btn-default-medium-mr {
  1060. zoom: 1;
  1061. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-sides.gif');
  1062. background-position: 0 0; }
  1063. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1064. .x-nbr .x-btn-default-medium-mc {
  1065. padding: 1px 1px 1px 1px; }
  1066. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1067. .x-strict .x-ie7 .x-btn-default-medium-tl,
  1068. .x-strict .x-ie7 .x-btn-default-medium-bl {
  1069. position: relative;
  1070. right: 0; }
  1071. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1072. .x-btn-default-medium .x-btn-inner {
  1073. font-size: 11px;
  1074. font-weight: normal;
  1075. font-family: tahoma, arial, verdana, sans-serif;
  1076. color: #333333;
  1077. background-repeat: no-repeat;
  1078. padding: 0 3px; }
  1079. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1080. .x-btn-default-medium-icon button,
  1081. .x-btn-default-medium-icon a,
  1082. .x-btn-default-medium-icon .x-btn-inner,
  1083. .x-btn-default-medium-noicon button,
  1084. .x-btn-default-medium-noicon a,
  1085. .x-btn-default-medium-noicon .x-btn-inner {
  1086. height: 24px;
  1087. line-height: 24px; }
  1088. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1089. .x-btn-default-medium-icon button, .x-btn-default-medium-icon a {
  1090. padding: 0; }
  1091. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1092. .x-btn-default-medium-icon .x-btn-inner {
  1093. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1094. width: 24px;
  1095. padding: 0; }
  1096. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1097. .x-btn-default-medium-icon .x-btn-icon {
  1098. width: 24px;
  1099. height: 24px;
  1100. top: 0;
  1101. left: 0;
  1102. bottom: 0;
  1103. right: 0; }
  1104. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1105. .x-btn-default-medium-icon-text-left button, .x-btn-default-medium-icon-text-left a {
  1106. height: 24px; }
  1107. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1108. .x-btn-default-medium-icon-text-left .x-btn-inner {
  1109. height: 24px;
  1110. line-height: 24px;
  1111. padding-left: 28px; }
  1112. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1113. .x-btn-default-medium-icon-text-left .x-btn-icon {
  1114. width: 24px;
  1115. height: auto;
  1116. top: 0;
  1117. left: 0;
  1118. bottom: 0;
  1119. right: auto; }
  1120. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1121. .x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon {
  1122. height: 24px; }
  1123. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1124. .x-btn-default-medium-icon-text-right button, .x-btn-default-medium-icon-text-right a {
  1125. height: 24px; }
  1126. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1127. .x-btn-default-medium-icon-text-right .x-btn-inner {
  1128. height: 24px;
  1129. line-height: 24px;
  1130. padding-right: 28px !important; }
  1131. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1132. .x-btn-default-medium-icon-text-right .x-btn-icon {
  1133. width: 24px;
  1134. height: auto;
  1135. top: 0;
  1136. left: auto;
  1137. bottom: 0;
  1138. right: 0; }
  1139. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1140. .x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon {
  1141. height: 24px; }
  1142. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1143. .x-btn-default-medium-icon-text-top .x-btn-inner {
  1144. padding-top: 28px; }
  1145. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1146. .x-btn-default-medium-icon-text-top .x-btn-icon {
  1147. width: auto;
  1148. height: 24px;
  1149. top: 0;
  1150. left: 0;
  1151. bottom: auto;
  1152. right: 0; }
  1153. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1154. .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 {
  1155. width: 24px; }
  1156. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1157. .x-btn-default-medium-icon-text-bottom .x-btn-inner {
  1158. padding-bottom: 28px; }
  1159. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1160. .x-btn-default-medium-icon-text-bottom .x-btn-icon {
  1161. width: auto;
  1162. height: 24px;
  1163. top: auto;
  1164. left: 0;
  1165. bottom: 0;
  1166. right: 0; }
  1167. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1168. .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 {
  1169. width: 24px; }
  1170. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1171. .x-btn-default-medium-over {
  1172. border-color: #b0ccf2;
  1173. background-image: none;
  1174. background-color: #e4f3ff;
  1175. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1176. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1177. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1178. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1179. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1180. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1181. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1182. .x-btn-default-medium-focus {
  1183. border-color: #b0ccf2;
  1184. background-image: none;
  1185. background-color: #e4f3ff;
  1186. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1187. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1188. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1189. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1190. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1191. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1192. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1193. .x-btn-default-medium-menu-active,
  1194. .x-btn-default-medium-pressed {
  1195. border-color: #9ebae1;
  1196. background-image: none;
  1197. background-color: #b6cbe4;
  1198. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1199. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1200. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1201. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1202. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1203. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1204. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1205. .x-btn-default-medium-disabled {
  1206. border-color: #e1e1e1;
  1207. background-image: none;
  1208. background-color: #f7f7f7;
  1209. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1210. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1211. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1212. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1213. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1214. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1215. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1216. .x-btn-default-medium-disabled .x-btn-inner {
  1217. color: #333333 !important; }
  1218. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1219. .x-ie .x-btn-default-medium-disabled .x-btn-inner {
  1220. color: #595959 !important; }
  1221. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1222. .x-ie6 .x-btn-default-medium-disabled .x-btn-inner {
  1223. color: #8c8c8c !important; }
  1224. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1225. .x-nbr .x-btn-default-medium-over .x-frame-tl,
  1226. .x-nbr .x-btn-default-medium-over .x-frame-bl,
  1227. .x-nbr .x-btn-default-medium-over .x-frame-tr,
  1228. .x-nbr .x-btn-default-medium-over .x-frame-br,
  1229. .x-nbr .x-btn-default-medium-over .x-frame-tc,
  1230. .x-nbr .x-btn-default-medium-over .x-frame-bc {
  1231. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-corners.gif'); }
  1232. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1233. .x-nbr .x-btn-default-medium-over .x-frame-ml,
  1234. .x-nbr .x-btn-default-medium-over .x-frame-mr {
  1235. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-sides.gif'); }
  1236. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1237. .x-nbr .x-btn-default-medium-over .x-frame-mc {
  1238. background-color: #e4f3ff;
  1239. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1240. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1241. .x-nbr .x-btn-default-medium-focus .x-frame-tl,
  1242. .x-nbr .x-btn-default-medium-focus .x-frame-bl,
  1243. .x-nbr .x-btn-default-medium-focus .x-frame-tr,
  1244. .x-nbr .x-btn-default-medium-focus .x-frame-br,
  1245. .x-nbr .x-btn-default-medium-focus .x-frame-tc,
  1246. .x-nbr .x-btn-default-medium-focus .x-frame-bc {
  1247. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-corners.gif'); }
  1248. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1249. .x-nbr .x-btn-default-medium-focus .x-frame-ml,
  1250. .x-nbr .x-btn-default-medium-focus .x-frame-mr {
  1251. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-sides.gif'); }
  1252. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1253. .x-nbr .x-btn-default-medium-focus .x-frame-mc {
  1254. background-color: #e4f3ff;
  1255. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1256. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1257. .x-nbr .x-btn-default-medium-menu-active .x-frame-tl,
  1258. .x-nbr .x-btn-default-medium-menu-active .x-frame-bl,
  1259. .x-nbr .x-btn-default-medium-menu-active .x-frame-tr,
  1260. .x-nbr .x-btn-default-medium-menu-active .x-frame-br,
  1261. .x-nbr .x-btn-default-medium-menu-active .x-frame-tc,
  1262. .x-nbr .x-btn-default-medium-menu-active .x-frame-bc,
  1263. .x-nbr .x-btn-default-medium-pressed .x-frame-tl,
  1264. .x-nbr .x-btn-default-medium-pressed .x-frame-bl,
  1265. .x-nbr .x-btn-default-medium-pressed .x-frame-tr,
  1266. .x-nbr .x-btn-default-medium-pressed .x-frame-br,
  1267. .x-nbr .x-btn-default-medium-pressed .x-frame-tc,
  1268. .x-nbr .x-btn-default-medium-pressed .x-frame-bc {
  1269. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif'); }
  1270. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1271. .x-nbr .x-btn-default-medium-menu-active .x-frame-ml,
  1272. .x-nbr .x-btn-default-medium-menu-active .x-frame-mr,
  1273. .x-nbr .x-btn-default-medium-pressed .x-frame-ml,
  1274. .x-nbr .x-btn-default-medium-pressed .x-frame-mr {
  1275. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-sides.gif'); }
  1276. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1277. .x-nbr .x-btn-default-medium-menu-active .x-frame-mc,
  1278. .x-nbr .x-btn-default-medium-pressed .x-frame-mc {
  1279. background-color: #b6cbe4;
  1280. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1281. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1282. .x-nbr .x-btn-default-medium-disabled .x-frame-tl,
  1283. .x-nbr .x-btn-default-medium-disabled .x-frame-bl,
  1284. .x-nbr .x-btn-default-medium-disabled .x-frame-tr,
  1285. .x-nbr .x-btn-default-medium-disabled .x-frame-br,
  1286. .x-nbr .x-btn-default-medium-disabled .x-frame-tc,
  1287. .x-nbr .x-btn-default-medium-disabled .x-frame-bc {
  1288. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-corners.gif'); }
  1289. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1290. .x-nbr .x-btn-default-medium-disabled .x-frame-ml,
  1291. .x-nbr .x-btn-default-medium-disabled .x-frame-mr {
  1292. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-sides.gif'); }
  1293. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1294. .x-nbr .x-btn-default-medium-disabled .x-frame-mc {
  1295. background-color: #f7f7f7;
  1296. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1297. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1298. .x-nlg .x-btn-default-medium {
  1299. background-repeat: repeat-x;
  1300. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-bg.gif'); }
  1301. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1302. .x-nlg .x-btn-default-medium-over {
  1303. background-repeat: repeat-x;
  1304. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-over-bg.gif'); }
  1305. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1306. .x-nlg .x-btn-default-medium-focus {
  1307. background-repeat: repeat-x;
  1308. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-focus-bg.gif'); }
  1309. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1310. .x-nlg .x-btn-default-medium-menu-active,
  1311. .x-nlg .x-btn-default-medium-pressed {
  1312. background-repeat: repeat-x;
  1313. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-pressed-bg.gif'); }
  1314. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1315. .x-nlg .x-btn-default-medium-disabled {
  1316. background-repeat: repeat-x;
  1317. background-image: url('../../resources/themes/images/default/btn/btn-default-medium-disabled-bg.gif'); }
  1318. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1319. .x-btn-default-large {
  1320. border-color: #d1d1d1; }
  1321. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1322. .x-btn-default-large {
  1323. padding: 3px 3px 3px 3px;
  1324. border-width: 1px;
  1325. border-style: solid;
  1326. background-color: white; }
  1327. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1328. .x-nlg .x-btn-default-large-mc {
  1329. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif');
  1330. background-color: white; }
  1331. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1332. .x-nbr .x-btn-default-large {
  1333. padding: 0 !important;
  1334. border-width: 0 !important;
  1335. -moz-border-radius: 0px;
  1336. -webkit-border-radius: 0px;
  1337. -o-border-radius: 0px;
  1338. -ms-border-radius: 0px;
  1339. -khtml-border-radius: 0px;
  1340. border-radius: 0px;
  1341. background-color: transparent;
  1342. background-position: 1100303px 1000303px; }
  1343. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1344. .x-nbr .x-btn-default-large-tl,
  1345. .x-nbr .x-btn-default-large-bl,
  1346. .x-nbr .x-btn-default-large-tr,
  1347. .x-nbr .x-btn-default-large-br,
  1348. .x-nbr .x-btn-default-large-tc,
  1349. .x-nbr .x-btn-default-large-bc,
  1350. .x-nbr .x-btn-default-large-ml,
  1351. .x-nbr .x-btn-default-large-mr {
  1352. zoom: 1;
  1353. background-image: url('../../resources/themes/images/default/btn/btn-default-large-corners.gif'); }
  1354. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1355. .x-nbr .x-btn-default-large-ml,
  1356. .x-nbr .x-btn-default-large-mr {
  1357. zoom: 1;
  1358. background-image: url('../../resources/themes/images/default/btn/btn-default-large-sides.gif');
  1359. background-position: 0 0; }
  1360. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1361. .x-nbr .x-btn-default-large-mc {
  1362. padding: 1px 1px 1px 1px; }
  1363. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1364. .x-strict .x-ie7 .x-btn-default-large-tl,
  1365. .x-strict .x-ie7 .x-btn-default-large-bl {
  1366. position: relative;
  1367. right: 0; }
  1368. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1369. .x-btn-default-large .x-btn-inner {
  1370. font-size: 11px;
  1371. font-weight: normal;
  1372. font-family: tahoma, arial, verdana, sans-serif;
  1373. color: #333333;
  1374. background-repeat: no-repeat;
  1375. padding: 0 3px; }
  1376. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1377. .x-btn-default-large-icon button,
  1378. .x-btn-default-large-icon a,
  1379. .x-btn-default-large-icon .x-btn-inner,
  1380. .x-btn-default-large-noicon button,
  1381. .x-btn-default-large-noicon a,
  1382. .x-btn-default-large-noicon .x-btn-inner {
  1383. height: 32px;
  1384. line-height: 32px; }
  1385. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1386. .x-btn-default-large-icon button, .x-btn-default-large-icon a {
  1387. padding: 0; }
  1388. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1389. .x-btn-default-large-icon .x-btn-inner {
  1390. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1391. width: 32px;
  1392. padding: 0; }
  1393. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1394. .x-btn-default-large-icon .x-btn-icon {
  1395. width: 32px;
  1396. height: 32px;
  1397. top: 0;
  1398. left: 0;
  1399. bottom: 0;
  1400. right: 0; }
  1401. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1402. .x-btn-default-large-icon-text-left button, .x-btn-default-large-icon-text-left a {
  1403. height: 32px; }
  1404. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1405. .x-btn-default-large-icon-text-left .x-btn-inner {
  1406. height: 32px;
  1407. line-height: 32px;
  1408. padding-left: 36px; }
  1409. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1410. .x-btn-default-large-icon-text-left .x-btn-icon {
  1411. width: 32px;
  1412. height: auto;
  1413. top: 0;
  1414. left: 0;
  1415. bottom: 0;
  1416. right: auto; }
  1417. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1418. .x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon {
  1419. height: 32px; }
  1420. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1421. .x-btn-default-large-icon-text-right button, .x-btn-default-large-icon-text-right a {
  1422. height: 32px; }
  1423. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1424. .x-btn-default-large-icon-text-right .x-btn-inner {
  1425. height: 32px;
  1426. line-height: 32px;
  1427. padding-right: 36px !important; }
  1428. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1429. .x-btn-default-large-icon-text-right .x-btn-icon {
  1430. width: 32px;
  1431. height: auto;
  1432. top: 0;
  1433. left: auto;
  1434. bottom: 0;
  1435. right: 0; }
  1436. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1437. .x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon {
  1438. height: 32px; }
  1439. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1440. .x-btn-default-large-icon-text-top .x-btn-inner {
  1441. padding-top: 36px; }
  1442. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1443. .x-btn-default-large-icon-text-top .x-btn-icon {
  1444. width: auto;
  1445. height: 32px;
  1446. top: 0;
  1447. left: 0;
  1448. bottom: auto;
  1449. right: 0; }
  1450. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1451. .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 {
  1452. width: 32px; }
  1453. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1454. .x-btn-default-large-icon-text-bottom .x-btn-inner {
  1455. padding-bottom: 36px; }
  1456. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1457. .x-btn-default-large-icon-text-bottom .x-btn-icon {
  1458. width: auto;
  1459. height: 32px;
  1460. top: auto;
  1461. left: 0;
  1462. bottom: 0;
  1463. right: 0; }
  1464. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1465. .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 {
  1466. width: 32px; }
  1467. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1468. .x-btn-default-large-over {
  1469. border-color: #b0ccf2;
  1470. background-image: none;
  1471. background-color: #e4f3ff;
  1472. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1473. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1474. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1475. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1476. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1477. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1478. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1479. .x-btn-default-large-focus {
  1480. border-color: #b0ccf2;
  1481. background-image: none;
  1482. background-color: #e4f3ff;
  1483. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6));
  1484. background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1485. background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1486. background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1487. background-image: -ms-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6);
  1488. background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); }
  1489. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1490. .x-btn-default-large-menu-active,
  1491. .x-btn-default-large-pressed {
  1492. border-color: #9ebae1;
  1493. background-image: none;
  1494. background-color: #b6cbe4;
  1495. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5));
  1496. background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1497. background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1498. background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1499. background-image: -ms-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5);
  1500. background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); }
  1501. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1502. .x-btn-default-large-disabled {
  1503. border-color: #e1e1e1;
  1504. background-image: none;
  1505. background-color: #f7f7f7;
  1506. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf));
  1507. background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1508. background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1509. background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1510. background-image: -ms-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf);
  1511. background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); }
  1512. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1513. .x-btn-default-large-disabled .x-btn-inner {
  1514. color: #333333 !important; }
  1515. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1516. .x-ie .x-btn-default-large-disabled .x-btn-inner {
  1517. color: #595959 !important; }
  1518. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1519. .x-ie6 .x-btn-default-large-disabled .x-btn-inner {
  1520. color: #8c8c8c !important; }
  1521. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1522. .x-nbr .x-btn-default-large-over .x-frame-tl,
  1523. .x-nbr .x-btn-default-large-over .x-frame-bl,
  1524. .x-nbr .x-btn-default-large-over .x-frame-tr,
  1525. .x-nbr .x-btn-default-large-over .x-frame-br,
  1526. .x-nbr .x-btn-default-large-over .x-frame-tc,
  1527. .x-nbr .x-btn-default-large-over .x-frame-bc {
  1528. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-corners.gif'); }
  1529. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1530. .x-nbr .x-btn-default-large-over .x-frame-ml,
  1531. .x-nbr .x-btn-default-large-over .x-frame-mr {
  1532. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-sides.gif'); }
  1533. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1534. .x-nbr .x-btn-default-large-over .x-frame-mc {
  1535. background-color: #e4f3ff;
  1536. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1537. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1538. .x-nbr .x-btn-default-large-focus .x-frame-tl,
  1539. .x-nbr .x-btn-default-large-focus .x-frame-bl,
  1540. .x-nbr .x-btn-default-large-focus .x-frame-tr,
  1541. .x-nbr .x-btn-default-large-focus .x-frame-br,
  1542. .x-nbr .x-btn-default-large-focus .x-frame-tc,
  1543. .x-nbr .x-btn-default-large-focus .x-frame-bc {
  1544. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-corners.gif'); }
  1545. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1546. .x-nbr .x-btn-default-large-focus .x-frame-ml,
  1547. .x-nbr .x-btn-default-large-focus .x-frame-mr {
  1548. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-sides.gif'); }
  1549. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1550. .x-nbr .x-btn-default-large-focus .x-frame-mc {
  1551. background-color: #e4f3ff;
  1552. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1553. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1554. .x-nbr .x-btn-default-large-menu-active .x-frame-tl,
  1555. .x-nbr .x-btn-default-large-menu-active .x-frame-bl,
  1556. .x-nbr .x-btn-default-large-menu-active .x-frame-tr,
  1557. .x-nbr .x-btn-default-large-menu-active .x-frame-br,
  1558. .x-nbr .x-btn-default-large-menu-active .x-frame-tc,
  1559. .x-nbr .x-btn-default-large-menu-active .x-frame-bc,
  1560. .x-nbr .x-btn-default-large-pressed .x-frame-tl,
  1561. .x-nbr .x-btn-default-large-pressed .x-frame-bl,
  1562. .x-nbr .x-btn-default-large-pressed .x-frame-tr,
  1563. .x-nbr .x-btn-default-large-pressed .x-frame-br,
  1564. .x-nbr .x-btn-default-large-pressed .x-frame-tc,
  1565. .x-nbr .x-btn-default-large-pressed .x-frame-bc {
  1566. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-corners.gif'); }
  1567. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1568. .x-nbr .x-btn-default-large-menu-active .x-frame-ml,
  1569. .x-nbr .x-btn-default-large-menu-active .x-frame-mr,
  1570. .x-nbr .x-btn-default-large-pressed .x-frame-ml,
  1571. .x-nbr .x-btn-default-large-pressed .x-frame-mr {
  1572. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-sides.gif'); }
  1573. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1574. .x-nbr .x-btn-default-large-menu-active .x-frame-mc,
  1575. .x-nbr .x-btn-default-large-pressed .x-frame-mc {
  1576. background-color: #b6cbe4;
  1577. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1578. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1579. .x-nbr .x-btn-default-large-disabled .x-frame-tl,
  1580. .x-nbr .x-btn-default-large-disabled .x-frame-bl,
  1581. .x-nbr .x-btn-default-large-disabled .x-frame-tr,
  1582. .x-nbr .x-btn-default-large-disabled .x-frame-br,
  1583. .x-nbr .x-btn-default-large-disabled .x-frame-tc,
  1584. .x-nbr .x-btn-default-large-disabled .x-frame-bc {
  1585. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-corners.gif'); }
  1586. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1587. .x-nbr .x-btn-default-large-disabled .x-frame-ml,
  1588. .x-nbr .x-btn-default-large-disabled .x-frame-mr {
  1589. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-sides.gif'); }
  1590. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1591. .x-nbr .x-btn-default-large-disabled .x-frame-mc {
  1592. background-color: #f7f7f7;
  1593. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1594. /* line 978, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1595. .x-nlg .x-btn-default-large {
  1596. background-repeat: repeat-x;
  1597. background-image: url('../../resources/themes/images/default/btn/btn-default-large-bg.gif'); }
  1598. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1599. .x-nlg .x-btn-default-large-over {
  1600. background-repeat: repeat-x;
  1601. background-image: url('../../resources/themes/images/default/btn/btn-default-large-over-bg.gif'); }
  1602. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1603. .x-nlg .x-btn-default-large-focus {
  1604. background-repeat: repeat-x;
  1605. background-image: url('../../resources/themes/images/default/btn/btn-default-large-focus-bg.gif'); }
  1606. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1607. .x-nlg .x-btn-default-large-menu-active,
  1608. .x-nlg .x-btn-default-large-pressed {
  1609. background-repeat: repeat-x;
  1610. background-image: url('../../resources/themes/images/default/btn/btn-default-large-pressed-bg.gif'); }
  1611. /* line 1015, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1612. .x-nlg .x-btn-default-large-disabled {
  1613. background-repeat: repeat-x;
  1614. background-image: url('../../resources/themes/images/default/btn/btn-default-large-disabled-bg.gif'); }
  1615. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1616. .x-btn-default-toolbar-small {
  1617. border-color: transparent; }
  1618. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1619. .x-btn-default-toolbar-small {
  1620. padding: 2px 2px 2px 2px;
  1621. border-width: 1px;
  1622. border-style: solid;
  1623. background-color: transparent; }
  1624. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1625. .x-nlg .x-btn-default-toolbar-small-mc {
  1626. background-color: transparent; }
  1627. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1628. .x-nbr .x-btn-default-toolbar-small {
  1629. padding: 0 !important;
  1630. border-width: 0 !important;
  1631. -moz-border-radius: 0px;
  1632. -webkit-border-radius: 0px;
  1633. -o-border-radius: 0px;
  1634. -ms-border-radius: 0px;
  1635. -khtml-border-radius: 0px;
  1636. border-radius: 0px;
  1637. background-color: transparent;
  1638. background-position: 1100303px 1000303px; }
  1639. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1640. .x-nbr .x-btn-default-toolbar-small-tl,
  1641. .x-nbr .x-btn-default-toolbar-small-bl,
  1642. .x-nbr .x-btn-default-toolbar-small-tr,
  1643. .x-nbr .x-btn-default-toolbar-small-br,
  1644. .x-nbr .x-btn-default-toolbar-small-tc,
  1645. .x-nbr .x-btn-default-toolbar-small-bc,
  1646. .x-nbr .x-btn-default-toolbar-small-ml,
  1647. .x-nbr .x-btn-default-toolbar-small-mr {
  1648. zoom: 1; }
  1649. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1650. .x-nbr .x-btn-default-toolbar-small-ml,
  1651. .x-nbr .x-btn-default-toolbar-small-mr {
  1652. zoom: 1; }
  1653. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1654. .x-nbr .x-btn-default-toolbar-small-mc {
  1655. padding: 0px 0px 0px 0px; }
  1656. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1657. .x-strict .x-ie7 .x-btn-default-toolbar-small-tl,
  1658. .x-strict .x-ie7 .x-btn-default-toolbar-small-bl {
  1659. position: relative;
  1660. right: 0; }
  1661. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1662. .x-btn-default-toolbar-small .x-btn-inner {
  1663. font-size: 11px;
  1664. font-weight: normal;
  1665. font-family: tahoma, arial, verdana, sans-serif;
  1666. color: #333333;
  1667. background-repeat: no-repeat;
  1668. padding: 0 4px; }
  1669. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1670. .x-btn-default-toolbar-small-icon button,
  1671. .x-btn-default-toolbar-small-icon a,
  1672. .x-btn-default-toolbar-small-icon .x-btn-inner,
  1673. .x-btn-default-toolbar-small-noicon button,
  1674. .x-btn-default-toolbar-small-noicon a,
  1675. .x-btn-default-toolbar-small-noicon .x-btn-inner {
  1676. height: 16px;
  1677. line-height: 16px; }
  1678. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1679. .x-btn-default-toolbar-small-icon button, .x-btn-default-toolbar-small-icon a {
  1680. padding: 0; }
  1681. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1682. .x-btn-default-toolbar-small-icon .x-btn-inner {
  1683. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1684. width: 16px;
  1685. padding: 0; }
  1686. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1687. .x-btn-default-toolbar-small-icon .x-btn-icon {
  1688. width: 16px;
  1689. height: 16px;
  1690. top: 0;
  1691. left: 0;
  1692. bottom: 0;
  1693. right: 0; }
  1694. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1695. .x-btn-default-toolbar-small-icon-text-left button, .x-btn-default-toolbar-small-icon-text-left a {
  1696. height: 16px; }
  1697. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1698. .x-btn-default-toolbar-small-icon-text-left .x-btn-inner {
  1699. height: 16px;
  1700. line-height: 16px;
  1701. padding-left: 20px; }
  1702. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1703. .x-btn-default-toolbar-small-icon-text-left .x-btn-icon {
  1704. width: 16px;
  1705. height: auto;
  1706. top: 0;
  1707. left: 0;
  1708. bottom: 0;
  1709. right: auto; }
  1710. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1711. .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 {
  1712. height: 16px; }
  1713. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1714. .x-btn-default-toolbar-small-icon-text-right button, .x-btn-default-toolbar-small-icon-text-right a {
  1715. height: 16px; }
  1716. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1717. .x-btn-default-toolbar-small-icon-text-right .x-btn-inner {
  1718. height: 16px;
  1719. line-height: 16px;
  1720. padding-right: 20px !important; }
  1721. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1722. .x-btn-default-toolbar-small-icon-text-right .x-btn-icon {
  1723. width: 16px;
  1724. height: auto;
  1725. top: 0;
  1726. left: auto;
  1727. bottom: 0;
  1728. right: 0; }
  1729. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1730. .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 {
  1731. height: 16px; }
  1732. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1733. .x-btn-default-toolbar-small-icon-text-top .x-btn-inner {
  1734. padding-top: 20px; }
  1735. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1736. .x-btn-default-toolbar-small-icon-text-top .x-btn-icon {
  1737. width: auto;
  1738. height: 16px;
  1739. top: 0;
  1740. left: 0;
  1741. bottom: auto;
  1742. right: 0; }
  1743. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1744. .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 {
  1745. width: 16px; }
  1746. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1747. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner {
  1748. padding-bottom: 20px; }
  1749. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1750. .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon {
  1751. width: auto;
  1752. height: 16px;
  1753. top: auto;
  1754. left: 0;
  1755. bottom: 0;
  1756. right: 0; }
  1757. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1758. .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 {
  1759. width: 16px; }
  1760. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1761. .x-btn-default-toolbar-small-over {
  1762. border-color: #81a4d0;
  1763. background-image: none;
  1764. background-color: #dbeeff;
  1765. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1766. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1767. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1768. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1769. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1770. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1771. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1772. .x-btn-default-toolbar-small-focus {
  1773. border-color: #81a4d0;
  1774. background-image: none;
  1775. background-color: #dbeeff;
  1776. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  1777. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1778. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1779. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1780. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  1781. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  1782. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1783. .x-btn-default-toolbar-small-menu-active,
  1784. .x-btn-default-toolbar-small-pressed {
  1785. border-color: #7a9ac4;
  1786. background-image: none;
  1787. background-color: #bccfe5;
  1788. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  1789. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1790. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1791. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1792. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  1793. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  1794. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1795. .x-btn-default-toolbar-small-disabled {
  1796. background-image: none;
  1797. background-color: transparent; }
  1798. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1799. .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1800. color: #333333 !important; }
  1801. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1802. .x-ie .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1803. color: #595959 !important; }
  1804. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1805. .x-ie6 .x-btn-default-toolbar-small-disabled .x-btn-inner {
  1806. color: #8c8c8c !important; }
  1807. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1808. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tl,
  1809. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bl,
  1810. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tr,
  1811. .x-nbr .x-btn-default-toolbar-small-over .x-frame-br,
  1812. .x-nbr .x-btn-default-toolbar-small-over .x-frame-tc,
  1813. .x-nbr .x-btn-default-toolbar-small-over .x-frame-bc {
  1814. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif'); }
  1815. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1816. .x-nbr .x-btn-default-toolbar-small-over .x-frame-ml,
  1817. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mr {
  1818. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-sides.gif'); }
  1819. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1820. .x-nbr .x-btn-default-toolbar-small-over .x-frame-mc {
  1821. background-color: #dbeeff;
  1822. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1823. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1824. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tl,
  1825. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bl,
  1826. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tr,
  1827. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-br,
  1828. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-tc,
  1829. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-bc {
  1830. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif'); }
  1831. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1832. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-ml,
  1833. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mr {
  1834. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-sides.gif'); }
  1835. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1836. .x-nbr .x-btn-default-toolbar-small-focus .x-frame-mc {
  1837. background-color: #dbeeff;
  1838. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  1839. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1840. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tl,
  1841. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bl,
  1842. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tr,
  1843. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-br,
  1844. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-tc,
  1845. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-bc,
  1846. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tl,
  1847. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bl,
  1848. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tr,
  1849. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-br,
  1850. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-tc,
  1851. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-bc {
  1852. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif'); }
  1853. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1854. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-ml,
  1855. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mr,
  1856. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-ml,
  1857. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mr {
  1858. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-sides.gif'); }
  1859. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1860. .x-nbr .x-btn-default-toolbar-small-menu-active .x-frame-mc,
  1861. .x-nbr .x-btn-default-toolbar-small-pressed .x-frame-mc {
  1862. background-color: #bccfe5;
  1863. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  1864. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1865. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tl,
  1866. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bl,
  1867. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tr,
  1868. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-br,
  1869. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-tc,
  1870. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-bc {
  1871. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-corners.gif'); }
  1872. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1873. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-ml,
  1874. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mr {
  1875. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-disabled-sides.gif'); }
  1876. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1877. .x-nbr .x-btn-default-toolbar-small-disabled .x-frame-mc {
  1878. background-color: transparent; }
  1879. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1880. .x-nlg .x-btn-default-toolbar-small-over {
  1881. background-repeat: repeat-x;
  1882. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-over-bg.gif'); }
  1883. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1884. .x-nlg .x-btn-default-toolbar-small-focus {
  1885. background-repeat: repeat-x;
  1886. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-focus-bg.gif'); }
  1887. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1888. .x-nlg .x-btn-default-toolbar-small-menu-active,
  1889. .x-nlg .x-btn-default-toolbar-small-pressed {
  1890. background-repeat: repeat-x;
  1891. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-small-pressed-bg.gif'); }
  1892. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1893. .x-btn-default-toolbar-medium {
  1894. border-color: transparent; }
  1895. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1896. .x-btn-default-toolbar-medium {
  1897. padding: 3px 3px 3px 3px;
  1898. border-width: 1px;
  1899. border-style: solid;
  1900. background-color: transparent; }
  1901. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1902. .x-nlg .x-btn-default-toolbar-medium-mc {
  1903. background-color: transparent; }
  1904. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1905. .x-nbr .x-btn-default-toolbar-medium {
  1906. padding: 0 !important;
  1907. border-width: 0 !important;
  1908. -moz-border-radius: 0px;
  1909. -webkit-border-radius: 0px;
  1910. -o-border-radius: 0px;
  1911. -ms-border-radius: 0px;
  1912. -khtml-border-radius: 0px;
  1913. border-radius: 0px;
  1914. background-color: transparent;
  1915. background-position: 1100303px 1000303px; }
  1916. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1917. .x-nbr .x-btn-default-toolbar-medium-tl,
  1918. .x-nbr .x-btn-default-toolbar-medium-bl,
  1919. .x-nbr .x-btn-default-toolbar-medium-tr,
  1920. .x-nbr .x-btn-default-toolbar-medium-br,
  1921. .x-nbr .x-btn-default-toolbar-medium-tc,
  1922. .x-nbr .x-btn-default-toolbar-medium-bc,
  1923. .x-nbr .x-btn-default-toolbar-medium-ml,
  1924. .x-nbr .x-btn-default-toolbar-medium-mr {
  1925. zoom: 1; }
  1926. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1927. .x-nbr .x-btn-default-toolbar-medium-ml,
  1928. .x-nbr .x-btn-default-toolbar-medium-mr {
  1929. zoom: 1; }
  1930. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1931. .x-nbr .x-btn-default-toolbar-medium-mc {
  1932. padding: 1px 1px 1px 1px; }
  1933. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  1934. .x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,
  1935. .x-strict .x-ie7 .x-btn-default-toolbar-medium-bl {
  1936. position: relative;
  1937. right: 0; }
  1938. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1939. .x-btn-default-toolbar-medium .x-btn-inner {
  1940. font-size: 11px;
  1941. font-weight: normal;
  1942. font-family: tahoma, arial, verdana, sans-serif;
  1943. color: #333333;
  1944. background-repeat: no-repeat;
  1945. padding: 0 3px; }
  1946. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1947. .x-btn-default-toolbar-medium-icon button,
  1948. .x-btn-default-toolbar-medium-icon a,
  1949. .x-btn-default-toolbar-medium-icon .x-btn-inner,
  1950. .x-btn-default-toolbar-medium-noicon button,
  1951. .x-btn-default-toolbar-medium-noicon a,
  1952. .x-btn-default-toolbar-medium-noicon .x-btn-inner {
  1953. height: 24px;
  1954. line-height: 24px; }
  1955. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1956. .x-btn-default-toolbar-medium-icon button, .x-btn-default-toolbar-medium-icon a {
  1957. padding: 0; }
  1958. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1959. .x-btn-default-toolbar-medium-icon .x-btn-inner {
  1960. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  1961. width: 24px;
  1962. padding: 0; }
  1963. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1964. .x-btn-default-toolbar-medium-icon .x-btn-icon {
  1965. width: 24px;
  1966. height: 24px;
  1967. top: 0;
  1968. left: 0;
  1969. bottom: 0;
  1970. right: 0; }
  1971. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1972. .x-btn-default-toolbar-medium-icon-text-left button, .x-btn-default-toolbar-medium-icon-text-left a {
  1973. height: 24px; }
  1974. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1975. .x-btn-default-toolbar-medium-icon-text-left .x-btn-inner {
  1976. height: 24px;
  1977. line-height: 24px;
  1978. padding-left: 28px; }
  1979. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1980. .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon {
  1981. width: 24px;
  1982. height: auto;
  1983. top: 0;
  1984. left: 0;
  1985. bottom: 0;
  1986. right: auto; }
  1987. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1988. .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 {
  1989. height: 24px; }
  1990. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1991. .x-btn-default-toolbar-medium-icon-text-right button, .x-btn-default-toolbar-medium-icon-text-right a {
  1992. height: 24px; }
  1993. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1994. .x-btn-default-toolbar-medium-icon-text-right .x-btn-inner {
  1995. height: 24px;
  1996. line-height: 24px;
  1997. padding-right: 28px !important; }
  1998. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  1999. .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon {
  2000. width: 24px;
  2001. height: auto;
  2002. top: 0;
  2003. left: auto;
  2004. bottom: 0;
  2005. right: 0; }
  2006. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2007. .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 {
  2008. height: 24px; }
  2009. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2010. .x-btn-default-toolbar-medium-icon-text-top .x-btn-inner {
  2011. padding-top: 28px; }
  2012. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2013. .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon {
  2014. width: auto;
  2015. height: 24px;
  2016. top: 0;
  2017. left: 0;
  2018. bottom: auto;
  2019. right: 0; }
  2020. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2021. .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 {
  2022. width: 24px; }
  2023. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2024. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner {
  2025. padding-bottom: 28px; }
  2026. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2027. .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon {
  2028. width: auto;
  2029. height: 24px;
  2030. top: auto;
  2031. left: 0;
  2032. bottom: 0;
  2033. right: 0; }
  2034. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2035. .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 {
  2036. width: 24px; }
  2037. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2038. .x-btn-default-toolbar-medium-over {
  2039. border-color: #81a4d0;
  2040. background-image: none;
  2041. background-color: #dbeeff;
  2042. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2043. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2044. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2045. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2046. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2047. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2048. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2049. .x-btn-default-toolbar-medium-focus {
  2050. border-color: #81a4d0;
  2051. background-image: none;
  2052. background-color: #dbeeff;
  2053. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2054. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2055. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2056. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2057. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2058. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2059. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2060. .x-btn-default-toolbar-medium-menu-active,
  2061. .x-btn-default-toolbar-medium-pressed {
  2062. border-color: #7a9ac4;
  2063. background-image: none;
  2064. background-color: #bccfe5;
  2065. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  2066. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2067. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2068. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2069. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2070. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2071. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2072. .x-btn-default-toolbar-medium-disabled {
  2073. background-image: none;
  2074. background-color: transparent; }
  2075. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2076. .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2077. color: #333333 !important; }
  2078. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2079. .x-ie .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2080. color: #595959 !important; }
  2081. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2082. .x-ie6 .x-btn-default-toolbar-medium-disabled .x-btn-inner {
  2083. color: #8c8c8c !important; }
  2084. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2085. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tl,
  2086. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bl,
  2087. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tr,
  2088. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-br,
  2089. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-tc,
  2090. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-bc {
  2091. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif'); }
  2092. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2093. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-ml,
  2094. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mr {
  2095. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-sides.gif'); }
  2096. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2097. .x-nbr .x-btn-default-toolbar-medium-over .x-frame-mc {
  2098. background-color: #dbeeff;
  2099. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2100. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2101. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tl,
  2102. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bl,
  2103. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tr,
  2104. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-br,
  2105. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-tc,
  2106. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-bc {
  2107. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif'); }
  2108. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2109. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-ml,
  2110. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mr {
  2111. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-sides.gif'); }
  2112. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2113. .x-nbr .x-btn-default-toolbar-medium-focus .x-frame-mc {
  2114. background-color: #dbeeff;
  2115. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2116. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2117. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tl,
  2118. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bl,
  2119. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tr,
  2120. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-br,
  2121. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-tc,
  2122. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-bc,
  2123. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tl,
  2124. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bl,
  2125. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tr,
  2126. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-br,
  2127. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-tc,
  2128. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-bc {
  2129. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif'); }
  2130. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2131. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-ml,
  2132. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mr,
  2133. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-ml,
  2134. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mr {
  2135. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-sides.gif'); }
  2136. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2137. .x-nbr .x-btn-default-toolbar-medium-menu-active .x-frame-mc,
  2138. .x-nbr .x-btn-default-toolbar-medium-pressed .x-frame-mc {
  2139. background-color: #bccfe5;
  2140. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2141. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2142. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tl,
  2143. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bl,
  2144. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tr,
  2145. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-br,
  2146. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-tc,
  2147. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-bc {
  2148. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-corners.gif'); }
  2149. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2150. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-ml,
  2151. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mr {
  2152. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-disabled-sides.gif'); }
  2153. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2154. .x-nbr .x-btn-default-toolbar-medium-disabled .x-frame-mc {
  2155. background-color: transparent; }
  2156. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2157. .x-nlg .x-btn-default-toolbar-medium-over {
  2158. background-repeat: repeat-x;
  2159. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-over-bg.gif'); }
  2160. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2161. .x-nlg .x-btn-default-toolbar-medium-focus {
  2162. background-repeat: repeat-x;
  2163. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-focus-bg.gif'); }
  2164. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2165. .x-nlg .x-btn-default-toolbar-medium-menu-active,
  2166. .x-nlg .x-btn-default-toolbar-medium-pressed {
  2167. background-repeat: repeat-x;
  2168. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-bg.gif'); }
  2169. /* line 633, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2170. .x-btn-default-toolbar-large {
  2171. border-color: transparent; }
  2172. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2173. .x-btn-default-toolbar-large {
  2174. padding: 3px 3px 3px 3px;
  2175. border-width: 1px;
  2176. border-style: solid;
  2177. background-color: transparent; }
  2178. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2179. .x-nlg .x-btn-default-toolbar-large-mc {
  2180. background-color: transparent; }
  2181. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2182. .x-nbr .x-btn-default-toolbar-large {
  2183. padding: 0 !important;
  2184. border-width: 0 !important;
  2185. -moz-border-radius: 0px;
  2186. -webkit-border-radius: 0px;
  2187. -o-border-radius: 0px;
  2188. -ms-border-radius: 0px;
  2189. -khtml-border-radius: 0px;
  2190. border-radius: 0px;
  2191. background-color: transparent;
  2192. background-position: 1100303px 1000303px; }
  2193. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2194. .x-nbr .x-btn-default-toolbar-large-tl,
  2195. .x-nbr .x-btn-default-toolbar-large-bl,
  2196. .x-nbr .x-btn-default-toolbar-large-tr,
  2197. .x-nbr .x-btn-default-toolbar-large-br,
  2198. .x-nbr .x-btn-default-toolbar-large-tc,
  2199. .x-nbr .x-btn-default-toolbar-large-bc,
  2200. .x-nbr .x-btn-default-toolbar-large-ml,
  2201. .x-nbr .x-btn-default-toolbar-large-mr {
  2202. zoom: 1; }
  2203. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2204. .x-nbr .x-btn-default-toolbar-large-ml,
  2205. .x-nbr .x-btn-default-toolbar-large-mr {
  2206. zoom: 1; }
  2207. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2208. .x-nbr .x-btn-default-toolbar-large-mc {
  2209. padding: 1px 1px 1px 1px; }
  2210. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2211. .x-strict .x-ie7 .x-btn-default-toolbar-large-tl,
  2212. .x-strict .x-ie7 .x-btn-default-toolbar-large-bl {
  2213. position: relative;
  2214. right: 0; }
  2215. /* line 639, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2216. .x-btn-default-toolbar-large .x-btn-inner {
  2217. font-size: 11px;
  2218. font-weight: normal;
  2219. font-family: tahoma, arial, verdana, sans-serif;
  2220. color: #333333;
  2221. background-repeat: no-repeat;
  2222. padding: 0 3px; }
  2223. /* line 652, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2224. .x-btn-default-toolbar-large-icon button,
  2225. .x-btn-default-toolbar-large-icon a,
  2226. .x-btn-default-toolbar-large-icon .x-btn-inner,
  2227. .x-btn-default-toolbar-large-noicon button,
  2228. .x-btn-default-toolbar-large-noicon a,
  2229. .x-btn-default-toolbar-large-noicon .x-btn-inner {
  2230. height: 32px;
  2231. line-height: 32px; }
  2232. /* line 661, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2233. .x-btn-default-toolbar-large-icon button, .x-btn-default-toolbar-large-icon a {
  2234. padding: 0; }
  2235. /* line 665, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2236. .x-btn-default-toolbar-large-icon .x-btn-inner {
  2237. /* even though there is no text we set a width and padding as buttons shrink-wrap around this element */
  2238. width: 32px;
  2239. padding: 0; }
  2240. /* line 671, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2241. .x-btn-default-toolbar-large-icon .x-btn-icon {
  2242. width: 32px;
  2243. height: 32px;
  2244. top: 0;
  2245. left: 0;
  2246. bottom: 0;
  2247. right: 0; }
  2248. /* line 683, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2249. .x-btn-default-toolbar-large-icon-text-left button, .x-btn-default-toolbar-large-icon-text-left a {
  2250. height: 32px; }
  2251. /* line 686, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2252. .x-btn-default-toolbar-large-icon-text-left .x-btn-inner {
  2253. height: 32px;
  2254. line-height: 32px;
  2255. padding-left: 36px; }
  2256. /* line 692, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2257. .x-btn-default-toolbar-large-icon-text-left .x-btn-icon {
  2258. width: 32px;
  2259. height: auto;
  2260. top: 0;
  2261. left: 0;
  2262. bottom: 0;
  2263. right: auto; }
  2264. /* line 701, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2265. .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 {
  2266. height: 32px; }
  2267. /* line 709, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2268. .x-btn-default-toolbar-large-icon-text-right button, .x-btn-default-toolbar-large-icon-text-right a {
  2269. height: 32px; }
  2270. /* line 712, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2271. .x-btn-default-toolbar-large-icon-text-right .x-btn-inner {
  2272. height: 32px;
  2273. line-height: 32px;
  2274. padding-right: 36px !important; }
  2275. /* line 718, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2276. .x-btn-default-toolbar-large-icon-text-right .x-btn-icon {
  2277. width: 32px;
  2278. height: auto;
  2279. top: 0;
  2280. left: auto;
  2281. bottom: 0;
  2282. right: 0; }
  2283. /* line 727, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2284. .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 {
  2285. height: 32px; }
  2286. /* line 734, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2287. .x-btn-default-toolbar-large-icon-text-top .x-btn-inner {
  2288. padding-top: 36px; }
  2289. /* line 738, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2290. .x-btn-default-toolbar-large-icon-text-top .x-btn-icon {
  2291. width: auto;
  2292. height: 32px;
  2293. top: 0;
  2294. left: 0;
  2295. bottom: auto;
  2296. right: 0; }
  2297. /* line 747, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2298. .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 {
  2299. width: 32px; }
  2300. /* line 754, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2301. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner {
  2302. padding-bottom: 36px; }
  2303. /* line 758, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2304. .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon {
  2305. width: auto;
  2306. height: 32px;
  2307. top: auto;
  2308. left: 0;
  2309. bottom: 0;
  2310. right: 0; }
  2311. /* line 767, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2312. .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 {
  2313. width: 32px; }
  2314. /* line 773, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2315. .x-btn-default-toolbar-large-over {
  2316. border-color: #81a4d0;
  2317. background-image: none;
  2318. background-color: #dbeeff;
  2319. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2320. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2321. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2322. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2323. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2324. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2325. /* line 797, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2326. .x-btn-default-toolbar-large-focus {
  2327. border-color: #81a4d0;
  2328. background-image: none;
  2329. background-color: #dbeeff;
  2330. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5));
  2331. background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2332. background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2333. background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2334. background-image: -ms-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5);
  2335. background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); }
  2336. /* line 822, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2337. .x-btn-default-toolbar-large-menu-active,
  2338. .x-btn-default-toolbar-large-pressed {
  2339. border-color: #7a9ac4;
  2340. background-image: none;
  2341. background-color: #bccfe5;
  2342. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5));
  2343. background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2344. background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2345. background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2346. background-image: -ms-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5);
  2347. background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); }
  2348. /* line 846, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2349. .x-btn-default-toolbar-large-disabled {
  2350. background-image: none;
  2351. background-color: transparent; }
  2352. /* line 854, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2353. .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2354. color: #333333 !important; }
  2355. /* line 871, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2356. .x-ie .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2357. color: #595959 !important; }
  2358. /* line 879, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2359. .x-ie6 .x-btn-default-toolbar-large-disabled .x-btn-inner {
  2360. color: #8c8c8c !important; }
  2361. /* line 894, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2362. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tl,
  2363. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bl,
  2364. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tr,
  2365. .x-nbr .x-btn-default-toolbar-large-over .x-frame-br,
  2366. .x-nbr .x-btn-default-toolbar-large-over .x-frame-tc,
  2367. .x-nbr .x-btn-default-toolbar-large-over .x-frame-bc {
  2368. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif'); }
  2369. /* line 898, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2370. .x-nbr .x-btn-default-toolbar-large-over .x-frame-ml,
  2371. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mr {
  2372. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-sides.gif'); }
  2373. /* line 901, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2374. .x-nbr .x-btn-default-toolbar-large-over .x-frame-mc {
  2375. background-color: #dbeeff;
  2376. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2377. /* line 915, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2378. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tl,
  2379. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bl,
  2380. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tr,
  2381. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-br,
  2382. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-tc,
  2383. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-bc {
  2384. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif'); }
  2385. /* line 919, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2386. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-ml,
  2387. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mr {
  2388. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-sides.gif'); }
  2389. /* line 922, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2390. .x-nbr .x-btn-default-toolbar-large-focus .x-frame-mc {
  2391. background-color: #dbeeff;
  2392. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2393. /* line 937, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2394. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tl,
  2395. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bl,
  2396. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tr,
  2397. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-br,
  2398. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-tc,
  2399. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-bc,
  2400. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tl,
  2401. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bl,
  2402. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tr,
  2403. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-br,
  2404. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-tc,
  2405. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-bc {
  2406. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif'); }
  2407. /* line 941, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2408. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-ml,
  2409. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mr,
  2410. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-ml,
  2411. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mr {
  2412. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-sides.gif'); }
  2413. /* line 944, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2414. .x-nbr .x-btn-default-toolbar-large-menu-active .x-frame-mc,
  2415. .x-nbr .x-btn-default-toolbar-large-pressed .x-frame-mc {
  2416. background-color: #bccfe5;
  2417. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2418. /* line 958, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2419. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tl,
  2420. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bl,
  2421. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tr,
  2422. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-br,
  2423. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-tc,
  2424. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-bc {
  2425. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-corners.gif'); }
  2426. /* line 962, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2427. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-ml,
  2428. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mr {
  2429. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-disabled-sides.gif'); }
  2430. /* line 965, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2431. .x-nbr .x-btn-default-toolbar-large-disabled .x-frame-mc {
  2432. background-color: transparent; }
  2433. /* line 987, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2434. .x-nlg .x-btn-default-toolbar-large-over {
  2435. background-repeat: repeat-x;
  2436. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-over-bg.gif'); }
  2437. /* line 996, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2438. .x-nlg .x-btn-default-toolbar-large-focus {
  2439. background-repeat: repeat-x;
  2440. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-focus-bg.gif'); }
  2441. /* line 1006, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2442. .x-nlg .x-btn-default-toolbar-large-menu-active,
  2443. .x-nlg .x-btn-default-toolbar-large-pressed {
  2444. background-repeat: repeat-x;
  2445. background-image: url('../../resources/themes/images/default/btn/btn-default-toolbar-large-pressed-bg.gif'); }
  2446. /* line 571, ../themes/stylesheets/ext4/default/widgets/_button.scss */
  2447. .x-btn-default-toolbar-small-disabled,
  2448. .x-btn-default-toolbar-medium-disabled,
  2449. .x-btn-default-toolbar-large-disabled {
  2450. border-color: transparent;
  2451. background-image: none;
  2452. background: transparent; }
  2453. /* line 2, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2454. .x-btn-group {
  2455. position: relative;
  2456. overflow: hidden; }
  2457. /* line 7, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2458. .x-btn-group-body {
  2459. position: relative;
  2460. zoom: 1;
  2461. padding: 0 1px; }
  2462. /* line 11, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2463. .x-btn-group-body .x-table-layout-cell {
  2464. vertical-align: top; }
  2465. /* line 16, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2466. .x-btn-group-header-text {
  2467. white-space: nowrap; }
  2468. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2469. .x-btn-group-default-framed {
  2470. padding: 1px 1px 1px 1px;
  2471. border-width: 1px;
  2472. border-style: solid;
  2473. background-color: #d0def0; }
  2474. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2475. .x-nlg .x-btn-group-default-framed-mc {
  2476. background-color: #d0def0; }
  2477. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2478. .x-nbr .x-btn-group-default-framed {
  2479. padding: 0 !important;
  2480. border-width: 0 !important;
  2481. -moz-border-radius: 0px;
  2482. -webkit-border-radius: 0px;
  2483. -o-border-radius: 0px;
  2484. -ms-border-radius: 0px;
  2485. -khtml-border-radius: 0px;
  2486. border-radius: 0px;
  2487. background-color: transparent;
  2488. background-position: 1000202px 1000202px; }
  2489. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2490. .x-nbr .x-btn-group-default-framed-tl,
  2491. .x-nbr .x-btn-group-default-framed-bl,
  2492. .x-nbr .x-btn-group-default-framed-tr,
  2493. .x-nbr .x-btn-group-default-framed-br,
  2494. .x-nbr .x-btn-group-default-framed-tc,
  2495. .x-nbr .x-btn-group-default-framed-bc,
  2496. .x-nbr .x-btn-group-default-framed-ml,
  2497. .x-nbr .x-btn-group-default-framed-mr {
  2498. zoom: 1;
  2499. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif'); }
  2500. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2501. .x-nbr .x-btn-group-default-framed-ml,
  2502. .x-nbr .x-btn-group-default-framed-mr {
  2503. zoom: 1;
  2504. background-image: url('../../resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif');
  2505. background-position: 0 0;
  2506. background-repeat: repeat-y; }
  2507. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2508. .x-nbr .x-btn-group-default-framed-mc {
  2509. padding: 0px 0px 0px 0px; }
  2510. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  2511. .x-strict .x-ie7 .x-btn-group-default-framed-tl,
  2512. .x-strict .x-ie7 .x-btn-group-default-framed-bl {
  2513. position: relative;
  2514. right: 0; }
  2515. /* line 56, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2516. .x-btn-group-default-framed {
  2517. border-color: #b7c8d7;
  2518. -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2519. -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2520. -o-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset;
  2521. box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; }
  2522. /* line 64, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2523. .x-btn-group-header-default-framed {
  2524. margin: 2px 2px 0 2px; }
  2525. /* line 68, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2526. .x-btn-group-header-body-default-framed {
  2527. padding: 1px 0;
  2528. background: #c2d8f0;
  2529. -moz-border-radius-topleft: 2px;
  2530. -webkit-border-top-left-radius: 2px;
  2531. -o-border-top-left-radius: 2px;
  2532. -ms-border-top-left-radius: 2px;
  2533. -khtml-border-top-left-radius: 2px;
  2534. border-top-left-radius: 2px;
  2535. -moz-border-radius-topright: 2px;
  2536. -webkit-border-top-right-radius: 2px;
  2537. -o-border-top-right-radius: 2px;
  2538. -ms-border-top-right-radius: 2px;
  2539. -khtml-border-top-right-radius: 2px;
  2540. border-top-right-radius: 2px; }
  2541. /* line 76, ../themes/stylesheets/ext4/default/widgets/_btn-group.scss */
  2542. .x-btn-group-header-text-default-framed {
  2543. font: normal 11px tahoma, arial, verdana, sans-serif;
  2544. color: #3e6aaa; }
  2545. /* line 2, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2546. .x-datepicker {
  2547. border: 1px solid #1b376c;
  2548. background-color: white;
  2549. position: relative; }
  2550. /* line 8, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2551. .x-datepicker a {
  2552. -moz-outline: 0 none;
  2553. outline: 0 none;
  2554. color: #15428b;
  2555. text-decoration: none;
  2556. border-width: 0; }
  2557. /* line 21, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2558. .x-datepicker-inner,
  2559. .x-datepicker-inner td,
  2560. .x-datepicker-inner th {
  2561. border-collapse: separate; }
  2562. /* line 25, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2563. .x-datepicker-header {
  2564. position: relative;
  2565. height: 26px;
  2566. background-image: none;
  2567. background-color: #23427c;
  2568. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c));
  2569. background-image: -webkit-linear-gradient(top, #264888, #1f3a6c);
  2570. background-image: -moz-linear-gradient(top, #264888, #1f3a6c);
  2571. background-image: -o-linear-gradient(top, #264888, #1f3a6c);
  2572. background-image: -ms-linear-gradient(top, #264888, #1f3a6c);
  2573. background-image: linear-gradient(top, #264888, #1f3a6c); }
  2574. /* line 38, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2575. .x-datepicker-prev,
  2576. .x-datepicker-next {
  2577. position: absolute;
  2578. top: 5px;
  2579. width: 18px; }
  2580. /* line 44, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2581. .x-datepicker-prev a,
  2582. .x-datepicker-next a {
  2583. display: block;
  2584. width: 16px;
  2585. height: 16px;
  2586. background-position: top;
  2587. background-repeat: no-repeat;
  2588. cursor: pointer;
  2589. text-decoration: none !important;
  2590. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  2591. opacity: 0.7; }
  2592. /* line 59, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2593. .x-datepicker-prev a:hover,
  2594. .x-datepicker-next a:hover {
  2595. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  2596. opacity: 1; }
  2597. /* line 65, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2598. .x-datepicker-next {
  2599. right: 5px; }
  2600. /* line 68, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2601. .x-datepicker-next a {
  2602. background-image: url('../../resources/themes/images/default/shared/right-btn.gif'); }
  2603. /* line 73, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2604. .x-datepicker-prev {
  2605. left: 5px; }
  2606. /* line 76, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2607. .x-datepicker-prev a {
  2608. background-image: url('../../resources/themes/images/default/shared/left-btn.gif'); }
  2609. /* line 82, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2610. .x-item-disabled .x-datepicker-prev a:hover,
  2611. .x-item-disabled .x-datepicker-next a:hover {
  2612. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  2613. opacity: 0.6; }
  2614. /* line 86, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2615. .x-datepicker-month {
  2616. padding-top: 3px; }
  2617. /* line 99, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2618. .x-datepicker-month .x-btn,
  2619. .x-datepicker-month button,
  2620. .x-datepicker-month .x-btn-tc,
  2621. .x-datepicker-month .x-btn-tl,
  2622. .x-datepicker-month .x-btn-tr,
  2623. .x-datepicker-month .x-btn-mc,
  2624. .x-datepicker-month .x-btn-ml,
  2625. .x-datepicker-month .x-btn-mr,
  2626. .x-datepicker-month .x-btn-bc,
  2627. .x-datepicker-month .x-btn-bl,
  2628. .x-datepicker-month .x-btn-br {
  2629. background: transparent !important;
  2630. border-width: 0 !important; }
  2631. /* line 104, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2632. .x-datepicker-month span {
  2633. color: #fff !important; }
  2634. /* line 108, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2635. .x-datepicker-month .x-btn-split-right {
  2636. background-image: url('../../resources/themes/images/default/button/s-arrow-light.gif');
  2637. padding-right: 12px; }
  2638. /* line 114, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2639. .x-datepicker-next {
  2640. text-align: right; }
  2641. /* line 118, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2642. .x-datepicker-month {
  2643. text-align: center; }
  2644. /* line 122, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2645. .x-datepicker-month button {
  2646. color: white !important; }
  2647. /* line 128, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2648. table.x-datepicker-inner {
  2649. width: 100%;
  2650. table-layout: fixed; }
  2651. /* line 132, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2652. table.x-datepicker-inner th {
  2653. width: 25px;
  2654. height: 19px;
  2655. padding: 0;
  2656. color: #233d6d;
  2657. font: normal 10px tahoma, arial, verdana, sans-serif;
  2658. text-align: right;
  2659. border-bottom: 1px solid #b2d1f5;
  2660. border-collapse: separate;
  2661. background-image: none;
  2662. background-color: #dfecfb;
  2663. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9));
  2664. background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9);
  2665. background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9);
  2666. background-image: -o-linear-gradient(top, #edf4fd, #cde1f9);
  2667. background-image: -ms-linear-gradient(top, #edf4fd, #cde1f9);
  2668. background-image: linear-gradient(top, #edf4fd, #cde1f9);
  2669. cursor: default; }
  2670. /* line 153, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2671. table.x-datepicker-inner th span {
  2672. display: block;
  2673. padding-right: 7px; }
  2674. /* line 159, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2675. table.x-datepicker-inner tr {
  2676. height: 20px; }
  2677. /* line 163, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2678. table.x-datepicker-inner td {
  2679. border: 1px solid;
  2680. height: 17px;
  2681. border-color: white;
  2682. text-align: right;
  2683. padding: 0; }
  2684. /* line 171, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2685. table.x-datepicker-inner a {
  2686. padding-right: 4px;
  2687. display: block;
  2688. zoom: 1;
  2689. font: normal 11px tahoma, arial, verdana, sans-serif;
  2690. color: black;
  2691. text-decoration: none;
  2692. text-align: right; }
  2693. /* line 184, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2694. table.x-datepicker-inner .x-datepicker-active {
  2695. cursor: pointer;
  2696. color: black; }
  2697. /* line 190, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2698. table.x-datepicker-inner .x-datepicker-selected a {
  2699. background: repeat-x left top;
  2700. background-color: #dae5f3;
  2701. border: 1px solid #8db2e3; }
  2702. /* line 196, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2703. table.x-datepicker-inner .x-datepicker-selected span {
  2704. font-weight: bold; }
  2705. /* line 202, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2706. table.x-datepicker-inner .x-datepicker-today a {
  2707. border: 1px solid;
  2708. border-color: darkred; }
  2709. /* line 210, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2710. table.x-datepicker-inner .x-datepicker-prevday a,
  2711. table.x-datepicker-inner .x-datepicker-nextday a {
  2712. text-decoration: none !important;
  2713. color: #aaa; }
  2714. /* line 217, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2715. table.x-datepicker-inner a:hover,
  2716. table.x-datepicker-inner .x-datepicker-disabled a:hover {
  2717. text-decoration: none !important;
  2718. color: #000;
  2719. background-color: #ddecfe; }
  2720. /* line 225, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2721. table.x-datepicker-inner .x-datepicker-disabled a {
  2722. cursor: default;
  2723. background-color: #eee;
  2724. color: #bbb; }
  2725. /* line 233, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2726. .x-datepicker-footer,
  2727. .x-monthpicker-buttons {
  2728. position: relative;
  2729. border-top: 1px solid #b2d1f5;
  2730. background-image: none;
  2731. background-color: #dfecfb;
  2732. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee));
  2733. background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2734. background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2735. background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2736. background-image: -ms-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2737. background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee);
  2738. text-align: center; }
  2739. /* line 246, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2740. .x-datepicker-footer .x-btn,
  2741. .x-monthpicker-buttons .x-btn {
  2742. position: relative;
  2743. margin: 4px; }
  2744. /* line 252, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2745. .x-item-disabled .x-datepicker-inner a:hover {
  2746. background: none; }
  2747. /* line 257, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2748. .x-datepicker .x-monthpicker {
  2749. position: absolute;
  2750. left: 0;
  2751. top: 0; }
  2752. /* line 264, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2753. .x-monthpicker {
  2754. border: 1px solid #1b376c;
  2755. background-color: white; }
  2756. /* line 270, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2757. .x-monthpicker-months,
  2758. .x-monthpicker-years {
  2759. float: left;
  2760. height: 167px;
  2761. width: 88px; }
  2762. /* line 277, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2763. .x-monthpicker-item {
  2764. float: left;
  2765. margin: 4px 0 5px 0;
  2766. font: normal 11px tahoma, arial, verdana, sans-serif;
  2767. text-align: center;
  2768. vertical-align: middle;
  2769. height: 18px;
  2770. width: 43px;
  2771. border: 0 none; }
  2772. /* line 291, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2773. .x-monthpicker-item a {
  2774. display: block;
  2775. margin: 0 5px;
  2776. text-decoration: none;
  2777. color: #15428b;
  2778. border: 1px solid white;
  2779. line-height: 17px; }
  2780. /* line 304, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2781. .x-monthpicker-item a:hover {
  2782. background-color: #ddecfe; }
  2783. /* line 308, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2784. .x-monthpicker-item a.x-monthpicker-selected {
  2785. background-color: #dfecfb;
  2786. border: 1px solid #8db2e3; }
  2787. /* line 315, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2788. .x-monthpicker-months {
  2789. border-right: 1px solid #1b376c;
  2790. width: 87px; }
  2791. /* line 320, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2792. .x-monthpicker-years .x-monthpicker-item {
  2793. width: 44px; }
  2794. /* line 324, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2795. .x-monthpicker-yearnav {
  2796. height: 28px; }
  2797. /* line 327, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2798. .x-monthpicker-yearnav button {
  2799. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  2800. height: 15px;
  2801. width: 15px;
  2802. padding: 0;
  2803. margin: 6px 12px 5px 15px;
  2804. border: 0;
  2805. outline: 0 none; }
  2806. /* line 335, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2807. .x-monthpicker-yearnav button::-moz-focus-inner {
  2808. border: 0;
  2809. padding: 0; }
  2810. /* line 342, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2811. .x-monthpicker-yearnav-next {
  2812. background-position: 0 -120px; }
  2813. /* line 346, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2814. .x-monthpicker-yearnav-next-over {
  2815. cursor: pointer;
  2816. cursor: hand;
  2817. background-position: -15px -120px; }
  2818. /* line 352, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2819. .x-monthpicker-yearnav-prev {
  2820. background-position: 0 -105px; }
  2821. /* line 356, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2822. .x-monthpicker-yearnav-prev-over {
  2823. cursor: pointer;
  2824. cursor: hand;
  2825. background-position: -15px -105px; }
  2826. /* line 363, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2827. .x-monthpicker-small .x-monthpicker-item {
  2828. margin: 2px 0 2px 0; }
  2829. /* line 367, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2830. .x-monthpicker-small .x-monthpicker-yearnav {
  2831. height: 23px; }
  2832. /* line 371, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2833. .x-monthpicker-small .x-monthpicker-months, .x-monthpicker-small .x-monthpicker-years {
  2834. height: 136px; }
  2835. /* line 381, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2836. .x-quirks .x-ie7 .x-monthpicker-buttons .x-btn,
  2837. .x-quirks .x-ie8 .x-monthpicker-buttons .x-btn {
  2838. margin-top: 2px; }
  2839. /* line 387, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2840. .x-quirks .x-monthpicker-small .x-monthpicker-yearnav button {
  2841. margin-top: 3px;
  2842. margin-bottom: 3px; }
  2843. /* line 393, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2844. .x-ie6 .x-monthpicker-small .x-monthpicker-yearnav button {
  2845. margin-top: 3px;
  2846. margin-bottom: 3px; }
  2847. /* line 403, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2848. .x-nlg .x-datepicker-header {
  2849. background-image: url('../../resources/themes/images/default/datepicker/datepicker-header-bg.gif');
  2850. background-repeat: repeat-x;
  2851. background-position: top left; }
  2852. /* line 412, ../themes/stylesheets/ext4/default/widgets/_datepicker.scss */
  2853. .x-nlg .x-datepicker-footer,
  2854. .x-nlg .x-monthpicker-buttons {
  2855. background-image: url('../../resources/themes/images/default/datepicker/datepicker-footer-bg.gif');
  2856. background-repeat: repeat-x;
  2857. background-position: top left; }
  2858. /* line 2, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2859. .x-color-picker {
  2860. width: 144px;
  2861. height: 90px;
  2862. cursor: pointer; }
  2863. /* line 8, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2864. .x-color-picker a {
  2865. border: 1px solid #fff;
  2866. float: left;
  2867. padding: 2px;
  2868. text-decoration: none;
  2869. -moz-outline: 0 none;
  2870. outline: 0 none;
  2871. cursor: pointer; }
  2872. /* line 24, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2873. .x-color-picker a:hover,
  2874. .x-color-picker a.x-color-picker-selected {
  2875. border-color: #8bb8f3;
  2876. background-color: #deecfd; }
  2877. /* line 29, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2878. .x-color-picker em {
  2879. display: block;
  2880. border: 1px solid #aca899; }
  2881. /* line 35, ../themes/stylesheets/ext4/default/widgets/_colorpicker.scss */
  2882. .x-color-picker em span {
  2883. cursor: pointer;
  2884. display: block;
  2885. height: 10px;
  2886. width: 10px;
  2887. line-height: 10px; }
  2888. /* line 5, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2889. .x-menu-body {
  2890. user-select: none;
  2891. -o-user-select: none;
  2892. -ms-user-select: none;
  2893. -moz-user-select: -moz-none;
  2894. -webkit-user-select: none;
  2895. cursor: default;
  2896. background: #f0f0f0 !important;
  2897. padding: 2px; }
  2898. /* line 11, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2899. .x-menu-item .x-form-text {
  2900. user-select: text;
  2901. -webkit-user-select: text;
  2902. -o-user-select: text;
  2903. -ie-user-select: text;
  2904. -moz-user-select: text;
  2905. -ie-user-select: text; }
  2906. /* line 20, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2907. .x-menu-icon-separator {
  2908. position: absolute;
  2909. top: 0px;
  2910. left: 27px;
  2911. z-index: 0;
  2912. border-left: solid 1px #e0e0e0;
  2913. background-color: white;
  2914. width: 2px;
  2915. overflow: hidden; }
  2916. /* line 32, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2917. .x-menu-plain .x-menu-icon-separator {
  2918. display: none; }
  2919. /* line 37, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2920. .x-menu-focus {
  2921. display: block;
  2922. position: absolute;
  2923. top: -10px;
  2924. left: -10px;
  2925. width: 0px;
  2926. height: 0px; }
  2927. /* line 46, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2928. .x-menu-item {
  2929. white-space: nowrap;
  2930. overflow: hidden;
  2931. z-index: 1; }
  2932. /* line 52, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2933. .x-menu-item-cmp {
  2934. margin-bottom: 1px; }
  2935. /* line 56, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2936. .x-menu-item-link {
  2937. display: block;
  2938. margin: 1px;
  2939. padding: 6px 2px 3px 32px;
  2940. text-decoration: none !important;
  2941. line-height: 16px;
  2942. cursor: default; }
  2943. /* line 75, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2944. .x-menu-item-icon {
  2945. width: 16px;
  2946. height: 16px;
  2947. position: absolute;
  2948. top: 5px;
  2949. left: 4px;
  2950. background: no-repeat center center; }
  2951. /* line 84, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2952. .x-menu-item-text {
  2953. font-size: 11px;
  2954. color: #222222; }
  2955. /* line 90, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2956. .x-menu-item-checked .x-menu-item-icon {
  2957. background-image: url('../../resources/themes/images/default/menu/checked.gif'); }
  2958. /* line 93, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2959. .x-menu-item-checked .x-menu-group-icon {
  2960. background-image: url('../../resources/themes/images/default/menu/group-checked.gif'); }
  2961. /* line 99, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2962. .x-menu-item-unchecked .x-menu-item-icon {
  2963. background-image: url('../../resources/themes/images/default/menu/unchecked.gif'); }
  2964. /* line 102, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2965. .x-menu-item-unchecked .x-menu-group-icon {
  2966. background-image: none; }
  2967. /* line 107, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2968. .x-menu-item-separator {
  2969. height: 2px;
  2970. border-top: solid 1px #e0e0e0;
  2971. background-color: white;
  2972. margin: 2px 0px;
  2973. overflow: hidden; }
  2974. /* line 115, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2975. .x-menu-item-arrow {
  2976. position: absolute;
  2977. width: 12px;
  2978. height: 9px;
  2979. top: 9px;
  2980. right: 0px;
  2981. background: no-repeat center center;
  2982. background-image: url('../../resources/themes/images/default/menu/menu-parent.gif'); }
  2983. /* line 125, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2984. .x-menu-item-indent {
  2985. margin-left: 31px;
  2986. /* The 2px is the width of the seperator */ }
  2987. /* line 129, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2988. .x-menu-item-active {
  2989. cursor: pointer; }
  2990. /* line 132, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  2991. .x-menu-item-active .x-menu-item-link {
  2992. background-image: none;
  2993. background-color: #d9e8fb;
  2994. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9));
  2995. background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9);
  2996. background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9);
  2997. background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9);
  2998. background-image: -ms-linear-gradient(top, #e7f0fc, #c7ddf9);
  2999. background-image: linear-gradient(top, #e7f0fc, #c7ddf9);
  3000. margin: 0px;
  3001. border: 1px solid #a9cbf5;
  3002. cursor: pointer;
  3003. -moz-border-radius: 3px;
  3004. -webkit-border-radius: 3px;
  3005. -o-border-radius: 3px;
  3006. -ms-border-radius: 3px;
  3007. -khtml-border-radius: 3px;
  3008. border-radius: 3px; }
  3009. /* line 141, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3010. .x-menu-item-disabled {
  3011. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3012. opacity: 0.5; }
  3013. /* line 148, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3014. .x-ie .x-menu-item-disabled .x-menu-item-icon {
  3015. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  3016. opacity: 0.5; }
  3017. /* line 152, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3018. .x-ie .x-menu-item-disabled .x-menu-item-text {
  3019. background-color: transparent; }
  3020. /* line 159, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3021. .x-strict .x-ie7m .x-ie .x-menu-icon-separator {
  3022. width: 1px; }
  3023. /* line 163, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3024. .x-strict .x-ie7m .x-ie .x-menu-item-separator {
  3025. height: 1px; }
  3026. /* line 172, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3027. .x-ie6 .x-menu-item-link,
  3028. .x-ie7 .x-menu-item-link,
  3029. .x-quirks .x-ie8 .x-menu-item-link {
  3030. padding-bottom: 2px; }
  3031. /* line 180, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3032. .x-nlg .x-menu-item-active .x-menu-item-link {
  3033. background: #d9e8fb repeat-x left top;
  3034. background-image: url('../../resources/themes/images/default/menu/menu-item-active-bg.gif'); }
  3035. /* line 187, ../themes/stylesheets/ext4/default/widgets/_menu.scss */
  3036. .x-menu-date-item {
  3037. border-color: #99BBE8; }
  3038. /* line 4, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3039. .x-panel .x-grid-body {
  3040. background: white;
  3041. border-color: #99bce8;
  3042. border-style: solid;
  3043. border-width: 1px;
  3044. border-top-color: #c5c5c5; }
  3045. /* line 13, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3046. .x-panel .x-grid-header-ct-hidden {
  3047. visibility: hidden; }
  3048. /* line 18, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3049. .x-grid-empty {
  3050. padding: 10px;
  3051. color: gray;
  3052. font: normal 11px tahoma, arial, helvetica, sans-serif; }
  3053. /* line 24, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3054. .x-grid-header-hidden .x-grid-body {
  3055. border-top-color: #99bce8 !important; }
  3056. /* line 28, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3057. .x-grid-view {
  3058. overflow: hidden;
  3059. position: relative; }
  3060. /* line 34, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3061. .x-grid-table {
  3062. table-layout: fixed;
  3063. border-collapse: separate; }
  3064. /* line 41, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3065. .x-autowidth-table table.x-grid-table {
  3066. table-layout: auto;
  3067. width: auto!important; }
  3068. /* line 46, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3069. .x-grid-row .x-grid-table {
  3070. border-collapse: collapse; }
  3071. /* line 50, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3072. .x-grid-locked .x-grid-inner-locked {
  3073. border-width: 0 1px 0 0 !important;
  3074. border-style: solid; }
  3075. /* line 55, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3076. .x-grid-header-ct {
  3077. cursor: default;
  3078. zoom: 1;
  3079. padding: 0;
  3080. border: 1px solid #99bce8;
  3081. border-bottom-color: #c5c5c5; }
  3082. /* line 69, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3083. .x-accordion-item .x-grid-header-ct {
  3084. border-width: 0 0 1px 0!important; }
  3085. /* line 73, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3086. .x-column-header {
  3087. padding: 0;
  3088. position: absolute;
  3089. overflow: hidden;
  3090. border-right: 1px solid #c5c5c5;
  3091. border-left: 0 none;
  3092. border-top: 0 none;
  3093. border-bottom: 0 none;
  3094. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  3095. color: null;
  3096. font: normal 11px tahoma, arial, verdana, sans-serif; }
  3097. /* line 95, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3098. .x-group-header {
  3099. padding: 0;
  3100. border-left-width: 0; }
  3101. /* line 99, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3102. .x-group-sub-header {
  3103. background: transparent;
  3104. border-top: 1px solid #c5c5c5;
  3105. border-left-width: 0; }
  3106. /* line 105, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3107. .x-column-header-inner {
  3108. zoom: 1;
  3109. position: relative;
  3110. white-space: nowrap;
  3111. line-height: 15px;
  3112. padding: 3px 6px 4px; }
  3113. /* line 112, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3114. .x-column-header-inner .x-column-header-text {
  3115. white-space: nowrap; }
  3116. /* line 119, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3117. .x-column-header-over,
  3118. .x-column-header-sort-ASC,
  3119. .x-column-header-sort-DESC {
  3120. border-left-color: #aaccf6;
  3121. border-right-color: #aaccf6; }
  3122. /* line 131, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3123. .x-nlg .x-grid-header-ct,
  3124. .x-nlg .x-column-header {
  3125. background: repeat-x 0 top;
  3126. background-image: url('../../resources/themes/images/default/grid/column-header-bg.gif'); }
  3127. /* line 138, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3128. .x-nlg .x-column-header-over,
  3129. .x-nlg .x-column-header-sort-ASC,
  3130. .x-nlg .x-column-header-sort-DESC {
  3131. background: #ebf3fd repeat-x 0 top;
  3132. background-image: url('../../resources/themes/images/default/grid/column-header-over-bg.gif'); }
  3133. /* line 145, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3134. .x-column-header-trigger {
  3135. display: none;
  3136. height: 100%;
  3137. width: 14px;
  3138. background: no-repeat left center;
  3139. background-color: #c3daf9;
  3140. background-image: url('../../resources/themes/images/default/grid/grid3-hd-btn.gif');
  3141. position: absolute;
  3142. right: 0;
  3143. top: 0;
  3144. z-index: 2;
  3145. cursor: pointer; }
  3146. /* line 160, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3147. .x-column-header-over .x-column-header-trigger, .x-column-header-open .x-column-header-trigger {
  3148. display: block; }
  3149. /* line 165, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3150. .x-column-header-align-right {
  3151. text-align: right; }
  3152. /* line 168, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3153. .x-column-header-align-right .x-column-header-text {
  3154. padding-right: 0.5ex;
  3155. margin-right: 6px; }
  3156. /* line 173, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3157. .x-column-header-align-center {
  3158. text-align: center; }
  3159. /* line 176, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3160. .x-column-header-align-left {
  3161. text-align: left; }
  3162. /* line 181, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3163. .x-column-header-sort-ASC .x-column-header-text {
  3164. padding-right: 16px;
  3165. background: no-repeat right 6px;
  3166. background-image: url('../../resources/themes/images/default/grid/sort_asc.gif'); }
  3167. /* line 186, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3168. .x-column-header-sort-DESC .x-column-header-text {
  3169. padding-right: 16px;
  3170. background: no-repeat right 6px;
  3171. background-image: url('../../resources/themes/images/default/grid/sort_desc.gif'); }
  3172. /* line 193, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3173. .x-grid-row {
  3174. vertical-align: top; }
  3175. /* line 195, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3176. .x-grid-row .x-grid-cell {
  3177. color: null;
  3178. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3179. background-color: white;
  3180. border-color: #ededed;
  3181. border-style: solid;
  3182. border-top-color: #fafafa;
  3183. border-width: 0; }
  3184. /* line 208, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3185. .x-grid-with-row-lines .x-grid-cell {
  3186. border-width: 1px 0; }
  3187. /* line 212, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3188. .x-grid-rowwrap-div {
  3189. border-width: 1px 0;
  3190. border-color: #ededed;
  3191. border-style: solid;
  3192. border-top-color: #fafafa;
  3193. overflow: hidden; }
  3194. /* line 222, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3195. .x-grid-row-alt .x-grid-cell,
  3196. .x-grid-row-alt .x-grid-rowwrap-div {
  3197. background-color: #fafafa; }
  3198. /* line 227, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3199. .x-grid-row-over .x-grid-cell,
  3200. .x-grid-row-over .x-grid-rowwrap-div {
  3201. border-color: #dddddd;
  3202. background-color: #efefef; }
  3203. /* line 234, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3204. .x-grid-row-focused .x-grid-cell,
  3205. .x-grid-row-focused .x-grid-rowwrap-div {
  3206. border-color: #dddddd;
  3207. background-color: #efefef; }
  3208. /* line 241, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3209. .x-grid-row-selected .x-grid-cell,
  3210. .x-grid-row-selected .x-grid-rowwrap-div {
  3211. border-style: dotted;
  3212. border-color: #a3bae9;
  3213. background-color: #dfe8f6 !important; }
  3214. /* line 250, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3215. .x-grid-rowwrap-div .x-grid-cell,
  3216. .x-grid-rowwrap-div .x-grid-cell-inner {
  3217. border-width: 0;
  3218. background: transparent; }
  3219. /* line 257, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3220. .x-grid-row-body-hidden {
  3221. display: none; }
  3222. /* line 261, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3223. .x-grid-rowbody {
  3224. font: normal 11px/13px tahoma, arial, verdana, sans-serif;
  3225. padding: 4px; }
  3226. /* line 266, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3227. .x-grid-rowbody p {
  3228. margin: 5px 5px 10px 5px; }
  3229. /* line 272, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3230. .x-grid-cell {
  3231. overflow: hidden; }
  3232. /* line 276, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3233. .x-grid-cell-inner {
  3234. overflow: hidden;
  3235. -o-text-overflow: ellipsis;
  3236. text-overflow: ellipsis;
  3237. padding: 2px 6px 3px;
  3238. white-space: nowrap; }
  3239. /* line 287, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3240. .x-grid-with-row-lines .x-grid-cell-inner {
  3241. line-height: 13px;
  3242. padding-bottom: 4px; }
  3243. /* line 293, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3244. .x-action-col-cell .x-grid-cell-inner {
  3245. line-height: 0;
  3246. padding: 2px; }
  3247. /* line 298, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3248. .x-grid-with-row-lines .x-action-col-cell .x-grid-cell-inner {
  3249. padding-top: 1px; }
  3250. /* line 302, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3251. .x-grid-row .x-grid-cell-special {
  3252. padding: 0;
  3253. border-right: 1px solid #d0d0d0;
  3254. background-image: none;
  3255. background-color: #f6f6f6;
  3256. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9));
  3257. background-image: -webkit-linear-gradient(left, #f6f6f6, #e9e9e9);
  3258. background-image: -moz-linear-gradient(left, #f6f6f6, #e9e9e9);
  3259. background-image: -o-linear-gradient(left, #f6f6f6, #e9e9e9);
  3260. background-image: -ms-linear-gradient(left, #f6f6f6, #e9e9e9);
  3261. background-image: linear-gradient(left, #f6f6f6, #e9e9e9); }
  3262. /* line 308, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3263. .x-grid-row .x-grid-cell-row-checker {
  3264. vertical-align: middle; }
  3265. /*
  3266. IE6-8 have issues with shrinking the TR to 0px (even w/line-height=0), so we
  3267. use an IE-specific trick to make the row disappear. We cannot do this on any
  3268. other browser, because it is not a non-standard thing to do and those other
  3269. browsers will do whacky things with it.
  3270. */
  3271. /* line 322, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3272. .x-ie6 .x-grid-header-row,
  3273. .x-ie7 .x-grid-header-row,
  3274. .x-quirks .x-ie8 .x-grid-header-row {
  3275. position: absolute; }
  3276. /* line 327, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3277. .x-grid-row-selected .x-grid-cell-special {
  3278. border-right: 1px solid #aaccf6;
  3279. background-image: none;
  3280. background-color: #dfe8f6;
  3281. background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0));
  3282. background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0);
  3283. background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0);
  3284. background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0);
  3285. background-image: -ms-linear-gradient(left, #dfe8f6, #cbdaf0);
  3286. background-image: linear-gradient(left, #dfe8f6, #cbdaf0); }
  3287. /* line 333, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3288. .x-grid-dirty-cell {
  3289. background-image: url('../../resources/themes/images/default/grid/dirty.gif');
  3290. background-position: 0 0;
  3291. background-repeat: no-repeat; }
  3292. /* line 339, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3293. .x-grid-cell-selected {
  3294. background-color: #B8CFEE !important; }
  3295. /* line 345, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3296. .x-nlg .x-grid-cell-special {
  3297. background-repeat: repeat-y;
  3298. background-position: top right; }
  3299. /* line 351, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3300. .x-nlg .x-grid-row .x-grid-cell-special,
  3301. .x-nlg .x-grid-row-over .x-grid-cell-special {
  3302. background-image: url('../../resources/themes/images/default/grid/cell-special-bg.gif'); }
  3303. /* line 357, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3304. .x-nlg .x-grid-row-focused .x-grid-cell-special,
  3305. .x-nlg .x-grid-row-selected .x-grid-cell-special {
  3306. background-image: url('../../resources/themes/images/default/grid/cell-special-selected-bg.gif'); }
  3307. /* line 363, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3308. .x-grid-with-col-lines .x-grid-cell {
  3309. padding-right: 0;
  3310. border-right: 1px solid #d0d0d0; }
  3311. /* line 370, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3312. .x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3313. .x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3314. padding-left: 12px;
  3315. background-image: url('../../resources/themes/images/default/grid/property-cell-bg.gif');
  3316. background-repeat: no-repeat;
  3317. background-position: -16px 2px; }
  3318. /* line 380, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3319. .x-grid-with-row-lines.x-property-grid .x-grid-row .x-grid-property-name .x-grid-cell-inner,
  3320. .x-grid-with-row-lines.x-property-grid .x-grid-row-over .x-grid-property-name .x-grid-cell-inner {
  3321. background-position: -16px 1px; }
  3322. /* line 386, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3323. .x-quirks .x-ie .x-grid-row .x-grid-property-name .x-grid-cell-inner {
  3324. background-position: -16px 2px; }
  3325. /* line 391, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3326. .x-unselectable {
  3327. user-select: none;
  3328. -o-user-select: none;
  3329. -ms-user-select: none;
  3330. -moz-user-select: -moz-none;
  3331. -webkit-user-select: none;
  3332. cursor: default; }
  3333. /* line 395, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3334. .x-grid-row-body-hidden {
  3335. display: none; }
  3336. /* line 399, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3337. .x-grid-group-collapsed {
  3338. display: none; }
  3339. /* line 405, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3340. .x-grid-view .x-grid-td-expander {
  3341. vertical-align: top; }
  3342. /* line 410, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3343. .x-grid-td-expander {
  3344. background: repeat-y right transparent; }
  3345. /* line 416, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3346. .x-grid-view .x-grid-td-expander .x-grid-cell-inner {
  3347. padding: 0 !important; }
  3348. /* line 422, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3349. .x-grid-row-expander {
  3350. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3351. background-color: transparent;
  3352. width: 9px;
  3353. height: 13px;
  3354. margin-left: 3px;
  3355. background-repeat: no-repeat;
  3356. background-position: 0 -2px; }
  3357. /* line 436, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3358. .x-grid-row-collapsed .x-grid-row-expander {
  3359. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3360. /* line 441, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3361. .x-grid-resize-marker {
  3362. position: absolute;
  3363. z-index: 5;
  3364. top: 0;
  3365. width: 1px;
  3366. background-color: #0f0f0f; }
  3367. /* line 451, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3368. .col-move-top, .col-move-bottom {
  3369. width: 9px;
  3370. height: 9px;
  3371. position: absolute;
  3372. top: 0;
  3373. line-height: 0;
  3374. font-size: 0;
  3375. overflow: hidden;
  3376. z-index: 20000;
  3377. background: no-repeat left top transparent; }
  3378. /* line 463, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3379. .col-move-top {
  3380. background-image: url('../../resources/themes/images/default/grid/col-move-top.gif'); }
  3381. /* line 467, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3382. .col-move-bottom {
  3383. background-image: url('../../resources/themes/images/default/grid/col-move-bottom.gif'); }
  3384. /* line 472, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3385. .x-tbar-page-number {
  3386. width: 30px; }
  3387. /* line 479, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3388. .x-grid-group,
  3389. .x-grid-group-body,
  3390. .x-grid-group-hd {
  3391. zoom: 1; }
  3392. /* line 483, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3393. .x-grid-group-hd {
  3394. padding-top: 6px; }
  3395. /* line 486, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3396. .x-grid-group-hd .x-grid-cell-inner {
  3397. padding: 10px 4px 4px 4px;
  3398. background: white;
  3399. border-width: 0 0 2px 0;
  3400. border-style: solid;
  3401. border-color: #99bbe8;
  3402. cursor: pointer; }
  3403. /* line 499, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3404. .x-grid-group-title {
  3405. background: transparent no-repeat 0 -1px;
  3406. background-image: url('../../resources/themes/images/default/grid/group-collapse.gif');
  3407. color: #3764a0;
  3408. font: bold 11px tahoma, arial, verdana, sans-serif;
  3409. padding: 0 0 0 14px; }
  3410. /* line 510, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3411. .x-grid-group-hd-collapsed .x-grid-group-title {
  3412. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3413. /* line 515, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3414. .x-grid-group-collapsed .x-grid-group-body {
  3415. display: none; }
  3416. /* line 519, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3417. .x-grid-group-collapsed .x-grid-group-title {
  3418. background-image: url('../../resources/themes/images/default/grid/group-expand.gif'); }
  3419. /* line 523, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3420. .x-group-by-icon {
  3421. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3422. /* line 527, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3423. .x-show-groups-icon {
  3424. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3425. /* line 531, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3426. .x-column-header-checkbox .x-column-header-inner {
  3427. padding: 0; }
  3428. /* line 535, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3429. .x-grid-cell-special .x-grid-cell-inner {
  3430. padding-left: 4px;
  3431. padding-right: 4px; }
  3432. /* line 541, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3433. .x-grid-row-checker,
  3434. .x-column-header-checkbox .x-column-header-text {
  3435. height: 14px;
  3436. width: 14px;
  3437. line-height: 0;
  3438. background-image: url('../../resources/themes/images/default/grid/unchecked.gif');
  3439. background-position: -1px -1px;
  3440. background-repeat: no-repeat;
  3441. background-color: transparent; }
  3442. /* line 553, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3443. .x-column-header-checkbox .x-column-header-text {
  3444. display: block;
  3445. margin: 0 5px; }
  3446. /* 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 */
  3447. /* line 562, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3448. .x-quirks .x-ie .x-grid-row-checker,
  3449. .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 {
  3450. line-height: 14px; }
  3451. /* line 568, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3452. .x-grid-hd-checker-on .x-column-header-text {
  3453. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3454. /* line 572, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3455. .x-grid-cell-row-checker .x-grid-cell-inner {
  3456. padding-top: 4px;
  3457. padding-bottom: 2px;
  3458. line-height: 14px; }
  3459. /* line 577, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3460. .x-grid-with-row-lines .x-grid-cell-row-checker .x-grid-cell-inner {
  3461. padding-top: 3px; }
  3462. /* line 580, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3463. .x-grid-row-checker {
  3464. margin-left: 1px;
  3465. background-position: 50% -2px; }
  3466. /* line 587, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3467. .x-grid-row-selected .x-grid-row-checker,
  3468. .x-grid-row-checked .x-grid-row-checker {
  3469. background-image: url('../../resources/themes/images/default/grid/checked.gif'); }
  3470. /* line 592, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3471. .x-tbar-page-first {
  3472. background-image: url('../../resources/themes/images/default/grid/page-first.gif') !important; }
  3473. /* line 596, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3474. .x-tbar-loading {
  3475. background-image: url('../../resources/themes/images/default/grid/refresh.gif') !important; }
  3476. /* line 600, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3477. .x-tbar-page-last {
  3478. background-image: url('../../resources/themes/images/default/grid/page-last.gif') !important; }
  3479. /* line 604, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3480. .x-tbar-page-next {
  3481. background-image: url('../../resources/themes/images/default/grid/page-next.gif') !important; }
  3482. /* line 608, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3483. .x-tbar-page-prev {
  3484. background-image: url('../../resources/themes/images/default/grid/page-prev.gif') !important; }
  3485. /* line 613, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3486. .x-item-disabled .x-tbar-loading {
  3487. background-image: url('../../resources/themes/images/default/grid/refresh-disabled.gif') !important; }
  3488. /* line 617, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3489. .x-item-disabled .x-tbar-page-first {
  3490. background-image: url('../../resources/themes/images/default/grid/page-first-disabled.gif') !important; }
  3491. /* line 621, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3492. .x-item-disabled .x-tbar-page-last {
  3493. background-image: url('../../resources/themes/images/default/grid/page-last-disabled.gif') !important; }
  3494. /* line 625, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3495. .x-item-disabled .x-tbar-page-next {
  3496. background-image: url('../../resources/themes/images/default/grid/page-next-disabled.gif') !important; }
  3497. /* line 629, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3498. .x-item-disabled .x-tbar-page-prev {
  3499. background-image: url('../../resources/themes/images/default/grid/page-prev-disabled.gif') !important; }
  3500. /* line 635, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3501. .x-hmenu-sort-asc .x-menu-item-icon {
  3502. background-image: url('../../resources/themes/images/default/grid/hmenu-asc.gif'); }
  3503. /* line 639, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3504. .x-hmenu-sort-desc .x-menu-item-icon {
  3505. background-image: url('../../resources/themes/images/default/grid/hmenu-desc.gif'); }
  3506. /* line 643, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3507. .x-hmenu-lock .x-menu-item-icon {
  3508. background-image: url('../../resources/themes/images/default/grid/hmenu-lock.gif'); }
  3509. /* line 647, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3510. .x-hmenu-unlock .x-menu-item-icon {
  3511. background-image: url('../../resources/themes/images/default/grid/hmenu-unlock.gif'); }
  3512. /* line 651, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3513. .x-group-by-icon {
  3514. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3515. /* line 655, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3516. .x-cols-icon .x-menu-item-icon {
  3517. background-image: url('../../resources/themes/images/default/grid/columns.gif'); }
  3518. /* line 659, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3519. .x-show-groups-icon {
  3520. background-image: url('../../resources/themes/images/default/grid/group-by.gif'); }
  3521. /* line 664, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3522. .x-grid-drop-indicator {
  3523. position: absolute;
  3524. height: 1px;
  3525. line-height: 0px;
  3526. background-color: #77BC71;
  3527. overflow: visible; }
  3528. /* line 671, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3529. .x-grid-drop-indicator .x-grid-drop-indicator-left {
  3530. position: absolute;
  3531. top: -8px;
  3532. left: -12px;
  3533. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.png');
  3534. height: 16px;
  3535. width: 16px; }
  3536. /* line 680, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3537. .x-grid-drop-indicator .x-grid-drop-indicator-right {
  3538. position: absolute;
  3539. top: -8px;
  3540. right: -11px;
  3541. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.png');
  3542. height: 16px;
  3543. width: 16px; }
  3544. /* line 691, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3545. .x-ie6 .x-grid-drop-indicator-left {
  3546. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-right.gif'); }
  3547. /* line 695, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3548. .x-ie6 .x-grid-drop-indicator-right {
  3549. background-image: url('../../resources/themes/images/default/grid/dd-insert-arrow-left.gif'); }
  3550. /* line 703, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3551. .x-grid-editor .x-form-text {
  3552. padding: 0 4px; }
  3553. /* line 706, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3554. .x-grid-editor .x-form-cb-wrap {
  3555. padding-top: 3px; }
  3556. /* line 712, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3557. .x-grid-row-editor {
  3558. position: absolute !important;
  3559. z-index: 1;
  3560. zoom: 1;
  3561. overflow: visible !important; }
  3562. /* line 718, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3563. .x-grid-row-editor .x-form-text {
  3564. padding: 0 2px; }
  3565. /* line 721, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3566. .x-grid-row-editor .x-form-cb-wrap {
  3567. padding-top: 0; }
  3568. /* line 724, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3569. .x-grid-row-editor .x-form-checkbox {
  3570. margin-left: -4px; }
  3571. /* line 727, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3572. .x-grid-row-editor .x-form-display-field {
  3573. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3574. padding-top: 0;
  3575. padding-left: 2px; }
  3576. /* line 733, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3577. .x-grid-row-editor .x-panel-body {
  3578. background-color: #eaf1fb;
  3579. border-top: 1px solid #99bce8 !important;
  3580. border-bottom: 1px solid #99bce8 !important; }
  3581. /* line 743, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3582. .x-grid-editor .x-form-cb-wrap, .x-grid-row-editor .x-form-cb-wrap {
  3583. text-align: center; }
  3584. /* line 746, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3585. .x-grid-editor .x-form-trigger, .x-grid-row-editor .x-form-trigger {
  3586. height: 19px; }
  3587. /* line 750, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3588. .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 {
  3589. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  3590. height: 10px !important; }
  3591. /* line 757, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3592. .x-grid-editor .x-form-text, .x-grid-row-editor .x-form-text {
  3593. font: normal 11px/15px tahoma, arial, verdana, sans-serif;
  3594. height: 18px; }
  3595. /* line 765, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3596. .x-border-box .x-grid-editor .x-form-trigger,
  3597. .x-border-box .x-grid-row-editor .x-form-trigger {
  3598. height: 20px; }
  3599. /* line 768, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3600. .x-border-box .x-grid-editor .x-form-text,
  3601. .x-border-box .x-grid-row-editor .x-form-text {
  3602. height: 20px;
  3603. padding-bottom: 1px; }
  3604. /* line 776, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3605. .x-ie .x-grid-editor .x-form-text {
  3606. padding-left: 5px; }
  3607. /* line 779, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3608. .x-ie .x-grid-row-editor .x-form-text {
  3609. padding-left: 3px; }
  3610. /* line 785, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3611. .x-ie8m .x-grid-editor .x-form-text,
  3612. .x-ie8m .x-grid-row-editor .x-form-text {
  3613. padding-top: 1px; }
  3614. /* line 792, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3615. .x-strict .x-ie6 .x-grid-editor .x-form-text,
  3616. .x-strict .x-ie6 .x-grid-row-editor .x-form-text,
  3617. .x-strict .x-ie7 .x-grid-editor .x-form-text,
  3618. .x-strict .x-ie7 .x-grid-row-editor .x-form-text {
  3619. height: 17px; }
  3620. /* line 798, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3621. .x-quirks .x-ie9 .x-grid-editor .x-form-text, .x-quirks .x-ie9 .x-grid-row-editor .x-form-text {
  3622. line-height: 17px; }
  3623. /* line 817, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3624. .x-grid-row-editor-buttons {
  3625. background-color: #eaf1fb;
  3626. position: absolute;
  3627. bottom: -31px;
  3628. padding: 4px;
  3629. height: 32px; }
  3630. /* line 824, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3631. .x-strict .x-ie7m .x-grid-row-editor-buttons {
  3632. width: 192px;
  3633. height: 24px; }
  3634. /* line 834, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3635. .x-grid-row-editor-buttons-ml,
  3636. .x-grid-row-editor-buttons-mr,
  3637. .x-grid-row-editor-buttons-bl,
  3638. .x-grid-row-editor-buttons-br,
  3639. .x-grid-row-editor-buttons-bc {
  3640. position: absolute;
  3641. overflow: hidden; }
  3642. /* line 840, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3643. .x-grid-row-editor-buttons-bl,
  3644. .x-grid-row-editor-buttons-br {
  3645. width: 4px;
  3646. height: 4px;
  3647. bottom: 0px;
  3648. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  3649. /* line 846, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3650. .x-grid-row-editor-buttons-bl {
  3651. left: 0px;
  3652. background-position: 0px -16px; }
  3653. /* line 850, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3654. .x-grid-row-editor-buttons-br {
  3655. right: 0px;
  3656. background-position: 0px -20px; }
  3657. /* line 855, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3658. .x-grid-row-editor-buttons-bc {
  3659. position: absolute;
  3660. left: 4px;
  3661. bottom: 0px;
  3662. width: 192px;
  3663. height: 1px;
  3664. background-color: #99bce8; }
  3665. /* line 865, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3666. .x-grid-row-editor-buttons-ml,
  3667. .x-grid-row-editor-buttons-mr {
  3668. height: 27px;
  3669. width: 1px;
  3670. top: 1px;
  3671. background-color: #99bce8; }
  3672. /* line 871, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3673. .x-grid-row-editor-buttons-ml {
  3674. left: 0px; }
  3675. /* line 874, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3676. .x-grid-row-editor-buttons-mr {
  3677. background-position: 0px -20px;
  3678. right: 0px; }
  3679. /* line 880, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3680. .x-grid-row-editor-errors ul {
  3681. margin-left: 5px; }
  3682. /* line 883, ../themes/stylesheets/ext4/default/widgets/_grid.scss */
  3683. .x-grid-row-editor-errors li {
  3684. list-style: disc;
  3685. margin-left: 15px; }
  3686. /*misc*/
  3687. /* line 5, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3688. .x-webkit *:focus {
  3689. outline: none !important; }
  3690. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3691. .x-form-item {
  3692. vertical-align: top;
  3693. table-layout: fixed; }
  3694. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3695. .x-autocontainer-form-item,
  3696. .x-anchor-form-item,
  3697. .x-vbox-form-item,
  3698. .x-checkboxgroup-form-item,
  3699. .x-table-form-item {
  3700. margin-bottom: 5px; }
  3701. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3702. .x-form-layout-table {
  3703. border-collapse: separate;
  3704. border-spacing: 0 2px; }
  3705. /* line 33, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3706. .x-form-item-body {
  3707. position: relative; }
  3708. /* line 38, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3709. .x-form-form-item td {
  3710. border-top: 1px solid transparent; }
  3711. /* line 47, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3712. .x-ie6 .x-form-layout-table {
  3713. border-collapse: collapse;
  3714. border-spacing: 0; }
  3715. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3716. .x-ie6 .x-form-form-item td {
  3717. border-top-width: 0; }
  3718. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3719. .x-ie6 td.x-form-item-pad {
  3720. height: 5px; }
  3721. /* line 64, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3722. .x-editor .x-form-item-body {
  3723. padding-bottom: 0; }
  3724. /* line 68, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3725. .x-form-item-label {
  3726. display: block;
  3727. padding: 3px 0 0;
  3728. font-size: 12px;
  3729. user-select: none;
  3730. -o-user-select: none;
  3731. -ms-user-select: none;
  3732. -moz-user-select: -moz-none;
  3733. -webkit-user-select: none;
  3734. cursor: default; }
  3735. /* line 75, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3736. .x-form-item-label-top {
  3737. padding: 0; }
  3738. /* line 79, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3739. .x-form-item-label-right {
  3740. text-align: right; }
  3741. /* line 83, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3742. .x-form-invalid-under {
  3743. padding: 2px 2px 2px 18px;
  3744. color: #c0272b;
  3745. font: normal 11px tahoma, arial, verdana, sans-serif;
  3746. line-height: 16px;
  3747. background: no-repeat 0 2px;
  3748. background-image: url('../../resources/themes/images/default/form/exclamation.gif'); }
  3749. /* line 94, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3750. .x-external-error-icon {
  3751. position: absolute;
  3752. right: 10px;
  3753. height: 22px; }
  3754. /* line 101, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3755. .x-quirks .x-ie .x-external-error-icon {
  3756. right: 0; }
  3757. /* line 106, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3758. .x-form-invalid-icon {
  3759. width: 18px;
  3760. background: no-repeat 2px 3px;
  3761. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  3762. overflow: hidden; }
  3763. /* line 111, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3764. .x-form-invalid-icon ul {
  3765. display: block;
  3766. width: 18px; }
  3767. /* line 114, ../themes/stylesheets/ext4/default/widgets/form/_all.scss */
  3768. .x-form-invalid-icon ul li {
  3769. /* prevent inner elements from interfering with QuickTip hovering */
  3770. display: none; }
  3771. /* line 3, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3772. .x-form-field,
  3773. .x-form-display-field {
  3774. margin: 0 0 0 0;
  3775. font: normal 12px tahoma, arial, verdana, sans-serif;
  3776. color: black; }
  3777. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3778. .x-form-text,
  3779. textarea.x-form-field {
  3780. padding: 1px 3px;
  3781. background: repeat-x 0 0;
  3782. border: 1px solid;
  3783. background-color: white;
  3784. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3785. border-color: #b5b8c8; }
  3786. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3787. .x-form-text {
  3788. height: 18px;
  3789. line-height: 18px;
  3790. vertical-align: top; }
  3791. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3792. .x-ie8m .x-form-text {
  3793. line-height: 15px; }
  3794. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3795. .x-border-box .x-form-text {
  3796. height: 22px; }
  3797. /* line 43, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3798. textarea.x-form-field {
  3799. color: black;
  3800. overflow: auto;
  3801. height: auto;
  3802. line-height: normal;
  3803. background: repeat-x 0 0;
  3804. background-color: white;
  3805. background-image: url('../../resources/themes/images/default/form/text-bg.gif');
  3806. resize: none; }
  3807. /* line 56, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3808. .x-border-box textarea.x-form-field {
  3809. height: auto; }
  3810. /* line 67, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3811. .x-form-focus,
  3812. textarea.x-form-focus {
  3813. border-color: #7eadd9; }
  3814. /* line 72, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3815. .x-form-invalid-field,
  3816. textarea.x-form-invalid-field {
  3817. background-color: white;
  3818. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  3819. background-repeat: repeat-x;
  3820. background-position: bottom;
  3821. border-color: #cc3300; }
  3822. /* line 82, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3823. .x-form-item {
  3824. font: normal 12px tahoma, arial, verdana, sans-serif; }
  3825. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3826. .x-form-empty-field, textarea.x-form-empty-field {
  3827. color: gray; }
  3828. /* line 91, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3829. .x-webkit .x-form-empty-field {
  3830. line-height: 15px; }
  3831. /* line 96, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3832. .x-form-display-field {
  3833. padding-top: 3px; }
  3834. /*
  3835. In oldIE, text inputs get a mysterious extra pixel of spacing above and below.
  3836. This is targeted at IE6-IE7 (all modes) and IE9+ Quirks mode.
  3837. IE8 quirks on Windows 7 requires this fix, but on
  3838. IE8 quirks on Windows XP, this is breaks the layout.
  3839. TODO: Check field input heights in IE8 quirks on Windows Vista.
  3840. Since we can't specifically target a specific version of Windows via CSS, we default to fixing it the XP way, for now.
  3841. */
  3842. /* line 112, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3843. .x-quirks .x-ie9p .x-form-text,
  3844. .x-ie7m .x-form-text {
  3845. margin-top: -1px;
  3846. margin-bottom: -1px; }
  3847. /* line 117, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3848. .x-ie .x-form-file {
  3849. height: 23px;
  3850. line-height: 18px;
  3851. vertical-align: middle; }
  3852. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3853. .x-field-default-toolbar .x-form-text {
  3854. height: 16px; }
  3855. /* line 130, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3856. .x-border-box .x-field-default-toolbar .x-form-text {
  3857. height: 20px; }
  3858. /* line 134, ../themes/stylesheets/ext4/default/widgets/form/_field.scss */
  3859. .x-field-default-toolbar .x-form-item-label-left {
  3860. padding-left: 4px; }
  3861. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3862. .x-fieldset {
  3863. border: 1px solid #b5b8c8;
  3864. padding: 10px;
  3865. margin-bottom: 10px;
  3866. display: block;
  3867. /* preserve margins in IE */
  3868. position: relative; }
  3869. /* line 14, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3870. .x-ie .x-fieldset {
  3871. padding-top: 0; }
  3872. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3873. .x-ie .x-fieldset .x-fieldset-body {
  3874. padding-top: 10px; }
  3875. /* line 21, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3876. .x-fieldset-header-checkbox {
  3877. line-height: 14px; }
  3878. /* line 25, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3879. .x-fieldset-header {
  3880. font: 11px/14px bold tahoma, arial, verdana, sans-serif;
  3881. color: #15428b;
  3882. padding: 0 3px 1px;
  3883. overflow: hidden; }
  3884. /* line 31, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3885. .x-fieldset-header .x-fieldset-header-text {
  3886. float: left;
  3887. padding: 1px 0; }
  3888. /* line 35, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3889. .x-fieldset-header .x-fieldset-header-text-collapsible {
  3890. cursor: pointer; }
  3891. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3892. .x-fieldset-header .x-form-item,
  3893. .x-fieldset-header .x-tool {
  3894. float: left;
  3895. margin: 1px 0 0 0; }
  3896. /* line 45, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3897. .x-fieldset-header .x-form-cb-wrap {
  3898. padding: 1px 0;
  3899. font-size: 0;
  3900. line-height: 0; }
  3901. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3902. .x-fieldset-with-title .x-form-item,
  3903. .x-fieldset-with-title .x-tool {
  3904. margin-right: 3px; }
  3905. /* line 61, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3906. .x-webkit .x-fieldset-header {
  3907. -webkit-padding-start: 3px;
  3908. -webkit-padding-end: 3px; }
  3909. /* line 82, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3910. .x-strict .x-ie8 .x-fieldset-header {
  3911. margin-bottom: -1px; }
  3912. /* line 86, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3913. .x-strict .x-ie8 .x-fieldset-header .x-tool,
  3914. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,
  3915. .x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox {
  3916. position: relative;
  3917. top: -1px; }
  3918. /* line 96, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3919. .x-quirks .x-ie .x-fieldset-header,
  3920. .x-ie8m .x-fieldset-header {
  3921. padding-left: 1px;
  3922. padding-right: 1px; }
  3923. /* line 104, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3924. .x-fieldset-collapsed .x-fieldset-body {
  3925. display: none; }
  3926. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3927. .x-fieldset-collapsed {
  3928. padding-bottom: 0 !important;
  3929. border-width: 1px 1px 0 1px !important;
  3930. border-left-color: transparent !important;
  3931. border-right-color: transparent !important; }
  3932. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3933. .x-ie6 .x-fieldset-collapsed {
  3934. border-width: 1px 0 0 0 !important;
  3935. padding-bottom: 0 !important;
  3936. margin-left: 1px;
  3937. margin-right: 1px; }
  3938. /* line 126, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3939. .x-ie .x-fieldset-bwrap {
  3940. zoom: 1; }
  3941. /* IE legend positioning bug */
  3942. /* line 133, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3943. .x-ie .x-fieldset-noborder legend {
  3944. position: relative;
  3945. margin-bottom: 23px; }
  3946. /* line 139, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3947. .x-ie .x-fieldset-noborder legend span {
  3948. position: absolute;
  3949. left: 16px; }
  3950. /* line 145, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3951. .x-fieldset {
  3952. overflow: hidden; }
  3953. /* line 149, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3954. .x-fieldset-bwrap {
  3955. overflow: hidden;
  3956. zoom: 1; }
  3957. /* line 155, ../themes/stylesheets/ext4/default/widgets/form/_fieldset.scss */
  3958. .x-fieldset-body {
  3959. overflow: hidden; }
  3960. /* line 4, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3961. .x-form-file-wrap .x-form-text {
  3962. color: #777; }
  3963. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3964. .x-form-file-wrap .x-form-file-btn {
  3965. overflow: hidden; }
  3966. /* line 12, ../themes/stylesheets/ext4/default/widgets/form/_file.scss */
  3967. .x-form-file-wrap .x-form-file-input {
  3968. position: absolute;
  3969. top: -4px;
  3970. right: -2px;
  3971. height: 30px;
  3972. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  3973. opacity: 0;
  3974. /* Yes, there's actually a good reason for this...
  3975. * If the configured buttonText is set to something longer than the default,
  3976. * then it will quickly exceed the width of the hidden file input's "Browse..."
  3977. * button, so part of the custom button's clickable area will be covered by
  3978. * the hidden file input's text box instead. This results in a text-selection
  3979. * mouse cursor over that part of the button, at least in Firefox, which is
  3980. * confusing to a user. Giving the hidden file input a huge font-size makes
  3981. * the native button part very large so it will cover the whole clickable area.
  3982. */
  3983. font-size: 100px; }
  3984. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3985. .x-form-cb-wrap {
  3986. padding-top: 3px; }
  3987. /* line 7, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3988. .x-form-checkbox,
  3989. .x-form-radio {
  3990. vertical-align: -1px;
  3991. width: 13px;
  3992. height: 13px;
  3993. background: no-repeat;
  3994. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  3995. overflow: hidden;
  3996. padding: 0;
  3997. border: 0; }
  3998. /* line 18, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  3999. .x-form-checkbox::-moz-focus-inner,
  4000. .x-form-radio::-moz-focus-inner {
  4001. padding: 0;
  4002. border: 0; }
  4003. /* Hack for IE; causes alignment problem in IE9 standards mode so exclude that */
  4004. /* line 27, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4005. .x-nbr.x-ie .x-form-checkbox,
  4006. .x-nbr.x-ie .x-form-radio {
  4007. font-size: 0; }
  4008. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4009. .x-form-cb-checked .x-form-checkbox,
  4010. .x-form-cb-checked .x-form-radio {
  4011. background-position: 0 -13px; }
  4012. /* Focused */
  4013. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4014. .x-form-cb-focus {
  4015. background-position: -13px 0; }
  4016. /* line 44, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4017. .x-form-cb-checked .x-form-cb-focus {
  4018. background-position: -13px -13px; }
  4019. /* Radios */
  4020. /* line 50, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4021. .x-form-radio {
  4022. background-image: url('../../resources/themes/images/default/form/radio.gif'); }
  4023. /* boxLabel */
  4024. /* line 55, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4025. .x-form-cb-label-before {
  4026. margin-right: 4px; }
  4027. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_checkbox.scss */
  4028. .x-form-cb-label-after {
  4029. margin-left: 4px; }
  4030. /* line 3, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4031. .x-form-checkboxgroup-body {
  4032. padding: 1px 4px 1px 4px; }
  4033. /* line 8, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4034. .x-form-invalid .x-form-checkboxgroup-body {
  4035. border: 1px solid #c30;
  4036. background: transparent repeat-x bottom;
  4037. background-image: url('../../resources/themes/images/default/grid/invalid_line.gif');
  4038. padding: 0 3px 0 3px; }
  4039. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4040. .x-check-group-alt {
  4041. background: #d1ddef;
  4042. border-top: 1px dotted #b5b8c8;
  4043. border-bottom: 1px dotted #b5b8c8; }
  4044. /* line 23, ../themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss */
  4045. .x-form-check-group-label {
  4046. color: #333;
  4047. border-bottom: 1px solid #333;
  4048. margin: 0 30px 5px 0;
  4049. padding: 2px; }
  4050. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4051. .x-form-trigger-wrap {
  4052. vertical-align: top; }
  4053. /* line 6, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4054. .x-form-trigger {
  4055. background-image: url('../../resources/themes/images/default/form/trigger.gif');
  4056. background-position: 0 0;
  4057. width: 17px;
  4058. height: 21px;
  4059. border-bottom: 1px solid #b5b8c8;
  4060. cursor: pointer;
  4061. cursor: hand;
  4062. overflow: hidden; }
  4063. /* line 20, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4064. .x-border-box .x-form-trigger {
  4065. height: 22px; }
  4066. /* line 24, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4067. .x-field-default-toolbar .x-form-trigger {
  4068. height: 19px; }
  4069. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4070. .x-border-box .x-field-default-toolbar .x-form-trigger {
  4071. height: 20px; }
  4072. /* line 33, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4073. .x-form-trigger-over {
  4074. background-position: -17px 0;
  4075. border-bottom-color: #7eadd9; }
  4076. /* line 39, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4077. .x-form-trigger-wrap-focus .x-form-trigger {
  4078. background-position: -51px 0;
  4079. border-bottom-color: #7eadd9; }
  4080. /* line 45, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4081. .x-form-trigger-wrap-focus .x-form-trigger-over {
  4082. background-position: -68px 0;
  4083. border-bottom-color: null; }
  4084. /* line 54, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4085. .x-form-trigger-click,
  4086. .x-form-trigger-wrap-focus .x-form-trigger-click {
  4087. background-position: -34px 0;
  4088. border-bottom-color: null; }
  4089. /* line 62, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4090. .x-form-trigger-icon {
  4091. height: 16px;
  4092. background-repeat: no-repeat;
  4093. background-position: 7px 6px; }
  4094. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4095. .x-pickerfield-open .x-form-field {
  4096. -moz-border-radius-bottomleft: 0;
  4097. -webkit-border-bottom-left-radius: 0;
  4098. -o-border-bottom-left-radius: 0;
  4099. -ms-border-bottom-left-radius: 0;
  4100. -khtml-border-bottom-left-radius: 0;
  4101. border-bottom-left-radius: 0;
  4102. -moz-border-radius-bottomright: 0;
  4103. -webkit-border-bottom-right-radius: 0;
  4104. -o-border-bottom-right-radius: 0;
  4105. -ms-border-bottom-right-radius: 0;
  4106. -khtml-border-bottom-right-radius: 0;
  4107. border-bottom-right-radius: 0; }
  4108. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4109. .x-pickerfield-open-above .x-form-field {
  4110. -moz-border-radius-bottomleft: 3px;
  4111. -webkit-border-bottom-left-radius: 3px;
  4112. -o-border-bottom-left-radius: 3px;
  4113. -ms-border-bottom-left-radius: 3px;
  4114. -khtml-border-bottom-left-radius: 3px;
  4115. border-bottom-left-radius: 3px;
  4116. -moz-border-radius-topleft: 0;
  4117. -webkit-border-top-left-radius: 0;
  4118. -o-border-top-left-radius: 0;
  4119. -ms-border-top-left-radius: 0;
  4120. -khtml-border-top-left-radius: 0;
  4121. border-top-left-radius: 0;
  4122. -moz-border-radius-topright: 0;
  4123. -webkit-border-top-right-radius: 0;
  4124. -o-border-top-right-radius: 0;
  4125. -ms-border-top-right-radius: 0;
  4126. -khtml-border-top-right-radius: 0;
  4127. border-top-right-radius: 0; }
  4128. /* line 83, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4129. .x-form-arrow-trigger .x-form-trigger-icon {
  4130. background-image: url('../../resources/themes/images/default/boundlist/trigger-arrow.png'); }
  4131. /* line 88, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4132. .x-form-date-trigger {
  4133. background-image: url('../../resources/themes/images/default/form/date-trigger.gif'); }
  4134. /* line 95, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4135. .x-form-trigger-wrap .x-form-spinner-up,
  4136. .x-form-trigger-wrap .x-form-spinner-down {
  4137. background-image: url('../../resources/themes/images/default/form/spinner.gif');
  4138. width: 17px !important;
  4139. height: 11px !important;
  4140. font-size: 0;
  4141. /*for IE*/
  4142. border-bottom: 0; }
  4143. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4144. .x-form-trigger-wrap .x-form-spinner-down {
  4145. background-position: 0 -11px; }
  4146. /* line 109, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4147. .x-form-trigger-wrap-focus .x-form-spinner-down {
  4148. background-position: -51px -11px; }
  4149. /* line 112, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4150. .x-form-trigger-wrap .x-form-spinner-down-over {
  4151. background-position: -17px -11px; }
  4152. /* line 115, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4153. .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4154. background-position: -68px -11px; }
  4155. /* line 118, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4156. .x-form-trigger-wrap .x-form-spinner-down-click {
  4157. background-position: -34px -11px; }
  4158. /* line 127, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4159. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-up,
  4160. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4161. background-image: url('../../resources/themes/images/default/form/spinner-small.gif');
  4162. height: 10px !important; }
  4163. /* line 131, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4164. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down {
  4165. background-position: 0 -10px; }
  4166. /* line 135, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4167. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down {
  4168. background-position: -51px -10px; }
  4169. /* line 138, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4170. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-over {
  4171. background-position: -17px -10px; }
  4172. /* line 141, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4173. .x-field-default-toolbar .x-form-trigger-wrap-focus .x-form-spinner-down-over {
  4174. background-position: -68px -10px; }
  4175. /* line 144, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4176. .x-field-default-toolbar .x-form-trigger-wrap .x-form-spinner-down-click {
  4177. background-position: -34px -10px; }
  4178. /* line 150, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4179. .x-trigger-noedit {
  4180. cursor: pointer;
  4181. cursor: hand; }
  4182. /* line 156, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4183. .x-item-disabled .x-trigger-noedit, .x-item-disabled .x-form-trigger {
  4184. cursor: auto; }
  4185. /* line 162, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4186. .x-form-clear-trigger {
  4187. background-image: url('../../resources/themes/images/default/form/clear-trigger.gif'); }
  4188. /* line 165, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4189. .x-form-search-trigger {
  4190. background-image: url('../../resources/themes/images/default/form/search-trigger.gif'); }
  4191. /* line 173, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4192. .x-quirks .prefixie6 .x-form-trigger-input-cell {
  4193. height: 22px; }
  4194. /* line 176, ../themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss */
  4195. .x-quirks .prefixie6 .x-field-default-toolbar .x-form-trigger-input-cell {
  4196. height: 20px; }
  4197. /* line 2, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4198. .x-html-editor-wrap {
  4199. border: 1px solid #b5b8c8; }
  4200. /* line 5, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4201. .x-html-editor-wrap .x-toolbar {
  4202. border-top-width: 0;
  4203. border-left-width: 0;
  4204. border-right-width: 0; }
  4205. /* line 11, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4206. .x-html-editor-wrap textarea {
  4207. background-color: white; }
  4208. /* line 16, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4209. .x-html-editor-tb .x-btn-text {
  4210. background: transparent no-repeat;
  4211. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4212. /* line 22, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4213. .x-html-editor-tb .x-edit-bold,
  4214. .x-menu-item img.x-edit-bold {
  4215. background-position: 0 0;
  4216. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4217. /* line 28, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4218. .x-html-editor-tb .x-edit-italic,
  4219. .x-menu-item img.x-edit-italic {
  4220. background-position: -16px 0;
  4221. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4222. /* line 34, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4223. .x-html-editor-tb .x-edit-underline,
  4224. .x-menu-item img.x-edit-underline {
  4225. background-position: -32px 0;
  4226. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4227. /* line 40, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4228. .x-html-editor-tb .x-edit-forecolor,
  4229. .x-menu-item img.x-edit-forecolor {
  4230. background-position: -160px 0;
  4231. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4232. /* line 46, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4233. .x-html-editor-tb .x-edit-backcolor,
  4234. .x-menu-item img.x-edit-backcolor {
  4235. background-position: -176px 0;
  4236. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4237. /* line 52, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4238. .x-html-editor-tb .x-edit-justifyleft,
  4239. .x-menu-item img.x-edit-justifyleft {
  4240. background-position: -112px 0;
  4241. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4242. /* line 58, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4243. .x-html-editor-tb .x-edit-justifycenter,
  4244. .x-menu-item img.x-edit-justifycenter {
  4245. background-position: -128px 0;
  4246. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4247. /* line 64, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4248. .x-html-editor-tb .x-edit-justifyright,
  4249. .x-menu-item img.x-edit-justifyright {
  4250. background-position: -144px 0;
  4251. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4252. /* line 70, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4253. .x-html-editor-tb .x-edit-insertorderedlist,
  4254. .x-menu-item img.x-edit-insertorderedlist {
  4255. background-position: -80px 0;
  4256. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4257. /* line 76, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4258. .x-html-editor-tb .x-edit-insertunorderedlist,
  4259. .x-menu-item img.x-edit-insertunorderedlist {
  4260. background-position: -96px 0;
  4261. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4262. /* line 82, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4263. .x-html-editor-tb .x-edit-increasefontsize,
  4264. .x-menu-item img.x-edit-increasefontsize {
  4265. background-position: -48px 0;
  4266. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4267. /* line 88, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4268. .x-html-editor-tb .x-edit-decreasefontsize,
  4269. .x-menu-item img.x-edit-decreasefontsize {
  4270. background-position: -64px 0;
  4271. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4272. /* line 94, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4273. .x-html-editor-tb .x-edit-sourceedit,
  4274. .x-menu-item img.x-edit-sourceedit {
  4275. background-position: -192px 0;
  4276. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4277. /* line 100, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4278. .x-html-editor-tb .x-edit-createlink,
  4279. .x-menu-item img.x-edit-createlink {
  4280. background-position: -208px 0;
  4281. background-image: url('../../resources/themes/images/default/editor/tb-sprite.gif'); }
  4282. /* line 105, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4283. .x-html-editor-tip .x-tip-bd .x-tip-bd-inner {
  4284. padding: 5px;
  4285. padding-bottom: 1px; }
  4286. /* line 111, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4287. .x-html-editor-tb .x-toolbar {
  4288. position: static !important; }
  4289. /* line 114, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4290. .x-html-editor-tb .x-font-select {
  4291. font-size: 11px; }
  4292. /* line 119, ../themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss */
  4293. .x-html-editor-wrap textarea {
  4294. border: 0;
  4295. padding: 3px 2px;
  4296. overflow: auto; }
  4297. /* line 7, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4298. .x-panel,
  4299. .x-plain {
  4300. overflow: hidden;
  4301. position: relative; }
  4302. /* line 24, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4303. .x-ie .x-panel-header,
  4304. .x-ie .x-panel-header-tl,
  4305. .x-ie .x-panel-header-tc,
  4306. .x-ie .x-panel-header-tr,
  4307. .x-ie .x-panel-header-ml,
  4308. .x-ie .x-panel-header-mc,
  4309. .x-ie .x-panel-header-mr,
  4310. .x-ie .x-panel-header-bl,
  4311. .x-ie .x-panel-header-bc,
  4312. .x-ie .x-panel-header-br {
  4313. zoom: 1; }
  4314. /* line 30, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4315. .x-ie8 td.x-frame-mc {
  4316. vertical-align: top; }
  4317. /* line 37, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4318. .x-panel-header-horizontal {
  4319. padding: 3px 5px 4px; }
  4320. /* line 40, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4321. .x-panel-header-vertical {
  4322. padding: 5px 4px; }
  4323. /* line 45, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4324. .x-panel-header-icon,
  4325. .x-window-header-icon {
  4326. width: 16px;
  4327. height: 16px;
  4328. background-repeat: no-repeat;
  4329. background-position: 0 0;
  4330. vertical-align: middle;
  4331. margin-right: 4px; }
  4332. /* line 56, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4333. .x-vertical .x-panel-header-icon,
  4334. .x-vertical .x-window-header-icon {
  4335. margin: 0 0 4px; }
  4336. /* line 64, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4337. .x-panel-header-draggable,
  4338. .x-panel-header-draggable .x-panel-header-text,
  4339. .x-window-header-draggable,
  4340. .x-window-header-draggable .x-window-header-text {
  4341. cursor: move; }
  4342. /* line 70, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4343. .x-panel-ghost, .x-window-ghost {
  4344. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
  4345. opacity: 0.65;
  4346. cursor: move; }
  4347. /* line 76, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4348. .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 {
  4349. width: 100%; }
  4350. /* line 82, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4351. .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 {
  4352. height: 100%; }
  4353. /* line 87, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4354. .x-panel-header-text-container {
  4355. overflow: hidden;
  4356. -o-text-overflow: ellipsis;
  4357. text-overflow: ellipsis; }
  4358. /* line 93, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4359. .x-panel-header-text {
  4360. user-select: none;
  4361. -o-user-select: none;
  4362. -ms-user-select: none;
  4363. -moz-user-select: -moz-none;
  4364. -webkit-user-select: none;
  4365. cursor: default;
  4366. white-space: nowrap; }
  4367. /* line 100, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4368. .x-panel-header-left .x-vml-base,
  4369. .x-panel-header-right .x-vml-base {
  4370. left: -3px !important; }
  4371. /* line 106, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4372. .x-panel-body {
  4373. overflow: hidden;
  4374. position: relative;
  4375. font-size: 12px; }
  4376. /* line 114, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4377. .x-panel-header-vertical .x-surface {
  4378. padding-left: 1px; }
  4379. /* line 122, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4380. .x-opera .x-panel-header-vertical .x-surface,
  4381. .x-strict .x-ie9 .x-panel-header-vertical .x-surface {
  4382. padding-left: 2px; }
  4383. /* line 129, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4384. .x-panel-collapsed .x-panel-header-collapsed-border-top {
  4385. border-bottom-width: 1px !important; }
  4386. /* line 132, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4387. .x-panel-collapsed .x-panel-header-collapsed-border-right {
  4388. border-left-width: 1px !important; }
  4389. /* line 135, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4390. .x-panel-collapsed .x-panel-header-collapsed-border-bottom {
  4391. border-top-width: 1px !important; }
  4392. /* line 138, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4393. .x-panel-collapsed .x-panel-header-collapsed-border-left {
  4394. border-right-width: 1px !important; }
  4395. /* line 145, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4396. .x-nlg .x-panel-header-vertical .x-frame-mc {
  4397. background-repeat: repeat-y; }
  4398. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4399. .x-panel-default {
  4400. border-color: #99bce8; }
  4401. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4402. .x-panel-header-default {
  4403. font-size: 11px;
  4404. border-color: #99bce8;
  4405. border-width: 1px;
  4406. border-style: solid; }
  4407. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4408. .x-nlg .x-panel-header-default-top {
  4409. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4410. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4411. .x-nlg .x-panel-header-default-bottom {
  4412. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4413. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4414. .x-nlg .x-panel-header-default-left {
  4415. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4416. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4417. .x-nlg .x-panel-header-default-right {
  4418. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4419. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4420. .x-nlg .x-panel-header-default-right {
  4421. background-position: top right; }
  4422. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4423. .x-nlg .x-panel-header-default-bottom {
  4424. background-position: bottom left; }
  4425. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4426. .x-panel-header-text-default {
  4427. color: #04408c;
  4428. font-size: 11px;
  4429. font-weight: bold;
  4430. font-family: tahoma, arial, verdana, sans-serif;
  4431. line-height: 17px; }
  4432. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4433. .x-panel-body-default {
  4434. background: white;
  4435. border-color: #99bce8;
  4436. color: black;
  4437. border-width: 1px;
  4438. border-style: solid; }
  4439. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4440. .x-panel-collapsed .x-window-header-default,
  4441. .x-panel-collapsed .x-panel-header-default {
  4442. border-color: #99bce8; }
  4443. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4444. .x-panel-header-default-vertical {
  4445. border-color: #99bce8; }
  4446. /* line 416, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4447. .x-panel-collapsed .x-panel-header-default-top {
  4448. -moz-border-radius-bottomleft: null;
  4449. -webkit-border-bottom-left-radius: null;
  4450. -o-border-bottom-left-radius: null;
  4451. -ms-border-bottom-left-radius: null;
  4452. -khtml-border-bottom-left-radius: null;
  4453. border-bottom-left-radius: null;
  4454. -moz-border-radius-bottomright: null;
  4455. -webkit-border-bottom-right-radius: null;
  4456. -o-border-bottom-right-radius: null;
  4457. -ms-border-bottom-right-radius: null;
  4458. -khtml-border-bottom-right-radius: null;
  4459. border-bottom-right-radius: null; }
  4460. /* line 420, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4461. .x-panel-collapsed .x-panel-header-default-right {
  4462. -moz-border-radius-topleft: null;
  4463. -webkit-border-top-left-radius: null;
  4464. -o-border-top-left-radius: null;
  4465. -ms-border-top-left-radius: null;
  4466. -khtml-border-top-left-radius: null;
  4467. border-top-left-radius: null;
  4468. -moz-border-radius-bottomleft: null;
  4469. -webkit-border-bottom-left-radius: null;
  4470. -o-border-bottom-left-radius: null;
  4471. -ms-border-bottom-left-radius: null;
  4472. -khtml-border-bottom-left-radius: null;
  4473. border-bottom-left-radius: null; }
  4474. /* line 424, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4475. .x-panel-collapsed .x-panel-header-default-bottom {
  4476. -moz-border-radius-topleft: null;
  4477. -webkit-border-top-left-radius: null;
  4478. -o-border-top-left-radius: null;
  4479. -ms-border-top-left-radius: null;
  4480. -khtml-border-top-left-radius: null;
  4481. border-top-left-radius: null;
  4482. -moz-border-radius-topright: null;
  4483. -webkit-border-top-right-radius: null;
  4484. -o-border-top-right-radius: null;
  4485. -ms-border-top-right-radius: null;
  4486. -khtml-border-top-right-radius: null;
  4487. border-top-right-radius: null; }
  4488. /* line 428, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4489. .x-panel-collapsed .x-panel-header-default-left {
  4490. -moz-border-radius-topright: null;
  4491. -webkit-border-top-right-radius: null;
  4492. -o-border-top-right-radius: null;
  4493. -ms-border-top-right-radius: null;
  4494. -khtml-border-top-right-radius: null;
  4495. border-top-right-radius: null;
  4496. -moz-border-radius-bottomright: null;
  4497. -webkit-border-bottom-right-radius: null;
  4498. -o-border-bottom-right-radius: null;
  4499. -ms-border-bottom-right-radius: null;
  4500. -khtml-border-bottom-right-radius: null;
  4501. border-bottom-right-radius: null; }
  4502. /* line 434, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4503. .x-panel-header-default-top {
  4504. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4505. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4506. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset;
  4507. box-shadow: #f4f8fd 0 1px 0px 0 inset; }
  4508. /* line 438, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4509. .x-panel-header-default-right {
  4510. -moz-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4511. -webkit-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4512. -o-box-shadow: #f4f8fd -1px 0 0px 0 inset;
  4513. box-shadow: #f4f8fd -1px 0 0px 0 inset; }
  4514. /* line 442, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4515. .x-panel-header-default-bottom {
  4516. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4517. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4518. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset;
  4519. box-shadow: #f4f8fd 0 -1px 0px 0 inset; }
  4520. /* line 446, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4521. .x-panel-header-default-left {
  4522. -moz-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4523. -webkit-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4524. -o-box-shadow: #f4f8fd 1px 0 0px 0 inset;
  4525. box-shadow: #f4f8fd 1px 0 0px 0 inset; }
  4526. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4527. .x-panel-header-default-right-tc,
  4528. .x-panel-header-default-right-mc,
  4529. .x-panel-header-default-right-bc {
  4530. background-position: right 0; }
  4531. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4532. .x-panel-header-default-bottom-tc,
  4533. .x-panel-header-default-bottom-mc,
  4534. .x-panel-header-default-bottom-bc {
  4535. background-position: 0 bottom; }
  4536. /* line 248, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4537. .x-panel-default-framed {
  4538. border-color: #99bce8; }
  4539. /* line 253, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4540. .x-panel-header-default-framed {
  4541. font-size: 11px;
  4542. border-color: #99bce8;
  4543. border-width: 1px;
  4544. border-style: solid; }
  4545. /* line 277, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4546. .x-nlg .x-panel-header-default-framed-top {
  4547. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif'); }
  4548. /* line 281, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4549. .x-nlg .x-panel-header-default-framed-bottom {
  4550. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif'); }
  4551. /* line 285, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4552. .x-nlg .x-panel-header-default-framed-left {
  4553. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif'); }
  4554. /* line 289, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4555. .x-nlg .x-panel-header-default-framed-right {
  4556. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif'); }
  4557. /* line 293, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4558. .x-nlg .x-panel-header-default-framed-right {
  4559. background-position: top right; }
  4560. /* line 297, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4561. .x-nlg .x-panel-header-default-framed-bottom {
  4562. background-position: bottom left; }
  4563. /* line 305, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4564. .x-nbr .x-panel-header-default-framed {
  4565. background-image: none; }
  4566. /* line 317, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4567. .x-strict .x-ie9 .x-panel-header-default-framed-top,
  4568. .x-nlg.x-opera .x-panel-header-default-framed-top,
  4569. .x-nlg.x-safari .x-panel-header-default-framed-top {
  4570. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-top-bg.gif'); }
  4571. /* line 321, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4572. .x-strict .x-ie9 .x-panel-header-default-framed-bottom,
  4573. .x-nlg.x-opera .x-panel-header-default-framed-bottom,
  4574. .x-nlg.x-safari .x-panel-header-default-framed-bottom {
  4575. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif'); }
  4576. /* line 325, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4577. .x-strict .x-ie9 .x-panel-header-default-framed-left,
  4578. .x-nlg.x-opera .x-panel-header-default-framed-left,
  4579. .x-nlg.x-safari .x-panel-header-default-framed-left {
  4580. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-left-bg.gif'); }
  4581. /* line 329, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4582. .x-strict .x-ie9 .x-panel-header-default-framed-right,
  4583. .x-nlg.x-opera .x-panel-header-default-framed-right,
  4584. .x-nlg.x-safari .x-panel-header-default-framed-right {
  4585. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-right-bg.gif'); }
  4586. /* line 338, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4587. .x-panel-header-text-default-framed {
  4588. color: #04408c;
  4589. font-size: 11px;
  4590. font-weight: bold;
  4591. font-family: tahoma, arial, verdana, sans-serif;
  4592. line-height: 17px; }
  4593. /* line 348, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4594. .x-panel-body-default-framed {
  4595. background: #dfe9f6;
  4596. border-color: #99bce8;
  4597. color: black;
  4598. border-width: 0;
  4599. border-style: solid; }
  4600. /* line 363, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4601. .x-panel-collapsed .x-window-header-default-framed,
  4602. .x-panel-collapsed .x-panel-header-default-framed {
  4603. border-color: #99bce8; }
  4604. /* line 368, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4605. .x-panel-header-default-framed-vertical {
  4606. border-color: #99bce8; }
  4607. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4608. .x-panel-default-framed {
  4609. padding: 4px 4px 4px 4px;
  4610. border-width: 1px;
  4611. border-style: solid;
  4612. background-color: #dfe9f6; }
  4613. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4614. .x-nlg .x-panel-default-framed-mc {
  4615. background-color: #dfe9f6; }
  4616. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4617. .x-nbr .x-panel-default-framed {
  4618. padding: 0 !important;
  4619. border-width: 0 !important;
  4620. -moz-border-radius: 0px;
  4621. -webkit-border-radius: 0px;
  4622. -o-border-radius: 0px;
  4623. -ms-border-radius: 0px;
  4624. -khtml-border-radius: 0px;
  4625. border-radius: 0px;
  4626. background-color: transparent;
  4627. background-position: 1000404px 1000404px; }
  4628. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4629. .x-nbr .x-panel-default-framed-tl,
  4630. .x-nbr .x-panel-default-framed-bl,
  4631. .x-nbr .x-panel-default-framed-tr,
  4632. .x-nbr .x-panel-default-framed-br,
  4633. .x-nbr .x-panel-default-framed-tc,
  4634. .x-nbr .x-panel-default-framed-bc,
  4635. .x-nbr .x-panel-default-framed-ml,
  4636. .x-nbr .x-panel-default-framed-mr {
  4637. zoom: 1;
  4638. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-corners.gif'); }
  4639. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4640. .x-nbr .x-panel-default-framed-ml,
  4641. .x-nbr .x-panel-default-framed-mr {
  4642. zoom: 1;
  4643. background-image: url('../../resources/themes/images/default/panel/panel-default-framed-sides.gif');
  4644. background-position: 0 0;
  4645. background-repeat: repeat-y; }
  4646. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4647. .x-nbr .x-panel-default-framed-mc {
  4648. padding: 1px 1px 1px 1px; }
  4649. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4650. .x-strict .x-ie7 .x-panel-default-framed-tl,
  4651. .x-strict .x-ie7 .x-panel-default-framed-bl {
  4652. position: relative;
  4653. right: 0; }
  4654. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4655. .x-panel-header-default-framed-top {
  4656. padding: 3px 5px 4px 5px;
  4657. border-width: 1px 1px 0 1px;
  4658. border-style: solid;
  4659. background-color: #cbddf3; }
  4660. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4661. .x-nlg .x-panel-header-default-framed-top-mc {
  4662. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif');
  4663. background-color: #cbddf3; }
  4664. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4665. .x-nbr .x-panel-header-default-framed-top {
  4666. padding: 0 !important;
  4667. border-width: 0 !important;
  4668. -moz-border-radius: 0px;
  4669. -webkit-border-radius: 0px;
  4670. -o-border-radius: 0px;
  4671. -ms-border-radius: 0px;
  4672. -khtml-border-radius: 0px;
  4673. border-radius: 0px;
  4674. background-color: transparent;
  4675. background-position: 1000404px 1000000px; }
  4676. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4677. .x-nbr .x-panel-header-default-framed-top-tl,
  4678. .x-nbr .x-panel-header-default-framed-top-bl,
  4679. .x-nbr .x-panel-header-default-framed-top-tr,
  4680. .x-nbr .x-panel-header-default-framed-top-br,
  4681. .x-nbr .x-panel-header-default-framed-top-tc,
  4682. .x-nbr .x-panel-header-default-framed-top-bc,
  4683. .x-nbr .x-panel-header-default-framed-top-ml,
  4684. .x-nbr .x-panel-header-default-framed-top-mr {
  4685. zoom: 1;
  4686. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif'); }
  4687. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4688. .x-nbr .x-panel-header-default-framed-top-ml,
  4689. .x-nbr .x-panel-header-default-framed-top-mr {
  4690. zoom: 1;
  4691. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif');
  4692. background-position: 0 0; }
  4693. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4694. .x-nbr .x-panel-header-default-framed-top-mc {
  4695. padding: 0px 2px 4px 2px; }
  4696. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4697. .x-strict .x-ie7 .x-panel-header-default-framed-top-tl,
  4698. .x-strict .x-ie7 .x-panel-header-default-framed-top-bl {
  4699. position: relative;
  4700. right: 0; }
  4701. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4702. .x-panel-header-default-framed-right {
  4703. padding: 5px 4px 5px 4px;
  4704. border-width: 1px 1px 1px 0;
  4705. border-style: solid;
  4706. background-color: #cbddf3; }
  4707. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4708. .x-nlg .x-panel-header-default-framed-right-mc {
  4709. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif');
  4710. background-color: #cbddf3; }
  4711. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4712. .x-nbr .x-panel-header-default-framed-right {
  4713. padding: 0 !important;
  4714. border-width: 0 !important;
  4715. -moz-border-radius: 0px;
  4716. -webkit-border-radius: 0px;
  4717. -o-border-radius: 0px;
  4718. -ms-border-radius: 0px;
  4719. -khtml-border-radius: 0px;
  4720. border-radius: 0px;
  4721. background-color: transparent;
  4722. background-position: 1000004px 1100400px; }
  4723. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4724. .x-nbr .x-panel-header-default-framed-right-tl,
  4725. .x-nbr .x-panel-header-default-framed-right-bl,
  4726. .x-nbr .x-panel-header-default-framed-right-tr,
  4727. .x-nbr .x-panel-header-default-framed-right-br,
  4728. .x-nbr .x-panel-header-default-framed-right-tc,
  4729. .x-nbr .x-panel-header-default-framed-right-bc,
  4730. .x-nbr .x-panel-header-default-framed-right-ml,
  4731. .x-nbr .x-panel-header-default-framed-right-mr {
  4732. zoom: 1;
  4733. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif'); }
  4734. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4735. .x-nbr .x-panel-header-default-framed-right-tc,
  4736. .x-nbr .x-panel-header-default-framed-right-bc {
  4737. zoom: 1;
  4738. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif');
  4739. background-position: 0 0;
  4740. background-repeat: repeat-x; }
  4741. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4742. .x-nbr .x-panel-header-default-framed-right-mc {
  4743. padding: 2px 1px 2px 4px; }
  4744. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4745. .x-strict .x-ie7 .x-panel-header-default-framed-right-tl,
  4746. .x-strict .x-ie7 .x-panel-header-default-framed-right-bl {
  4747. position: relative;
  4748. right: 0; }
  4749. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4750. .x-panel-header-default-framed-bottom {
  4751. padding: 3px 5px 4px 5px;
  4752. border-width: 0 1px 1px 1px;
  4753. border-style: solid;
  4754. background-color: #cbddf3; }
  4755. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4756. .x-nlg .x-panel-header-default-framed-bottom-mc {
  4757. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif');
  4758. background-color: #cbddf3; }
  4759. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4760. .x-nbr .x-panel-header-default-framed-bottom {
  4761. padding: 0 !important;
  4762. border-width: 0 !important;
  4763. -moz-border-radius: 0px;
  4764. -webkit-border-radius: 0px;
  4765. -o-border-radius: 0px;
  4766. -ms-border-radius: 0px;
  4767. -khtml-border-radius: 0px;
  4768. border-radius: 0px;
  4769. background-color: transparent;
  4770. background-position: 1000000px 1000404px; }
  4771. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4772. .x-nbr .x-panel-header-default-framed-bottom-tl,
  4773. .x-nbr .x-panel-header-default-framed-bottom-bl,
  4774. .x-nbr .x-panel-header-default-framed-bottom-tr,
  4775. .x-nbr .x-panel-header-default-framed-bottom-br,
  4776. .x-nbr .x-panel-header-default-framed-bottom-tc,
  4777. .x-nbr .x-panel-header-default-framed-bottom-bc,
  4778. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4779. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4780. zoom: 1;
  4781. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif'); }
  4782. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4783. .x-nbr .x-panel-header-default-framed-bottom-ml,
  4784. .x-nbr .x-panel-header-default-framed-bottom-mr {
  4785. zoom: 1;
  4786. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif');
  4787. background-position: 0 0; }
  4788. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4789. .x-nbr .x-panel-header-default-framed-bottom-mc {
  4790. padding: 3px 2px 1px 2px; }
  4791. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4792. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,
  4793. .x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl {
  4794. position: relative;
  4795. right: 0; }
  4796. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4797. .x-panel-header-default-framed-left {
  4798. padding: 5px 4px 5px 4px;
  4799. border-width: 1px 0 1px 1px;
  4800. border-style: solid;
  4801. background-color: #cbddf3; }
  4802. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4803. .x-nlg .x-panel-header-default-framed-left-mc {
  4804. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif');
  4805. background-color: #cbddf3; }
  4806. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4807. .x-nbr .x-panel-header-default-framed-left {
  4808. padding: 0 !important;
  4809. border-width: 0 !important;
  4810. -moz-border-radius: 0px;
  4811. -webkit-border-radius: 0px;
  4812. -o-border-radius: 0px;
  4813. -ms-border-radius: 0px;
  4814. -khtml-border-radius: 0px;
  4815. border-radius: 0px;
  4816. background-color: transparent;
  4817. background-position: 1000400px 1100004px; }
  4818. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4819. .x-nbr .x-panel-header-default-framed-left-tl,
  4820. .x-nbr .x-panel-header-default-framed-left-bl,
  4821. .x-nbr .x-panel-header-default-framed-left-tr,
  4822. .x-nbr .x-panel-header-default-framed-left-br,
  4823. .x-nbr .x-panel-header-default-framed-left-tc,
  4824. .x-nbr .x-panel-header-default-framed-left-bc,
  4825. .x-nbr .x-panel-header-default-framed-left-ml,
  4826. .x-nbr .x-panel-header-default-framed-left-mr {
  4827. zoom: 1;
  4828. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif'); }
  4829. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4830. .x-nbr .x-panel-header-default-framed-left-tc,
  4831. .x-nbr .x-panel-header-default-framed-left-bc {
  4832. zoom: 1;
  4833. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif');
  4834. background-position: 0 0;
  4835. background-repeat: repeat-x; }
  4836. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4837. .x-nbr .x-panel-header-default-framed-left-mc {
  4838. padding: 2px 4px 2px 1px; }
  4839. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4840. .x-strict .x-ie7 .x-panel-header-default-framed-left-tl,
  4841. .x-strict .x-ie7 .x-panel-header-default-framed-left-bl {
  4842. position: relative;
  4843. right: 0; }
  4844. /* line 399, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4845. .x-panel-header-default-framed-top {
  4846. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4847. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4848. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4849. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4850. /* line 403, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4851. .x-panel-header-default-framed-right {
  4852. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4853. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4854. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset;
  4855. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset; }
  4856. /* line 407, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4857. .x-panel-header-default-framed-bottom {
  4858. -moz-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4859. -webkit-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4860. -o-box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4861. box-shadow: #f4f8fd 0 -1px 0px 0 inset, #f4f8fd -1px 0 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4862. /* line 411, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4863. .x-panel-header-default-framed-left {
  4864. -moz-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4865. -webkit-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4866. -o-box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset;
  4867. box-shadow: #f4f8fd 0 1px 0px 0 inset, #f4f8fd 0 -1px 0px 0 inset, #f4f8fd 1px 0 0px 0 inset; }
  4868. /* line 452, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4869. .x-panel .x-panel-header-default-framed-top {
  4870. border-bottom-width: 1px !important; }
  4871. /* line 456, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4872. .x-panel .x-panel-header-default-framed-right {
  4873. border-left-width: 1px !important; }
  4874. /* line 460, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4875. .x-panel .x-panel-header-default-framed-bottom {
  4876. border-top-width: 1px !important; }
  4877. /* line 464, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4878. .x-panel .x-panel-header-default-framed-left {
  4879. border-right-width: 1px !important; }
  4880. /* line 468, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  4881. .x-panel-header-default-framed-collapsed {
  4882. -moz-border-radius: 4px;
  4883. -webkit-border-radius: 4px;
  4884. -o-border-radius: 4px;
  4885. -ms-border-radius: 4px;
  4886. -khtml-border-radius: 4px;
  4887. border-radius: 4px; }
  4888. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4889. .x-panel-header-default-framed-collapsed-top {
  4890. padding: 3px 5px 4px 5px;
  4891. border-width: 1px;
  4892. border-style: solid;
  4893. background-color: #cbddf3; }
  4894. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4895. .x-nlg .x-panel-header-default-framed-collapsed-top-mc {
  4896. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif');
  4897. background-color: #cbddf3; }
  4898. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4899. .x-nbr .x-panel-header-default-framed-collapsed-top {
  4900. padding: 0 !important;
  4901. border-width: 0 !important;
  4902. -moz-border-radius: 0px;
  4903. -webkit-border-radius: 0px;
  4904. -o-border-radius: 0px;
  4905. -ms-border-radius: 0px;
  4906. -khtml-border-radius: 0px;
  4907. border-radius: 0px;
  4908. background-color: transparent;
  4909. background-position: 1000404px 1000404px; }
  4910. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4911. .x-nbr .x-panel-header-default-framed-collapsed-top-tl,
  4912. .x-nbr .x-panel-header-default-framed-collapsed-top-bl,
  4913. .x-nbr .x-panel-header-default-framed-collapsed-top-tr,
  4914. .x-nbr .x-panel-header-default-framed-collapsed-top-br,
  4915. .x-nbr .x-panel-header-default-framed-collapsed-top-tc,
  4916. .x-nbr .x-panel-header-default-framed-collapsed-top-bc,
  4917. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  4918. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  4919. zoom: 1;
  4920. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif'); }
  4921. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4922. .x-nbr .x-panel-header-default-framed-collapsed-top-ml,
  4923. .x-nbr .x-panel-header-default-framed-collapsed-top-mr {
  4924. zoom: 1;
  4925. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif');
  4926. background-position: 0 0; }
  4927. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4928. .x-nbr .x-panel-header-default-framed-collapsed-top-mc {
  4929. padding: 0px 2px 1px 2px; }
  4930. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4931. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,
  4932. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl {
  4933. position: relative;
  4934. right: 0; }
  4935. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4936. .x-panel-header-default-framed-collapsed-right {
  4937. padding: 5px 4px 5px 4px;
  4938. border-width: 1px;
  4939. border-style: solid;
  4940. background-color: #cbddf3; }
  4941. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4942. .x-nlg .x-panel-header-default-framed-collapsed-right-mc {
  4943. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif');
  4944. background-color: #cbddf3; }
  4945. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4946. .x-nbr .x-panel-header-default-framed-collapsed-right {
  4947. padding: 0 !important;
  4948. border-width: 0 !important;
  4949. -moz-border-radius: 0px;
  4950. -webkit-border-radius: 0px;
  4951. -o-border-radius: 0px;
  4952. -ms-border-radius: 0px;
  4953. -khtml-border-radius: 0px;
  4954. border-radius: 0px;
  4955. background-color: transparent;
  4956. background-position: 1000404px 1100404px; }
  4957. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4958. .x-nbr .x-panel-header-default-framed-collapsed-right-tl,
  4959. .x-nbr .x-panel-header-default-framed-collapsed-right-bl,
  4960. .x-nbr .x-panel-header-default-framed-collapsed-right-tr,
  4961. .x-nbr .x-panel-header-default-framed-collapsed-right-br,
  4962. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  4963. .x-nbr .x-panel-header-default-framed-collapsed-right-bc,
  4964. .x-nbr .x-panel-header-default-framed-collapsed-right-ml,
  4965. .x-nbr .x-panel-header-default-framed-collapsed-right-mr {
  4966. zoom: 1;
  4967. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif'); }
  4968. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4969. .x-nbr .x-panel-header-default-framed-collapsed-right-tc,
  4970. .x-nbr .x-panel-header-default-framed-collapsed-right-bc {
  4971. zoom: 1;
  4972. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif');
  4973. background-position: 0 0;
  4974. background-repeat: repeat-x; }
  4975. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4976. .x-nbr .x-panel-header-default-framed-collapsed-right-mc {
  4977. padding: 2px 1px 2px 1px; }
  4978. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4979. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,
  4980. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl {
  4981. position: relative;
  4982. right: 0; }
  4983. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4984. .x-panel-header-default-framed-collapsed-bottom {
  4985. padding: 3px 5px 4px 5px;
  4986. border-width: 1px;
  4987. border-style: solid;
  4988. background-color: #cbddf3; }
  4989. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4990. .x-nlg .x-panel-header-default-framed-collapsed-bottom-mc {
  4991. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif');
  4992. background-color: #cbddf3; }
  4993. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  4994. .x-nbr .x-panel-header-default-framed-collapsed-bottom {
  4995. padding: 0 !important;
  4996. border-width: 0 !important;
  4997. -moz-border-radius: 0px;
  4998. -webkit-border-radius: 0px;
  4999. -o-border-radius: 0px;
  5000. -ms-border-radius: 0px;
  5001. -khtml-border-radius: 0px;
  5002. border-radius: 0px;
  5003. background-color: transparent;
  5004. background-position: 1000404px 1000404px; }
  5005. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5006. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tl,
  5007. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bl,
  5008. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tr,
  5009. .x-nbr .x-panel-header-default-framed-collapsed-bottom-br,
  5010. .x-nbr .x-panel-header-default-framed-collapsed-bottom-tc,
  5011. .x-nbr .x-panel-header-default-framed-collapsed-bottom-bc,
  5012. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5013. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5014. zoom: 1;
  5015. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif'); }
  5016. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5017. .x-nbr .x-panel-header-default-framed-collapsed-bottom-ml,
  5018. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mr {
  5019. zoom: 1;
  5020. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif');
  5021. background-position: 0 0; }
  5022. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5023. .x-nbr .x-panel-header-default-framed-collapsed-bottom-mc {
  5024. padding: 0px 2px 1px 2px; }
  5025. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5026. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,
  5027. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl {
  5028. position: relative;
  5029. right: 0; }
  5030. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5031. .x-panel-header-default-framed-collapsed-left {
  5032. padding: 5px 4px 5px 4px;
  5033. border-width: 1px;
  5034. border-style: solid;
  5035. background-color: #cbddf3; }
  5036. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5037. .x-nlg .x-panel-header-default-framed-collapsed-left-mc {
  5038. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif');
  5039. background-color: #cbddf3; }
  5040. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5041. .x-nbr .x-panel-header-default-framed-collapsed-left {
  5042. padding: 0 !important;
  5043. border-width: 0 !important;
  5044. -moz-border-radius: 0px;
  5045. -webkit-border-radius: 0px;
  5046. -o-border-radius: 0px;
  5047. -ms-border-radius: 0px;
  5048. -khtml-border-radius: 0px;
  5049. border-radius: 0px;
  5050. background-color: transparent;
  5051. background-position: 1000404px 1100404px; }
  5052. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5053. .x-nbr .x-panel-header-default-framed-collapsed-left-tl,
  5054. .x-nbr .x-panel-header-default-framed-collapsed-left-bl,
  5055. .x-nbr .x-panel-header-default-framed-collapsed-left-tr,
  5056. .x-nbr .x-panel-header-default-framed-collapsed-left-br,
  5057. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5058. .x-nbr .x-panel-header-default-framed-collapsed-left-bc,
  5059. .x-nbr .x-panel-header-default-framed-collapsed-left-ml,
  5060. .x-nbr .x-panel-header-default-framed-collapsed-left-mr {
  5061. zoom: 1;
  5062. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif'); }
  5063. /* line 157, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5064. .x-nbr .x-panel-header-default-framed-collapsed-left-tc,
  5065. .x-nbr .x-panel-header-default-framed-collapsed-left-bc {
  5066. zoom: 1;
  5067. background-image: url('../../resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif');
  5068. background-position: 0 0;
  5069. background-repeat: repeat-x; }
  5070. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5071. .x-nbr .x-panel-header-default-framed-collapsed-left-mc {
  5072. padding: 2px 1px 2px 1px; }
  5073. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5074. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,
  5075. .x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl {
  5076. position: relative;
  5077. right: 0; }
  5078. /* line 481, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5079. .x-panel-header-default-framed-right-tc,
  5080. .x-panel-header-default-framed-right-mc,
  5081. .x-panel-header-default-framed-right-bc {
  5082. background-position: right 0; }
  5083. /* line 487, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5084. .x-panel-header-default-framed-bottom-tc,
  5085. .x-panel-header-default-framed-bottom-mc,
  5086. .x-panel-header-default-framed-bottom-bc {
  5087. background-position: 0 bottom; }
  5088. /* line 197, ../themes/stylesheets/ext4/default/widgets/_panel.scss */
  5089. .x-panel-header-plain,
  5090. .x-panel-body-plain {
  5091. border: 0;
  5092. padding: 0; }
  5093. /* line 2, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5094. .x-tip {
  5095. position: absolute;
  5096. overflow: visible;
  5097. /*pointer needs to be able to stick out*/
  5098. border-color: #8eaace; }
  5099. /* line 8, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5100. .x-tip .x-tip-header .x-box-item {
  5101. padding: 3px 3px 0; }
  5102. /* line 12, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5103. .x-tip .x-tip-header .x-tool {
  5104. padding: 0px 1px 0 0 !important; }
  5105. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5106. .x-tip {
  5107. padding: 2px 2px 2px 2px;
  5108. border-width: 1px;
  5109. border-style: solid;
  5110. background-color: #e9f2ff; }
  5111. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5112. .x-nlg .x-tip-mc {
  5113. background-color: #e9f2ff; }
  5114. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5115. .x-nbr .x-tip {
  5116. padding: 0 !important;
  5117. border-width: 0 !important;
  5118. -moz-border-radius: 0px;
  5119. -webkit-border-radius: 0px;
  5120. -o-border-radius: 0px;
  5121. -ms-border-radius: 0px;
  5122. -khtml-border-radius: 0px;
  5123. border-radius: 0px;
  5124. background-color: transparent;
  5125. background-position: 1100303px 1000303px; }
  5126. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5127. .x-nbr .x-tip-tl,
  5128. .x-nbr .x-tip-bl,
  5129. .x-nbr .x-tip-tr,
  5130. .x-nbr .x-tip-br,
  5131. .x-nbr .x-tip-tc,
  5132. .x-nbr .x-tip-bc,
  5133. .x-nbr .x-tip-ml,
  5134. .x-nbr .x-tip-mr {
  5135. zoom: 1;
  5136. background-image: url('../../resources/themes/images/default/tip/tip-corners.gif'); }
  5137. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5138. .x-nbr .x-tip-ml,
  5139. .x-nbr .x-tip-mr {
  5140. zoom: 1;
  5141. background-image: url('../../resources/themes/images/default/tip/tip-sides.gif');
  5142. background-position: 0 0;
  5143. background-repeat: repeat-y; }
  5144. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5145. .x-nbr .x-tip-mc {
  5146. padding: 0px 0px 0px 0px; }
  5147. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5148. .x-strict .x-ie7 .x-tip-tl,
  5149. .x-strict .x-ie7 .x-tip-bl {
  5150. position: relative;
  5151. right: 0; }
  5152. /* line 27, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5153. .x-tip-header-text {
  5154. user-select: none;
  5155. -o-user-select: none;
  5156. -ms-user-select: none;
  5157. -moz-user-select: -moz-none;
  5158. -webkit-user-select: none;
  5159. cursor: default;
  5160. color: #444444;
  5161. font-size: 11px;
  5162. font-weight: bold; }
  5163. /* line 36, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5164. .x-tip-header-draggable .x-tip-header-text {
  5165. cursor: move; }
  5166. /* line 43, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5167. .x-tip-body,
  5168. .x-form-invalid-tip-body {
  5169. overflow: hidden;
  5170. position: relative;
  5171. padding: 3px; }
  5172. /* line 51, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5173. .x-tip-header,
  5174. .x-tip-body,
  5175. .x-form-invalid-tip-body {
  5176. color: #444444;
  5177. font-size: 11px;
  5178. font-weight: normal; }
  5179. /* line 55, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5180. .x-tip-header a,
  5181. .x-tip-body a,
  5182. .x-form-invalid-tip-body a {
  5183. color: #2a2a2a; }
  5184. /* line 60, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5185. .x-tip-anchor {
  5186. position: absolute;
  5187. overflow: hidden;
  5188. height: 0;
  5189. width: 0;
  5190. border-style: solid;
  5191. border-width: 5px;
  5192. border-color: #8eaace;
  5193. zoom: 1; }
  5194. /* line 75, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5195. .x-border-box .x-tip-anchor {
  5196. width: 10px;
  5197. height: 10px; }
  5198. /* line 80, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5199. .x-tip-anchor-top {
  5200. border-top-color: transparent;
  5201. border-left-color: transparent;
  5202. border-right-color: transparent;
  5203. _border-top-color: pink;
  5204. _border-left-color: pink;
  5205. _border-right-color: pink;
  5206. _filter: chroma(color=pink); }
  5207. /* line 93, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5208. .x-tip-anchor-bottom {
  5209. border-bottom-color: transparent;
  5210. border-left-color: transparent;
  5211. border-right-color: transparent;
  5212. _border-bottom-color: pink;
  5213. _border-left-color: pink;
  5214. _border-right-color: pink;
  5215. _filter: chroma(color=pink); }
  5216. /* line 106, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5217. .x-tip-anchor-left {
  5218. border-top-color: transparent;
  5219. border-bottom-color: transparent;
  5220. border-left-color: transparent;
  5221. _border-top-color: pink;
  5222. _border-bottom-color: pink;
  5223. _border-left-color: pink;
  5224. _filter: chroma(color=pink); }
  5225. /* line 119, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5226. .x-tip-anchor-right {
  5227. border-top-color: transparent;
  5228. border-bottom-color: transparent;
  5229. border-right-color: transparent;
  5230. _border-top-color: pink;
  5231. _border-bottom-color: pink;
  5232. _border-right-color: pink;
  5233. _filter: chroma(color=pink); }
  5234. /* line 133, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5235. .x-form-invalid-tip {
  5236. border-color: #a1311f;
  5237. -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;
  5238. -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;
  5239. -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;
  5240. 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; }
  5241. /* line 142, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5242. .x-form-invalid-tip-body {
  5243. background: 1px 1px no-repeat;
  5244. background-image: url('../../resources/themes/images/default/form/exclamation.gif');
  5245. padding-left: 22px; }
  5246. /* line 147, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5247. .x-form-invalid-tip-body li {
  5248. margin-bottom: 4px; }
  5249. /* line 149, ../themes/stylesheets/ext4/default/widgets/_qtip.scss */
  5250. .x-form-invalid-tip-body li.last {
  5251. margin-bottom: 0; }
  5252. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5253. .x-form-invalid-tip-default {
  5254. padding: 4px 4px 4px 4px;
  5255. border-width: 1px;
  5256. border-style: solid;
  5257. background-color: white; }
  5258. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5259. .x-nlg .x-form-invalid-tip-default-mc {
  5260. background-color: white; }
  5261. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5262. .x-nbr .x-form-invalid-tip-default {
  5263. padding: 0 !important;
  5264. border-width: 0 !important;
  5265. -moz-border-radius: 0px;
  5266. -webkit-border-radius: 0px;
  5267. -o-border-radius: 0px;
  5268. -ms-border-radius: 0px;
  5269. -khtml-border-radius: 0px;
  5270. border-radius: 0px;
  5271. background-color: transparent;
  5272. background-position: 1100505px 1000505px; }
  5273. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5274. .x-nbr .x-form-invalid-tip-default-tl,
  5275. .x-nbr .x-form-invalid-tip-default-bl,
  5276. .x-nbr .x-form-invalid-tip-default-tr,
  5277. .x-nbr .x-form-invalid-tip-default-br,
  5278. .x-nbr .x-form-invalid-tip-default-tc,
  5279. .x-nbr .x-form-invalid-tip-default-bc,
  5280. .x-nbr .x-form-invalid-tip-default-ml,
  5281. .x-nbr .x-form-invalid-tip-default-mr {
  5282. zoom: 1;
  5283. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-corners.gif'); }
  5284. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5285. .x-nbr .x-form-invalid-tip-default-ml,
  5286. .x-nbr .x-form-invalid-tip-default-mr {
  5287. zoom: 1;
  5288. background-image: url('../../resources/themes/images/default/form-invalid-tip/form-invalid-tip-default-sides.gif');
  5289. background-position: 0 0;
  5290. background-repeat: repeat-y; }
  5291. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5292. .x-nbr .x-form-invalid-tip-default-mc {
  5293. padding: 0px 0px 0px 0px; }
  5294. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5295. .x-strict .x-ie7 .x-form-invalid-tip-default-tl,
  5296. .x-strict .x-ie7 .x-form-invalid-tip-default-bl {
  5297. position: relative;
  5298. right: 0; }
  5299. /* line 2, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5300. .x-slider {
  5301. zoom: 1; }
  5302. /* line 6, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5303. .x-slider-inner {
  5304. position: relative;
  5305. left: 0;
  5306. top: 0;
  5307. overflow: visible;
  5308. zoom: 1; }
  5309. /* line 14, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5310. .x-slider-focus {
  5311. position: absolute;
  5312. left: 0;
  5313. top: 0;
  5314. width: 1px;
  5315. height: 1px;
  5316. line-height: 1px;
  5317. font-size: 1px;
  5318. -moz-outline: 0 none;
  5319. outline: 0 none;
  5320. user-select: none;
  5321. -o-user-select: none;
  5322. -ms-user-select: none;
  5323. -moz-user-select: -moz-none;
  5324. -webkit-user-select: none;
  5325. cursor: default;
  5326. display: block;
  5327. overflow: hidden; }
  5328. /* Horizontal styles */
  5329. /* line 30, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5330. .x-slider-horz {
  5331. padding-left: 7px;
  5332. background: transparent no-repeat 0 -24px;
  5333. width: 100%; }
  5334. /* line 36, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5335. .x-slider-horz .x-slider-end {
  5336. padding-right: 7px;
  5337. zoom: 1;
  5338. background: transparent no-repeat right -46px; }
  5339. /* line 42, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5340. .x-slider-horz .x-slider-inner {
  5341. background: transparent repeat-x 0 -2px;
  5342. height: 18px; }
  5343. /* line 47, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5344. .x-slider-horz .x-slider-thumb {
  5345. width: 14px;
  5346. height: 15px;
  5347. margin-left: -7px;
  5348. position: absolute;
  5349. left: 0;
  5350. top: 1px;
  5351. background: transparent no-repeat 0 0; }
  5352. /* line 57, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5353. .x-slider-horz .x-slider-thumb-over {
  5354. background-position: -14px -15px; }
  5355. /* line 61, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5356. .x-slider-horz .x-slider-thumb-drag {
  5357. background-position: -28px -30px; }
  5358. /* Vertical styles */
  5359. /* line 66, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5360. .x-slider-vert {
  5361. padding-top: 7px;
  5362. background: transparent no-repeat -44px 0; }
  5363. /* line 71, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5364. .x-slider-vert .x-slider-end {
  5365. padding-bottom: 7px;
  5366. zoom: 1;
  5367. background: transparent no-repeat -22px bottom;
  5368. width: 22px; }
  5369. /* line 78, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5370. .x-slider-vert .x-slider-inner {
  5371. background: transparent repeat-y 0 0;
  5372. width: 22px; }
  5373. /* line 83, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5374. .x-slider-vert .x-slider-thumb {
  5375. width: 15px;
  5376. height: 14px;
  5377. margin-bottom: -7px;
  5378. position: absolute;
  5379. left: 3px;
  5380. bottom: 0;
  5381. background: transparent no-repeat 0 0; }
  5382. /* line 93, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5383. .x-slider-vert .x-slider-thumb-over {
  5384. background-position: -15px -14px; }
  5385. /* line 97, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5386. .x-slider-vert .x-slider-thumb-drag {
  5387. background-position: -30px -28px; }
  5388. /* line 103, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5389. .x-slider-horz,
  5390. .x-slider-horz .x-slider-end,
  5391. .x-slider-horz .x-slider-inner {
  5392. background-image: url('../../resources/themes/images/default/slider/slider-bg.png'); }
  5393. /* line 107, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5394. .x-slider-horz .x-slider-thumb {
  5395. background-image: url('../../resources/themes/images/default/slider/slider-thumb.png'); }
  5396. /* line 113, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5397. .x-slider-vert,
  5398. .x-slider-vert .x-slider-end,
  5399. .x-slider-vert .x-slider-inner {
  5400. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.png'); }
  5401. /* line 117, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5402. .x-slider-vert .x-slider-thumb {
  5403. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.png'); }
  5404. /* line 125, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5405. .x-ie6 .x-slider-horz,
  5406. .x-ie6 .x-slider-horz .x-slider-end,
  5407. .x-ie6 .x-slider-horz .x-slider-inner {
  5408. background-image: url('../../resources/themes/images/default/slider/slider-bg.gif'); }
  5409. /* line 129, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5410. .x-ie6 .x-slider-horz .x-slider-thumb {
  5411. background-image: url('../../resources/themes/images/default/slider/slider-thumb.gif'); }
  5412. /* line 135, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5413. .x-ie6 .x-slider-vert,
  5414. .x-ie6 .x-slider-vert .x-slider-end,
  5415. .x-ie6 .x-slider-vert .x-slider-inner {
  5416. background-image: url('../../resources/themes/images/default/slider/slider-v-bg.gif'); }
  5417. /* line 139, ../themes/stylesheets/ext4/default/widgets/_slider.scss */
  5418. .x-ie6 .x-slider-vert .x-slider-thumb {
  5419. background-image: url('../../resources/themes/images/default/slider/slider-v-thumb.gif'); }
  5420. /* line 2, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5421. .x-progress {
  5422. position: relative;
  5423. border-width: 1px;
  5424. border-style: solid;
  5425. -moz-border-radius: 0;
  5426. -webkit-border-radius: 0;
  5427. -o-border-radius: 0;
  5428. -ms-border-radius: 0;
  5429. -khtml-border-radius: 0;
  5430. border-radius: 0;
  5431. overflow: hidden;
  5432. height: 20px; }
  5433. /* line 13, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5434. .x-progress-bar {
  5435. height: 18px;
  5436. overflow: hidden;
  5437. position: absolute;
  5438. width: 0;
  5439. -moz-border-radius: 0;
  5440. -webkit-border-radius: 0;
  5441. -o-border-radius: 0;
  5442. -ms-border-radius: 0;
  5443. -khtml-border-radius: 0;
  5444. border-radius: 0;
  5445. border-right: 1px solid;
  5446. border-top: 1px solid; }
  5447. /* line 26, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5448. .x-progress-text {
  5449. overflow: hidden;
  5450. position: absolute;
  5451. padding: 0 5px;
  5452. height: 18px;
  5453. font-weight: bold;
  5454. font-size: 11px;
  5455. line-height: 16px;
  5456. text-align: center; }
  5457. /* line 41, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5458. .x-progress-text-back {
  5459. padding-top: 1px; }
  5460. /* line 46, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5461. .x-strict .x-ie7m .x-progress {
  5462. height: 18px; }
  5463. /* line 88, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5464. .x-progress-default {
  5465. border-color: #6594cf; }
  5466. /* line 91, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5467. .x-progress-default .x-progress-bar {
  5468. border-right-color: #6594cf;
  5469. border-top-color: #c6d8ed;
  5470. background-image: none;
  5471. background-color: #73a3e0;
  5472. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db));
  5473. background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5474. background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5475. background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5476. background-image: -ms-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db);
  5477. background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); }
  5478. /* line 98, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5479. .x-progress-default .x-progress-text {
  5480. color: white; }
  5481. /* line 102, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5482. .x-progress-default .x-progress-text-back {
  5483. color: #396295; }
  5484. /* line 111, ../themes/stylesheets/ext4/default/widgets/_progress-bar.scss */
  5485. .x-nlg .x-progress-default .x-progress-bar {
  5486. background: repeat-x;
  5487. background-image: url('../../resources/themes/images/default/progress/progress-default-bg.gif'); }
  5488. /* line 2, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5489. .x-toolbar {
  5490. font-size: 11px;
  5491. border: 1px solid;
  5492. padding: 2px 0 2px 2px; }
  5493. /* line 9, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5494. .x-toolbar .x-form-item-label {
  5495. font-size: 11px;
  5496. line-height: 15px; }
  5497. /* line 14, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5498. .x-toolbar .x-toolbar-item {
  5499. margin: 0 2px 0 0; }
  5500. /* line 18, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5501. .x-toolbar .x-toolbar-text {
  5502. margin-left: 4px;
  5503. margin-right: 6px;
  5504. white-space: nowrap;
  5505. color: #4c4c4c;
  5506. line-height: 16px;
  5507. font-family: tahoma, arial, verdana, sans-serif;
  5508. font-size: 11px;
  5509. font-weight: normal; }
  5510. /* line 29, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5511. .x-toolbar .x-toolbar-separator {
  5512. display: block;
  5513. font-size: 1px;
  5514. overflow: hidden;
  5515. cursor: default;
  5516. border: 0; }
  5517. /* line 37, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5518. .x-toolbar .x-toolbar-separator-horizontal {
  5519. margin: 0 3px 0 2px;
  5520. height: 14px;
  5521. width: 0px;
  5522. border-left: 1px solid #98c8ff;
  5523. border-right: 1px solid white; }
  5524. /* line 49, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5525. .x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal {
  5526. width: 2px; }
  5527. /* line 54, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5528. .x-toolbar-footer {
  5529. background: transparent;
  5530. border: 0px none;
  5531. margin-top: 3px;
  5532. padding: 2px 0 2px 6px; }
  5533. /* line 61, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5534. .x-toolbar-footer .x-box-inner {
  5535. border-width: 0; }
  5536. /* line 65, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5537. .x-toolbar-footer .x-toolbar-item {
  5538. margin: 0 6px 0 0; }
  5539. /* line 70, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5540. .x-toolbar-vertical {
  5541. padding: 2px 2px 0 2px; }
  5542. /* line 73, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5543. .x-toolbar-vertical .x-toolbar-item {
  5544. margin: 0 0 2px 0; }
  5545. /* line 77, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5546. .x-toolbar-vertical .x-toolbar-text {
  5547. margin-top: 4px;
  5548. margin-bottom: 6px; }
  5549. /* line 82, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5550. .x-toolbar-vertical .x-toolbar-separator-vertical {
  5551. margin: 2px 5px 3px 5px;
  5552. height: 0px;
  5553. width: 10px;
  5554. line-height: 0px;
  5555. border-top: 1px solid #98c8ff;
  5556. border-bottom: 1px solid white; }
  5557. /* line 94, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5558. .x-toolbar-scroller {
  5559. padding-left: 0; }
  5560. /* line 98, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5561. .x-toolbar-spacer {
  5562. width: 2px; }
  5563. /* line 103, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5564. .x-toolbar-more-icon {
  5565. background-image: url('../../resources/themes/images/default/toolbar/more.gif') !important;
  5566. background-position: 2px center !important;
  5567. background-repeat: no-repeat; }
  5568. /* line 140, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5569. .x-toolbar-default {
  5570. border-color: #99bce8;
  5571. background-image: none;
  5572. background-color: #d3e1f1;
  5573. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1));
  5574. background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1);
  5575. background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1);
  5576. background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1);
  5577. background-image: -ms-linear-gradient(top, #dfe9f5, #d3e1f1);
  5578. background-image: linear-gradient(top, #dfe9f5, #d3e1f1); }
  5579. /* line 151, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5580. .x-nlg .x-toolbar-default {
  5581. background-image: url('../../resources/themes/images/default/toolbar/toolbar-default-bg.gif') !important;
  5582. background-repeat: repeat-x; }
  5583. /* line 119, ../themes/stylesheets/ext4/default/widgets/_toolbar.scss */
  5584. .x-toolbar-plain {
  5585. border: 0; }
  5586. /* line 2, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5587. .x-window {
  5588. outline: none;
  5589. overflow: hidden; }
  5590. /* line 6, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5591. .x-window .x-window-wrap {
  5592. position: relative; }
  5593. /* line 11, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5594. .x-window-body {
  5595. position: relative;
  5596. border-style: solid;
  5597. overflow: hidden; }
  5598. /* line 20, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5599. .x-window-maximized .x-window-wrap .x-window-header {
  5600. -moz-border-radius: 0 !important;
  5601. -webkit-border-radius: 0 !important;
  5602. -o-border-radius: 0 !important;
  5603. -ms-border-radius: 0 !important;
  5604. -khtml-border-radius: 0 !important;
  5605. border-radius: 0 !important; }
  5606. /* line 26, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5607. .x-window-header-top {
  5608. margin-bottom: -2px; }
  5609. /* line 29, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5610. .x-window-header-body-horizontal {
  5611. margin-top: -1px; }
  5612. /* line 33, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5613. .x-window-header-bottom {
  5614. margin-top: -1px;
  5615. margin-bottom: -1px; }
  5616. /* line 38, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5617. .x-window-header-left {
  5618. margin-right: -1px; }
  5619. /* line 42, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5620. .x-window-header-right {
  5621. margin-left: -1px; }
  5622. /* line 47, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5623. .x-window-header-vertical .x-surface {
  5624. padding-left: 1px; }
  5625. /* line 54, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5626. .x-window-collapsed .x-window-header-vertical {
  5627. -moz-border-radius: 5px;
  5628. -webkit-border-radius: 5px;
  5629. -o-border-radius: 5px;
  5630. -ms-border-radius: 5px;
  5631. -khtml-border-radius: 5px;
  5632. border-radius: 5px; }
  5633. /* line 57, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5634. .x-window-collapsed .x-window-header-horizontal {
  5635. -moz-border-radius: 5px;
  5636. -webkit-border-radius: 5px;
  5637. -o-border-radius: 5px;
  5638. -ms-border-radius: 5px;
  5639. -khtml-border-radius: 5px;
  5640. border-radius: 5px; }
  5641. /* line 62, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5642. .x-window-collapsed .x-window-header-left {
  5643. padding-right: 5px !important;
  5644. margin-right: 0; }
  5645. /* line 67, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5646. .x-window-collapsed .x-window-header-right {
  5647. padding-left: 5px !important;
  5648. margin-left: 0; }
  5649. /* line 72, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5650. .x-window-collapsed .x-window-header-top {
  5651. padding-bottom: 5px !important;
  5652. margin-bottom: -1px; }
  5653. /* line 77, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5654. .x-window-collapsed .x-window-header-bottom {
  5655. padding-top: 5px !important;
  5656. margin-top: 0; }
  5657. /* line 85, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5658. .x-window-header-left .x-vml-base,
  5659. .x-window-header-right .x-vml-base {
  5660. left: -3px !important; }
  5661. /* line 93, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5662. .x-opera .x-window-header-vertical .x-surface,
  5663. .x-strict .x-ie9 .x-window-header-vertical .x-surface {
  5664. padding-left: 2px; }
  5665. /* line 99, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5666. .x-window-header-text-container {
  5667. overflow: hidden;
  5668. -o-text-overflow: ellipsis;
  5669. text-overflow: ellipsis; }
  5670. /* line 105, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5671. .x-window-header-text {
  5672. user-select: none;
  5673. -o-user-select: none;
  5674. -ms-user-select: none;
  5675. -moz-user-select: -moz-none;
  5676. -webkit-user-select: none;
  5677. cursor: default;
  5678. white-space: nowrap; }
  5679. /* line 155, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5680. .x-window-default {
  5681. border-color: #a2b1c5;
  5682. -moz-border-radius: 5px 5px;
  5683. -webkit-border-radius: 5px 5px;
  5684. -o-border-radius: 5px 5px;
  5685. -ms-border-radius: 5px 5px;
  5686. -khtml-border-radius: 5px 5px;
  5687. border-radius: 5px 5px;
  5688. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5689. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5690. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  5691. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  5692. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5693. .x-window-default {
  5694. padding: 4px 4px 4px 4px;
  5695. border-width: 1px;
  5696. border-style: solid;
  5697. background-color: #ced9e7; }
  5698. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5699. .x-nlg .x-window-default-mc {
  5700. background-color: #ced9e7; }
  5701. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5702. .x-nbr .x-window-default {
  5703. padding: 0 !important;
  5704. border-width: 0 !important;
  5705. -moz-border-radius: 0px;
  5706. -webkit-border-radius: 0px;
  5707. -o-border-radius: 0px;
  5708. -ms-border-radius: 0px;
  5709. -khtml-border-radius: 0px;
  5710. border-radius: 0px;
  5711. background-color: transparent;
  5712. background-position: 1000505px 1000505px; }
  5713. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5714. .x-nbr .x-window-default-tl,
  5715. .x-nbr .x-window-default-bl,
  5716. .x-nbr .x-window-default-tr,
  5717. .x-nbr .x-window-default-br,
  5718. .x-nbr .x-window-default-tc,
  5719. .x-nbr .x-window-default-bc,
  5720. .x-nbr .x-window-default-ml,
  5721. .x-nbr .x-window-default-mr {
  5722. zoom: 1;
  5723. background-image: url('../../resources/themes/images/default/window/window-default-corners.gif'); }
  5724. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5725. .x-nbr .x-window-default-ml,
  5726. .x-nbr .x-window-default-mr {
  5727. zoom: 1;
  5728. background-image: url('../../resources/themes/images/default/window/window-default-sides.gif');
  5729. background-position: 0 0;
  5730. background-repeat: repeat-y; }
  5731. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5732. .x-nbr .x-window-default-mc {
  5733. padding: 0px 0px 0px 0px; }
  5734. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5735. .x-strict .x-ie7 .x-window-default-tl,
  5736. .x-strict .x-ie7 .x-window-default-bl {
  5737. position: relative;
  5738. right: 0; }
  5739. /* line 174, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5740. .x-window-body-default {
  5741. border-color: #99bbe8;
  5742. border-width: 1px;
  5743. background: #dfe8f6;
  5744. color: black; }
  5745. /* line 184, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5746. .x-window-header-default {
  5747. font-size: 11px;
  5748. border-color: #a2b1c5;
  5749. zoom: 1; }
  5750. /* line 190, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  5751. .x-window-header-text-default {
  5752. color: #04468c;
  5753. font-weight: bold;
  5754. line-height: 17px;
  5755. font-family: tahoma, arial, verdana, sans-serif;
  5756. font-size: 11px; }
  5757. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5758. .x-window-header-default-top {
  5759. padding: 4px 5px 0 5px;
  5760. border-width: 1px 1px 0 1px;
  5761. border-style: solid;
  5762. background-color: #ced9e7; }
  5763. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5764. .x-nlg .x-window-header-default-top-mc {
  5765. background-color: #ced9e7; }
  5766. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5767. .x-nbr .x-window-header-default-top {
  5768. padding: 0 !important;
  5769. border-width: 0 !important;
  5770. -moz-border-radius: 0px;
  5771. -webkit-border-radius: 0px;
  5772. -o-border-radius: 0px;
  5773. -ms-border-radius: 0px;
  5774. -khtml-border-radius: 0px;
  5775. border-radius: 0px;
  5776. background-color: transparent;
  5777. background-position: 1000505px 1000000px; }
  5778. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5779. .x-nbr .x-window-header-default-top-tl,
  5780. .x-nbr .x-window-header-default-top-bl,
  5781. .x-nbr .x-window-header-default-top-tr,
  5782. .x-nbr .x-window-header-default-top-br,
  5783. .x-nbr .x-window-header-default-top-tc,
  5784. .x-nbr .x-window-header-default-top-bc,
  5785. .x-nbr .x-window-header-default-top-ml,
  5786. .x-nbr .x-window-header-default-top-mr {
  5787. zoom: 1;
  5788. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-corners.gif'); }
  5789. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5790. .x-nbr .x-window-header-default-top-ml,
  5791. .x-nbr .x-window-header-default-top-mr {
  5792. zoom: 1;
  5793. background-image: url('../../resources/themes/images/default/window-header/window-header-default-top-sides.gif');
  5794. background-position: 0 0;
  5795. background-repeat: repeat-y; }
  5796. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5797. .x-nbr .x-window-header-default-top-mc {
  5798. padding: 0px 1px 0 1px; }
  5799. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5800. .x-strict .x-ie7 .x-window-header-default-top-tl,
  5801. .x-strict .x-ie7 .x-window-header-default-top-bl {
  5802. position: relative;
  5803. right: 0; }
  5804. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5805. .x-window-header-default-right {
  5806. padding: 5px 4px 5px 0;
  5807. border-width: 1px 1px 1px 0;
  5808. border-style: solid;
  5809. background-color: #ced9e7; }
  5810. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5811. .x-nlg .x-window-header-default-right-mc {
  5812. background-color: #ced9e7; }
  5813. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5814. .x-nbr .x-window-header-default-right {
  5815. padding: 0 !important;
  5816. border-width: 0 !important;
  5817. -moz-border-radius: 0px;
  5818. -webkit-border-radius: 0px;
  5819. -o-border-radius: 0px;
  5820. -ms-border-radius: 0px;
  5821. -khtml-border-radius: 0px;
  5822. border-radius: 0px;
  5823. background-color: transparent;
  5824. background-position: 1000005px 1000500px; }
  5825. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5826. .x-nbr .x-window-header-default-right-tl,
  5827. .x-nbr .x-window-header-default-right-bl,
  5828. .x-nbr .x-window-header-default-right-tr,
  5829. .x-nbr .x-window-header-default-right-br,
  5830. .x-nbr .x-window-header-default-right-tc,
  5831. .x-nbr .x-window-header-default-right-bc,
  5832. .x-nbr .x-window-header-default-right-ml,
  5833. .x-nbr .x-window-header-default-right-mr {
  5834. zoom: 1;
  5835. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-corners.gif'); }
  5836. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5837. .x-nbr .x-window-header-default-right-ml,
  5838. .x-nbr .x-window-header-default-right-mr {
  5839. zoom: 1;
  5840. background-image: url('../../resources/themes/images/default/window-header/window-header-default-right-sides.gif');
  5841. background-position: 0 0;
  5842. background-repeat: repeat-y; }
  5843. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5844. .x-nbr .x-window-header-default-right-mc {
  5845. padding: 1px 0px 1px 0; }
  5846. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5847. .x-strict .x-ie7 .x-window-header-default-right-tl,
  5848. .x-strict .x-ie7 .x-window-header-default-right-bl {
  5849. position: relative;
  5850. right: 0; }
  5851. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5852. .x-window-header-default-bottom {
  5853. padding: 0 5px 4px 5px;
  5854. border-width: 0 1px 1px 1px;
  5855. border-style: solid;
  5856. background-color: #ced9e7; }
  5857. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5858. .x-nlg .x-window-header-default-bottom-mc {
  5859. background-color: #ced9e7; }
  5860. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5861. .x-nbr .x-window-header-default-bottom {
  5862. padding: 0 !important;
  5863. border-width: 0 !important;
  5864. -moz-border-radius: 0px;
  5865. -webkit-border-radius: 0px;
  5866. -o-border-radius: 0px;
  5867. -ms-border-radius: 0px;
  5868. -khtml-border-radius: 0px;
  5869. border-radius: 0px;
  5870. background-color: transparent;
  5871. background-position: 1000000px 1000505px; }
  5872. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5873. .x-nbr .x-window-header-default-bottom-tl,
  5874. .x-nbr .x-window-header-default-bottom-bl,
  5875. .x-nbr .x-window-header-default-bottom-tr,
  5876. .x-nbr .x-window-header-default-bottom-br,
  5877. .x-nbr .x-window-header-default-bottom-tc,
  5878. .x-nbr .x-window-header-default-bottom-bc,
  5879. .x-nbr .x-window-header-default-bottom-ml,
  5880. .x-nbr .x-window-header-default-bottom-mr {
  5881. zoom: 1;
  5882. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-corners.gif'); }
  5883. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5884. .x-nbr .x-window-header-default-bottom-ml,
  5885. .x-nbr .x-window-header-default-bottom-mr {
  5886. zoom: 1;
  5887. background-image: url('../../resources/themes/images/default/window-header/window-header-default-bottom-sides.gif');
  5888. background-position: 0 0;
  5889. background-repeat: repeat-y; }
  5890. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5891. .x-nbr .x-window-header-default-bottom-mc {
  5892. padding: 0 1px 0px 1px; }
  5893. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5894. .x-strict .x-ie7 .x-window-header-default-bottom-tl,
  5895. .x-strict .x-ie7 .x-window-header-default-bottom-bl {
  5896. position: relative;
  5897. right: 0; }
  5898. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5899. .x-window-header-default-left {
  5900. padding: 5px 0px 5px 4px;
  5901. border-width: 1px 0 1px 1px;
  5902. border-style: solid;
  5903. background-color: #ced9e7; }
  5904. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5905. .x-nlg .x-window-header-default-left-mc {
  5906. background-color: #ced9e7; }
  5907. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5908. .x-nbr .x-window-header-default-left {
  5909. padding: 0 !important;
  5910. border-width: 0 !important;
  5911. -moz-border-radius: 0px;
  5912. -webkit-border-radius: 0px;
  5913. -o-border-radius: 0px;
  5914. -ms-border-radius: 0px;
  5915. -khtml-border-radius: 0px;
  5916. border-radius: 0px;
  5917. background-color: transparent;
  5918. background-position: 1000500px 1000005px; }
  5919. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5920. .x-nbr .x-window-header-default-left-tl,
  5921. .x-nbr .x-window-header-default-left-bl,
  5922. .x-nbr .x-window-header-default-left-tr,
  5923. .x-nbr .x-window-header-default-left-br,
  5924. .x-nbr .x-window-header-default-left-tc,
  5925. .x-nbr .x-window-header-default-left-bc,
  5926. .x-nbr .x-window-header-default-left-ml,
  5927. .x-nbr .x-window-header-default-left-mr {
  5928. zoom: 1;
  5929. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-corners.gif'); }
  5930. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5931. .x-nbr .x-window-header-default-left-ml,
  5932. .x-nbr .x-window-header-default-left-mr {
  5933. zoom: 1;
  5934. background-image: url('../../resources/themes/images/default/window-header/window-header-default-left-sides.gif');
  5935. background-position: 0 0;
  5936. background-repeat: repeat-y; }
  5937. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5938. .x-nbr .x-window-header-default-left-mc {
  5939. padding: 1px 0px 1px 0px; }
  5940. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5941. .x-strict .x-ie7 .x-window-header-default-left-tl,
  5942. .x-strict .x-ie7 .x-window-header-default-left-bl {
  5943. position: relative;
  5944. right: 0; }
  5945. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5946. .x-window-header-default-collapsed-top {
  5947. padding: 4px 5px 4px 5px;
  5948. border-width: 1px;
  5949. border-style: solid;
  5950. background-color: #ced9e7; }
  5951. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5952. .x-nlg .x-window-header-default-collapsed-top-mc {
  5953. background-color: #ced9e7; }
  5954. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5955. .x-nbr .x-window-header-default-collapsed-top {
  5956. padding: 0 !important;
  5957. border-width: 0 !important;
  5958. -moz-border-radius: 0px;
  5959. -webkit-border-radius: 0px;
  5960. -o-border-radius: 0px;
  5961. -ms-border-radius: 0px;
  5962. -khtml-border-radius: 0px;
  5963. border-radius: 0px;
  5964. background-color: transparent;
  5965. background-position: 1000505px 1000505px; }
  5966. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5967. .x-nbr .x-window-header-default-collapsed-top-tl,
  5968. .x-nbr .x-window-header-default-collapsed-top-bl,
  5969. .x-nbr .x-window-header-default-collapsed-top-tr,
  5970. .x-nbr .x-window-header-default-collapsed-top-br,
  5971. .x-nbr .x-window-header-default-collapsed-top-tc,
  5972. .x-nbr .x-window-header-default-collapsed-top-bc,
  5973. .x-nbr .x-window-header-default-collapsed-top-ml,
  5974. .x-nbr .x-window-header-default-collapsed-top-mr {
  5975. zoom: 1;
  5976. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-corners.gif'); }
  5977. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5978. .x-nbr .x-window-header-default-collapsed-top-ml,
  5979. .x-nbr .x-window-header-default-collapsed-top-mr {
  5980. zoom: 1;
  5981. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-top-sides.gif');
  5982. background-position: 0 0;
  5983. background-repeat: repeat-y; }
  5984. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5985. .x-nbr .x-window-header-default-collapsed-top-mc {
  5986. padding: 0px 1px 0px 1px; }
  5987. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5988. .x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,
  5989. .x-strict .x-ie7 .x-window-header-default-collapsed-top-bl {
  5990. position: relative;
  5991. right: 0; }
  5992. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5993. .x-window-header-default-collapsed-right {
  5994. padding: 5px 4px 5px 4px;
  5995. border-width: 1px;
  5996. border-style: solid;
  5997. background-color: #ced9e7; }
  5998. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  5999. .x-nlg .x-window-header-default-collapsed-right-mc {
  6000. background-color: #ced9e7; }
  6001. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6002. .x-nbr .x-window-header-default-collapsed-right {
  6003. padding: 0 !important;
  6004. border-width: 0 !important;
  6005. -moz-border-radius: 0px;
  6006. -webkit-border-radius: 0px;
  6007. -o-border-radius: 0px;
  6008. -ms-border-radius: 0px;
  6009. -khtml-border-radius: 0px;
  6010. border-radius: 0px;
  6011. background-color: transparent;
  6012. background-position: 1000505px 1000505px; }
  6013. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6014. .x-nbr .x-window-header-default-collapsed-right-tl,
  6015. .x-nbr .x-window-header-default-collapsed-right-bl,
  6016. .x-nbr .x-window-header-default-collapsed-right-tr,
  6017. .x-nbr .x-window-header-default-collapsed-right-br,
  6018. .x-nbr .x-window-header-default-collapsed-right-tc,
  6019. .x-nbr .x-window-header-default-collapsed-right-bc,
  6020. .x-nbr .x-window-header-default-collapsed-right-ml,
  6021. .x-nbr .x-window-header-default-collapsed-right-mr {
  6022. zoom: 1;
  6023. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-corners.gif'); }
  6024. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6025. .x-nbr .x-window-header-default-collapsed-right-ml,
  6026. .x-nbr .x-window-header-default-collapsed-right-mr {
  6027. zoom: 1;
  6028. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-right-sides.gif');
  6029. background-position: 0 0;
  6030. background-repeat: repeat-y; }
  6031. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6032. .x-nbr .x-window-header-default-collapsed-right-mc {
  6033. padding: 1px 0px 1px 0px; }
  6034. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6035. .x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,
  6036. .x-strict .x-ie7 .x-window-header-default-collapsed-right-bl {
  6037. position: relative;
  6038. right: 0; }
  6039. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6040. .x-window-header-default-collapsed-bottom {
  6041. padding: 4px 5px 4px 5px;
  6042. border-width: 1px;
  6043. border-style: solid;
  6044. background-color: #ced9e7; }
  6045. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6046. .x-nlg .x-window-header-default-collapsed-bottom-mc {
  6047. background-color: #ced9e7; }
  6048. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6049. .x-nbr .x-window-header-default-collapsed-bottom {
  6050. padding: 0 !important;
  6051. border-width: 0 !important;
  6052. -moz-border-radius: 0px;
  6053. -webkit-border-radius: 0px;
  6054. -o-border-radius: 0px;
  6055. -ms-border-radius: 0px;
  6056. -khtml-border-radius: 0px;
  6057. border-radius: 0px;
  6058. background-color: transparent;
  6059. background-position: 1000505px 1000505px; }
  6060. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6061. .x-nbr .x-window-header-default-collapsed-bottom-tl,
  6062. .x-nbr .x-window-header-default-collapsed-bottom-bl,
  6063. .x-nbr .x-window-header-default-collapsed-bottom-tr,
  6064. .x-nbr .x-window-header-default-collapsed-bottom-br,
  6065. .x-nbr .x-window-header-default-collapsed-bottom-tc,
  6066. .x-nbr .x-window-header-default-collapsed-bottom-bc,
  6067. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6068. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6069. zoom: 1;
  6070. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-corners.gif'); }
  6071. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6072. .x-nbr .x-window-header-default-collapsed-bottom-ml,
  6073. .x-nbr .x-window-header-default-collapsed-bottom-mr {
  6074. zoom: 1;
  6075. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-bottom-sides.gif');
  6076. background-position: 0 0;
  6077. background-repeat: repeat-y; }
  6078. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6079. .x-nbr .x-window-header-default-collapsed-bottom-mc {
  6080. padding: 0px 1px 0px 1px; }
  6081. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6082. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,
  6083. .x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl {
  6084. position: relative;
  6085. right: 0; }
  6086. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6087. .x-window-header-default-collapsed-left {
  6088. padding: 5px 4px 5px 4px;
  6089. border-width: 1px;
  6090. border-style: solid;
  6091. background-color: #ced9e7; }
  6092. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6093. .x-nlg .x-window-header-default-collapsed-left-mc {
  6094. background-color: #ced9e7; }
  6095. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6096. .x-nbr .x-window-header-default-collapsed-left {
  6097. padding: 0 !important;
  6098. border-width: 0 !important;
  6099. -moz-border-radius: 0px;
  6100. -webkit-border-radius: 0px;
  6101. -o-border-radius: 0px;
  6102. -ms-border-radius: 0px;
  6103. -khtml-border-radius: 0px;
  6104. border-radius: 0px;
  6105. background-color: transparent;
  6106. background-position: 1000505px 1000505px; }
  6107. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6108. .x-nbr .x-window-header-default-collapsed-left-tl,
  6109. .x-nbr .x-window-header-default-collapsed-left-bl,
  6110. .x-nbr .x-window-header-default-collapsed-left-tr,
  6111. .x-nbr .x-window-header-default-collapsed-left-br,
  6112. .x-nbr .x-window-header-default-collapsed-left-tc,
  6113. .x-nbr .x-window-header-default-collapsed-left-bc,
  6114. .x-nbr .x-window-header-default-collapsed-left-ml,
  6115. .x-nbr .x-window-header-default-collapsed-left-mr {
  6116. zoom: 1;
  6117. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-corners.gif'); }
  6118. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6119. .x-nbr .x-window-header-default-collapsed-left-ml,
  6120. .x-nbr .x-window-header-default-collapsed-left-mr {
  6121. zoom: 1;
  6122. background-image: url('../../resources/themes/images/default/window-header/window-header-default-collapsed-left-sides.gif');
  6123. background-position: 0 0;
  6124. background-repeat: repeat-y; }
  6125. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6126. .x-nbr .x-window-header-default-collapsed-left-mc {
  6127. padding: 1px 0px 1px 0px; }
  6128. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6129. .x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,
  6130. .x-strict .x-ie7 .x-window-header-default-collapsed-left-bl {
  6131. position: relative;
  6132. right: 0; }
  6133. /* line 213, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6134. .x-window-header-default-top {
  6135. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6136. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6137. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6138. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6139. /* line 217, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6140. .x-window-header-default-right {
  6141. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6142. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6143. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset;
  6144. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; }
  6145. /* line 221, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6146. .x-window-header-default-bottom {
  6147. -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6148. -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6149. -o-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6150. box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6151. /* line 225, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6152. .x-window-header-default-left {
  6153. -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6154. -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6155. -o-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset;
  6156. box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; }
  6157. /* line 126, ../themes/stylesheets/ext4/default/widgets/_window.scss */
  6158. .x-window-body-plain {
  6159. background: transparent; }
  6160. /* line 2, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6161. .x-message-box .x-window-body {
  6162. background-color: #ced9e7;
  6163. border: none; }
  6164. /* line 7, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6165. .x-message-box .x-progress-wrap {
  6166. margin-top: 4px; }
  6167. /* line 11, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6168. .x-message-box-icon {
  6169. width: 47px;
  6170. height: 32px; }
  6171. /* line 19, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6172. .x-message-box-info,
  6173. .x-message-box-warning,
  6174. .x-message-box-question,
  6175. .x-message-box-error {
  6176. background: transparent no-repeat top left; }
  6177. /* line 23, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6178. .x-message-box .x-msg-box-wait {
  6179. background-image: url('../../resources/themes/images/default/shared/blue-loading.gif'); }
  6180. /* line 27, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6181. .x-message-box-info {
  6182. background-image: url('../../resources/themes/images/default/shared/icon-info.gif'); }
  6183. /* line 31, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6184. .x-message-box-warning {
  6185. background-image: url('../../resources/themes/images/default/shared/icon-warning.gif'); }
  6186. /* line 35, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6187. .x-message-box-question {
  6188. background-image: url('../../resources/themes/images/default/shared/icon-question.gif'); }
  6189. /* line 39, ../themes/stylesheets/ext4/default/util/_messagebox.scss */
  6190. .x-message-box-error {
  6191. background-image: url('../../resources/themes/images/default/shared/icon-error.gif'); }
  6192. /* line 71, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6193. .x-tab-bar {
  6194. position: relative;
  6195. background-color: transparent;
  6196. background-image: none;
  6197. background-color: #cbdbef;
  6198. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef));
  6199. background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef);
  6200. background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef);
  6201. background-image: -o-linear-gradient(top, #dde8f5, #cbdbef);
  6202. background-image: -ms-linear-gradient(top, #dde8f5, #cbdbef);
  6203. background-image: linear-gradient(top, #dde8f5, #cbdbef);
  6204. font-size: 11px; }
  6205. /* line 78, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6206. .x-nlg .x-tab-bar {
  6207. background-image: url('../../resources/themes/images/default/tab-bar/tab-bar-default-bg.gif'); }
  6208. /* line 83, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6209. .x-tab-bar-default-plain,
  6210. .x-nlg .x-tab-bar-default-plain {
  6211. background: transparent none; }
  6212. /* line 88, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6213. .x-tab-bar-body {
  6214. border-style: solid;
  6215. border-color: #99bce8;
  6216. position: relative;
  6217. z-index: 2;
  6218. zoom: 1; }
  6219. /* Top Tabs */
  6220. /* line 3, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6221. .x-tab-bar-top .x-tab-bar-body {
  6222. height: 20px;
  6223. border-width: 1px 1px 0;
  6224. padding: 1px 0 3px; }
  6225. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6226. .x-tab-bar-top .x-tab-bar-strip {
  6227. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6228. top: 22px;
  6229. border-width: 1px 1px 0;
  6230. height: 2px; }
  6231. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6232. .x-border-box .x-tab-bar-top .x-tab-bar-body {
  6233. height: 25px; }
  6234. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6235. .x-border-box .x-tab-bar-top .x-tab-bar-strip {
  6236. height: 3px; }
  6237. /* line 3, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6238. .x-tab-bar-top .x-tab-bar-body-default-plain {
  6239. height: 20px;
  6240. border-width: 0;
  6241. padding: 0 0 2px; }
  6242. /* line 9, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6243. .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6244. /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
  6245. top: 20px;
  6246. border-width: 1px 1px 0 1px;
  6247. height: 2px; }
  6248. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6249. .x-border-box .x-tab-bar-top .x-tab-bar-body-default-plain {
  6250. height: 22px; }
  6251. /* line 22, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6252. .x-border-box .x-tab-bar-top .x-tab-bar-strip-default-plain {
  6253. height: 3px; }
  6254. /* Bottom Tabs */
  6255. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6256. .x-tab-bar-bottom .x-tab-bar-body {
  6257. height: 20px;
  6258. border-width: 0 1px 1px;
  6259. padding: 3px 0 1px; }
  6260. /* line 36, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6261. .x-tab-bar-bottom .x-tab-bar-body .x-box-inner {
  6262. position: relative;
  6263. top: -1px; }
  6264. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6265. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller,
  6266. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-left,
  6267. .x-tab-bar-bottom .x-tab-bar-body .x-box-scroller-right {
  6268. height: 22px; }
  6269. /* line 48, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6270. .x-tab-bar-bottom .x-tab-bar-strip {
  6271. top: 0;
  6272. border-width: 0 1px 1px 1px;
  6273. height: 2px; }
  6274. /* line 56, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6275. .x-border-box .x-tab-bar-bottom .x-tab-bar-body {
  6276. height: 25px; }
  6277. /* line 60, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6278. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip {
  6279. height: 3px; }
  6280. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6281. .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6282. height: 20px;
  6283. border-width: 0;
  6284. padding: 3px 0 0; }
  6285. /* line 36, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6286. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-inner {
  6287. position: relative;
  6288. top: -1px; }
  6289. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6290. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller,
  6291. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-left,
  6292. .x-tab-bar-bottom .x-tab-bar-body-default-plain .x-box-scroller-right {
  6293. height: 21px; }
  6294. /* line 48, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6295. .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6296. top: 0;
  6297. border-width: 0 1px 1px 1px;
  6298. height: 2px; }
  6299. /* line 56, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6300. .x-border-box .x-tab-bar-bottom .x-tab-bar-body-default-plain {
  6301. height: 23px; }
  6302. /* line 60, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6303. .x-border-box .x-tab-bar-bottom .x-tab-bar-strip-default-plain {
  6304. height: 3px; }
  6305. /* line 139, ../themes/stylesheets/ext4/default/widgets/_tabbar.scss */
  6306. .x-tab-bar-strip-default,
  6307. .x-tab-bar-strip-default-plain {
  6308. font-size: 0;
  6309. line-height: 0;
  6310. position: absolute;
  6311. z-index: 1;
  6312. border-style: solid;
  6313. overflow: hidden;
  6314. border-color: #99bce8;
  6315. background-color: #deecfd;
  6316. zoom: 1; }
  6317. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6318. .x-tab-default-top {
  6319. padding: 3px 3px 0 3px;
  6320. border-width: 1px 1px 0 1px;
  6321. border-style: solid;
  6322. background-color: #deecfd; }
  6323. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6324. .x-nlg .x-tab-default-top-mc {
  6325. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif');
  6326. background-color: #deecfd; }
  6327. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6328. .x-nbr .x-tab-default-top {
  6329. padding: 0 !important;
  6330. border-width: 0 !important;
  6331. -moz-border-radius: 0px;
  6332. -webkit-border-radius: 0px;
  6333. -o-border-radius: 0px;
  6334. -ms-border-radius: 0px;
  6335. -khtml-border-radius: 0px;
  6336. border-radius: 0px;
  6337. background-color: transparent;
  6338. background-position: 1100404px 1000000px; }
  6339. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6340. .x-nbr .x-tab-default-top-tl,
  6341. .x-nbr .x-tab-default-top-bl,
  6342. .x-nbr .x-tab-default-top-tr,
  6343. .x-nbr .x-tab-default-top-br,
  6344. .x-nbr .x-tab-default-top-tc,
  6345. .x-nbr .x-tab-default-top-bc,
  6346. .x-nbr .x-tab-default-top-ml,
  6347. .x-nbr .x-tab-default-top-mr {
  6348. zoom: 1;
  6349. background-image: url('../../resources/themes/images/default/tab/tab-default-top-corners.gif'); }
  6350. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6351. .x-nbr .x-tab-default-top-ml,
  6352. .x-nbr .x-tab-default-top-mr {
  6353. zoom: 1;
  6354. background-image: url('../../resources/themes/images/default/tab/tab-default-top-sides.gif');
  6355. background-position: 0 0; }
  6356. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6357. .x-nbr .x-tab-default-top-mc {
  6358. padding: 0px 0px 0 0px; }
  6359. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6360. .x-strict .x-ie7 .x-tab-default-top-tl,
  6361. .x-strict .x-ie7 .x-tab-default-top-bl {
  6362. position: relative;
  6363. right: 0; }
  6364. /* line 69, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6365. .x-tab-default-bottom {
  6366. padding: 0 3px 3px 3px;
  6367. border-width: 0 1px 1px 1px;
  6368. border-style: solid;
  6369. background-color: #deecfd; }
  6370. /* line 102, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6371. .x-nlg .x-tab-default-bottom-mc {
  6372. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif');
  6373. background-color: #deecfd; }
  6374. /* line 115, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6375. .x-nbr .x-tab-default-bottom {
  6376. padding: 0 !important;
  6377. border-width: 0 !important;
  6378. -moz-border-radius: 0px;
  6379. -webkit-border-radius: 0px;
  6380. -o-border-radius: 0px;
  6381. -ms-border-radius: 0px;
  6382. -khtml-border-radius: 0px;
  6383. border-radius: 0px;
  6384. background-color: transparent;
  6385. background-position: 1100000px 1000404px; }
  6386. /* line 147, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6387. .x-nbr .x-tab-default-bottom-tl,
  6388. .x-nbr .x-tab-default-bottom-bl,
  6389. .x-nbr .x-tab-default-bottom-tr,
  6390. .x-nbr .x-tab-default-bottom-br,
  6391. .x-nbr .x-tab-default-bottom-tc,
  6392. .x-nbr .x-tab-default-bottom-bc,
  6393. .x-nbr .x-tab-default-bottom-ml,
  6394. .x-nbr .x-tab-default-bottom-mr {
  6395. zoom: 1;
  6396. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-corners.gif'); }
  6397. /* line 168, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6398. .x-nbr .x-tab-default-bottom-ml,
  6399. .x-nbr .x-tab-default-bottom-mr {
  6400. zoom: 1;
  6401. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-sides.gif');
  6402. background-position: 0 0; }
  6403. /* line 200, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6404. .x-nbr .x-tab-default-bottom-mc {
  6405. padding: 0 0px 0px 0px; }
  6406. /* line 210, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
  6407. .x-strict .x-ie7 .x-tab-default-bottom-tl,
  6408. .x-strict .x-ie7 .x-tab-default-bottom-bl {
  6409. position: relative;
  6410. right: 0; }
  6411. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6412. .x-tab {
  6413. z-index: 1;
  6414. margin: 0 0 0 2px;
  6415. display: inline-block;
  6416. zoom: 1;
  6417. *display: inline;
  6418. white-space: nowrap;
  6419. height: 20px;
  6420. border-color: #8db3e3;
  6421. cursor: pointer;
  6422. cursor: hand; }
  6423. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6424. .x-tab button {
  6425. cursor: pointer;
  6426. cursor: hand; }
  6427. /* line 44, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6428. .x-tab em {
  6429. display: block;
  6430. padding: 0 6px;
  6431. line-height: 1px; }
  6432. /* line 50, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6433. .x-tab button {
  6434. background: none;
  6435. border: 0;
  6436. padding: 0;
  6437. margin: 0;
  6438. -webkit-appearance: none;
  6439. font-size: 11px;
  6440. font-weight: bold;
  6441. font-family: tahoma, arial, verdana, sans-serif;
  6442. color: #416da3;
  6443. outline: 0 none;
  6444. overflow-x: visible; }
  6445. /* line 68, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6446. .x-tab button::-moz-focus-inner {
  6447. border: 0;
  6448. padding: 0; }
  6449. /* line 73, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6450. .x-tab button .x-tab-inner {
  6451. background-color: transparent;
  6452. background-repeat: no-repeat;
  6453. background-position: 0 -2px;
  6454. display: block;
  6455. text-align: center;
  6456. white-space: nowrap;
  6457. text-overflow: ellipsis;
  6458. -o-text-overflow: ellipsis;
  6459. overflow: hidden; }
  6460. /* line 86, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6461. .x-tab img {
  6462. display: none; }
  6463. /* line 92, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6464. .x-border-box .x-tab-default-top {
  6465. height: 21px; }
  6466. /* line 95, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6467. .x-border-box .x-tab-default-bottom {
  6468. height: 21px; }
  6469. /* line 102, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6470. * html .x-ie .x-tab button {
  6471. width: 1px; }
  6472. /* line 109, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6473. .x-strict .x-ie6 .x-tab .x-frame-mc,
  6474. .x-strict .x-ie7 .x-tab .x-frame-mc {
  6475. height: 100%; }
  6476. /* line 114, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6477. .x-ie .x-tab-active button:active {
  6478. position: relative;
  6479. top: -1px;
  6480. left: -1px; }
  6481. /* line 123, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6482. .x-tab-default-top {
  6483. -moz-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6484. -webkit-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6485. -o-box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6486. box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6487. border-bottom: 1px solid #99bce8 !important; }
  6488. /* line 133, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6489. .x-tab-default-top em {
  6490. padding-bottom: 3px; }
  6491. /* line 138, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6492. .x-tab-default-top button,
  6493. .x-tab-default-top .x-tab-inner {
  6494. height: 13px;
  6495. line-height: 13px; }
  6496. /* line 147, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6497. .x-safari4 .x-tab-default-top .x-tab-inner,
  6498. .x-safari5_0 .x-tab-default-top .x-tab-inner {
  6499. line-height: 11px; }
  6500. /* line 152, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6501. .x-nbr .x-tab-default-top {
  6502. border-bottom-width: 1px !important; }
  6503. /* line 156, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6504. .x-tab-default-top-active {
  6505. border-bottom-color: #deecfd !important; }
  6506. /* line 162, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6507. .x-tab-default-bottom {
  6508. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6509. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6510. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6511. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6512. border-top: 1px solid #99bce8 !important;
  6513. -moz-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6514. -webkit-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6515. -o-box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset;
  6516. box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; }
  6517. /* line 177, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6518. .x-tab-default-bottom em {
  6519. padding-top: 3px; }
  6520. /* line 182, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6521. .x-tab-default-bottom button,
  6522. .x-tab-default-bottom .x-tab-inner {
  6523. height: 13px;
  6524. line-height: 13px; }
  6525. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6526. .x-nbr .x-tab-default-bottom {
  6527. border-top-width: 1px !important; }
  6528. /* line 192, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6529. .x-tab-default-bottom-active {
  6530. border-top-color: #deecfd !important; }
  6531. /* line 196, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6532. .x-tab-default-disabled {
  6533. cursor: default;
  6534. border-color: #bbd2ef;
  6535. background-image: none;
  6536. background-color: #e1ecfa;
  6537. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6538. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6539. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6540. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6541. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6542. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6543. /* line 202, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6544. .x-tab-default-disabled button {
  6545. color: #c3b3b3 !important; }
  6546. /* line 208, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6547. .x-tab-icon-text-left .x-tab-inner {
  6548. padding-left: 20px; }
  6549. /* line 213, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6550. .x-tab button {
  6551. position: relative; }
  6552. /* line 217, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6553. .x-tab-icon {
  6554. position: absolute;
  6555. background-repeat: no-repeat;
  6556. background-position: 0 -1px;
  6557. top: 0;
  6558. left: 0;
  6559. right: auto;
  6560. bottom: 0;
  6561. width: 18px;
  6562. height: 18px; }
  6563. /* line 232, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6564. .x-strict .x-ie8 .x-tab button,
  6565. .x-strict .x-ie9 .x-tab button {
  6566. overflow-y: visible; }
  6567. /* line 237, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6568. .x-tab-default-disabled .x-tab-icon {
  6569. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  6570. opacity: 0.5; }
  6571. /* In IE a disabled icon needs to be hidden or the opacity effect covers some of the text */
  6572. /* line 242, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6573. .x-tab-noicon .x-tab-icon {
  6574. display: none; }
  6575. /* line 268, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6576. .x-tab-top-over {
  6577. background-image: none;
  6578. background-color: #e8f2ff;
  6579. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6580. background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6581. background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6582. background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6583. background-image: -ms-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6584. background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6585. /* line 271, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6586. .x-tab-bottom-over {
  6587. background-image: none;
  6588. background-color: #e8f2ff;
  6589. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff));
  6590. background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6591. background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6592. background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6593. background-image: -ms-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%);
  6594. background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); }
  6595. /* line 276, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6596. .x-tab-active {
  6597. z-index: 3; }
  6598. /* line 282, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6599. .x-tab-active button {
  6600. color: #15498b; }
  6601. /* line 298, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6602. .x-tab-top-active {
  6603. background-image: none;
  6604. background-color: #deecfd;
  6605. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6606. background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6607. background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6608. background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6609. background-image: -ms-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6610. background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6611. /* line 301, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6612. .x-tab-bottom-active {
  6613. background-image: none;
  6614. background-color: #deecfd;
  6615. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd));
  6616. background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6617. background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6618. background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6619. background-image: -ms-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%);
  6620. background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); }
  6621. /* line 306, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6622. .x-tab-disabled {
  6623. border-color: #bbd2ef; }
  6624. /* line 311, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6625. .x-tab-disabled button {
  6626. color: #c3b3b3; }
  6627. /* line 327, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6628. .x-tab-top-disabled {
  6629. background-image: none;
  6630. background: transparent;
  6631. background-image: none;
  6632. background-color: #e1ecfa;
  6633. background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6634. background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe);
  6635. background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe);
  6636. background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe);
  6637. background-image: -ms-linear-gradient(top, #e1ecfa, #ecf4fe);
  6638. background-image: linear-gradient(top, #e1ecfa, #ecf4fe); }
  6639. /* line 332, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6640. .x-tab-bottom-disabled {
  6641. background-image: none;
  6642. background: transparent;
  6643. background-image: none;
  6644. background-color: #e1ecfa;
  6645. background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe));
  6646. background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6647. background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6648. background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6649. background-image: -ms-linear-gradient(bottom, #e1ecfa, #ecf4fe);
  6650. background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); }
  6651. /* line 341, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6652. .x-nlg .x-tab-top {
  6653. background-image: url('../../resources/themes/images/default/tab/tab-default-top-bg.gif'); }
  6654. /* line 342, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6655. .x-nlg .x-tab-bottom {
  6656. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-bg.gif'); }
  6657. /* line 346, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6658. .x-nlg .x-tab-top-over {
  6659. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6660. /* line 347, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6661. .x-nlg .x-tab-bottom-over {
  6662. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6663. /* line 351, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6664. .x-nlg .x-tab-top-active {
  6665. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6666. /* line 352, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6667. .x-nlg .x-tab-bottom-active {
  6668. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6669. /* line 356, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6670. .x-nlg .x-tab-top-disabled {
  6671. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif') !important; }
  6672. /* line 357, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6673. .x-nlg .x-tab-bottom-disabled {
  6674. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif') !important; }
  6675. /* line 362, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6676. .x-tab-closable em {
  6677. padding-right: 14px; }
  6678. /* line 366, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6679. .x-tab-close-btn {
  6680. position: absolute;
  6681. top: 2px;
  6682. right: 2px;
  6683. width: 11px;
  6684. height: 11px;
  6685. font-size: 0;
  6686. line-height: 0;
  6687. text-indent: -999px;
  6688. background: no-repeat;
  6689. background-image: url('../../resources/themes/images/default/tab/tab-default-close.gif');
  6690. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  6691. opacity: 0.6; }
  6692. /* line 380, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6693. .x-nbr .x-tab-close-btn {
  6694. top: 0px;
  6695. right: 0px; }
  6696. /* Include the element name otherwise Internet Explorer 7 & 8 take a performance hit */
  6697. /* line 386, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6698. a.x-tab-close-btn:hover {
  6699. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  6700. opacity: 1; }
  6701. /* Include the element name to raise the specificity to equal the :hover */
  6702. /* line 391, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6703. .x-tab-default-disabled a.x-tab-close-btn {
  6704. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  6705. opacity: 0.3; }
  6706. /* line 403, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6707. .x-nbr .x-tab-top-over .x-frame-tl,
  6708. .x-nbr .x-tab-top-over .x-frame-bl,
  6709. .x-nbr .x-tab-top-over .x-frame-tr,
  6710. .x-nbr .x-tab-top-over .x-frame-br,
  6711. .x-nbr .x-tab-top-over .x-frame-tc,
  6712. .x-nbr .x-tab-top-over .x-frame-bc {
  6713. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-corners.gif'); }
  6714. /* line 407, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6715. .x-nbr .x-tab-top-over .x-frame-ml,
  6716. .x-nbr .x-tab-top-over .x-frame-mr {
  6717. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-sides.gif'); }
  6718. /* line 411, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6719. .x-nbr .x-tab-top-over .x-frame-mc {
  6720. background-color: #e8f2ff;
  6721. background-repeat: repeat-x;
  6722. background-image: url('../../resources/themes/images/default/tab/tab-default-top-over-bg.gif'); }
  6723. /* line 425, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6724. .x-nbr .x-tab-bottom-over .x-frame-tl,
  6725. .x-nbr .x-tab-bottom-over .x-frame-bl,
  6726. .x-nbr .x-tab-bottom-over .x-frame-tr,
  6727. .x-nbr .x-tab-bottom-over .x-frame-br,
  6728. .x-nbr .x-tab-bottom-over .x-frame-tc,
  6729. .x-nbr .x-tab-bottom-over .x-frame-bc {
  6730. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-corners.gif'); }
  6731. /* line 429, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6732. .x-nbr .x-tab-bottom-over .x-frame-ml,
  6733. .x-nbr .x-tab-bottom-over .x-frame-mr {
  6734. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-sides.gif'); }
  6735. /* line 433, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6736. .x-nbr .x-tab-bottom-over .x-frame-mc {
  6737. background-color: #e8f2ff;
  6738. background-repeat: repeat-x;
  6739. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-over-bg.gif'); }
  6740. /* line 447, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6741. .x-nbr .x-tab-top-active .x-frame-tl,
  6742. .x-nbr .x-tab-top-active .x-frame-bl,
  6743. .x-nbr .x-tab-top-active .x-frame-tr,
  6744. .x-nbr .x-tab-top-active .x-frame-br,
  6745. .x-nbr .x-tab-top-active .x-frame-tc,
  6746. .x-nbr .x-tab-top-active .x-frame-bc {
  6747. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-corners.gif'); }
  6748. /* line 451, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6749. .x-nbr .x-tab-top-active .x-frame-ml,
  6750. .x-nbr .x-tab-top-active .x-frame-mr {
  6751. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-sides.gif'); }
  6752. /* line 455, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6753. .x-nbr .x-tab-top-active .x-frame-mc {
  6754. background-color: #deecfd;
  6755. background-repeat: repeat-x;
  6756. background-image: url('../../resources/themes/images/default/tab/tab-default-top-active-bg.gif'); }
  6757. /* line 469, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6758. .x-nbr .x-tab-bottom-active .x-frame-tl,
  6759. .x-nbr .x-tab-bottom-active .x-frame-bl,
  6760. .x-nbr .x-tab-bottom-active .x-frame-tr,
  6761. .x-nbr .x-tab-bottom-active .x-frame-br,
  6762. .x-nbr .x-tab-bottom-active .x-frame-tc,
  6763. .x-nbr .x-tab-bottom-active .x-frame-bc {
  6764. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-corners.gif'); }
  6765. /* line 473, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6766. .x-nbr .x-tab-bottom-active .x-frame-ml,
  6767. .x-nbr .x-tab-bottom-active .x-frame-mr {
  6768. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-sides.gif'); }
  6769. /* line 477, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6770. .x-nbr .x-tab-bottom-active .x-frame-mc {
  6771. background-color: #deecfd;
  6772. background-repeat: repeat-x;
  6773. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-active-bg.gif'); }
  6774. /* line 491, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6775. .x-nbr .x-tab-top-disabled .x-frame-tl,
  6776. .x-nbr .x-tab-top-disabled .x-frame-bl,
  6777. .x-nbr .x-tab-top-disabled .x-frame-tr,
  6778. .x-nbr .x-tab-top-disabled .x-frame-br,
  6779. .x-nbr .x-tab-top-disabled .x-frame-tc,
  6780. .x-nbr .x-tab-top-disabled .x-frame-bc {
  6781. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-corners.gif'); }
  6782. /* line 495, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6783. .x-nbr .x-tab-top-disabled .x-frame-ml,
  6784. .x-nbr .x-tab-top-disabled .x-frame-mr {
  6785. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-sides.gif'); }
  6786. /* line 499, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6787. .x-nbr .x-tab-top-disabled .x-frame-mc {
  6788. background-repeat: repeat-x;
  6789. background-image: url('../../resources/themes/images/default/tab/tab-default-top-disabled-bg.gif'); }
  6790. /* line 512, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6791. .x-nbr .x-tab-bottom-disabled .x-frame-tl,
  6792. .x-nbr .x-tab-bottom-disabled .x-frame-bl,
  6793. .x-nbr .x-tab-bottom-disabled .x-frame-tr,
  6794. .x-nbr .x-tab-bottom-disabled .x-frame-br,
  6795. .x-nbr .x-tab-bottom-disabled .x-frame-tc,
  6796. .x-nbr .x-tab-bottom-disabled .x-frame-bc {
  6797. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif'); }
  6798. /* line 516, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6799. .x-nbr .x-tab-bottom-disabled .x-frame-ml,
  6800. .x-nbr .x-tab-bottom-disabled .x-frame-mr {
  6801. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif'); }
  6802. /* line 520, ../themes/stylesheets/ext4/default/widgets/_tab.scss */
  6803. .x-nbr .x-tab-bottom-disabled .x-frame-mc {
  6804. background-repeat: repeat-x;
  6805. background-image: url('../../resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif'); }
  6806. /* line 5, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6807. .x-autowidth-table table.x-grid-table {
  6808. table-layout: auto;
  6809. width: auto!important; }
  6810. /* line 10, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6811. .x-tree-no-lines .x-tree-elbow {
  6812. background-color: transparent; }
  6813. /* line 14, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6814. .x-tree-no-lines .x-tree-elbow-end {
  6815. background-color: transparent; }
  6816. /* line 18, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6817. .x-tree-no-lines .x-tree-elbow-line {
  6818. background-color: transparent; }
  6819. /* line 23, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6820. .x-tree-arrows .x-tree-elbow-plus {
  6821. background: transparent no-repeat 0 0; }
  6822. /* line 27, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6823. .x-tree-arrows .x-tree-elbow-end-plus {
  6824. background: transparent no-repeat 0 0; }
  6825. /* line 31, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6826. .x-tree-arrows .x-tree-elbow-end-minus {
  6827. background: transparent no-repeat -16px 0; }
  6828. /* line 35, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6829. .x-tree-arrows .x-tree-elbow-minus {
  6830. background: transparent no-repeat -16px 0; }
  6831. /* line 39, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6832. .x-tree-arrows .x-tree-elbow {
  6833. background-color: transparent !important; }
  6834. /* line 43, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6835. .x-tree-arrows .x-tree-elbow-end {
  6836. background-color: transparent !important; }
  6837. /* line 47, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6838. .x-tree-arrows .x-tree-elbow-line {
  6839. background-color: transparent !important; }
  6840. /* line 53, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6841. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-plus,
  6842. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-plus {
  6843. background-position: -32px 0; }
  6844. /* line 58, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6845. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-minus,
  6846. .x-tree-arrows .x-tree-expander-over .x-tree-elbow-end-minus {
  6847. background-position: -48px 0; }
  6848. /* line 63, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6849. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-plus,
  6850. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6851. background-position: -16px 0; }
  6852. /* line 68, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6853. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-plus,
  6854. .x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-elbow-end-plus {
  6855. background-position: -48px 0; }
  6856. /* line 75, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6857. .x-tree-elbow-plus,
  6858. .x-tree-elbow-minus,
  6859. .x-tree-elbow-end-plus,
  6860. .x-tree-elbow-end-minus {
  6861. cursor: pointer; }
  6862. /* line 81, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6863. .x-tree-lines .x-tree-elbow {
  6864. background-image: url('../../resources/themes/images/default/tree/elbow.gif'); }
  6865. /* line 85, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6866. .x-tree-lines .x-tree-elbow-end {
  6867. background-image: url('../../resources/themes/images/default/tree/elbow-end.gif'); }
  6868. /* line 89, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6869. .x-tree-lines .x-tree-elbow-plus {
  6870. background-image: url('../../resources/themes/images/default/tree/elbow-plus.gif'); }
  6871. /* line 93, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6872. .x-tree-lines .x-tree-elbow-end-plus {
  6873. background-image: url('../../resources/themes/images/default/tree/elbow-end-plus.gif'); }
  6874. /* line 97, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6875. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus {
  6876. background-image: url('../../resources/themes/images/default/tree/elbow-minus.gif'); }
  6877. /* line 101, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6878. .x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6879. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus.gif'); }
  6880. /* line 105, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6881. .x-tree-lines .x-tree-elbow-line {
  6882. background-image: url('../../resources/themes/images/default/tree/elbow-line.gif'); }
  6883. /* line 112, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6884. .x-tree-no-lines .x-tree-elbow-plus,
  6885. .x-tree-no-lines .x-tree-elbow-end-plus {
  6886. background-image: url('../../resources/themes/images/default/tree/elbow-plus-nl.gif'); }
  6887. /* line 117, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6888. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-plus,
  6889. .x-tree-no-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  6890. background-image: url('../../resources/themes/images/default/tree/elbow-end-minus-nl.gif'); }
  6891. /* line 126, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6892. .x-tree-arrows .x-tree-elbow-plus,
  6893. .x-tree-arrows .x-tree-elbow-minus,
  6894. .x-tree-arrows .x-tree-elbow-end-plus,
  6895. .x-tree-arrows .x-tree-elbow-end-minus {
  6896. background-image: url('../../resources/themes/images/default/tree/arrows.gif'); }
  6897. /* line 131, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6898. .x-tree-icon {
  6899. margin: 2px 3px 0 0; }
  6900. /* line 135, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6901. .x-grid-with-row-lines .x-tree-icon {
  6902. margin-top: 1px; }
  6903. /* line 144, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6904. .x-tree-elbow,
  6905. .x-tree-elbow-end,
  6906. .x-tree-elbow-plus,
  6907. .x-tree-elbow-end-plus,
  6908. .x-tree-elbow-empty,
  6909. .x-tree-elbow-line {
  6910. height: 20px;
  6911. width: 16px; }
  6912. /* line 155, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6913. .x-grid-with-row-lines .x-tree-elbow,
  6914. .x-grid-with-row-lines .x-tree-elbow-end,
  6915. .x-grid-with-row-lines .x-tree-elbow-plus,
  6916. .x-grid-with-row-lines .x-tree-elbow-end-plus,
  6917. .x-grid-with-row-lines .x-tree-elbow-empty,
  6918. .x-grid-with-row-lines .x-tree-elbow-line {
  6919. height: 19px;
  6920. background-position: 0 -1px; }
  6921. /* line 161, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6922. .x-tree-icon-leaf {
  6923. width: 16px;
  6924. background-image: url('../../resources/themes/images/default/tree/leaf.gif'); }
  6925. /* line 166, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6926. .x-tree-icon-parent {
  6927. width: 16px;
  6928. background-image: url('../../resources/themes/images/default/tree/folder.gif'); }
  6929. /* line 171, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6930. .x-grid-tree-node-expanded .x-tree-icon-parent {
  6931. background-image: url('../../resources/themes/images/default/tree/folder-open.gif'); }
  6932. /* line 175, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6933. .x-grid-rowbody {
  6934. padding: 0; }
  6935. /* line 179, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6936. .x-grid-cell-treecolumn .x-grid-cell-inner {
  6937. padding: 0;
  6938. line-height: 19px; }
  6939. /* line 184, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6940. .x-grid-with-row-lines .x-grid-cell-treecolumn .x-grid-cell-inner {
  6941. line-height: 17px; }
  6942. /* line 188, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6943. .x-tree-panel .x-grid-cell-inner {
  6944. cursor: pointer; }
  6945. /* line 190, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6946. .x-tree-panel .x-grid-cell-inner img {
  6947. display: inline-block;
  6948. vertical-align: top; }
  6949. /* line 203, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6950. .x-ie .x-tree-panel .x-tree-elbow,
  6951. .x-ie .x-tree-panel .x-tree-elbow-end,
  6952. .x-ie .x-tree-panel .x-tree-elbow-plus,
  6953. .x-ie .x-tree-panel .x-tree-elbow-end-plus,
  6954. .x-ie .x-tree-panel .x-tree-elbow-empty,
  6955. .x-ie .x-tree-panel .x-tree-elbow-line {
  6956. vertical-align: -6px; }
  6957. /* line 211, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6958. .x-grid-editor-on-text-node .x-form-text {
  6959. padding-left: 1px;
  6960. padding-right: 1px; }
  6961. /* line 218, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6962. .x-ie .x-grid-editor-on-text-node .x-form-text {
  6963. padding-left: 2px;
  6964. padding-right: 2px; }
  6965. /* line 230, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6966. .x-tree-checkbox {
  6967. margin: 4px 3px 0 0;
  6968. display: inline-block;
  6969. vertical-align: top;
  6970. width: 13px;
  6971. height: 13px;
  6972. background: no-repeat;
  6973. background-image: url('../../resources/themes/images/default/form/checkbox.gif');
  6974. overflow: hidden;
  6975. padding: 0;
  6976. border: 0; }
  6977. /* line 243, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6978. .x-tree-checkbox::-moz-focus-inner {
  6979. padding: 0;
  6980. border: 0; }
  6981. /* line 249, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6982. .x-grid-with-row-lines .x-tree-checkbox {
  6983. margin-top: 3px; }
  6984. /* line 253, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6985. .x-tree-checkbox-checked {
  6986. background-position: 0 -13px; }
  6987. /* line 257, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6988. .x-tree-drop-ok-append .x-dd-drop-icon {
  6989. background-image: url('../../resources/themes/images/default/tree/drop-append.gif'); }
  6990. /* line 261, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6991. .x-tree-drop-ok-above .x-dd-drop-icon {
  6992. background-image: url('../../resources/themes/images/default/tree/drop-above.gif'); }
  6993. /* line 265, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6994. .x-tree-drop-ok-below .x-dd-drop-icon {
  6995. background-image: url('../../resources/themes/images/default/tree/drop-below.gif'); }
  6996. /* line 269, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  6997. .x-tree-drop-ok-between .x-dd-drop-icon {
  6998. background-image: url('../../resources/themes/images/default/tree/drop-between.gif'); }
  6999. /* line 273, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7000. .x-grid-tree-loading .x-tree-icon {
  7001. background-image: url('../../resources/themes/images/default/tree/loading.gif'); }
  7002. /* line 277, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7003. .x-tree-ddindicator {
  7004. height: 1px;
  7005. border-width: 1px 0px 0px;
  7006. border-style: dotted;
  7007. border-color: green; }
  7008. /* line 284, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7009. .x-grid-tree-loading span {
  7010. font-style: italic;
  7011. color: #444444; }
  7012. /* line 289, ../themes/stylesheets/ext4/default/widgets/_tree.scss */
  7013. .x-tree-animator-wrap {
  7014. overflow: hidden; }
  7015. /* line 2, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7016. .x-surface {
  7017. display: -moz-inline-box;
  7018. -moz-box-orient: vertical;
  7019. display: inline-block;
  7020. vertical-align: middle;
  7021. *vertical-align: auto;
  7022. overflow: hidden; }
  7023. /* line 7, ../../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
  7024. .x-surface {
  7025. *display: inline; }
  7026. /* line 7, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7027. .rvml {
  7028. behavior: url(#default#VML); }
  7029. /* line 11, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7030. .x-surface tspan {
  7031. user-select: none;
  7032. -o-user-select: none;
  7033. -ms-user-select: none;
  7034. -moz-user-select: -moz-none;
  7035. -webkit-user-select: none;
  7036. cursor: default; }
  7037. /* line 15, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7038. .x-vml-sprite {
  7039. position: absolute;
  7040. left: 0;
  7041. top: 0;
  7042. width: 1px;
  7043. height: 1px; }
  7044. /* line 23, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7045. .x-vml-group {
  7046. position: absolute;
  7047. left: 0;
  7048. top: 0;
  7049. width: 1000px;
  7050. height: 1000px; }
  7051. /* line 31, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7052. .x-vml-measure-span {
  7053. position: absolute;
  7054. left: -9999em;
  7055. top: -9999em;
  7056. padding: 0;
  7057. margin: 0;
  7058. display: inline; }
  7059. /* line 40, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7060. .x-vml-base {
  7061. position: relative;
  7062. top: 0;
  7063. left: 0;
  7064. overflow: hidden;
  7065. display: inline-block; }
  7066. /* line 48, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7067. .x-vml-base {
  7068. position: relative;
  7069. top: 0;
  7070. left: 0;
  7071. overflow: hidden;
  7072. display: inline-block; }
  7073. /* line 56, ../themes/stylesheets/ext4/default/widgets/_drawcomponent.scss */
  7074. svg, vml {
  7075. overflow: hidden; }
  7076. /* line 2, ../themes/stylesheets/ext4/default/widgets/_viewport.scss */
  7077. .x-viewport, .x-viewport body {
  7078. margin: 0;
  7079. padding: 0;
  7080. border: 0 none;
  7081. overflow: hidden;
  7082. height: 100%;
  7083. position: static; }
  7084. /* line 3, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7085. .x-dd-drag-proxy {
  7086. z-index: 1000000!important; }
  7087. /* line 8, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7088. .x-dd-drag-repair .x-dd-drag-ghost {
  7089. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  7090. opacity: 0.6; }
  7091. /* line 12, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7092. .x-dd-drag-repair .x-dd-drop-icon {
  7093. display: none; }
  7094. /* line 17, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7095. .x-dd-drag-ghost {
  7096. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  7097. opacity: 0.85;
  7098. padding: 5px;
  7099. padding-left: 20px;
  7100. white-space: nowrap;
  7101. color: #000;
  7102. font: normal 11px tahoma, arial, verdana, sans-serif;
  7103. border: 1px solid;
  7104. border-color: #ddd #bbb #bbb #ddd;
  7105. background-color: #fff; }
  7106. /* line 34, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7107. .x-dd-drop-icon {
  7108. position: absolute;
  7109. top: 3px;
  7110. left: 3px;
  7111. display: block;
  7112. width: 16px;
  7113. height: 16px;
  7114. background-color: transparent;
  7115. background-position: center;
  7116. background-repeat: no-repeat;
  7117. z-index: 1; }
  7118. /* line 51, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7119. .x-view-selector {
  7120. position: absolute;
  7121. left: 0;
  7122. top: 0;
  7123. width: 0;
  7124. background-color: #c3daf9;
  7125. border: 1px dotted #3399bb;
  7126. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7127. opacity: 0.5;
  7128. zoom: 1; }
  7129. /* line 66, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7130. .x-dd-drop-nodrop .x-dd-drop-icon {
  7131. background-image: url('../../resources/themes/images/default/dd/drop-no.gif'); }
  7132. /* line 70, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7133. .x-dd-drop-ok .x-dd-drop-icon {
  7134. background-image: url('../../resources/themes/images/default/dd/drop-yes.gif'); }
  7135. /* line 74, ../themes/stylesheets/ext4/default/util/_dragdrop.scss */
  7136. .x-dd-drop-ok-add .x-dd-drop-icon {
  7137. background-image: url('../../resources/themes/images/default/dd/drop-add.gif'); }
  7138. /* line 2, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7139. .x-resizable-handle {
  7140. position: absolute;
  7141. z-index: 100;
  7142. font-size: 1px;
  7143. line-height: 6px;
  7144. overflow: hidden;
  7145. zoom: 1;
  7146. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7147. opacity: 0;
  7148. background-color: #fff; }
  7149. /* line 14, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7150. .x-collapsed .x-resizable-handle {
  7151. display: none; }
  7152. /* line 18, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7153. .x-resizable-handle-east {
  7154. width: 6px;
  7155. height: 100%;
  7156. right: 0;
  7157. top: 0; }
  7158. /* line 27, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7159. .x-resizable-over .x-resizable-handle-east {
  7160. cursor: e-resize; }
  7161. /* line 32, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7162. .x-resizable-handle-south {
  7163. width: 100%;
  7164. height: 6px;
  7165. left: 0;
  7166. bottom: 0; }
  7167. /* line 41, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7168. .x-resizable-over .x-resizable-handle-south {
  7169. cursor: s-resize; }
  7170. /* line 46, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7171. .x-resizable-handle-west {
  7172. width: 6px;
  7173. height: 100%;
  7174. left: 0;
  7175. top: 0; }
  7176. /* line 55, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7177. .x-resizable-over .x-resizable-handle-west {
  7178. cursor: w-resize; }
  7179. /* line 60, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7180. .x-resizable-handle-north {
  7181. width: 100%;
  7182. height: 6px;
  7183. left: 0;
  7184. top: 0; }
  7185. /* line 69, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7186. .x-resizable-over .x-resizable-handle-north {
  7187. cursor: n-resize; }
  7188. /* line 74, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7189. .x-resizable-handle-southeast {
  7190. width: 6px;
  7191. height: 6px;
  7192. right: 0;
  7193. bottom: 0;
  7194. z-index: 101; }
  7195. /* line 85, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7196. .x-resizable-over .x-resizable-handle-southeast {
  7197. cursor: se-resize; }
  7198. /* line 90, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7199. .x-resizable-handle-northwest {
  7200. width: 6px;
  7201. height: 6px;
  7202. left: 0;
  7203. top: 0;
  7204. z-index: 101; }
  7205. /* line 101, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7206. .x-resizable-over .x-resizable-handle-northwest {
  7207. cursor: nw-resize; }
  7208. /* line 106, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7209. .x-resizable-handle-northeast {
  7210. width: 6px;
  7211. height: 6px;
  7212. right: 0;
  7213. top: 0;
  7214. z-index: 101; }
  7215. /* line 117, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7216. .x-resizable-over .x-resizable-handle-northeast {
  7217. cursor: ne-resize; }
  7218. /* line 122, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7219. .x-resizable-handle-southwest {
  7220. width: 6px;
  7221. height: 6px;
  7222. left: 0;
  7223. bottom: 0;
  7224. z-index: 101; }
  7225. /* line 133, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7226. .x-resizable-over .x-resizable-handle-southwest {
  7227. cursor: sw-resize; }
  7228. /*IE rounding error*/
  7229. /* line 140, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7230. .x-ie .x-resizable-handle-east {
  7231. margin-right: -1px;
  7232. /*IE rounding error*/ }
  7233. /* line 144, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7234. .x-ie .x-resizable-handle-south {
  7235. margin-bottom: -1px; }
  7236. /* line 149, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7237. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle {
  7238. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  7239. opacity: 1; }
  7240. /* line 153, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7241. .x-window .x-window-handle {
  7242. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7243. opacity: 0; }
  7244. /* line 157, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7245. .x-window-collapsed .x-window-handle {
  7246. display: none; }
  7247. /* line 161, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7248. .x-resizable-proxy {
  7249. border: 1px dashed #3b5a82;
  7250. position: absolute;
  7251. left: 0;
  7252. top: 0;
  7253. overflow: hidden;
  7254. z-index: 50000; }
  7255. /* line 170, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7256. .x-resizable-overlay {
  7257. position: absolute;
  7258. left: 0;
  7259. top: 0;
  7260. width: 100%;
  7261. height: 100%;
  7262. display: none;
  7263. z-index: 200000;
  7264. background-color: #fff;
  7265. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  7266. opacity: 0; }
  7267. /* line 190, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7268. .x-resizable-over .x-resizable-handle-east,
  7269. .x-resizable-over .x-resizable-handle-west,
  7270. .x-resizable-pinned .x-resizable-handle-east,
  7271. .x-resizable-pinned .x-resizable-handle-west {
  7272. background-position: left;
  7273. background-image: url('../../resources/themes/images/default/sizer/e-handle.gif'); }
  7274. /* line 196, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7275. .x-resizable-over .x-resizable-handle-south,
  7276. .x-resizable-over .x-resizable-handle-north,
  7277. .x-resizable-pinned .x-resizable-handle-south,
  7278. .x-resizable-pinned .x-resizable-handle-north {
  7279. background-position: top;
  7280. background-image: url('../../resources/themes/images/default/sizer/s-handle.gif'); }
  7281. /* line 201, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7282. .x-resizable-over .x-resizable-handle-southeast,
  7283. .x-resizable-pinned .x-resizable-handle-southeast {
  7284. background-position: top left;
  7285. background-image: url('../../resources/themes/images/default/sizer/se-handle.gif'); }
  7286. /* line 206, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7287. .x-resizable-over .x-resizable-handle-northwest,
  7288. .x-resizable-pinned .x-resizable-handle-northwest {
  7289. background-position: bottom right;
  7290. background-image: url('../../resources/themes/images/default/sizer/nw-handle.gif'); }
  7291. /* line 211, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7292. .x-resizable-over .x-resizable-handle-northeast,
  7293. .x-resizable-pinned .x-resizable-handle-northeast {
  7294. background-position: bottom left;
  7295. background-image: url('../../resources/themes/images/default/sizer/ne-handle.gif'); }
  7296. /* line 216, ../themes/stylesheets/ext4/default/util/_resizable.scss */
  7297. .x-resizable-over .x-resizable-handle-southwest,
  7298. .x-resizable-pinned .x-resizable-handle-southwest {
  7299. background-position: top right;
  7300. background-image: url('../../resources/themes/images/default/sizer/sw-handle.gif'); }
  7301. /* line 3, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7302. .x-splitter .x-collapse-el {
  7303. position: absolute;
  7304. cursor: pointer;
  7305. background-color: transparent;
  7306. background-repeat: no-repeat !important; }
  7307. /* line 14, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7308. .x-layout-split-left,
  7309. .x-layout-split-right {
  7310. top: 50%;
  7311. margin-top: -17px;
  7312. width: 5px;
  7313. height: 35px; }
  7314. /* line 24, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7315. .x-layout-split-top,
  7316. .x-layout-split-bottom {
  7317. left: 50%;
  7318. width: 35px;
  7319. height: 5px;
  7320. margin-left: -17px; }
  7321. /* line 33, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7322. .x-layout-split-left {
  7323. background: no-repeat top right;
  7324. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7325. /* line 38, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7326. .x-layout-split-right {
  7327. background: no-repeat top left;
  7328. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7329. /* line 43, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7330. .x-layout-split-top {
  7331. background: no-repeat top left;
  7332. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7333. /* line 48, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7334. .x-layout-split-bottom {
  7335. background: no-repeat top left;
  7336. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7337. /* line 54, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7338. .x-splitter-collapsed .x-layout-split-left {
  7339. background: no-repeat top left;
  7340. background-image: url('../../resources/themes/images/default/util/splitter/mini-right.gif'); }
  7341. /* line 59, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7342. .x-splitter-collapsed .x-layout-split-right {
  7343. background: no-repeat top right;
  7344. background-image: url('../../resources/themes/images/default/util/splitter/mini-left.gif'); }
  7345. /* line 64, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7346. .x-splitter-collapsed .x-layout-split-top {
  7347. background: no-repeat top left;
  7348. background-image: url('../../resources/themes/images/default/util/splitter/mini-bottom.gif'); }
  7349. /* line 69, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7350. .x-splitter-collapsed .x-layout-split-bottom {
  7351. background: no-repeat top left;
  7352. background-image: url('../../resources/themes/images/default/util/splitter/mini-top.gif'); }
  7353. /* line 75, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7354. .x-splitter-horizontal {
  7355. cursor: e-resize;
  7356. cursor: row-resize;
  7357. font-size: 1px; }
  7358. /* line 80, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7359. .x-splitter-vertical {
  7360. cursor: e-resize;
  7361. cursor: col-resize;
  7362. font-size: 1px; }
  7363. /* line 85, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7364. .x-splitter-collapsed {
  7365. cursor: default; }
  7366. /* line 89, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7367. .x-splitter-active {
  7368. z-index: 4;
  7369. font-size: 1px;
  7370. background-color: #b4b4b4;
  7371. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7372. opacity: 0.8; }
  7373. /* line 96, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7374. .x-splitter-active .x-collapse-el {
  7375. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  7376. opacity: 0.3; }
  7377. /* line 101, ../themes/stylesheets/ext4/default/util/_splitter.scss */
  7378. .x-proxy-el {
  7379. position: absolute;
  7380. background: #b4b4b4;
  7381. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  7382. opacity: 0.8; }
  7383. /**
  7384. * Dock Layouts
  7385. * @todo move this somewhere else?
  7386. */
  7387. /* line 6, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7388. .x-docked {
  7389. position: absolute !important;
  7390. z-index: 1; }
  7391. /* line 11, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7392. .x-docked-top {
  7393. border-bottom-width: 0 !important; }
  7394. /* line 15, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7395. .x-docked-bottom {
  7396. border-top-width: 0 !important; }
  7397. /* line 19, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7398. .x-docked-left {
  7399. border-right-width: 0 !important; }
  7400. /* line 23, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7401. .x-docked-right {
  7402. border-left-width: 0 !important; }
  7403. /* line 27, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7404. .x-docked-noborder-top {
  7405. border-top-width: 0 !important; }
  7406. /* line 31, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7407. .x-docked-noborder-right {
  7408. border-right-width: 0 !important; }
  7409. /* line 35, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7410. .x-docked-noborder-bottom {
  7411. border-bottom-width: 0 !important; }
  7412. /* line 39, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7413. .x-docked-noborder-left {
  7414. border-left-width: 0 !important; }
  7415. /* line 43, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7416. .x-box-inner {
  7417. overflow: hidden;
  7418. zoom: 1;
  7419. position: relative;
  7420. left: 0;
  7421. top: 0; }
  7422. /* line 53, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7423. .x-box-item {
  7424. position: absolute !important;
  7425. left: 0;
  7426. top: 0; }
  7427. /* line 59, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7428. .x-rtl .x-box-item {
  7429. right: 0;
  7430. left: auto; }
  7431. /* line 65, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7432. .x-box-layout-ct,
  7433. .x-border-layout-ct {
  7434. overflow: hidden;
  7435. zoom: 1; }
  7436. /* line 70, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7437. .x-border-layout-ct {
  7438. background-color: #dfe8f6;
  7439. position: relative; }
  7440. /* line 75, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7441. .x-overflow-hidden {
  7442. overflow: hidden !important; }
  7443. /* line 79, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7444. .x-inline-children > * {
  7445. display: inline-block !important; }
  7446. /* line 83, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7447. .x-abs-layout-ct {
  7448. position: relative; }
  7449. /* line 87, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7450. .x-abs-layout-item {
  7451. position: absolute !important; }
  7452. /* line 91, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7453. .x-fit-item {
  7454. position: relative; }
  7455. /* line 95, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7456. .x-border-region-slide-in {
  7457. z-index: 5; }
  7458. /* line 99, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7459. .x-region-collapsed-placeholder {
  7460. z-index: 4; }
  7461. /* line 103, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7462. .x-accordion-hd .x-panel-header-text {
  7463. color: black;
  7464. font-weight: normal; }
  7465. /* line 108, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7466. .x-accordion-hd {
  7467. background: #d9e7f8 !important;
  7468. -moz-box-shadow: inset 0 0 0 0 #d9e7f8;
  7469. -webkit-box-shadow: inset 0 0 0 0 #d9e7f8;
  7470. -o-box-shadow: inset 0 0 0 0 #d9e7f8;
  7471. box-shadow: inset 0 0 0 0 #d9e7f8; }
  7472. /* line 112, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7473. .x-accordion-hd .x-tool-collapse-top,
  7474. .x-accordion-hd .x-tool-collapse-right,
  7475. .x-accordion-hd .x-tool-collapse-bottom,
  7476. .x-accordion-hd .x-tool-collapse-left {
  7477. background-position: 0 -255px; }
  7478. /* line 119, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7479. .x-accordion-hd .x-tool-expand-top,
  7480. .x-accordion-hd .x-tool-expand-right,
  7481. .x-accordion-hd .x-tool-expand-bottom,
  7482. .x-accordion-hd .x-tool-expand-left {
  7483. background-position: 0 -240px; }
  7484. /* line 127, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7485. .x-accordion-hd .x-tool-over .x-tool-collapse-top,
  7486. .x-accordion-hd .x-tool-over .x-tool-collapse-right,
  7487. .x-accordion-hd .x-tool-over .x-tool-collapse-bottom,
  7488. .x-accordion-hd .x-tool-over .x-tool-collapse-left {
  7489. background-position: -15px -255px; }
  7490. /* line 136, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7491. .x-accordion-hd .x-tool-over .x-tool-expand-top,
  7492. .x-accordion-hd .x-tool-over .x-tool-expand-right,
  7493. .x-accordion-hd .x-tool-over .x-tool-expand-bottom,
  7494. .x-accordion-hd .x-tool-over .x-tool-expand-left {
  7495. background-position: -15px -240px; }
  7496. /* line 145, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7497. .x-accordion-hd {
  7498. border-width: 1px 0 1px 0 !important;
  7499. padding: 4px 5px 5px 5px;
  7500. border-top-color: #f3f7fb !important; }
  7501. /* line 151, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7502. .x-accordion-body {
  7503. border-width: 0 !important; }
  7504. /* line 155, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7505. .x-accordion-hd-sibling-expanded {
  7506. border-top-color: #99bce8 !important;
  7507. -moz-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7508. -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7509. -o-box-shadow: inset 0 1px 0 0 #f3f7fb;
  7510. box-shadow: inset 0 1px 0 0 #f3f7fb; }
  7511. /* line 160, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7512. .x-accordion-hd-last-collapsed {
  7513. border-bottom-color: #d9e7f8 !important; }
  7514. /* line 169, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7515. .x-frame-tl,
  7516. .x-frame-tr,
  7517. .x-frame-tc,
  7518. .x-frame-bl,
  7519. .x-frame-br,
  7520. .x-frame-bc {
  7521. overflow: hidden;
  7522. background-repeat: no-repeat; }
  7523. /* line 175, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7524. .x-frame-tc,
  7525. .x-frame-bc {
  7526. background-repeat: repeat-x; }
  7527. /* line 179, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7528. .x-frame-mc {
  7529. position: relative;
  7530. background-repeat: repeat-x;
  7531. overflow: hidden; }
  7532. /* line 188, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7533. .x-box-scroller-left {
  7534. float: left;
  7535. height: 100%;
  7536. z-index: 5; }
  7537. /* line 195, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7538. .x-box-scroller-left .x-toolbar-scroll-left,
  7539. .x-box-scroller-left .x-tabbar-scroll-left {
  7540. width: 18px;
  7541. position: relative;
  7542. cursor: pointer;
  7543. height: 20px;
  7544. background: transparent no-repeat -18px 0;
  7545. background-image: url('../../resources/themes/images/default/tab-bar/scroll-left.gif'); }
  7546. /* line 203, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7547. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7548. background-position: 0 0; }
  7549. /* line 207, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7550. .x-box-scroller-left .x-toolbar-scroll-left-disabled,
  7551. .x-box-scroller-left .x-tabbar-scroll-left-disabled {
  7552. background-position: -18px 0;
  7553. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7554. opacity: 0.5;
  7555. cursor: default; }
  7556. /* line 214, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7557. .x-box-scroller-left .x-toolbar-scroll-left {
  7558. background-image: url('../../resources/themes/images/default/toolbar/scroll-left.gif');
  7559. background-position: -14px 0; }
  7560. /* line 218, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7561. .x-box-scroller-left .x-toolbar-scroll-left-hover {
  7562. background-position: 0 0; }
  7563. /* line 221, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7564. .x-box-scroller-left .x-toolbar-scroll-left-disabled {
  7565. background-position: -14px 0; }
  7566. /* line 225, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7567. .x-box-scroller-left .x-toolbar-scroll-left {
  7568. width: 14px;
  7569. height: 22px;
  7570. border-bottom: 1px solid #8db2e3; }
  7571. /* line 233, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7572. .x-horizontal-box-overflow-body {
  7573. float: left; }
  7574. /* line 236, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7575. .x-box-scroller-right {
  7576. float: right;
  7577. height: 100%;
  7578. z-index: 5; }
  7579. /* line 243, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7580. .x-box-scroller-right .x-toolbar-scroll-right,
  7581. .x-box-scroller-right .x-tabbar-scroll-right {
  7582. width: 18px;
  7583. position: relative;
  7584. cursor: pointer;
  7585. height: 20px;
  7586. background: transparent no-repeat 0 0;
  7587. background-image: url('../../resources/themes/images/default/tab-bar/scroll-right.gif'); }
  7588. /* line 251, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7589. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7590. background-position: -18px 0; }
  7591. /* line 255, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7592. .x-box-scroller-right .x-toolbar-scroll-right-disabled,
  7593. .x-box-scroller-right .x-tabbar-scroll-right-disabled {
  7594. background-position: 0 0;
  7595. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  7596. opacity: 0.5;
  7597. cursor: default; }
  7598. /* line 262, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7599. .x-box-scroller-right .x-toolbar-scroll-right {
  7600. background-image: url('../../resources/themes/images/default/toolbar/scroll-right.gif'); }
  7601. /* line 265, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7602. .x-box-scroller-right .x-toolbar-scroll-right-hover {
  7603. background-position: -14px 0; }
  7604. /* line 268, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7605. .x-box-scroller-right .x-toolbar-scroll-right-disabled {
  7606. background-position: 0 0; }
  7607. /* line 272, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7608. .x-box-scroller-right .x-toolbar-scroll-right {
  7609. width: 14px;
  7610. height: 22px;
  7611. border-bottom: 1px solid #8db2e3; }
  7612. /* line 282, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7613. .x-box-scroller-top .x-box-scroller {
  7614. line-height: 0;
  7615. font-size: 0; }
  7616. /* line 286, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7617. .x-box-scroller-top .x-menu-scroll-top {
  7618. background: transparent no-repeat center center;
  7619. background-image: url('../../resources/themes/images/default/layout/mini-top.gif');
  7620. height: 8px;
  7621. cursor: pointer; }
  7622. /* line 294, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7623. .x-box-scroller-bottom .x-box-scroller {
  7624. line-height: 0;
  7625. font-size: 0; }
  7626. /* line 298, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7627. .x-box-scroller-bottom .x-menu-scroll-bottom {
  7628. background: transparent no-repeat center center;
  7629. background-image: url('../../resources/themes/images/default/layout/mini-bottom.gif');
  7630. height: 8px;
  7631. cursor: pointer; }
  7632. /* line 306, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7633. .x-box-menu-right {
  7634. float: right;
  7635. padding-right: 2px; }
  7636. /* line 311, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7637. .x-column {
  7638. float: left; }
  7639. /* line 315, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7640. .x-ie6 .x-column {
  7641. display: inline;
  7642. /*prevent IE6 double-margin bug*/ }
  7643. /* line 319, ../themes/stylesheets/ext4/default/layout/_layout.scss */
  7644. .x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item {
  7645. position: relative; }
  7646. /* line 2, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7647. .x-tool {
  7648. height: 15px; }
  7649. /* line 5, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7650. .x-tool img {
  7651. overflow: hidden;
  7652. width: 15px;
  7653. height: 15px;
  7654. cursor: pointer;
  7655. background-color: transparent;
  7656. background-repeat: no-repeat;
  7657. background-image: url('../../resources/themes/images/default/tools/tool-sprites.gif');
  7658. margin: 0; }
  7659. /* line 23, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7660. .x-panel-header-horizontal .x-tool,
  7661. .x-window-header-horizontal .x-tool {
  7662. margin-left: 2px; }
  7663. /* line 30, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7664. .x-panel-header-vertical .x-tool,
  7665. .x-window-header-vertical .x-tool {
  7666. margin-top: 2px; }
  7667. /* line 39, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7668. .x-panel-header-vertical .x-tool-top,
  7669. .x-window-header-vertical .x-tool-top {
  7670. margin: 0 0 4px; }
  7671. /* line 45, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7672. .x-tool-placeholder {
  7673. visibility: hidden; }
  7674. /* line 49, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7675. .x-tool-toggle {
  7676. background-position: 0 -60px; }
  7677. /* line 54, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7678. .x-tool-over .x-tool-toggle {
  7679. background-position: -15px -60px; }
  7680. /* line 61, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7681. .x-panel-collapsed .x-tool-toggle,
  7682. .x-fieldset-collapsed .x-tool-toggle {
  7683. background-position: 0 -75px; }
  7684. /* line 66, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7685. .x-panel-collapsed .x-tool-over .x-tool-toggle,
  7686. .x-fieldset-collapsed .x-tool-over .x-tool-toggle {
  7687. background-position: -15px -75px; }
  7688. /* line 72, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7689. .x-tool-close {
  7690. background-position: 0 0; }
  7691. /* line 76, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7692. .x-tool-minimize {
  7693. background-position: 0 -15px; }
  7694. /* line 80, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7695. .x-tool-maximize {
  7696. background-position: 0 -30px; }
  7697. /* line 84, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7698. .x-tool-restore {
  7699. background-position: 0 -45px; }
  7700. /* line 88, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7701. .x-tool-gear {
  7702. background-position: 0 -90px; }
  7703. /* line 92, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7704. .x-tool-prev {
  7705. background-position: 0 -105px; }
  7706. /* line 96, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7707. .x-tool-next {
  7708. background-position: 0 -120px; }
  7709. /* line 100, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7710. .x-tool-pin {
  7711. background-position: 0 -135px; }
  7712. /* line 104, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7713. .x-tool-unpin {
  7714. background-position: 0 -150px; }
  7715. /* line 108, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7716. .x-tool-right {
  7717. background-position: 0 -165px; }
  7718. /* line 112, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7719. .x-tool-left {
  7720. background-position: 0 -180px; }
  7721. /* line 116, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7722. .x-tool-help {
  7723. background-position: 0 -300px; }
  7724. /* line 120, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7725. .x-tool-save {
  7726. background-position: 0 -285px; }
  7727. /* line 124, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7728. .x-tool-search {
  7729. background-position: 0 -270px; }
  7730. /* line 128, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7731. .x-tool-minus {
  7732. background-position: 0 -255px; }
  7733. /* line 132, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7734. .x-tool-plus {
  7735. background-position: 0 -240px; }
  7736. /* line 136, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7737. .x-tool-refresh {
  7738. background-position: 0 -225px; }
  7739. /* line 140, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7740. .x-tool-up {
  7741. background-position: 0 -210px; }
  7742. /* line 144, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7743. .x-tool-down {
  7744. background-position: 0 -195px; }
  7745. /* line 148, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7746. .x-tool-collapse {
  7747. background-position: 0 -345px; }
  7748. /* line 152, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7749. .x-tool-expand {
  7750. background-position: 0 -330px; }
  7751. /* line 156, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7752. .x-tool-print {
  7753. background-position: 0 -315px; }
  7754. /* line 161, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7755. .x-tool-expand-bottom,
  7756. .x-tool-collapse-bottom {
  7757. background-position: 0 -195px; }
  7758. /* line 166, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7759. .x-tool-expand-top,
  7760. .x-tool-collapse-top {
  7761. background-position: 0 -210px; }
  7762. /* line 171, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7763. .x-tool-expand-left,
  7764. .x-tool-collapse-left {
  7765. background-position: 0 -180px; }
  7766. /* line 176, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7767. .x-tool-expand-right,
  7768. .x-tool-collapse-right {
  7769. background-position: 0 -165px; }
  7770. /* line 181, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7771. .x-tool-over .x-tool-close {
  7772. background-position: -15px 0; }
  7773. /* line 185, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7774. .x-tool-over .x-tool-minimize {
  7775. background-position: -15px -15px; }
  7776. /* line 189, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7777. .x-tool-over .x-tool-maximize {
  7778. background-position: -15px -30px; }
  7779. /* line 193, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7780. .x-tool-over .x-tool-restore {
  7781. background-position: -15px -45px; }
  7782. /* line 197, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7783. .x-tool-over .x-tool-gear {
  7784. background-position: -15px -90px; }
  7785. /* line 201, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7786. .x-tool-over .x-tool-prev {
  7787. background-position: -15px -105px; }
  7788. /* line 205, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7789. .x-tool-over .x-tool-next {
  7790. background-position: -15px -120px; }
  7791. /* line 209, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7792. .x-tool-over .x-tool-pin {
  7793. background-position: -15px -135px; }
  7794. /* line 213, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7795. .x-tool-over .x-tool-unpin {
  7796. background-position: -15px -150px; }
  7797. /* line 217, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7798. .x-tool-over .x-tool-right {
  7799. background-position: -15px -165px; }
  7800. /* line 221, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7801. .x-tool-over .x-tool-left {
  7802. background-position: -15px -180px; }
  7803. /* line 225, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7804. .x-tool-over .x-tool-down {
  7805. background-position: -15px -195px; }
  7806. /* line 229, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7807. .x-tool-over .x-tool-up {
  7808. background-position: -15px -210px; }
  7809. /* line 233, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7810. .x-tool-over .x-tool-refresh {
  7811. background-position: -15px -225px; }
  7812. /* line 237, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7813. .x-tool-over .x-tool-plus {
  7814. background-position: -15px -240px; }
  7815. /* line 241, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7816. .x-tool-over .x-tool-minus {
  7817. background-position: -15px -255px; }
  7818. /* line 245, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7819. .x-tool-over .x-tool-search {
  7820. background-position: -15px -270px; }
  7821. /* line 249, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7822. .x-tool-over .x-tool-save {
  7823. background-position: -15px -285px; }
  7824. /* line 253, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7825. .x-tool-over .x-tool-help {
  7826. background-position: -15px -300px; }
  7827. /* line 257, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7828. .x-tool-over .x-tool-print {
  7829. background-position: -15px -315px; }
  7830. /* line 261, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7831. .x-tool-over .x-tool-expand {
  7832. background-position: -15px -330px; }
  7833. /* line 265, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7834. .x-tool-over .x-tool-collapse {
  7835. background-position: -15px -345px; }
  7836. /* line 270, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7837. .x-tool-over .x-tool-expand-bottom,
  7838. .x-tool-over .x-tool-collapse-bottom {
  7839. background-position: -15px -195px; }
  7840. /* line 275, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7841. .x-tool-over .x-tool-expand-top,
  7842. .x-tool-over .x-tool-collapse-top {
  7843. background-position: -15px -210px; }
  7844. /* line 280, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7845. .x-tool-over .x-tool-expand-left,
  7846. .x-tool-over .x-tool-collapse-left {
  7847. background-position: -15px -180px; }
  7848. /* line 285, ../themes/stylesheets/ext4/default/util/_tool.scss */
  7849. .x-tool-over .x-tool-expand-right,
  7850. .x-tool-over .x-tool-collapse-right {
  7851. background-position: -15px -165px; }
  7852. /* line 2, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7853. .x-horizontal-scroller-present .x-grid-body {
  7854. border-bottom-width: 0px; }
  7855. /* line 6, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7856. .x-vertical-scroller-present .x-grid-body {
  7857. border-right-width: 0px; }
  7858. /* line 10, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7859. .x-scroller {
  7860. overflow: hidden; }
  7861. /* line 14, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7862. .x-scroller-vertical {
  7863. border: 1px solid #99bce8;
  7864. border-top-color: #c5c5c5; }
  7865. /* line 19, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7866. .x-scroller-horizontal {
  7867. border: 1px solid #99bce8; }
  7868. /* line 23, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7869. .x-vertical-scroller-present .x-scroller-horizontal {
  7870. border-right-width: 0px; }
  7871. /* line 27, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7872. .x-scroller-ct {
  7873. overflow: hidden;
  7874. position: absolute;
  7875. margin: 0;
  7876. padding: 0;
  7877. border: none;
  7878. left: 0px;
  7879. top: 0px;
  7880. /*
  7881. In IE9 (only), the border-box style causes the scroller-ct to be 0px in the
  7882. perpendicular dimension and breaks the scroll as well as offsets it by the left
  7883. offset that we use to try and keep some size on this element. This works on all
  7884. browsers (including IE9).
  7885. */
  7886. box-sizing: content-box !important;
  7887. -ms-box-sizing: content-box !important;
  7888. -moz-box-sizing: content-box !important;
  7889. -webkit-box-sizing: content-box !important; }
  7890. /* line 48, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7891. .x-scroller-vertical .x-scroller-ct {
  7892. overflow-y: scroll; }
  7893. /* line 52, ../themes/stylesheets/ext4/default/util/_scroller.scss */
  7894. .x-scroller-horizontal .x-scroller-ct {
  7895. overflow-x: scroll; }
  7896. /* line 6, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7897. .x-html {
  7898. /* Begin bidirectionality settings (do not change) */ }
  7899. /* line 32, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7900. .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 {
  7901. display: block; }
  7902. /* line 33, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7903. .x-html li {
  7904. display: list-item;
  7905. list-style: disc; }
  7906. /* line 34, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7907. .x-html head {
  7908. display: none; }
  7909. /* line 35, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7910. .x-html table {
  7911. display: table; }
  7912. /* line 36, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7913. .x-html tr {
  7914. display: table-row; }
  7915. /* line 37, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7916. .x-html thead {
  7917. display: table-header-group; }
  7918. /* line 38, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7919. .x-html tbody {
  7920. display: table-row-group; }
  7921. /* line 39, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7922. .x-html tfoot {
  7923. display: table-footer-group; }
  7924. /* line 40, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7925. .x-html col {
  7926. display: table-column; }
  7927. /* line 41, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7928. .x-html colgroup {
  7929. display: table-column-group; }
  7930. /* line 43, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7931. .x-html td, .x-html th {
  7932. display: table-cell; }
  7933. /* line 44, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7934. .x-html caption {
  7935. display: table-caption; }
  7936. /* line 45, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7937. .x-html th {
  7938. font-weight: bolder;
  7939. text-align: center; }
  7940. /* line 46, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7941. .x-html caption {
  7942. text-align: center; }
  7943. /* line 47, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7944. .x-html body {
  7945. margin: 8px; }
  7946. /* line 48, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7947. .x-html h1 {
  7948. font-size: 2em;
  7949. margin: .67em 0; }
  7950. /* line 49, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7951. .x-html h2 {
  7952. font-size: 1.5em;
  7953. margin: .75em 0; }
  7954. /* line 50, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7955. .x-html h3 {
  7956. font-size: 1.17em;
  7957. margin: .83em 0; }
  7958. /* line 60, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7959. .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 {
  7960. margin: 1.12em 0; }
  7961. /* line 61, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7962. .x-html h5 {
  7963. font-size: .83em;
  7964. margin: 1.5em 0; }
  7965. /* line 62, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7966. .x-html h6 {
  7967. font-size: .75em;
  7968. margin: 1.67em 0; }
  7969. /* line 70, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7970. .x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6, .x-html b, .x-html strong {
  7971. font-weight: bolder; }
  7972. /* line 71, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7973. .x-html blockquote {
  7974. margin-left: 40px;
  7975. margin-right: 40px; }
  7976. /* line 76, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7977. .x-html i, .x-html cite, .x-html em, .x-html var, .x-html address {
  7978. font-style: italic; }
  7979. /* line 81, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7980. .x-html pre, .x-html tt, .x-html code, .x-html kbd, .x-html samp {
  7981. font-family: monospace; }
  7982. /* line 82, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7983. .x-html pre {
  7984. white-space: pre; }
  7985. /* line 86, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7986. .x-html button, .x-html textarea, .x-html input, .x-html select {
  7987. display: inline-block; }
  7988. /* line 87, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7989. .x-html big {
  7990. font-size: 1.17em; }
  7991. /* line 90, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7992. .x-html small, .x-html sub, .x-html sup {
  7993. font-size: .83em; }
  7994. /* line 91, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7995. .x-html sub {
  7996. vertical-align: sub; }
  7997. /* line 92, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  7998. .x-html sup {
  7999. vertical-align: super; }
  8000. /* line 93, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8001. .x-html table {
  8002. border-spacing: 2px; }
  8003. /* line 96, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8004. .x-html thead, .x-html tbody, .x-html tfoot {
  8005. vertical-align: middle; }
  8006. /* line 98, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8007. .x-html td, .x-html th {
  8008. vertical-align: inherit; }
  8009. /* line 101, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8010. .x-html s, .x-html strike, .x-html del {
  8011. text-decoration: line-through; }
  8012. /* line 102, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8013. .x-html hr {
  8014. border: 1px inset; }
  8015. /* line 107, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8016. .x-html ol, .x-html ul, .x-html dir, .x-html menu, .x-html dd {
  8017. margin-left: 40px; }
  8018. /* line 108, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8019. .x-html ul, .x-html menu, .x-html dir {
  8020. list-style-type: disc; }
  8021. /* line 109, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8022. .x-html ol {
  8023. list-style-type: decimal; }
  8024. /* line 113, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8025. .x-html ol ul, .x-html ul ol, .x-html ul ul, .x-html ol ol {
  8026. margin-top: 0;
  8027. margin-bottom: 0; }
  8028. /* line 115, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8029. .x-html u, .x-html ins {
  8030. text-decoration: underline; }
  8031. /* line 116, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8032. .x-html br:before {
  8033. content: "\A"; }
  8034. /* line 117, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8035. .x-html :before, .x-html :after {
  8036. white-space: pre-line; }
  8037. /* line 118, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8038. .x-html center {
  8039. text-align: center; }
  8040. /* line 119, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8041. .x-html :link, .x-html :visited {
  8042. text-decoration: underline; }
  8043. /* line 120, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8044. .x-html :focus {
  8045. outline: invert dotted thin; }
  8046. /* line 123, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8047. .x-html BDO[DIR="ltr"] {
  8048. direction: ltr;
  8049. unicode-bidi: bidi-override; }
  8050. /* line 124, ../themes/stylesheets/ext4/default/widgets/_html.scss */
  8051. .x-html BDO[DIR="rtl"] {
  8052. direction: rtl;
  8053. unicode-bidi: bidi-override; }