12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 |
- /**
- * 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.
- */
- /*
- ------ START editable-list DIRECTIVE SECTION ------ -
- */
- .editable-list-container.well{
- padding: 10px;
- position: relative;
- margin-bottom: 30px;
- cursor: pointer;
- }
- .editable-list-container.well.edit-mode{
- cursor: default;
- }
- .editable-list-container.well.disabled{
- background: white;
- }
- .editable-list-container .items-box{
- }
- .editable-list-container .items-box ul.items-list{
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .editable-list-container .items-box ul.items-list li.item{
- display: inline-block;
- padding: 4px 8px;
- margin: 0 5px 5px 2px;
- background: white;
- border: 1px solid #ebebeb;
- max-width: 100%;
- white-space: nowrap;
- position: relative;
- }
- .editable-list-container.edit-mode .items-box ul.items-list li.item{
- padding-right: 25px;
- }
- .editable-list-container .items-box ul.items-list li.item.ng-leave-active{
- display: none;
- }
- .editable-list-container .items-box ul.items-list li a{
- text-decoration: none;
- }
- .editable-list-container .items-box ul.items-list li.item .close{
- margin: -2px 0 0 5px;
- width: 13px;
- outline: none;
- position: absolute;
- display: none;
- }
- .editable-list-container.edit-mode .items-box ul.items-list li.item .close{
- display: inline-block;
- }
- .editable-list-container .actions-panel{
- position: absolute;
- right: 5px;
- bottom: -30px;
- padding: 2px 5px 5px 5px;
- background: #f5f5f5;
- border: 1px solid #e3e3e3;
- border-top: none;
- border-radius: 0 0 4px 4px;
- -webkit-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- -ms-transform-origin: 0% 0%; /* IE 9 */
- -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
- transform-origin: 0% 0%;
- -webkit-transform: rotateX(0deg);
- -ms-transform: rotateX(0deg);
- -o-transform: rotateX(0deg);
- transform: rotateX(0deg);
- }
- .editable-list-container .actions-panel.ng-hide{
- -webkit-transform: rotateX(90deg);
- -ms-transform: rotateX(90deg);
- -o-transform: rotateX(90deg);
- transform: rotateX(90deg);
- }
- .editable-list-container.edit-mode .items-box ul.items-list li.item.add-item-input.ng-hidden{
- display: none !important;
- }
- .editable-list-container.edit-mode .items-box ul.items-list li.item.add-item-input{
- display: inline-block!important;
- outline: none;
- max-width: 200px;
- text-overflow: ellipsis;
- white-space: nowrap;
- position: relative;
- padding-right: 8px;
- -webkit-transition: none;
- -o-transition: none;
- transition: none;
- }
- .add-item-input span{
- display: block;
- outline: none;
- min-width: 30px;
- position: relative;
- cursor: pointer;
- }
- .add-item-input span:focus{
- cursor: default;
- }
- .editable-list-container .items-box ul.items-list li.item.add-item{
- color: #ddd;
- }
- .add-item-input span:empty:before{
- content: 'New';
- position: absolute;
- left: 0;
- color: #ddd;
- }
- .add-item-input span:focus:before{
- display: none;
- }
- .typeahead-box{
- position: absolute;
- left: 0;
- margin-top: 5px;
- background: white;
- border: 1px solid #ebebeb;
- z-index: 1000;
- min-width: 65px;
- }
- .typeahead-box ul{
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .typeahead-box ul li{
- padding: 3px 5px;
- display: block;
- cursor: pointer;
- }
- .typeahead-box ul li.selected, .typeahead-box ul li:hover{
- background: #eee;
- }
- .editable-list-container.disabled .pencil-box{
- display: none;
- }
- .editable-list-container .pencil-box{
- position: absolute;
- right: 5px;
- top: 5px;
- opacity: 0;
- -webkit-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- }
- .editable-list-container:hover .pencil-box{
- opacity: 1;
- }
- .editable-list-container.edit-mode:hover .pencil-box{
- opacity: 0;
- }
- /*
- ------ END editable-list DIRECTIVE SECTION ------ -
- */
- .tooltip-inner{
- word-wrap: break-word;
- }
- .instances-table{
- table-layout: fixed;
- }
- .description-column{
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- max-width: 100%;
- display: inline-block;
- }
- .paginator{
- margin: 0;
- }
- .mainpage .panel-body{
- padding: 20px;
- height: 620px;
- }
- .mainpage h1{
- font-size: 24px;
- margin-top: 10px;
- }
- .mainpage .panel-body #main-operations-boxes {
- padding: 10px;
- }
- .mainpage .panel-body #main-operations-boxes .thumbnail{
- display: block;
- height: 230px;
- padding: 8px;
- background-color: #eeeeee;
- margin-bottom: 20px;
- margin-left: 20px;
- margin-right: 10px;
- border: none;
- border-radius: 0px;
- }
- .mainpage .panel-body #main-operations-boxes .thumbnail .title,
- .mainpage .panel-body #main-operations-boxes .thumbnail .description,
- .mainpage .panel-body #main-operations-boxes .thumbnail .buttons {
- text-align: center;
- line-height: 1.5;
- }
- .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn{
- width: 200px;
- margin: 5px;
- }
- .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn.userslist-button,
- .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn.groupslist-button {
- width: 100px;
- }
- .mainpage .panel-body #main-operations-boxes .thumbnail .glyphicon {
- font-size: 50px;
- text-align: center;
- display: block;
- line-height: 1.5;
- }
- .mainpage .panel-body #main-operations-boxes .col-sm-5 {
- width: 43.5%;
- }
- .views-list-table .panel{
- border-radius: 0;
- border: none;
- margin-top: 0;
- }
- .views-list-table h4{
- font-size: 14px;
- }
- .views-list-table .panel-group .panel + .panel{
- margin-top: 0;
- }
- .views-list-table .panel-group .panel .panel-heading{
- border-radius: 0;
- border-top: 1px solid #ddd;
- }
- .views-list-table .panel-group .panel .panel-heading{
- background: #f9f9f9;
- }
- .views-list-table .panel-group .panel:nth-child(even) .panel-heading{
- background: none;
- }
- .views-list-table .panel-group .panel .panel-heading .panel-title{
- font-size: 14px;
- font-weight: normal;
- cursor: pointer;
- }
- .views-list-table .panel-group .panel .panel-body{
- padding-top: 0;
- padding-bottom: 0;
- }
- .views-list-table .panel-group .panel .panel-body table tr:first-child td{
- border-top: none;
- }
- .views-list-table .glyphicon.glyphicon-chevron-right{
- -webkit-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- }
- .views-list-table .glyphicon.glyphicon-chevron-right.opened{
- -webkit-transform: rotateZ(90deg);
- -ms-transform: rotateZ(90deg);
- -o-transform: rotateZ(90deg);
- transform: rotateZ(90deg);
- }
- .ats-switch{
- border-color: #333;
- }
- .ats-switch.disabled, .ats-switch.disabled:hover{
- cursor: not-allowed !important;
- box-shadow: none!important;
- border-color: #ccc!important;
- }
- .ats-switch.disabled .switch-left, .ats-switch.disabled .switch-right, .ats-switch.disabled .knob{
- cursor: not-allowed!important;
- }
- .hide-soft{
- display: none;
- }
- .visible{
- display: block;
- }
- .not-required{
- font-weight: normal;
- }
- .panel{
- box-shadow: none;
- border-radius: 0;
- }
- .views-list-table .panel-group .panel:nth-child(even) .panel-heading{
- background: #f9f9f9;
- }
- .users-pane table .glyphicon{
- width: 14px;
- }
- .settings-edit-toggle.disabled, .properties-toggle.disabled{
- color: #999;
- cursor: not-allowed;
- }
- .pulldown2{
- -webkit-transform: translateY(2px);
- -ms-transform: translateY(2px);
- -o-transform: translateY(2px);
- transform: translateY(2px);
- }
- .btn.disabled.syncldapbtn{
- pointer-events: auto;
- background-color: #e6e6e6;
- cursor: not-allowed;
- }
- .btn.deleteuser-btn.disabled, .btn.deleteuser-btn[disabled], .btn.btn-delete-instance.disabled{
- pointer-events: auto;
- cursor: not-allowed;
- background-color: #e6e6e6;
- }
- .about .logo{
- float: left;
- width: 20%;
- }
- .about .content{
- float: left;
- }
- .about .content .project{
- font-weight: bold;
- font-size: 2em;
- }
- .breadcrumb{
- background: none;
- font-size: 24px;
- margin: 0;
- padding: 0;
- }
- .user-edit-panel .ats-switch span.switch-right , .create-user-form .ats-switch span.switch-right{
- background-color: #da4f49;
- color: white;
- }
- /*
- Style topnav menu
- */
- #top-nav .navbar.navbar-static-top{
- min-height: 40px;
- }
- #top-nav .navbar-inverse{
- background: none;
- border: none;
- }
- #top-nav .navbar.navbar-static-top .navbar-inner {
- background-image: -moz-linear-gradient(top, #555555, #333333);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#333333));
- background-image: -webkit-linear-gradient(top, #555555, #333333);
- background-image: -o-linear-gradient(top, #555555, #333333);
- background-image: linear-gradient(to bottom, #555555, #333333);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#555555, endColorstr=#333333);
- -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
- box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
- max-height: 40px;
- height: 40px;
- }
- #top-nav .dropdown-toggle.navbar-btn{
- margin: 4px 0 0 0;
- }
- #top-nav .navbar.navbar-static-top .logo {
- float: left;
- padding-top: 2px;
- }
- #top-nav .navbar.navbar-static-top .logo img {
- height: 32px;
- }
- #top-nav .navbar.navbar-static-top .brand {
- color: #ffffff;
- font-size: 16px;
- font-weight: normal;
- line-height: 32px;
- margin-left: 0;
- padding: 2px 5px 0 10px;
- text-shadow: 0 1px 0 #555555;
- display: block;
- float: left;
- text-decoration: none;
-
- }
- #top-nav .navbar.navbar-static-top .brand.cluster-name{
- margin-left: 10px;
- }
- .create-view-form{
- padding-bottom: 50px;
- }
- .create-view-form .description{
- display: inline-block;
- vertical-align: middle;
- }
- .create-view-form .description h4 span{
- font-weight: normal;
-
- }
- .create-view-form .view-header{
- }
- .left-navbar .panel{
- border-radius: 0;
- font-size: 15px;
- }
- .left-navbar .panel-heading {
- padding: 8px 15px;
- font-weight: bold;
- }
- .left-navbar .panel-body {
- padding: 5px 15px;
- }
- .left-navbar .panel-body #cluster-name input{
- font-size: 17px;
- }
- .left-navbar .panel-body #cluster-name form{
- margin-top: 4px;
- margin-bottom: -10px;
- }
- .left-navbar .panel-body h4 .glyphicon{
- font-size: 14px;
- }
- .left-navbar .panel-body #LDAP-button {
- padding: 5px;
- }
- .left-navbar .panel-body hr{
- margin-top: 5px;
- margin-bottom: 5px;
- }
- .left-navbar .panel-body li{
- margin: 0 -15px;
- }
- .left-navbar .panel-body li a{
- border-radius: 0;
- padding-left: 33px;
- padding-top: 8px;
- padding-bottom: 8px;
- }
- .left-navbar .panel-body li.active a{
- background: #666;
- }
- .search-container{
- position: relative;
- }
- .search-container .close{
- position: absolute;
- right: 10px;
- top: 30px;
- }
- .groups-pane .search-container .close{
- top: 30px;
- }
- .views-list-table .search-container .close{
- top: 5px;
- right: 50px;
- z-index: 10;
- }
- .views-list-pane .search-container .close{
- right: 50px;
- top: 5px;
- z-index: 100;
- }
- .groups-pane table thead th{
- border-top: 0;
- }
- .groups-pane table thead tr:first-child th{
- border: 0;
- }
- .container{
- padding-left: 0;
- width: 940px;
- }
- @media (min-width: 1200px) {
- .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container{
- width: 1130px;
- }
- .container{
- width: 1170px;
- }
- .mainpage .panel-body #main-operations-boxes .col-sm-5 {
- width: 44%;
- }
- }
- ul.nav li > a{
- cursor: pointer;
- }
- .admin-filter{
- cursor: pointer;
- }
- .glyphicon-flash.no-filter{
- color: #999;
- }
- .top-buffer{
- padding-top: 20px;
- }
- .bottom-buffer{
- padding-bottom: 20px;
- }
- .right-buffer{
- padding-right: 20px;
- }
- .right-margin{
- margin-right: 20px;
- }
- .left-margin{
- margin-left: 10px;
- }
- .bottom-margin{
- margin-bottom: 10px;
- }
- .top-margin{
- margin-top: 10px;
- }
- .text-left{
- text-align: left !important;
- }
- .text-center{
- text-align: center!important;
- }
- .padding-top-7{
- padding-top: 7px;
- }
- .padding-left-30{
- padding-left: 30px;
- }
- .no-margin-bottom{
- margin-bottom: 0!important;
- }
- table.no-border tr td{
- border: none;
- }
- .no-border{
- border: none !important;
- }
- .top-margin-4{
- margin-top: 4px;
- }
- .table > thead > tr > th.vertical-top{
- vertical-align: top;
- }
- .groups-pane table ul{
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- .groups-pane table ul li {
- margin: 0;
- padding: 0;
- }
- .views-list-pane{}
- .views-list-pane .panel-body table{
- margin-bottom: 0;
- }
- .views-list-pane .panel-body table tbody td{
- border-top: none;
- vertical-align: middle;
- }
- .group-edit .users button.close , .remove-button{
- float: none;
- -webkit-transform: translateY(1px);
- -ms-transform: translateY(1px);
- -o-transform: translateY(1px);
- transform: translateY(1px);
- }
- .cluster-manage-access-pane .well, .views-permissions-panel .well{
- min-height: 63px;
- }
- .views-list-pane accordion .panel-group .panel-heading{
- cursor: pointer;
- }
- .btn {
- display: inline-block;
- *display: inline;
- padding: 4px 14px;
- margin-bottom: 0;
- *margin-left: .3em;
- font-size: 14px;
- line-height: 20px;
- *line-height: 20px;
- color: #333333;
- text-align: center;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- vertical-align: middle;
- cursor: pointer;
- background-color: #f5f5f5;
- *background-color: #e6e6e6;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
- background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
- background-repeat: repeat-x;
- border: 1px solid #bbbbbb;
- *border: 0;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
- border-bottom-color: #a2a2a2;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- *zoom: 1;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
- }
- .btn:hover,
- .btn:active,
- .btn.active,
- .btn.disabled,
- .btn[disabled] {
- color: #333333;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- }
- .btn:active,
- .btn.active {
- background-color: #cccccc \9;
- }
- .btn:first-child {
- *margin-left: 0;
- }
- .btn:hover {
- color: #333333;
- text-decoration: none;
- background-color: #e6e6e6;
- *background-color: #d9d9d9;
- /* Buttons in IE7 don't get borders, so darken on hover */
- background-position: 0 -15px;
- -webkit-transition: background-position 0.1s linear;
- -moz-transition: background-position 0.1s linear;
- -o-transition: background-position 0.1s linear;
- transition: background-position 0.1s linear;
- }
- .btn:focus {
- outline: thin dotted #333;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
- }
- .btn.active,
- .btn:active {
- background-color: #e6e6e6;
- background-color: #d9d9d9 \9;
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
- }
- .btn.disabled,
- .btn[disabled] {
- cursor: default;
- background-color: #e6e6e6;
- background-image: none;
- opacity: 0.65;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- .btn-primary.active,
- .btn-warning.active,
- .btn-danger.active,
- .btn-success.active,
- .btn-info.active,
- .btn-inverse.active {
- color: rgba(255, 255, 255, 0.75);
- }
- .btn {
- border-color: #c5c5c5;
- border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
- }
- .btn-primary {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #006dcc;
- *background-color: #0044cc;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
- background-image: -o-linear-gradient(top, #0088cc, #0044cc);
- background-image: linear-gradient(to bottom, #0088cc, #0044cc);
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
- background-repeat: repeat-x;
- border-color: #0044cc #0044cc #002a80;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-primary:hover,
- .btn-primary:active,
- .btn-primary.active,
- .btn-primary.disabled,
- .btn-primary[disabled] {
- color: #ffffff;
- background-color: #0044cc;
- *background-color: #003bb3;
- }
- .btn-primary:active,
- .btn-primary.active {
- background-color: #003399 \9;
- }
- .btn-warning {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #faa732;
- *background-color: #f89406;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(to bottom, #fbb450, #f89406);
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-repeat: repeat-x;
- border-color: #f89406 #f89406 #ad6704;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-warning:hover,
- .btn-warning:active,
- .btn-warning.active,
- .btn-warning.disabled,
- .btn-warning[disabled] {
- color: #ffffff;
- background-color: #f89406;
- *background-color: #df8505;
- }
- .btn-warning:active,
- .btn-warning.active {
- background-color: #c67605 \9;
- }
- .btn-danger {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #da4f49;
- *background-color: #bd362f;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
- background-repeat: repeat-x;
- border-color: #bd362f #bd362f #802420;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-danger:hover,
- .btn-danger:active,
- .btn-danger.active,
- .btn-danger.disabled,
- .btn-danger[disabled] {
- color: #ffffff;
- background-color: #bd362f;
- *background-color: #a9302a;
- }
- .btn-danger:active,
- .btn-danger.active {
- background-color: #942a25 \9;
- }
- .btn-success {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #5bb75b;
- *background-color: #51a351;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
- background-image: -o-linear-gradient(top, #62c462, #51a351);
- background-image: linear-gradient(to bottom, #62c462, #51a351);
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
- background-repeat: repeat-x;
- border-color: #51a351 #51a351 #387038;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-success:hover,
- .btn-success:active,
- .btn-success.active,
- .btn-success.disabled,
- .btn-success[disabled] {
- color: #ffffff;
- background-color: #51a351;
- *background-color: #499249;
- }
- .btn-success:active,
- .btn-success.active {
- background-color: #408140 \9;
- }
- .btn-info {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #49afcd;
- *background-color: #2f96b4;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
- background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
- background-repeat: repeat-x;
- border-color: #2f96b4 #2f96b4 #1f6377;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-info:hover,
- .btn-info:active,
- .btn-info.active,
- .btn-info.disabled,
- .btn-info[disabled] {
- color: #ffffff;
- background-color: #2f96b4;
- *background-color: #2a85a0;
- }
- .btn-info:active,
- .btn-info.active {
- background-color: #24748c \9;
- }
- .btn-inverse {
- color: #ffffff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
- background-color: #363636;
- *background-color: #222222;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
- background-image: -webkit-linear-gradient(top, #444444, #222222);
- background-image: -o-linear-gradient(top, #444444, #222222);
- background-image: linear-gradient(to bottom, #444444, #222222);
- background-image: -moz-linear-gradient(top, #444444, #222222);
- background-repeat: repeat-x;
- border-color: #222222 #222222 #000000;
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
- filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
- filter: progid:dximagetransform.microsoft.gradient(enabled=false);
- }
- .btn-inverse:hover,
- .btn-inverse:active,
- .btn-inverse.active,
- .btn-inverse.disabled,
- .btn-inverse[disabled] {
- color: #ffffff;
- background-color: #222222;
- *background-color: #151515;
- }
- .btn-inverse:active,
- .btn-inverse.active {
- background-color: #080808 \9;
- }
- button.btn,
- input[type="submit"].btn {
- *padding-top: 3px;
- *padding-bottom: 3px;
- }
- button.btn::-moz-focus-inner,
- input[type="submit"].btn::-moz-focus-inner {
- padding: 0;
- border: 0;
- }
- button.btn.btn-large,
- input[type="submit"].btn.btn-large {
- *padding-top: 7px;
- *padding-bottom: 7px;
- }
- button.btn.btn-small,
- input[type="submit"].btn.btn-small {
- *padding-top: 3px;
- *padding-bottom: 3px;
- }
- button.btn.btn-mini,
- input[type="submit"].btn.btn-mini {
- *padding-top: 1px;
- *padding-bottom: 1px;
- }
- button.btn.btn-xs{
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
- }
- .alert-info {
- background-color: #E6F1F6;
- border-color: #D2D9DD;
- color: #4E575B;
- text-shadow: none;
- }
- .alert-info .link {
- padding: 0 15px;
- }
- .alert-info .link-left-pad {
- padding-left: 15px;
- }
- .breadcrumb > .active {
- color: #666;
- }
- .edit-cluster-name {
- cursor: pointer;
- }
- .edit-cluster-name:hover {
- color: #428bca;
- }
- .editClusterNameForm button.btn {
- padding: 4px 8px;
- }
- .editClusterNameForm input {
- width: 161px;
- float: left;
- margin-right: 5px;
- }
- .no-animation *{
- -webkit-transition: none!important;
- -o-transition: none!important;
- transition: none!important;
- }
|