application.less 107 KB

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