application.less 137 KB

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