application.less 138 KB

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