application.less 88 KB

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