workflow-editor.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. Licensed to Cloudera, Inc. under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. Cloudera, Inc. 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. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. .draggable-widget, .draggable-icon {
  17. cursor: move;
  18. background-color: #FFF;
  19. }
  20. #emptyDashboard {
  21. right: 70px !important;
  22. }
  23. .drop-target {
  24. background-color: #F6F6F6;
  25. min-height: 20px;
  26. border: 2px dotted #DDD;
  27. text-align: center;
  28. padding: 4px;
  29. }
  30. .drop-target-dragging {
  31. background-color: #F0F0F0;
  32. border-color: #DDD;
  33. }
  34. .ui-sortable.drop-target {
  35. min-height: 20px;
  36. }
  37. .drop-target-highlight {
  38. min-height: 20px;
  39. background-color: #CCC;
  40. border-color: #BBB;
  41. }
  42. .drop-target-disabled {
  43. background-color: #FFFFFF;
  44. border-color: #FFFFFF;
  45. }
  46. .drop-target-side {
  47. min-height: 100px;
  48. height: 100%;
  49. }
  50. .dashboard .row-fluid .span10.readonly {
  51. width: 100%;
  52. margin-left: 0;
  53. }
  54. .dashboard .row-fluid .span1.readonly {
  55. width: 0;
  56. height: 0;
  57. }
  58. .readonly .card-widget {
  59. border: 1px solid #d8d8d8 !important;
  60. }
  61. .row-fluid [class*="span"] {
  62. margin-left: 0.5%;
  63. }
  64. .dashboard .row-fluid .span10 {
  65. width: 90%;
  66. }
  67. .dashboard .row-fluid .span1 {
  68. width: 4.5%;
  69. }
  70. .card-widget {
  71. position: relative;
  72. z-index: 11;
  73. overflow-x: auto;
  74. border: 1px solid #d8d8d8 !important;
  75. }
  76. .card-widget h2, .card-widget .card-body {
  77. min-width: 240px;
  78. }
  79. #exposeOverlay {
  80. background-color: #000;
  81. opacity: 0.3;
  82. display: none;
  83. width: 100%;
  84. height: 100%;
  85. position: fixed;
  86. top: 0;
  87. left: 0;
  88. z-index: 1031;
  89. }
  90. .card-column-disabled {
  91. background-color: #f1f1f1;
  92. }
  93. .widget-icon {
  94. color: #338bb8;
  95. height: 16px;
  96. width: 16px;
  97. margin-left: 3px;
  98. margin-right: 3px;
  99. }
  100. .advanced-triangle-container {
  101. position: absolute;
  102. right: 0;
  103. }
  104. .advanced-triangle {
  105. width: 0;
  106. height: 0;
  107. border-style: solid;
  108. border-width: 0 40px 40px 0;
  109. border-color: transparent #338bb8 transparent transparent;
  110. cursor: pointer;
  111. }
  112. .advanced-triangle a {
  113. color: #FFFFFF;
  114. padding-left: 20px;
  115. padding-top: 4px;
  116. }
  117. .card-widget h6 {
  118. text-transform: uppercase;
  119. color: #338bb8;
  120. margin-bottom: 1px;
  121. }
  122. .card-widget h6.field-title {
  123. margin-bottom: 0;
  124. padding-left: 4px;
  125. }
  126. .widget-main-section {
  127. overflow-y: auto;
  128. overflow-x: hidden;
  129. max-height: 350px;
  130. }
  131. .row-fluid .offset3andhalf:first-child {
  132. margin-left: 29%;
  133. }
  134. .row-container.is-editing {
  135. border: none !important;
  136. }
  137. .row-fluid .span4 {
  138. width: 33%;
  139. }
  140. .dashboard {
  141. margin-top: 50px;
  142. }
  143. .dashboard.readonly {
  144. margin-top: 0;
  145. }
  146. .big-icon {
  147. color: #DDD;
  148. font-size: 40px;
  149. text-align: center;
  150. padding: 5px;
  151. }
  152. .ui-sortable {
  153. min-height: 10px !important;
  154. }
  155. .row-container {
  156. min-height: 10px !important;;
  157. }
  158. .card-column {
  159. min-height: 200px !important;
  160. }
  161. .readonly .card {
  162. margin-bottom: 15px;
  163. }
  164. .readonly .card-column {
  165. min-height: 5px !important;
  166. }
  167. .readonly .drop-target-side {
  168. min-height: 10px !important;
  169. height: 10px !important;
  170. }
  171. textarea {
  172. resize: none;
  173. }
  174. .span4.readonly {
  175. margin-left: 1px;
  176. }
  177. em {
  178. font-weight: normal;
  179. background-color: #FFFFFF;
  180. }
  181. .properties ul li {
  182. margin-bottom: 3px;
  183. }
  184. .widget-main-section .nav-tabs {
  185. margin-bottom: 10px;
  186. }
  187. .widget-main-section .tab-content {
  188. min-height: 200px;
  189. }
  190. .widget-main-section .tab-content h6:first-child {
  191. margin-top: 0;
  192. }
  193. #addActionDemiModal {
  194. position: absolute;
  195. margin-left: 0;
  196. border: 1px solid #d8d8d8;
  197. border-top: none;
  198. }
  199. #addActionDemiModal input, #addActionDemiModal select {
  200. margin-bottom: 0;
  201. }
  202. canvas {
  203. pointer-events: none;
  204. z-index: 10;
  205. }
  206. ul.unstyled li {
  207. white-space: nowrap;
  208. }
  209. .widget-statusbar {
  210. height: 2px;
  211. border-radius: 3px;
  212. border-top-right-radius: 0;
  213. border-top-left-radius: 0;
  214. width: 0;
  215. -webkit-transition: width .6s ease;
  216. -moz-transition: width .6s ease;
  217. -o-transition: width .6s ease;
  218. transition: width .6s ease;
  219. }
  220. .widget-statusbar-running {
  221. background-color: #fbb450;
  222. }
  223. .widget-statusbar-failed {
  224. background-color: #c13e2c;
  225. }
  226. .widget-statusbar-success {
  227. background-color: #2f973f;
  228. }
  229. .widget-running {
  230. opacity: .5;
  231. }