1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564 |
- /**
- * 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%);
- }
- html, body {
- height: 100%;
- }
- #wrapper {
- min-height: 100%;
- }
- @footer-height: 100px;
- #main {
- overflow: auto;
- padding-bottom: @footer-height;
- }
- footer {
- position: relative;
- border-top: 1px solid #e5e5e5;
- padding: 30px 0;
- background-color: #fff;
- color: #666666;
- margin-top: -1 * @footer-height;
- height: @footer-height - 60px;
- }
- #content {
- padding: 20px 0;
- }
- #top-nav {
- .navbar {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- }
- .navbar .brand {
- color: #666666;
- display: block;
- font-size: 16px;
- font-weight: normal;
- line-height: 1;
- margin-left: 0;
- margin-right: 40px;
- margin-top: 3px;
- padding: 14px 10px;
- }
- /*
- .navbar-inner {
- background: linear-gradient(#FAFAFA, #EAEAEA) repeat scroll 0 0 transparent;
- background: -moz-linear-gradient(#FAFAFA, #EAEAEA) repeat scroll 0 0 transparent;
- background: -webkit-linear-gradient(#FAFAFA, #EAEAEA) repeat scroll 0 0 transparent;
- border-radius: 0;
- border: 1px solid #bbb;
- border-width: 0 0 1px 0;
- }
- */
- .navbar .nav {
- float: none;
- overflow: hidden;
- }
- .navbar .nav .active > a, .navbar .nav .active > a:hover {
- /*background-color: #999999;*/
- 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: 6px 10px 6px 0;
- padding: 8px 14px;
- text-decoration: none;
- text-shadow: none;
- }
- .navbar .nav > li > a:hover {
- background-color: transparent;
- color: #999999;
- text-decoration: none;
- }
- .navbar .brand {
- margin-right: 40px;
- }
- .navbar #logo {
- float: left;
- padding-top: 7px;
- height: 36px;
- }
- .navbar .nav > li.right {
- float: right;
- }
- }
- #main-nav {
- .brand {
- font-size: 17px;
- border-right: 1px solid rgba(0, 0, 0, 0.08);
- }
- .operations-count {
- background-color: #006DCC;
- }
- 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;
- }
- 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-remove {
- color: #FF4B4B;
- }
- #installer, #add-host {
- h2 {
- margin-top: 0;
- }
- .btn.btn-success {
- /* float: right; */
- }
- .btn-area {
- margin-top: 20px;
- }
- #installer-content, #add-host-content {
- padding: 25px;
- background-color: #fff;
- }
- .nav-header {
- font-size: 13px;
- padding-left: 0;
- }
- #installOptions {
- #targetHosts {
- }
- #hostConnectivity {
- margin-top: 20px;
- .control-group {
- margin-bottom: 0;
- }
- }
- #localRepo {
- margin-top: 20px;
- margin-bottom: 30px;
- }
- }
- #confirm-hosts {
- #host-filter {
- h5 {
- margin-right: 8px;
- line-height: 10px;
- }
- }
- }
- #step4, #step6 {
- a.selected {
- color: #333;
- }
- a.deselected {
- }
- i.icon-asterisks {
- color: #FF4B4B;
- }
- }
- #step6 .pre-scrollable {
- max-height: 440px;
- }
- #serviceConfig {
- .accordion-heading {
- background-color: #f0f0f0;
- }
- .accordion-group {
- margin-bottom: 20px;
- .control-group {
- margin: 10px 0;
- }
- 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;
- }
- }
- }
- #deploy {
- #overallProgress {
- }
- #deploy-status-by-host {
- th.host {
- width: 30%;
- }
- th.status {
- width: 40%;
- }
- th.messgage {
- width: 30%;
- }
- .progress-bar {
- width: 80%;
- .progress {
- margin-bottom: 0;
- }
- }
- .progress-percentage {
- margin-left: 10px;
- width: 20% - 10px;
- }
- }
- }
- }
- a:focus {
- outline: none;
- }
- @status-live-marker: url("/img/health-status-live.png");
- @status-dead-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*****/
- /*****start styles for dashboard page*****/
- /*start services summary*/
- .services {
- margin-left: 0;
- margin-top: 0;
- position: relative;
- .tab-marker-position {
- background-position: 6px 5px;
- background-repeat: no-repeat;
- list-style: none;
- min-height: 20px;
- min-width: 20px;
- margin-left: 0;
- }
- .health-status-LIVE {
- .tab-marker-position;
- background-image: @status-live-marker;
- }
- .health-status-DEAD {
- .tab-marker-position;
- background-image: @status-dead-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;
- }
- .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: 130px;
- a {
- margin-left: 5px
- }
- }
- .summary {
- line-height: 21px;
- }
- table.table {
- margin-top: 14px;
- color: #7b7b7b;
- font-size: 13px;
- width: 80%;
- tr > td:first-child {
- padding-right: 10px;
- text-align: right !important;
- }
- th, td {
- padding: 4px;
- }
- }
- .chart {
- right: 0;
- top: 27px;
- position: absolute;
- overflow: visible; // for quick links
- text-align: center;
- .chartLabel {
- font-size: 11px;
- color: #7b7b7b;
- }
- }
- }
- }
- #summary-info {
- border-top: none;
- border-collapse: collapse;
- td.summary-label {
- text-align: right;
- }
- tr td:first-child {
- text-align: right;
- }
- a {
- text-decoration: underline;
- &:hover {
- text-decoration: none;
- }
- }
- }
- .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: #777;
- }
- .message {
- font-size: 13px;
- color: #777;
- }
- .serviceLink {
- padding-left: 7px;
- }
- }
- }
- .go-to {
- float: right;
- background-position: right center;
- background-repeat: no-repeat;
- background-image: @arrow-right;
- padding-right: 40px;
- margin-top: 4px;
- }
- /*end alerts summary*/
- /*start chart/style graphs*/
- .chart-container {
- position: relative;
- margin: 20px 15px 0px 15px;
- .chart {
- padding-bottom: 0px !important;
- position: relative;
- height: 160px;
- 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;
- }
- .rickshaw_legend {
- background-color: #999999 !important;
- }
- .chart-overlay {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 100%;
- z-index: 5;
- }
- .chart-title {
- text-align: center;
- font-size: small;
- }
- }
- /*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;
- height: 20px;
- width: 20px;
- margin-left: 0; // padding-left: 30px;
- // padding-right: 30px;
- // background-position: 12px 9px;
- // background-repeat: no-repeat;
- }
- .health-status-LIVE {
- .tab-marker-position;
- background-image: @status-live-marker;
- }
- .health-status-DEAD {
- .tab-marker-position;
- background-image: @status-dead-marker;
- }
- li {
- line-height: 24px;
- }
- }
- .add-service-button {
- margin: 20px 20px 10px;
- }
- }
- .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;
- }
- }
- }
- .summary-metric-graphs {
- [class*="span"] {
- float: left;
- margin-left: 10px;
- }
- .chart-container {
- .chart-x-axis {
- left: 0%;
- width: 100%;
- }
- }
- }
- /*End Services*/
- /*Hosts*/
- #hosts {
- .health-status-LIVE {
- background-image: @status-live-marker;
- }
- .health-status-DEAD {
- background-image: @status-dead-marker;
- }
- .health-status-DEAD-ORANGE {
- background-image: @status-dead-orange-marker;
- }
- .health-status-DEAD-YELLOW {
- background-image: @status-dead-yellow-marker;
- }
- .box-header {
- .btn-group {
- float: left;
- }
- .btn.decommission {
- margin-left: 5px;
- }
- .btn.add-host-button {
- float: right;
- }
- }
- .table {
- margin-bottom: 0;
- thead {
- background: #EDF5FC;
- }
- th, td {
- width: 130px;
- }
- th.first, td.first {
- width: 30px;
- }
- td.first label {
- padding-top: 3px;
- }
- td.name span {
- display: block;
- float: left;
- height: 13px;
- margin: 4px 5px 0 0;
- width: 13px;
- }
- ul#filter-dropdown li {
- display: block;
- padding: 3px 0 3px 5px;
- line-height: 20px;
- }
- ul#filter-dropdown li input[type="checkbox"] {
- margin-top: 0;
- margin-right: 2px;
- margin-bottom: 2px;
- margin: 0 2px 2px;
- }
- }
- .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-details {
- .health-status-LIVE {
- background-image: @status-live-marker;
- background-repeat: no-repeat;
- background-position: 0px 4px;
- }
- .health-status-DEAD {
- background-image: @status-dead-marker;
- background-repeat: no-repeat;
- background-position: 0px 4px;
- }
- .health-status-DEAD-ORANGE {
- background-image: @status-dead-orange-marker;
- background-repeat: no-repeat;
- background-position: 0px 4px;
- }
- .health-status-DEAD-YELLOW {
- background-image: @status-dead-yellow-marker;
- background-repeat: no-repeat;
- background-position: 0px 4px;
- }
- .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-components {
- padding: 10px;
- padding-bottom: 0;
- border: 1px solid #DEDEDE;
- border-radius: 4px;
- background: #F5F5F5;
- }
- .host-components .btn-group {
- margin: 0 5px 10px 0;
- }
- }
- .background-operations {
- .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*/
- /*assign masters*/
- .assign-masters {
- .select-hosts {
- width: 50%;
- float: left;
- white-space: nowrap;
- }
- .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 {
- width: 100px;
- }
- .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 {
- margin-left: 5px;
- }
- ul.filter {
- background: #ffffff;
- list-style: none;
- position: absolute;
- padding: 10px;
- }
- #main-admin-menu {
- padding: 8px 0;
- ul {
- margin-bottom: 0;
- li {
- line-height: 24px;
- }
- }
- }
- #user-auth-method select {
- width: 320px;
- }
- /*start charts rack*/
- .rack {
- width: 224px;
- 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: 43px;
- height: 43px;
- .hostBlock {
- margin: 4px;
- width: 35px;
- height: 35px;
- position: relative;
- }
- }
- .hostBlock {
- border-radius: 4px;
- }
- .hostBlock.LIVE {
- background-color: #87BE73;
- }
- .hostBlock.DEAD {
- background-color: #E40024;
- }
- .hostBlock.CRITICAL {
- background: #F39236;
- }
- .ember-view:hover {
- }
- }
- .hosts.isActive {
- display: block;
- }
- }
- .heatmap_host_details {
- font-size: 10px;
- line-height: 1.6em;
- border: 1px solid #006F9F;
- background: #fff;
- width: 73px;
- height: 79px;
- padding: 10px 10px;
- position: absolute;
- z-index: 1000;
- }
- /*Start Heatmap*/
- .heatmap {
- .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;
- }
- }
- .heatmap_host_details {
- font-size: 12px;
- line-height: 1.6em;
- border: 1px solid #D9D9D9;
- background: #f9f9f9;
- width: 100px;
- height: 100px;
- padding: 10px 10px;
- position: absolute;
- z-index: 1000;
- }
- }
- /*End Heatmap*/
- .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 */
- .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;
- }
- }
- /* TIME RANGE WIDGET END */
- #host-details .host-components .btn-group > .btn {
- min-width: 130px;
- }
- #host-details > .host-maintenance {
- text-align: right;
- margin-top: -20px;
- }
- #host-details > .host-maintenance > div {
- text-align: left;
- }
- #host-details > .host-title {
- 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,
- #add-service .back {
- display: block;
- width: 105px;
- margin-bottom: 10px;
- }
- #step8-content {
- max-height: 570px;
- }
|