application.less 138 KB

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