application.less 165 KB

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