application.less 135 KB

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