application.less 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622
  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. /*****start styles for install tasks logs*****/
  1336. .task-list-main-warp, .task-detail-info {
  1337. i {
  1338. font-size: 20px;
  1339. vertical-align: middle;
  1340. }
  1341. .pending, .queued {
  1342. color: #999999;
  1343. }
  1344. .in_progress {
  1345. color: #367FE6;
  1346. }
  1347. .completed {
  1348. color: #0EA31C;
  1349. }
  1350. .failed {
  1351. color: #DF5F5F;
  1352. }
  1353. .aborted {
  1354. color: #FF9C09;
  1355. }
  1356. .timedout {
  1357. color: #FF9C09;
  1358. }
  1359. }
  1360. .task-list-main-warp {
  1361. .task-list-line-cursor {
  1362. cursor: pointer;
  1363. }
  1364. .request-schedule-abort {
  1365. margin-top: 7px;
  1366. .btn {
  1367. margin-top: -5px;
  1368. }
  1369. }
  1370. .task-top-wrap {
  1371. width: 100%;
  1372. border-bottom: 1px solid #CCC;
  1373. text-align: center;
  1374. font-size: 15px;
  1375. padding: 0 0 10px 0;
  1376. height: 20px;
  1377. .task-detail-back-to-hosts {
  1378. float: left;
  1379. }
  1380. .select-wrap {
  1381. float: right;
  1382. margin-top: -8px;
  1383. select {
  1384. width: 140px;
  1385. }
  1386. }
  1387. .tasks-list-select{
  1388. //margin-top: -28px;
  1389. }
  1390. .task-name-top {
  1391. width: 23%;
  1392. padding-left: 20px;
  1393. }
  1394. .start-time-top {
  1395. width: 20%;
  1396. padding-left: 5px;
  1397. }
  1398. .duration-top {
  1399. width: 10%;
  1400. padding-left: 5px;
  1401. }
  1402. .task-name-top,.start-time-top,.duration-top {
  1403. float: left;
  1404. text-align: left;
  1405. }
  1406. }
  1407. #host-log {
  1408. .log-list-wrap {
  1409. padding: 10px 10px 10px 20px;
  1410. border-top: 1px solid #CCC;
  1411. border-bottom: 1px solid #CCC;
  1412. .show-details {
  1413. float: right;
  1414. cursor: pointer;
  1415. font-size: 16px;
  1416. i {
  1417. color: #333;
  1418. }
  1419. }
  1420. .task-list-line-cursor:before,.task-list-line-cursor:after {
  1421. display: table;
  1422. line-height: 0;
  1423. content: "";
  1424. }
  1425. .task-list-line-cursor:after {
  1426. clear: both;
  1427. }
  1428. .operation-name-icon-wrap {
  1429. float: left;
  1430. width: 35%;
  1431. }
  1432. .start-time-text {
  1433. margin-left: 5px;
  1434. width: 20%;
  1435. float: left;
  1436. }
  1437. .duration-text {
  1438. margin-left: 5px;
  1439. width: 10%;
  1440. float: left;
  1441. }
  1442. .time-summary {
  1443. padding-left: 0px;
  1444. color: #808080;
  1445. font-size: 12px;
  1446. }
  1447. }
  1448. }
  1449. }
  1450. .task-detail-info {
  1451. .task-detail-log-clipboard {
  1452. display: none;
  1453. resize: none;
  1454. overflow: hidden;
  1455. }
  1456. .task-top-wrap {
  1457. width: 100%;
  1458. border-bottom: 1px solid #CCC;
  1459. text-align: center;
  1460. font-size: 15px;
  1461. padding: 0 0 10px 0;
  1462. .task-detail-back {
  1463. float: left;
  1464. }
  1465. .task-detail-log-rolename {
  1466. position: relative;
  1467. left: 0;
  1468. top: 0;
  1469. }
  1470. .task-detail-status-ico {
  1471. content: "";
  1472. margin-top: -4px;
  1473. box-shadow: none;
  1474. margin-bottom: 0px;
  1475. font-size: 24px;
  1476. }
  1477. .task-detail-ico-wrap {
  1478. font-size: 14px;
  1479. float: right;
  1480. margin-top: -20px;
  1481. a {
  1482. cursor: pointer;
  1483. }
  1484. .task-detail-copy {
  1485. margin-right: 12px;
  1486. float: left;
  1487. }
  1488. .task-detail-open-dialog {
  1489. float: right;
  1490. }
  1491. }
  1492. }
  1493. }
  1494. /*****end styles for install tasks logs*****/
  1495. /*****start styles for dashboard page*****/
  1496. /*start services summary*/
  1497. .services {
  1498. margin-left: 0;
  1499. margin-top: 0;
  1500. position: relative;
  1501. .alert{
  1502. padding: 5px;
  1503. }
  1504. .tab-marker-position {
  1505. background-position: 6px 5px;
  1506. background-repeat: no-repeat;
  1507. list-style: none;
  1508. float: left;
  1509. min-height: 20px;
  1510. min-width: 20px;
  1511. margin-left: 0;
  1512. }
  1513. .health-status-LIVE, .health-status-STARTING {
  1514. .tab-marker-position;
  1515. background-image: @status-live-marker;
  1516. }
  1517. .health-status-DEAD-RED, .health-status-STOPPING {
  1518. .tab-marker-position;
  1519. background-image: @status-dead-red-marker;
  1520. }
  1521. .health-status-DEAD-ORANGE {
  1522. .tab-marker-position;
  1523. background-image: @status-dead-orange-marker;
  1524. }
  1525. .health-status-DEAD-YELLOW {
  1526. .tab-marker-position;
  1527. background-image: @status-dead-yellow-marker;
  1528. }
  1529. dt {
  1530. text-align: left;
  1531. width: 120px;
  1532. }
  1533. dd {
  1534. margin-left: 145px;
  1535. }
  1536. .like_pointer {
  1537. cursor: pointer;
  1538. }
  1539. .service {
  1540. position: relative;
  1541. margin-top: 10px;
  1542. border-bottom: 1px solid #b8b8b8;
  1543. padding-left: 10px;
  1544. margin-right: 20px;
  1545. .name {
  1546. line-height: 21px;
  1547. margin-left: 0;
  1548. width: 145px;
  1549. a {
  1550. margin-left: 5px
  1551. }
  1552. }
  1553. .summary {
  1554. line-height: 21px;
  1555. }
  1556. .clearfix {
  1557. padding-bottom: 8px;
  1558. }
  1559. .service-body {
  1560. display: none;
  1561. position: relative;
  1562. }
  1563. table.table {
  1564. margin-top: 14px;
  1565. color: #666;
  1566. font-size: 13px; //width: 80%;
  1567. tr > td:first-child {
  1568. padding-right: 10px;
  1569. text-align: right !important;
  1570. }
  1571. th, td {
  1572. padding: 4px;
  1573. }
  1574. }
  1575. .dashboard-mini-chart > div {
  1576. width: 172px;
  1577. }
  1578. .dashboard-mini-chart {
  1579. right: 0;
  1580. float: right;
  1581. top: 7px;
  1582. position: absolute;
  1583. overflow: visible; // for quick links
  1584. text-align: center; //width: 180px;
  1585. height: 200px;
  1586. .dropdown-menu {
  1587. text-align: left;
  1588. }
  1589. .chart-container {
  1590. .chart-x-axis {
  1591. left: 0%;
  1592. width: 100%;
  1593. text-align: left;
  1594. }
  1595. }
  1596. .chartLabel {
  1597. font-size: 11px;
  1598. color: #7b7b7b;
  1599. }
  1600. .chart-legend {
  1601. left: -205px;
  1602. text-align: left;
  1603. top: 0;
  1604. width: 185px;
  1605. }
  1606. }
  1607. }
  1608. }
  1609. .services, #summary-info {
  1610. .tab-marker-position {
  1611. background-position: 0px 3px;
  1612. background-repeat: no-repeat;
  1613. list-style: none;
  1614. float: left;
  1615. height: 20px;
  1616. width: 20px;
  1617. margin-left: 0;
  1618. }
  1619. .STARTING, .STARTED {
  1620. .tab-marker-position;
  1621. background-image: @status-live-marker;
  1622. }
  1623. .STOPPING, .INSTALLED {
  1624. .tab-marker-position;
  1625. background-image: @status-dead-red-marker;
  1626. }
  1627. .UNKNOWN {
  1628. .tab-marker-position;
  1629. background-image: @status-dead-yellow-marker;
  1630. }
  1631. .summary-view-host{
  1632. float: right;
  1633. padding-right: 20px;
  1634. a {
  1635. text-decoration: none;
  1636. &:hover {
  1637. text-decoration: underline;
  1638. }
  1639. }
  1640. }
  1641. .service-summary-component-red-dead {
  1642. color: #ff0000;
  1643. display: inline;
  1644. }
  1645. .service-summary-component-green-live {
  1646. color: #228b22;
  1647. display: inline;
  1648. }
  1649. }
  1650. #summary-info {
  1651. border-top: none;
  1652. border-collapse: collapse;
  1653. color: #666;
  1654. font-size: 13px;
  1655. .icon-medkit {
  1656. color: black!important;
  1657. }
  1658. td.summary-label {
  1659. width: 180px;
  1660. text-align: right;
  1661. }
  1662. /*
  1663. td {
  1664. border-top: 1px solid #eee;
  1665. }
  1666. */
  1667. tr td:first-child {
  1668. text-align: right;
  1669. }
  1670. a {
  1671. text-decoration: underline;
  1672. &:hover {
  1673. text-decoration: none;
  1674. }
  1675. }
  1676. }
  1677. #security-stages {
  1678. tr {
  1679. height: 50px;
  1680. }
  1681. td {
  1682. width: 180px;
  1683. }
  1684. .progress-bar {
  1685. width: 50%;
  1686. .progress {
  1687. margin-bottom: 0;
  1688. }
  1689. }
  1690. .progress-percentage {
  1691. margin-left: 10px;
  1692. }
  1693. a.remove-link {
  1694. text-decoration:none;
  1695. pointer-events: none;
  1696. color:black;
  1697. cursor: default;
  1698. }
  1699. }
  1700. #enable_security {
  1701. .step3 {
  1702. overflow: auto;
  1703. max-height: 500px;
  1704. table td {
  1705. word-break: break-all;
  1706. }
  1707. }
  1708. }
  1709. .faintText {
  1710. color: #999;
  1711. }
  1712. .more-stats {
  1713. display: block;
  1714. width: 100%;
  1715. padding: 7px 0;
  1716. text-align: center;
  1717. color: #333333;
  1718. &:hover {
  1719. background-color: #eee;
  1720. color: #333;
  1721. text-decoration: none;
  1722. }
  1723. }
  1724. /*end services summary*/
  1725. /*start alerts summary*/
  1726. .alerts {
  1727. margin: 0px;
  1728. max-height: 500px;
  1729. overflow-y: auto;
  1730. li {
  1731. border-bottom: 1px solid #eee;
  1732. list-style: none;
  1733. padding: 5px 5px 5px 5px;
  1734. background-position: 14px 9px;
  1735. background-repeat: no-repeat;
  1736. .date-time {
  1737. float: right;
  1738. }
  1739. p {
  1740. margin-bottom: 2px;
  1741. }
  1742. .container-fluid {
  1743. padding-left: 10px;
  1744. padding-right: 10px;
  1745. }
  1746. .title {
  1747. font-weight: normal;
  1748. font-size: 14px;
  1749. }
  1750. .row-fluid [class*="span"] {
  1751. min-height: 0px;
  1752. }
  1753. .status-icon {
  1754. padding-top: 7px;
  1755. }
  1756. .date-time {
  1757. color: #999;
  1758. font-style: italic;
  1759. font-size: small;
  1760. text-align: right;
  1761. }
  1762. .message {
  1763. font-size: 13px;
  1764. color: #777;
  1765. }
  1766. .serviceLink {
  1767. padding-left: 7px;
  1768. }
  1769. }
  1770. .alert {
  1771. margin: 7px;
  1772. }
  1773. }
  1774. .go-to {
  1775. float: right;
  1776. background-position: right center;
  1777. background-repeat: no-repeat;
  1778. background-image: @arrow-right;
  1779. padding-right: 40px;
  1780. margin-top: 4px;
  1781. }
  1782. .modal-graph-line {
  1783. width: 810px;
  1784. margin: -250px 0 0 -405px;
  1785. .modal-body {
  1786. min-height: 420px !important;
  1787. overflow: hidden;
  1788. }
  1789. }
  1790. /*end alerts summary*/
  1791. /*Alerts popup*/
  1792. .alertsPopupLinks {
  1793. padding: 20px 40px 0px;
  1794. text-align: right;
  1795. a:first-child {
  1796. float: left;
  1797. }
  1798. }
  1799. .modal-footer.align-center {
  1800. text-align: center;
  1801. }
  1802. /*start chart/style graphs*/
  1803. .chart-container {
  1804. cursor: pointer;
  1805. cursor: -moz-zoom-in;
  1806. cursor: -webkit-zoom-in;
  1807. &.chart-container-popup {
  1808. cursor: auto !important;
  1809. margin-left: 0;
  1810. overflow: visible;
  1811. width: 650px;
  1812. .chart {
  1813. left: 60px;
  1814. overflow: visible;
  1815. position: relative;
  1816. }
  1817. .chart-y-axis {
  1818. position: absolute;
  1819. top: -15px;
  1820. bottom: 0;
  1821. width: 60px;
  1822. }
  1823. .chart-legend {
  1824. left: 60px;
  1825. top: 245px;
  1826. }
  1827. .x_tick {
  1828. .title {
  1829. margin-top: 35px !important;
  1830. }
  1831. }
  1832. }
  1833. position: relative;
  1834. margin: 20px 15px 0px 15px;
  1835. .chart {
  1836. position: relative;
  1837. z-index: 1;
  1838. }
  1839. .chart-y-axis {
  1840. position: absolute;
  1841. top: 0;
  1842. bottom: 0px;
  1843. width: 100px;
  1844. z-index: 2;
  1845. margin-top: 15px;
  1846. }
  1847. .chart-x-axis {
  1848. position: absolute;
  1849. top: 180px;
  1850. left: 35%;
  1851. width: 30%;
  1852. z-index: 2;
  1853. }
  1854. .x_tick {
  1855. margin-top: 5px;
  1856. .title {
  1857. padding: 0 2px 0 2px;
  1858. opacity: 1 !important;
  1859. top: 148px;
  1860. }
  1861. }
  1862. svg {
  1863. g {
  1864. g:nth-child(1) {
  1865. display: none;
  1866. }
  1867. }
  1868. }
  1869. text {
  1870. font-weight: 700;
  1871. opacity: 1 !important;
  1872. }
  1873. .chart-legend {
  1874. font-family: 'Courier New';
  1875. position: absolute;
  1876. top: 180px;
  1877. z-index: 3;
  1878. }
  1879. .rickshaw_legend {
  1880. background-color: #999 !important;
  1881. li:hover {
  1882. background-color: #999 !important;
  1883. }
  1884. }
  1885. .rickshaw_legend:empty {
  1886. padding: 0;
  1887. }
  1888. .rickshaw_graph {
  1889. .x_tick {
  1890. .title {
  1891. bottom: -6px;
  1892. opacity: 0.75;
  1893. }
  1894. }
  1895. }
  1896. .chart-overlay {
  1897. position: absolute;
  1898. top: 0;
  1899. bottom: 0;
  1900. width: 100%;
  1901. z-index: 5;
  1902. }
  1903. .chart-title {
  1904. text-align: center;
  1905. font-size: small;
  1906. }
  1907. }
  1908. .modal-body {
  1909. .show {
  1910. display: inline-block;
  1911. }
  1912. .time-label {
  1913. text-align: center;
  1914. }
  1915. }
  1916. .mini-chart {
  1917. position: absolute;
  1918. .chart-container {
  1919. width: 130px;
  1920. height: 130px;
  1921. }
  1922. }
  1923. /*end chart/graph styles*/
  1924. /*****end styles for dashboard page*****/
  1925. /*Services*/
  1926. .services-menu {
  1927. .nav-list {
  1928. .tab-marker-position {
  1929. background-position: 6px 5px;
  1930. background-repeat: no-repeat;
  1931. list-style: none;
  1932. float: left;
  1933. height: 20px;
  1934. width: 20px;
  1935. margin-left: 0; // padding-left: 30px;
  1936. // padding-right: 30px;
  1937. // background-position: 12px 9px;
  1938. // background-repeat: no-repeat;
  1939. }
  1940. .health-status-LIVE, .health-status-STARTING {
  1941. .tab-marker-position;
  1942. background-image: @status-live-marker;
  1943. }
  1944. .health-status-DEAD-RED, .health-status-STOPPING {
  1945. .tab-marker-position;
  1946. background-image: @status-dead-red-marker;
  1947. }
  1948. .health-status-DEAD-YELLOW {
  1949. .tab-marker-position;
  1950. background-image: @status-dead-yellow-marker;
  1951. }
  1952. li {
  1953. line-height: 24px;
  1954. a {
  1955. padding: 3px 4px;
  1956. white-space: nowrap;
  1957. }
  1958. .label {
  1959. padding: 0 0 0 3px;
  1960. }
  1961. }
  1962. li.clients {
  1963. a {
  1964. padding-left: 37px;
  1965. }
  1966. }
  1967. }
  1968. .add-service-button {
  1969. margin: 20px 20px 10px;
  1970. }
  1971. .start-stop-all-service-button {
  1972. margin: 5px 5px 10px 10px;
  1973. text-align: center;
  1974. }
  1975. .operations-count {
  1976. background: #953B39;
  1977. }
  1978. .icon-medkit {
  1979. padding-left:6px;
  1980. color: black!important;
  1981. }
  1982. }
  1983. .quick-links-wrapper {
  1984. margin-top: -53px;
  1985. position: relative;
  1986. left: 278px;
  1987. .nav-pills.move {
  1988. float: right;
  1989. width:135px;
  1990. &>li {
  1991. position: absolute;
  1992. }
  1993. }
  1994. .nav li.dropdown.open {
  1995. .dropdown-toggle{
  1996. color: #005580;
  1997. background-color: #eeeeee;
  1998. border-color: #eeeeee;
  1999. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2000. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2001. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2002. }
  2003. a:hover .caret {
  2004. border-top-color: #005580;
  2005. border-bottom-color: #005580;
  2006. }
  2007. .caret {
  2008. border-top-color: #005580;
  2009. border-bottom-color: #005580;
  2010. }
  2011. }
  2012. .disabled-hdfs-quick-link {
  2013. pointer-events: none;
  2014. color: #808080;
  2015. cursor: default;
  2016. }
  2017. }
  2018. .service-content {
  2019. #summary-info {
  2020. margin-bottom: 0;
  2021. }
  2022. }
  2023. .service-block {
  2024. margin-top: 20px;
  2025. }
  2026. .service-configuration {
  2027. padding: 10px;
  2028. }
  2029. .service-summary {
  2030. background: #F6FAFD;
  2031. .service-block.span8 {
  2032. margin-left: 0;
  2033. border-right: 1px solid #5fa3c3;
  2034. }
  2035. .service-block.span3 {
  2036. padding-left: 0;
  2037. }
  2038. .service-content {
  2039. padding: 5px 0 0 10px;
  2040. .service-links {
  2041. padding: 5px 0;
  2042. }
  2043. }
  2044. h5 {
  2045. color: #0088CC;
  2046. font-size: 14px;
  2047. }
  2048. .service-links {
  2049. padding: 5px 0 10px 0;
  2050. }
  2051. .service-configuration .dl-horizontal {
  2052. dt {
  2053. width: 90px;
  2054. line-height: 19px;
  2055. }
  2056. dd {
  2057. margin-left: 100px;
  2058. line-height: 19px;
  2059. }
  2060. }
  2061. }
  2062. .service-button {
  2063. text-align: right;
  2064. margin-bottom: 5px;
  2065. margin-top: -55px;
  2066. ul.dropdown-menu {
  2067. li {
  2068. text-align: left;
  2069. }
  2070. a {
  2071. cursor: pointer;
  2072. }
  2073. .icon-play.enabled {
  2074. color: @green;
  2075. }
  2076. .icon-stop.enabled{
  2077. color: red;
  2078. }
  2079. }
  2080. }
  2081. .summary-metric-graphs {
  2082. [class*="span"] {
  2083. float: left;
  2084. margin-left: 10px;
  2085. }
  2086. .chart-container {
  2087. .chart-x-axis {
  2088. left: 0%;
  2089. width: 100%;
  2090. }
  2091. }
  2092. }
  2093. /*End Services*/
  2094. table.graphs {
  2095. table-layout: fixed;
  2096. width: 100%;
  2097. }
  2098. /*Dashboard Widgets Start*/
  2099. #dashboard-widgets-container{
  2100. h4{
  2101. line-height: 30px;
  2102. margin-bottom: 0px;
  2103. margin-top: 0px;
  2104. }
  2105. .add-widget-button{
  2106. margin-top: 0px;
  2107. margin-left: -22px;
  2108. width: 70px;
  2109. .add-button{
  2110. color: #666666;
  2111. }
  2112. .filter-components{
  2113. overflow: auto;
  2114. max-height: 375px;
  2115. width: 210px;
  2116. color: #333333;
  2117. right: 0;
  2118. left: auto;
  2119. li {
  2120. display: block;
  2121. padding: 3px 0 3px 5px;
  2122. line-height: 20px;
  2123. ul{
  2124. margin-left: 0px;
  2125. }
  2126. label.checkbox {
  2127. padding-left: 3px;
  2128. }
  2129. input[type="checkbox"] {
  2130. margin: 4px 4px 2px 2px;
  2131. }
  2132. }
  2133. &>li {
  2134. &>ul {
  2135. width: 180px;
  2136. margin-left: 0;
  2137. }
  2138. }
  2139. }
  2140. }
  2141. .more-options-button{
  2142. margin-top: 0px;
  2143. margin-left: 0px;
  2144. margin-right: 6px;
  2145. padding: 1px;
  2146. width: 70px;
  2147. .icon-cog{
  2148. color: #666666;
  2149. font-size: 18px;
  2150. position: relative;
  2151. left: 3px;
  2152. top: 2px;
  2153. }
  2154. .caret{
  2155. position: relative;
  2156. left: 5px;
  2157. top: 2px;
  2158. }
  2159. }
  2160. .right-align-dropdown{
  2161. right: 0;
  2162. left: auto;
  2163. padding-top: 9px;
  2164. padding-bottom: 9px;
  2165. margin-right: 4px;
  2166. }
  2167. #dashboard-widgets{
  2168. .caption {
  2169. height: 25px;
  2170. }
  2171. .thumbnails {
  2172. margin-left: 8px;
  2173. }
  2174. .row-fluid .span2p4 {
  2175. width: 19.34%;
  2176. *width: 19.34%;
  2177. }
  2178. .row-fluid .span4p8 {
  2179. width: 39.1%;
  2180. *width: 39.1%;
  2181. }
  2182. .thumbnails > div {
  2183. margin-left: 0px;
  2184. margin-right: 3px;
  2185. margin-top: 5px;
  2186. margin-bottom: 7px;
  2187. height: 163px;
  2188. }
  2189. .thumbnails li {
  2190. height:150px;
  2191. margin-left: 0px;
  2192. margin-right: 3px;
  2193. margin-top: 3px;
  2194. margin-bottom: 0px;
  2195. }
  2196. .thumbnail .corner-icon{
  2197. display: none;
  2198. position: relative;
  2199. .icon-remove-sign{
  2200. color: #000000;
  2201. text-shadow: #fff 0px 0px 15px;
  2202. position: relative;
  2203. left: -17px;
  2204. top: -7px;
  2205. }
  2206. .icon-edit{
  2207. color: #555555;
  2208. }
  2209. }
  2210. .thumbnail .hidden-info-general{
  2211. color: #555555;
  2212. font-size: 12px;
  2213. font-weight: bold;
  2214. text-align: center;
  2215. text-decoration: none;
  2216. display: none;
  2217. position: relative;
  2218. z-index: 7;
  2219. }
  2220. .hidden-info-two-line{
  2221. padding-top: 60px;
  2222. }
  2223. .hidden-info-three-line{
  2224. padding-top: 50px;
  2225. }
  2226. .hidden-info-five-line{
  2227. padding-top: 40px;
  2228. }
  2229. .thumbnail .caption {
  2230. padding-left: 0px;
  2231. padding-top: 7px;
  2232. padding-bottom: 7px;
  2233. padding-right: 0px;
  2234. color: #555555;
  2235. font-weight:bold;
  2236. font-size: 12px;
  2237. text-align: left;
  2238. position: relative;
  2239. }
  2240. .thumbnail .widget-content{
  2241. text-align: center;
  2242. font-size: 35px;
  2243. padding-top: 40px; //svg
  2244. position: relative;
  2245. .disabled-hdfs-link {
  2246. pointer-events: none;
  2247. color: grey;
  2248. cursor: default;
  2249. }
  2250. .screensaver{ // graph onload wait
  2251. width: 90%;
  2252. height: 105px;
  2253. border: 1px solid silver;
  2254. color: #ffffff;
  2255. background: url(/img/spinner.gif) no-repeat center center;
  2256. }
  2257. }
  2258. .thumbnail .widget-content-isNA{ // for pie chart n\a
  2259. text-align: center;
  2260. font-size: 35px;
  2261. color: #D6DDDF;
  2262. padding-top: 70px;
  2263. font-weight: bold;
  2264. position: relative;
  2265. }
  2266. .thumbnail{
  2267. background-color: #ffffff;
  2268. z-index: 3;
  2269. }
  2270. .has-hidden-info .thumbnail:hover {
  2271. cursor: move;
  2272. //background-color: #d3d3d3;
  2273. .corner-icon{
  2274. display:block;
  2275. text-decoration: none;
  2276. z-index: 9;
  2277. }
  2278. .hidden-info-general{
  2279. display: block;
  2280. }
  2281. .caption{
  2282. margin-left: -6px;
  2283. z-index: 7;
  2284. }
  2285. .slots-caption{
  2286. margin-left: -13px;
  2287. z-index: 7;
  2288. }
  2289. .widget-content{
  2290. top: -104px;
  2291. opacity: 0.3;
  2292. z-index: 5;
  2293. }
  2294. .widget-content-isNA{
  2295. top: -104px;
  2296. opacity: 0.3;
  2297. z-index: 5;
  2298. }
  2299. .uptime-content{
  2300. top: -136px;
  2301. }
  2302. .uptime-content-isNA{
  2303. top: -95px;
  2304. }
  2305. .slots-content-isNA{
  2306. top: -82px;
  2307. }
  2308. .simple-text-hidden-two-line{
  2309. top: -105px;
  2310. opacity: 0.3;
  2311. z-index: 5;
  2312. }
  2313. .simple-text-hidden-three-line{
  2314. top: -116px;
  2315. opacity: 0.3;
  2316. z-index: 5;
  2317. }
  2318. .simple-text-hidden-four-line{
  2319. top: -126px;
  2320. opacity: 0.3;
  2321. z-index: 5;
  2322. }
  2323. .simple-text-hidden-five-line{
  2324. top: -150px;
  2325. opacity: 0.3;
  2326. z-index: 5;
  2327. }
  2328. }
  2329. .cluster-metrics .chart-container{
  2330. margin: 0px 10px 0px 10px;
  2331. .chart-y-axis{
  2332. margin-top: 10px;
  2333. }
  2334. .chart svg{
  2335. margin-right: 20px;
  2336. }
  2337. .rickshaw_legend{
  2338. padding-top: 3px;
  2339. }
  2340. .chart-legend {
  2341. top: 120px;
  2342. left:15px;
  2343. text-align: left;
  2344. z-index: 3;
  2345. ul >li{
  2346. max-height: 10px;
  2347. }
  2348. }
  2349. }
  2350. .cluster-metrics .alert {
  2351. padding: 0px;
  2352. font-size: 12px;
  2353. }
  2354. .cluster-metrics .thumbnail:hover{
  2355. cursor: move;
  2356. .corner-icon{
  2357. display:block;
  2358. text-decoration: none;
  2359. z-index: 9;
  2360. }
  2361. .caption{
  2362. margin-left: -6px;
  2363. }
  2364. }
  2365. .links .thumbnail{
  2366. li{
  2367. height:20px;
  2368. margin: 3px;
  2369. }
  2370. .link-button{
  2371. padding-top: 7px;
  2372. padding-left: 70px;
  2373. .disabled-hdfs-quick-link {
  2374. pointer-events: none;
  2375. color: #808080;
  2376. cursor: default;
  2377. }
  2378. }
  2379. .widget-content{
  2380. text-align: center;
  2381. font-weight: none;
  2382. font-size: 11px;
  2383. color: #555555;
  2384. padding-top: 40px;
  2385. table{
  2386. vertical-position: center;
  2387. text-align: center;
  2388. margin-left:auto;
  2389. margin-right:auto;
  2390. }
  2391. td{
  2392. padding-top: 2px;
  2393. }
  2394. }
  2395. }
  2396. .links .thumbnail:hover{
  2397. cursor: move;
  2398. .corner-icon{
  2399. display:block;
  2400. text-decoration: none;
  2401. z-index: 9;
  2402. }
  2403. .caption{
  2404. margin-left: -6px;
  2405. }
  2406. }
  2407. .thumbnail .widget-content .svg {
  2408. position: relative;
  2409. }
  2410. #map-reduce-slots-text{
  2411. padding-left: 5px;
  2412. padding-top: 40px;
  2413. color: #555555;
  2414. font-weight:bold;
  2415. font-size: 10px;
  2416. >ul{
  2417. margin-top:5px;
  2418. margin-bottom: 0px;
  2419. }
  2420. #map-reduce-slots-bar1{
  2421. margin-left: 10px;
  2422. }
  2423. #map-reduce-slots-bar2{
  2424. margin-left: 3px;
  2425. }
  2426. #map-reduce-slots-num1{
  2427. margin-left: 5px;
  2428. }
  2429. #map-reduce-slots-num2{
  2430. margin-left: 5px;
  2431. }
  2432. }
  2433. .is-red{
  2434. .widget-content {
  2435. color: #B80000;
  2436. padding-top: 70px;
  2437. font-weight: bold;
  2438. }
  2439. }
  2440. .is-orange{
  2441. .widget-content {
  2442. color: #FF8E00;
  2443. padding-top: 70px;
  2444. font-weight: bold;
  2445. }
  2446. }
  2447. .is-green {
  2448. .widget-content {
  2449. color: #95A800;
  2450. padding-top: 70px;
  2451. font-weight: bold;
  2452. }
  2453. }
  2454. .is-na {
  2455. position: relative;
  2456. .widget-content {
  2457. color: #D6DDDF;
  2458. text-shadow: none;
  2459. padding-top: 70px;
  2460. font-weight: bold;
  2461. }
  2462. }
  2463. }
  2464. }
  2465. /*Dashboard Widgets END*/
  2466. .dialog-delete-component {
  2467. border: 1px solid #FDB82F;
  2468. border-radius: 4px;
  2469. padding: 4px;
  2470. background: #FFFDF6;
  2471. .warning-details {
  2472. padding-left: 16px;
  2473. padding-top: 5px;
  2474. }
  2475. .warning-list {
  2476. font-size: 0.95em;
  2477. font-style: italic;
  2478. }
  2479. }
  2480. /*Hosts*/
  2481. #hosts {
  2482. .bulk-menu {
  2483. a {
  2484. &.disabled {
  2485. color: gray;
  2486. }
  2487. }
  2488. }
  2489. .filters-label {
  2490. display: block;
  2491. float: left;
  2492. padding-right: 10px;
  2493. }
  2494. .icon-question-sign {
  2495. color:#FFD13D;
  2496. }
  2497. #hosts-table {
  2498. margin-top: 10px;
  2499. margin-bottom: 10px;
  2500. font-size: 13px\9;
  2501. .label-row {
  2502. font-size: 0.9em;
  2503. th {
  2504. padding: 4px;
  2505. }
  2506. .active-sort {
  2507. color: #555555;
  2508. text-decoration: none;
  2509. background-color: #e5e5e5;
  2510. -webkit-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2511. -moz-box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2512. box-shadow: inset 0 5px 8px rgba(0, 0, 0, 0.100);
  2513. }
  2514. }
  2515. #filter-row {
  2516. th {
  2517. padding: 0px;
  2518. padding-left: 4px;
  2519. }
  2520. .active-filter {
  2521. color: #555555;
  2522. text-decoration: none;
  2523. background-color: #e5e5e5;
  2524. -webkit-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2525. -moz-box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2526. box-shadow: inset 0 -5px 8px rgba(0, 0, 0, 0.05);
  2527. }
  2528. input {
  2529. font-size: 12px;
  2530. height: 14px;
  2531. }
  2532. .filter-btn {
  2533. color: #999999;
  2534. font-size: 12px;
  2535. line-height: 14px;
  2536. padding-left: 6px;
  2537. text-align: left;
  2538. width: 100px;
  2539. .icon-filter {
  2540. color: #999999;
  2541. }
  2542. }
  2543. }
  2544. thead {
  2545. background: none repeat scroll 0 0 #F8F8F8;
  2546. }
  2547. }
  2548. .page-bar {
  2549. border: 1px solid #E4E4E4;
  2550. color: #7B7B7B;
  2551. text-align: right;
  2552. font-size: 12px;
  2553. label {
  2554. font-size: 12px;
  2555. }
  2556. div {
  2557. display: inline-block;
  2558. margin:0 10px;
  2559. }
  2560. .filtered-hosts-info, .selected-hosts-info {
  2561. text-align: left;
  2562. margin-top: 8px;
  2563. margin-left: 17px;
  2564. }
  2565. .items-on-page {
  2566. label {
  2567. display:inline;
  2568. }
  2569. select {
  2570. margin-bottom: 4px;
  2571. margin-top: 4px;
  2572. width:70px;
  2573. font-size: 12px;
  2574. height: 27px;
  2575. }
  2576. }
  2577. .paging_two_button {
  2578. a.paginate_disabled_next, a.paginate_disabled_previous {
  2579. color: gray;
  2580. &:hover {
  2581. color: gray;
  2582. text-decoration: none;
  2583. cursor: default;
  2584. }
  2585. }
  2586. a.paginate_next, a.paginate_previous {
  2587. &:hover {
  2588. text-decoration: none;
  2589. cursor: pointer;
  2590. }
  2591. }
  2592. a {
  2593. padding:0 5px;
  2594. }
  2595. }
  2596. }
  2597. .status-dot-position {
  2598. background-position: center;
  2599. background-repeat: no-repeat;
  2600. height: 20px;
  2601. width: 13px;
  2602. display: block;
  2603. float: left;
  2604. margin-right:4px;
  2605. }
  2606. .health-status-HEALTHY{
  2607. background-image: @status-live-marker;
  2608. .status-dot-position;
  2609. }
  2610. .health-status-LIVE {
  2611. background-image: @status-live-marker;
  2612. .status-dot-position;
  2613. }
  2614. .health-status-DEAD-RED {
  2615. background-image: @status-dead-red-marker;
  2616. .status-dot-position;
  2617. }
  2618. .health-status-DEAD-ORANGE {
  2619. background-image: @status-dead-orange-marker;
  2620. .status-dot-position;
  2621. }
  2622. .health-status-DEAD-YELLOW {
  2623. background-image: @status-dead-yellow-marker;
  2624. .status-dot-position;
  2625. &.icon-question-sign {
  2626. background-image: none !important;
  2627. display: inline !important;
  2628. float: none !important;
  2629. }
  2630. }
  2631. .passive-state {
  2632. color: #000;
  2633. }
  2634. .alerts-status {
  2635. padding: 1px 6px !important;
  2636. &:before {
  2637. content: "!";
  2638. }
  2639. }
  2640. .host-name-search {
  2641. position: relative;
  2642. top: 0px;
  2643. left: 10px;
  2644. }
  2645. .host-name-pos {
  2646. position: relative;
  2647. top: 10px;
  2648. }
  2649. .box-header {
  2650. margin-left: 0;
  2651. .btn-group {
  2652. float: left;
  2653. }
  2654. .btn.decommission {
  2655. margin-left: 5px;
  2656. }
  2657. .btn.add-host-button {
  2658. margin-bottom: 10px;
  2659. margin-top: -5px;
  2660. }
  2661. .hosts-actions {
  2662. margin-right: 10px;
  2663. }
  2664. .health-status-bar {
  2665. font-size: 0.9em;
  2666. margin-left: 0;
  2667. color: #b4b4b4;
  2668. .health-status {
  2669. margin-left: -1px;
  2670. margin-right: 3px;
  2671. }
  2672. a {
  2673. text-decoration: none;
  2674. }
  2675. .category-item:hover {
  2676. cursor: pointer;
  2677. a {
  2678. color: #ffffff;
  2679. }
  2680. }
  2681. .active {
  2682. a {
  2683. color: #ffffff;
  2684. }
  2685. background-color: #888888;
  2686. border-color: #888888;
  2687. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  2688. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  2689. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.25);
  2690. }
  2691. .category-item.active:hover {
  2692. a {
  2693. color: #ffffff;
  2694. }
  2695. }
  2696. }
  2697. }
  2698. .progress {
  2699. margin-bottom: 0;
  2700. }
  2701. .filter-input-width{
  2702. width:68%;
  2703. }
  2704. .table {
  2705. table-layout: fixed;
  2706. th {
  2707. border-top: none;
  2708. }
  2709. th, td {
  2710. padding-left: 4px;
  2711. padding-right: 4px;
  2712. border-left-width: 0;
  2713. }
  2714. input[type="checkbox"] {
  2715. margin: 0px;
  2716. }
  2717. .col0,.col1,
  2718. td:first-child,
  2719. th:first-child,
  2720. td:first-child + td,
  2721. th:first-child + th{
  2722. padding-left: 2px!important;
  2723. padding-right: 1px!important;
  2724. padding-right: 10px\9!important;
  2725. width: 1.6%;
  2726. width: 13px\9!important;
  2727. }
  2728. .col2,
  2729. td:first-child + td + td,
  2730. th:first-child + th + th{
  2731. width: 40%;
  2732. padding-left: 6px;
  2733. padding-right: 1px;
  2734. }
  2735. .col3, .col4,
  2736. td:first-child + td + td + td,
  2737. th:first-child + th + th + th,
  2738. td:first-child + td + td + td + td,
  2739. th:first-child + th + th + th + th{
  2740. padding-left: 1px!important;
  2741. padding-right: 1px!important;
  2742. width: 1.6%;
  2743. width: 13px\9!important;
  2744. }
  2745. .col5,
  2746. td:first-child + td + td + td + td + td,
  2747. th:first-child + th + th + th + th + th {
  2748. width: 12%!important;
  2749. }
  2750. .col6,.col7,.col8,.col9,
  2751. td:first-child + td + td + td + td + td + td,
  2752. th:first-child + th + th + th + th + th + th,
  2753. td:first-child + td + td + td + td + td + td + td,
  2754. th:first-child + th + th + th + th + th + th + th,
  2755. td:first-child + td + td + td + td + td + td + td + td,
  2756. th:first-child + th + th + th + th + th + th + th + th,
  2757. td:first-child + td + td + td + td + td + td + td + td + td,
  2758. th:first-child + th + th + th + th + th + th + th + th + th{
  2759. width: 9%!important;
  2760. }
  2761. .col10,
  2762. td:first-child + td + td + td + td + td + td + td + td + td + td,
  2763. th:first-child + th + th + th + th + th + th + th + th + th + th{
  2764. width: 16%!important;
  2765. }
  2766. td.name {
  2767. overflow: inherit;
  2768. overflow-wrap: break-word;
  2769. white-space: nowrap;
  2770. }
  2771. td.name .trim_hostname{
  2772. display: block;
  2773. float: left;
  2774. width: 93%!important;
  2775. overflow: hidden;
  2776. text-overflow: ellipsis;
  2777. }
  2778. th.first, td.first {
  2779. border-left-width: 1px;
  2780. }
  2781. td.health label {
  2782. padding-top: 3px;
  2783. }
  2784. td.health span {
  2785. display: block;
  2786. height: 13px;
  2787. margin: 5px 0 0 0;
  2788. width: 13px;
  2789. }
  2790. td.health .icon-medkit {
  2791. margin: 3px 0 0 0;
  2792. }
  2793. ul.filter-components {
  2794. padding: 5px 0;
  2795. background: #777777;
  2796. color: #ffffff;
  2797. font-weight: normal;
  2798. font-size: 12px;
  2799. label {
  2800. font-size: 12px;
  2801. }
  2802. li {
  2803. display: block;
  2804. padding: 3px 0 3px 5px;
  2805. line-height: 20px;
  2806. label.checkbox {
  2807. padding-left: 3px;
  2808. }
  2809. input[type="checkbox"] {
  2810. margin: 4px 4px 2px 2px;
  2811. }
  2812. }
  2813. li#title-bar {
  2814. text-align: left;
  2815. border-bottom: 1px solid #e4e4e4;
  2816. a.close {
  2817. background: #777777;
  2818. display: inline;
  2819. color: #ffffff;
  2820. padding-left: 35px;
  2821. padding-right: 12px;
  2822. text-shadow: 0 1px 0 #ffffff;
  2823. float: none;
  2824. font-size: 10px;
  2825. opacity: 0.6;
  2826. }
  2827. a.close:hover {
  2828. background: #777777;
  2829. opacity: 1.0;
  2830. }
  2831. }
  2832. li#selector-bar {
  2833. text-align: left;
  2834. border-bottom: 1px solid #e4e4e4;
  2835. font-size: 6px;
  2836. }
  2837. li#list-area {
  2838. font-weight: normal;
  2839. text-align: left;
  2840. }
  2841. li#button-bar {
  2842. text-align: center;
  2843. button {
  2844. font-size: 12px;
  2845. }
  2846. }
  2847. ul {
  2848. margin-left: 10px;
  2849. }
  2850. &>li {
  2851. &>ul {
  2852. height: 150px;
  2853. margin-left: 0;
  2854. overflow-y: scroll;
  2855. }
  2856. }
  2857. }
  2858. .sorting_asc {
  2859. background:
  2860. url(data:image/png;base64,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) no-repeat right 50%;
  2861. }
  2862. .sorting_desc {
  2863. background: url(data:image/png;base64,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) no-repeat right 50%;
  2864. }
  2865. .sorting {
  2866. background: url( data:image/png;base64,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) no-repeat right 50%;
  2867. }
  2868. div.view-wrapper {
  2869. input[type="checkbox"], .btn-group {
  2870. margin-bottom: 9px;
  2871. }
  2872. }
  2873. a.ui-icon-circle-close {
  2874. float: right;
  2875. opacity: 0.2;
  2876. padding: 1px 0;
  2877. position: relative;
  2878. right: 0px;
  2879. margin-top: 3px;
  2880. z-index: 10;
  2881. &:hover {
  2882. opacity: 0.7;
  2883. }
  2884. }
  2885. .notActive {
  2886. a.ui-icon-circle-close {
  2887. visibility: hidden;
  2888. }
  2889. }
  2890. }
  2891. .open-group > .dropdown-menu {
  2892. display: block;
  2893. }
  2894. .nav-pills li.disabled {
  2895. display: block;
  2896. margin: 2px 0;
  2897. padding: 8px 12px;
  2898. line-height: 14px;
  2899. }
  2900. .box-footer .footer-pagination {
  2901. float: right;
  2902. .nav {
  2903. margin-bottom: 0;
  2904. }
  2905. .dropdown {
  2906. margin-top: 3px;
  2907. }
  2908. .dropdown {
  2909. margin-top: 3px;
  2910. }
  2911. .dropdown select {
  2912. width: 60px;
  2913. }
  2914. .page-listing a {
  2915. line-height: 0;
  2916. border: none;
  2917. margin: 0;
  2918. margin-right: 10px;
  2919. cursor: pointer;
  2920. color: #0088CC;
  2921. padding: 8px 0;
  2922. float: left;
  2923. text-decoration: underline;
  2924. }
  2925. .page-listing a:hover {
  2926. text-decoration: none;
  2927. }
  2928. .page-listing {
  2929. width: 100px;
  2930. .table {
  2931. th.name {
  2932. width: 300px;
  2933. a.filter-label {
  2934. width: 57px;
  2935. display: block;
  2936. float: left;
  2937. }
  2938. }
  2939. }
  2940. }
  2941. }
  2942. .host-components-expander {
  2943. .caret {
  2944. vertical-align: middle;
  2945. margin-right: 5px;
  2946. margin-bottom: 2px;
  2947. &.right {
  2948. border-left: 4px solid #000000;
  2949. border-top: 4px solid transparent;
  2950. border-bottom: 4px solid transparent;
  2951. }
  2952. }
  2953. }
  2954. .host-components {
  2955. display: none;
  2956. padding-left: 13px;
  2957. }
  2958. }
  2959. #host-warnings {
  2960. .notice {
  2961. padding-bottom: 20px;
  2962. }
  2963. .code-snippet {
  2964. margin: 10px 0;
  2965. white-space:normal;
  2966. }
  2967. .warnings-list {
  2968. .block {
  2969. .accordion-heading {
  2970. background-color: #f0f0f0;
  2971. }
  2972. table {
  2973. width: 100%;
  2974. td, th {
  2975. text-align: left;
  2976. padding-left: 15px;
  2977. }
  2978. thead tr:first-child th {
  2979. font-weight: normal;
  2980. }
  2981. }
  2982. margin-top: 10px;
  2983. }
  2984. }
  2985. }
  2986. .host-checks-update {
  2987. button {
  2988. margin-left: 5px;
  2989. }
  2990. .update-progress {
  2991. width: 230px;
  2992. .progress {
  2993. margin-bottom: 0;
  2994. }
  2995. }
  2996. }
  2997. #host-details {
  2998. margin-top: 27px;
  2999. /*
  3000. .component-operation-button {
  3001. background-color: #E5E5E5;
  3002. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E5E5), to(#F1F1F1));
  3003. background-image: -webkit-linear-gradient(top, #E5E5E5, #F1F1F1);
  3004. background-image: -o-linear-gradient(top, #E5E5E5, #F1F1F1);
  3005. background-image: linear-gradient(to bottom, #E5E5E5, #F1F1F1);
  3006. background-image: -moz-linear-gradient(top, #E5E5E5, #F1F1F1);
  3007. background-repeat: repeat-x;
  3008. color: #000000;
  3009. }
  3010. */
  3011. .caret {
  3012. border-top-color: #000000;
  3013. border-bottom-color: #000000;
  3014. }
  3015. //hack to apply style only for firefox
  3016. .host-components .btn-group{
  3017. white-space: normal;
  3018. }
  3019. .marker {
  3020. background-repeat: no-repeat;
  3021. display: inline-block;
  3022. height: 13px;
  3023. width: 13px;
  3024. }
  3025. .components-health.icon-arrow-up{
  3026. color:red;
  3027. }
  3028. .health-status-started, .health-status-starting {
  3029. background-image: @status-live-marker;
  3030. .marker;
  3031. }
  3032. .health-status-installed, .health-status-stopping {
  3033. background-image: @status-dead-red-marker;
  3034. .marker;
  3035. }
  3036. .health-status-unknown {
  3037. background-image: @status-dead-yellow-marker;
  3038. .marker;
  3039. }
  3040. .health-status-LIVE {
  3041. background-image: @status-live-marker;
  3042. .marker;
  3043. }
  3044. .health-status-DEAD-RED {
  3045. background-image: @status-dead-red-marker;
  3046. .marker;
  3047. }
  3048. .health-status-color-blue {
  3049. color:#0000ff;
  3050. }
  3051. .health-status-color-red {
  3052. color:#ff0000;
  3053. }
  3054. .health-status-DEAD-ORANGE {
  3055. background-image: @status-dead-orange-marker;
  3056. .marker;
  3057. }
  3058. .health-status-DEAD-YELLOW {
  3059. background-image: @status-dead-yellow-marker;
  3060. .marker;
  3061. }
  3062. .back {
  3063. display: block;
  3064. width: 105px;
  3065. margin-bottom: 5px;
  3066. }
  3067. .box-header .host-title {
  3068. margin: 0;
  3069. padding-left: 17px;
  3070. }
  3071. .box-header .button-section {
  3072. margin-bottom: 5px;
  3073. }
  3074. hr {
  3075. margin-bottom: 0;
  3076. clear: both;
  3077. }
  3078. .content {
  3079. padding: 10px;
  3080. }
  3081. .host-configuration .dl-horizontal dt {
  3082. width: 90px;
  3083. line-height: 20px;
  3084. }
  3085. .host-configuration .dl-horizontal dd {
  3086. margin-left: 100px;
  3087. line-height: 20px;
  3088. }
  3089. .host-metrics {
  3090. [class*="span"] {
  3091. float: left;
  3092. margin: 0;
  3093. }
  3094. .chart-container {
  3095. .chart-x-axis {
  3096. left: 30%;
  3097. width: 40%;
  3098. }
  3099. }
  3100. }
  3101. .host-components {
  3102. padding: 10px;
  3103. padding-bottom: 0;
  3104. border-radius: 4px;
  3105. background: #FFF;
  3106. #add_component{
  3107. width: 170px;
  3108. height: 30px;
  3109. }
  3110. }
  3111. .host-components .btn-group {
  3112. margin: 0 5px 10px 0;
  3113. .component-text-status{
  3114. cursor: default;
  3115. display: block;
  3116. padding: 3px 20px;
  3117. clear: both;
  3118. font-weight: normal;
  3119. line-height: 20px;
  3120. color: #333333;
  3121. white-space: nowrap;
  3122. font-style: italic;
  3123. }
  3124. }
  3125. .host-components {
  3126. .dropdown-menu {
  3127. .disabled {
  3128. pointer-events: none;
  3129. color: #808080;
  3130. cursor: default;
  3131. }
  3132. }
  3133. }
  3134. }
  3135. .services-menu {
  3136. .icon-refresh {
  3137. color: @restart-indicator-color;
  3138. margin-left: 4px;
  3139. }
  3140. }
  3141. #hosts, #host-details, #serviceConfig {
  3142. .icon-refresh {
  3143. color: @restart-indicator-color;
  3144. }
  3145. .alerts-count {
  3146. margin-left: 0;
  3147. }
  3148. }
  3149. .background-operations {
  3150. .progress {
  3151. margin-bottom: 5px;
  3152. .bar {
  3153. width: 100%;
  3154. }
  3155. }
  3156. .open-details {
  3157. clear: left;
  3158. display: block;
  3159. float: left;
  3160. text-decoration: none;
  3161. width: 16px;
  3162. }
  3163. .operation-details {
  3164. padding-left: 16px;
  3165. padding-top: 5px;
  3166. display: none;
  3167. }
  3168. margin-bottom: 10px;
  3169. }
  3170. .background-operations.is-open {
  3171. .operation-details {
  3172. display: block;
  3173. }
  3174. }
  3175. /*End Hosts*/
  3176. /*Start Admin*/
  3177. .header {
  3178. margin-bottom: 20px;
  3179. }
  3180. .admin-cluster {
  3181. a.inactive {
  3182. cursor: default;
  3183. color: #333333;
  3184. text-decoration: none;
  3185. }
  3186. }
  3187. .btn-padding {
  3188. margin-left: 20px
  3189. }
  3190. .admin-misc {
  3191. .span6 {
  3192. margin-left: 0 !important;
  3193. }
  3194. }
  3195. .admin-user-settings {
  3196. .checkbox {
  3197. margin: 0px;
  3198. }
  3199. }
  3200. /*End Admin*/
  3201. /* Start Admin Access*/
  3202. #access{
  3203. .checkbox{
  3204. margin: 0;
  3205. }
  3206. .acces-values{
  3207. padding-bottom: 15px;
  3208. }
  3209. }
  3210. /* End Admin Access*/
  3211. /*Start About*/
  3212. .about {
  3213. .logo {
  3214. width: 20%;
  3215. float: left;
  3216. }
  3217. .content {
  3218. float: left;
  3219. .project {
  3220. font-weight: bold;
  3221. font-size: 2em;
  3222. }
  3223. }
  3224. }
  3225. /*End About*/
  3226. /*assign masters*/
  3227. .assign-masters {
  3228. .select-hosts {
  3229. white-space: nowrap;
  3230. }
  3231. label.host-name {
  3232. padding-top: 5px;
  3233. }
  3234. .round-corners {
  3235. border-radius: 8px;
  3236. -webkit-border-radius: 8px;
  3237. -moz-border-radius: 8px;
  3238. }
  3239. .remaining-hosts {
  3240. padding: 25px;
  3241. border-top: solid 1px #cccccc;
  3242. border-left: solid 1px #cccccc;
  3243. border-right: groove 5px #cccccc;
  3244. border-bottom: groove 5px #cccccc;
  3245. margin-top: 20px;
  3246. background-color: #FCF8E3;
  3247. color: #C09853;
  3248. }
  3249. .host-assignments .mapping-box {
  3250. border: solid 1px #cccccc;
  3251. padding: 8px;
  3252. margin-bottom: 10px;
  3253. background-color: #fafafa;
  3254. }
  3255. .host-assignments .assignedService {
  3256. padding: 2px 8px;
  3257. border: solid 1px #cccccc;
  3258. margin: 2px;
  3259. background-color: #969696;
  3260. color: white;
  3261. white-space: nowrap;
  3262. font-size: 0.9em;
  3263. display: inline-block;
  3264. }
  3265. .host-assignments .newService {
  3266. padding: 2px 8px;
  3267. border: solid 1px #cccccc;
  3268. margin: 2px;
  3269. background-color: @green;
  3270. color: white;
  3271. white-space: nowrap;
  3272. font-size: 0.9em;
  3273. display: inline-block;
  3274. }
  3275. .host-assignments .grey {
  3276. background-color: #808080;
  3277. border: solid 1px #000000;
  3278. }
  3279. .form-horizontal .controls {
  3280. margin-left: 110px;
  3281. }
  3282. .form-horizontal .control-label {
  3283. white-space: normal;
  3284. width: 120px;
  3285. padding-right: 10px;
  3286. }
  3287. .form-horizontal .control-group select {
  3288. width: 75%;
  3289. min-width: 100px;
  3290. max-width: 250px;
  3291. }
  3292. .hostString {
  3293. margin-bottom: 5px;
  3294. }
  3295. .badge {
  3296. background-color: @green;
  3297. color: #ffffff;
  3298. cursor: pointer;
  3299. font-weight: bold;
  3300. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3301. }
  3302. .badge:hover {
  3303. background-color: @green;
  3304. }
  3305. .alertFlag {
  3306. font-size: 1.3em;
  3307. color: #B94A48;
  3308. font-weight: bold;
  3309. vertical-align: middle;
  3310. }
  3311. }
  3312. /*end assign masters*/
  3313. .assign-clients {
  3314. .round-corners {
  3315. border-radius: 8px;
  3316. -webkit-border-radius: 8px;
  3317. -moz-border-radius: 8px;
  3318. }
  3319. .assignedService {
  3320. padding: 2px 8px;
  3321. border: solid 1px #cccccc;
  3322. margin: 2px;
  3323. background-color: @blue;
  3324. color: white;
  3325. white-space: nowrap;
  3326. font-size: 0.9em;
  3327. display: inline-block;
  3328. }
  3329. }
  3330. /*Dashboard*/
  3331. .alerts-count {
  3332. cursor: pointer;
  3333. margin-left: 5px;
  3334. }
  3335. ul.filter {
  3336. background: #ffffff;
  3337. list-style: none;
  3338. position: absolute;
  3339. padding: 10px;
  3340. }
  3341. #main-admin-menu {
  3342. padding: 8px 0;
  3343. .nav-list {
  3344. .tab-marker-position {
  3345. background-position: 6px 5px;
  3346. background-repeat: no-repeat;
  3347. list-style: none;
  3348. float: left;
  3349. height: 20px;
  3350. width: 20px;
  3351. margin-left: 0;
  3352. }
  3353. li {
  3354. line-height: 24px;
  3355. a {
  3356. padding: 3px 20px;
  3357. }
  3358. }
  3359. }
  3360. }
  3361. #user-auth-method select {
  3362. width: 320px;
  3363. }
  3364. .host-block {
  3365. margin-top: 20px;
  3366. }
  3367. /*start charts rack*/
  3368. .rack {
  3369. width: 98%;
  3370. display: inline-block;
  3371. vertical-align: top;
  3372. border: 1px solid #D4D4D4;
  3373. border-radius: 5px;
  3374. margin-right: 4px;
  3375. margin-bottom: 10px;
  3376. .rackHeader {
  3377. background-color: #F7F7F7;
  3378. border-top-right-radius: 5px;
  3379. border-top-left-radius: 5px;
  3380. padding: 5px 5px 5px 10px;
  3381. border-bottom: 1px solid #D4D4D4;
  3382. .statusName {
  3383. font-size: 15px;
  3384. color: #006F9F;
  3385. text-shadow: #ffffff 0px 0px 1px;
  3386. font-weight: bold;
  3387. vertical-align: top;
  3388. }
  3389. .toggler {
  3390. background-repeat: no-repeat;
  3391. background-image: @rack-state-toggler;
  3392. display: block;
  3393. height: 22px;
  3394. position: relative;
  3395. width: 32px;
  3396. float: right;
  3397. span {
  3398. background-repeat: no-repeat;
  3399. background-image: @rack-state-plus;
  3400. display: block;
  3401. height: 17px;
  3402. left: 7px;
  3403. position: absolute;
  3404. top: 3px;
  3405. width: 18px;
  3406. }
  3407. span.isActive {
  3408. background-image: @rack-state-minus !important;
  3409. top: 10px;
  3410. }
  3411. }
  3412. }
  3413. .hostsSummary {
  3414. border-left: 1px solid #CDCDCD;
  3415. border-right: 1px solid #CDCDCD;
  3416. border-bottom: 1px solid #9f9f9f;
  3417. background-color: #f7f8fa;
  3418. font-size: 12px;
  3419. padding: 4px 0 4px 9px;
  3420. .textBlock {
  3421. color: #000000;
  3422. padding-right: 10px;
  3423. div {
  3424. height: 12px;
  3425. margin: 0 3px 0 0;
  3426. width: 12px;
  3427. display: inline-block;
  3428. }
  3429. }
  3430. }
  3431. .indicatorR {
  3432. background-color: #E2001A;
  3433. }
  3434. .indicatorY {
  3435. background-color: #F29400;
  3436. }
  3437. .indicatorG {
  3438. background-color: #88BF67;
  3439. }
  3440. .statusIndicator {
  3441. display: inline-block;
  3442. width: 20px;
  3443. height: 19px;
  3444. margin-right: 10px;
  3445. margin-top: 4px;
  3446. float: left;
  3447. background-repeat: no-repeat;
  3448. }
  3449. .rackName {
  3450. margin-top: 4px;
  3451. float: left;
  3452. }
  3453. .statusIndicator.LIVE {
  3454. background-image: @rack-status-live;
  3455. }
  3456. .statusIndicator.CRITICAL {
  3457. background-image: @rack-status-critical;
  3458. }
  3459. .statusIndicator.DEAD {
  3460. background-image: @rack-status-dead;
  3461. }
  3462. .hosts {
  3463. padding: 4px;
  3464. overflow: hidden;
  3465. display: none;
  3466. .ember-view {
  3467. float: left;
  3468. width: 100%;
  3469. height: 43px;
  3470. .hostBlock {
  3471. height: 38px;
  3472. position: relative;
  3473. border: 1px solid #D4D4D4;
  3474. margin-right: 3px;
  3475. }
  3476. }
  3477. .hostBlock {
  3478. border-radius: 4px;
  3479. }
  3480. .hostBlock.HEALTHY {
  3481. background-color: #87BE73;
  3482. }
  3483. .hostBlock.UNHEALTHY {
  3484. background-color: #E40024;
  3485. }
  3486. .hostBlock.CRITICAL {
  3487. background: #F39236;
  3488. }
  3489. .ember-view:hover {
  3490. }
  3491. }
  3492. .hosts.isActive {
  3493. display: block;
  3494. }
  3495. }
  3496. /*Start Heatmap*/
  3497. .heatmap {
  3498. #heatmap-metric-title {
  3499. margin-left: 23px;
  3500. }
  3501. .rack.rack-5-2 {
  3502. .hosts {
  3503. height: 86px;
  3504. }
  3505. }
  3506. .rack.rack-5-4 {
  3507. .hosts {
  3508. height: 172px;
  3509. }
  3510. }
  3511. .rack.rack-5-6 {
  3512. .hosts {
  3513. height: 258px;
  3514. }
  3515. }
  3516. .rack.rack-5-8 {
  3517. .hosts {
  3518. height: 344px;
  3519. }
  3520. }
  3521. .rack.rack-5-10 {
  3522. .hosts {
  3523. height: 430px;
  3524. }
  3525. }
  3526. .legend-column {
  3527. min-width: 160px;
  3528. }
  3529. .heatmap_host_details {
  3530. font-size: 12px;
  3531. line-height: 1.6em;
  3532. border: 1px solid #D9D9D9;
  3533. background: #f9f9f9;
  3534. width: 280px;
  3535. padding: 10px 10px;
  3536. position: absolute;
  3537. z-index: 1000;
  3538. }
  3539. .container-fluid {
  3540. padding: 0px;
  3541. }
  3542. .row-fluid [class*="span"] {
  3543. margin-left: 0px;
  3544. }
  3545. .legend {
  3546. margin-top: 20px;
  3547. margin-bottom: 20px;
  3548. .tile {
  3549. width: 50px;
  3550. height: 1em;
  3551. padding: 4px;
  3552. border: 1px solid #D4D4D4;
  3553. border-radius: 5px;
  3554. margin-right: 10px;
  3555. }
  3556. }
  3557. h4 {
  3558. color: #777777;
  3559. margin-top: 5px;
  3560. }
  3561. .heatmap-host {
  3562. display: block;
  3563. width: 100%;
  3564. height: 100%;
  3565. }
  3566. .dropdown-submenu {
  3567. a {
  3568. cursor: default;
  3569. }
  3570. .dropdown-menu {
  3571. a {
  3572. cursor: pointer;
  3573. }
  3574. }
  3575. }
  3576. }
  3577. /*End Heatmap*/
  3578. /*Start Mirroring*/
  3579. .mirroring-top-nav {
  3580. margin-bottom: 20px;
  3581. }
  3582. .switcher {
  3583. background-color: #e5e5e5;
  3584. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3585. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3586. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3587. margin-bottom: 20px;
  3588. border-radius: 4px;
  3589. border-color: #D8D8D8;
  3590. }
  3591. .schedule-toggle {
  3592. min-width: 190px;
  3593. }
  3594. #mirroring {
  3595. .page-bar {
  3596. border: 1px solid silver;
  3597. text-align: right;
  3598. div {
  3599. display: inline-block;
  3600. margin: 0 10px;
  3601. }
  3602. .items-on-page {
  3603. label {
  3604. display: inline;
  3605. }
  3606. select {
  3607. margin-bottom: 4px;
  3608. margin-top: 4px;
  3609. width: 70px;
  3610. }
  3611. }
  3612. .paging_two_button {
  3613. a.paginate_disabled_next, a.paginate_disabled_previous {
  3614. color: gray;
  3615. &:hover {
  3616. color: gray;
  3617. text-decoration: none;
  3618. cursor: default;
  3619. }
  3620. }
  3621. a.paginate_next, a.paginate_previous {
  3622. &:hover {
  3623. text-decoration: none;
  3624. cursor: pointer;
  3625. }
  3626. }
  3627. a {
  3628. padding:0 5px;
  3629. }
  3630. }
  3631. }
  3632. .table { //margin-bottom: 0;
  3633. thead { //background: #EDF5FC;
  3634. }
  3635. th {
  3636. border-top: none;
  3637. }
  3638. th, td {
  3639. width: 82px;
  3640. border-left-width: 0;
  3641. }
  3642. th.first, td.first {
  3643. width: 10px !important;
  3644. border-left-width: 1px;
  3645. }
  3646. td.first label {
  3647. padding-top: 3px;
  3648. }
  3649. td.first span {
  3650. display: block;
  3651. float: right;
  3652. height: 13px;
  3653. margin: 5px 0 0 0;
  3654. width: 13px;
  3655. }
  3656. ul.filter-components {
  3657. padding: 5px 0;
  3658. li {
  3659. display: block;
  3660. padding: 3px 0 3px 5px;
  3661. line-height: 20px;
  3662. label.checkbox {
  3663. padding-left: 3px;
  3664. }
  3665. input[type="checkbox"] {
  3666. margin: 4px 4px 2px 2px;
  3667. }
  3668. }
  3669. &>li {
  3670. &>ul {
  3671. height: 250px;
  3672. margin-left: 0;
  3673. overflow-y: scroll;
  3674. }
  3675. }
  3676. }
  3677. .sorting_asc {
  3678. background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAHgAAAMBAQAAAAAAAAAAAAAAAAAFCAYKAQACAQUAAAAAAAAAAAAAAAAABQMCBAYHCBAAAQUAAQMEAwAAAAAAAAAAAwECBAUGABESByExIghBMxQRAAIBAwMDAwUAAAAAAAAAAAECAwAEBRESBiExUUHhB2GBIhMU/9oADAMBAAIRAxEAPwDvA8k+Qc54sxGj32qlNi0ucrjTj/JqGlmROyJXQ2u/bOsZTmBExPd70/HXmQcW41lOX5+145h0L391KEHhR3Z28Ii6sx9AKgubiO1gaeU6Io19h9TUg/S/7eP+wia3NbBIFbuqiyn3VTCjIMArHHTJarEDGGiNU8vOKVsc7/VxBuGR3yV683X86/Cq/GpssrhP2S8emiSKRm1JS5VfyLH0WfQug7KwZR0CilWHy39++ObQTgkgeV9ux+xq9uc6U8pLfZzP6mClZpKWrvq1DilJAt4Mewh/0hRyBOsaUMoVKLvXtVU6t6+nL/HZTJYi4/rxU81tdbSu+N2Rtp7jcpB0OnUa9aoeOOVdsgDL4I1pFS+NPHmcsQ2+fw+UpLWOwwwWNVQ1kCaIcgaiONkmLGEZrDDXtcnXo5PfjC+5VybKWrWWSyF5cWbEEpJNI6kqdQSrMRqD1B9KjS2t423xoqt5AArb8QVPRwoo4UUcKK//2Q==) no-repeat right 50%;
  3679. }
  3680. .sorting_desc {
  3681. background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAIEAAAIDAQAAAAAAAAAAAAAAAAAGBwgJCgEBAAIDAQAAAAAAAAAAAAAAAAMFBAYHCBAAAAUDAwMFAAAAAAAAAAAAAQIDBAUABgcSNTYRFQgTZFUWZhEAAAQEAggGAwAAAAAAAAAAAAECAxEhBAYSMjFBYRMzFDQFUZFSYmMHJFRk/9oADAMBAAIRAxEAPwDv4oAKACgCKc1tMmusb3Eph6cSgsgx7fucEZxGRks2llGIGVWgVm8q1dt0+6ogKaapSgdNbQPXTqAdwsN602bopk3vTnUW24rduwccbU2S5E8Sm1JM92czSZwNOKUYDFrCqTp1corDUFMpEcYap+Ipb4P5O8n81y9xXXlG50yY+thR3AEivqFvRDmduvSUrhuLtrFNXqCFvJm1LAQ5RMuchB6gBy13f7+tP6lsOipuz2jSGdy1ZJeNzmXnEtU+pWFTikmbxyTEjgglKKZpMU3ZanudYtTtSr8dMoYSKKvKMte0aUV5YGxgoASbD2iQ4Tyi6uB7Rvz/AHD9R8r7/wBWr64uta6/pKfq+JwUZP5/1/hwCFjIeTMrLo0np93q2xDtVCJh/9k=) no-repeat right 50%;
  3682. }
  3683. .sorting {
  3684. background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAGgAAAIDAQAAAAAAAAAAAAAAAAUHAAYICgEBAQAAAAAAAAAAAAAAAAAAAAEQAAEEAQIFAgcAAAAAAAAAAAECAwQFABEGIRI0NQcTFDFBMmNUZRYRAQEBAQAAAAAAAAAAAAAAAAABEUH/2gAMAwEAAhEDEQA/AO93cd/XbXpLC9tHQ1Dr46nljUBby/gzGZB+p+Q6QhA+ZOApfDnllW/ha1tv6Ee7iyH5kRlvlbTIqHndWkNJ0HO7XFQbWeJUkpUeOpySrZh65UUnyFUW1ztaexRmIbaPyzoLE6vg2UWW9GC1e0XHnsSGEqfQohCwApK9OIGuAjfBP9VuG0m39vGqINVUe4r2xF21TVsuXZOI9N9lMmLBYkttQ21auBKhqtSUngCMkW5xqjKiYASh6SR2Tulr2HpOvf6j9p+V9/mwDeB//9k=) no-repeat right 50%;
  3685. }
  3686. div.view-wrapper {
  3687. .btn-group {
  3688. margin-bottom: 9px;
  3689. }
  3690. }
  3691. a.ui-icon-circle-close {
  3692. float: right;
  3693. opacity: 0.2;
  3694. padding: 1px;
  3695. position: relative;
  3696. right: -8px;
  3697. margin-top: 6px;
  3698. z-index: 10;
  3699. &:hover {
  3700. opacity: 0.7;
  3701. }
  3702. }
  3703. .notActive {
  3704. a.ui-icon-circle-close {
  3705. visibility: hidden;
  3706. }
  3707. }
  3708. .status-dot-position {
  3709. background-position: center;
  3710. background-repeat: no-repeat;
  3711. height: 20px;
  3712. width: 13px;
  3713. }
  3714. .health-status-LIVE {
  3715. background-image: @status-live-marker;
  3716. .status-dot-position;
  3717. }
  3718. .health-status-DEAD-RED {
  3719. background-image: @status-dead-red-marker;
  3720. .status-dot-position;
  3721. }
  3722. .dataset-selected {
  3723. background-color: #E6F1F6;
  3724. }
  3725. }
  3726. .box-footer .footer-pagination {
  3727. float: right;
  3728. .nav {
  3729. margin-bottom: 0;
  3730. }
  3731. .dropdown {
  3732. margin-top: 3px;
  3733. }
  3734. .dropdown {
  3735. margin-top: 3px;
  3736. }
  3737. .dropdown select {
  3738. width: 60px;
  3739. }
  3740. .page-listing a {
  3741. line-height: 0;
  3742. border: none;
  3743. margin: 0;
  3744. margin-right: 10px;
  3745. cursor: pointer;
  3746. color: #0088CC;
  3747. padding: 8px 0;
  3748. float: left;
  3749. text-decoration: underline;
  3750. }
  3751. .page-listing a:hover {
  3752. text-decoration: none;
  3753. }
  3754. .page-listing {
  3755. width: 100px;
  3756. .table {
  3757. th.name {
  3758. width: 300px;
  3759. a.filter-label {
  3760. width: 57px;
  3761. display: block;
  3762. float: left;
  3763. }
  3764. }
  3765. }
  3766. }
  3767. }
  3768. .jobs-container {
  3769. margin-top: 50px;
  3770. border: 1px solid #dddddd;
  3771. border-radius: 4px;
  3772. -moz-border-radius: 4px;
  3773. -webkit-border-radius: 4px;
  3774. padding: 10px
  3775. }
  3776. .dataset-details {
  3777. position: relative;
  3778. height: 100px;
  3779. .top-right {
  3780. position: absolute;
  3781. top: 0;
  3782. right: 10px;
  3783. }
  3784. .top-left {
  3785. position: absolute;
  3786. top: 0;
  3787. left: 10px;
  3788. }
  3789. .bottom-right {
  3790. position: absolute;
  3791. bottom: 5px;
  3792. right: 10px;
  3793. }
  3794. .bottom-left {
  3795. position: absolute;
  3796. bottom: 5px;
  3797. left: 10px;
  3798. }
  3799. .dataset-status {
  3800. padding: 8px;
  3801. font-size: 16px;
  3802. margin-right: 5px;
  3803. }
  3804. td {
  3805. padding: 0 15px 0 0;
  3806. }
  3807. }
  3808. }
  3809. #mirroring-manage-clusters {
  3810. .cluster-select {
  3811. width: 100%;
  3812. height: 250px;
  3813. margin-bottom: 0;
  3814. }
  3815. .control-label-manage-clusters {
  3816. float: left;
  3817. width: 80px;
  3818. padding-top: 5px;
  3819. }
  3820. .control-group {
  3821. margin-left: 15px;
  3822. margin-bottom: 10px;
  3823. }
  3824. .accordion-inner {
  3825. padding: 9px 0;
  3826. }
  3827. }
  3828. .dataset-delete {
  3829. width: 15%;
  3830. }
  3831. .dataset-form {
  3832. width: 85%;
  3833. }
  3834. .mirroring-sidebar {
  3835. hr {
  3836. margin: 0;
  3837. }
  3838. ul {
  3839. margin: 0 0 20px 0;
  3840. li {
  3841. list-style: none;
  3842. margin: 8px 0;
  3843. a {
  3844. cursor: pointer;
  3845. }
  3846. }
  3847. }
  3848. }
  3849. .target-cluster-select {
  3850. option:last-of-type {
  3851. color: #0088cc
  3852. }
  3853. }
  3854. .jobs-sidebar{
  3855. width: 16%;
  3856. height: 100%;
  3857. float:left;
  3858. margin: 0 20px 0 0;
  3859. hr {
  3860. margin: 0;
  3861. }
  3862. ul {
  3863. margin: 0 0 20px 0;
  3864. li {
  3865. list-style: none;
  3866. margin: 8px 0;
  3867. a {
  3868. cursor: pointer;
  3869. }
  3870. }
  3871. }
  3872. }
  3873. .jobs-middleportion{
  3874. width: 82%;
  3875. height: 100%;
  3876. float: right;
  3877. }
  3878. /*End Mirroring*/
  3879. .noDisplay {
  3880. display: none !important;
  3881. }
  3882. .display {
  3883. display: block !important;
  3884. }
  3885. .display-inline-block {
  3886. display: inline-block !important;
  3887. }
  3888. /* CHARTS */
  3889. .chart {
  3890. overflow: hidden;
  3891. /*padding-bottom: 25px;*/
  3892. .attributes {
  3893. width: 75px;
  3894. float: left;
  3895. margin: 45px 0 0 0;
  3896. p {
  3897. margin-bottom: 9px;
  3898. }
  3899. }
  3900. .hostName {
  3901. font-weight: bold;
  3902. }
  3903. .horizon {
  3904. border-bottom: 1px solid #000000;
  3905. overflow: hidden;
  3906. position: relative;
  3907. }
  3908. .horizon {
  3909. border-bottom: 1px solid #000000;
  3910. border-top: 1px solid #000000;
  3911. }
  3912. .horizon + .horizon {
  3913. border-top: medium none;
  3914. }
  3915. .horizon canvas {
  3916. display: block;
  3917. }
  3918. .horizon .title, .horizon .value {
  3919. bottom: 0;
  3920. line-height: 30px;
  3921. margin: 0 6px;
  3922. position: absolute;
  3923. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3924. white-space: nowrap;
  3925. }
  3926. .horizon .title {
  3927. left: 0;
  3928. }
  3929. .horizon .value {
  3930. right: 0;
  3931. }
  3932. .rule {
  3933. display: none;
  3934. width: 30px;
  3935. height: 124px;
  3936. padding-top: 27px;
  3937. position: absolute;
  3938. border-left: 1px dashed #a52a2a;
  3939. .stateValue {
  3940. margin: 15px 0 0 3px;
  3941. line-height: 15px;
  3942. }
  3943. }
  3944. .axis {
  3945. font: 10px sans-serif;
  3946. path {
  3947. display: none;
  3948. }
  3949. line {
  3950. shape-rendering: crispedges;
  3951. stroke: #000000;
  3952. }
  3953. }
  3954. .line {
  3955. background: none repeat scroll 0 0 #000000;
  3956. /* opacity: 0.2; */
  3957. z-index: 2;
  3958. }
  3959. ul.dropdown-menu {
  3960. li {
  3961. text-align: left;
  3962. }
  3963. }
  3964. }
  3965. .linear {
  3966. path {
  3967. stroke: steelblue;
  3968. stroke-width: 2;
  3969. fill: none;
  3970. }
  3971. line {
  3972. stroke: black;
  3973. }
  3974. text {
  3975. font-family: Arial;
  3976. font-size: 9pt;
  3977. }
  3978. }
  3979. /* CHARTS END */
  3980. /* UNIVERSAL STYLES */
  3981. .align-right {
  3982. text-align: right;
  3983. }
  3984. .text-center {
  3985. text-align: center;
  3986. }
  3987. .left {
  3988. float: left;
  3989. }
  3990. .no-borders {
  3991. border: none !important;
  3992. }
  3993. ul.noStyle {
  3994. list-style: none;
  3995. }
  3996. ul.inline li {
  3997. display: inline;
  3998. }
  3999. .table.no-borders th, .table.no-borders td {
  4000. border-top: none;
  4001. }
  4002. /* UNIVERSAL STYLES END */
  4003. /* METRIC FILTERING WIDGET */
  4004. .metric-filtering-widget {
  4005. .title {
  4006. padding-top: 4px;
  4007. }
  4008. .accordion {
  4009. background: none repeat scroll 0 0 #FFFFFF;
  4010. /*border: 1px solid;*/
  4011. font-size: 12px;
  4012. /*padding: 5px 0;*/
  4013. position: absolute;
  4014. z-index: 1000;
  4015. .accordion-group {
  4016. .accordion-heading {
  4017. i {
  4018. text-decoration: none;
  4019. }
  4020. }
  4021. .accordion-body {
  4022. .accordion-inner {
  4023. /*border: none;
  4024. padding: 0 8px;
  4025. width: 160px;*/
  4026. ul.items {
  4027. list-style: none;
  4028. li {
  4029. a:hover {
  4030. cursor: pointer;
  4031. }
  4032. }
  4033. li.disabled {
  4034. a {
  4035. color: #999999;
  4036. }
  4037. }
  4038. }
  4039. }
  4040. }
  4041. }
  4042. }
  4043. }
  4044. /* METRIC FILTERING WIDGET END */
  4045. /* TIME RANGE WIDGET */
  4046. /* start css for timepicker */
  4047. .ui-timepicker-div .ui-widget-header {
  4048. margin-bottom: 8px;
  4049. }
  4050. .ui-timepicker-div dl {
  4051. text-align: left;
  4052. }
  4053. .ui-timepicker-div dl dt {
  4054. height: 25px;
  4055. margin-bottom: -25px;
  4056. }
  4057. .ui-timepicker-div dl dd {
  4058. margin: 0 10px 10px 65px;
  4059. }
  4060. .ui-timepicker-div td {
  4061. font-size: 90%;
  4062. }
  4063. .ui-tpicker-grid-label {
  4064. background: none;
  4065. border: none;
  4066. margin: 0;
  4067. padding: 0;
  4068. }
  4069. .ui-timepicker-rtl {
  4070. direction: rtl;
  4071. }
  4072. .ui-timepicker-rtl dl {
  4073. text-align: right;
  4074. }
  4075. .ui-timepicker-rtl dl dd {
  4076. margin: 0 65px 10px 10px;
  4077. }
  4078. /* end css for timepicker */
  4079. #slider {
  4080. margin: 10px 0 40px;
  4081. width: 330px;
  4082. .now-marker {
  4083. position: absolute;
  4084. right: -15px;
  4085. bottom: -23px;
  4086. }
  4087. .period-marker {
  4088. position: absolute;
  4089. left: -15px;
  4090. bottom: -23px;
  4091. }
  4092. }
  4093. .screensaver {
  4094. width: 90%;
  4095. height: 157px;
  4096. border: 1px solid silver;
  4097. margin: 20px 15px 10px 15px;
  4098. background: url(/img/spinner.gif) no-repeat center center;
  4099. }
  4100. /* TIME RANGE WIDGET END */
  4101. #host-details .host-components .btn-group > .btn {
  4102. width: 140px;
  4103. }
  4104. #host-details > .host-maintenance {
  4105. text-align: right;
  4106. margin-top: -28px;
  4107. }
  4108. #host-details > .host-maintenance > div {
  4109. text-align: left;
  4110. }
  4111. #host-details > .host-title {
  4112. font-size: 18px;
  4113. font-weight: 700;
  4114. background-position: 0px center;
  4115. padding-left: 17px;
  4116. }
  4117. /* fieldset begin */
  4118. .fieldset {
  4119. border: 2px solid black;
  4120. padding: 10px;
  4121. }
  4122. .fieldset legend {
  4123. border-bottom: none;
  4124. width: auto;
  4125. font-size: 14px;
  4126. }
  4127. /* fieldset end */
  4128. /* Start Carousel */
  4129. .carousel-inner {
  4130. height: 80px;
  4131. }
  4132. /* End Carousel*/
  4133. #add-host .back {
  4134. display: block;
  4135. width: 105px;
  4136. margin-bottom: 10px;
  4137. }
  4138. #add-service .back {
  4139. display: block;
  4140. width: 130px;
  4141. margin-bottom: 10px;
  4142. }
  4143. #step8-content {
  4144. max-height: 440px;
  4145. }
  4146. .log_popup {
  4147. .bar {
  4148. -webkit-transition: width 0.0s ease;
  4149. -moz-transition: width 0.0s ease;
  4150. -ms-transition: width 0.0s ease;
  4151. -o-transition: width 0.0s ease;
  4152. transition: width 0.0s ease;
  4153. }
  4154. }
  4155. #step10-content {
  4156. max-height: 440px;
  4157. }
  4158. .content-area {
  4159. position: relative;
  4160. .textTrigger {
  4161. cursor: pointer;
  4162. position: absolute;
  4163. right: 0;
  4164. top: 0;
  4165. visibility: hidden;
  4166. background-color: #dcdcdc;
  4167. }
  4168. }
  4169. //bootstrap
  4170. //.dropdown-menu .active > a, .dropdown-menu .active > a:hover {
  4171. // background-color: #49AFCD;
  4172. // background-image: -moz-linear-gradient(center top, #5BC0DE, #2F96B4);
  4173. //}
  4174. //bootstrap end
  4175. // COMBOBOX FIXES
  4176. .combobox-container .btn:hover {
  4177. background-position: 0;
  4178. }
  4179. // COMBOBOX FIXES END
  4180. @media all and (max-width: 1200px) {
  4181. #main-nav {
  4182. li.span2 {
  4183. width: 120px;
  4184. }
  4185. }
  4186. #hosts {
  4187. .table {
  4188. .col2,
  4189. td:first-child + td + td,
  4190. th:first-child + th + th {
  4191. width: 27%!important;
  4192. }
  4193. .col6,.col7,.col8,.col9,
  4194. td:first-child + td + td + td + td + td + td,
  4195. th:first-child + th + th + th + th + th + th,
  4196. td:first-child + td + td + td + td + td + td + td,
  4197. th:first-child + th + th + th + th + th + th + th,
  4198. td:first-child + td + td + td + td + td + td + td + td,
  4199. th:first-child + th + th + th + th + th + th + th + th,
  4200. td:first-child + td + td + td + td + td + td + td + td + td,
  4201. th:first-child + th + th + th + th + th + th + th + th + th{
  4202. width: 10%!important;
  4203. }
  4204. td.name .trim_hostname{
  4205. width: 90%!important;
  4206. }
  4207. }
  4208. }
  4209. // when the scree is narrow, the popup modal width is adjustable
  4210. .full-width-modal {
  4211. .modal{
  4212. width: 90%;
  4213. margin: 350px 0 0 -45%;
  4214. }
  4215. }
  4216. .service-menu-width {
  4217. width: 163px!important;
  4218. }
  4219. .summary-width {
  4220. width:757px!important
  4221. }
  4222. .assign-masters {
  4223. .host-assignments {
  4224. margin-left: 0;
  4225. width: 32%;
  4226. }
  4227. .select-hosts {
  4228. width: 68%;
  4229. }
  4230. }
  4231. .wizard-content {
  4232. #serviceConfig {
  4233. .alert {
  4234. padding-right: 10px!important;
  4235. }
  4236. }
  4237. .filter-combobox {
  4238. > input {
  4239. width: 115px!important;
  4240. }
  4241. }
  4242. }
  4243. }
  4244. //
  4245. // Gray palette
  4246. //
  4247. .nav-pills > .active > a, .nav-pills > .active > a:hover {
  4248. background-color: #666666;
  4249. }
  4250. .nav-list > .active > a, .nav-list > .active > a:hover {
  4251. background-color: #666666;
  4252. }
  4253. li.break {
  4254. background: none repeat scroll 0 0 #e4e4e4;
  4255. padding-top: 1px;
  4256. }
  4257. .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a {
  4258. background-color: #666666;
  4259. background-image: linear-gradient(to bottom, #666666, #555555);
  4260. }
  4261. .alert-info {
  4262. background-color: #E6F1F6;
  4263. border-color: #D2D9DD;
  4264. color: #4E575B;
  4265. text-shadow: none;
  4266. .spinner {
  4267. padding: 8px 35px 0px 42px;
  4268. width: auto;
  4269. background: url(/img/spinner.gif) no-repeat;
  4270. }
  4271. .link {
  4272. padding: 0 15px;
  4273. }
  4274. .link-left-pad {
  4275. padding-left:15px;
  4276. }
  4277. }
  4278. /*
  4279. .progress-striped .bar {
  4280. background-color: #A5A5A5;
  4281. }
  4282. .progress-info.progress-striped .bar, .progress-striped .bar-info {
  4283. background-color: #A5A5A5;
  4284. }
  4285. */
  4286. .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  4287. background-color: #555555;
  4288. }
  4289. .modal-body {
  4290. max-height: none;
  4291. .api-error {
  4292. max-height: 403px;
  4293. word-wrap:break-word;
  4294. overflow: auto;
  4295. }
  4296. }
  4297. i.icon-asterisks {
  4298. color: #FF4B4B;
  4299. }
  4300. .rickshaw_legend {
  4301. .action {
  4302. opacity: 1;
  4303. color: #ffffff;
  4304. }
  4305. .action:hover {
  4306. opacity: 0.8;
  4307. text-decoration: none;
  4308. }
  4309. }
  4310. .hidden {
  4311. display: none;
  4312. visibility: hidden;
  4313. }
  4314. .code-snippet {
  4315. background-color: #EEEEEE;
  4316. border: 1px dashed #CCCCCC;
  4317. font-family: Courier;
  4318. font-size: 12px;
  4319. padding: 4px;
  4320. white-space: nowrap;
  4321. }
  4322. //styles for screen width more than 1200px
  4323. @media (min-width: 1200px) {
  4324. //when screen is wide, the modal width is fixed
  4325. .full-width-modal {
  4326. .modal{
  4327. width: 1155px;
  4328. margin: -350px 0 0 -583px;
  4329. }
  4330. }
  4331. .row {
  4332. margin-left: -30px;
  4333. *zoom: 1;
  4334. }
  4335. .row:before,
  4336. .row:after {
  4337. display: table;
  4338. line-height: 0;
  4339. content: "";
  4340. }
  4341. .row:after {
  4342. clear: both;
  4343. }
  4344. [class*="span"] {
  4345. float: left;
  4346. min-height: 1px;
  4347. margin-left: 30px;
  4348. }
  4349. .container,
  4350. .navbar-static-top .container,
  4351. .navbar-fixed-top .container,
  4352. .navbar-fixed-bottom .container {
  4353. width: 1130px;
  4354. }
  4355. .main-container {
  4356. width: 1170px;
  4357. }
  4358. .span12 {
  4359. width: 1170px;
  4360. }
  4361. .span11 {
  4362. width: 1070px;
  4363. }
  4364. .span10 {
  4365. width: 970px;
  4366. }
  4367. .span9 {
  4368. width: 870px;
  4369. }
  4370. .span8 {
  4371. width: 770px;
  4372. }
  4373. .span7 {
  4374. width: 670px;
  4375. }
  4376. .span6 {
  4377. width: 570px;
  4378. }
  4379. .span5 {
  4380. width: 470px;
  4381. }
  4382. .span4 {
  4383. width: 370px;
  4384. }
  4385. .span3 {
  4386. width: 270px;
  4387. }
  4388. .span2 {
  4389. width: 170px;
  4390. }
  4391. .span1 {
  4392. width: 70px;
  4393. }
  4394. .offset12 {
  4395. margin-left: 1230px;
  4396. }
  4397. .offset11 {
  4398. margin-left: 1130px;
  4399. }
  4400. .offset10 {
  4401. margin-left: 1030px;
  4402. }
  4403. .offset9 {
  4404. margin-left: 930px;
  4405. }
  4406. .offset8 {
  4407. margin-left: 830px;
  4408. }
  4409. .offset7 {
  4410. margin-left: 730px;
  4411. }
  4412. .offset6 {
  4413. margin-left: 630px;
  4414. }
  4415. .offset5 {
  4416. margin-left: 530px;
  4417. }
  4418. .offset4 {
  4419. margin-left: 430px;
  4420. }
  4421. .offset3 {
  4422. margin-left: 330px;
  4423. }
  4424. .offset2 {
  4425. margin-left: 230px;
  4426. }
  4427. .offset1 {
  4428. margin-left: 130px;
  4429. }
  4430. .row-fluid {
  4431. width: 100%;
  4432. *zoom: 1;
  4433. }
  4434. .row-fluid:before,
  4435. .row-fluid:after {
  4436. display: table;
  4437. line-height: 0;
  4438. content: "";
  4439. }
  4440. .row-fluid:after {
  4441. clear: both;
  4442. }
  4443. .row-fluid [class*="span"] {
  4444. display: block;
  4445. float: left;
  4446. width: 100%;
  4447. min-height: 30px;
  4448. margin-left: 2.564102564102564%;
  4449. *margin-left: 2.5109110747408616%;
  4450. -webkit-box-sizing: border-box;
  4451. -moz-box-sizing: border-box;
  4452. box-sizing: border-box;
  4453. }
  4454. .row-fluid [class*="span"]:first-child {
  4455. margin-left: 0;
  4456. }
  4457. .row-fluid .top-portion{
  4458. width : 100%;
  4459. height : 50px;
  4460. }
  4461. .row-fluid .span12 {
  4462. width: 100%;
  4463. *width: 99.94680851063829%;
  4464. }
  4465. .row-fluid .span11 {
  4466. width: 91.45299145299145%;
  4467. *width: 91.39979996362975%;
  4468. }
  4469. .row-fluid .span10 {
  4470. width: 82.90598290598291%;
  4471. *width: 82.8527914166212%;
  4472. }
  4473. .row-fluid .span9 {
  4474. width: 74.35897435897436%;
  4475. *width: 74.30578286961266%;
  4476. }
  4477. .row-fluid .span8 {
  4478. width: 65.81196581196582%;
  4479. *width: 65.75877432260411%;
  4480. }
  4481. .row-fluid .span7 {
  4482. width: 57.26495726495726%;
  4483. *width: 57.21176577559556%;
  4484. }
  4485. .row-fluid .span6 {
  4486. width: 48.717948717948715%;
  4487. *width: 48.664757228587014%;
  4488. }
  4489. .row-fluid .span5 {
  4490. width: 40.17094017094017%;
  4491. *width: 40.11774868157847%;
  4492. }
  4493. .row-fluid .span4 {
  4494. width: 31.623931623931625%;
  4495. *width: 31.570740134569924%;
  4496. }
  4497. .row-fluid .span3 {
  4498. width: 23.076923076923077%;
  4499. *width: 23.023731587561375%;
  4500. }
  4501. .row-fluid .span2 {
  4502. width: 14.52991452991453%;
  4503. *width: 14.476723040552828%;
  4504. }
  4505. .row-fluid .span1 {
  4506. width: 5.982905982905983%;
  4507. *width: 5.929714493544281%;
  4508. }
  4509. .row-fluid .tinyspan {
  4510. width: 2%;
  4511. }
  4512. .row-fluid .offset12 {
  4513. margin-left: 105.12820512820512%;
  4514. *margin-left: 105.02182214948171%;
  4515. }
  4516. .row-fluid .offset12:first-child {
  4517. margin-left: 102.56410256410257%;
  4518. *margin-left: 102.45771958537915%;
  4519. }
  4520. .row-fluid .offset11 {
  4521. margin-left: 96.58119658119658%;
  4522. *margin-left: 96.47481360247316%;
  4523. }
  4524. .row-fluid .offset11:first-child {
  4525. margin-left: 94.01709401709402%;
  4526. *margin-left: 93.91071103837061%;
  4527. }
  4528. .row-fluid .offset10 {
  4529. margin-left: 88.03418803418803%;
  4530. *margin-left: 87.92780505546462%;
  4531. }
  4532. .row-fluid .offset10:first-child {
  4533. margin-left: 85.47008547008548%;
  4534. *margin-left: 85.36370249136206%;
  4535. }
  4536. .row-fluid .offset9 {
  4537. margin-left: 79.48717948717949%;
  4538. *margin-left: 79.38079650845607%;
  4539. }
  4540. .row-fluid .offset9:first-child {
  4541. margin-left: 76.92307692307693%;
  4542. *margin-left: 76.81669394435352%;
  4543. }
  4544. .row-fluid .offset8 {
  4545. margin-left: 70.94017094017094%;
  4546. *margin-left: 70.83378796144753%;
  4547. }
  4548. .row-fluid .offset8:first-child {
  4549. margin-left: 68.37606837606839%;
  4550. *margin-left: 68.26968539734497%;
  4551. }
  4552. .row-fluid .offset7 {
  4553. margin-left: 62.393162393162385%;
  4554. *margin-left: 62.28677941443899%;
  4555. }
  4556. .row-fluid .offset7:first-child {
  4557. margin-left: 59.82905982905982%;
  4558. *margin-left: 59.72267685033642%;
  4559. }
  4560. .row-fluid .offset6 {
  4561. margin-left: 53.84615384615384%;
  4562. *margin-left: 53.739770867430444%;
  4563. }
  4564. .row-fluid .offset6:first-child {
  4565. margin-left: 51.28205128205128%;
  4566. *margin-left: 51.175668303327875%;
  4567. }
  4568. .row-fluid .offset5 {
  4569. margin-left: 45.299145299145295%;
  4570. *margin-left: 45.1927623204219%;
  4571. }
  4572. .row-fluid .offset5:first-child {
  4573. margin-left: 42.73504273504273%;
  4574. *margin-left: 42.62865975631933%;
  4575. }
  4576. .row-fluid .offset4 {
  4577. margin-left: 36.75213675213675%;
  4578. *margin-left: 36.645753773413354%;
  4579. }
  4580. .row-fluid .offset4:first-child {
  4581. margin-left: 34.18803418803419%;
  4582. *margin-left: 34.081651209310785%;
  4583. }
  4584. .row-fluid .offset3 {
  4585. margin-left: 28.205128205128204%;
  4586. *margin-left: 28.0987452264048%;
  4587. }
  4588. .row-fluid .offset3:first-child {
  4589. margin-left: 25.641025641025642%;
  4590. *margin-left: 25.53464266230224%;
  4591. }
  4592. .row-fluid .offset2 {
  4593. margin-left: 19.65811965811966%;
  4594. *margin-left: 19.551736679396257%;
  4595. }
  4596. .row-fluid .offset2:first-child {
  4597. margin-left: 17.094017094017094%;
  4598. *margin-left: 16.98763411529369%;
  4599. }
  4600. .row-fluid .offset1 {
  4601. margin-left: 11.11111111111111%;
  4602. *margin-left: 11.004728132387708%;
  4603. }
  4604. .row-fluid .offset1:first-child {
  4605. margin-left: 8.547008547008547%;
  4606. *margin-left: 8.440625568285142%;
  4607. }
  4608. .row-fluid .tinyoffset {
  4609. margin-left: 3%!important;
  4610. }
  4611. input,
  4612. textarea,
  4613. .uneditable-input {
  4614. margin-left: 0;
  4615. }
  4616. .controls-row [class*="span"] + [class*="span"] {
  4617. margin-left: 30px;
  4618. }
  4619. input.span12,
  4620. textarea.span12,
  4621. .uneditable-input.span12 {
  4622. width: 1156px;
  4623. }
  4624. input.span11,
  4625. textarea.span11,
  4626. .uneditable-input.span11 {
  4627. width: 1056px;
  4628. }
  4629. input.span10,
  4630. textarea.span10,
  4631. .uneditable-input.span10 {
  4632. width: 956px;
  4633. }
  4634. input.span9,
  4635. textarea.span9,
  4636. .uneditable-input.span9 {
  4637. width: 856px;
  4638. }
  4639. input.span8,
  4640. textarea.span8,
  4641. .uneditable-input.span8 {
  4642. width: 756px;
  4643. }
  4644. input.span7,
  4645. textarea.span7,
  4646. .uneditable-input.span7 {
  4647. width: 656px;
  4648. }
  4649. input.span6,
  4650. textarea.span6,
  4651. .uneditable-input.span6 {
  4652. width: 556px;
  4653. }
  4654. input.span5,
  4655. textarea.span5,
  4656. .uneditable-input.span5 {
  4657. width: 456px;
  4658. }
  4659. input.span4,
  4660. textarea.span4,
  4661. .uneditable-input.span4 {
  4662. width: 356px;
  4663. }
  4664. input.span3,
  4665. textarea.span3,
  4666. .uneditable-input.span3 {
  4667. width: 256px;
  4668. }
  4669. input.span2,
  4670. textarea.span2,
  4671. .uneditable-input.span2 {
  4672. width: 156px;
  4673. }
  4674. input.span1,
  4675. textarea.span1,
  4676. .uneditable-input.span1 {
  4677. width: 56px;
  4678. }
  4679. .thumbnails {
  4680. margin-left: -30px;
  4681. }
  4682. .thumbnails > li {
  4683. margin-left: 30px;
  4684. }
  4685. .row-fluid .thumbnails {
  4686. margin-left: 0;
  4687. }
  4688. #dashboard-widgets-container{
  4689. .add-widget-button{
  4690. margin-left: 9px; //3px for 3 buttons view
  4691. }
  4692. .more-options-button{
  4693. margin-right: 2px;
  4694. }
  4695. #dashboard-widgets{
  4696. .row-fluid .span2p4 {
  4697. width: 19.08%;
  4698. *width: 19.08%;
  4699. }
  4700. .row-fluid .span4p8 {
  4701. width: 39%;
  4702. *width: 39%;
  4703. }
  4704. .thumbnails > div {
  4705. margin-right: 8px;
  4706. }
  4707. .thumbnail .caption {
  4708. font-size: 14px;
  4709. }
  4710. .thumbnail .hidden-info-two-line {
  4711. font-size: 14px;
  4712. }
  4713. .thumbnail .hidden-info-three-line{
  4714. font-size: 14px;
  4715. }
  4716. .thumbnail .hidden-info-five-line{
  4717. font-size: 12px;
  4718. }
  4719. .links .thumbnail .widget-content{
  4720. font-weight: bold;
  4721. font-size: 12px;
  4722. }
  4723. .links .thumbnail .link-button{
  4724. padding-left: 100px;
  4725. }
  4726. #map-reduce-slots-text{
  4727. font-size: 12px;
  4728. #map-reduce-slots-bar1{
  4729. margin-left: 11px;
  4730. }
  4731. }
  4732. }
  4733. }
  4734. .summary-metric-graphs {
  4735. [class*="span"] {
  4736. float: left;
  4737. margin-left: 10px;
  4738. }
  4739. .chart-container {
  4740. .chart-x-axis {
  4741. left: 0%;
  4742. width: 100%;
  4743. }
  4744. }
  4745. }
  4746. }
  4747. .filter-combobox{
  4748. > input{
  4749. width: 170px;
  4750. -webkit-border-radius: 4px 0 0 4px;
  4751. -moz-border-radius: 4px 0 0 4px;
  4752. border-radius: 4px 0 0 4px;
  4753. }
  4754. > .btn-group{
  4755. display: inline-block;
  4756. margin-left: -1px;
  4757. > .dropdown-toggle{
  4758. border-top-left-radius: 0;
  4759. border-bottom-left-radius: 0
  4760. }
  4761. .dropdown-menu{
  4762. left: auto;
  4763. right:0;
  4764. }
  4765. }
  4766. }
  4767. #advancedRepoAccordion{
  4768. .accordion-heading {
  4769. background-color: #f0f0f0;
  4770. a:hover {
  4771. text-decoration: none;
  4772. }
  4773. }
  4774. .accordion-body {
  4775. .table thead {
  4776. }
  4777. .table tbody{
  4778. .label-error{
  4779. color: #b94a48;
  4780. }
  4781. .textfield-error input{
  4782. border-color: #b94a48;
  4783. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  4784. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  4785. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  4786. }
  4787. .disabled-textfield input{
  4788. color: #808080;
  4789. disabled: disabled;
  4790. pointer-events: none;
  4791. cursor: default;
  4792. background: #E4E4E4;
  4793. }
  4794. .disabled-label {
  4795. color: #808080;
  4796. }
  4797. .group-checkbox {
  4798. width: 3%;
  4799. vertical-align: middle;
  4800. padding-left: 2px;
  4801. padding-right: 2px;
  4802. }
  4803. .os {
  4804. padding: 2px;
  4805. border-top: transparent;
  4806. }
  4807. .os-td {
  4808. width: 17%;
  4809. padding: 2px;
  4810. }
  4811. .url {
  4812. width: 65%;
  4813. }
  4814. .url-results {
  4815. width: 65%;
  4816. vertical-align: middle;
  4817. .ember-text-field {
  4818. width: 100%;
  4819. }
  4820. }
  4821. .validation {
  4822. width: 3%;
  4823. }
  4824. .validation-results {
  4825. width: 3%;
  4826. vertical-align: middle;
  4827. padding-top: 0px;
  4828. padding-left: 4px;
  4829. padding-right: 4px;
  4830. .icon-exclamation-sign {
  4831. color: #b94a48;
  4832. }
  4833. }
  4834. .clearAll-icon {
  4835. width: 2%;
  4836. vertical-align: middle;
  4837. padding-top: 0px;
  4838. padding-left: 4px;
  4839. padding-right: 4px;
  4840. a {
  4841. cursor: pointer;
  4842. color: #808080;
  4843. }
  4844. }
  4845. .action {
  4846. width: 10%;
  4847. }
  4848. .action-results {
  4849. width: 10%;
  4850. vertical-align: middle;
  4851. padding-top: 0px;
  4852. padding-left: 4px;
  4853. padding-right: 4px;
  4854. a {
  4855. cursor: pointer;
  4856. }
  4857. .icon-undo {
  4858. color: rgb(243, 178, 11);
  4859. margin-right: 2px;
  4860. }
  4861. }
  4862. }
  4863. #skip-validation {
  4864. .checkbox {
  4865. margin-left: 3px;
  4866. margin-right: 8px;
  4867. margin-top: 0px;
  4868. }
  4869. .icon-question-sign {
  4870. color: @blue;
  4871. }
  4872. }
  4873. }
  4874. }
  4875. #config-group-select-create-dialog {
  4876. .select-create-config-group-div {
  4877. margin-left: 20px;
  4878. margin-bottom: 20px;
  4879. }
  4880. .message{
  4881. color: #777;
  4882. }
  4883. }
  4884. #config-group-confirm-save {
  4885. .message{
  4886. color: #777;
  4887. padding-left: 10px;
  4888. }
  4889. }
  4890. .manage-configuration-group-popup {
  4891. .modal{
  4892. max-height: 600px;
  4893. }
  4894. .modal-body {
  4895. max-height: 450px;
  4896. }
  4897. .group-select {
  4898. width: 100%;
  4899. height: 250px;
  4900. }
  4901. .btn-toolbar {
  4902. margin-top: 0px;
  4903. }
  4904. .manage-configuration-group-content {
  4905. margin-bottom: 0px;
  4906. .group-description {
  4907. height:40px;
  4908. overflow-y: auto;
  4909. white-space: pre;
  4910. }
  4911. }
  4912. }
  4913. .new-config-group-div {
  4914. td {
  4915. vertical-align: top;
  4916. }
  4917. .textarea-full-width {
  4918. padding-right: 10px;
  4919. textarea {
  4920. width: 100%;
  4921. margin: 0;
  4922. }
  4923. }
  4924. }
  4925. .prrl {
  4926. position: relative;
  4927. right: @space-m;
  4928. }
  4929. .pts {
  4930. padding-top: @space-s;
  4931. }
  4932. .mlc {
  4933. margin-left: 0;
  4934. }
  4935. #cleanerContainer {
  4936. z-index: 2;
  4937. position: absolute;
  4938. left: -20px;
  4939. width: 16px;
  4940. margin-top: 7px;
  4941. #filterCleaner {
  4942. opacity: .5;
  4943. }
  4944. #filterCleaner:hover {
  4945. opacity: .9;
  4946. }
  4947. }
  4948. .margin-bottom-5 {
  4949. margin-bottom: 5px;
  4950. }
  4951. .rolling-restart-view {
  4952. table {
  4953. td:first-of-type {
  4954. width: 30%;
  4955. text-align: right;
  4956. }
  4957. td:nth-of-type(2) {
  4958. input {
  4959. margin-left: 7px;
  4960. margin-right: 5px;
  4961. }
  4962. }
  4963. td:last-of-type {
  4964. width: 60%;
  4965. text-align: left;
  4966. }
  4967. tr:last-of-type {
  4968. td {
  4969. input {
  4970. vertical-align: top;
  4971. }
  4972. }
  4973. }
  4974. }
  4975. }
  4976. .host-select[disabled] {
  4977. background-color: #848484;
  4978. color: #FFF;
  4979. }
  4980. #hive-job-details {
  4981. .sections {
  4982. margin-top: 10px;
  4983. }
  4984. #tez-vertices-table-section {
  4985. display: block;
  4986. }
  4987. #tez-vertices-table-container {
  4988. max-height: 400px;
  4989. overflow-y: auto;
  4990. }
  4991. #tez-vertex-details-section-body {
  4992. table {
  4993. margin-bottom: 5px;
  4994. }
  4995. td {
  4996. border-top: none;
  4997. }
  4998. tr td:first-child {
  4999. font-weight: bold;
  5000. width: 20%
  5001. }
  5002. textarea {
  5003. width: 95%;
  5004. margin-left: 10px;
  5005. }
  5006. }
  5007. }
  5008. .prompt-popup {
  5009. form {
  5010. margin-top: 20px;
  5011. }
  5012. .prompt-input {
  5013. width: 520px;
  5014. }
  5015. }
  5016. /***************
  5017. * Tez DAG section
  5018. ***************/
  5019. #tez-dag-section {
  5020. padding-left: 7px;
  5021. padding-top: 5px;
  5022. }
  5023. #tez-dag-section-body {
  5024. display: block;
  5025. }
  5026. #tez-dag-section-body-dag {
  5027. max-height: 800px;
  5028. overflow-y: auto;
  5029. .heat-0-20 {
  5030. fill: #ffffff;
  5031. }
  5032. .heat-20-40 {
  5033. fill: #aaaaaa;
  5034. }
  5035. .heat-40-60 {
  5036. fill: #ffff00;
  5037. }
  5038. .heat-60-80 {
  5039. fill: #FFC000;
  5040. }
  5041. .heat-80-100 {
  5042. fill: #ff0000;
  5043. }
  5044. .heat-none {
  5045. fill: #999999;
  5046. }
  5047. #tez-dag-svg {
  5048. .link line {
  5049. stroke: #696969;
  5050. }
  5051. .link line.separator {
  5052. stroke: #fff;
  5053. stroke-width: 2px;
  5054. }
  5055. text {
  5056. font-weight: lighter;
  5057. }
  5058. .node {
  5059. .background.map {
  5060. fill: #fde0dd;
  5061. stroke: #bbbbbb;
  5062. }
  5063. .background.reduce {
  5064. fill: #DBD4EB;
  5065. stroke: #bbbbbb;
  5066. }
  5067. .background.selected {
  5068. stroke: #3a87ad;
  5069. }
  5070. .background {
  5071. stroke-width: 6px;
  5072. fill: #c0c0c0;
  5073. stroke: #999999;
  5074. cursor: pointer;
  5075. }
  5076. .metric {
  5077. rect {
  5078. opacity: 0.6;
  5079. }
  5080. text {
  5081. font-size: 90%;
  5082. }
  5083. }
  5084. .operation {
  5085. fill: #3F66E8;
  5086. opacity: 0.5;
  5087. text {
  5088. font-size: 80%;
  5089. }
  5090. }
  5091. }
  5092. .node text {
  5093. pointer-events: none;
  5094. }
  5095. path.link {
  5096. fill: none;
  5097. stroke: #666;
  5098. stroke-width: 5px;
  5099. opacity: 0.6;
  5100. }
  5101. path.link.type-broadcast {
  5102. stroke: teal;
  5103. }
  5104. path.link.type-scatter-gather {
  5105. stroke: orange;
  5106. stroke-dasharray: 10,3;
  5107. }
  5108. }
  5109. }