application.less 164 KB

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