application.less 126 KB

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