123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /**
- * 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.
- */
- .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;
- }
- /*Box styles*/
- .box {
- border: 1px solid #5fa3c3;
- margin-bottom: 20px;
- }
- .box-header,
- .box-footer {
- padding: 10px;
- background: #dedede;
- }
- .box-footer hr {
- margin: 0px;
- }
- .box-header:after,
- .box-footer:after {
- content: "";
- display: table;
- clear: both;
- }
- .box-header .btn-group {
- float: right;
- }
- .box-header h4 {
- float: left;
- }
- .alerts {
- margin: 0px;
- }
- .alerts li {
- border-bottom: 1px solid #b7b9bb;
- list-style: none;
- padding: 5px 10px 5px 43px;
- }
- .alerts li.status-ok {
- background: url("../img/status-ok.jpg") no-repeat 14px 9px;
- }
- .alerts li.status-corrupt {
- background: url("../img/status-corrupt.jpg") no-repeat 14px 9px;
- }
- .alerts li .date-time {
- float: right;
- }
- .go-to {
- float: right;
- background: url("../img/arrow-right.png") no-repeat right center;
- padding-right: 40px;
- margin-top: 20px;
- }
- /*Services*/
- .service-summary {
- background: #F6FAFD;
- }
- .service-block {
- padding: 10px;
- }
- .service-configuration {
- padding: 10px;
- }
- .service-summary .service-block.span8{
- margin-left: 0;
- border-right: 1px solid #5fa3c3;
- }
- .service-summary .service-block.span3{
- padding-left: 0;
- }
- .service-summary .service-content{
- padding: 5px 0 0 10px;
- }
- .service-summary h5{
- color: #0088CC;
- font-size: 14px;
- }
- .service-summary .service-links{
- padding: 5px 0 10px 0;
- }
- .service-summary .service-content .service-links{
- padding: 5px 0;
- }
- .service-configuration .dl-horizontal dt{
- width: 90px;
- line-height: 19px;
- }
- .service-configuration .dl-horizontal dd{
- margin-left: 100px;
- line-height: 19px;
- }
- .service-button {
- text-align: right;
- margin-bottom: 5px;
- }
- .add-service-button {
- position: relative;
- }
- .add-service-button a{
- position: absolute;
- right: 0;
- top: -55px;
- }
- /*End Services*/
- /*Hosts*/
- #hosts .box-header .btn-group {
- float: left;
- }
- #hosts .box-header .btn.decommission{
- margin-left: 5px;
- }
- #hosts .box-header .btn.add-host-button{
- float: right;
- }
- #hosts .table{
- margin-bottom: 0;
- }
- #hosts .table thead{
- background: #EDF5FC;
- }
- #hosts .nav-pills li.disabled{
- display: block;
- margin: 2px 0;
- padding: 8px 12px;
- line-height: 14px;
- }
- #hosts .box-footer .footer-pagination{
- float: right;
- }
- /*End Hosts*/
|