application.less 165 KB

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