application.less 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. @space-s: 5px;
  19. @space-m: 10px;
  20. @space-l: 20px;
  21. @-webkit-keyframes greenPulse {
  22. from { background-color: #118fff; }
  23. 50% { background-color: #006DCC; }
  24. to { background-color: #118fff; }
  25. }
  26. @-moz-keyframes greenPulse {
  27. from { background-color: #118fff; }
  28. 50% { background-color: #006DCC; }
  29. to { background-color: #118fff; }
  30. }
  31. @keyframes greenPulse
  32. {
  33. 0% { background-color: #118fff; }
  34. 50% { background-color: #006DCC; }
  35. 100% { background-color: #118fff; }
  36. }
  37. @-webkit-keyframes greenPulseInner {
  38. from { color: #118fff; }
  39. 50% { color: #006DCC; }
  40. to { color: #118fff; }
  41. }
  42. @-moz-keyframes greenPulseInner {
  43. from { color: #118fff; }
  44. 50% { color: #006DCC; }
  45. to { color: #118fff; }
  46. }
  47. @keyframes greenPulseInner
  48. {
  49. 0% { color: #118fff; }
  50. 50% { color: #006DCC; }
  51. 100% { color: #118fff; }
  52. }
  53. .gradient(@color: #FAFAFA, @start: #FFFFFF, @stop: #F2F2F2) {
  54. background: @color;
  55. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, @start), color-stop(1, @stop));
  56. background: -ms-linear-gradient(top, @start, @stop);
  57. background: -moz-linear-gradient(center top, @start 0%, @stop 100%);
  58. filter: progid:dximagetransform.microsoft.gradient(startColorstr= @start, endColorstr= @stop, GradientType=0); // for IE9-
  59. }
  60. html {
  61. overflow-y: scroll;
  62. }
  63. html, body {
  64. height: 100%;
  65. }
  66. wbr {
  67. display: inline-block;
  68. }
  69. #wrapper {
  70. min-height: 100%;
  71. }
  72. @footer-height: 100px;
  73. @restart-indicator-color: #FDB82F;
  74. #main {
  75. overflow: visible;
  76. padding-bottom: @footer-height;
  77. min-width: 980px;
  78. }
  79. footer {
  80. position: relative;
  81. border-top: 1px solid #e5e5e5;
  82. padding: 30px 0;
  83. background-color: #fff;
  84. color: #666666;
  85. margin-top: -1 * @footer-height - 1;
  86. height: @footer-height - 60px;
  87. }
  88. #content {
  89. padding: 15px 0;
  90. }
  91. @top-nav-bg-color-from: #555555;
  92. @top-nav-bg-color-to: #333333;
  93. @top-nav-brand-color: #ffffff;
  94. @top-nav-ops-count-color: #ffffff;
  95. @top-nav-ops-count-bg-color: #c3c3c3;
  96. @top-nav-menu-active-text-color: #333333;
  97. @top-nav-menu-active-bg-color: #ffffff;
  98. @top-nav-menu-text-color: #c3c3c3;
  99. @top-nav-menu-text-hover-color: #ffffff;
  100. @top-nav-menu-dropdown-border-color: #c3c3c3;
  101. @top-nav-menu-dropdown-bg-color: #ffffff;
  102. @top-nav-menu-dropdown-text-color: #333333;
  103. #top-nav {
  104. .navbar.navbar-static-top {
  105. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  106. -moz-box-shadow: 0 1 5px #888;
  107. -webkit-box-shadow: 0 1px 5px #888;
  108. box-shadow: 0 1px 5px #888;
  109. .navbar-inner {
  110. background-image: -moz-linear-gradient(top, @top-nav-bg-color-from, @top-nav-bg-color-to);
  111. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@top-nav-bg-color-from), to(@top-nav-bg-color-to));
  112. background-image: -webkit-linear-gradient(top, @top-nav-bg-color-from, @top-nav-bg-color-to);
  113. background-image: -o-linear-gradient(top, @top-nav-bg-color-from, @top-nav-bg-color-to);
  114. background-image: linear-gradient(to bottom, @top-nav-bg-color-from, @top-nav-bg-color-to);
  115. -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  116. -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  117. box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  118. max-height: 40px;
  119. }
  120. .logo {
  121. float: left;
  122. padding-top: 2px;
  123. img {
  124. height: 32px;
  125. }
  126. }
  127. .brand {
  128. color: @top-nav-brand-color;
  129. font-size: 16px;
  130. font-weight: normal;
  131. line-height: 32px;
  132. margin-left: 0;
  133. padding: 2px 5px 0 10px;
  134. text-shadow: 0 1px 0 #555555;
  135. }
  136. .brand.cluster-name {
  137. margin-left: 10px;
  138. .operations-count {
  139. background-color: #006DCC;
  140. -webkit-animation-name: greenPulse;
  141. -webkit-animation-duration: 1s;
  142. -webkit-animation-iteration-count: infinite;
  143. -moz-animation-name: greenPulse;
  144. -moz-animation-duration: 1s;
  145. -moz-animation-iteration-count: infinite;
  146. animation-name: greenPulse;
  147. animation-duration: 1s;
  148. animation-iteration-count: infinite;
  149. //margin: 2px;
  150. }
  151. .label {
  152. padding: 3px 5px 3px;
  153. color: @top-nav-ops-count-color;
  154. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  155. background-color: @top-nav-ops-count-bg-color;
  156. }
  157. .icon-caret-left {
  158. color: @top-nav-ops-count-bg-color;
  159. margin-right: -1px;
  160. text-shadow: none;
  161. }
  162. .ops-count {
  163. margin-right: -1px;
  164. color: #006DCC;
  165. text-shadow: none;
  166. -webkit-animation-name: greenPulseInner;
  167. -webkit-animation-duration: 1s;
  168. -webkit-animation-iteration-count: infinite;
  169. -moz-animation-name: greenPulseInner;
  170. -moz-animation-duration: 1s;
  171. -moz-animation-iteration-count: infinite;
  172. animation-name: greenPulseInner;
  173. animation-duration: 1s;
  174. animation-iteration-count: infinite;
  175. }
  176. }
  177. .top-nav-menu.nav {
  178. display: block;
  179. float: right;
  180. padding-left: 20px;
  181. overflow: visible;
  182. li > a {
  183. text-shadow: none;
  184. color: @top-nav-menu-text-color;
  185. text-align: center;
  186. white-space: nowrap;
  187. }
  188. .active > a, .active > a:hover, .active > a:focus {
  189. color: @top-nav-menu-active-text-color;
  190. background-color: @top-nav-menu-active-bg-color;
  191. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  192. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  193. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  194. }
  195. li > a:focus, li > a:hover {
  196. color: @top-nav-menu-text-hover-color;
  197. text-decoration: none;
  198. background-color: transparent;
  199. }
  200. .alerts-count {
  201. margin: 1px;
  202. }
  203. .icon-th {
  204. font-size: 1.3em;
  205. }
  206. //top-nav bar dropdown menu on hover
  207. li.top-nav-dropdown {
  208. position: relative;
  209. }
  210. .top-nav-dropdown:hover .top-nav-dropdown-menu {
  211. display: block;
  212. }
  213. .top-nav-dropdown-menu {
  214. display: none;
  215. position: absolute;
  216. top: 95%;
  217. left: 0;
  218. z-index: 1000;
  219. float: left;
  220. min-width: 160px;
  221. padding: 5px 0;
  222. margin: 2px 0 0;
  223. list-style: none;
  224. background-color: @top-nav-menu-dropdown-bg-color;
  225. border: 3px solid @top-nav-menu-dropdown-border-color;
  226. -webkit-border-radius: 6px;
  227. -moz-border-radius: 6px;
  228. border-radius: 6px;
  229. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  230. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  231. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  232. -webkit-background-clip: padding-box;
  233. -moz-background-clip: padding;
  234. background-clip: padding-box;
  235. .health-status-LIVE, .health-status-STARTING {
  236. color: @health-status-green;
  237. }
  238. .health-status-DEAD-RED, .health-status-STOPPING {
  239. color: @health-status-red;
  240. }
  241. .health-status-DEAD-YELLOW {
  242. color: @health-status-yellow;
  243. }
  244. .icon-refresh {
  245. color: #fdb82f;
  246. margin-left: 4px;
  247. }
  248. .label {
  249. padding: 0 0 0 3px;
  250. }
  251. .operations-count {
  252. background: #953B39;
  253. }
  254. }
  255. .top-nav-dropdown-menu > li{
  256. position: relative;
  257. }
  258. .top-nav-dropdown-menu > li.active > a{
  259. background-color: @top-nav-menu-dropdown-border-color;
  260. }
  261. .top-nav-dropdown-menu > li > a {
  262. text-decoration: none;
  263. text-align: left;
  264. padding: 5px;
  265. display: block;
  266. padding: 3px 20px;
  267. clear: both;
  268. font-weight: normal;
  269. line-height: 20px;
  270. color: @top-nav-menu-dropdown-text-color;
  271. white-space: nowrap;
  272. }
  273. .top-nav-dropdown-menu > li.active > a{
  274. background-color: #e5e5e5;
  275. }
  276. .top-nav-dropdown-menu > li > a:hover {
  277. color: #ffffff;
  278. background-color: #666666;
  279. background-image: linear-gradient(to bottom, #666666, #555555);
  280. background-repeat: repeat-x;
  281. }
  282. }
  283. }
  284. .navbar .nav {
  285. float: none;
  286. overflow: hidden;
  287. }
  288. .navbar-inner {
  289. min-height: 40px;
  290. border: none;
  291. }
  292. .top-nav-user {
  293. float: right;
  294. }
  295. .navbar .nav .top-nav-user .active > a,
  296. .navbar .nav .top-nav-user .active > a:hover {
  297. color: #FFFFFF;
  298. text-decoration: none;
  299. }
  300. .navbar .nav .top-nav-user > li > a {
  301. border-radius: 8px;
  302. -webkit-border-radius: 8px;
  303. -moz-border-radius: 8px;
  304. font-size: 13px;
  305. font-weight: bold;
  306. line-height: 19px;
  307. margin: 1px 10px 2px 0;
  308. padding: 7px 14px;
  309. text-decoration: none;
  310. text-shadow: none;
  311. }
  312. .navbar .nav .top-nav-user > li > a:hover {
  313. background-color: transparent;
  314. color: #999999;
  315. text-decoration: none;
  316. }
  317. .navbar .nav .top-nav-user > li.right {
  318. float: right;
  319. }
  320. }
  321. #version-mismatch-title {
  322. font-size: 18px;
  323. font-weight: bold;
  324. margin: 10px 0px 10px 0px;
  325. }
  326. #main-nav {
  327. li {
  328. font-size: 15px;
  329. border-left: 1px solid #fefefe;
  330. border-right: 1px solid #f0f0f0;
  331. text-align: center;
  332. }
  333. li.span2 {
  334. padding: 0;
  335. margin: 0;
  336. width: 140px;
  337. }
  338. li:first-child {
  339. border-left: none;
  340. a {
  341. border-radius: 4px 0 0 4px;
  342. }
  343. }
  344. .navbar-inner {
  345. padding-left: 0;
  346. }
  347. margin-bottom: 15px;
  348. }
  349. .pre-scrollable {
  350. overflow-y: auto;
  351. }
  352. @green: #69BE28;
  353. @blue: #0572ff;
  354. h1 {
  355. color: @green;
  356. }
  357. .login.well.span4 {
  358. margin: 20px auto;
  359. padding: 25px;
  360. float: none;
  361. }
  362. .login {
  363. h2 {
  364. margin-top: 0;
  365. margin-bottom: 20px;
  366. }
  367. .btn {
  368. margin-top: 15px;
  369. }
  370. }
  371. .hide {
  372. visibility: hidden;
  373. }
  374. .show {
  375. visibility: visible;
  376. }
  377. /************************************************************************
  378. * Health status(service/host/host component health)icon colors
  379. ***********************************************************************/
  380. @health-status-red: red;
  381. @health-status-green: #5AB400;
  382. @health-status-yellow: #FFD13D;
  383. @health-status-orange: #FF8E00;
  384. /************************************************************************
  385. * Health status(service/host/host component health)icon colors ends
  386. ***********************************************************************/
  387. /***************
  388. * Ambari wide icon colors
  389. ***************/
  390. .icon-ok {
  391. color: #5AB400;
  392. }
  393. .icon-warning-sign {
  394. color: #FDB82F;
  395. }
  396. .icon-empty {
  397. height: 21px;
  398. display: inline-block;
  399. width: 8px;
  400. }
  401. .icon-caret-right {
  402. min-width: 8px;
  403. padding-top: 2px;
  404. }
  405. .icon-caret-left {
  406. min-width: 8px;
  407. padding-top: 2px;
  408. }
  409. .icon-remove {
  410. color: #FF4B4B;
  411. }
  412. .icon-remove-sign {
  413. color: #FF4B4B;
  414. }
  415. .icon-question-sign {
  416. color: #999;
  417. }
  418. .icon-exclamation-sign {
  419. color:#B94A48;
  420. }
  421. .tooltip {
  422. z-index: 10000;
  423. }
  424. .tooltip-inner {
  425. text-align: left;
  426. }
  427. .popover {
  428. z-index: 1050;
  429. min-width: 200px;
  430. max-width: 350px;
  431. width: auto;
  432. .popover-inner {
  433. word-wrap: break-word;
  434. }
  435. }
  436. .arrow-right {
  437. cursor: pointer;
  438. display: inline-block;
  439. margin: 0 0 20px 70px;
  440. border-top: 70px solid transparent;
  441. border-bottom: 70px solid transparent;
  442. border-left: 20px solid transparent;
  443. }
  444. .arrow-left {
  445. cursor: pointer;
  446. display: inline-block;
  447. margin: 0 -10px 20px 3px;
  448. border-top: 70px solid transparent;
  449. border-bottom: 70px solid transparent;
  450. border-right: 20px solid transparent;
  451. }
  452. .visibleArrow {
  453. border-right-color: #dedede;
  454. border-left-color: #dedede;
  455. }
  456. .text-tooltip {
  457. border-bottom: 1px silver dotted;
  458. cursor: pointer;
  459. }
  460. .wizard {
  461. h2 {
  462. margin-top: 0;
  463. }
  464. .btn.btn-success {
  465. /* float: right; */
  466. }
  467. .btn-extra-info{
  468. padding-top: 6px;
  469. padding-right: 15px;
  470. }
  471. .btn-area {
  472. margin-top: 20px;
  473. }
  474. .wizard-content {
  475. padding: 25px;
  476. background-color: #fff;
  477. }
  478. .nav-header {
  479. font-size: 13px;
  480. padding-left: 0;
  481. }
  482. #installOptions {
  483. .sshKey-file-view {
  484. width: 486px;
  485. height: 200px;
  486. overflow-y: auto;
  487. border: 1px solid #ccc;
  488. margin-top: 5px;
  489. padding: 8px;
  490. font-family: Consolas, "Liberation Mono", Courier, monospace;
  491. }
  492. .sshKey-file-view.disabled {
  493. background-color: #eee;
  494. }
  495. .manual-install {
  496. margin-top: 10px;
  497. width: 504px;
  498. height: auto;
  499. }
  500. .ssh-user {
  501. margin-right: 10px;
  502. padding-top: 5px;
  503. }
  504. #targetHosts {
  505. .target-hosts-input {
  506. padding-left: 18px;
  507. }
  508. }
  509. .span6 {
  510. min-width: 504px;
  511. }
  512. #hostConnectivity {
  513. margin-top: 20px;
  514. .control-group {
  515. margin-bottom: 0;
  516. }
  517. }
  518. .advancedOptions {
  519. margin-top: 20px;
  520. margin-bottom: 30px;
  521. label {
  522. margin-bottom: 10px;
  523. }
  524. label.disabled {
  525. color: #ccc;
  526. }
  527. }
  528. .java-home {
  529. margin-bottom: 10px
  530. }
  531. .ssh-key-input {
  532. padding-left: 18px;
  533. }
  534. .ssh-key-input-indentation {
  535. margin-bottom: 5px;
  536. }
  537. #sshKey {
  538. color: #000000;
  539. font-family: "Courier New","courier";
  540. font-size: 0.9em;
  541. }
  542. input[type="radio"]:focus {
  543. outline: none;
  544. }
  545. }
  546. #confirm-hosts {
  547. table {
  548. margin-bottom: 0;
  549. th {
  550. input[type="checkbox"] {
  551. //fixes height discrepencies in IE
  552. margin-bottom: -1px;
  553. margin-top: -1px;
  554. }
  555. }
  556. }
  557. .box-header {
  558. padding: 0px 4px 0px 10px;
  559. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e5e5e5));
  560. background: -ms-linear-gradient(top, #ffffff, #e5e5e5);
  561. background: -moz-linear-gradient(center top, #ffffff 0%, #e5e5e5 100%);
  562. .btn-primary {
  563. margin-top: 3px;
  564. }
  565. }
  566. #host-filter {
  567. margin-top: 1px;
  568. ul {
  569. margin: 3px;
  570. font-size: 12px;
  571. li.filter-status.active a {
  572. text-decoration: none;
  573. color: #FFFFFF;
  574. }
  575. li.filter-status.active,
  576. li.filter-status.active:hover {
  577. background-color: #666666;
  578. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  579. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  580. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  581. -webkit-border-radius: 5px;
  582. -moz-border-radius: 5px;
  583. border-radius: 5px;
  584. }
  585. li.filter-status:hover {
  586. background-color: #d8d8d8;
  587. -webkit-border-radius: 5px;
  588. -moz-border-radius: 5px;
  589. border-radius: 5px;
  590. }
  591. li.divider {
  592. color: #666666;
  593. padding: 4px 2px;
  594. }
  595. li {
  596. list-style: none;
  597. display: block;
  598. float: left;
  599. padding: 4px 4px;
  600. a {
  601. text-decoration: underline;
  602. }
  603. }
  604. li.first {
  605. font-weight: bold;
  606. }
  607. }
  608. }
  609. .progress {
  610. margin-bottom: 0;
  611. }
  612. }
  613. #step4, #step5, #step6 {
  614. a.selected {
  615. color: #333;
  616. cursor: default;
  617. text-decoration: none !important;
  618. }
  619. a.deselected {
  620. }
  621. i.icon-asterisks {
  622. color: #FF4B4B;
  623. }
  624. }
  625. #step6 {
  626. .pre-scrollable {
  627. max-height: 440px;
  628. position: relative;
  629. }
  630. .hidden-scroll {
  631. overflow-y: hidden;
  632. }
  633. .spinner-overlay {
  634. position: absolute;
  635. width: 100%;
  636. height: 100%;
  637. background-color: #808080;
  638. opacity: 0.2;
  639. }
  640. .spinner {
  641. position: absolute;
  642. margin-top: 30%;
  643. margin-left: 50%;
  644. }
  645. }
  646. #deploy {
  647. .pre-scrollable {
  648. max-height: 750px;
  649. }
  650. #overallProgress {
  651. }
  652. .box-header {
  653. padding: 0px 4px 0px 10px;
  654. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e5e5e5));
  655. background: -ms-linear-gradient(top, #ffffff, #e5e5e5);
  656. background: -moz-linear-gradient(center top, #ffffff 0%, #e5e5e5 100%);
  657. .btn-primary {
  658. margin-top: 3px;
  659. }
  660. }
  661. table {
  662. margin-bottom: 0px;
  663. }
  664. #host-filter {
  665. margin-top: 1px;
  666. ul {
  667. margin: 3px;
  668. font-size: 12px;
  669. li.filter-status.active a {
  670. text-decoration: none;
  671. color: #FFFFFF;
  672. }
  673. li.filter-status.active,
  674. li.filter-status.active:hover {
  675. background-color: #666666;
  676. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  677. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  678. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  679. -webkit-border-radius: 5px;
  680. -moz-border-radius: 5px;
  681. border-radius: 5px;
  682. }
  683. li.filter-status:hover {
  684. background-color: #d8d8d8;
  685. -webkit-border-radius: 5px;
  686. -moz-border-radius: 5px;
  687. border-radius: 5px;
  688. }
  689. li.divider {
  690. color: #666666;
  691. padding: 4px 2px;
  692. }
  693. li {
  694. list-style: none;
  695. display: block;
  696. float: left;
  697. padding: 4px 4px;
  698. a {
  699. text-decoration: underline;
  700. }
  701. }
  702. li.first {
  703. font-weight: bold;
  704. }
  705. }
  706. }
  707. #deploy-status-by-host {
  708. margin-bottom: 0;
  709. th.host {
  710. width: 30%;
  711. }
  712. th.status {
  713. width: 35%;
  714. }
  715. th.messgage {
  716. width: 35%;
  717. }
  718. .progress-bar {
  719. width: 80%;
  720. .progress {
  721. margin-bottom: 0;
  722. }
  723. }
  724. .progress-percentage {
  725. margin-left: 5px;
  726. width: 20% - 10px;
  727. }
  728. }
  729. }
  730. #step14 {
  731. .item {
  732. line-height: 30px;
  733. i {
  734. font-size: 20px;
  735. }
  736. }
  737. .row {
  738. margin-left: 0;
  739. }
  740. }
  741. #ha-progress-page {
  742. .item {
  743. line-height: 40px;
  744. width:100%;
  745. float:left;
  746. i {
  747. font-size: 20px;
  748. }
  749. .not-active-link{
  750. color: #999;
  751. a{
  752. text-decoration: none;
  753. pointer-events: none;
  754. color: #999;
  755. cursor: default;
  756. }
  757. }
  758. .active-link{
  759. a{
  760. pointer-events: auto;
  761. color: #0088cc;
  762. cursor: pointer;
  763. }
  764. }
  765. .active-text{
  766. a{
  767. pointer-events: none;
  768. text-decoration: none;
  769. color: #0088cc;
  770. cursor: auto;
  771. }
  772. }
  773. .retry {
  774. cursor: pointer;
  775. margin-left: 15px;
  776. i {
  777. font-size: 14px;
  778. }
  779. }
  780. .pull-left{
  781. float: left;
  782. }
  783. .progress-bar{
  784. margin-top: 10px;
  785. .progress{
  786. margin-bottom: 0px;
  787. }
  788. }
  789. }
  790. .row {
  791. margin-left: 0;
  792. }
  793. }
  794. #ha-step1, #ha-step4, #ha-step8 {
  795. .alert.alert-warn {
  796. margin-top: 10px;
  797. margin-bottom: 10px;
  798. }
  799. .nameserviceid-input {
  800. display: inline-block;
  801. }
  802. }
  803. #ha-step4 li, #ha-step6 li, #ha-step8 li {
  804. margin-top: 8px;
  805. }
  806. #ha-step3-review-table {
  807. td {
  808. text-align: left;
  809. vertical-align: top;
  810. padding: 5px;
  811. ul {
  812. margin: 0px;
  813. }
  814. li {
  815. list-style-type: none;
  816. }
  817. }
  818. .to-be-disabled-red {
  819. color: #ff0000;
  820. }
  821. .to-be-installed-green {
  822. color: #008000;
  823. }
  824. }
  825. }
  826. #stack-upgrade {
  827. .content {
  828. padding: 25px;
  829. background-color: #fff;
  830. }
  831. .box {
  832. padding: 5px;
  833. }
  834. table th {
  835. vertical-align: middle;
  836. }
  837. .btn-area {
  838. margin-top: 30px;
  839. }
  840. .service {
  841. .info {
  842. line-height: 30px;
  843. }
  844. .row {
  845. margin-left: 0;
  846. }
  847. }
  848. }
  849. #host-log {
  850. .stderr, .stdout {
  851. background-color: #f0f0f0;
  852. /* max-height: 300px;
  853. overflow-y: auto; */
  854. border-radius: 4px;
  855. padding: 8px;
  856. }
  857. }
  858. .spinner {
  859. width: 36px;
  860. height: 36px;
  861. background: url("/img/spinner.gif");
  862. margin: 0 auto;
  863. }
  864. #services-menu {
  865. margin-top: 20px;
  866. padding: 8px 0;
  867. }
  868. #serviceConfig {
  869. margin-top: 20px;
  870. .alert{
  871. .icon-refresh{
  872. margin-left:10px;
  873. }
  874. }
  875. .collapsable {
  876. cursor: pointer;
  877. }
  878. .directories {
  879. min-width: 280px;
  880. }
  881. .accordion-heading {
  882. background-color: #f0f0f0;
  883. }
  884. .accordion-group {
  885. margin-bottom: 20px;
  886. .control-label {
  887. text-align: left;
  888. word-wrap: break-word;
  889. }
  890. .service-config-section{
  891. .overridden-property{
  892. background-color: rgba(211, 237, 247, 0.39);
  893. padding: 5px;
  894. margin-left: -5px;
  895. }
  896. }
  897. .entry-row {
  898. margin: 10px 0;
  899. .control-label-span{
  900. width: auto !important;
  901. }
  902. .icon-lock {
  903. color: #008000;
  904. }
  905. .action{
  906. margin-left: 3px;
  907. margin-right: 1px;
  908. font-size: 13px;
  909. white-space: nowrap;
  910. }
  911. .control-group {
  912. margin: 0px;
  913. .overrideField {
  914. display: block;
  915. margin-top: 5px;
  916. margin-bottom: 5px;
  917. }
  918. .overridden-hosts-view {
  919. display: inline-block;
  920. }
  921. .error {
  922. }
  923. }
  924. }
  925. form {
  926. margin-bottom: 0;
  927. }
  928. }
  929. .badge {
  930. margin-left: 4px;
  931. }
  932. .slave-component-group-menu {
  933. float: left;
  934. .nav {
  935. margin-bottom: 10px;
  936. }
  937. .nav li {
  938. position: relative;
  939. a {
  940. padding-right: 24px;
  941. }
  942. .icon-remove {
  943. border: 1px solid white;
  944. position: absolute;
  945. right: 7px;
  946. top: 10px;
  947. z-index: 2;
  948. cursor: default;
  949. color: #555555;
  950. }
  951. .icon-remove:hover {
  952. border: 1px solid grey;
  953. }
  954. }
  955. }
  956. .remove-group-error {
  957. display: none;
  958. }
  959. .add-slave-component-group {
  960. margin-bottom: 10px;
  961. }
  962. .master-host, .master-hosts, .slave-hosts {
  963. padding-top: 5px;
  964. line-height: 20px;
  965. }
  966. #attention {
  967. margin: 20px 0;
  968. }
  969. .retyped-password {
  970. margin-left: 14px;
  971. }
  972. #slave-hosts-popup {
  973. ul {
  974. list-style-type: none;
  975. }
  976. }
  977. .common-config-category {
  978. .action {
  979. cursor: pointer;
  980. .icon-plus-sign {
  981. color: #5AB400;
  982. margin-right: 2px;
  983. }
  984. .icon-minus-sign {
  985. color: #FF4B4B;
  986. margin-right: 2px;
  987. }
  988. .icon-undo {
  989. color: rgb(243, 178, 11);
  990. margin-right: 2px;
  991. }
  992. }
  993. }
  994. .capacity-scheduler {
  995. .header {
  996. margin-bottom: 10px;
  997. .span1 {
  998. padding-top: 10px;
  999. font-weight: bold;
  1000. }
  1001. }
  1002. form.form-horizontal {
  1003. margin-left: 20px;
  1004. .control-label-span {
  1005. word-wrap: break-word;
  1006. }
  1007. }
  1008. table tr, svg {
  1009. cursor: pointer;
  1010. }
  1011. .marker {
  1012. margin: 0 5px;
  1013. display: inline-block;
  1014. width: 12px;
  1015. height: 12px;
  1016. }
  1017. #section_label{
  1018. display: none;
  1019. border: 1px solid black;
  1020. padding: 2px 5px;
  1021. position: absolute;
  1022. border-radius: 3px;
  1023. background-color: #f9f9f9;
  1024. }
  1025. .frame{
  1026. position:relative;
  1027. width: 200px;
  1028. height: 200px;
  1029. }
  1030. }
  1031. .nav-tabs > li > a {
  1032. padding-left: 8px;
  1033. padding-right: 8px;
  1034. &.new {
  1035. font-weight: 700;
  1036. }
  1037. }
  1038. .with-unit{
  1039. input{
  1040. width:auto;
  1041. }
  1042. .add-on{
  1043. overflow: hidden;
  1044. max-width:250px;
  1045. }
  1046. }
  1047. .dropdown-menu > li > a:hover {
  1048. text-shadow: none;
  1049. }
  1050. }
  1051. .running-host-components-table{
  1052. width: 100%;
  1053. margin-top: 10px;
  1054. text-align: left;
  1055. tbody {
  1056. vertical-align: top;
  1057. }
  1058. }
  1059. a:focus {
  1060. outline: none;
  1061. }
  1062. @status-live-marker: url("/img/health-status-live.png");
  1063. @status-dead-red-marker: url("/img/health-status-dead.png");
  1064. @status-dead-orange-marker: url("/img/health-status-dead-orange.png");
  1065. @status-dead-yellow-marker: url("/img/health-status-dead-yellow.png");
  1066. @status-ok-marker: url("/img/status-ok.jpg");
  1067. @status-corrupt-marker: url("/img/status-corrupt.jpg");
  1068. @arrow-right: url("/img/arrow-right.png");
  1069. /*Rack images*/
  1070. @rack-status-live: url("/img/rack-status-live.png");
  1071. @rack-status-critical: url("/img/rack-status-critical.png");
  1072. @rack-status-dead: url("/img/rack-status-dead.png");
  1073. @rack-state-toggler: url("/img/rack-state-toggler.png");
  1074. @rack-state-plus: url("/img/rack-state-plus.png");
  1075. @rack-state-minus: url("/img/rack-state-minus.png");
  1076. /*****start styles for boxes*****/
  1077. .box {
  1078. border: 1px solid #D4D4D4;
  1079. border-radius: 4px;
  1080. margin-bottom: 20px;
  1081. .box-header {
  1082. border-bottom: 1px solid #D4D4D4;
  1083. border-radius: 4px 4px 0 0;
  1084. }
  1085. .box-header,
  1086. .box-footer {
  1087. padding: 4px 4px 4px 10px;
  1088. /*background: #dedede;*/
  1089. .gradient(#dedede, #ffffff, #dedede)
  1090. }
  1091. .box-header:after,
  1092. .box-footer:after {
  1093. content: "";
  1094. display: table;
  1095. clear: both;
  1096. }
  1097. .box-header {
  1098. .btn-group {
  1099. float: right;
  1100. }
  1101. h4 {
  1102. float: left;
  1103. margin: 5px;
  1104. font-size: 15px;
  1105. color: #777;
  1106. }
  1107. }
  1108. .box-footer {
  1109. hr {
  1110. margin: 0px;
  1111. }
  1112. }
  1113. }
  1114. /*****end styles for boxes*****/
  1115. /*90% width modal window start*/
  1116. .full-width-modal {
  1117. .modal {
  1118. .modal-body {
  1119. .add-cluster-1{
  1120. width: 100%;
  1121. height : 500px;
  1122. margin: 0 auto;
  1123. .each-row{
  1124. margin-top: 10px;
  1125. }
  1126. .add-cluster-1-1{
  1127. width: 100%;
  1128. height : 100%;
  1129. float: left;
  1130. div.error{
  1131. color: #b94a48;
  1132. .help-inline{
  1133. color: #b94a48;
  1134. }
  1135. }
  1136. div.error input{
  1137. border-color: #b94a48;
  1138. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1139. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1140. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1141. }
  1142. }
  1143. .add-cluster-1-3{
  1144. width: 45%;
  1145. height : 100%;
  1146. float: left;
  1147. }
  1148. .add-cluster-1-2{
  1149. width: 10%;
  1150. height : 100%;
  1151. float: left;
  1152. .add-cluster-1-2-1{
  1153. width: 100%;
  1154. height : 40%;
  1155. }
  1156. .add-cluster-1-2-2{
  1157. width: 100%;
  1158. height : 10%;
  1159. }
  1160. .add-cluster-1-2-3{
  1161. width: 100%;
  1162. height : 50%;
  1163. }
  1164. .middle-line{
  1165. width : 2%;
  1166. margin : 0 auto;
  1167. height : 100%;
  1168. background-color: #000000;
  1169. }
  1170. .add-cluster-center-most-div{
  1171. height : 30%;
  1172. text-align: center;
  1173. position: relative;
  1174. top: 30%;
  1175. }
  1176. }
  1177. }
  1178. }
  1179. }
  1180. .clear {
  1181. clear: both;
  1182. }
  1183. > div > .dataTable {
  1184. border: 1px solid silver;
  1185. th {
  1186. border-top: none;
  1187. }
  1188. }
  1189. .content {
  1190. padding: 0;
  1191. }
  1192. //fix stripped in inner table
  1193. .table-striped tbody tr:nth-child(odd)
  1194. td .table-striped tbody
  1195. tr:nth-child(odd) td,
  1196. tr:nth-child(even) th {
  1197. background-color: none;
  1198. }
  1199. }
  1200. /*90% width modal window end*/
  1201. /*700px width modal window start*/
  1202. .modal-690px-width {
  1203. .modal {
  1204. width: 690px;
  1205. margin: 0 0 0 -345px;
  1206. max-height: 544px;
  1207. top: 5%;
  1208. }
  1209. .modal-body {
  1210. max-height: 403px;
  1211. }
  1212. }
  1213. /*700px width modal window end*/
  1214. /*60% width modal window start*/
  1215. .sixty-percent-width-modal.hideCloseLink{
  1216. .modal-header{
  1217. .close{
  1218. display:none
  1219. }
  1220. }
  1221. }
  1222. .sixty-percent-width-modal-edit-widget {
  1223. .modal {
  1224. width: 60%;
  1225. margin: 0 0 0 -30%;
  1226. max-height: 544px;
  1227. top: 5%;
  1228. }
  1229. .modal-header{
  1230. min-width: 650px;
  1231. }
  1232. .modal-footer{
  1233. min-width: 650px;
  1234. }
  1235. .modal-body {
  1236. max-height: 403px;
  1237. min-width: 650px;
  1238. #slider-range {
  1239. margin-top: 40px;
  1240. margin-bottom: 20px;
  1241. margin-left: 38px;
  1242. max-width: 630px;
  1243. max-height: 15px;
  1244. }
  1245. #min-height-limit .span9{
  1246. min-height: 15px;
  1247. }
  1248. #min-height-limit .progress{
  1249. margin-left: 40px;
  1250. .bar-success {
  1251. background-image: linear-gradient(to bottom, #95b000, #95a800);
  1252. background-repeat: repeat-x;
  1253. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#95b000', endColorstr='#95a800', GradientType=0);
  1254. }
  1255. .bar-warning {
  1256. background-image: linear-gradient(to bottom, #FF9E00, #FF8E00);
  1257. background-repeat: repeat-x;
  1258. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#FF9E00', endColorstr='#FF8E00', GradientType=0);
  1259. }
  1260. .bar-danger {
  1261. background-image: linear-gradient(to bottom, #B81000, #B80000);
  1262. background-repeat: repeat-x;
  1263. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#B81000', endColorstr='#B80000', GradientType=0);
  1264. }
  1265. }
  1266. .value-on-slider{
  1267. max-height: 100px;
  1268. margin-bottom: 40px;
  1269. margin-top: 10px;
  1270. text-align: center;
  1271. }
  1272. #slider-value1{
  1273. max-width: 65px;
  1274. }
  1275. #slider-value2{
  1276. max-width: 250px;
  1277. }
  1278. #slider-value3{
  1279. max-width: 250px;
  1280. }
  1281. #slider-value4{
  1282. max-width: 65px;
  1283. }
  1284. .slider-error{
  1285. color: #b94a48;
  1286. .help-inline{
  1287. color: #b94a48;
  1288. }
  1289. }
  1290. .slider-error input{
  1291. border-color: #b94a48;
  1292. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1293. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1294. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1295. }
  1296. }
  1297. }
  1298. .sixty-percent-width-modal {
  1299. .modal {
  1300. width: 60%;
  1301. margin: 0 0 0 -30%;
  1302. max-height: 563px;
  1303. min-width: 590px;
  1304. top: 5%;
  1305. }
  1306. .long-popup-list {
  1307. height: 280px;
  1308. overflow: auto;
  1309. width: 100%;
  1310. }
  1311. .modal-footer {
  1312. #footer-checkbox {
  1313. text-align: left;
  1314. padding-top: 3px;
  1315. margin-left: 22px;
  1316. float: left;
  1317. .checkbox {
  1318. margin: 0px;
  1319. }
  1320. }
  1321. }
  1322. .modal-body {
  1323. max-height: 403px;
  1324. .form-horizontal{
  1325. .add-cluster-1{
  1326. width: 100%;
  1327. height : auto;
  1328. min-height : 350px;
  1329. margin: 0 auto;
  1330. .each-row{
  1331. margin-top: 10px;
  1332. }
  1333. .add-cluster-1-1{
  1334. width: 100%;
  1335. height : 100%;
  1336. float: left;
  1337. div.error{
  1338. color: #b94a48;
  1339. .help-inline{
  1340. color: #b94a48;
  1341. }
  1342. }
  1343. div.error input{
  1344. border-color: #b94a48;
  1345. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1346. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1347. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1348. }
  1349. }
  1350. .add-cluster-1-3{
  1351. width: 45%;
  1352. height : 100%;
  1353. float: right;
  1354. }
  1355. .add-cluster-1-2{
  1356. width: 10%;
  1357. height : 100%;
  1358. float: left;
  1359. .add-cluster-1-2-1{
  1360. width: 100%;
  1361. height : 40%;
  1362. }
  1363. .add-cluster-1-2-2{
  1364. width: 100%;
  1365. height : 10%;
  1366. }
  1367. .add-cluster-1-2-3{
  1368. width: 100%;
  1369. height : 50%;
  1370. }
  1371. .middle-line{
  1372. width : 2%;
  1373. margin : 0 auto;
  1374. height : 100%;
  1375. background-color: #000000;
  1376. }
  1377. .add-cluster-center-most-div{
  1378. height : 30%;
  1379. text-align: center;
  1380. position: relative;
  1381. top: 30%;
  1382. }
  1383. }
  1384. }
  1385. .add-cluster-2{
  1386. margin : 0 auto;
  1387. height : auto;
  1388. min-height : 350px;
  1389. table{
  1390. width : 60%;
  1391. margin : 0 20%;
  1392. .spacer{
  1393. height: 20px;
  1394. }
  1395. tr.error{
  1396. color: #b94a48;
  1397. .help-inline{
  1398. color: #b94a48;
  1399. }
  1400. input{
  1401. border-color: #b94a48;
  1402. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1403. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1404. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1405. }
  1406. }
  1407. td {
  1408. width : 50%;
  1409. a.btn-success{
  1410. margin-left: 30%;
  1411. }
  1412. }
  1413. }
  1414. }
  1415. .add-data-set{
  1416. width: 80%;
  1417. margin: 0 auto;
  1418. table{
  1419. width: 100%;
  1420. }
  1421. tr.error{
  1422. color: #b94a48;
  1423. .help-inline{
  1424. color: #b94a48;
  1425. }
  1426. }
  1427. div.error{
  1428. color: #b94a48;
  1429. .help-inline{
  1430. color: #b94a48;
  1431. }
  1432. }
  1433. div.error input{
  1434. border-color: #b94a48;
  1435. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1436. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1437. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1438. }
  1439. td.percent25 {
  1440. width: 25%;
  1441. }
  1442. td.spacer{
  1443. height: 10px;
  1444. }
  1445. td{
  1446. .btn-group{
  1447. display : inline;
  1448. span.caret{
  1449. float : right;
  1450. }
  1451. ul.dropdown-menu{
  1452. margin-top:15px;
  1453. }
  1454. }
  1455. .ember-view{
  1456. display : inline;
  1457. }
  1458. }
  1459. input.hyper-mini{
  1460. width: 20px;
  1461. }
  1462. .targetClusterDD{
  1463. min-width : 170px;
  1464. }
  1465. }
  1466. .each-row{
  1467. margin-top: 10px;
  1468. }
  1469. .each-row.control-label{
  1470. float:left;
  1471. clear:both;
  1472. }
  1473. .override-controls{
  1474. .icon-ok-sign {
  1475. color: #5AB400;
  1476. }
  1477. #filter-dropdown-div {
  1478. .dropdown-menu {
  1479. right: 0;
  1480. left: auto;
  1481. }
  1482. }
  1483. #component-dropdown-div {
  1484. vertical-align: top;
  1485. padding-left: 5px;
  1486. .dropdown-menu {
  1487. right: 0;
  1488. left: auto;
  1489. }
  1490. }
  1491. .input-append{
  1492. input{
  1493. -webkit-border-radius: 4px 0 0 4px;
  1494. -moz-border-radius: 4px 0 0 4px;
  1495. border-radius: 4px 0 0 4px;
  1496. }
  1497. .btn-group{
  1498. display: inline-block;
  1499. margin-left: -1px;
  1500. .btn{
  1501. -webkit-border-radius: 0 4px 4px 0;
  1502. -moz-border-radius: 0 4px 4px 0;
  1503. border-radius: 0 4px 4px 0;
  1504. }
  1505. }
  1506. }
  1507. .hosts-table-container{
  1508. width:100%;
  1509. height: 250px;
  1510. overflow: auto;
  1511. border: 1px solid #eee;
  1512. }
  1513. table{
  1514. th {
  1515. background-color: #d9edf7;
  1516. }
  1517. margin: 0 auto;
  1518. }
  1519. .message{
  1520. color: #777;
  1521. }
  1522. }
  1523. .control-label{
  1524. width:auto;
  1525. }
  1526. .overrideSelectBox {
  1527. width:100%;
  1528. }
  1529. }
  1530. }
  1531. .clear {
  1532. clear: both;
  1533. }
  1534. > div > .dataTable {
  1535. border: 1px solid silver;
  1536. th {
  1537. border-top: none;
  1538. }
  1539. }
  1540. .content {
  1541. padding: 0;
  1542. }
  1543. //fix stripped in inner table
  1544. .table-striped tbody tr:nth-child(odd)
  1545. td .table-striped tbody
  1546. tr:nth-child(odd) td,
  1547. tr:nth-child(even) th {
  1548. background-color: none;
  1549. }
  1550. }
  1551. /*60% width modal window end*/
  1552. /*****start styles for host component popup*****/
  1553. .host-progress-popup {
  1554. .modal-body, .modal-footer, .modal-header {
  1555. min-width: 600px;
  1556. }
  1557. }
  1558. .host-component-popup-wrap {
  1559. .task-top-wrap {
  1560. height: 20px;
  1561. .operation-name-top {
  1562. width: 33%;
  1563. padding-left: 20px;
  1564. float: left;
  1565. text-align: left;
  1566. }
  1567. }
  1568. #host-info, #service-info{
  1569. .span2{
  1570. width:20%;
  1571. float: left;
  1572. }
  1573. .host-progress-num{
  1574. float: left;
  1575. padding-left: 8px;
  1576. }
  1577. .host-name-icon-wrap{
  1578. float: left;
  1579. width: 50%;
  1580. white-space: nowrap;
  1581. }
  1582. }
  1583. #host-info, #service-info, #host-log {
  1584. .log-list-wrap {
  1585. padding: 10px 10px 10px 20px;
  1586. border-top: 1px solid #CCC;
  1587. border-bottom: 1px solid #CCC;
  1588. }
  1589. .task-list-line-cursor{
  1590. width: 100%;
  1591. min-height: 20px;
  1592. .progress-bar{
  1593. .progress{
  1594. margin-bottom: 0px;
  1595. }
  1596. }
  1597. .show-details {
  1598. float: right;
  1599. cursor: pointer;
  1600. font-size: 16px;
  1601. i {
  1602. color: #333;
  1603. }
  1604. }
  1605. .operation-name-icon-wrap {
  1606. float: left;
  1607. width: 35%;
  1608. }
  1609. .start-time-text {
  1610. margin-left: 5px;
  1611. width: 20%;
  1612. float: left;
  1613. }
  1614. .duration-text {
  1615. margin-left: 5px;
  1616. width: 10%;
  1617. float: left;
  1618. }
  1619. .time-summary {
  1620. padding-left: 0px;
  1621. color: #808080;
  1622. font-size: 12px;
  1623. }
  1624. }
  1625. .task-list-line-cursor:before,.task-list-line-cursor:after {
  1626. display: table;
  1627. line-height: 0;
  1628. content: "";
  1629. }
  1630. .task-list-line-cursor:after {
  1631. clear: both;
  1632. }
  1633. }
  1634. }
  1635. /*****end styles for host component popup*****/
  1636. .sort-wrapper {
  1637. .column-name {
  1638. cursor: pointer;
  1639. padding-right: 18px;
  1640. }
  1641. }
  1642. /*****start styles for install tasks logs*****/
  1643. .task-list-main-warp, .task-detail-info {
  1644. i {
  1645. font-size: 20px;
  1646. vertical-align: middle;
  1647. }
  1648. .pending, .queued {
  1649. color: #999999;
  1650. }
  1651. .in_progress {
  1652. color: #367FE6;
  1653. }
  1654. .completed {
  1655. color: #0EA31C;
  1656. }
  1657. .failed {
  1658. color: #DF5F5F;
  1659. }
  1660. .aborted {
  1661. color: #FF9C09;
  1662. }
  1663. .timedout {
  1664. color: #FF9C09;
  1665. }
  1666. }
  1667. .task-list-main-warp {
  1668. .task-list-line-cursor {
  1669. cursor: pointer;
  1670. }
  1671. .request-schedule-abort {
  1672. margin-top: 7px;
  1673. .btn {
  1674. margin-top: -5px;
  1675. }
  1676. }
  1677. .task-top-wrap {
  1678. width: 100%;
  1679. border-bottom: 1px solid #CCC;
  1680. text-align: center;
  1681. font-size: 15px;
  1682. padding: 0 0 10px 0;
  1683. height: 20px;
  1684. .task-detail-back-to-hosts {
  1685. float: left;
  1686. }
  1687. .select-wrap {
  1688. float: right;
  1689. margin-top: -8px;
  1690. select {
  1691. width: 140px;
  1692. }
  1693. }
  1694. .tasks-list-select{
  1695. //margin-top: -28px;
  1696. }
  1697. .task-name-top {
  1698. width: 23%;
  1699. padding-left: 20px;
  1700. }
  1701. .start-time-top {
  1702. width: 20%;
  1703. padding-left: 5px;
  1704. }
  1705. .duration-top {
  1706. width: 10%;
  1707. padding-left: 5px;
  1708. }
  1709. .task-name-top,.start-time-top,.duration-top {
  1710. float: left;
  1711. text-align: left;
  1712. }
  1713. }
  1714. #host-log {
  1715. .log-list-wrap {
  1716. padding: 10px 10px 10px 20px;
  1717. border-top: 1px solid #CCC;
  1718. border-bottom: 1px solid #CCC;
  1719. .show-details {
  1720. float: right;
  1721. cursor: pointer;
  1722. font-size: 16px;
  1723. i {
  1724. color: #333;
  1725. }
  1726. }
  1727. .task-list-line-cursor:before,.task-list-line-cursor:after {
  1728. display: table;
  1729. line-height: 0;
  1730. content: "";
  1731. }
  1732. .task-list-line-cursor:after {
  1733. clear: both;
  1734. }
  1735. .operation-name-icon-wrap {
  1736. float: left;
  1737. width: 35%;
  1738. }
  1739. .start-time-text {
  1740. margin-left: 5px;
  1741. width: 20%;
  1742. float: left;
  1743. }
  1744. .duration-text {
  1745. margin-left: 5px;
  1746. width: 10%;
  1747. float: left;
  1748. }
  1749. .time-summary {
  1750. padding-left: 0px;
  1751. color: #808080;
  1752. font-size: 12px;
  1753. }
  1754. }
  1755. }
  1756. }
  1757. .task-detail-info {
  1758. .task-detail-log-clipboard {
  1759. display: none;
  1760. resize: none;
  1761. overflow: hidden;
  1762. }
  1763. .task-top-wrap {
  1764. width: 100%;
  1765. border-bottom: 1px solid #CCC;
  1766. text-align: center;
  1767. font-size: 15px;
  1768. padding: 0 0 10px 0;
  1769. .task-detail-back {
  1770. float: left;
  1771. }
  1772. .task-detail-log-rolename {
  1773. position: relative;
  1774. left: 0;
  1775. top: 0;
  1776. }
  1777. .task-detail-status-ico {
  1778. content: "";
  1779. margin-top: -4px;
  1780. box-shadow: none;
  1781. margin-bottom: 0px;
  1782. font-size: 24px;
  1783. }
  1784. .task-detail-ico-wrap {
  1785. font-size: 14px;
  1786. float: right;
  1787. margin-top: -20px;
  1788. a {
  1789. cursor: pointer;
  1790. }
  1791. .task-detail-copy {
  1792. margin-right: 12px;
  1793. float: left;
  1794. }
  1795. .task-detail-open-dialog {
  1796. float: right;
  1797. }
  1798. }
  1799. }
  1800. }
  1801. /*****end styles for install tasks logs*****/
  1802. /*****start styles for dashboard page*****/
  1803. /*start services summary*/
  1804. .services {
  1805. margin-left: 0;
  1806. margin-top: 0;
  1807. position: relative;
  1808. .alert{
  1809. padding: 5px;
  1810. }
  1811. .tab-marker-position {
  1812. list-style: none;
  1813. min-height: 20px;
  1814. min-width: 20px;
  1815. margin-left: 6px;
  1816. float: none;
  1817. display: inline;
  1818. }
  1819. .health-status-LIVE, .health-status-STARTING {
  1820. .tab-marker-position;
  1821. color: @health-status-green;
  1822. }
  1823. .health-status-DEAD-RED, .health-status-STOPPING {
  1824. .tab-marker-position;
  1825. color: @health-status-red;
  1826. }
  1827. .health-status-DEAD-ORANGE {
  1828. .tab-marker-position;
  1829. color: @health-status-orange;
  1830. }
  1831. .health-status-DEAD-YELLOW {
  1832. .tab-marker-position;
  1833. color: @health-status-yellow;
  1834. }
  1835. dt {
  1836. text-align: left;
  1837. width: 120px;
  1838. }
  1839. dd {
  1840. margin-left: 145px;
  1841. }
  1842. .like_pointer {
  1843. cursor: pointer;
  1844. }
  1845. .service {
  1846. position: relative;
  1847. margin-top: 10px;
  1848. border-bottom: 1px solid #b8b8b8;
  1849. padding-left: 10px;
  1850. margin-right: 20px;
  1851. .name {
  1852. line-height: 21px;
  1853. margin-left: 0;
  1854. width: 145px;
  1855. a {
  1856. margin-left: 5px
  1857. }
  1858. }
  1859. .summary {
  1860. line-height: 21px;
  1861. }
  1862. .clearfix {
  1863. padding-bottom: 8px;
  1864. }
  1865. .service-body {
  1866. display: none;
  1867. position: relative;
  1868. }
  1869. table.table {
  1870. margin-top: 14px;
  1871. color: #666;
  1872. font-size: 13px; //width: 80%;
  1873. tr > td:first-child {
  1874. padding-right: 10px;
  1875. text-align: right !important;
  1876. }
  1877. th, td {
  1878. padding: 4px;
  1879. }
  1880. }
  1881. .dashboard-mini-chart > div {
  1882. width: 172px;
  1883. }
  1884. .dashboard-mini-chart {
  1885. right: 0;
  1886. float: right;
  1887. top: 7px;
  1888. position: absolute;
  1889. overflow: visible; // for quick links
  1890. text-align: center; //width: 180px;
  1891. height: 200px;
  1892. .dropdown-menu {
  1893. text-align: left;
  1894. }
  1895. .chart-container {
  1896. .chart-x-axis {
  1897. left: 0%;
  1898. width: 100%;
  1899. text-align: left;
  1900. }
  1901. }
  1902. .chartLabel {
  1903. font-size: 11px;
  1904. color: #7b7b7b;
  1905. }
  1906. .chart-legend {
  1907. left: -205px;
  1908. text-align: left;
  1909. top: 0;
  1910. width: 185px;
  1911. }
  1912. }
  1913. }
  1914. }
  1915. .services, #summary-info {
  1916. .tab-marker-position {
  1917. background-position: 0px 3px;
  1918. background-repeat: no-repeat;
  1919. list-style: none;
  1920. float: left;
  1921. height: 20px;
  1922. width: 20px;
  1923. margin-left: 0;
  1924. display: inline !important;
  1925. float: none !important;
  1926. }
  1927. .STARTING, .STARTED {
  1928. .tab-marker-position;
  1929. color: @health-status-green;
  1930. }
  1931. .STOPPING, .INSTALLED {
  1932. .tab-marker-position;
  1933. color: @health-status-red;
  1934. }
  1935. .UNKNOWN {
  1936. .tab-marker-position;
  1937. color: @health-status-yellow;
  1938. }
  1939. .summary-view-host{
  1940. float: right;
  1941. padding-right: 20px;
  1942. a {
  1943. text-decoration: none;
  1944. &:hover {
  1945. text-decoration: underline;
  1946. }
  1947. }
  1948. }
  1949. .service-summary-component-red-dead {
  1950. color: #ff0000;
  1951. display: inline;
  1952. }
  1953. .service-summary-component-green-live {
  1954. color: #228b22;
  1955. display: inline;
  1956. }
  1957. }
  1958. #summary-info {
  1959. border-top: none;
  1960. border-collapse: collapse;
  1961. color: #666;
  1962. font-size: 13px;
  1963. .icon-medkit {
  1964. color: black!important;
  1965. }
  1966. td.summary-label {
  1967. width: 180px;
  1968. text-align: right;
  1969. }
  1970. /*
  1971. td {
  1972. border-top: 1px solid #eee;
  1973. }
  1974. */
  1975. tr td:first-child {
  1976. text-align: right;
  1977. }
  1978. a {
  1979. text-decoration: underline;
  1980. &:hover {
  1981. text-decoration: none;
  1982. }
  1983. }
  1984. }
  1985. #security-stages {
  1986. tr {
  1987. height: 50px;
  1988. }
  1989. td {
  1990. width: 180px;
  1991. }
  1992. .progress-bar {
  1993. width: 50%;
  1994. .progress {
  1995. margin-bottom: 0;
  1996. }
  1997. }
  1998. .progress-percentage {
  1999. margin-left: 10px;
  2000. }
  2001. a.remove-link {
  2002. text-decoration:none;
  2003. pointer-events: none;
  2004. color:black;
  2005. cursor: default;
  2006. }
  2007. }
  2008. #enable_security {
  2009. .step3 {
  2010. overflow: auto;
  2011. max-height: 500px;
  2012. table td {
  2013. word-break: break-all;
  2014. }
  2015. }
  2016. }
  2017. .faintText {
  2018. color: #999;
  2019. }
  2020. .more-stats {
  2021. display: block;
  2022. width: 100%;
  2023. padding: 7px 0;
  2024. text-align: center;
  2025. color: #333333;
  2026. &:hover {
  2027. background-color: #eee;
  2028. color: #333;
  2029. text-decoration: none;
  2030. }
  2031. }
  2032. /*end services summary*/
  2033. /*start alerts summary*/
  2034. .alerts {
  2035. margin: 0px;
  2036. max-height: 500px;
  2037. overflow-y: auto;
  2038. li {
  2039. border-bottom: 1px solid #eee;
  2040. list-style: none;
  2041. padding: 5px 5px 5px 5px;
  2042. background-position: 14px 9px;
  2043. background-repeat: no-repeat;
  2044. .date-time {
  2045. float: right;
  2046. }
  2047. p {
  2048. margin-bottom: 2px;
  2049. }
  2050. .container-fluid {
  2051. padding-left: 10px;
  2052. padding-right: 10px;
  2053. }
  2054. .title {
  2055. font-weight: normal;
  2056. font-size: 13px;
  2057. }
  2058. .row-fluid [class*="span"] {
  2059. min-height: 0px;
  2060. }
  2061. .status-icon {
  2062. padding-top: 7px;
  2063. }
  2064. .date-time {
  2065. color: #999;
  2066. font-style: italic;
  2067. font-size: small;
  2068. text-align: right;
  2069. }
  2070. .message {
  2071. font-size: 12px;
  2072. color: #777;
  2073. }
  2074. .serviceLink {
  2075. padding-left: 7px;
  2076. }
  2077. }
  2078. .alert {
  2079. margin: 7px;
  2080. }
  2081. }
  2082. .go-to {
  2083. float: right;
  2084. background-position: right center;
  2085. background-repeat: no-repeat;
  2086. background-image: @arrow-right;
  2087. padding-right: 40px;
  2088. margin-top: 4px;
  2089. }
  2090. .modal-graph-line {
  2091. width: 810px;
  2092. margin: -250px 0 0 -405px;
  2093. .modal-body {
  2094. min-height: 420px !important;
  2095. overflow: hidden;
  2096. }
  2097. }
  2098. /*end alerts summary*/
  2099. /*Alerts popup*/
  2100. .alertsPopupLinks {
  2101. padding: 20px 40px 0px;
  2102. text-align: right;
  2103. a:first-child {
  2104. float: left;
  2105. }
  2106. }
  2107. .modal-footer.align-center {
  2108. text-align: center;
  2109. }
  2110. /*start chart/style graphs*/
  2111. .chart-container {
  2112. cursor: pointer;
  2113. cursor: -moz-zoom-in;
  2114. cursor: -webkit-zoom-in;
  2115. &.chart-container-popup {
  2116. cursor: auto !important;
  2117. margin-left: 0;
  2118. overflow: visible;
  2119. width: 650px;
  2120. .chart {
  2121. left: 60px;
  2122. overflow: visible;
  2123. position: relative;
  2124. }
  2125. .chart-y-axis {
  2126. position: absolute;
  2127. top: -15px;
  2128. bottom: 0;
  2129. width: 60px;
  2130. }
  2131. .chart-legend {
  2132. left: 60px;
  2133. top: 245px;
  2134. }
  2135. .x_tick {
  2136. .title {
  2137. margin-top: 35px !important;
  2138. }
  2139. }
  2140. }
  2141. position: relative;
  2142. margin: 20px 15px 0px 15px;
  2143. .chart {
  2144. position: relative;
  2145. z-index: 1;
  2146. }
  2147. .chart-y-axis {
  2148. position: absolute;
  2149. top: 0;
  2150. bottom: 0px;
  2151. width: 100px;
  2152. z-index: 2;
  2153. margin-top: 15px;
  2154. }
  2155. .chart-x-axis {
  2156. position: absolute;
  2157. top: 180px;
  2158. left: 35%;
  2159. width: 30%;
  2160. z-index: 2;
  2161. }
  2162. .x_tick {
  2163. margin-top: 5px;
  2164. .title {
  2165. padding: 0 2px 0 2px;
  2166. opacity: 1 !important;
  2167. top: 148px;
  2168. }
  2169. }
  2170. svg {
  2171. g {
  2172. g:nth-child(1) {
  2173. display: none;
  2174. }
  2175. }
  2176. }
  2177. text {
  2178. font-weight: 700;
  2179. opacity: 1 !important;
  2180. }
  2181. .chart-legend {
  2182. font-family: 'Courier New';
  2183. position: absolute;
  2184. top: 180px;
  2185. z-index: 3;
  2186. }
  2187. .rickshaw_legend {
  2188. background-color: #999 !important;
  2189. li:hover {
  2190. background-color: #999 !important;
  2191. }
  2192. }
  2193. .rickshaw_legend:empty {
  2194. padding: 0;
  2195. }
  2196. .rickshaw_graph {
  2197. .x_tick {
  2198. .title {
  2199. bottom: -6px;
  2200. opacity: 0.75;
  2201. }
  2202. }
  2203. }
  2204. .chart-overlay {
  2205. position: absolute;
  2206. top: 0;
  2207. bottom: 0;
  2208. width: 100%;
  2209. z-index: 5;
  2210. }
  2211. .chart-title {
  2212. text-align: center;
  2213. font-size: small;
  2214. }
  2215. }
  2216. .modal-body {
  2217. .show {
  2218. display: inline-block;
  2219. }
  2220. .time-label {
  2221. text-align: center;
  2222. }
  2223. }
  2224. .mini-chart {
  2225. position: absolute;
  2226. .chart-container {
  2227. width: 130px;
  2228. height: 130px;
  2229. }
  2230. }
  2231. /*end chart/graph styles*/
  2232. /*****end styles for dashboard page*****/
  2233. /*Services*/
  2234. .services-menu {
  2235. .nav-list {
  2236. .tab-marker-position {
  2237. list-style: none;
  2238. height: 20px;
  2239. width: 20px;
  2240. margin-left: 6px;
  2241. display: inline;
  2242. float: none;
  2243. }
  2244. .health-status-LIVE, .health-status-STARTING {
  2245. .tab-marker-position;
  2246. color: @health-status-green;
  2247. }
  2248. .health-status-DEAD-RED, .health-status-STOPPING {
  2249. .tab-marker-position;
  2250. color: @health-status-red;
  2251. }
  2252. .health-status-DEAD-YELLOW {
  2253. .tab-marker-position;
  2254. color: @health-status-yellow;
  2255. }
  2256. li {
  2257. line-height: 24px;
  2258. a {
  2259. padding: 3px 4px;
  2260. white-space: nowrap;
  2261. }
  2262. .label {
  2263. padding: 0 0 0 3px;
  2264. }
  2265. }
  2266. li.clients {
  2267. a {
  2268. padding-left: 37px;
  2269. }
  2270. }
  2271. .icon-laptop {
  2272. color: #555;
  2273. padding-left: 5px;
  2274. }
  2275. .active {
  2276. .icon-laptop {
  2277. color: #f0f0f0;
  2278. }
  2279. }
  2280. }
  2281. .add-service-button {
  2282. margin: 20px 20px 10px;
  2283. }
  2284. .start-stop-all-service-button {
  2285. margin: 5px 5px 10px 10px;
  2286. text-align: center;
  2287. }
  2288. .operations-count {
  2289. background: #953B39;
  2290. }
  2291. .icon-medkit {
  2292. padding-left:6px;
  2293. color: black!important;
  2294. }
  2295. }
  2296. .quick-links-wrapper {
  2297. margin-top: -53px;
  2298. position: relative;
  2299. left: 278px;
  2300. .nav-pills.move {
  2301. float: right;
  2302. width:135px;
  2303. &>li {
  2304. position: absolute;
  2305. }
  2306. }
  2307. .nav li.dropdown.open {
  2308. .dropdown-toggle{
  2309. color: #005580;
  2310. background-color: #eeeeee;
  2311. border-color: #eeeeee;
  2312. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2313. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2314. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2315. }
  2316. a:hover .caret {
  2317. border-top-color: #005580;
  2318. border-bottom-color: #005580;
  2319. }
  2320. .caret {
  2321. border-top-color: #005580;
  2322. border-bottom-color: #005580;
  2323. }
  2324. }
  2325. .disabled-hdfs-quick-link {
  2326. pointer-events: none;
  2327. color: #808080;
  2328. cursor: default;
  2329. }
  2330. }
  2331. .service-content {
  2332. #summary-info {
  2333. margin-bottom: 0;
  2334. }
  2335. }
  2336. .service-block {
  2337. margin-top: 20px;
  2338. }
  2339. .service-configuration {
  2340. padding: 10px;
  2341. }
  2342. .service-summary {
  2343. background: #F6FAFD;
  2344. .service-block.span8 {
  2345. margin-left: 0;
  2346. border-right: 1px solid #5fa3c3;
  2347. }
  2348. .service-block.span3 {
  2349. padding-left: 0;
  2350. }
  2351. .service-content {
  2352. padding: 5px 0 0 10px;
  2353. .service-links {
  2354. padding: 5px 0;
  2355. }
  2356. }
  2357. h5 {
  2358. color: #0088CC;
  2359. font-size: 14px;
  2360. }
  2361. .service-links {
  2362. padding: 5px 0 10px 0;
  2363. }
  2364. .service-configuration .dl-horizontal {
  2365. dt {
  2366. width: 90px;
  2367. line-height: 19px;
  2368. }
  2369. dd {
  2370. margin-left: 100px;
  2371. line-height: 19px;
  2372. }
  2373. }
  2374. }
  2375. .service-button {
  2376. text-align: right;
  2377. margin-bottom: 5px;
  2378. margin-top: -55px;
  2379. margin-left: 10px;
  2380. ul.dropdown-menu {
  2381. li {
  2382. text-align: left;
  2383. }
  2384. a {
  2385. cursor: pointer;
  2386. }
  2387. .icon-play.enabled {
  2388. color: @green;
  2389. }
  2390. .icon-stop.enabled{
  2391. color: red;
  2392. }
  2393. }
  2394. }
  2395. .summary-metric-graphs {
  2396. [class*="span"] {
  2397. float: left;
  2398. margin-left: 10px;
  2399. }
  2400. .chart-container {
  2401. .chart-x-axis {
  2402. left: 0%;
  2403. width: 100%;
  2404. }
  2405. }
  2406. }
  2407. .metrics-collapsed-graphs {
  2408. margin-bottom: 10px;
  2409. .accordion {
  2410. .accordion-heading {
  2411. font-size: 15px;
  2412. color: #777;
  2413. font-weight: bold;
  2414. padding: 0;
  2415. .accordion-toggle {
  2416. .icon-caret-toggle:before {
  2417. content: "\f0d7";
  2418. }
  2419. &.collapsed {
  2420. .icon-caret-toggle:before {
  2421. content: "\f0da";
  2422. }
  2423. }
  2424. }
  2425. .btn {
  2426. margin: 3px;
  2427. }
  2428. }
  2429. }
  2430. }
  2431. /*End Services*/
  2432. table.graphs {
  2433. table-layout: fixed;
  2434. width: 100%;
  2435. }
  2436. /*Dashboard Widgets Start*/
  2437. #dashboard-widgets-container{
  2438. > ul.nav.nav-tabs {
  2439. margin-bottom: 10px;
  2440. }
  2441. h4{
  2442. line-height: 30px;
  2443. margin-bottom: 0px;
  2444. margin-top: 0px;
  2445. }
  2446. .add-widget-button{
  2447. margin-top: 0px;
  2448. margin-left: -22px;
  2449. width: 70px;
  2450. .add-button{
  2451. color: #666666;
  2452. }
  2453. .filter-components{
  2454. overflow: auto;
  2455. max-height: 375px;
  2456. width: 210px;
  2457. color: #333333;
  2458. right: 0;
  2459. left: auto;
  2460. li {
  2461. display: block;
  2462. padding: 3px 0 3px 5px;
  2463. line-height: 20px;
  2464. ul{
  2465. margin-left: 0px;
  2466. }
  2467. label.checkbox {
  2468. padding-left: 3px;
  2469. }
  2470. input[type="checkbox"] {
  2471. margin: 4px 4px 2px 2px;
  2472. }
  2473. }
  2474. &>li {
  2475. &>ul {
  2476. width: 180px;
  2477. margin-left: 0;
  2478. }
  2479. }
  2480. }
  2481. }
  2482. .more-options-button{
  2483. margin-top: 0px;
  2484. margin-left: 0px;
  2485. margin-right: 6px;
  2486. padding: 1px;
  2487. width: 70px;
  2488. .icon-cog{
  2489. color: #666666;
  2490. font-size: 18px;
  2491. position: relative;
  2492. left: 3px;
  2493. top: 2px;
  2494. }
  2495. .caret{
  2496. position: relative;
  2497. left: 5px;
  2498. top: 2px;
  2499. }
  2500. }
  2501. .right-align-dropdown{
  2502. right: 0;
  2503. left: auto;
  2504. padding-top: 9px;
  2505. padding-bottom: 9px;
  2506. margin-right: 4px;
  2507. }
  2508. #dashboard-widgets{
  2509. .caption {
  2510. height: 25px;
  2511. }
  2512. .thumbnails {
  2513. margin-left: 8px;
  2514. }
  2515. .row-fluid .span2p4 {
  2516. width: 19.34%;
  2517. *width: 19.34%;
  2518. }
  2519. .row-fluid .span4p8 {
  2520. width: 39.1%;
  2521. *width: 39.1%;
  2522. }
  2523. .thumbnails > div {
  2524. margin-left: 0px;
  2525. margin-right: 3px;
  2526. margin-top: 5px;
  2527. margin-bottom: 7px;
  2528. height: 163px;
  2529. }
  2530. .thumbnails li {
  2531. height:150px;
  2532. margin-left: 0px;
  2533. margin-right: 3px;
  2534. margin-top: 3px;
  2535. margin-bottom: 0px;
  2536. }
  2537. .thumbnail .corner-icon{
  2538. display: none;
  2539. position: relative;
  2540. .icon-remove-sign{
  2541. color: #000000;
  2542. text-shadow: #fff 0px 0px 15px;
  2543. position: relative;
  2544. left: -13px;
  2545. top: -10px;
  2546. }
  2547. .icon-edit{
  2548. color: #555555;
  2549. }
  2550. }
  2551. .thumbnail .hidden-info-general{
  2552. color: #555555;
  2553. font-size: 12px;
  2554. font-weight: bold;
  2555. text-align: center;
  2556. text-decoration: none;
  2557. display: none;
  2558. position: relative;
  2559. z-index: 7;
  2560. }
  2561. .hidden-info-two-line{
  2562. padding-top: 60px;
  2563. }
  2564. .hidden-info-three-line{
  2565. padding-top: 50px;
  2566. }
  2567. .hidden-info-five-line{
  2568. padding-top: 40px;
  2569. tr > td {
  2570. line-height: 18px;
  2571. }
  2572. }
  2573. .hidden-info-six-line{
  2574. padding-top: 37px;
  2575. tr > td {
  2576. line-height: 16px;
  2577. }
  2578. }
  2579. .thumbnail .caption {
  2580. padding-left: 0px;
  2581. padding-top: 7px;
  2582. padding-bottom: 7px;
  2583. padding-right: 0px;
  2584. color: #555555;
  2585. font-weight:bold;
  2586. font-size: 12px;
  2587. text-align: left;
  2588. position: relative;
  2589. }
  2590. .thumbnail .widget-content{
  2591. text-align: center;
  2592. font-size: 35px;
  2593. padding-top: 40px; //svg
  2594. position: relative;
  2595. .disabled-hdfs-link {
  2596. pointer-events: none;
  2597. color: grey;
  2598. cursor: default;
  2599. }
  2600. .screensaver{ // graph onload wait
  2601. width: 90%;
  2602. height: 105px;
  2603. border: 1px solid silver;
  2604. color: #ffffff;
  2605. background: url(/img/spinner.gif) no-repeat center center;
  2606. }
  2607. }
  2608. .thumbnail .widget-content-isNA{ // for pie chart n\a
  2609. text-align: center;
  2610. font-size: 35px;
  2611. color: #D6DDDF;
  2612. padding-top: 70px;
  2613. font-weight: bold;
  2614. position: relative;
  2615. }
  2616. .thumbnail{
  2617. background-color: #ffffff;
  2618. z-index: 3;
  2619. }
  2620. .has-hidden-info {
  2621. ul {
  2622. margin: 0;
  2623. }
  2624. }
  2625. .has-hidden-info .thumbnail:hover {
  2626. cursor: move;
  2627. //background-color: #d3d3d3;
  2628. .corner-icon{
  2629. display:block;
  2630. text-decoration: none;
  2631. z-index: 9;
  2632. }
  2633. .hidden-info-general{
  2634. display: block;
  2635. }
  2636. .caption{
  2637. margin-left: -6px;
  2638. z-index: 7;
  2639. }
  2640. .slots-caption{
  2641. margin-left: -13px;
  2642. z-index: 7;
  2643. }
  2644. .widget-content{
  2645. top: -104px;
  2646. opacity: 0.3;
  2647. z-index: 5;
  2648. }
  2649. .widget-content-isNA{
  2650. top: -104px;
  2651. opacity: 0.3;
  2652. z-index: 5;
  2653. }
  2654. .uptime-content{
  2655. top: -136px;
  2656. }
  2657. .uptime-content-isNA{
  2658. top: -95px;
  2659. }
  2660. .slots-content-isNA{
  2661. top: -82px;
  2662. }
  2663. .content-hidden-two-line{
  2664. top: -105px;
  2665. opacity: 0.3;
  2666. z-index: 5;
  2667. }
  2668. .content-hidden-three-line{
  2669. top: -116px;
  2670. opacity: 0.3;
  2671. z-index: 5;
  2672. }
  2673. .content-hidden-four-line{
  2674. top: -126px;
  2675. opacity: 0.3;
  2676. z-index: 5;
  2677. }
  2678. .content-hidden-five-line{
  2679. top: -140px;
  2680. opacity: 0.3;
  2681. z-index: 5;
  2682. }
  2683. .content-hidden-six-line{
  2684. top: -143px;
  2685. opacity: 0.3;
  2686. z-index: 5;
  2687. }
  2688. }
  2689. .cluster-metrics .chart-container{
  2690. margin: 0px 10px 0px 10px;
  2691. .chart-y-axis{
  2692. margin-top: 10px;
  2693. }
  2694. .chart svg{
  2695. margin-right: 20px;
  2696. }
  2697. .rickshaw_legend{
  2698. padding-top: 3px;
  2699. }
  2700. .chart-legend {
  2701. top: 120px;
  2702. left:15px;
  2703. text-align: left;
  2704. z-index: 3;
  2705. ul >li{
  2706. max-height: 10px;
  2707. }
  2708. }
  2709. }
  2710. .cluster-metrics > ul {
  2711. margin:0;
  2712. }
  2713. .cluster-metrics .alert {
  2714. padding: 0px;
  2715. font-size: 12px;
  2716. }
  2717. .cluster-metrics .thumbnail:hover{
  2718. cursor: move;
  2719. .corner-icon{
  2720. display:block;
  2721. text-decoration: none;
  2722. z-index: 9;
  2723. }
  2724. .caption{
  2725. margin-left: -6px;
  2726. }
  2727. }
  2728. .links {
  2729. ul {
  2730. margin: 0;
  2731. }
  2732. }
  2733. .links .thumbnail{
  2734. li{
  2735. height:20px;
  2736. margin: 3px;
  2737. }
  2738. .link-button{
  2739. padding-top: 7px;
  2740. padding-left: 70px;
  2741. .disabled-hdfs-quick-link {
  2742. pointer-events: none;
  2743. color: #808080;
  2744. cursor: default;
  2745. }
  2746. }
  2747. .widget-content{
  2748. text-align: center;
  2749. font-weight: none;
  2750. font-size: 11px;
  2751. color: #555555;
  2752. padding-top: 40px;
  2753. table{
  2754. vertical-position: center;
  2755. text-align: center;
  2756. margin-left:auto;
  2757. margin-right:auto;
  2758. }
  2759. td{
  2760. padding-top: 2px;
  2761. }
  2762. }
  2763. }
  2764. .links .thumbnail:hover{
  2765. cursor: move;
  2766. .corner-icon{
  2767. display:block;
  2768. text-decoration: none;
  2769. z-index: 9;
  2770. }
  2771. .caption{
  2772. margin-left: -6px;
  2773. }
  2774. }
  2775. .thumbnail .widget-content .svg {
  2776. position: relative;
  2777. }
  2778. #map-reduce-slots-text{
  2779. padding-left: 5px;
  2780. padding-top: 40px;
  2781. color: #555555;
  2782. font-weight:bold;
  2783. font-size: 10px;
  2784. >ul{
  2785. margin-top:5px;
  2786. margin-bottom: 0px;
  2787. }
  2788. #map-reduce-slots-bar1{
  2789. margin-left: 10px;
  2790. }
  2791. #map-reduce-slots-bar2{
  2792. margin-left: 3px;
  2793. }
  2794. #map-reduce-slots-num1{
  2795. margin-left: 5px;
  2796. }
  2797. #map-reduce-slots-num2{
  2798. margin-left: 5px;
  2799. }
  2800. }
  2801. .is-red{
  2802. .widget-content {
  2803. color: #B80000;
  2804. padding-top: 70px;
  2805. font-weight: bold;
  2806. }
  2807. }
  2808. .is-orange{
  2809. .widget-content {
  2810. color: #FF8E00;
  2811. padding-top: 70px;
  2812. font-weight: bold;
  2813. }
  2814. }
  2815. .is-green {
  2816. .widget-content {
  2817. color: #95A800;
  2818. padding-top: 70px;
  2819. font-weight: bold;
  2820. }
  2821. }
  2822. .is-na {
  2823. position: relative;
  2824. .widget-content {
  2825. color: #D6DDDF;
  2826. text-shadow: none;
  2827. padding-top: 70px;
  2828. font-weight: bold;
  2829. }
  2830. }
  2831. }
  2832. }
  2833. /*Dashboard Widgets END*/
  2834. .dialog-delete-component {
  2835. border: 1px solid #FDB82F;
  2836. border-radius: 4px;
  2837. padding: 4px;
  2838. background: #FFFDF6;
  2839. .warning-details {
  2840. padding-left: 16px;
  2841. padding-top: 5px;
  2842. }
  2843. .warning-list {
  2844. font-size: 0.95em;
  2845. font-style: italic;
  2846. }
  2847. }
  2848. /*Hosts*/
  2849. #hosts {
  2850. .bulk-menu {
  2851. .dropdown-submenu {
  2852. &> a:after {
  2853. border-left-color: #333;
  2854. }
  2855. &> a.disabled:after {
  2856. border-left-color: #ccc;
  2857. }
  2858. }
  2859. a {
  2860. &.disabled {
  2861. color: gray;
  2862. }
  2863. }
  2864. }
  2865. .filters-label {
  2866. display: block;
  2867. float: left;
  2868. padding-right: 10px;
  2869. }
  2870. #hosts-table {
  2871. margin-top: 10px;
  2872. margin-bottom: 10px;
  2873. font-size: 13px\9;
  2874. .label-row {
  2875. font-size: 0.9em;
  2876. th {
  2877. padding: 4px;
  2878. }
  2879. .active-sort {
  2880. color: #555555;
  2881. text-decoration: none;
  2882. background-color: #e5e5e5;
  2883. -webkit-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2884. -moz-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2885. box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2886. }
  2887. }
  2888. #filter-row {
  2889. th {
  2890. padding: 0px;
  2891. padding-left: 4px;
  2892. }
  2893. .active-filter {
  2894. color: #555555;
  2895. text-decoration: none;
  2896. background-color: #e5e5e5;
  2897. -webkit-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2898. -moz-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2899. box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2900. }
  2901. input {
  2902. font-size: 12px;
  2903. height: 14px;
  2904. }
  2905. .filter-btn {
  2906. color: #999999;
  2907. font-size: 12px;
  2908. line-height: 14px;
  2909. padding-left: 6px;
  2910. text-align: left;
  2911. width: 100px;
  2912. .icon-filter {
  2913. color: #999999;
  2914. }
  2915. }
  2916. }
  2917. thead {
  2918. background: none repeat scroll 0 0 #F8F8F8;
  2919. }
  2920. }
  2921. .page-bar {
  2922. border: 1px solid #E4E4E4;
  2923. color: #7B7B7B;
  2924. text-align: right;
  2925. font-size: 12px;
  2926. label {
  2927. font-size: 12px;
  2928. }
  2929. div {
  2930. display: inline-block;
  2931. margin:0 10px;
  2932. }
  2933. .filtered-hosts-info, .selected-hosts-info {
  2934. text-align: left;
  2935. margin-top: 8px;
  2936. margin-left: 17px;
  2937. }
  2938. .items-on-page {
  2939. label {
  2940. display:inline;
  2941. }
  2942. select {
  2943. margin-bottom: 4px;
  2944. margin-top: 4px;
  2945. width:70px;
  2946. font-size: 12px;
  2947. height: 27px;
  2948. }
  2949. }
  2950. .paging_two_button {
  2951. a.paginate_disabled_next, a.paginate_disabled_previous {
  2952. color: gray;
  2953. &:hover {
  2954. color: gray;
  2955. text-decoration: none;
  2956. cursor: default;
  2957. }
  2958. }
  2959. a.paginate_next, a.paginate_previous {
  2960. &:hover {
  2961. text-decoration: none;
  2962. cursor: pointer;
  2963. }
  2964. }
  2965. a {
  2966. padding:0 5px;
  2967. }
  2968. }
  2969. }
  2970. .status-dot-position {
  2971. background-position: center;
  2972. background-repeat: no-repeat;
  2973. height: 20px;
  2974. width: 13px;
  2975. display: inline !important;
  2976. float: none !important;
  2977. }
  2978. .health-status-HEALTHY,
  2979. .health-status-LIVE {
  2980. .status-dot-position;
  2981. color: @health-status-green;
  2982. margin-right: 1px;
  2983. margin-left: 1px;
  2984. }
  2985. .health-status-DEAD-RED {
  2986. .status-dot-position;
  2987. color: @health-status-red;
  2988. }
  2989. .health-status-DEAD-ORANGE {
  2990. .status-dot-position;
  2991. color: @health-status-orange;
  2992. margin-right: 1px;
  2993. margin-left: 1px;
  2994. }
  2995. .health-status-DEAD-YELLOW {
  2996. .status-dot-position;
  2997. color: @health-status-yellow;
  2998. margin-right: 1px;
  2999. margin-left: 1px;
  3000. }
  3001. .icon-exclamation-sign,
  3002. .icon-refresh {
  3003. margin-right: 1px;
  3004. margin-left: 1px;
  3005. }
  3006. .passive-state {
  3007. color: #000;
  3008. }
  3009. .alerts-status {
  3010. padding: 1px 6px !important;
  3011. &:before {
  3012. content: "!";
  3013. }
  3014. }
  3015. .host-name-search {
  3016. position: relative;
  3017. top: 0px;
  3018. left: 10px;
  3019. }
  3020. .host-name-pos {
  3021. position: relative;
  3022. top: 10px;
  3023. }
  3024. .box-header {
  3025. margin-left: 0;
  3026. .btn-group {
  3027. float: left;
  3028. }
  3029. .btn.decommission {
  3030. margin-left: 5px;
  3031. }
  3032. .btn.add-host-button {
  3033. margin-bottom: 10px;
  3034. margin-top: -5px;
  3035. }
  3036. .hosts-actions {
  3037. margin-right: 10px;
  3038. }
  3039. .health-status-bar {
  3040. font-size: 0.9em;
  3041. margin-left: 0;
  3042. color: #b4b4b4;
  3043. a {
  3044. text-decoration: none;
  3045. }
  3046. .category-item:hover {
  3047. cursor: pointer;
  3048. a {
  3049. color: #ffffff;
  3050. }
  3051. }
  3052. .active {
  3053. a {
  3054. color: #ffffff;
  3055. }
  3056. background-color: #888888;
  3057. border-color: #888888;
  3058. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  3059. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  3060. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  3061. }
  3062. .category-item.active:hover {
  3063. a {
  3064. color: #ffffff;
  3065. }
  3066. }
  3067. }
  3068. }
  3069. .progress {
  3070. margin-bottom: 0;
  3071. }
  3072. .filter-input-width{
  3073. width:68%;
  3074. }
  3075. .table {
  3076. table-layout: fixed;
  3077. th {
  3078. border-top: none;
  3079. }
  3080. th, td {
  3081. padding-left: 4px;
  3082. padding-right: 4px;
  3083. border-left-width: 0;
  3084. }
  3085. input[type="checkbox"] {
  3086. margin: -2px 0 0 0;
  3087. }
  3088. .col0,.col1,
  3089. td:first-child,
  3090. th:first-child,
  3091. td:first-child + td,
  3092. th:first-child + th{
  3093. padding-left: 4px!important;
  3094. padding-right: 1px!important;
  3095. padding-right: 10px\9!important;
  3096. width: 1.6%;
  3097. width: 13px\9!important;
  3098. }
  3099. .col2,
  3100. td:first-child + td + td,
  3101. th:first-child + th + th{
  3102. width: 30%;
  3103. padding-left: 6px;
  3104. padding-right: 1px;
  3105. .filter-input-width{
  3106. width:90%;
  3107. }
  3108. }
  3109. .col3, .col4,
  3110. td:first-child + td + td + td,
  3111. th:first-child + th + th + th,
  3112. td:first-child + td + td + td + td,
  3113. th:first-child + th + th + th + th{
  3114. padding-left: 1px!important;
  3115. padding-right: 1px!important;
  3116. width: 1.6%;
  3117. width: 13px\9!important;
  3118. }
  3119. .col5,
  3120. td:first-child + td + td + td + td + td,
  3121. th:first-child + th + th + th + th + th {
  3122. width: 11%!important;
  3123. }
  3124. .col6,
  3125. td:first-child + td + td + td + td + td + td,
  3126. th:first-child + th + th + th + th + th + th {
  3127. width: 15%!important;
  3128. }
  3129. .col7,
  3130. td:first-child + td + td + td + td + td + td + td,
  3131. th:first-child + th + th + th + th + th + th + th{
  3132. width: 11%!important;
  3133. }
  3134. .col8,
  3135. td:first-child + td + td + td + td + td + td + td + td,
  3136. th:first-child + th + th + th + th + th + th + th + th{
  3137. width: 11%!important;
  3138. }
  3139. .col9,
  3140. td:first-child + td + td + td + td + td + td + td + td + td,
  3141. th:first-child + th + th + th + th + th + th + th + th + th{
  3142. width: 11%!important;
  3143. }
  3144. .col10,
  3145. td:first-child + td + td + td + td + td + td + td + td + td + td,
  3146. th:first-child + th + th + th + th + th + th + th + th + th + th{
  3147. width: 16%!important;
  3148. }
  3149. td.name {
  3150. overflow: inherit;
  3151. overflow-wrap: break-word;
  3152. white-space: nowrap;
  3153. }
  3154. td.name .trim_hostname{
  3155. display: block;
  3156. float: left;
  3157. width: 93%!important;
  3158. overflow: hidden;
  3159. text-overflow: ellipsis;
  3160. }
  3161. th.first, td.first {
  3162. border-left-width: 1px;
  3163. }
  3164. td.health label {
  3165. padding-top: 3px;
  3166. }
  3167. td.health span {
  3168. display: block;
  3169. height: 13px;
  3170. margin: 4px 0 0 0;
  3171. width: 13px;
  3172. }
  3173. td.health .icon-medkit {
  3174. margin: 3px 0 0 0;
  3175. }
  3176. ul.filter-components {
  3177. padding: 5px 0;
  3178. background: #777777;
  3179. color: #ffffff;
  3180. font-weight: normal;
  3181. font-size: 12px;
  3182. label {
  3183. font-size: 12px;
  3184. }
  3185. li {
  3186. display: block;
  3187. padding: 3px 0 3px 5px;
  3188. line-height: 20px;
  3189. label.checkbox {
  3190. padding-left: 3px;
  3191. }
  3192. input[type="checkbox"] {
  3193. margin: 4px 4px 2px 2px;
  3194. }
  3195. }
  3196. li#title-bar {
  3197. text-align: left;
  3198. border-bottom: 1px solid #e4e4e4;
  3199. a.close {
  3200. background: #777777;
  3201. display: inline;
  3202. color: #ffffff;
  3203. padding-left: 35px;
  3204. padding-right: 12px;
  3205. text-shadow: 0 1px 0 #ffffff;
  3206. float: none;
  3207. font-size: 10px;
  3208. opacity: 0.6;
  3209. }
  3210. a.close:hover {
  3211. background: #777777;
  3212. opacity: 1.0;
  3213. }
  3214. }
  3215. li#selector-bar {
  3216. text-align: left;
  3217. border-bottom: 1px solid #e4e4e4;
  3218. font-size: 6px;
  3219. }
  3220. li#list-area {
  3221. font-weight: normal;
  3222. text-align: left;
  3223. }
  3224. li#button-bar {
  3225. text-align: center;
  3226. button {
  3227. font-size: 12px;
  3228. }
  3229. }
  3230. ul {
  3231. margin-left: 10px;
  3232. }
  3233. &>li {
  3234. &>ul {
  3235. height: 150px;
  3236. margin-left: 0;
  3237. overflow-y: scroll;
  3238. }
  3239. }
  3240. }
  3241. .sorting_asc {
  3242. background: url(data:image/png;base64,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) no-repeat right 50%;
  3243. }
  3244. .sorting_desc {
  3245. background: url(data:image/png;base64,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) no-repeat right 50%;
  3246. }
  3247. .sorting {
  3248. background: url(data:image/png;base64,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) no-repeat right 50%;
  3249. }
  3250. div.view-wrapper {
  3251. input[type="checkbox"], .btn-group {
  3252. margin-bottom: 9px;
  3253. }
  3254. }
  3255. a.ui-icon-circle-close {
  3256. float: right;
  3257. opacity: 0.2;
  3258. padding: 1px 0;
  3259. position: relative;
  3260. right: 0px;
  3261. margin-top: 3px;
  3262. z-index: 10;
  3263. &:hover {
  3264. opacity: 0.7;
  3265. }
  3266. }
  3267. .notActive {
  3268. a.ui-icon-circle-close {
  3269. visibility: hidden;
  3270. }
  3271. }
  3272. }
  3273. .open-group > .dropdown-menu {
  3274. display: block;
  3275. }
  3276. .nav-pills li.disabled {
  3277. display: block;
  3278. margin: 2px 0;
  3279. padding: 8px 12px;
  3280. line-height: 14px;
  3281. }
  3282. .box-footer .footer-pagination {
  3283. float: right;
  3284. .nav {
  3285. margin-bottom: 0;
  3286. }
  3287. .dropdown {
  3288. margin-top: 3px;
  3289. }
  3290. .dropdown {
  3291. margin-top: 3px;
  3292. }
  3293. .dropdown select {
  3294. width: 60px;
  3295. }
  3296. .page-listing a {
  3297. line-height: 0;
  3298. border: none;
  3299. margin: 0;
  3300. margin-right: 10px;
  3301. cursor: pointer;
  3302. color: #0088CC;
  3303. padding: 8px 0;
  3304. float: left;
  3305. text-decoration: underline;
  3306. }
  3307. .page-listing a:hover {
  3308. text-decoration: none;
  3309. }
  3310. .page-listing {
  3311. width: 100px;
  3312. .table {
  3313. th.name {
  3314. width: 300px;
  3315. a.filter-label {
  3316. width: 57px;
  3317. display: block;
  3318. float: left;
  3319. }
  3320. }
  3321. }
  3322. }
  3323. }
  3324. .host-components-expander {
  3325. .icon-caret-right, .icon-caret-down {
  3326. vertical-align: middle;
  3327. margin-right: 5px;
  3328. margin-bottom: 2px;
  3329. text-decoration: none;
  3330. }
  3331. }
  3332. .host-components {
  3333. display: none;
  3334. padding-left: 13px;
  3335. }
  3336. }
  3337. #host-warnings {
  3338. .notice {
  3339. padding-bottom: 20px;
  3340. }
  3341. .code-snippet {
  3342. margin: 10px 0;
  3343. white-space:normal;
  3344. }
  3345. .warnings-list {
  3346. .block {
  3347. .accordion-heading {
  3348. background-color: #f0f0f0;
  3349. }
  3350. table {
  3351. width: 100%;
  3352. td, th {
  3353. text-align: left;
  3354. padding-left: 15px;
  3355. }
  3356. thead tr:first-child th {
  3357. font-weight: normal;
  3358. }
  3359. }
  3360. margin-top: 10px;
  3361. }
  3362. }
  3363. }
  3364. .host-checks-update {
  3365. button {
  3366. margin-left: 5px;
  3367. }
  3368. .update-progress {
  3369. width: 230px;
  3370. .progress {
  3371. margin-bottom: 0;
  3372. }
  3373. }
  3374. }
  3375. #host-details {
  3376. margin-top: 27px;
  3377. .status-info {
  3378. .host-title {
  3379. font-size: 18px;
  3380. font-weight: 700;
  3381. background-position: 0px center;
  3382. padding-left: 17px;
  3383. }
  3384. .host-maintenance-notice {
  3385. background-color: #E4E4E4;
  3386. border: 1px solid #D4D4D4;
  3387. color: #333333;
  3388. padding: 8px 35px 8px 14px;
  3389. -webkit-border-radius: 4px;
  3390. -moz-border-radius: 4px;
  3391. border-radius: 4px;
  3392. }
  3393. }
  3394. /*
  3395. .component-operation-button {
  3396. background-color: #E5E5E5;
  3397. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E5E5), to(#F1F1F1));
  3398. background-image: -webkit-linear-gradient(top, #E5E5E5, #F1F1F1);
  3399. background-image: -o-linear-gradient(top, #E5E5E5, #F1F1F1);
  3400. background-image: linear-gradient(to bottom, #E5E5E5, #F1F1F1);
  3401. background-image: -moz-linear-gradient(top, #E5E5E5, #F1F1F1);
  3402. background-repeat: repeat-x;
  3403. color: #000000;
  3404. }
  3405. */
  3406. .caret {
  3407. border-top-color: #000000;
  3408. border-bottom-color: #000000;
  3409. }
  3410. //hack to apply style only for firefox
  3411. .host-components .btn-group{
  3412. white-space: normal;
  3413. }
  3414. .marker {
  3415. background-repeat: no-repeat;
  3416. display: inline-block;
  3417. height: 13px;
  3418. width: 13px;
  3419. display: inline !important;
  3420. float: none !important;
  3421. }
  3422. .components-health.icon-arrow-up{
  3423. color:red;
  3424. }
  3425. .health-status-started, .health-status-starting {
  3426. .marker;
  3427. color: @health-status-green;
  3428. }
  3429. .health-status-installed, .health-status-stopping {
  3430. .marker;
  3431. color: @health-status-red;
  3432. }
  3433. .health-status-unknown {
  3434. .marker;
  3435. color: @health-status-yellow;
  3436. }
  3437. .health-status-LIVE {
  3438. .marker;
  3439. color: @health-status-green;
  3440. }
  3441. .health-status-DEAD-RED {
  3442. .marker;
  3443. color: @health-status-red;
  3444. }
  3445. .health-status-color-blue {
  3446. color:#0000ff;
  3447. }
  3448. .health-status-color-red {
  3449. color:#ff0000;
  3450. }
  3451. .health-status-DEAD-ORANGE {
  3452. .marker;
  3453. color: @health-status-orange;
  3454. }
  3455. .health-status-DEAD-YELLOW {
  3456. .marker;
  3457. color: @health-status-yellow;
  3458. }
  3459. .back {
  3460. display: block;
  3461. width: 105px;
  3462. margin-bottom: 5px;
  3463. }
  3464. .box-header .host-title {
  3465. margin: 0;
  3466. padding-left: 17px;
  3467. }
  3468. .box-header .button-section {
  3469. margin-bottom: 5px;
  3470. }
  3471. hr {
  3472. margin-bottom: 0;
  3473. clear: both;
  3474. }
  3475. .content {
  3476. padding: 10px;
  3477. }
  3478. .host-configuration .dl-horizontal dt {
  3479. width: 90px;
  3480. line-height: 20px;
  3481. }
  3482. .host-configuration .dl-horizontal dd {
  3483. margin-left: 100px;
  3484. line-height: 20px;
  3485. }
  3486. .host-metrics {
  3487. [class*="span"] {
  3488. float: left;
  3489. margin: 0;
  3490. }
  3491. .chart-container {
  3492. .chart-x-axis {
  3493. left: 30%;
  3494. width: 40%;
  3495. }
  3496. }
  3497. }
  3498. .host-components {
  3499. padding: 10px;
  3500. padding-bottom: 0;
  3501. border-radius: 4px;
  3502. background: #FFF;
  3503. #add_component{
  3504. width: 170px;
  3505. height: 30px;
  3506. }
  3507. }
  3508. .host-components .btn-group {
  3509. margin: 0 5px 10px 0;
  3510. .component-text-status{
  3511. cursor: default;
  3512. display: block;
  3513. padding: 3px 20px;
  3514. clear: both;
  3515. font-weight: normal;
  3516. line-height: 20px;
  3517. color: #333333;
  3518. white-space: nowrap;
  3519. font-style: italic;
  3520. }
  3521. }
  3522. .host-components {
  3523. .dropdown-menu {
  3524. .disabled {
  3525. pointer-events: none;
  3526. color: #808080;
  3527. cursor: default;
  3528. }
  3529. }
  3530. }
  3531. }
  3532. .services-menu {
  3533. .icon-refresh {
  3534. color: @restart-indicator-color;
  3535. margin-left: 4px;
  3536. }
  3537. }
  3538. #hosts, #host-details, #serviceConfig {
  3539. .icon-refresh {
  3540. color: @restart-indicator-color;
  3541. }
  3542. .alerts-count {
  3543. margin-left: 0;
  3544. }
  3545. }
  3546. .background-operations {
  3547. .progress {
  3548. margin-bottom: 5px;
  3549. .bar {
  3550. width: 100%;
  3551. }
  3552. }
  3553. .open-details {
  3554. clear: left;
  3555. display: block;
  3556. float: left;
  3557. text-decoration: none;
  3558. width: 16px;
  3559. }
  3560. .operation-details {
  3561. padding-left: 16px;
  3562. padding-top: 5px;
  3563. display: none;
  3564. }
  3565. margin-bottom: 10px;
  3566. }
  3567. .background-operations.is-open {
  3568. .operation-details {
  3569. display: block;
  3570. }
  3571. }
  3572. /*End Hosts*/
  3573. /*Start Admin*/
  3574. .header {
  3575. margin-bottom: 20px;
  3576. }
  3577. .admin-cluster {
  3578. a.inactive {
  3579. cursor: default;
  3580. color: #333333;
  3581. text-decoration: none;
  3582. }
  3583. }
  3584. .btn-padding {
  3585. margin-left: 20px
  3586. }
  3587. .admin-misc {
  3588. .span6 {
  3589. margin-left: 0 !important;
  3590. }
  3591. }
  3592. .admin-user-settings {
  3593. .checkbox {
  3594. margin: 0px;
  3595. }
  3596. }
  3597. /*End Admin*/
  3598. /* Start Admin Access*/
  3599. #access{
  3600. .checkbox{
  3601. margin: 0;
  3602. }
  3603. .acces-values{
  3604. padding-bottom: 15px;
  3605. }
  3606. }
  3607. /* End Admin Access*/
  3608. /*Start About*/
  3609. .about {
  3610. .logo {
  3611. width: 20%;
  3612. float: left;
  3613. }
  3614. .content {
  3615. float: left;
  3616. .project {
  3617. font-weight: bold;
  3618. font-size: 2em;
  3619. }
  3620. }
  3621. }
  3622. /*End About*/
  3623. /*assign masters*/
  3624. .assign-masters {
  3625. .select-hosts {
  3626. white-space: nowrap;
  3627. }
  3628. label.host-name {
  3629. padding-top: 5px;
  3630. }
  3631. .round-corners {
  3632. border-radius: 8px;
  3633. -webkit-border-radius: 8px;
  3634. -moz-border-radius: 8px;
  3635. }
  3636. .remaining-hosts {
  3637. padding: 25px;
  3638. border-top: solid 1px #cccccc;
  3639. border-left: solid 1px #cccccc;
  3640. border-right: groove 5px #cccccc;
  3641. border-bottom: groove 5px #cccccc;
  3642. margin-top: 20px;
  3643. background-color: #FCF8E3;
  3644. color: #C09853;
  3645. }
  3646. .host-assignments .mapping-box {
  3647. border: solid 1px #cccccc;
  3648. padding: 8px;
  3649. margin-bottom: 10px;
  3650. background-color: #fafafa;
  3651. }
  3652. .host-assignments .assignedService {
  3653. padding: 2px 8px;
  3654. border: solid 1px #cccccc;
  3655. margin: 2px;
  3656. background-color: #969696;
  3657. color: white;
  3658. white-space: nowrap;
  3659. font-size: 0.9em;
  3660. display: inline-block;
  3661. }
  3662. .host-assignments .newService {
  3663. padding: 2px 8px;
  3664. border: solid 1px #cccccc;
  3665. margin: 2px;
  3666. background-color: @green;
  3667. color: white;
  3668. white-space: nowrap;
  3669. font-size: 0.9em;
  3670. display: inline-block;
  3671. }
  3672. .host-assignments .grey {
  3673. background-color: #808080;
  3674. border: solid 1px #000000;
  3675. }
  3676. .form-horizontal .controls {
  3677. margin-left: 110px;
  3678. }
  3679. .form-horizontal .control-label {
  3680. white-space: normal;
  3681. width: 120px;
  3682. padding-right: 10px;
  3683. }
  3684. .form-horizontal .control-group select {
  3685. width: 75%;
  3686. min-width: 100px;
  3687. max-width: 250px;
  3688. }
  3689. .hostName {
  3690. word-wrap: break-word!important;
  3691. white-space: normal;
  3692. width: 220px
  3693. }
  3694. .hostString {
  3695. margin-bottom: 5px;
  3696. word-wrap: break-word;
  3697. }
  3698. .badge {
  3699. background-color: @green;
  3700. color: #ffffff;
  3701. cursor: pointer;
  3702. font-weight: bold;
  3703. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3704. }
  3705. .badge:hover {
  3706. background-color: @green;
  3707. }
  3708. .alertFlag {
  3709. font-size: 1.3em;
  3710. color: #B94A48;
  3711. font-weight: bold;
  3712. vertical-align: middle;
  3713. }
  3714. }
  3715. /*end assign masters*/
  3716. .assign-clients {
  3717. .round-corners {
  3718. border-radius: 8px;
  3719. -webkit-border-radius: 8px;
  3720. -moz-border-radius: 8px;
  3721. }
  3722. .assignedService {
  3723. padding: 2px 8px;
  3724. border: solid 1px #cccccc;
  3725. margin: 2px;
  3726. background-color: @blue;
  3727. color: white;
  3728. white-space: nowrap;
  3729. font-size: 0.9em;
  3730. display: inline-block;
  3731. }
  3732. }
  3733. /*Dashboard*/
  3734. .alerts-count {
  3735. cursor: pointer;
  3736. margin-left: 5px;
  3737. }
  3738. ul.filter {
  3739. background: #ffffff;
  3740. list-style: none;
  3741. position: absolute;
  3742. padding: 10px;
  3743. }
  3744. #main-admin-menu {
  3745. padding: 8px 0;
  3746. .nav-list {
  3747. .tab-marker-position {
  3748. background-position: 6px 5px;
  3749. background-repeat: no-repeat;
  3750. list-style: none;
  3751. float: left;
  3752. height: 20px;
  3753. width: 20px;
  3754. margin-left: 0;
  3755. }
  3756. li {
  3757. line-height: 24px;
  3758. a {
  3759. padding: 3px 20px;
  3760. }
  3761. }
  3762. }
  3763. }
  3764. #user-auth-method select {
  3765. width: 320px;
  3766. }
  3767. .host-block {
  3768. margin-top: 20px;
  3769. }
  3770. /*start charts rack*/
  3771. .rack {
  3772. width: 98%;
  3773. display: inline-block;
  3774. vertical-align: top;
  3775. border: 1px solid #D4D4D4;
  3776. border-radius: 5px;
  3777. margin-right: 4px;
  3778. margin-bottom: 10px;
  3779. .rackHeader {
  3780. background-color: #F7F7F7;
  3781. border-top-right-radius: 5px;
  3782. border-top-left-radius: 5px;
  3783. padding: 5px 5px 5px 10px;
  3784. border-bottom: 1px solid #D4D4D4;
  3785. .statusName {
  3786. font-size: 15px;
  3787. color: #006F9F;
  3788. text-shadow: #ffffff 0px 0px 1px;
  3789. font-weight: bold;
  3790. vertical-align: top;
  3791. }
  3792. .toggler {
  3793. background-repeat: no-repeat;
  3794. background-image: @rack-state-toggler;
  3795. display: block;
  3796. height: 22px;
  3797. position: relative;
  3798. width: 32px;
  3799. float: right;
  3800. span {
  3801. background-repeat: no-repeat;
  3802. background-image: @rack-state-plus;
  3803. display: block;
  3804. height: 17px;
  3805. left: 7px;
  3806. position: absolute;
  3807. top: 3px;
  3808. width: 18px;
  3809. }
  3810. span.isActive {
  3811. background-image: @rack-state-minus !important;
  3812. top: 10px;
  3813. }
  3814. }
  3815. }
  3816. .hostsSummary {
  3817. border-left: 1px solid #CDCDCD;
  3818. border-right: 1px solid #CDCDCD;
  3819. border-bottom: 1px solid #9f9f9f;
  3820. background-color: #f7f8fa;
  3821. font-size: 12px;
  3822. padding: 4px 0 4px 9px;
  3823. .textBlock {
  3824. color: #000000;
  3825. padding-right: 10px;
  3826. div {
  3827. height: 12px;
  3828. margin: 0 3px 0 0;
  3829. width: 12px;
  3830. display: inline-block;
  3831. }
  3832. }
  3833. }
  3834. .indicatorR {
  3835. background-color: #E2001A;
  3836. }
  3837. .indicatorY {
  3838. background-color: #F29400;
  3839. }
  3840. .indicatorG {
  3841. background-color: #88BF67;
  3842. }
  3843. .statusIndicator {
  3844. display: inline-block;
  3845. width: 20px;
  3846. height: 19px;
  3847. margin-right: 10px;
  3848. margin-top: 4px;
  3849. float: left;
  3850. background-repeat: no-repeat;
  3851. }
  3852. .rackName {
  3853. margin-top: 4px;
  3854. float: left;
  3855. }
  3856. .statusIndicator.LIVE {
  3857. background-image: @rack-status-live;
  3858. }
  3859. .statusIndicator.CRITICAL {
  3860. background-image: @rack-status-critical;
  3861. }
  3862. .statusIndicator.DEAD {
  3863. background-image: @rack-status-dead;
  3864. }
  3865. .hosts {
  3866. padding: 4px;
  3867. overflow: hidden;
  3868. display: none;
  3869. .ember-view {
  3870. float: left;
  3871. width: 100%;
  3872. height: 43px;
  3873. .hostBlock {
  3874. height: 38px;
  3875. position: relative;
  3876. border: 1px solid #D4D4D4;
  3877. margin-right: 3px;
  3878. }
  3879. }
  3880. .hostBlock {
  3881. border-radius: 4px;
  3882. }
  3883. .hostBlock.HEALTHY {
  3884. background-color: #87BE73;
  3885. }
  3886. .hostBlock.UNHEALTHY {
  3887. background-color: #E40024;
  3888. }
  3889. .hostBlock.CRITICAL {
  3890. background: #F39236;
  3891. }
  3892. .ember-view:hover {
  3893. }
  3894. }
  3895. .hosts.isActive {
  3896. display: block;
  3897. }
  3898. }
  3899. /*Start Heatmap*/
  3900. .heatmap {
  3901. padding: 5px;
  3902. #heatmap-metric-title {
  3903. margin-left: 23px;
  3904. }
  3905. .rack.rack-5-2 {
  3906. .hosts {
  3907. height: 86px;
  3908. }
  3909. }
  3910. .rack.rack-5-4 {
  3911. .hosts {
  3912. height: 172px;
  3913. }
  3914. }
  3915. .rack.rack-5-6 {
  3916. .hosts {
  3917. height: 258px;
  3918. }
  3919. }
  3920. .rack.rack-5-8 {
  3921. .hosts {
  3922. height: 344px;
  3923. }
  3924. }
  3925. .rack.rack-5-10 {
  3926. .hosts {
  3927. height: 430px;
  3928. }
  3929. }
  3930. .legend-column {
  3931. min-width: 150px;
  3932. }
  3933. .heatmap-content {
  3934. float: right;
  3935. width: 80%;
  3936. }
  3937. .heatmap_host_details {
  3938. font-size: 12px;
  3939. line-height: 1.6em;
  3940. border: 1px solid #D9D9D9;
  3941. background: #f9f9f9;
  3942. width: 280px;
  3943. padding: 10px 10px;
  3944. position: absolute;
  3945. z-index: 1000;
  3946. }
  3947. .container-fluid {
  3948. padding: 0px;
  3949. }
  3950. .row-fluid [class*="span"] {
  3951. margin-left: 0px;
  3952. }
  3953. .legend {
  3954. margin-top: 20px;
  3955. margin-bottom: 20px;
  3956. font-size: 12px;
  3957. .tile {
  3958. width: 30px;
  3959. height: 1em;
  3960. padding: 4px;
  3961. border: 1px solid #D4D4D4;
  3962. border-radius: 5px;
  3963. margin-right: 10px;
  3964. }
  3965. }
  3966. h4 {
  3967. color: #777777;
  3968. margin-top: 5px;
  3969. }
  3970. .heatmap-host {
  3971. display: block;
  3972. width: 100%;
  3973. height: 100%;
  3974. }
  3975. .dropdown-submenu {
  3976. a {
  3977. cursor: default;
  3978. }
  3979. .dropdown-menu {
  3980. a {
  3981. cursor: pointer;
  3982. }
  3983. }
  3984. }
  3985. }
  3986. /*End Heatmap*/
  3987. /*Start Mirroring*/
  3988. .mirroring-top-nav {
  3989. margin-bottom: 20px;
  3990. }
  3991. .switcher {
  3992. background-color: #e5e5e5;
  3993. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3994. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3995. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3996. margin-bottom: 20px;
  3997. border-radius: 4px;
  3998. border-color: #D8D8D8;
  3999. }
  4000. .schedule-toggle {
  4001. min-width: 190px;
  4002. }
  4003. #mirroring {
  4004. .table {
  4005. margin-top: 10px;
  4006. margin-bottom: 10px;
  4007. font-size: 13px\9;
  4008. .label-row {
  4009. font-size: 0.9em;
  4010. th {
  4011. padding: 4px;
  4012. }
  4013. .active-sort {
  4014. color: #555555;
  4015. text-decoration: none;
  4016. background-color: #e5e5e5;
  4017. -webkit-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  4018. -moz-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  4019. box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  4020. }
  4021. }
  4022. .filter-row {
  4023. th {
  4024. padding: 0px;
  4025. padding-left: 8px;
  4026. }
  4027. .active-filter {
  4028. color: #555555;
  4029. text-decoration: none;
  4030. background-color: #e5e5e5;
  4031. -webkit-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  4032. -moz-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  4033. box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  4034. }
  4035. input {
  4036. font-size: 12px;
  4037. height: 14px;
  4038. }
  4039. select {
  4040. height: 27px;
  4041. font-size: 12px;
  4042. }
  4043. .start-time a.ui-icon-circle-close {
  4044. margin-top: 7px;
  4045. }
  4046. .filter-btn {
  4047. color: #999999;
  4048. font-size: 12px;
  4049. line-height: 14px;
  4050. padding-left: 6px;
  4051. text-align: left;
  4052. width: 100px;
  4053. .icon-filter {
  4054. color: #999999;
  4055. }
  4056. }
  4057. }
  4058. thead {
  4059. background: none repeat scroll 0 0 #F8F8F8;
  4060. }
  4061. th {
  4062. border-top: none;
  4063. }
  4064. th, td {
  4065. width: 82px;
  4066. border-left-width: 0;
  4067. }
  4068. th.first, td.first {
  4069. width: 10px !important;
  4070. border-left-width: 1px;
  4071. }
  4072. td.first label {
  4073. padding-top: 3px;
  4074. }
  4075. td.first span {
  4076. display: block;
  4077. float: right;
  4078. height: 13px;
  4079. margin: 5px 0 0 0;
  4080. width: 13px;
  4081. }
  4082. ul.filter-components {
  4083. padding: 5px 0;
  4084. li {
  4085. display: block;
  4086. padding: 3px 0 3px 5px;
  4087. line-height: 20px;
  4088. label.checkbox {
  4089. padding-left: 3px;
  4090. }
  4091. input[type="checkbox"] {
  4092. margin: 4px 4px 2px 2px;
  4093. }
  4094. }
  4095. &>li {
  4096. &>ul {
  4097. height: 250px;
  4098. margin-left: 0;
  4099. overflow-y: scroll;
  4100. }
  4101. }
  4102. }
  4103. .sorting_asc {
  4104. background:
  4105. url(data:image/png;base64,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) no-repeat right 50%;
  4106. }
  4107. .sorting_desc {
  4108. background: url(data:image/png;base64,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) no-repeat right 50%;
  4109. }
  4110. .sorting {
  4111. background: url( data:image/png;base64,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) no-repeat right 50%;
  4112. }
  4113. div.view-wrapper {
  4114. .btn-group {
  4115. margin-bottom: 9px;
  4116. }
  4117. }
  4118. a.ui-icon-circle-close {
  4119. float: right;
  4120. opacity: 0.2;
  4121. padding: 1px;
  4122. position: relative;
  4123. margin-top: 6px;
  4124. z-index: 10;
  4125. &:hover {
  4126. opacity: 0.7;
  4127. }
  4128. }
  4129. .notActive {
  4130. a.ui-icon-circle-close {
  4131. visibility: hidden;
  4132. }
  4133. }
  4134. }
  4135. .page-bar {
  4136. border: 1px solid #E4E4E4;
  4137. color: #7B7B7B;
  4138. text-align: right;
  4139. font-size: 12px;
  4140. label {
  4141. font-size: 12px;
  4142. }
  4143. div {
  4144. display: inline-block;
  4145. margin:0 10px;
  4146. }
  4147. .filtered-hosts-info, .selected-hosts-info {
  4148. text-align: left;
  4149. margin-top: 8px;
  4150. margin-left: 17px;
  4151. }
  4152. .items-on-page {
  4153. label {
  4154. display:inline;
  4155. }
  4156. select {
  4157. margin-bottom: 4px;
  4158. margin-top: 4px;
  4159. width:70px;
  4160. font-size: 12px;
  4161. height: 27px;
  4162. }
  4163. }
  4164. .paging_two_button {
  4165. a.paginate_disabled_next, a.paginate_disabled_previous {
  4166. color: gray;
  4167. &:hover {
  4168. color: gray;
  4169. text-decoration: none;
  4170. cursor: default;
  4171. }
  4172. }
  4173. a.paginate_next, a.paginate_previous {
  4174. &:hover {
  4175. text-decoration: none;
  4176. cursor: pointer;
  4177. }
  4178. }
  4179. a {
  4180. padding:0 5px;
  4181. }
  4182. }
  4183. }
  4184. .status-dot-position {
  4185. background-position: center;
  4186. background-repeat: no-repeat;
  4187. height: 20px;
  4188. width: 13px;
  4189. display: inline;
  4190. float: none;
  4191. }
  4192. .health-status-LIVE {
  4193. .status-dot-position;
  4194. color: @health-status-green;
  4195. }
  4196. .health-status-DEAD-RED {
  4197. .status-dot-position;
  4198. color: @health-status-red;
  4199. }
  4200. .dataset-selected {
  4201. background-color: #E6F1F6;
  4202. }
  4203. .dataset-item {
  4204. cursor: pointer;
  4205. }
  4206. .jobs-container {
  4207. margin-top: 50px;
  4208. border: 1px solid #dddddd;
  4209. border-radius: 4px;
  4210. -moz-border-radius: 4px;
  4211. -webkit-border-radius: 4px;
  4212. padding: 10px
  4213. }
  4214. .dataset-details {
  4215. position: relative;
  4216. height: 100px;
  4217. .top-right {
  4218. position: absolute;
  4219. top: 0;
  4220. right: 10px;
  4221. }
  4222. .top-left {
  4223. position: absolute;
  4224. top: 0;
  4225. left: 10px;
  4226. }
  4227. .bottom-right {
  4228. position: absolute;
  4229. bottom: 5px;
  4230. right: 10px;
  4231. }
  4232. .bottom-left {
  4233. position: absolute;
  4234. bottom: 5px;
  4235. left: 10px;
  4236. }
  4237. .dataset-status {
  4238. padding: 8px;
  4239. font-size: 16px;
  4240. margin-right: 5px;
  4241. }
  4242. td {
  4243. padding: 0 15px 0 0;
  4244. }
  4245. }
  4246. .dataset-instances {
  4247. .icon-play {
  4248. color: green;
  4249. }
  4250. .icon-ok {
  4251. color: green;
  4252. }
  4253. .icon-time {
  4254. color: orange;
  4255. }
  4256. .icon-exclamation-sign {
  4257. color: red;
  4258. }
  4259. .icon-remove {
  4260. color: red;
  4261. }
  4262. .icon-warning-sign {
  4263. color: red;
  4264. }
  4265. .icon-cog {
  4266. color: orange;
  4267. }
  4268. .icon-question-sign {
  4269. color: orange;
  4270. }
  4271. }
  4272. .dataset-thead {
  4273. margin-bottom: 0;
  4274. border-radius: 4px 4px 0 0;
  4275. tr:last-child {
  4276. th {
  4277. border-radius: 0;
  4278. }
  4279. }
  4280. }
  4281. .scrollable-table {
  4282. max-height: 370px;
  4283. overflow-y: auto;
  4284. border-bottom: 1px solid #dddddd;
  4285. border-left: 1px solid #dddddd;
  4286. border-right: 1px solid #dddddd;
  4287. border-radius: 0 0 4px 4px;
  4288. .table {
  4289. margin : 0;
  4290. }
  4291. }
  4292. }
  4293. .mirroring-manage-clusters {
  4294. .cluster-select {
  4295. width: 100%;
  4296. height: 250px;
  4297. margin-bottom: 0;
  4298. }
  4299. .control-label-manage-clusters {
  4300. padding-top: 5px;
  4301. }
  4302. .control-group {
  4303. padding: 0 15px;
  4304. box-sizing: border-box;
  4305. margin-bottom: 10px;
  4306. }
  4307. .input-fluid {
  4308. width: 100%;
  4309. }
  4310. .category-title {
  4311. margin: 15px 0;
  4312. }
  4313. .target-cluster-form {
  4314. padding-left: 15px;
  4315. }
  4316. }
  4317. .spinner-centered {
  4318. position: absolute;
  4319. top: 50%;
  4320. left: 50%;
  4321. }
  4322. .content-loading {
  4323. opacity: 0.5;
  4324. }
  4325. .create-target-cluster-popup {
  4326. .modal {
  4327. width: 650px;
  4328. }
  4329. }
  4330. .form-category {
  4331. border: 1px solid #eeeeee;
  4332. border-radius: 4px;
  4333. padding: 10px;
  4334. }
  4335. .dataset-delete {
  4336. width: 15%;
  4337. }
  4338. .dataset-form {
  4339. width: 85%;
  4340. }
  4341. .mirroring-sidebar {
  4342. hr {
  4343. margin: 0;
  4344. }
  4345. ul {
  4346. margin: 0 0 20px 0;
  4347. li {
  4348. list-style: none;
  4349. margin: 8px 0;
  4350. a {
  4351. cursor: pointer;
  4352. }
  4353. }
  4354. }
  4355. }
  4356. .target-cluster-select {
  4357. option:last-of-type {
  4358. color: #0088cc
  4359. }
  4360. }
  4361. .jobs-sidebar{
  4362. width: 16%;
  4363. height: 100%;
  4364. float:left;
  4365. margin: 0 20px 0 0;
  4366. hr {
  4367. margin: 0;
  4368. }
  4369. ul {
  4370. margin: 0 0 20px 0;
  4371. li {
  4372. list-style: none;
  4373. margin: 8px 0;
  4374. a {
  4375. cursor: pointer;
  4376. }
  4377. }
  4378. }
  4379. }
  4380. .jobs-middleportion{
  4381. width: 82%;
  4382. height: 100%;
  4383. float: right;
  4384. }
  4385. /*End Mirroring*/
  4386. .noDisplay {
  4387. display: none !important;
  4388. }
  4389. .display {
  4390. display: block !important;
  4391. }
  4392. .display-inline-block {
  4393. display: inline-block !important;
  4394. }
  4395. /* CHARTS */
  4396. .chart {
  4397. overflow: hidden;
  4398. /*padding-bottom: 25px;*/
  4399. .attributes {
  4400. width: 75px;
  4401. float: left;
  4402. margin: 45px 0 0 0;
  4403. p {
  4404. margin-bottom: 9px;
  4405. }
  4406. }
  4407. .hostName {
  4408. font-weight: bold;
  4409. }
  4410. .horizon {
  4411. border-bottom: 1px solid #000000;
  4412. overflow: hidden;
  4413. position: relative;
  4414. }
  4415. .horizon {
  4416. border-bottom: 1px solid #000000;
  4417. border-top: 1px solid #000000;
  4418. }
  4419. .horizon + .horizon {
  4420. border-top: medium none;
  4421. }
  4422. .horizon canvas {
  4423. display: block;
  4424. }
  4425. .horizon .title, .horizon .value {
  4426. bottom: 0;
  4427. line-height: 30px;
  4428. margin: 0 6px;
  4429. position: absolute;
  4430. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  4431. white-space: nowrap;
  4432. }
  4433. .horizon .title {
  4434. left: 0;
  4435. }
  4436. .horizon .value {
  4437. right: 0;
  4438. }
  4439. .rule {
  4440. display: none;
  4441. width: 30px;
  4442. height: 124px;
  4443. padding-top: 27px;
  4444. position: absolute;
  4445. border-left: 1px dashed #a52a2a;
  4446. .stateValue {
  4447. margin: 15px 0 0 3px;
  4448. line-height: 15px;
  4449. }
  4450. }
  4451. .axis {
  4452. font: 10px sans-serif;
  4453. path {
  4454. display: none;
  4455. }
  4456. line {
  4457. shape-rendering: crispedges;
  4458. stroke: #000000;
  4459. }
  4460. }
  4461. .line {
  4462. background: none repeat scroll 0 0 #000000;
  4463. /* opacity: 0.2; */
  4464. z-index: 2;
  4465. }
  4466. ul.dropdown-menu {
  4467. li {
  4468. text-align: left;
  4469. }
  4470. }
  4471. }
  4472. .linear {
  4473. path {
  4474. stroke: steelblue;
  4475. stroke-width: 2;
  4476. fill: none;
  4477. }
  4478. line {
  4479. stroke: black;
  4480. }
  4481. text {
  4482. font-family: Arial;
  4483. font-size: 9pt;
  4484. }
  4485. }
  4486. /* CHARTS END */
  4487. /* UNIVERSAL STYLES */
  4488. .align-right {
  4489. text-align: right;
  4490. }
  4491. .text-center {
  4492. text-align: center;
  4493. }
  4494. .left {
  4495. float: left;
  4496. }
  4497. .no-borders {
  4498. border: none !important;
  4499. }
  4500. ul.noStyle {
  4501. list-style: none;
  4502. }
  4503. ul.inline li {
  4504. display: inline;
  4505. }
  4506. .table.no-borders th, .table.no-borders td {
  4507. border-top: none;
  4508. }
  4509. /* UNIVERSAL STYLES END */
  4510. /* METRIC FILTERING WIDGET */
  4511. .metric-filtering-widget {
  4512. .title {
  4513. padding-top: 4px;
  4514. }
  4515. .accordion {
  4516. background: none repeat scroll 0 0 #FFFFFF;
  4517. /*border: 1px solid;*/
  4518. font-size: 12px;
  4519. /*padding: 5px 0;*/
  4520. position: absolute;
  4521. z-index: 1000;
  4522. .accordion-group {
  4523. .accordion-heading {
  4524. i {
  4525. text-decoration: none;
  4526. }
  4527. }
  4528. .accordion-body {
  4529. .accordion-inner {
  4530. /*border: none;
  4531. padding: 0 8px;
  4532. width: 160px;*/
  4533. ul.items {
  4534. list-style: none;
  4535. li {
  4536. a:hover {
  4537. cursor: pointer;
  4538. }
  4539. }
  4540. li.disabled {
  4541. a {
  4542. color: #999999;
  4543. }
  4544. }
  4545. }
  4546. }
  4547. }
  4548. }
  4549. }
  4550. }
  4551. /* METRIC FILTERING WIDGET END */
  4552. /* TIME RANGE WIDGET */
  4553. /* start css for timepicker */
  4554. .ui-timepicker-div .ui-widget-header {
  4555. margin-bottom: 8px;
  4556. }
  4557. .ui-timepicker-div dl {
  4558. text-align: left;
  4559. }
  4560. .ui-timepicker-div dl dt {
  4561. height: 25px;
  4562. margin-bottom: -25px;
  4563. }
  4564. .ui-timepicker-div dl dd {
  4565. margin: 0 10px 10px 65px;
  4566. }
  4567. .ui-timepicker-div td {
  4568. font-size: 90%;
  4569. }
  4570. .ui-tpicker-grid-label {
  4571. background: none;
  4572. border: none;
  4573. margin: 0;
  4574. padding: 0;
  4575. }
  4576. .ui-timepicker-rtl {
  4577. direction: rtl;
  4578. }
  4579. .ui-timepicker-rtl dl {
  4580. text-align: right;
  4581. }
  4582. .ui-timepicker-rtl dl dd {
  4583. margin: 0 65px 10px 10px;
  4584. }
  4585. /* end css for timepicker */
  4586. #slider {
  4587. margin: 10px 0 40px;
  4588. width: 330px;
  4589. .now-marker {
  4590. position: absolute;
  4591. right: -15px;
  4592. bottom: -23px;
  4593. }
  4594. .period-marker {
  4595. position: absolute;
  4596. left: -15px;
  4597. bottom: -23px;
  4598. }
  4599. }
  4600. .screensaver {
  4601. width: 90%;
  4602. height: 157px;
  4603. border: 1px solid silver;
  4604. margin: 20px 15px 10px 15px;
  4605. background: url(/img/spinner.gif) no-repeat center center;
  4606. }
  4607. /* TIME RANGE WIDGET END */
  4608. #host-details .host-components .btn-group > .btn {
  4609. width: 140px;
  4610. }
  4611. /* fieldset begin */
  4612. .fieldset {
  4613. border: 2px solid black;
  4614. padding: 10px;
  4615. }
  4616. .fieldset legend {
  4617. border-bottom: none;
  4618. width: auto;
  4619. font-size: 14px;
  4620. }
  4621. /* fieldset end */
  4622. /* Start Carousel */
  4623. .carousel-inner {
  4624. height: 80px;
  4625. }
  4626. /* End Carousel*/
  4627. #add-host .back {
  4628. display: block;
  4629. width: 105px;
  4630. margin-bottom: 10px;
  4631. }
  4632. #add-service .back {
  4633. display: block;
  4634. width: 130px;
  4635. margin-bottom: 10px;
  4636. }
  4637. #step8-content {
  4638. ul {
  4639. li {
  4640. list-style: none;
  4641. }
  4642. }
  4643. max-height: 440px;
  4644. }
  4645. .log_popup {
  4646. .bar {
  4647. -webkit-transition: width 0.0s ease;
  4648. -moz-transition: width 0.0s ease;
  4649. -ms-transition: width 0.0s ease;
  4650. -o-transition: width 0.0s ease;
  4651. transition: width 0.0s ease;
  4652. }
  4653. }
  4654. #step10-content {
  4655. ul {
  4656. li {
  4657. list-style: none;
  4658. }
  4659. }
  4660. max-height: 440px;
  4661. }
  4662. .content-area {
  4663. position: relative;
  4664. .textTrigger {
  4665. cursor: pointer;
  4666. position: absolute;
  4667. right: 0;
  4668. top: 0;
  4669. visibility: hidden;
  4670. background-color: #dcdcdc;
  4671. }
  4672. }
  4673. //bootstrap
  4674. //.dropdown-menu .active > a, .dropdown-menu .active > a:hover {
  4675. // background-color: #49AFCD;
  4676. // background-image: -moz-linear-gradient(center top, #5BC0DE, #2F96B4);
  4677. //}
  4678. //bootstrap end
  4679. // COMBOBOX FIXES
  4680. .combobox-container .btn:hover {
  4681. background-position: 0;
  4682. }
  4683. // COMBOBOX FIXES END
  4684. @media all and (max-width: 1200px) {
  4685. #main-nav {
  4686. li.span2 {
  4687. width: 120px;
  4688. }
  4689. }
  4690. #hosts {
  4691. .table {
  4692. .col2,
  4693. td:first-child + td + td,
  4694. th:first-child + th + th {
  4695. width: 25%!important;
  4696. .filter-input-width{
  4697. width:80%;
  4698. }
  4699. }
  4700. .col6,
  4701. td:first-child + td + td + td + td + td + td,
  4702. th:first-child + th + th + th + th + th + th{
  4703. width: 12%!important;
  4704. }
  4705. .col7,
  4706. td:first-child + td + td + td + td + td + td + td,
  4707. th:first-child + th + th + th + th + th + th + th{
  4708. width: 10%!important;
  4709. }
  4710. .col8,
  4711. td:first-child + td + td + td + td + td + td + td + td,
  4712. th:first-child + th + th + th + th + th + th + th + th{
  4713. width: 11%!important;
  4714. }
  4715. .col9,
  4716. td:first-child + td + td + td + td + td + td + td + td + td,
  4717. th:first-child + th + th + th + th + th + th + th + th + th{
  4718. width: 10%!important;
  4719. }
  4720. td.name .trim_hostname{
  4721. width: 90%!important;
  4722. }
  4723. }
  4724. }
  4725. // when the scree is narrow, the popup modal width is adjustable
  4726. .full-width-modal {
  4727. .modal{
  4728. width: 90%;
  4729. margin: 350px 0 0 -45%;
  4730. }
  4731. }
  4732. .service-menu-width {
  4733. width: 163px!important;
  4734. }
  4735. .summary-width {
  4736. width:757px!important
  4737. }
  4738. .assign-masters {
  4739. .host-assignments {
  4740. margin-left: 0;
  4741. width: 32%;
  4742. }
  4743. .select-hosts {
  4744. width: 68%;
  4745. }
  4746. }
  4747. .wizard-content {
  4748. #serviceConfig {
  4749. .alert {
  4750. padding-right: 10px!important;
  4751. }
  4752. }
  4753. .filter-combobox {
  4754. > input {
  4755. width: 115px!important;
  4756. }
  4757. }
  4758. }
  4759. }
  4760. //
  4761. // Gray palette
  4762. //
  4763. .nav-pills > .active > a, .nav-pills > .active > a:hover {
  4764. background-color: #666666;
  4765. }
  4766. .nav-list > .active > a, .nav-list > .active > a:hover {
  4767. background-color: #666666;
  4768. }
  4769. li.break {
  4770. background: none repeat scroll 0 0 #e4e4e4;
  4771. padding-top: 1px;
  4772. }
  4773. .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a {
  4774. background-color: #666666;
  4775. background-image: linear-gradient(to bottom, #666666, #555555);
  4776. }
  4777. .alert-info {
  4778. background-color: #E6F1F6;
  4779. border-color: #D2D9DD;
  4780. color: #4E575B;
  4781. text-shadow: none;
  4782. .link {
  4783. padding: 0 15px;
  4784. }
  4785. .link-left-pad {
  4786. padding-left:15px;
  4787. }
  4788. }
  4789. #reload_popup {
  4790. .spinner {
  4791. padding: 8px 35px 0px 42px;
  4792. width: auto;
  4793. background: url(/img/spinner.gif) no-repeat;
  4794. }
  4795. }
  4796. /*
  4797. .progress-striped .bar {
  4798. background-color: #A5A5A5;
  4799. }
  4800. .progress-info.progress-striped .bar, .progress-striped .bar-info {
  4801. background-color: #A5A5A5;
  4802. }
  4803. */
  4804. .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  4805. background-color: #555555;
  4806. }
  4807. .modal-body {
  4808. max-height: none;
  4809. .api-error {
  4810. max-height: 403px;
  4811. word-wrap:break-word;
  4812. overflow: auto;
  4813. }
  4814. }
  4815. i.icon-asterisks {
  4816. color: #FF4B4B;
  4817. }
  4818. .rickshaw_legend {
  4819. .action {
  4820. opacity: 1;
  4821. color: #ffffff;
  4822. }
  4823. .action:hover {
  4824. opacity: 0.8;
  4825. text-decoration: none;
  4826. }
  4827. }
  4828. .hidden {
  4829. display: none;
  4830. visibility: hidden;
  4831. }
  4832. .code-snippet {
  4833. background-color: #EEEEEE;
  4834. border: 1px dashed #CCCCCC;
  4835. font-family: Courier;
  4836. font-size: 12px;
  4837. padding: 4px;
  4838. white-space: nowrap;
  4839. }
  4840. //styles for screen width more than 1200px
  4841. @media (min-width: 1200px) {
  4842. //when screen is wide, the modal width is fixed
  4843. .full-width-modal {
  4844. .modal{
  4845. width: 1155px;
  4846. margin: -350px 0 0 -583px;
  4847. }
  4848. }
  4849. .row {
  4850. margin-left: -30px;
  4851. *zoom: 1;
  4852. }
  4853. .row:before,
  4854. .row:after {
  4855. display: table;
  4856. line-height: 0;
  4857. content: "";
  4858. }
  4859. .row:after {
  4860. clear: both;
  4861. }
  4862. [class*="span"] {
  4863. float: left;
  4864. min-height: 1px;
  4865. margin-left: 30px;
  4866. }
  4867. .container,
  4868. .navbar-static-top .container,
  4869. .navbar-fixed-top .container,
  4870. .navbar-fixed-bottom .container {
  4871. width: 1130px;
  4872. }
  4873. .main-container {
  4874. width: 1170px;
  4875. }
  4876. .span12 {
  4877. width: 1170px;
  4878. }
  4879. .span11 {
  4880. width: 1070px;
  4881. }
  4882. .span10 {
  4883. width: 970px;
  4884. }
  4885. .span9 {
  4886. width: 870px;
  4887. }
  4888. .span8 {
  4889. width: 770px;
  4890. }
  4891. .span7 {
  4892. width: 670px;
  4893. }
  4894. .span6 {
  4895. width: 570px;
  4896. }
  4897. .span5 {
  4898. width: 470px;
  4899. }
  4900. .span4 {
  4901. width: 370px;
  4902. }
  4903. .span3 {
  4904. width: 270px;
  4905. }
  4906. .span2 {
  4907. width: 170px;
  4908. }
  4909. .span1 {
  4910. width: 70px;
  4911. }
  4912. .offset12 {
  4913. margin-left: 1230px;
  4914. }
  4915. .offset11 {
  4916. margin-left: 1130px;
  4917. }
  4918. .offset10 {
  4919. margin-left: 1030px;
  4920. }
  4921. .offset9 {
  4922. margin-left: 930px;
  4923. }
  4924. .offset8 {
  4925. margin-left: 830px;
  4926. }
  4927. .offset7 {
  4928. margin-left: 730px;
  4929. }
  4930. .offset6 {
  4931. margin-left: 630px;
  4932. }
  4933. .offset5 {
  4934. margin-left: 530px;
  4935. }
  4936. .offset4 {
  4937. margin-left: 430px;
  4938. }
  4939. .offset3 {
  4940. margin-left: 330px;
  4941. }
  4942. .offset2 {
  4943. margin-left: 230px;
  4944. }
  4945. .offset1 {
  4946. margin-left: 130px;
  4947. }
  4948. .row-fluid {
  4949. width: 100%;
  4950. *zoom: 1;
  4951. }
  4952. .row-fluid:before,
  4953. .row-fluid:after {
  4954. display: table;
  4955. line-height: 0;
  4956. content: "";
  4957. }
  4958. .row-fluid:after {
  4959. clear: both;
  4960. }
  4961. .row-fluid [class*="span"] {
  4962. display: block;
  4963. float: left;
  4964. width: 100%;
  4965. min-height: 30px;
  4966. margin-left: 2.564102564102564%;
  4967. *margin-left: 2.5109110747408616%;
  4968. -webkit-box-sizing: border-box;
  4969. -moz-box-sizing: border-box;
  4970. box-sizing: border-box;
  4971. }
  4972. .row-fluid [class*="span"]:first-child {
  4973. margin-left: 0;
  4974. }
  4975. .row-fluid .top-portion{
  4976. width : 100%;
  4977. height : 50px;
  4978. }
  4979. .row-fluid .span12 {
  4980. width: 100%;
  4981. *width: 99.94680851063829%;
  4982. }
  4983. .row-fluid .span11 {
  4984. width: 91.45299145299145%;
  4985. *width: 91.39979996362975%;
  4986. }
  4987. .row-fluid .span10 {
  4988. width: 82.90598290598291%;
  4989. *width: 82.8527914166212%;
  4990. }
  4991. .row-fluid .span9 {
  4992. width: 74.35897435897436%;
  4993. *width: 74.30578286961266%;
  4994. }
  4995. .row-fluid .span8 {
  4996. width: 65.81196581196582%;
  4997. *width: 65.75877432260411%;
  4998. }
  4999. .row-fluid .span7 {
  5000. width: 57.26495726495726%;
  5001. *width: 57.21176577559556%;
  5002. }
  5003. .row-fluid .span6 {
  5004. width: 48.717948717948715%;
  5005. *width: 48.664757228587014%;
  5006. }
  5007. .row-fluid .span5 {
  5008. width: 40.17094017094017%;
  5009. *width: 40.11774868157847%;
  5010. }
  5011. .row-fluid .span4 {
  5012. width: 31.623931623931625%;
  5013. *width: 31.570740134569924%;
  5014. }
  5015. .row-fluid .span3 {
  5016. width: 23.076923076923077%;
  5017. *width: 23.023731587561375%;
  5018. }
  5019. .row-fluid .span2 {
  5020. width: 14.52991452991453%;
  5021. *width: 14.476723040552828%;
  5022. }
  5023. .row-fluid .span1 {
  5024. width: 5.982905982905983%;
  5025. *width: 5.929714493544281%;
  5026. }
  5027. .row-fluid .tinyspan {
  5028. width: 2%;
  5029. }
  5030. .row-fluid .offset12 {
  5031. margin-left: 105.12820512820512%;
  5032. *margin-left: 105.02182214948171%;
  5033. }
  5034. .row-fluid .offset12:first-child {
  5035. margin-left: 102.56410256410257%;
  5036. *margin-left: 102.45771958537915%;
  5037. }
  5038. .row-fluid .offset11 {
  5039. margin-left: 96.58119658119658%;
  5040. *margin-left: 96.47481360247316%;
  5041. }
  5042. .row-fluid .offset11:first-child {
  5043. margin-left: 94.01709401709402%;
  5044. *margin-left: 93.91071103837061%;
  5045. }
  5046. .row-fluid .offset10 {
  5047. margin-left: 88.03418803418803%;
  5048. *margin-left: 87.92780505546462%;
  5049. }
  5050. .row-fluid .offset10:first-child {
  5051. margin-left: 85.47008547008548%;
  5052. *margin-left: 85.36370249136206%;
  5053. }
  5054. .row-fluid .offset9 {
  5055. margin-left: 79.48717948717949%;
  5056. *margin-left: 79.38079650845607%;
  5057. }
  5058. .row-fluid .offset9:first-child {
  5059. margin-left: 76.92307692307693%;
  5060. *margin-left: 76.81669394435352%;
  5061. }
  5062. .row-fluid .offset8 {
  5063. margin-left: 70.94017094017094%;
  5064. *margin-left: 70.83378796144753%;
  5065. }
  5066. .row-fluid .offset8:first-child {
  5067. margin-left: 68.37606837606839%;
  5068. *margin-left: 68.26968539734497%;
  5069. }
  5070. .row-fluid .offset7 {
  5071. margin-left: 62.393162393162385%;
  5072. *margin-left: 62.28677941443899%;
  5073. }
  5074. .row-fluid .offset7:first-child {
  5075. margin-left: 59.82905982905982%;
  5076. *margin-left: 59.72267685033642%;
  5077. }
  5078. .row-fluid .offset6 {
  5079. margin-left: 53.84615384615384%;
  5080. *margin-left: 53.739770867430444%;
  5081. }
  5082. .row-fluid .offset6:first-child {
  5083. margin-left: 51.28205128205128%;
  5084. *margin-left: 51.175668303327875%;
  5085. }
  5086. .row-fluid .offset5 {
  5087. margin-left: 45.299145299145295%;
  5088. *margin-left: 45.1927623204219%;
  5089. }
  5090. .row-fluid .offset5:first-child {
  5091. margin-left: 42.73504273504273%;
  5092. *margin-left: 42.62865975631933%;
  5093. }
  5094. .row-fluid .offset4 {
  5095. margin-left: 36.75213675213675%;
  5096. *margin-left: 36.645753773413354%;
  5097. }
  5098. .row-fluid .offset4:first-child {
  5099. margin-left: 34.18803418803419%;
  5100. *margin-left: 34.081651209310785%;
  5101. }
  5102. .row-fluid .offset3 {
  5103. margin-left: 28.205128205128204%;
  5104. *margin-left: 28.0987452264048%;
  5105. }
  5106. .row-fluid .offset3:first-child {
  5107. margin-left: 25.641025641025642%;
  5108. *margin-left: 25.53464266230224%;
  5109. }
  5110. .row-fluid .offset2 {
  5111. margin-left: 19.65811965811966%;
  5112. *margin-left: 19.551736679396257%;
  5113. }
  5114. .row-fluid .offset2:first-child {
  5115. margin-left: 17.094017094017094%;
  5116. *margin-left: 16.98763411529369%;
  5117. }
  5118. .row-fluid .offset1 {
  5119. margin-left: 11.11111111111111%;
  5120. *margin-left: 11.004728132387708%;
  5121. }
  5122. .row-fluid .offset1:first-child {
  5123. margin-left: 8.547008547008547%;
  5124. *margin-left: 8.440625568285142%;
  5125. }
  5126. .row-fluid .tinyoffset {
  5127. margin-left: 3%!important;
  5128. }
  5129. input,
  5130. textarea,
  5131. .uneditable-input {
  5132. margin-left: 0;
  5133. }
  5134. .controls-row [class*="span"] + [class*="span"] {
  5135. margin-left: 30px;
  5136. }
  5137. input.span12,
  5138. textarea.span12,
  5139. .uneditable-input.span12 {
  5140. width: 1156px;
  5141. }
  5142. input.span11,
  5143. textarea.span11,
  5144. .uneditable-input.span11 {
  5145. width: 1056px;
  5146. }
  5147. input.span10,
  5148. textarea.span10,
  5149. .uneditable-input.span10 {
  5150. width: 956px;
  5151. }
  5152. input.span9,
  5153. textarea.span9,
  5154. .uneditable-input.span9 {
  5155. width: 856px;
  5156. }
  5157. input.span8,
  5158. textarea.span8,
  5159. .uneditable-input.span8 {
  5160. width: 756px;
  5161. }
  5162. input.span7,
  5163. textarea.span7,
  5164. .uneditable-input.span7 {
  5165. width: 656px;
  5166. }
  5167. input.span6,
  5168. textarea.span6,
  5169. .uneditable-input.span6 {
  5170. width: 556px;
  5171. }
  5172. input.span5,
  5173. textarea.span5,
  5174. .uneditable-input.span5 {
  5175. width: 456px;
  5176. }
  5177. input.span4,
  5178. textarea.span4,
  5179. .uneditable-input.span4 {
  5180. width: 356px;
  5181. }
  5182. input.span3,
  5183. textarea.span3,
  5184. .uneditable-input.span3 {
  5185. width: 256px;
  5186. }
  5187. input.span2,
  5188. textarea.span2,
  5189. .uneditable-input.span2 {
  5190. width: 156px;
  5191. }
  5192. input.span1,
  5193. textarea.span1,
  5194. .uneditable-input.span1 {
  5195. width: 56px;
  5196. }
  5197. .thumbnails {
  5198. margin-left: -30px;
  5199. }
  5200. .thumbnails > li {
  5201. margin-left: 30px;
  5202. }
  5203. .row-fluid .thumbnails {
  5204. margin-left: 0;
  5205. }
  5206. #dashboard-widgets-container{
  5207. .add-widget-button{
  5208. margin-left: 9px; //3px for 3 buttons view
  5209. }
  5210. .more-options-button{
  5211. margin-right: 2px;
  5212. }
  5213. #dashboard-widgets{
  5214. .row-fluid .span2p4 {
  5215. width: 19.08%;
  5216. *width: 19.08%;
  5217. }
  5218. .row-fluid .span4p8 {
  5219. width: 39%;
  5220. *width: 39%;
  5221. }
  5222. .thumbnails > div {
  5223. margin-right: 8px;
  5224. }
  5225. .thumbnail .caption {
  5226. font-size: 14px;
  5227. }
  5228. .thumbnail .hidden-info-two-line {
  5229. font-size: 14px;
  5230. }
  5231. .thumbnail .hidden-info-three-line{
  5232. font-size: 14px;
  5233. }
  5234. .thumbnail .hidden-info-five-line{
  5235. font-size: 12px;
  5236. }
  5237. .thumbnail .hidden-info-six-line{
  5238. font-size: 12px;
  5239. }
  5240. .links .thumbnail .widget-content{
  5241. font-weight: bold;
  5242. font-size: 12px;
  5243. }
  5244. .links .thumbnail .link-button{
  5245. padding-left: 100px;
  5246. }
  5247. #map-reduce-slots-text{
  5248. font-size: 12px;
  5249. #map-reduce-slots-bar1{
  5250. margin-left: 11px;
  5251. }
  5252. }
  5253. }
  5254. }
  5255. .summary-metric-graphs {
  5256. [class*="span"] {
  5257. float: left;
  5258. margin-left: 10px;
  5259. }
  5260. .chart-container {
  5261. .chart-x-axis {
  5262. left: 0%;
  5263. width: 100%;
  5264. }
  5265. }
  5266. }
  5267. }
  5268. .filter-combobox{
  5269. > input{
  5270. width: 170px;
  5271. -webkit-border-radius: 4px 0 0 4px;
  5272. -moz-border-radius: 4px 0 0 4px;
  5273. border-radius: 4px 0 0 4px;
  5274. }
  5275. > .btn-group{
  5276. display: inline-block;
  5277. margin-left: -1px;
  5278. > .dropdown-toggle{
  5279. border-top-left-radius: 0;
  5280. border-bottom-left-radius: 0
  5281. }
  5282. .dropdown-menu{
  5283. left: auto;
  5284. right:0;
  5285. }
  5286. }
  5287. }
  5288. #advancedRepoAccordion{
  5289. .accordion-heading {
  5290. background-color: #f0f0f0;
  5291. a:hover {
  5292. text-decoration: none;
  5293. }
  5294. }
  5295. .accordion-body {
  5296. .table thead {
  5297. }
  5298. .table tbody{
  5299. .label-error{
  5300. color: #b94a48;
  5301. }
  5302. .textfield-error input{
  5303. border-color: #b94a48;
  5304. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  5305. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  5306. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  5307. }
  5308. .disabled-textfield input{
  5309. color: #808080;
  5310. disabled: disabled;
  5311. pointer-events: none;
  5312. cursor: default;
  5313. background: #E4E4E4;
  5314. }
  5315. .disabled-label {
  5316. color: #808080;
  5317. }
  5318. .group-checkbox {
  5319. width: 3%;
  5320. vertical-align: middle;
  5321. padding-left: 2px;
  5322. padding-right: 2px;
  5323. }
  5324. .os {
  5325. padding: 2px;
  5326. border-top: transparent;
  5327. }
  5328. .os-td {
  5329. width: 17%;
  5330. padding: 2px;
  5331. vertical-align: middle;
  5332. }
  5333. .url {
  5334. width: 65%;
  5335. }
  5336. .url-results {
  5337. width: 65%;
  5338. vertical-align: middle;
  5339. .ember-text-field {
  5340. width: 100%;
  5341. }
  5342. }
  5343. .validation {
  5344. width: 3%;
  5345. }
  5346. .validation-results {
  5347. width: 3%;
  5348. vertical-align: middle;
  5349. padding-top: 0px;
  5350. padding-left: 4px;
  5351. padding-right: 4px;
  5352. .icon-exclamation-sign {
  5353. color: #b94a48;
  5354. }
  5355. }
  5356. .clearAll-icon {
  5357. width: 2%;
  5358. vertical-align: middle;
  5359. padding-top: 0px;
  5360. padding-left: 4px;
  5361. padding-right: 4px;
  5362. a {
  5363. cursor: pointer;
  5364. text-decoration: none;
  5365. }
  5366. .icon-remove-sign {
  5367. color: #808080;
  5368. }
  5369. }
  5370. .action {
  5371. width: 10%;
  5372. }
  5373. .action-results {
  5374. width: 10%;
  5375. vertical-align: middle;
  5376. padding-top: 0px;
  5377. padding-left: 4px;
  5378. padding-right: 4px;
  5379. a {
  5380. cursor: pointer;
  5381. }
  5382. .icon-undo {
  5383. color: rgb(243, 178, 11);
  5384. margin-right: 2px;
  5385. }
  5386. }
  5387. }
  5388. #skip-validation {
  5389. .checkbox {
  5390. margin-left: 3px;
  5391. margin-right: 8px;
  5392. margin-top: 0px;
  5393. }
  5394. .icon-question-sign {
  5395. color: @blue;
  5396. }
  5397. }
  5398. }
  5399. }
  5400. #config-group-select-create-dialog {
  5401. .select-create-config-group-div {
  5402. margin-left: 20px;
  5403. margin-bottom: 20px;
  5404. }
  5405. .message{
  5406. color: #777;
  5407. }
  5408. }
  5409. #config-group-confirm-save {
  5410. .message{
  5411. color: #777;
  5412. padding-left: 10px;
  5413. }
  5414. }
  5415. .manage-configuration-group-popup {
  5416. .modal{
  5417. max-height: 600px;
  5418. }
  5419. .modal-body {
  5420. max-height: 450px;
  5421. }
  5422. .group-select {
  5423. width: 100%;
  5424. height: 250px;
  5425. }
  5426. .btn-toolbar {
  5427. margin-top: 0px;
  5428. }
  5429. .manage-configuration-group-content {
  5430. margin-bottom: 0px;
  5431. .group-description {
  5432. height:40px;
  5433. overflow-y: auto;
  5434. white-space: pre;
  5435. }
  5436. }
  5437. }
  5438. .new-config-group-div {
  5439. td {
  5440. vertical-align: top;
  5441. }
  5442. .textarea-full-width {
  5443. padding-right: 10px;
  5444. textarea {
  5445. width: 100%;
  5446. margin: 0;
  5447. }
  5448. }
  5449. }
  5450. .prrl {
  5451. position: relative;
  5452. right: @space-m;
  5453. }
  5454. .pts {
  5455. padding-top: @space-s;
  5456. }
  5457. .mlc {
  5458. margin-left: 0;
  5459. }
  5460. #cleanerContainer {
  5461. z-index: 2;
  5462. position: absolute;
  5463. left: -20px;
  5464. width: 16px;
  5465. margin-top: 7px;
  5466. #filterCleaner {
  5467. opacity: .5;
  5468. }
  5469. #filterCleaner:hover {
  5470. opacity: .9;
  5471. }
  5472. }
  5473. .margin-bottom-5 {
  5474. margin-bottom: 5px;
  5475. }
  5476. .rolling-restart-view {
  5477. table {
  5478. td:first-of-type {
  5479. width: 30%;
  5480. text-align: right;
  5481. }
  5482. td:nth-of-type(2) {
  5483. input {
  5484. margin-left: 7px;
  5485. margin-right: 5px;
  5486. }
  5487. }
  5488. td:last-of-type {
  5489. width: 60%;
  5490. text-align: left;
  5491. }
  5492. tr:last-of-type {
  5493. td {
  5494. input {
  5495. vertical-align: top;
  5496. }
  5497. }
  5498. }
  5499. }
  5500. }
  5501. .host-select[disabled] {
  5502. background-color: #848484;
  5503. color: #FFF;
  5504. }
  5505. #hive-job-details {
  5506. #toggle-query {
  5507. margin-left: 20px;
  5508. }
  5509. .query-info{
  5510. display: none;
  5511. margin-top: 10px;
  5512. }
  5513. #job-more-details-table {
  5514. td {
  5515. vertical-align: top;
  5516. }
  5517. td:first-child {
  5518. font-weight: bold;
  5519. padding-right: 7px;
  5520. }
  5521. a {
  5522. cursor: pointer;
  5523. }
  5524. }
  5525. .sections {
  5526. margin-top: 10px;
  5527. }
  5528. #tez-vertices-table-section {
  5529. display: block;
  5530. }
  5531. #tez-vertices-table-container {
  5532. max-height: 300px;
  5533. overflow-y: auto;
  5534. margin-bottom: 7px;
  5535. border-bottom: 1px solid #dddddd;
  5536. border-top: 1px solid #dddddd;
  5537. border-radius: 4px;
  5538. table {
  5539. margin-bottom: 0px;
  5540. .sorting_asc {
  5541. background: url(data:image/png;base64,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) no-repeat right 50%;
  5542. }
  5543. .sorting_desc {
  5544. background: url(data:image/png;base64,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) no-repeat right 50%;
  5545. }
  5546. .sorting {
  5547. background: url(data:image/png;base64,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) no-repeat right 50%;
  5548. }
  5549. }
  5550. }
  5551. #tez-vertex-details-section-body {
  5552. td {
  5553. border-top: none;
  5554. }
  5555. tr td:first-child {
  5556. font-weight: bold;
  5557. width: 20%;
  5558. overflow: auto;
  5559. }
  5560. textarea {
  5561. width: 95%;
  5562. margin-left: 10px;
  5563. }
  5564. }
  5565. }
  5566. .prompt-popup {
  5567. form {
  5568. margin-top: 20px;
  5569. }
  5570. .prompt-input {
  5571. width: 520px;
  5572. }
  5573. }
  5574. /***************
  5575. * Tez DAG section
  5576. ***************/
  5577. #tez-dag-section {
  5578. padding-left: 7px;
  5579. padding-top: 5px;
  5580. overflow: hidden;
  5581. #tez-dag-section-top-bar-actions {
  5582. margin-right: 7px;
  5583. }
  5584. }
  5585. #tez-dag-section-body {
  5586. display: block;
  5587. }
  5588. #tez-dag-section-body-dag {
  5589. overflow-y: hidden;
  5590. .heat-0-20 {
  5591. fill: #ffffff;
  5592. }
  5593. .heat-20-40 {
  5594. fill: #aaaaaa;
  5595. }
  5596. .heat-40-60 {
  5597. fill: #ffff00;
  5598. }
  5599. .heat-60-80 {
  5600. fill: #FFC000;
  5601. }
  5602. .heat-80-100 {
  5603. fill: #ff0000;
  5604. }
  5605. .heat-none {
  5606. fill: #999999;
  5607. }
  5608. #tez-dag-svg {
  5609. .link line {
  5610. stroke: #696969;
  5611. }
  5612. .link line.separator {
  5613. stroke: #fff;
  5614. stroke-width: 2px;
  5615. }
  5616. text {
  5617. font-weight: lighter;
  5618. }
  5619. .tez-root-rect {
  5620. fill: white;
  5621. stroke: white;
  5622. opacity: 0;
  5623. stroke-opacity: 0;
  5624. }
  5625. .debug {
  5626. fill: green;
  5627. opacity: 0.2;
  5628. }
  5629. .node {
  5630. .background.map {
  5631. fill: #fde0dd;
  5632. stroke: #bbbbbb;
  5633. }
  5634. .background.reduce {
  5635. fill: #DBD4EB;
  5636. stroke: #bbbbbb;
  5637. }
  5638. .background.union {
  5639. fill: #BCE6DD;
  5640. stroke: #bbbbbb;
  5641. }
  5642. .background.unknown-vertex-type {
  5643. fill: #EBE8CC;
  5644. stroke: #bbbbbb;
  5645. }
  5646. .background.selected {
  5647. stroke: #3a87ad;
  5648. }
  5649. .background {
  5650. stroke-width: 6px;
  5651. fill: #c0c0c0;
  5652. stroke: #999999;
  5653. cursor: pointer;
  5654. }
  5655. .metric {
  5656. rect {
  5657. opacity: 0.6;
  5658. }
  5659. text {
  5660. font-size: 90%;
  5661. }
  5662. }
  5663. .operation {
  5664. fill: #3F66E8;
  5665. opacity: 0.5;
  5666. cursor: pointer;
  5667. text {
  5668. font-size: 80%;
  5669. }
  5670. }
  5671. .vertex-icon-text {
  5672. stroke-width: 0;
  5673. opacity: 0.9;
  5674. }
  5675. .vertex-icon-rect {
  5676. opacity: 0;
  5677. }
  5678. .vertex-icon-text.running,
  5679. .vertex-icon-text.initializing,
  5680. .vertex-icon-text.succeeded,
  5681. .vertex-icon-text.inited {
  5682. fill: green;
  5683. stroke: green;
  5684. }
  5685. .vertex-icon-text.new {
  5686. fill: #fde0dd;
  5687. stroke: cornflowerblue;
  5688. stroke-width: 1;
  5689. }
  5690. .vertex-icon-text.failed,
  5691. .vertex-icon-text.killed,
  5692. .vertex-icon-text.error,
  5693. .vertex-icon-text.terminating {
  5694. fill: red;
  5695. stroke: red;
  5696. }
  5697. }
  5698. .node text {
  5699. pointer-events: none;
  5700. }
  5701. path.link {
  5702. fill: none;
  5703. stroke: #666;
  5704. stroke-width: 5px;
  5705. opacity: 0.6;
  5706. }
  5707. path.link.type-broadcast {
  5708. stroke: teal;
  5709. }
  5710. path.link.type-scatter_gather {
  5711. stroke: orange;
  5712. stroke-dasharray: 10,3;
  5713. }
  5714. path.link.type-contains {
  5715. stroke: green;
  5716. stroke-dasharray: 10,2,5,2;
  5717. }
  5718. path.link.type-unknown {
  5719. stroke: gray;
  5720. }
  5721. }
  5722. }
  5723. .views_sizes {
  5724. width:100%;
  5725. min-height:600px;
  5726. }
  5727. #flume-summary {
  5728. text-align:left !important;
  5729. max-height: 490px;
  5730. #flume-agents-table {
  5731. margin: 0;
  5732. width: 100%;
  5733. .highlight {
  5734. td, th {
  5735. background-color: #BDC3C7;
  5736. color: #666;
  5737. }
  5738. }
  5739. td.agent-status {
  5740. width: 14px;
  5741. overflow: hidden;
  5742. }
  5743. td.agent-name {
  5744. width: 20%;
  5745. overflow: hidden;
  5746. }
  5747. td.agent-host-name {
  5748. width: 20%;
  5749. overflow: hidden;
  5750. max-width: 90px;
  5751. }
  5752. .icon-ok-sign {
  5753. color: @health-status-green;
  5754. }
  5755. .icon-question-sign {
  5756. color: @health-status-yellow;
  5757. }
  5758. .icon-warning-sign {
  5759. color: #FDB82F;
  5760. }
  5761. .sorting_asc {
  5762. background:
  5763. url(data:image/png;base64,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) no-repeat right 50%;
  5764. }
  5765. .sorting_desc {
  5766. background: url(data:image/png;base64,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) no-repeat right 50%;
  5767. }
  5768. .sorting {
  5769. background: url( data:image/png;base64,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) no-repeat right 50%;
  5770. }
  5771. }
  5772. .flume-agents-actions {
  5773. margin: 0 5px 5px 0;
  5774. a {
  5775. text-decoration: none;
  5776. }
  5777. }
  5778. .scrollable-container {
  5779. max-height: 450px;
  5780. width: 100%;
  5781. overflow-y: scroll;
  5782. }
  5783. }