application.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. html, body {
  19. height: 100%;
  20. }
  21. #wrapper {
  22. min-height: 100%;
  23. }
  24. @footer-height: 100px;
  25. #main {
  26. overflow: auto;
  27. padding-bottom: @footer-height;
  28. }
  29. footer {
  30. position: relative;
  31. border-top: 1px solid #e5e5e5;
  32. padding: 30px 0;
  33. background-color: #fff;
  34. color: #666666;
  35. margin-top: -1 * @footer-height;
  36. height: @footer-height - 60px;
  37. }
  38. #content {
  39. padding: 40px 0;
  40. }
  41. @green: #69BE28;
  42. h1 {
  43. color: @green;
  44. }
  45. .login.well.span4 {
  46. margin: 20px auto;
  47. padding: 25px;
  48. float: none;
  49. }
  50. .login {
  51. h2 {
  52. margin-top: 0;
  53. margin-bottom: 20px;
  54. }
  55. .btn {
  56. margin-top: 15px;
  57. }
  58. }
  59. #installer {
  60. h2 {
  61. margin-top: 0;
  62. }
  63. .btn.btn-success {
  64. /* float: right; */
  65. }
  66. .btn-area {
  67. margin-top: 20px;
  68. }
  69. #installer-content {
  70. padding: 25px;
  71. background-color: #fff;
  72. }
  73. #step4, #step6 {
  74. a.selected {
  75. color: #333;
  76. }
  77. a.deselected {
  78. }
  79. }
  80. #serviceConfig {
  81. .accordion-heading {
  82. background-color: #f0f0f0;
  83. }
  84. .accordion-group {
  85. margin-bottom: 20px;
  86. .control-group {
  87. margin: 10px 0;
  88. }
  89. form {
  90. margin-bottom: 0;
  91. }
  92. }
  93. .badge {
  94. margin-left: 4px;
  95. }
  96. .add-slave-component-group {
  97. margin-bottom: 20px;
  98. }
  99. .master-host, .master-hosts, .slave-hosts {
  100. padding-top: 5px;
  101. line-height: 20px;
  102. }
  103. #attention {
  104. margin: 20px 0;
  105. }
  106. .retyped-password {
  107. margin-left: 14px;
  108. }
  109. #slave-hosts-popup {
  110. ul {
  111. list-style-type: none;
  112. }
  113. }
  114. }
  115. }
  116. a:focus {
  117. outline: none;
  118. }
  119. /*assign masters*/
  120. .assign-masters {
  121. .select-hosts{
  122. width:50%;
  123. float:left;
  124. white-space:nowrap;
  125. }
  126. .round-corners{
  127. border-radius: 8px;
  128. -webkit-border-radius: 8px;
  129. -moz-border-radius: 8px;
  130. }
  131. .host-assignments{
  132. float:right;
  133. width:45%;
  134. }
  135. .remaining-hosts{
  136. padding:25px;
  137. border-top:solid 1px #cccccc;
  138. border-left:solid 1px #cccccc;
  139. border-right:groove 5px #cccccc;
  140. border-bottom:groove 5px #cccccc;
  141. margin-top:20px;
  142. background-color: #FCF8E3;
  143. color: #C09853;
  144. }
  145. .host-assignments .mapping-box{
  146. border:solid 1px #cccccc;
  147. padding: 8px;
  148. margin-bottom:10px;
  149. background-color: #FFFAFA;
  150. }
  151. .host-assignments .assignedService{
  152. padding:5px;
  153. border:solid 1px #cccccc;
  154. margin:2px;
  155. background-color: #69BE28;
  156. color:white;
  157. white-space: nowrap;
  158. font-size: 0.9em;
  159. }
  160. .form-horizontal .controls {
  161. margin-left: 110px;
  162. }
  163. .form-horizontal .control-label {
  164. width:100px;
  165. }
  166. .form-horizontal .control-group select {
  167. width:75%;
  168. min-width:100px;
  169. max-width:250px;
  170. }
  171. .hostString{
  172. margin-bottom: 5px;
  173. }
  174. .controls .badge{
  175. background-color: #ADC299;
  176. color: #ffffff;
  177. cursor: pointer;
  178. font-weight: bold;
  179. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  180. }
  181. .assign-master .controls .badge:hover{
  182. background-color: #99B280;
  183. }
  184. .alertFlag{
  185. font-size: 1.3em;
  186. color: #B94A48;
  187. font-weight: bold;
  188. vertical-align: middle;
  189. }
  190. }
  191. /*end assign masters*/