application.less 164 KB

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