application.less 141 KB

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