application.less 124 KB

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