application.less 122 KB

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