application.less 164 KB

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