123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- .gradient(@color: #FAFAFA, @start: #FFFFFF, @stop: #F2F2F2) {
- background: @color;
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0, @start), color-stop(1, @stop));
- background: -ms-linear-gradient(top, @start, @stop);
- background: -moz-linear-gradient(center top, @start 0%, @stop 100%);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr= @start, endColorstr= @stop, GradientType=0); // for IE9-
- }
- html {
- overflow-y: scroll;
- }
- html, body {
- height: 100%;
- }
- #wrapper {
- min-height: 100%;
- }
- @footer-height: 100px;
- #main {
- overflow: visible;
- padding-bottom: @footer-height;
- min-width: 980px;
- }
- footer {
- position: relative;
- border-top: 1px solid #e5e5e5;
- padding: 30px 0;
- background-color: #fff;
- color: #666666;
- margin-top: -1 * @footer-height - 1;
- height: @footer-height - 60px;
- }
- #content {
- padding: 20px 0;
- }
- #top-nav {
- .navbar {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- }
- .navbar {
- .logo {
- float: left;
- padding-top: 2px;
- img {
- height: 32px;
- }
- }
- .brand {
- color: #666666;
- font-size: 16px;
- font-weight: normal;
- line-height: 32px;
- margin-left: 0;
- padding: 2px 5px 0 10px;
- }
- .brand.cluster-name {
- margin-left: 10px;
- .operations-count {
- background-color: #006DCC;
- }
- }
- }
- .navbar .nav {
- float: none;
- overflow: hidden;
- }
- .navbar-inner {
- min-height: 40px;
- }
- .navbar .nav .active > a, .navbar .nav .active > a:hover {
- color: #FFFFFF;
- text-decoration: none;
- }
- .navbar .nav > li > a {
- border-radius: 8px;
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- font-size: 13px;
- font-weight: bold;
- line-height: 19px;
- margin: 1px 10px 2px 0;
- padding: 7px 14px;
- text-decoration: none;
- text-shadow: none;
- }
- .navbar .nav > li > a:hover {
- background-color: transparent;
- color: #999999;
- text-decoration: none;
- }
- .navbar .nav > li.right {
- float: right;
- }
- }
- #main-nav {
- li {
- font-size: 15px;
- border-left: 1px solid #fefefe;
- border-right: 1px solid #f0f0f0;
- text-align: center;
- }
- li.span2 {
- padding: 0;
- margin: 0;
- width: 140px;
- }
- li:first-child {
- border-left: none;
- a {
- border-radius: 4px 0 0 4px;
- }
- }
- .navbar-inner {
- padding-left: 0;
- }
- margin-bottom: 20px;
- }
- .pre-scrollable {
- overflow-y: auto;
- }
- @green: #69BE28;
- @blue: #0572ff;
- h1 {
- color: @green;
- }
- .login.well.span4 {
- margin: 20px auto;
- padding: 25px;
- float: none;
- }
- .login {
- h2 {
- margin-top: 0;
- margin-bottom: 20px;
- }
- .btn {
- margin-top: 15px;
- }
- }
- .hide {
- visibility: hidden;
- }
- .show {
- visibility: visible;
- }
- /***************
- * Ambari wide icon colors
- ***************/
- .icon-ok {
- color: #5AB400;
- }
- .icon-warning-sign {
- color: #FDB82F;
- }
- .icon-empty {
- height: 21px;
- display: inline-block;
- width: 8px;
- }
- .icon-caret-right {
- min-width: 8px;
- padding-top: 2px;
- }
- .icon-caret-left {
- min-width: 8px;
- padding-top: 2px;
- }
- .icon-remove {
- color: #FF4B4B;
- }
- .icon-question-sign {
- color: #999;
- }
- .tooltip {
- z-index: 1050;
- }
- .tooltip-inner {
- text-align: left;
- }
- .popover {
- z-index: 1050;
- }
- .arrow-right {
- cursor: pointer;
- display: inline-block;
- margin: 0 0 20px 70px;
- border-top: 70px solid transparent;
- border-bottom: 70px solid transparent;
- border-left: 20px solid transparent;
- }
- .arrow-left {
- cursor: pointer;
- display: inline-block;
- margin: 0 -10px 20px 3px;
- border-top: 70px solid transparent;
- border-bottom: 70px solid transparent;
- border-right: 20px solid transparent;
- }
- .visibleArrow {
- border-right-color: #dedede;
- border-left-color: #dedede;
- }
- .wizard {
- h2 {
- margin-top: 0;
- }
- .btn.btn-success {
- /* float: right; */
- }
- .btn-area {
- margin-top: 20px;
- }
- .wizard-content {
- padding: 25px;
- background-color: #fff;
- }
- .nav-header {
- font-size: 13px;
- padding-left: 0;
- }
- #installOptions {
- .sshKey-file-view {
- width: 486px;
- height: 200px;
- overflow-y: auto;
- border: 1px solid #ccc;
- margin-top: 5px;
- padding: 8px;
- font-family: Consolas, "Liberation Mono", Courier, monospace;
- }
- .sshKey-file-view.disabled {
- background-color: #eee;
- }
- .manual-install {
- margin-top: 10px;
- width: 504px;
- height: auto;
- }
- .ssh-user {
- margin-right: 10px;
- padding-top: 5px;
- }
- #targetHosts {
- .target-hosts-input {
- padding-left: 18px;
- }
- }
- .span6 {
- min-width: 504px;
- }
- #hostConnectivity {
- margin-top: 20px;
- .control-group {
- margin-bottom: 0;
- }
- }
- .advancedOptions {
- margin-top: 20px;
- margin-bottom: 30px;
- label {
- margin-bottom: 10px;
- }
- label.disabled {
- color: #ccc;
- }
- }
- .java-home {
- margin-bottom: 10px
- }
- .ssh-key-input {
- padding-left: 18px;
- }
- .ssh-key-input-indentation {
- margin-bottom: 5px;
- }
- input[type="radio"]:focus {
- outline: none;
- }
- }
- #confirm-hosts {
- #host-filter {
- margin-top: 3px;
- ul {
- margin: 3px;
- font-size: 12px;
- li {
- list-style: none;
- display: block;
- float: left;
- padding: 0 2px;
- a {
- text-decoration: underline;
- }
- }
- li.first {
- font-weight: bold;
- }
- li.active a {
- text-decoration: none;
- color: #000000;
- }
- }
- }
- .progress {
- margin-bottom: 0;
- }
- }
- #step4, #step5, #step6 {
- a.selected {
- color: #333;
- cursor: default;
- text-decoration: none !important;
- }
- a.deselected {
- }
- i.icon-asterisks {
- color: #FF4B4B;
- }
- }
- #step6 .pre-scrollable {
- max-height: 440px;
- }
- #deploy {
- #overallProgress {
- }
- #host-filter {
- margin-top: 3px;
- ul {
- margin: 3px;
- font-size: 12px;
- li {
- list-style: none;
- display: block;
- float: left;
- padding: 0 2px;
- a {
- text-decoration: underline;
- }
- }
- li.first {
- font-weight: bold;
- }
- li.active a {
- text-decoration: none;
- color: #000000;
- }
- }
- }
- #deploy-status-by-host {
- th.host {
- width: 30%;
- }
- th.status {
- width: 30%;
- }
- th.messgage {
- width: 40%;
- }
- .progress-bar {
- width: 80%;
- .progress {
- margin-bottom: 0;
- }
- }
- .progress-percentage {
- margin-left: 10px;
- width: 20% - 10px;
- }
- }
- }
- #step14 {
- .item {
- line-height: 30px;
- i {
- font-size: 20px;
- }
- }
- .row {
- margin-left: 0;
- }
- }
- }
- #stack-upgrade {
- .content {
- padding: 25px;
- background-color: #fff;
- }
- .box {
- padding: 5px;
- }
- table th {
- vertical-align: middle;
- }
- .btn-area {
- margin-top: 30px;
- }
- .service {
- .info {
- line-height: 30px;
- }
- .row {
- margin-left: 0;
- }
- }
- }
- #host-log {
- .stderr, .stdout {
- background-color: #f0f0f0;
- /* max-height: 300px;
- overflow-y: auto; */
- border-radius: 4px;
- padding: 8px;
- }
- }
- .spinner {
- width: 36px;
- height: 36px;
- background: url("/img/spinner.gif");
- margin: 0 auto;
- }
- #serviceConfig {
- margin-top: 20px;
- .alert{
- .icon-refresh{
- margin-left:10px;
- }
- }
- .collapsable {
- cursor: pointer;
- }
- .icon-refresh {
- color: #FDB82F;
- }
- .directories {
- min-width: 280px;
- }
- .accordion-heading {
- background-color: #f0f0f0;
- }
- .accordion-group {
- margin-bottom: 20px;
- .control-label {
- text-align: left;
- word-wrap: break-word;
- }
- .service-config-section{
- .overridden-property{
- background-color: rgba(211, 237, 247, 0.39);
- }
- }
- .entry-row {
- margin: 10px 0;
- .control-label-span{
- width: auto !important;
- }
- .icon-lock {
- color: #008000;
- }
- .action{
- margin-left: 7px;
- margin-right: 3px;
- }
- .control-group {
- margin: 0px;
- .overrideField {
- display: block;
- margin-top: 5px;
- margin-bottom: 5px;
- }
- .overridden-hosts-view {
- display: inline-block;
- }
- .error {
- }
- }
- }
- form {
- margin-bottom: 0;
- }
- }
- .badge {
- margin-left: 4px;
- }
- .slave-component-group-menu {
- float: left;
- .nav {
- margin-bottom: 10px;
- }
- .nav li {
- position: relative;
- a {
- padding-right: 24px;
- }
- .icon-remove {
- border: 1px solid white;
- position: absolute;
- right: 7px;
- top: 10px;
- z-index: 2;
- cursor: default;
- color: #555555;
- }
- .icon-remove:hover {
- border: 1px solid grey;
- }
- }
- }
- .remove-group-error {
- display: none;
- }
- .add-slave-component-group {
- margin-bottom: 10px;
- }
- .master-host, .master-hosts, .slave-hosts {
- padding-top: 5px;
- line-height: 20px;
- }
- #attention {
- margin: 20px 0;
- }
- .retyped-password {
- margin-left: 14px;
- }
- #slave-hosts-popup {
- ul {
- list-style-type: none;
- }
- }
- .common-config-category {
- .action {
- cursor: pointer;
- .icon-plus-sign {
- color: #5AB400;
- margin-right: 2px;
- }
- .icon-minus-sign {
- color: #FF4B4B;
- margin-right: 2px;
- }
- .icon-undo {
- color: rgb(243, 178, 11);
- margin-right: 2px;
- }
- }
- }
- .capacity-scheduler {
- .header {
- margin-bottom: 10px;
- .span1 {
- padding-top: 10px;
- font-weight: bold;
- }
- }
- form.form-horizontal {
- margin-left: 20px;
- .control-label {
- text-align: left;
- }
- }
- table tr, svg {
- cursor: pointer;
- }
- .marker {
- margin: 0 5px;
- display: inline-block;
- width: 12px;
- height: 12px;
- }
- #section_label{
- display: none;
- border: 1px solid black;
- padding: 2px 5px;
- position: absolute;
- border-radius: 3px;
- background-color: #f9f9f9;
- }
- .frame{
- position:relative;
- width: 200px;
- height: 200px;
- }
- }
- .nav-tabs > li > a {
- padding-left: 8px;
- padding-right: 8px;
- }
- }
- .running-host-components-table{
- width: 100%;
- margin-top: 10px;
- text-align: left;
- tbody {
- vertical-align: top;
- }
- }
- a:focus {
- outline: none;
- }
- @status-live-marker: url("/img/health-status-live.png");
- @status-dead-red-marker: url("/img/health-status-dead.png");
- @status-dead-orange-marker: url("/img/health-status-dead-orange.png");
- @status-dead-yellow-marker: url("/img/health-status-dead-yellow.png");
- @status-ok-marker: url("/img/status-ok.jpg");
- @status-corrupt-marker: url("/img/status-corrupt.jpg");
- @arrow-right: url("/img/arrow-right.png");
- /*Rack images*/
- @rack-status-live: url("/img/rack-status-live.png");
- @rack-status-critical: url("/img/rack-status-critical.png");
- @rack-status-dead: url("/img/rack-status-dead.png");
- @rack-state-toggler: url("/img/rack-state-toggler.png");
- @rack-state-plus: url("/img/rack-state-plus.png");
- @rack-state-minus: url("/img/rack-state-minus.png");
- /*****start styles for boxes*****/
- .box {
- border: 1px solid #D4D4D4;
- border-radius: 4px;
- margin-bottom: 20px;
- .box-header {
- border-bottom: 1px solid #D4D4D4;
- border-radius: 4px 4px 0 0;
- }
- .box-header,
- .box-footer {
- padding: 4px 4px 4px 10px;
- /*background: #dedede;*/
- .gradient(#dedede, #ffffff, #dedede)
- }
- .box-header:after,
- .box-footer:after {
- content: "";
- display: table;
- clear: both;
- }
- .box-header {
- .btn-group {
- float: right;
- }
- h4 {
- float: left;
- margin: 5px;
- font-size: 15px;
- color: #777;
- }
- }
- .box-footer {
- hr {
- margin: 0px;
- }
- }
- }
- /*****end styles for boxes*****/
- /*90% width modal window start*/
- .full-width-modal {
- .modal {
- .modal-body {
- .add-cluster-1{
- width: 100%;
- height : 500px;
- margin: 0 auto;
- .each-row{
- margin-top: 10px;
- }
- .add-cluster-1-1{
- width: 100%;
- height : 100%;
- float: left;
- div.error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- }
- div.error input{
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- }
- .add-cluster-1-3{
- width: 45%;
- height : 100%;
- float: left;
- }
- .add-cluster-1-2{
- width: 10%;
- height : 100%;
- float: left;
- .add-cluster-1-2-1{
- width: 100%;
- height : 40%;
- }
- .add-cluster-1-2-2{
- width: 100%;
- height : 10%;
- }
- .add-cluster-1-2-3{
- width: 100%;
- height : 50%;
- }
- .middle-line{
- width : 2%;
- margin : 0 auto;
- height : 100%;
- background-color: #000000;
- }
- .add-cluster-center-most-div{
- height : 30%;
- text-align: center;
- position: relative;
- top: 30%;
- }
- }
- }
- }
- }
- .clear {
- clear: both;
- }
- > div > .dataTable {
- border: 1px solid silver;
- th {
- border-top: none;
- }
- }
- .content {
- padding: 0;
- }
- //fix stripped in inner table
- .table-striped tbody tr:nth-child(odd)
- td .table-striped tbody
- tr:nth-child(odd) td,
- tr:nth-child(even) th {
- background-color: none;
- }
- }
- /*90% width modal window end*/
- /*700px width modal window start*/
- .modal-690px-width {
- .modal {
- width: 690px;
- margin: 0 0 0 -345px;
- max-height: 544px;
- top: 5%;
- }
- .modal-body {
- max-height: 403px;
- }
- }
- /*700px width modal window end*/
- /*60% width modal window start*/
- .sixty-percent-width-modal.hideCloseLink{
- .modal-header{
- .close{
- display:none
- }
- }
- }
- .sixty-percent-width-modal-edit-widget {
- .modal {
- width: 60%;
- margin: 0 0 0 -30%;
- max-height: 544px;
- top: 5%;
- }
- .modal-header{
- min-width: 650px;
- }
- .modal-footer{
- min-width: 650px;
- }
- .modal-body {
- max-height: 403px;
- min-width: 650px;
- #slider-range {
- margin-top: 40px;
- margin-bottom: 20px;
- margin-left: 38px;
- max-width: 630px;
- max-height: 15px;
- }
- #min-height-limit .span9{
- min-height: 15px;
- }
- #min-height-limit .progress{
- margin-left: 40px;
- .bar-success {
- background-image: linear-gradient(to bottom, #95b000, #95a800);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#95b000', endColorstr='#95a800', GradientType=0);
- }
- .bar-warning {
- background-image: linear-gradient(to bottom, #FF9E00, #FF8E00);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#FF9E00', endColorstr='#FF8E00', GradientType=0);
- }
- .bar-danger {
- background-image: linear-gradient(to bottom, #B81000, #B80000);
- background-repeat: repeat-x;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#B81000', endColorstr='#B80000', GradientType=0);
- }
- }
- .value-on-slider{
- max-height: 100px;
- margin-bottom: 40px;
- margin-top: 10px;
- text-align: center;
- }
- #slider-value1{
- max-width: 65px;
- }
- #slider-value2{
- max-width: 250px;
- }
- #slider-value3{
- max-width: 250px;
- }
- #slider-value4{
- max-width: 65px;
- }
- .slider-error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- }
- .slider-error input{
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- }
- }
- .sixty-percent-width-modal {
- .modal {
- width: 60%;
- margin: 0 0 0 -30%;
- max-height: 544px;
- top: 5%;
- }
- .modal-body {
- max-height: 403px;
- .form-horizontal{
- .add-cluster-1{
- width: 100%;
- height : auto;
- min-height : 350px;
- margin: 0 auto;
- .each-row{
- margin-top: 10px;
- }
- .add-cluster-1-1{
- width: 100%;
- height : 100%;
- float: left;
- div.error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- }
- div.error input{
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- }
- .add-cluster-1-3{
- width: 45%;
- height : 100%;
- float: right;
- }
- .add-cluster-1-2{
- width: 10%;
- height : 100%;
- float: left;
- .add-cluster-1-2-1{
- width: 100%;
- height : 40%;
- }
- .add-cluster-1-2-2{
- width: 100%;
- height : 10%;
- }
- .add-cluster-1-2-3{
- width: 100%;
- height : 50%;
- }
- .middle-line{
- width : 2%;
- margin : 0 auto;
- height : 100%;
- background-color: #000000;
- }
- .add-cluster-center-most-div{
- height : 30%;
- text-align: center;
- position: relative;
- top: 30%;
- }
- }
- }
- .add-cluster-2{
- margin : 0 auto;
- height : auto;
- min-height : 350px;
- table{
- width : 60%;
- margin : 0 20%;
- .spacer{
- height: 20px;
- }
- tr.error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- input{
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- }
- td {
- width : 50%;
- a.btn-success{
- margin-left: 30%;
- }
- }
- }
- }
- .add-data-set{
- width: 80%;
- margin: 0 auto;
- table{
- width: 100%;
- }
- tr.error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- }
- div.error{
- color: #b94a48;
- .help-inline{
- color: #b94a48;
- }
- }
- div.error input{
- border-color: #b94a48;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- td.percent25 {
- width: 25%;
- }
- td.spacer{
- height: 10px;
- }
- td{
- .btn-group{
- display : inline;
- span.caret{
- float : right;
- }
- ul.dropdown-menu{
- margin-top:15px;
- }
- }
- .ember-view{
- display : inline;
- }
- }
- input.hyper-mini{
- width: 20px;
- }
- .targetClusterDD{
- min-width : 170px;
- }
- }
- .each-row{
- margin-top: 10px;
- }
- .each-row.control-label{
- float:left;
- clear:both;
- }
- .override-controls{
- .icon-ok-sign {
- color: #5AB400;
- }
- #filter-dropdown-div {
- .dropdown-menu {
- right: 0;
- left: auto;
- }
- }
- #component-dropdown-div {
- vertical-align: top;
- padding-left: 5px;
- .dropdown-menu {
- right: 0;
- left: auto;
- }
- }
- .input-append{
- input{
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
- }
- .btn-group{
- display: inline-block;
- margin-left: -1px;
- .btn{
- -webkit-border-radius: 0 4px 4px 0;
- -moz-border-radius: 0 4px 4px 0;
- border-radius: 0 4px 4px 0;
- }
- }
- }
- .hosts-table-container{
- width:100%;
- height: 270px;
- overflow: auto;
- border: 1px solid #eee;
- }
- table{
- th {
- background-color: #d9edf7;
- }
- margin: 0 auto;
- }
- .message{
- color: #777;
- }
- }
- .control-label{
- width:auto;
- }
- .overrideSelectBox {
- width:100%;
- }
- }
- }
- .clear {
- clear: both;
- }
- > div > .dataTable {
- border: 1px solid silver;
- th {
- border-top: none;
- }
- }
- .content {
- padding: 0;
- }
- //fix stripped in inner table
- .table-striped tbody tr:nth-child(odd)
- td .table-striped tbody
- tr:nth-child(odd) td,
- tr:nth-child(even) th {
- background-color: none;
- }
- }
- /*60% width modal window end*/
- /*****start styles for host component popup*****/
- .host-component-popup-wrap
- {
- #host-info, #service-info{
- .task-list-line-cursor{
- width: 100%;
- height: 20px;
- }
- .span2{
- width:20%;
- float: left;
- }
- .host-progress-num{
- float: left;
- padding-left: 8px;
- }
- .host-name-icon-wrap{
- float: left;
- width: 50%;
- }
- .log-list-wrap {
- padding: 10px 10px 10px 20px;
- border-top: 1px solid #CCC;
- border-bottom: 1px solid #CCC;
- .show-details {
- float: right;
- cursor: pointer;
- font-size: 16px;
- i {
- color: #333;
- }
- }
- }
- }
- }
- /*****end styles for host component popup*****/
- /*****start styles for install tasks logs*****/
- .task-list-main-warp, .task-detail-info {
- i {
- font-size: 20px;
- vertical-align: middle;
- }
- .pending, .queued {
- color: #999999;
- }
- .in_progress {
- color: #367FE6;
- }
- .completed {
- color: #0EA31C;
- }
- .failed {
- color: #DF5F5F;
- }
- .aborted {
- color: #FF9C09;
- }
- .timedout {
- color: #FF9C09;
- }
- }
- .task-list-main-warp {
- .task-list-line-cursor {
- cursor: pointer;
- }
- .task-top-wrap {
- width: 100%;
- border-bottom: 1px solid #CCC;
- text-align: center;
- font-size: 15px;
- padding: 0 0 10px 0;
- .task-detail-back-to-hosts {
- float: left;
- }
- .select-wrap {
- float: right;
- margin-top: -8px;
- select {
- width: 140px;
- }
- }
- .tasks-list-select{
- margin-top: -28px;
- }
- }
- #host-log, {
- .log-list-wrap {
- padding: 10px 10px 10px 20px;
- border-top: 1px solid #CCC;
- border-bottom: 1px solid #CCC;
- .show-details {
- float: right;
- cursor: pointer;
- font-size: 16px;
- i {
- color: #333;
- }
- }
- }
- }
- }
- .task-detail-info {
- .task-detail-log-clipboard {
- display: none;
- resize: none;
- overflow: hidden;
- }
- .task-top-wrap {
- width: 100%;
- border-bottom: 1px solid #CCC;
- text-align: center;
- font-size: 15px;
- padding: 0 0 10px 0;
- .task-detail-back {
- float: left;
- }
- .task-detail-log-rolename {
- position: relative;
- left: 0;
- top: 0;
- }
- .task-detail-status-ico {
- content: "";
- margin-top: -4px;
- box-shadow: none;
- margin-bottom: 0px;
- font-size: 24px;
- }
- .task-detail-ico-wrap {
- font-size: 14px;
- float: right;
- margin-top: -20px;
- a {
- cursor: pointer;
- }
- .task-detail-copy {
- margin-right: 12px;
- float: left;
- }
- .task-detail-open-dialog {
- float: right;
- }
- }
- }
- }
- /*****end styles for install tasks logs*****/
- /*****start styles for dashboard page*****/
- /*start services summary*/
- .services {
- margin-left: 0;
- margin-top: 0;
- position: relative;
- .alert{
- padding: 5px;
- }
- .tab-marker-position {
- background-position: 6px 5px;
- background-repeat: no-repeat;
- list-style: none;
- float: left;
- min-height: 20px;
- min-width: 20px;
- margin-left: 0;
- }
- .health-status-LIVE, .health-status-STARTING {
- .tab-marker-position;
- background-image: @status-live-marker;
- }
- .health-status-DEAD-RED, .health-status-STOPPING {
- .tab-marker-position;
- background-image: @status-dead-red-marker;
- }
- .health-status-DEAD-ORANGE {
- .tab-marker-position;
- background-image: @status-dead-orange-marker;
- }
- .health-status-DEAD-YELLOW {
- .tab-marker-position;
- background-image: @status-dead-yellow-marker;
- }
- dt {
- text-align: left;
- width: 120px;
- }
- dd {
- margin-left: 145px;
- }
- .like_pointer {
- cursor: pointer;
- }
- .service {
- position: relative;
- margin-top: 10px;
- border-bottom: 1px solid #b8b8b8;
- padding-left: 10px;
- margin-right: 20px;
- .name {
- line-height: 21px;
- margin-left: 0;
- width: 145px;
- a {
- margin-left: 5px
- }
- }
- .summary {
- line-height: 21px;
- }
- .clearfix {
- padding-bottom: 8px;
- }
- .service-body {
- display: none;
- position: relative;
- }
- table.table {
- margin-top: 14px;
- color: #666;
- font-size: 13px; //width: 80%;
- tr > td:first-child {
- padding-right: 10px;
- text-align: right !important;
- }
- th, td {
- padding: 4px;
- }
- }
- .dashboard-mini-chart > div {
- width: 172px;
- }
- .dashboard-mini-chart {
- right: 0;
- float: right;
- top: 7px;
- position: absolute;
- overflow: visible; // for quick links
- text-align: center; //width: 180px;
- height: 200px;
- .dropdown-menu {
- text-align: left;
- }
- .chart-container {
- .chart-x-axis {
- left: 0%;
- width: 100%;
- text-align: left;
- }
- }
- .chartLabel {
- font-size: 11px;
- color: #7b7b7b;
- }
- .chart-legend {
- left: -205px;
- text-align: left;
- top: 0;
- width: 185px;
- }
- }
- }
- }
- #summary-info {
- border-top: none;
- border-collapse: collapse;
- color: #666;
- font-size: 13px;
- td.summary-label {
- width: 180px;
- text-align: right;
- }
- /*
- td {
- border-top: 1px solid #eee;
- }
- */
- tr td:first-child {
- text-align: right;
- }
- a {
- text-decoration: underline;
- &:hover {
- text-decoration: none;
- }
- }
- }
- #security-stages {
- tr {
- height: 50px;
- }
- td {
- width: 180px;
- }
- .progress-bar {
- width: 50%;
- .progress {
- margin-bottom: 0;
- }
- }
- .progress-percentage {
- margin-left: 10px;
- }
- }
- .faintText {
- color: #999;
- }
- .more-stats {
- display: block;
- width: 100%;
- padding: 7px 0;
- text-align: center;
- color: #333333;
- &:hover {
- background-color: #eee;
- color: #333;
- text-decoration: none;
- }
- }
- /*end services summary*/
- /*start alerts summary*/
- .alerts {
- border: 1px solid #ddd;
- margin: 0px;
- max-height: 500px;
- overflow-y: auto;
- li {
- border-bottom: 1px solid #eee;
- list-style: none;
- padding: 5px 5px 5px 5px;
- background-position: 14px 9px;
- background-repeat: no-repeat;
- .date-time {
- float: right;
- }
- p {
- margin-bottom: 2px;
- }
- .container-fluid {
- padding-left: 10px;
- padding-right: 10px;
- }
- .title {
- font-weight: normal;
- font-size: 14px;
- }
- .row-fluid [class*="span"] {
- min-height: 0px;
- }
- .status-icon {
- padding-top: 7px;
- }
- .date-time {
- color: #999;
- font-style: italic;
- font-size: small;
- text-align: right;
- }
- .message {
- font-size: 13px;
- color: #777;
- }
- .serviceLink {
- padding-left: 7px;
- }
- }
- .alert {
- margin: 7px;
- }
- }
- .go-to {
- float: right;
- background-position: right center;
- background-repeat: no-repeat;
- background-image: @arrow-right;
- padding-right: 40px;
- margin-top: 4px;
- }
- .modal-graph-line {
- width: 810px;
- margin: -250px 0 0 -405px;
- .modal-body {
- min-height: 420px !important;
- overflow: hidden;
- }
- }
- /*end alerts summary*/
- /*Alerts popup*/
- .alertsPopupLinks {
- padding: 20px 40px 0px;
- text-align: right;
- a:first-child {
- float: left;
- }
- }
- .modal-footer.align-center {
- text-align: center;
- }
- /*start chart/style graphs*/
- .chart-container {
- cursor: pointer;
- cursor: -moz-zoom-in;
- cursor: -webkit-zoom-in;
- &.chart-container-popup {
- cursor: auto !important;
- margin-left: 0;
- overflow: visible;
- width: 650px;
- .chart {
- left: 60px;
- overflow: visible;
- position: relative;
- }
- .chart-y-axis {
- position: absolute;
- top: -15px;
- bottom: 0;
- width: 60px;
- }
- .chart-legend {
- left: 60px;
- top: 245px;
- }
- .x_tick {
- .title {
- margin-top: 35px !important;
- }
- }
- }
- position: relative;
- margin: 20px 15px 0px 15px;
- .chart {
- position: relative;
- z-index: 1;
- }
- .chart-y-axis {
- position: absolute;
- top: 0;
- bottom: 0px;
- width: 100px;
- z-index: 2;
- margin-top: 15px;
- }
- .chart-x-axis {
- position: absolute;
- top: 180px;
- left: 35%;
- width: 30%;
- z-index: 2;
- }
- .x_tick {
- margin-top: 5px;
- .title {
- padding: 0 2px 0 2px;
- opacity: 1 !important;
- top: 148px;
- }
- }
- svg {
- g {
- g:nth-child(1) {
- display: none;
- }
- }
- }
- text {
- font-weight: 700;
- opacity: 1 !important;
- }
- .chart-legend {
- font-family: 'Courier New';
- position: absolute;
- top: 180px;
- z-index: 3;
- }
- .rickshaw_legend {
- background-color: #999 !important;
- li:hover {
- background-color: #999 !important;
- }
- }
- .rickshaw_legend:empty {
- padding: 0;
- }
- .rickshaw_graph {
- .x_tick {
- .title {
- bottom: -6px;
- opacity: 0.75;
- }
- }
- }
- .chart-overlay {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 100%;
- z-index: 5;
- }
- .chart-title {
- text-align: center;
- font-size: small;
- }
- }
- .modal-body {
- .show {
- display: inline-block;
- }
- .time-label {
- text-align: center;
- }
- }
- .mini-chart {
- position: absolute;
- .chart-container {
- width: 130px;
- height: 130px;
- }
- }
- /*end chart/graph styles*/
- /*****end styles for dashboard page*****/
- /*Services*/
- .services-menu {
- .nav-list {
- .tab-marker-position {
- background-position: 6px 5px;
- background-repeat: no-repeat;
- list-style: none;
- float: left;
- height: 20px;
- width: 20px;
- margin-left: 0; // padding-left: 30px;
- // padding-right: 30px;
- // background-position: 12px 9px;
- // background-repeat: no-repeat;
- }
- .health-status-LIVE, .health-status-STARTING {
- .tab-marker-position;
- background-image: @status-live-marker;
- }
- .health-status-DEAD-RED, .health-status-STOPPING {
- .tab-marker-position;
- background-image: @status-dead-red-marker;
- }
- .health-status-DEAD-YELLOW {
- .tab-marker-position;
- background-image: @status-dead-yellow-marker;
- }
- li {
- line-height: 24px;
- a {
- padding: 3px 10px;
- }
- }
- li.clients {
- a {
- padding-left: 37px;
- }
- }
- }
- .icon-refresh {
- color: #FDB82F;
- }
- .add-service-button {
- margin: 20px 20px 10px;
- }
- .start-stop-all-service-button {
- margin: 5px 5px 10px 10px;
- }
- .operations-count {
- background: #953B39;
- }
- }
- .nav-pills.move {
- float: right;
- margin-top: -48px;
- }
- .service-content {
- #summary-info {
- margin-bottom: 0;
- }
- }
- .service-block {
- margin-top: 20px;
- }
- .service-configuration {
- padding: 10px;
- }
- .service-summary {
- background: #F6FAFD;
- .service-block.span8 {
- margin-left: 0;
- border-right: 1px solid #5fa3c3;
- }
- .service-block.span3 {
- padding-left: 0;
- }
- .service-content {
- padding: 5px 0 0 10px;
- .service-links {
- padding: 5px 0;
- }
- }
- h5 {
- color: #0088CC;
- font-size: 14px;
- }
- .service-links {
- padding: 5px 0 10px 0;
- }
- .service-configuration .dl-horizontal {
- dt {
- width: 90px;
- line-height: 19px;
- }
- dd {
- margin-left: 100px;
- line-height: 19px;
- }
- }
- }
- .service-button {
- text-align: right;
- margin-bottom: 5px;
- margin-top: -55px;
- ul.dropdown-menu {
- li {
- text-align: left;
- }
- a {
- cursor: pointer;
- }
- }
- }
- .summary-metric-graphs {
- [class*="span"] {
- float: left;
- margin-left: 10px;
- }
- .chart-container {
- .chart-x-axis {
- left: 0%;
- width: 100%;
- }
- }
- }
- /*End Services*/
- table.graphs {
- table-layout: fixed;
- width: 100%;
- }
- /*Dashboard Widgets Start*/
- #dashboard-widgets-container{
- h4{
- line-height: 30px;
- }
- .filter-components{
- right: 0;
- left: auto;
- li {
- ul{
- margin-left: 0px;
- }
- display: block;
- padding: 3px 0 3px 5px;
- line-height: 20px;
- label.checkbox {
- padding-left: 3px;
- }
- input[type="checkbox"] {
- margin: 4px 4px 2px 2px;
- }
- }
- &>li {
- &>ul {
- width: 180px;
- margin-left: 0;
- }
- }
- }
- .add-widget-button{
- color: #000000;
- margin-top: 5px;
- margin-left: -22px;
- width: 70px;
- }
- .more-options-button{
- margin-top: 5px;
- margin-left: 0px;
- margin-right: 6px;
- padding: 1px;
- width: 70px;
- .icon-cog{
- font-size: 18px;
- position: relative;
- left: 3px;
- top: 2px;
- }
- .caret{
- position: relative;
- left: 5px;
- top: 2px;
- }
- }
- .right-align-dropdown{
- right: 0;
- left: auto;
- padding-top: 9px;
- padding-bottom: 9px;
- margin-right: 4px;
- }
- #dashboard-widgets{
- .thumbnails {
- margin-left: 8px;
- }
- .sortable-placeholder {
- }
- .row-fluid .span2p4 {
- width: 19.34%;
- *width: 19.34%;
- }
- .row-fluid .span4p8 {
- width: 39.1%;
- *width: 39.1%;
- }
- .thumbnails > div {
- margin-left: 0px;
- margin-right: 3px;
- margin-top: 5px;
- margin-bottom: 7px;
- height: 163px;
- }
- .thumbnails li {
- height:150px;
- margin-left: 0px;
- margin-right: 3px;
- margin-top: 3px;
- margin-bottom: 0px;
- }
- .thumbnail .corner-icon{
- color: #ffffff;
- display: none;
- }
- .thumbnail .hidden-info{
- color: #ffffff;
- font-size: 12px;
- font-weight: bold;
- padding-top: 60px;
- text-align: center;
- text-decoration: none;
- display: none;
- }
- .thumbnail .hidden-info-three-line{
- color: #ffffff;
- font-size: 12px;
- font-weight: bold;
- padding-top: 50px;
- text-align: center;
- text-decoration: none;
- display: none;
- table td{
- text-align: center ;
- }
- }
- .thumbnail .caption {
- padding-left: 0px;
- padding-top: 7px;
- padding-bottom: 7px;
- padding-right: 0px;
- color: #555555;
- font-weight:bold;
- font-size: 12px;
- text-align: left;
- }
- .thumbnail .widget-content{
- text-align: center;
- font-size: 35px;
- padding-top: 40px; //svg
- .screensaver{ // graph onload wait
- width: 90%;
- height: 105px;
- border: 1px solid silver;
- color: #ffffff;
- background: url(/img/spinner.gif) no-repeat center center;
- }
- }
- .thumbnail .widget-content-isNA{ // for pie chart n\a
- text-align: center;
- font-size: 35px;
- color: #D6DDDF;
- padding-top: 70px;
- font-weight: bold;
- }
- .cluster-metrics .chart-container{
- margin: 0px 10px 0px 10px;
- .chart-y-axis{
- margin-top: 10px;
- }
- .chart svg{
- margin-right: 20px;
- }
- }
- .cluster-metrics .alert {
- padding: 0px;
- font-size: 12px;
- }
- .cluster-metrics .thumbnail:hover{
- background-color: #909090;
- cursor: move;
- .corner-icon{
- display:block;
- text-decoration: none;
- .icon-remove-sign{
- color: #000000;
- text-shadow: #fff 0px 0px 15px;
- position:absolute;
- margin-left: -17px;
- margin-top: -7px;
- }
- }
- .caption{
- color: #ffffff;
- text-shadow: #000 0px 0px 15px;
- }
- .rickshaw_legend{
- padding-top: 3px;
- }
- .chart-legend {
- top: 120px;
- left:15px;
- text-align: left;
- z-index: 3;
- ul >li{
- max-height: 10px;
- }
- }
- }
- .links .thumbnail{
- li{
- height:20px;
- margin: 3px;
- }
- .link-button{
- padding-top: 7px;
- padding-left: 70px;
- }
- .widget-content{
- text-align: center;
- font-weight: none;
- font-size: 11px;
- color: #555555;
- padding-top: 40px;
- table{
- vertical-position: center;
- text-align: center;
- margin-left:auto;
- margin-right:auto;
- }
- td{
- padding-top: 2px;
- }
- }
- }
- .links .thumbnail:hover{
- background-color: #909090;
- cursor: move;
- .corner-icon{
- display:block;
- text-decoration: none;
- .icon-remove-sign{
- color: #000000;
- text-shadow: #fff 0px 0px 15px;
- position:absolute;
- margin-left: -17px;
- margin-top: -7px;
- }
- }
- .caption{
- color: #ffffff;
- text-shadow: #000 0px 0px 15px;
- }
- .widget-content{
- color: #D6DDDF;
- text-shadow: #000 0px 0px 5px;
- a{
- color: #ffffff;
- }
- }
- }
- .has-hidden-info .thumbnail:hover {
- background-color: #909090;
- cursor: move;
- text-shadow: #000 0px 0px 15px;
- .corner-icon{
- display:block;
- text-decoration: none;
- .icon-remove-sign{
- color: #000000;
- text-shadow: #fff 0px 0px 15px;
- position:absolute;
- margin-left: -17px;
- margin-top: -7px;
- }
- }
- .hidden-info{
- display: block;
- }
- .hidden-info-three-line{
- display: block;
- }
- .widget-content{
- display: none;
- }
- .widget-content-isNA{
- display: none;
- }
- .caption{
- color: #ffffff;
- }
- }
- .thumbnail .widget-content .svg {
- position:relative;
- }
- #map-reduce-slots-text{
- padding-left: 5px;
- padding-top: 40px;
- color: #555555;
- font-weight:bold;
- font-size: 10px;
- >ul{
- margin-top:5px;
- margin-bottom: 0px;
- }
- #map-reduce-slots-bar1{
- margin-left: 10px;
- }
- #map-reduce-slots-bar2{
- margin-left: 3px;
- }
- #map-reduce-slots-num1{
- margin-left: 5px;
- }
- #map-reduce-slots-num2{
- margin-left: 5px;
- }
- }
- .is-red{
- .widget-content {
- color: #B80000;
- //text-shadow: 0.1em 0.1em #D6DDDF ;
- //filter: Shadow(Color=red, Direction=45, Strength=1); /* IE 10-*/
- padding-top: 70px;
- font-weight: bold;
- }
- }
- .is-orange{
- .widget-content {
- color: #FF8E00;
- //text-shadow: 0.1em 0.1em #D6DDDF ;
- //filter: Shadow(Color=red, Direction=45, Strength=1); /* IE 10-*/
- padding-top: 70px;
- font-weight: bold;
- }
- }
- .is-green {
- .widget-content {
- color: #95A800;
- //text-shadow: 0.1em 0.1em #D6DDDF ;
- //filter: Shadow(Color=red, Direction=45, Strength=0); /* IE 10-*/
- padding-top: 70px;
- font-weight: bold;
- }
- }
- .is-na {
- .widget-content {
- color: #D6DDDF;
- text-shadow: none;
- padding-top: 70px;
- font-weight: bold;
- }
- }
- }
- }
- /*Dashboard Widgets END*/
- /*Hosts*/
- #hosts {
- .page-bar {
- border: 1px solid silver;
- text-align:right;
- div {
- display: inline-block;
- margin:0 10px;
- }
- .items-on-page {
- label {
- display:inline;
- }
- select {
- margin-bottom: 4px;
- margin-top: 4px;
- width:70px;
- }
- }
- .paging_two_button {
- a.paginate_disabled_next, a.paginate_disabled_previous {
- color: gray;
- &:hover {
- color: gray;
- text-decoration: none;
- cursor: default;
- }
- }
- a.paginate_next, a.paginate_previous {
- &:hover {
- text-decoration: none;
- cursor: pointer;
- }
- }
- a {
- padding:0 5px;
- }
- }
- }
- .status-dot-position {
- background-position: center;
- background-repeat: no-repeat;
- height: 20px;
- width: 13px;
- }
- .health-status-HEALTHY{
- background-image: @status-live-marker;
- .status-dot-position;
- }
- .health-status-LIVE {
- background-image: @status-live-marker;
- .status-dot-position;
- }
- .health-status-DEAD-RED {
- background-image: @status-dead-red-marker;
- .status-dot-position;
- }
- .health-status-DEAD-ORANGE {
- background-image: @status-dead-orange-marker;
- .status-dot-position;
- }
- .health-status-DEAD-YELLOW {
- background-image: @status-dead-yellow-marker;
- .status-dot-position;
- }
- .host-name-search {
- position: relative;
- top: 0px;
- left: 10px;
- }
- .host-name-pos {
- position: relative;
- top: 10px;
- }
- .box-header {
- margin-left: 0;
- .btn-group {
- float: left;
- }
- .btn.decommission {
- margin-left: 5px;
- }
- .btn.add-host-button {
- margin-bottom: 10px;
- margin-top: -5px;
- }
- .health-status-bar {
- font-size: 14px;
- margin-left: 0;
- width: 650px;
- .active a {
- text-decoration: none;
- color: #000000;
- }
- }
- }
- .progress {
- margin-bottom: 0;
- }
- .table { //margin-bottom: 0;
- thead { //background: #EDF5FC;
- }
- th {
- border-top: none;
- }
- th, td {
- width: 82px;
- border-left-width: 0;
- }
- th.first, td.first {
- width: 10px !important;
- border-left-width: 1px;
- }
- td.first label {
- padding-top: 3px;
- }
- td.first span {
- display: block;
- float: right;
- height: 13px;
- margin: 5px 0 0 0;
- width: 13px;
- }
- ul.filter-components {
- padding: 5px 0;
- li {
- display: block;
- padding: 3px 0 3px 5px;
- line-height: 20px;
- label.checkbox {
- padding-left: 3px;
- }
- input[type="checkbox"] {
- margin: 4px 4px 2px 2px;
- }
- }
- &>li {
- &>ul {
- height: 250px;
- margin-left: 0;
- overflow-y: scroll;
- }
- }
- }
- .sorting_asc {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAHgAAAMBAQAAAAAAAAAAAAAAAAAFCAYKAQACAQUAAAAAAAAAAAAAAAAABQMCBAYHCBAAAQUAAQMEAwAAAAAAAAAAAwECBAUGABESByExIghBMxQRAAIBAwMDAwUAAAAAAAAAAAECAwAEBRESBiExUUHhB2GBIhMU/9oADAMBAAIRAxEAPwDvA8k+Qc54sxGj32qlNi0ucrjTj/JqGlmROyJXQ2u/bOsZTmBExPd70/HXmQcW41lOX5+145h0L391KEHhR3Z28Ii6sx9AKgubiO1gaeU6Io19h9TUg/S/7eP+wia3NbBIFbuqiyn3VTCjIMArHHTJarEDGGiNU8vOKVsc7/VxBuGR3yV683X86/Cq/GpssrhP2S8emiSKRm1JS5VfyLH0WfQug7KwZR0CilWHy39++ObQTgkgeV9ux+xq9uc6U8pLfZzP6mClZpKWrvq1DilJAt4Mewh/0hRyBOsaUMoVKLvXtVU6t6+nL/HZTJYi4/rxU81tdbSu+N2Rtp7jcpB0OnUa9aoeOOVdsgDL4I1pFS+NPHmcsQ2+fw+UpLWOwwwWNVQ1kCaIcgaiONkmLGEZrDDXtcnXo5PfjC+5VybKWrWWSyF5cWbEEpJNI6kqdQSrMRqD1B9KjS2t423xoqt5AArb8QVPRwoo4UUcKK//2Q==) no-repeat right 50%;
- }
- .sorting_desc {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAIEAAAIDAQAAAAAAAAAAAAAAAAAGBwgJCgEBAAIDAQAAAAAAAAAAAAAAAAMFBAYHCBAAAAUDAwMFAAAAAAAAAAAAAQIDBAUABgcSNTYRFQgTZFUWZhEAAAQEAggGAwAAAAAAAAAAAAECAxEhBAYSMjFBYRMzFDQFUZFSYmMHJFRk/9oADAMBAAIRAxEAPwDv4oAKACgCKc1tMmusb3Eph6cSgsgx7fucEZxGRks2llGIGVWgVm8q1dt0+6ogKaapSgdNbQPXTqAdwsN602bopk3vTnUW24rduwccbU2S5E8Sm1JM92czSZwNOKUYDFrCqTp1corDUFMpEcYap+Ipb4P5O8n81y9xXXlG50yY+thR3AEivqFvRDmduvSUrhuLtrFNXqCFvJm1LAQ5RMuchB6gBy13f7+tP6lsOipuz2jSGdy1ZJeNzmXnEtU+pWFTikmbxyTEjgglKKZpMU3ZanudYtTtSr8dMoYSKKvKMte0aUV5YGxgoASbD2iQ4Tyi6uB7Rvz/AHD9R8r7/wBWr64uta6/pKfq+JwUZP5/1/hwCFjIeTMrLo0np93q2xDtVCJh/9k=) no-repeat right 50%;
- }
- .sorting {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAGgAAAIDAQAAAAAAAAAAAAAAAAUHAAYICgEBAQAAAAAAAAAAAAAAAAAAAAEQAAEEAQIFAgcAAAAAAAAAAAECAwQFABEGIRI0NQcTFDFBMmNUZRYRAQEBAQAAAAAAAAAAAAAAAAABEUH/2gAMAwEAAhEDEQA/AO93cd/XbXpLC9tHQ1Dr46nljUBby/gzGZB+p+Q6QhA+ZOApfDnllW/ha1tv6Ee7iyH5kRlvlbTIqHndWkNJ0HO7XFQbWeJUkpUeOpySrZh65UUnyFUW1ztaexRmIbaPyzoLE6vg2UWW9GC1e0XHnsSGEqfQohCwApK9OIGuAjfBP9VuG0m39vGqINVUe4r2xF21TVsuXZOI9N9lMmLBYkttQ21auBKhqtSUngCMkW5xqjKiYASh6SR2Tulr2HpOvf6j9p+V9/mwDeB//9k=) no-repeat right 50%;
- }
- div.view-wrapper {
- .btn-group {
- margin-bottom: 9px;
- }
- }
- a.ui-icon-circle-close {
- float: right;
- opacity: 0.2;
- padding: 1px;
- position: relative;
- right: -8px;
- margin-top: 6px;
- z-index: 10;
- &:hover {
- opacity: 0.7;
- }
- }
- .notActive {
- a.ui-icon-circle-close {
- visibility: hidden;
- }
- }
- }
- .page-bar {
- border: 1px solid silver;
- text-align: right;
- div {
- display: inline-block;
- margin: 0 10px;
- }
- .dataTables_length {
- label {
- display: inline;
- }
- select {
- margin-bottom: 4px;
- margin-top: 4px;
- width: 70px;
- }
- }
- .dataTables_paginate {
- a {
- padding: 0 5px;
- }
- }
- }
- .open-group > .dropdown-menu {
- display: block;
- }
- .nav-pills li.disabled {
- display: block;
- margin: 2px 0;
- padding: 8px 12px;
- line-height: 14px;
- }
- .box-footer .footer-pagination {
- float: right;
- .nav {
- margin-bottom: 0;
- }
- .dropdown {
- margin-top: 3px;
- }
- .dropdown {
- margin-top: 3px;
- }
- .dropdown select {
- width: 60px;
- }
- .page-listing a {
- line-height: 0;
- border: none;
- margin: 0;
- margin-right: 10px;
- cursor: pointer;
- color: #0088CC;
- padding: 8px 0;
- float: left;
- text-decoration: underline;
- }
- .page-listing a:hover {
- text-decoration: none;
- }
- .page-listing {
- width: 100px;
- .table {
- th.name {
- width: 300px;
- a.filter-label {
- width: 57px;
- display: block;
- float: left;
- }
- }
- }
- }
- }
- }
- #host-warnings {
- .warnings-list {
- table {
- margin-bottom: 0;
- margin-top: 5px;
- td {
- width: 50%;
- i {
- font-size: 16px;
- margin: 2px;
- }
- }
- }
- .category-title {
- padding: 3px;
- text-align: left;
- background-color: rgb(196, 193, 193);
- }
- }
- }
- .host-checks-update {
- button {
- margin-left: 5px;
- }
- .update-progress {
- width: 230px;
- .progress {
- margin-bottom: 0;
- }
- }
- }
- #host-details {
- margin-top: 27px;
- /*
- .component-operation-button {
- background-color: #E5E5E5;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E5E5), to(#F1F1F1));
- background-image: -webkit-linear-gradient(top, #E5E5E5, #F1F1F1);
- background-image: -o-linear-gradient(top, #E5E5E5, #F1F1F1);
- background-image: linear-gradient(to bottom, #E5E5E5, #F1F1F1);
- background-image: -moz-linear-gradient(top, #E5E5E5, #F1F1F1);
- background-repeat: repeat-x;
- color: #000000;
- }
- */
- .caret {
- border-top-color: #000000;
- border-bottom-color: #000000;
- }
- //hack to apply style only for firefox
- .host-components .btn-group{
- white-space: normal;
- }
- .marker {
- background-repeat: no-repeat;
- display: inline-block;
- height: 13px;
- width: 13px;
- }
- .components-health.icon-arrow-up{
- color:red;
- }
- .health-status-started, .health-status-starting {
- background-image: @status-live-marker;
- .marker;
- }
- .health-status-installed, .health-status-stopping {
- background-image: @status-dead-red-marker;
- .marker;
- }
- .health-status-unknown {
- background-image: @status-dead-yellow-marker;
- .marker;
- }
- .health-status-LIVE {
- background-image: @status-live-marker;
- .marker;
- }
- .health-status-DEAD-RED {
- background-image: @status-dead-red-marker;
- .marker;
- }
- .health-status-color-blue {
- color:#0000ff;
- }
- .health-status-color-red {
- color:#ff0000;
- }
- .health-status-DEAD-ORANGE {
- background-image: @status-dead-orange-marker;
- .marker;
- }
- .health-status-DEAD-YELLOW {
- background-image: @status-dead-yellow-marker;
- .marker;
- }
- .back {
- display: block;
- width: 105px;
- margin-bottom: 5px;
- }
- .box-header .host-title {
- margin: 0;
- padding-left: 17px;
- }
- .box-header .button-section {
- margin-bottom: 5px;
- }
- hr {
- margin-bottom: 0;
- clear: both;
- }
- .content {
- padding: 10px;
- }
- .host-configuration .dl-horizontal dt {
- width: 90px;
- line-height: 20px;
- }
- .host-configuration .dl-horizontal dd {
- margin-left: 100px;
- line-height: 20px;
- }
- .host-metrics {
- [class*="span"] {
- float: left;
- margin: 0;
- }
- .chart-container {
- .chart-x-axis {
- left: 30%;
- width: 40%;
- }
- }
- }
- .host-components {
- padding: 10px;
- padding-bottom: 0;
- border: 1px solid #DEDEDE;
- border-radius: 4px;
- background: #FFF;
- #add_component{
- width: 160px;
- height: 30px;
- }
- }
- .host-components .btn-group {
- margin: 0 5px 10px 0;
- .component-text-status{
- cursor: default;
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: normal;
- line-height: 20px;
- color: #333333;
- white-space: nowrap;
- font-style: italic;
- }
- }
- }
- .background-operations {
- .progress {
- margin-bottom: 5px;
- .bar {
- width: 100%;
- }
- }
- .open-details {
- clear: left;
- display: block;
- float: left;
- text-decoration: none;
- width: 16px;
- }
- .operation-details {
- padding-left: 16px;
- padding-top: 5px;
- display: none;
- }
- margin-bottom: 10px;
- }
- .background-operations.is-open {
- .operation-details {
- display: block;
- }
- }
- /*End Hosts*/
- /*Start Admin*/
- .header {
- margin-bottom: 20px;
- }
- .admin-cluster {
- a.inactive {
- cursor: default;
- color: #333333;
- text-decoration: none;
- }
- }
- .btn-padding {
- margin-left: 20px
- }
- .admin-misc {
- .span6 {
- margin-left: 0 !important;
- }
- }
- /*End Admin*/
- /*assign masters*/
- .assign-masters {
- .select-hosts {
- width: 50%;
- float: left;
- white-space: nowrap;
- }
- label.host-name {
- padding-top: 5px;
- }
- .round-corners {
- border-radius: 8px;
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- }
- .host-assignments {
- float: right;
- width: 45%;
- }
- .remaining-hosts {
- padding: 25px;
- border-top: solid 1px #cccccc;
- border-left: solid 1px #cccccc;
- border-right: groove 5px #cccccc;
- border-bottom: groove 5px #cccccc;
- margin-top: 20px;
- background-color: #FCF8E3;
- color: #C09853;
- }
- .host-assignments .mapping-box {
- border: solid 1px #cccccc;
- padding: 8px;
- margin-bottom: 10px;
- background-color: #fafafa;
- }
- .host-assignments .assignedService {
- padding: 2px 8px;
- border: solid 1px #cccccc;
- margin: 2px;
- background-color: @green;
- color: white;
- white-space: nowrap;
- font-size: 0.9em;
- display: inline-block;
- }
- .form-horizontal .controls {
- margin-left: 110px;
- }
- .form-horizontal .control-label {
- white-space: normal;
- width: 120px;
- padding-right: 10px;
- }
- .form-horizontal .control-group select {
- width: 75%;
- min-width: 100px;
- max-width: 250px;
- }
- .hostString {
- margin-bottom: 5px;
- }
- .controls .badge {
- background-color: @green;
- color: #ffffff;
- cursor: pointer;
- font-weight: bold;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- }
- .assign-master .controls .badge:hover {
- background-color: @green;
- }
- .alertFlag {
- font-size: 1.3em;
- color: #B94A48;
- font-weight: bold;
- vertical-align: middle;
- }
- }
- /*end assign masters*/
- .assign-clients {
- .round-corners {
- border-radius: 8px;
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- }
- .assignedService {
- padding: 2px 8px;
- border: solid 1px #cccccc;
- margin: 2px;
- background-color: @blue;
- color: white;
- white-space: nowrap;
- font-size: 0.9em;
- display: inline-block;
- }
- }
- /*Dashboard*/
- .alerts-count {
- cursor: pointer;
- margin-left: 5px;
- }
- ul.filter {
- background: #ffffff;
- list-style: none;
- position: absolute;
- padding: 10px;
- }
- #main-admin-menu {
- padding: 8px 0;
- .nav-list {
- .tab-marker-position {
- background-position: 6px 5px;
- background-repeat: no-repeat;
- list-style: none;
- float: left;
- height: 20px;
- width: 20px;
- margin-left: 0;
- }
- li {
- line-height: 24px;
- a {
- padding: 3px 20px;
- }
- }
- }
- }
- #user-auth-method select {
- width: 320px;
- }
- /*start charts rack*/
- .rack {
- width: 98%;
- display: inline-block;
- vertical-align: top;
- border: 1px solid #D4D4D4;
- border-radius: 5px;
- margin-right: 4px;
- margin-bottom: 10px;
- .rackHeader {
- background-color: #F7F7F7;
- border-top-right-radius: 5px;
- border-top-left-radius: 5px;
- padding: 5px 5px 5px 10px;
- border-bottom: 1px solid #D4D4D4;
- .statusName {
- font-size: 15px;
- color: #006F9F;
- text-shadow: #ffffff 0px 0px 1px;
- font-weight: bold;
- vertical-align: top;
- }
- .toggler {
- background-repeat: no-repeat;
- background-image: @rack-state-toggler;
- display: block;
- height: 22px;
- position: relative;
- width: 32px;
- float: right;
- span {
- background-repeat: no-repeat;
- background-image: @rack-state-plus;
- display: block;
- height: 17px;
- left: 7px;
- position: absolute;
- top: 3px;
- width: 18px;
- }
- span.isActive {
- background-image: @rack-state-minus !important;
- top: 10px;
- }
- }
- }
- .hostsSummary {
- border-left: 1px solid #CDCDCD;
- border-right: 1px solid #CDCDCD;
- border-bottom: 1px solid #9f9f9f;
- background-color: #f7f8fa;
- font-size: 12px;
- padding: 4px 0 4px 9px;
- .textBlock {
- color: #000000;
- padding-right: 10px;
- div {
- height: 12px;
- margin: 0 3px 0 0;
- width: 12px;
- display: inline-block;
- }
- }
- }
- .indicatorR {
- background-color: #E2001A;
- }
- .indicatorY {
- background-color: #F29400;
- }
- .indicatorG {
- background-color: #88BF67;
- }
- .statusIndicator {
- display: inline-block;
- width: 20px;
- height: 19px;
- margin-right: 10px;
- margin-top: 4px;
- float: left;
- background-repeat: no-repeat;
- }
- .rackName {
- margin-top: 4px;
- float: left;
- }
- .statusIndicator.LIVE {
- background-image: @rack-status-live;
- }
- .statusIndicator.CRITICAL {
- background-image: @rack-status-critical;
- }
- .statusIndicator.DEAD {
- background-image: @rack-status-dead;
- }
- .hosts {
- padding: 4px;
- overflow: hidden;
- display: none;
- .ember-view {
- float: left;
- width: 100%;
- height: 43px;
- .hostBlock {
- height: 38px;
- position: relative;
- border: 1px solid #D4D4D4;
- margin-right: 3px;
- }
- }
- .hostBlock {
- border-radius: 4px;
- }
- .hostBlock.HEALTHY {
- background-color: #87BE73;
- }
- .hostBlock.UNHEALTHY {
- background-color: #E40024;
- }
- .hostBlock.CRITICAL {
- background: #F39236;
- }
- .ember-view:hover {
- }
- }
- .hosts.isActive {
- display: block;
- }
- }
- /*Start Heatmap*/
- .heatmap {
- #heatmap-metric-title {
- margin-left: 23px;
- }
- .rack.rack-5-2 {
- .hosts {
- height: 86px;
- }
- }
- .rack.rack-5-4 {
- .hosts {
- height: 172px;
- }
- }
- .rack.rack-5-6 {
- .hosts {
- height: 258px;
- }
- }
- .rack.rack-5-8 {
- .hosts {
- height: 344px;
- }
- }
- .rack.rack-5-10 {
- .hosts {
- height: 430px;
- }
- }
- .legend-column {
- min-width: 160px;
- }
- .heatmap_host_details {
- font-size: 12px;
- line-height: 1.6em;
- border: 1px solid #D9D9D9;
- background: #f9f9f9;
- width: 280px;
- padding: 10px 10px;
- position: absolute;
- z-index: 1000;
- }
- .container-fluid {
- padding: 0px;
- }
- .row-fluid [class*="span"] {
- margin-left: 0px;
- }
- .legend {
- margin-top: 20px;
- margin-bottom: 20px;
- .tile {
- width: 50px;
- height: 1em;
- padding: 4px;
- border: 1px solid #D4D4D4;
- border-radius: 5px;
- margin-right: 10px;
- }
- }
- h4 {
- color: #777777;
- margin-top: 5px;
- }
- .heatmap-host {
- display: block;
- width: 100%;
- height: 100%;
- }
- }
- /*End Heatmap*/
- /*Start Mirroring*/
- .mirroring-top-nav {
- margin-bottom: 20px;
- }
- .schedule-toggle {
- min-width: 190px;
- }
- #mirroring {
- .page-bar {
- border: 1px solid silver;
- text-align: right;
- div {
- display: inline-block;
- margin: 0 10px;
- }
- .items-on-page {
- label {
- display: inline;
- }
- select {
- margin-bottom: 4px;
- margin-top: 4px;
- width: 70px;
- }
- }
- .paging_two_button {
- a.paginate_disabled_next, a.paginate_disabled_previous {
- color: gray;
- &:hover {
- color: gray;
- text-decoration: none;
- cursor: default;
- }
- }
- a.paginate_next, a.paginate_previous {
- &:hover {
- text-decoration: none;
- cursor: pointer;
- }
- }
- a {
- padding:0 5px;
- }
- }
- }
- .table { //margin-bottom: 0;
- thead { //background: #EDF5FC;
- }
- th {
- border-top: none;
- }
- th, td {
- width: 82px;
- border-left-width: 0;
- }
- th.first, td.first {
- width: 10px !important;
- border-left-width: 1px;
- }
- td.first label {
- padding-top: 3px;
- }
- td.first span {
- display: block;
- float: right;
- height: 13px;
- margin: 5px 0 0 0;
- width: 13px;
- }
- ul.filter-components {
- padding: 5px 0;
- li {
- display: block;
- padding: 3px 0 3px 5px;
- line-height: 20px;
- label.checkbox {
- padding-left: 3px;
- }
- input[type="checkbox"] {
- margin: 4px 4px 2px 2px;
- }
- }
- &>li {
- &>ul {
- height: 250px;
- margin-left: 0;
- overflow-y: scroll;
- }
- }
- }
- .sorting_asc {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAHgAAAMBAQAAAAAAAAAAAAAAAAAFCAYKAQACAQUAAAAAAAAAAAAAAAAABQMCBAYHCBAAAQUAAQMEAwAAAAAAAAAAAwECBAUGABESByExIghBMxQRAAIBAwMDAwUAAAAAAAAAAAECAwAEBRESBiExUUHhB2GBIhMU/9oADAMBAAIRAxEAPwDvA8k+Qc54sxGj32qlNi0ucrjTj/JqGlmROyJXQ2u/bOsZTmBExPd70/HXmQcW41lOX5+145h0L391KEHhR3Z28Ii6sx9AKgubiO1gaeU6Io19h9TUg/S/7eP+wia3NbBIFbuqiyn3VTCjIMArHHTJarEDGGiNU8vOKVsc7/VxBuGR3yV683X86/Cq/GpssrhP2S8emiSKRm1JS5VfyLH0WfQug7KwZR0CilWHy39++ObQTgkgeV9ux+xq9uc6U8pLfZzP6mClZpKWrvq1DilJAt4Mewh/0hRyBOsaUMoVKLvXtVU6t6+nL/HZTJYi4/rxU81tdbSu+N2Rtp7jcpB0OnUa9aoeOOVdsgDL4I1pFS+NPHmcsQ2+fw+UpLWOwwwWNVQ1kCaIcgaiONkmLGEZrDDXtcnXo5PfjC+5VybKWrWWSyF5cWbEEpJNI6kqdQSrMRqD1B9KjS2t423xoqt5AArb8QVPRwoo4UUcKK//2Q==) no-repeat right 50%;
- }
- .sorting_desc {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAIEAAAIDAQAAAAAAAAAAAAAAAAAGBwgJCgEBAAIDAQAAAAAAAAAAAAAAAAMFBAYHCBAAAAUDAwMFAAAAAAAAAAAAAQIDBAUABgcSNTYRFQgTZFUWZhEAAAQEAggGAwAAAAAAAAAAAAECAxEhBAYSMjFBYRMzFDQFUZFSYmMHJFRk/9oADAMBAAIRAxEAPwDv4oAKACgCKc1tMmusb3Eph6cSgsgx7fucEZxGRks2llGIGVWgVm8q1dt0+6ogKaapSgdNbQPXTqAdwsN602bopk3vTnUW24rduwccbU2S5E8Sm1JM92czSZwNOKUYDFrCqTp1corDUFMpEcYap+Ipb4P5O8n81y9xXXlG50yY+thR3AEivqFvRDmduvSUrhuLtrFNXqCFvJm1LAQ5RMuchB6gBy13f7+tP6lsOipuz2jSGdy1ZJeNzmXnEtU+pWFTikmbxyTEjgglKKZpMU3ZanudYtTtSr8dMoYSKKvKMte0aUV5YGxgoASbD2iQ4Tyi6uB7Rvz/AHD9R8r7/wBWr64uta6/pKfq+JwUZP5/1/hwCFjIeTMrLo0np93q2xDtVCJh/9k=) no-repeat right 50%;
- }
- .sorting {
- background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAEwATAwERAAIRAQMRAf/EAGgAAAIDAQAAAAAAAAAAAAAAAAUHAAYICgEBAQAAAAAAAAAAAAAAAAAAAAEQAAEEAQIFAgcAAAAAAAAAAAECAwQFABEGIRI0NQcTFDFBMmNUZRYRAQEBAQAAAAAAAAAAAAAAAAABEUH/2gAMAwEAAhEDEQA/AO93cd/XbXpLC9tHQ1Dr46nljUBby/gzGZB+p+Q6QhA+ZOApfDnllW/ha1tv6Ee7iyH5kRlvlbTIqHndWkNJ0HO7XFQbWeJUkpUeOpySrZh65UUnyFUW1ztaexRmIbaPyzoLE6vg2UWW9GC1e0XHnsSGEqfQohCwApK9OIGuAjfBP9VuG0m39vGqINVUe4r2xF21TVsuXZOI9N9lMmLBYkttQ21auBKhqtSUngCMkW5xqjKiYASh6SR2Tulr2HpOvf6j9p+V9/mwDeB//9k=) no-repeat right 50%;
- }
- div.view-wrapper {
- .btn-group {
- margin-bottom: 9px;
- }
- }
- a.ui-icon-circle-close {
- float: right;
- opacity: 0.2;
- padding: 1px;
- position: relative;
- right: -8px;
- margin-top: 6px;
- z-index: 10;
- &:hover {
- opacity: 0.7;
- }
- }
- .notActive {
- a.ui-icon-circle-close {
- visibility: hidden;
- }
- }
- }
- .box-footer .footer-pagination {
- float: right;
- .nav {
- margin-bottom: 0;
- }
- .dropdown {
- margin-top: 3px;
- }
- .dropdown {
- margin-top: 3px;
- }
- .dropdown select {
- width: 60px;
- }
- .page-listing a {
- line-height: 0;
- border: none;
- margin: 0;
- margin-right: 10px;
- cursor: pointer;
- color: #0088CC;
- padding: 8px 0;
- float: left;
- text-decoration: underline;
- }
- .page-listing a:hover {
- text-decoration: none;
- }
- .page-listing {
- width: 100px;
- .table {
- th.name {
- width: 300px;
- a.filter-label {
- width: 57px;
- display: block;
- float: left;
- }
- }
- }
- }
- }
- }
- .dataset-delete {
- width: 15%;
- }
- .dataset-form {
- width: 85%;
- }
- .mirroring-sidebar {
- hr {
- margin: 0;
- }
- ul {
- margin: 0 0 20px 0;
- li {
- list-style: none;
- margin: 8px 0;
- a {
- cursor: pointer;
- }
- }
- }
- }
- .jobs-sidebar{
- width: 16%;
- height: 100%;
- float:left;
- margin: 0 20px 0 0;
- hr {
- margin: 0;
- }
- ul {
- margin: 0 0 20px 0;
- li {
- list-style: none;
- margin: 8px 0;
- a {
- cursor: pointer;
- }
- }
- }
- }
- .jobs-middleportion{
- width: 80%;
- height: 100%;
- float:left;
- }
- /*End Mirroring*/
- .noDisplay {
- display: none !important;
- }
- .display {
- display: block !important;
- }
- .display-inline-block {
- display: inline-block !important;
- }
- /* CHARTS */
- .chart {
- overflow: hidden;
- /*padding-bottom: 25px;*/
- .attributes {
- width: 75px;
- float: left;
- margin: 45px 0 0 0;
- p {
- margin-bottom: 9px;
- }
- }
- .hostName {
- font-weight: bold;
- }
- .horizon {
- border-bottom: 1px solid #000000;
- overflow: hidden;
- position: relative;
- }
- .horizon {
- border-bottom: 1px solid #000000;
- border-top: 1px solid #000000;
- }
- .horizon + .horizon {
- border-top: medium none;
- }
- .horizon canvas {
- display: block;
- }
- .horizon .title, .horizon .value {
- bottom: 0;
- line-height: 30px;
- margin: 0 6px;
- position: absolute;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- white-space: nowrap;
- }
- .horizon .title {
- left: 0;
- }
- .horizon .value {
- right: 0;
- }
- .rule {
- display: none;
- width: 30px;
- height: 124px;
- padding-top: 27px;
- position: absolute;
- border-left: 1px dashed #a52a2a;
- .stateValue {
- margin: 15px 0 0 3px;
- line-height: 15px;
- }
- }
- .axis {
- font: 10px sans-serif;
- path {
- display: none;
- }
- line {
- shape-rendering: crispedges;
- stroke: #000000;
- }
- }
- .line {
- background: none repeat scroll 0 0 #000000;
- /* opacity: 0.2; */
- z-index: 2;
- }
- ul.dropdown-menu {
- li {
- text-align: left;
- }
- }
- }
- .linear {
- path {
- stroke: steelblue;
- stroke-width: 2;
- fill: none;
- }
- line {
- stroke: black;
- }
- text {
- font-family: Arial;
- font-size: 9pt;
- }
- }
- /* CHARTS END */
- /* UNIVERSAL STYLES */
- .align-right {
- text-align: right;
- }
- .text-center {
- text-align: center;
- }
- .left {
- float: left;
- }
- .no-borders {
- border: none !important;
- }
- ul.noStyle {
- list-style: none;
- }
- ul.inline li {
- display: inline;
- }
- .table.no-borders th, .table.no-borders td {
- border-top: none;
- }
- /* UNIVERSAL STYLES END */
- /* METRIC FILTERING WIDGET */
- .metric-filtering-widget {
- .title {
- padding-top: 4px;
- }
- .accordion {
- background: none repeat scroll 0 0 #FFFFFF;
- /*border: 1px solid;*/
- font-size: 12px;
- /*padding: 5px 0;*/
- position: absolute;
- z-index: 1000;
- .accordion-group {
- .accordion-heading {
- i {
- text-decoration: none;
- }
- }
- .accordion-body {
- .accordion-inner {
- /*border: none;
- padding: 0 8px;
- width: 160px;*/
- ul.items {
- list-style: none;
- li {
- a:hover {
- cursor: pointer;
- }
- }
- li.disabled {
- a {
- color: #999999;
- }
- }
- }
- }
- }
- }
- }
- }
- /* METRIC FILTERING WIDGET END */
- /* TIME RANGE WIDGET */
- /* start css for timepicker */
- .ui-timepicker-div .ui-widget-header {
- margin-bottom: 8px;
- }
- .ui-timepicker-div dl {
- text-align: left;
- }
- .ui-timepicker-div dl dt {
- height: 25px;
- margin-bottom: -25px;
- }
- .ui-timepicker-div dl dd {
- margin: 0 10px 10px 65px;
- }
- .ui-timepicker-div td {
- font-size: 90%;
- }
- .ui-tpicker-grid-label {
- background: none;
- border: none;
- margin: 0;
- padding: 0;
- }
- .ui-timepicker-rtl {
- direction: rtl;
- }
- .ui-timepicker-rtl dl {
- text-align: right;
- }
- .ui-timepicker-rtl dl dd {
- margin: 0 65px 10px 10px;
- }
- /* end css for timepicker */
- #slider {
- margin: 10px 0 40px;
- width: 330px;
- .now-marker {
- position: absolute;
- right: -15px;
- bottom: -23px;
- }
- .period-marker {
- position: absolute;
- left: -15px;
- bottom: -23px;
- }
- }
- .screensaver {
- width: 90%;
- height: 157px;
- border: 1px solid silver;
- margin: 20px 15px 10px 15px;
- background: url(/img/spinner.gif) no-repeat center center;
- }
- /* TIME RANGE WIDGET END */
- #host-details .host-components .btn-group > .btn {
- min-width: 130px;
- }
- #host-details > .host-maintenance {
- text-align: right;
- margin-top: -28px;
- }
- #host-details > .host-maintenance > div {
- text-align: left;
- }
- #host-details > .host-title {
- font-size: 18px;
- font-weight: 700;
- background-position: 0px center;
- padding-left: 17px;
- }
- /* fieldset begin */
- .fieldset {
- border: 2px solid black;
- padding: 10px;
- }
- .fieldset legend {
- border-bottom: none;
- width: auto;
- font-size: 14px;
- }
- /* fieldset end */
- /* Start Carousel */
- .carousel-inner {
- height: 80px;
- }
- /* End Carousel*/
- #add-host .back {
- display: block;
- width: 105px;
- margin-bottom: 10px;
- }
- #add-service .back {
- display: block;
- width: 130px;
- margin-bottom: 10px;
- }
- #step8-content {
- max-height: 440px;
- }
- #step10-content {
- max-height: 440px;
- }
- .content-area {
- position: relative;
- .textTrigger {
- cursor: pointer;
- position: absolute;
- right: 0;
- top: 0;
- visibility: hidden;
- background-color: #dcdcdc;
- }
- }
- //bootstrap
- //.dropdown-menu .active > a, .dropdown-menu .active > a:hover {
- // background-color: #49AFCD;
- // background-image: -moz-linear-gradient(center top, #5BC0DE, #2F96B4);
- //}
- //bootstrap end
- // COMBOBOX FIXES
- .combobox-container .btn:hover {
- background-position: 0;
- }
- // COMBOBOX FIXES END
- @media all and (max-width: 1200px) {
- #main-nav {
- li.span2 {
- width: 120px;
- }
- }
- // when the scree is narrow, the popup modal width is adjustable
- .full-width-modal {
- .modal{
- width: 90%;
- margin: 350px 0 0 -45%;
- }
- }
- }
- //
- // Gray palette
- //
- .nav-pills > .active > a, .nav-pills > .active > a:hover {
- background-color: #666666;
- }
- .nav-list > .active > a, .nav-list > .active > a:hover {
- background-color: #666666;
- }
- .dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a {
- background-color: #666666;
- background-image: linear-gradient(to bottom, #666666, #555555);
- }
- .alert-info {
- background-color: #E6F1F6;
- border-color: #D2D9DD;
- color: #4E575B;
- text-shadow: none;
- .spinner {
- padding: 8px 35px 8px 42px;
- background: url(/img/spinner.gif) no-repeat;
- }
- }
- /*
- .progress-striped .bar {
- background-color: #A5A5A5;
- }
- .progress-info.progress-striped .bar, .progress-striped .bar-info {
- background-color: #A5A5A5;
- }
- */
- .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
- background-color: #555555;
- }
- .modal-body {
- max-height: none;
- }
- i.icon-asterisks {
- color: #FF4B4B;
- }
- .rickshaw_legend {
- .action {
- opacity: 1;
- color: #ffffff;
- }
- .action:hover {
- opacity: 0.8;
- text-decoration: none;
- }
- }
- .hidden {
- display: none;
- visibility: hidden;
- }
- //styles for screen width more than 1200px
- @media (min-width: 1200px) {
- //when screen is wide, the modal width is fixed
- .full-width-modal {
- .modal{
- width: 1170px;
- margin: -350px 0 0 -583px;
- }
- }
- .row {
- margin-left: -30px;
- *zoom: 1;
- }
- .row:before,
- .row:after {
- display: table;
- line-height: 0;
- content: "";
- }
- .row:after {
- clear: both;
- }
- [class*="span"] {
- float: left;
- min-height: 1px;
- margin-left: 30px;
- }
- .container,
- .navbar-static-top .container,
- .navbar-fixed-top .container,
- .navbar-fixed-bottom .container {
- width: 1170px;
- }
- .span12 {
- width: 1170px;
- }
- .span11 {
- width: 1070px;
- }
- .span10 {
- width: 970px;
- }
- .span9 {
- width: 870px;
- }
- .span8 {
- width: 770px;
- }
- .span7 {
- width: 670px;
- }
- .span6 {
- width: 570px;
- }
- .span5 {
- width: 470px;
- }
- .span4 {
- width: 370px;
- }
- .span3 {
- width: 270px;
- }
- .span2 {
- width: 170px;
- }
- .span1 {
- width: 70px;
- }
- .offset12 {
- margin-left: 1230px;
- }
- .offset11 {
- margin-left: 1130px;
- }
- .offset10 {
- margin-left: 1030px;
- }
- .offset9 {
- margin-left: 930px;
- }
- .offset8 {
- margin-left: 830px;
- }
- .offset7 {
- margin-left: 730px;
- }
- .offset6 {
- margin-left: 630px;
- }
- .offset5 {
- margin-left: 530px;
- }
- .offset4 {
- margin-left: 430px;
- }
- .offset3 {
- margin-left: 330px;
- }
- .offset2 {
- margin-left: 230px;
- }
- .offset1 {
- margin-left: 130px;
- }
- .row-fluid {
- width: 100%;
- *zoom: 1;
- }
- .row-fluid:before,
- .row-fluid:after {
- display: table;
- line-height: 0;
- content: "";
- }
- .row-fluid:after {
- clear: both;
- }
- .row-fluid [class*="span"] {
- display: block;
- float: left;
- width: 100%;
- min-height: 30px;
- margin-left: 2.564102564102564%;
- *margin-left: 2.5109110747408616%;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .row-fluid [class*="span"]:first-child {
- margin-left: 0;
- }
- .row-fluid .top-portion{
- width : 100%;
- height : 50px;
- }
- .row-fluid .span12 {
- width: 100%;
- *width: 99.94680851063829%;
- }
- .row-fluid .span11 {
- width: 91.45299145299145%;
- *width: 91.39979996362975%;
- }
- .row-fluid .span10 {
- width: 82.90598290598291%;
- *width: 82.8527914166212%;
- }
- .row-fluid .span9 {
- width: 74.35897435897436%;
- *width: 74.30578286961266%;
- }
- .row-fluid .span8 {
- width: 65.81196581196582%;
- *width: 65.75877432260411%;
- }
- .row-fluid .span7 {
- width: 57.26495726495726%;
- *width: 57.21176577559556%;
- }
- .row-fluid .span6 {
- width: 48.717948717948715%;
- *width: 48.664757228587014%;
- }
- .row-fluid .span5 {
- width: 40.17094017094017%;
- *width: 40.11774868157847%;
- }
- .row-fluid .span4 {
- width: 31.623931623931625%;
- *width: 31.570740134569924%;
- }
- .row-fluid .span3 {
- width: 23.076923076923077%;
- *width: 23.023731587561375%;
- }
- .row-fluid .span2 {
- width: 14.52991452991453%;
- *width: 14.476723040552828%;
- }
- .row-fluid .span1 {
- width: 5.982905982905983%;
- *width: 5.929714493544281%;
- }
- .row-fluid .offset12 {
- margin-left: 105.12820512820512%;
- *margin-left: 105.02182214948171%;
- }
- .row-fluid .offset12:first-child {
- margin-left: 102.56410256410257%;
- *margin-left: 102.45771958537915%;
- }
- .row-fluid .offset11 {
- margin-left: 96.58119658119658%;
- *margin-left: 96.47481360247316%;
- }
- .row-fluid .offset11:first-child {
- margin-left: 94.01709401709402%;
- *margin-left: 93.91071103837061%;
- }
- .row-fluid .offset10 {
- margin-left: 88.03418803418803%;
- *margin-left: 87.92780505546462%;
- }
- .row-fluid .offset10:first-child {
- margin-left: 85.47008547008548%;
- *margin-left: 85.36370249136206%;
- }
- .row-fluid .offset9 {
- margin-left: 79.48717948717949%;
- *margin-left: 79.38079650845607%;
- }
- .row-fluid .offset9:first-child {
- margin-left: 76.92307692307693%;
- *margin-left: 76.81669394435352%;
- }
- .row-fluid .offset8 {
- margin-left: 70.94017094017094%;
- *margin-left: 70.83378796144753%;
- }
- .row-fluid .offset8:first-child {
- margin-left: 68.37606837606839%;
- *margin-left: 68.26968539734497%;
- }
- .row-fluid .offset7 {
- margin-left: 62.393162393162385%;
- *margin-left: 62.28677941443899%;
- }
- .row-fluid .offset7:first-child {
- margin-left: 59.82905982905982%;
- *margin-left: 59.72267685033642%;
- }
- .row-fluid .offset6 {
- margin-left: 53.84615384615384%;
- *margin-left: 53.739770867430444%;
- }
- .row-fluid .offset6:first-child {
- margin-left: 51.28205128205128%;
- *margin-left: 51.175668303327875%;
- }
- .row-fluid .offset5 {
- margin-left: 45.299145299145295%;
- *margin-left: 45.1927623204219%;
- }
- .row-fluid .offset5:first-child {
- margin-left: 42.73504273504273%;
- *margin-left: 42.62865975631933%;
- }
- .row-fluid .offset4 {
- margin-left: 36.75213675213675%;
- *margin-left: 36.645753773413354%;
- }
- .row-fluid .offset4:first-child {
- margin-left: 34.18803418803419%;
- *margin-left: 34.081651209310785%;
- }
- .row-fluid .offset3 {
- margin-left: 28.205128205128204%;
- *margin-left: 28.0987452264048%;
- }
- .row-fluid .offset3:first-child {
- margin-left: 25.641025641025642%;
- *margin-left: 25.53464266230224%;
- }
- .row-fluid .offset2 {
- margin-left: 19.65811965811966%;
- *margin-left: 19.551736679396257%;
- }
- .row-fluid .offset2:first-child {
- margin-left: 17.094017094017094%;
- *margin-left: 16.98763411529369%;
- }
- .row-fluid .offset1 {
- margin-left: 11.11111111111111%;
- *margin-left: 11.004728132387708%;
- }
- .row-fluid .offset1:first-child {
- margin-left: 8.547008547008547%;
- *margin-left: 8.440625568285142%;
- }
- input,
- textarea,
- .uneditable-input {
- margin-left: 0;
- }
- .controls-row [class*="span"] + [class*="span"] {
- margin-left: 30px;
- }
- input.span12,
- textarea.span12,
- .uneditable-input.span12 {
- width: 1156px;
- }
- input.span11,
- textarea.span11,
- .uneditable-input.span11 {
- width: 1056px;
- }
- input.span10,
- textarea.span10,
- .uneditable-input.span10 {
- width: 956px;
- }
- input.span9,
- textarea.span9,
- .uneditable-input.span9 {
- width: 856px;
- }
- input.span8,
- textarea.span8,
- .uneditable-input.span8 {
- width: 756px;
- }
- input.span7,
- textarea.span7,
- .uneditable-input.span7 {
- width: 656px;
- }
- input.span6,
- textarea.span6,
- .uneditable-input.span6 {
- width: 556px;
- }
- input.span5,
- textarea.span5,
- .uneditable-input.span5 {
- width: 456px;
- }
- input.span4,
- textarea.span4,
- .uneditable-input.span4 {
- width: 356px;
- }
- input.span3,
- textarea.span3,
- .uneditable-input.span3 {
- width: 256px;
- }
- input.span2,
- textarea.span2,
- .uneditable-input.span2 {
- width: 156px;
- }
- input.span1,
- textarea.span1,
- .uneditable-input.span1 {
- width: 56px;
- }
- .thumbnails {
- margin-left: -30px;
- }
- .thumbnails > li {
- margin-left: 30px;
- }
- .row-fluid .thumbnails {
- margin-left: 0;
- }
- #dashboard-widgets-container{
- .add-widget-button{
- margin-left: 9px; //3px for 3 buttons view
- }
- #dashboard-widgets{
- .row-fluid .span2p4 {
- width: 19.08%;
- *width: 19.08%;
- }
- .row-fluid .span4p8 {
- width: 39%;
- *width: 39%;
- }
- .thumbnails > div {
- margin-right: 8px;
- }
- .thumbnail .caption {
- font-size: 14px;
- }
- .thumbnail .hidden-info{
- font-size: 14px;
- }
- .thumbnail .hidden-info-three-line{
- font-size: 14px;
- }
- .links .thumbnail .widget-content{
- font-weight: bold;
- font-size: 12px;
- }
- .links .thumbnail .link-button{
- padding-left: 100px;
- }
- #map-reduce-slots-text{
- font-size: 12px;
- #map-reduce-slots-bar1{
- margin-left: 11px;
- }
- }
- }
- }
- .summary-metric-graphs {
- [class*="span"] {
- float: left;
- margin-left: 10px;
- }
- .chart-container {
- .chart-x-axis {
- left: 0%;
- width: 100%;
- }
- }
- }
- }
- .filter-combobox{
- > input{
- width: 170px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- border-radius: 4px 0 0 4px;
- }
- > .btn-group{
- display: inline-block;
- margin-left: -1px;
- > .dropdown-toggle{
- border-top-left-radius: 0;
- border-bottom-left-radius: 0
- }
- .dropdown-menu{
- left: auto;
- right:0;
- }
- }
- }
- #security-stages {
- a.remove-link {
- text-decoration:none;
- pointer-events: none;
- color:black;
- cursor: default;
- }
- }
|