application.less 125 KB

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