main.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. /*
  19. ------ START editable-list DIRECTIVE SECTION ------ -
  20. */
  21. .editable-list-container.well{
  22. padding: 10px;
  23. position: relative;
  24. margin-bottom: 30px;
  25. cursor: pointer;
  26. }
  27. .editable-list-container.well.edit-mode{
  28. cursor: default;
  29. }
  30. .editable-list-container.well.disabled{
  31. background: white;
  32. }
  33. .editable-list-container .items-box{
  34. }
  35. .editable-list-container .items-box ul.items-list{
  36. list-style-type: none;
  37. margin: 0;
  38. padding: 0;
  39. }
  40. .editable-list-container .items-box ul.items-list li.item{
  41. display: inline-block;
  42. padding: 4px 8px;
  43. margin: 0 5px 5px 2px;
  44. background: white;
  45. border: 1px solid #ebebeb;
  46. max-width: 100%;
  47. white-space: nowrap;
  48. position: relative;
  49. }
  50. .editable-list-container.edit-mode .items-box ul.items-list li.item{
  51. padding-right: 25px;
  52. }
  53. .editable-list-container .items-box ul.items-list li.item.ng-leave-active{
  54. display: none;
  55. }
  56. .editable-list-container .items-box ul.items-list li a{
  57. text-decoration: none;
  58. }
  59. .editable-list-container .items-box ul.items-list li.item .close{
  60. margin: -2px 0 0 5px;
  61. width: 13px;
  62. outline: none;
  63. position: absolute;
  64. display: none;
  65. }
  66. .editable-list-container.edit-mode .items-box ul.items-list li.item .close{
  67. display: inline-block;
  68. }
  69. .editable-list-container .actions-panel{
  70. position: absolute;
  71. right: 5px;
  72. bottom: -30px;
  73. padding: 2px 5px 5px 5px;
  74. background: #f5f5f5;
  75. border: 1px solid #e3e3e3;
  76. border-top: none;
  77. border-radius: 0 0 4px 4px;
  78. -webkit-transition: all 0.3s;
  79. -o-transition: all 0.3s;
  80. transition: all 0.3s;
  81. -ms-transform-origin: 0% 0%; /* IE 9 */
  82. -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
  83. transform-origin: 0% 0%;
  84. -webkit-transform: rotateX(0deg);
  85. -ms-transform: rotateX(0deg);
  86. -o-transform: rotateX(0deg);
  87. transform: rotateX(0deg);
  88. }
  89. .editable-list-container .actions-panel.ng-hide{
  90. -webkit-transform: rotateX(90deg);
  91. -ms-transform: rotateX(90deg);
  92. -o-transform: rotateX(90deg);
  93. transform: rotateX(90deg);
  94. }
  95. .editable-list-container.edit-mode .items-box ul.items-list li.item.add-item-input.ng-hidden{
  96. display: none !important;
  97. }
  98. .editable-list-container.edit-mode .items-box ul.items-list li.item.add-item-input{
  99. display: inline-block!important;
  100. outline: none;
  101. max-width: 200px;
  102. text-overflow: ellipsis;
  103. white-space: nowrap;
  104. position: relative;
  105. padding-right: 8px;
  106. -webkit-transition: none;
  107. -o-transition: none;
  108. transition: none;
  109. }
  110. .add-item-input span{
  111. display: block;
  112. outline: none;
  113. min-width: 30px;
  114. position: relative;
  115. cursor: pointer;
  116. }
  117. .add-item-input span:focus{
  118. cursor: default;
  119. }
  120. .editable-list-container .items-box ul.items-list li.item.add-item{
  121. color: #ddd;
  122. }
  123. .add-item-input span:empty:before{
  124. content: 'New';
  125. position: absolute;
  126. left: 0;
  127. color: #ddd;
  128. }
  129. .add-item-input span:focus:before{
  130. display: none;
  131. }
  132. .typeahead-box{
  133. position: absolute;
  134. left: 0;
  135. margin-top: 5px;
  136. background: white;
  137. border: 1px solid #ebebeb;
  138. z-index: 1000;
  139. min-width: 65px;
  140. }
  141. .typeahead-box ul{
  142. list-style-type: none;
  143. margin: 0;
  144. padding: 0;
  145. }
  146. .typeahead-box ul li{
  147. padding: 3px 5px;
  148. display: block;
  149. cursor: pointer;
  150. }
  151. .typeahead-box ul li.selected, .typeahead-box ul li:hover{
  152. background: #eee;
  153. }
  154. .editable-list-container.disabled .pencil-box{
  155. display: none;
  156. }
  157. .editable-list-container .pencil-box{
  158. position: absolute;
  159. right: 5px;
  160. top: 5px;
  161. opacity: 0;
  162. -webkit-transition: all 0.3s;
  163. -o-transition: all 0.3s;
  164. transition: all 0.3s;
  165. }
  166. .editable-list-container:hover .pencil-box{
  167. opacity: 1;
  168. }
  169. .editable-list-container.edit-mode:hover .pencil-box{
  170. opacity: 0;
  171. }
  172. /*
  173. ------ END editable-list DIRECTIVE SECTION ------ -
  174. */
  175. .tooltip-inner{
  176. word-wrap: break-word;
  177. }
  178. .instances-table{
  179. table-layout: fixed;
  180. }
  181. .description-column{
  182. text-overflow: ellipsis;
  183. overflow: hidden;
  184. white-space: nowrap;
  185. max-width: 100%;
  186. display: inline-block;
  187. }
  188. .paginator{
  189. margin: 0;
  190. }
  191. .mainpage .panel-body{
  192. padding: 20px;
  193. height: 620px;
  194. }
  195. .mainpage h1{
  196. font-size: 24px;
  197. margin-top: 10px;
  198. }
  199. .mainpage .panel-body #main-operations-boxes {
  200. padding: 10px;
  201. }
  202. .mainpage .panel-body #main-operations-boxes .thumbnail{
  203. display: block;
  204. height: 230px;
  205. padding: 8px;
  206. background-color: #eeeeee;
  207. margin-bottom: 20px;
  208. margin-left: 20px;
  209. margin-right: 10px;
  210. border: none;
  211. border-radius: 0px;
  212. }
  213. .mainpage .panel-body #main-operations-boxes .thumbnail .title,
  214. .mainpage .panel-body #main-operations-boxes .thumbnail .description,
  215. .mainpage .panel-body #main-operations-boxes .thumbnail .buttons {
  216. text-align: center;
  217. line-height: 1.5;
  218. }
  219. .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn{
  220. width: 200px;
  221. margin: 5px;
  222. }
  223. .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn.userslist-button,
  224. .mainpage .panel-body #main-operations-boxes .thumbnail .buttons .btn.groupslist-button {
  225. width: 100px;
  226. }
  227. .mainpage .panel-body #main-operations-boxes .thumbnail .glyphicon {
  228. font-size: 50px;
  229. text-align: center;
  230. display: block;
  231. line-height: 1.5;
  232. }
  233. .mainpage .panel-body #main-operations-boxes .col-sm-5 {
  234. width: 43.5%;
  235. }
  236. .views-list-table .panel{
  237. border-radius: 0;
  238. border: none;
  239. margin-top: 0;
  240. }
  241. .views-list-table h4{
  242. font-size: 14px;
  243. }
  244. .views-list-table .panel-group .panel + .panel{
  245. margin-top: 0;
  246. }
  247. .views-list-table .panel-group .panel .panel-heading{
  248. border-radius: 0;
  249. border-top: 1px solid #ddd;
  250. }
  251. .views-list-table .panel-group .panel .panel-heading{
  252. background: #f9f9f9;
  253. }
  254. .views-list-table .panel-group .panel:nth-child(even) .panel-heading{
  255. background: none;
  256. }
  257. .views-list-table .panel-group .panel .panel-heading .panel-title{
  258. font-size: 14px;
  259. font-weight: normal;
  260. cursor: pointer;
  261. }
  262. .views-list-table .panel-group .panel .panel-body{
  263. padding-top: 0;
  264. padding-bottom: 0;
  265. }
  266. .views-list-table .panel-group .panel .panel-body table tr:first-child td{
  267. border-top: none;
  268. }
  269. .views-list-table .glyphicon.glyphicon-chevron-right{
  270. -webkit-transition: all 0.3s;
  271. -o-transition: all 0.3s;
  272. transition: all 0.3s;
  273. }
  274. .views-list-table .glyphicon.glyphicon-chevron-right.opened{
  275. -webkit-transform: rotateZ(90deg);
  276. -ms-transform: rotateZ(90deg);
  277. -o-transform: rotateZ(90deg);
  278. transform: rotateZ(90deg);
  279. }
  280. .ats-switch{
  281. border-color: #333;
  282. }
  283. .ats-switch.disabled, .ats-switch.disabled:hover{
  284. cursor: not-allowed !important;
  285. box-shadow: none!important;
  286. border-color: #ccc!important;
  287. }
  288. .ats-switch.disabled .switch-left, .ats-switch.disabled .switch-right, .ats-switch.disabled .knob{
  289. cursor: not-allowed!important;
  290. }
  291. .hide-soft{
  292. display: none;
  293. }
  294. .visible{
  295. display: block;
  296. }
  297. .not-required{
  298. font-weight: normal;
  299. }
  300. .panel{
  301. box-shadow: none;
  302. border-radius: 0;
  303. }
  304. .views-list-table .panel-group .panel:nth-child(even) .panel-heading{
  305. background: #f9f9f9;
  306. }
  307. .users-pane table .glyphicon{
  308. width: 14px;
  309. }
  310. .settings-edit-toggle.disabled, .properties-toggle.disabled{
  311. color: #999;
  312. cursor: not-allowed;
  313. }
  314. .pulldown2{
  315. -webkit-transform: translateY(2px);
  316. -ms-transform: translateY(2px);
  317. -o-transform: translateY(2px);
  318. transform: translateY(2px);
  319. }
  320. .btn.disabled.syncldapbtn{
  321. pointer-events: auto;
  322. background-color: #e6e6e6;
  323. cursor: not-allowed;
  324. }
  325. .btn.deleteuser-btn.disabled, .btn.deleteuser-btn[disabled], .btn.btn-delete-instance.disabled{
  326. pointer-events: auto;
  327. cursor: not-allowed;
  328. background-color: #e6e6e6;
  329. }
  330. .about .logo{
  331. float: left;
  332. width: 20%;
  333. }
  334. .about .content{
  335. float: left;
  336. }
  337. .about .content .project{
  338. font-weight: bold;
  339. font-size: 2em;
  340. }
  341. .breadcrumb{
  342. background: none;
  343. font-size: 24px;
  344. margin: 0;
  345. padding: 0;
  346. }
  347. .user-edit-panel .ats-switch span.switch-right , .create-user-form .ats-switch span.switch-right{
  348. background-color: #da4f49;
  349. color: white;
  350. }
  351. /*
  352. Style topnav menu
  353. */
  354. #top-nav .navbar.navbar-static-top{
  355. min-height: 40px;
  356. }
  357. #top-nav .navbar-inverse{
  358. background: none;
  359. border: none;
  360. }
  361. #top-nav .navbar.navbar-static-top .navbar-inner {
  362. background-image: -moz-linear-gradient(top, #555555, #333333);
  363. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#333333));
  364. background-image: -webkit-linear-gradient(top, #555555, #333333);
  365. background-image: -o-linear-gradient(top, #555555, #333333);
  366. background-image: linear-gradient(to bottom, #555555, #333333);
  367. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#555555, endColorstr=#333333);
  368. -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  369. -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  370. box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  371. max-height: 40px;
  372. height: 40px;
  373. }
  374. #top-nav .dropdown-toggle.navbar-btn{
  375. margin: 4px 0 0 0;
  376. }
  377. #top-nav .navbar.navbar-static-top .logo {
  378. float: left;
  379. padding-top: 2px;
  380. }
  381. #top-nav .navbar.navbar-static-top .logo img {
  382. height: 32px;
  383. }
  384. #top-nav .navbar.navbar-static-top .brand {
  385. color: #ffffff;
  386. font-size: 16px;
  387. font-weight: normal;
  388. line-height: 32px;
  389. margin-left: 0;
  390. padding: 2px 5px 0 10px;
  391. text-shadow: 0 1px 0 #555555;
  392. display: block;
  393. float: left;
  394. text-decoration: none;
  395. }
  396. #top-nav .navbar.navbar-static-top .brand.cluster-name{
  397. margin-left: 10px;
  398. }
  399. .create-view-form{
  400. padding-bottom: 50px;
  401. }
  402. .create-view-form .description{
  403. display: inline-block;
  404. vertical-align: middle;
  405. }
  406. .create-view-form .description h4 span{
  407. font-weight: normal;
  408. }
  409. .create-view-form .view-header{
  410. }
  411. .left-navbar .panel{
  412. border-radius: 0;
  413. font-size: 15px;
  414. }
  415. .left-navbar .panel-heading {
  416. padding: 8px 15px;
  417. font-weight: bold;
  418. }
  419. .left-navbar .panel-body {
  420. padding: 5px 15px;
  421. }
  422. .left-navbar .panel-body #cluster-name input{
  423. font-size: 17px;
  424. }
  425. .left-navbar .panel-body #cluster-name form{
  426. margin-top: 4px;
  427. margin-bottom: -10px;
  428. }
  429. .left-navbar .panel-body h4 .glyphicon{
  430. font-size: 14px;
  431. }
  432. .left-navbar .panel-body #LDAP-button {
  433. padding: 5px;
  434. }
  435. .left-navbar .panel-body hr{
  436. margin-top: 5px;
  437. margin-bottom: 5px;
  438. }
  439. .left-navbar .panel-body li{
  440. margin: 0 -15px;
  441. }
  442. .left-navbar .panel-body li a{
  443. border-radius: 0;
  444. padding-left: 33px;
  445. padding-top: 8px;
  446. padding-bottom: 8px;
  447. }
  448. .left-navbar .panel-body li.active a{
  449. background: #666;
  450. }
  451. .search-container{
  452. position: relative;
  453. }
  454. .search-container .close{
  455. position: absolute;
  456. right: 10px;
  457. top: 30px;
  458. }
  459. .groups-pane .search-container .close{
  460. top: 30px;
  461. }
  462. .views-list-table .search-container .close{
  463. top: 5px;
  464. right: 50px;
  465. z-index: 10;
  466. }
  467. .views-list-pane .search-container .close{
  468. right: 50px;
  469. top: 5px;
  470. z-index: 100;
  471. }
  472. .groups-pane table thead th{
  473. border-top: 0;
  474. }
  475. .groups-pane table thead tr:first-child th{
  476. border: 0;
  477. }
  478. .container{
  479. padding-left: 0;
  480. width: 940px;
  481. }
  482. @media (min-width: 1200px) {
  483. .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container{
  484. width: 1130px;
  485. }
  486. .container{
  487. width: 1170px;
  488. }
  489. .mainpage .panel-body #main-operations-boxes .col-sm-5 {
  490. width: 44%;
  491. }
  492. }
  493. ul.nav li > a{
  494. cursor: pointer;
  495. }
  496. .admin-filter{
  497. cursor: pointer;
  498. }
  499. .glyphicon-flash.no-filter{
  500. color: #999;
  501. }
  502. .top-buffer{
  503. padding-top: 20px;
  504. }
  505. .bottom-buffer{
  506. padding-bottom: 20px;
  507. }
  508. .right-buffer{
  509. padding-right: 20px;
  510. }
  511. .right-margin{
  512. margin-right: 20px;
  513. }
  514. .left-margin{
  515. margin-left: 10px;
  516. }
  517. .bottom-margin{
  518. margin-bottom: 10px;
  519. }
  520. .top-margin{
  521. margin-top: 10px;
  522. }
  523. .text-left{
  524. text-align: left !important;
  525. }
  526. .text-center{
  527. text-align: center!important;
  528. }
  529. .padding-top-7{
  530. padding-top: 7px;
  531. }
  532. .padding-left-30{
  533. padding-left: 30px;
  534. }
  535. .no-margin-bottom{
  536. margin-bottom: 0!important;
  537. }
  538. table.no-border tr td{
  539. border: none;
  540. }
  541. .no-border{
  542. border: none !important;
  543. }
  544. .top-margin-4{
  545. margin-top: 4px;
  546. }
  547. .table > thead > tr > th.vertical-top{
  548. vertical-align: top;
  549. }
  550. .groups-pane table ul{
  551. list-style-type: none;
  552. margin: 0;
  553. padding: 0;
  554. }
  555. .groups-pane table ul li {
  556. margin: 0;
  557. padding: 0;
  558. }
  559. .views-list-pane{}
  560. .views-list-pane .panel-body table{
  561. margin-bottom: 0;
  562. }
  563. .views-list-pane .panel-body table tbody td{
  564. border-top: none;
  565. vertical-align: middle;
  566. }
  567. .group-edit .users button.close , .remove-button{
  568. float: none;
  569. -webkit-transform: translateY(1px);
  570. -ms-transform: translateY(1px);
  571. -o-transform: translateY(1px);
  572. transform: translateY(1px);
  573. }
  574. .cluster-manage-access-pane .well, .views-permissions-panel .well{
  575. min-height: 63px;
  576. }
  577. .views-list-pane accordion .panel-group .panel-heading{
  578. cursor: pointer;
  579. }
  580. .btn {
  581. display: inline-block;
  582. *display: inline;
  583. padding: 4px 14px;
  584. margin-bottom: 0;
  585. *margin-left: .3em;
  586. font-size: 14px;
  587. line-height: 20px;
  588. *line-height: 20px;
  589. color: #333333;
  590. text-align: center;
  591. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  592. vertical-align: middle;
  593. cursor: pointer;
  594. background-color: #f5f5f5;
  595. *background-color: #e6e6e6;
  596. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  597. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  598. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  599. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  600. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  601. background-repeat: repeat-x;
  602. border: 1px solid #bbbbbb;
  603. *border: 0;
  604. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  605. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  606. border-bottom-color: #a2a2a2;
  607. -webkit-border-radius: 4px;
  608. -moz-border-radius: 4px;
  609. border-radius: 4px;
  610. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  611. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  612. *zoom: 1;
  613. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  614. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  615. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  616. }
  617. .btn:hover,
  618. .btn:active,
  619. .btn.active,
  620. .btn.disabled,
  621. .btn[disabled] {
  622. color: #333333;
  623. background-color: #e6e6e6;
  624. *background-color: #d9d9d9;
  625. }
  626. .btn:active,
  627. .btn.active {
  628. background-color: #cccccc \9;
  629. }
  630. .btn:first-child {
  631. *margin-left: 0;
  632. }
  633. .btn:hover {
  634. color: #333333;
  635. text-decoration: none;
  636. background-color: #e6e6e6;
  637. *background-color: #d9d9d9;
  638. /* Buttons in IE7 don't get borders, so darken on hover */
  639. background-position: 0 -15px;
  640. -webkit-transition: background-position 0.1s linear;
  641. -moz-transition: background-position 0.1s linear;
  642. -o-transition: background-position 0.1s linear;
  643. transition: background-position 0.1s linear;
  644. }
  645. .btn:focus {
  646. outline: thin dotted #333;
  647. outline: 5px auto -webkit-focus-ring-color;
  648. outline-offset: -2px;
  649. }
  650. .btn.active,
  651. .btn:active {
  652. background-color: #e6e6e6;
  653. background-color: #d9d9d9 \9;
  654. background-image: none;
  655. outline: 0;
  656. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  657. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  658. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  659. }
  660. .btn.disabled,
  661. .btn[disabled] {
  662. cursor: default;
  663. background-color: #e6e6e6;
  664. background-image: none;
  665. opacity: 0.65;
  666. filter: alpha(opacity=65);
  667. -webkit-box-shadow: none;
  668. -moz-box-shadow: none;
  669. box-shadow: none;
  670. }
  671. .btn-primary.active,
  672. .btn-warning.active,
  673. .btn-danger.active,
  674. .btn-success.active,
  675. .btn-info.active,
  676. .btn-inverse.active {
  677. color: rgba(255, 255, 255, 0.75);
  678. }
  679. .btn {
  680. border-color: #c5c5c5;
  681. border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
  682. }
  683. .btn-primary {
  684. color: #ffffff;
  685. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  686. background-color: #006dcc;
  687. *background-color: #0044cc;
  688. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  689. background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  690. background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  691. background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  692. background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  693. background-repeat: repeat-x;
  694. border-color: #0044cc #0044cc #002a80;
  695. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  696. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  697. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  698. }
  699. .btn-primary:hover,
  700. .btn-primary:active,
  701. .btn-primary.active,
  702. .btn-primary.disabled,
  703. .btn-primary[disabled] {
  704. color: #ffffff;
  705. background-color: #0044cc;
  706. *background-color: #003bb3;
  707. }
  708. .btn-primary:active,
  709. .btn-primary.active {
  710. background-color: #003399 \9;
  711. }
  712. .btn-warning {
  713. color: #ffffff;
  714. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  715. background-color: #faa732;
  716. *background-color: #f89406;
  717. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  718. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  719. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  720. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  721. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  722. background-repeat: repeat-x;
  723. border-color: #f89406 #f89406 #ad6704;
  724. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  725. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  726. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  727. }
  728. .btn-warning:hover,
  729. .btn-warning:active,
  730. .btn-warning.active,
  731. .btn-warning.disabled,
  732. .btn-warning[disabled] {
  733. color: #ffffff;
  734. background-color: #f89406;
  735. *background-color: #df8505;
  736. }
  737. .btn-warning:active,
  738. .btn-warning.active {
  739. background-color: #c67605 \9;
  740. }
  741. .btn-danger {
  742. color: #ffffff;
  743. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  744. background-color: #da4f49;
  745. *background-color: #bd362f;
  746. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  747. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  748. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  749. background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  750. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  751. background-repeat: repeat-x;
  752. border-color: #bd362f #bd362f #802420;
  753. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  754. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  755. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  756. }
  757. .btn-danger:hover,
  758. .btn-danger:active,
  759. .btn-danger.active,
  760. .btn-danger.disabled,
  761. .btn-danger[disabled] {
  762. color: #ffffff;
  763. background-color: #bd362f;
  764. *background-color: #a9302a;
  765. }
  766. .btn-danger:active,
  767. .btn-danger.active {
  768. background-color: #942a25 \9;
  769. }
  770. .btn-success {
  771. color: #ffffff;
  772. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  773. background-color: #5bb75b;
  774. *background-color: #51a351;
  775. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  776. background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  777. background-image: -o-linear-gradient(top, #62c462, #51a351);
  778. background-image: linear-gradient(to bottom, #62c462, #51a351);
  779. background-image: -moz-linear-gradient(top, #62c462, #51a351);
  780. background-repeat: repeat-x;
  781. border-color: #51a351 #51a351 #387038;
  782. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  783. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  784. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  785. }
  786. .btn-success:hover,
  787. .btn-success:active,
  788. .btn-success.active,
  789. .btn-success.disabled,
  790. .btn-success[disabled] {
  791. color: #ffffff;
  792. background-color: #51a351;
  793. *background-color: #499249;
  794. }
  795. .btn-success:active,
  796. .btn-success.active {
  797. background-color: #408140 \9;
  798. }
  799. .btn-info {
  800. color: #ffffff;
  801. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  802. background-color: #49afcd;
  803. *background-color: #2f96b4;
  804. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  805. background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  806. background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  807. background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  808. background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  809. background-repeat: repeat-x;
  810. border-color: #2f96b4 #2f96b4 #1f6377;
  811. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  812. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  813. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  814. }
  815. .btn-info:hover,
  816. .btn-info:active,
  817. .btn-info.active,
  818. .btn-info.disabled,
  819. .btn-info[disabled] {
  820. color: #ffffff;
  821. background-color: #2f96b4;
  822. *background-color: #2a85a0;
  823. }
  824. .btn-info:active,
  825. .btn-info.active {
  826. background-color: #24748c \9;
  827. }
  828. .btn-inverse {
  829. color: #ffffff;
  830. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  831. background-color: #363636;
  832. *background-color: #222222;
  833. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  834. background-image: -webkit-linear-gradient(top, #444444, #222222);
  835. background-image: -o-linear-gradient(top, #444444, #222222);
  836. background-image: linear-gradient(to bottom, #444444, #222222);
  837. background-image: -moz-linear-gradient(top, #444444, #222222);
  838. background-repeat: repeat-x;
  839. border-color: #222222 #222222 #000000;
  840. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  841. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  842. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  843. }
  844. .btn-inverse:hover,
  845. .btn-inverse:active,
  846. .btn-inverse.active,
  847. .btn-inverse.disabled,
  848. .btn-inverse[disabled] {
  849. color: #ffffff;
  850. background-color: #222222;
  851. *background-color: #151515;
  852. }
  853. .btn-inverse:active,
  854. .btn-inverse.active {
  855. background-color: #080808 \9;
  856. }
  857. button.btn,
  858. input[type="submit"].btn {
  859. *padding-top: 3px;
  860. *padding-bottom: 3px;
  861. }
  862. button.btn::-moz-focus-inner,
  863. input[type="submit"].btn::-moz-focus-inner {
  864. padding: 0;
  865. border: 0;
  866. }
  867. button.btn.btn-large,
  868. input[type="submit"].btn.btn-large {
  869. *padding-top: 7px;
  870. *padding-bottom: 7px;
  871. }
  872. button.btn.btn-small,
  873. input[type="submit"].btn.btn-small {
  874. *padding-top: 3px;
  875. *padding-bottom: 3px;
  876. }
  877. button.btn.btn-mini,
  878. input[type="submit"].btn.btn-mini {
  879. *padding-top: 1px;
  880. *padding-bottom: 1px;
  881. }
  882. button.btn.btn-xs{
  883. padding: 1px 5px;
  884. font-size: 12px;
  885. line-height: 1.5;
  886. border-radius: 3px;
  887. }
  888. .alert-info {
  889. background-color: #E6F1F6;
  890. border-color: #D2D9DD;
  891. color: #4E575B;
  892. text-shadow: none;
  893. }
  894. .alert-info .link {
  895. padding: 0 15px;
  896. }
  897. .alert-info .link-left-pad {
  898. padding-left: 15px;
  899. }
  900. .breadcrumb > .active {
  901. color: #666;
  902. }
  903. .edit-cluster-name {
  904. cursor: pointer;
  905. }
  906. .edit-cluster-name:hover {
  907. color: #428bca;
  908. }
  909. .editClusterNameForm button.btn {
  910. padding: 4px 8px;
  911. }
  912. .editClusterNameForm input {
  913. width: 161px;
  914. float: left;
  915. margin-right: 5px;
  916. }
  917. .no-animation *{
  918. -webkit-transition: none!important;
  919. -o-transition: none!important;
  920. transition: none!important;
  921. }