application.less 78 KB

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