application.less 164 KB

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