application.less 130 KB

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