workflow-editor.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  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. .dropdown-menu li {
  17. font-size: 14px;
  18. }
  19. .dropdown a.dropdown-toggle {
  20. padding-left: 10px;
  21. padding-right: 10px;
  22. }
  23. .search-bar {
  24. background-color: #F5F5F5;
  25. border-bottom: 1px solid #e3e3e3;
  26. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  27. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  28. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  29. margin: 0;
  30. padding: 10px;
  31. padding-left: 20px;
  32. padding-right: 20px;
  33. text-align: left;
  34. width: 100%;
  35. position: fixed;
  36. top: 28px;
  37. z-index: 1000;
  38. }
  39. .search-bar input {
  40. margin-left: 10px;
  41. padding-right: 20px;
  42. }
  43. .search-bar ul li {
  44. text-align: right;
  45. }
  46. .sort-by {
  47. font-size: 11px;
  48. height: 24px;
  49. width: 120px;
  50. margin-top: -2px;
  51. }
  52. .nav-header {
  53. padding-left: 0 !important;
  54. padding-top: 8px;
  55. }
  56. .facet-list {
  57. list-style: none outside none;
  58. padding: 0;
  59. margin: 0;
  60. }
  61. .facet-list li {
  62. padding-left: 8px;
  63. padding-right: 3px;
  64. }
  65. .facet-list li a {
  66. word-wrap: break-word;
  67. }
  68. .counter {
  69. color: #999999;
  70. font-size: 13px;
  71. }
  72. .pagination {
  73. border-radius: 4px 4px 4px 4px;
  74. list-style: none outside none;
  75. margin: 0 0 20px;
  76. padding: 8px 15px;
  77. }
  78. .results.container {
  79. width: 1180px;
  80. }
  81. .results.span2 {
  82. width: 180px;
  83. }
  84. .results.span10 {
  85. width: 980px;
  86. }
  87. .results.span12 {
  88. width: 1180px;
  89. }
  90. .errorlist {
  91. display: none;
  92. }
  93. .breadcrumb {
  94. background-color: #FFFFFF;
  95. padding-left: 0;
  96. margin-bottom: 0;
  97. }
  98. #result-container {
  99. margin-top: 20px;
  100. }
  101. .facetItem {
  102. display: none;
  103. }
  104. .selectMask {
  105. background-color: #F9F9F9;
  106. background-image: linear-gradient(to bottom, #FFFFFF, #F1F1F1);
  107. background-repeat: repeat-x;
  108. border: 1px solid #C0C0C0;
  109. border-right-color: rgba(0, 0, 0, 0.1);
  110. border-radius: 2px;
  111. border-bottom-right-radius: 0;
  112. border-top-right-radius: 0;
  113. box-shadow: none;
  114. color: #444444;
  115. display: inline-block;
  116. font-size: 13px;
  117. height: 29px;
  118. line-height: 29px;
  119. margin: 0;
  120. margin-left: 5px;
  121. min-height: 29px;
  122. min-width: 120px;
  123. padding: 0 8px;
  124. text-shadow: none;
  125. vertical-align: middle;
  126. overflow: hidden;
  127. text-overflow: ellipsis;
  128. }
  129. .download-btn-group {
  130. min-width: auto;
  131. }
  132. .download-btn-group > ul > li {
  133. text-align: left;
  134. }
  135. .fields-chooser li {
  136. cursor: pointer;
  137. margin-bottom: 10px;
  138. }
  139. .fields-chooser li .badge {
  140. font-weight: normal;
  141. font-size: 12px;
  142. }
  143. .badge-left {
  144. border-radius: 9px 0px 0px 9px;
  145. padding-right: 5px;
  146. }
  147. .badge-right {
  148. border-radius: 0px 9px 9px 0px;
  149. padding-left: 5px;
  150. }
  151. .trash-filter {
  152. cursor: pointer;
  153. }
  154. .CodeMirror {
  155. border: 1px dotted #DDDDDD;
  156. }
  157. [contenteditable=true] {
  158. border: 1px dotted #DDDDDD;
  159. outline: 0;
  160. margin-top: 20px;
  161. margin-bottom: 20px;
  162. min-height: 150px;
  163. }
  164. [contenteditable=true] [class*="span"], .tmpl [class*="span"] {
  165. background-color: #eee;
  166. -webkit-border-radius: 3px;
  167. -moz-border-radius: 3px;
  168. border-radius: 3px;
  169. min-height: 40px;
  170. line-height: 40px;
  171. background-color: #F3F3F3;
  172. border: 2px dotted #DDD;
  173. }
  174. .tmpl {
  175. margin: 10px;
  176. height: 60px;
  177. }
  178. .tmpl [class*="span"] {
  179. color: #999;
  180. font-size: 12px;
  181. text-align: center;
  182. font-weight: bold;
  183. }
  184. .editor-title {
  185. font-weight: bold;
  186. color: #262626;
  187. border-bottom: 1px solid #338bb8;
  188. }
  189. .document-details {
  190. background-color: #F6F6F6;
  191. padding: 10px;
  192. border: 1px solid #e5e5e5;
  193. }
  194. .result-row:nth-child(even) {
  195. background-color: #F6F6F6;
  196. }
  197. .result-row td {
  198. white-space: nowrap;
  199. padding: 3px;
  200. }
  201. #result-container thead tr {
  202. border-bottom: 1px solid #e5e5e5;
  203. }
  204. .demi-modal {
  205. min-height: 80px;
  206. }
  207. .filter-box {
  208. float: left;
  209. margin-right: 10px;
  210. margin-bottom: 10px;
  211. background-color: #F6F6F6;
  212. padding: 5px;
  213. border: 1px solid #d8d8d8;
  214. -webkit-border-radius: 3px;
  215. -moz-border-radius: 3px;
  216. border-radius: 3px;
  217. }
  218. .field-selector {
  219. display: inline-block;
  220. margin-left: 3px;
  221. min-height: 20px;
  222. line-height: 20px
  223. }
  224. .field-selector.hoverable {
  225. cursor: pointer;
  226. }
  227. .field-selector.hoverable:hover {
  228. background-color: #DDD;
  229. }
  230. .draggable-widget, .draggable-icon {
  231. cursor: move;
  232. background-color: #FFF;
  233. }
  234. .chosen-container .chosen-results li {
  235. text-align: left;
  236. }
  237. #emptyDashboard {
  238. right: 70px !important;
  239. }
  240. .drop-target {
  241. background-color: #F6F6F6;
  242. min-height: 20px;
  243. border: 2px dotted #DDD;
  244. text-align: center;
  245. padding: 4px;
  246. }
  247. .drop-target-dragging {
  248. background-color: #F0F0F0;
  249. border-color: #DDD;
  250. }
  251. .ui-sortable.drop-target {
  252. min-height: 20px;
  253. }
  254. .drop-target-highlight {
  255. min-height: 20px;
  256. background-color: #CCC;
  257. border-color: #BBB;
  258. }
  259. .drop-target-disabled {
  260. background-color: #FFFFFF;
  261. border-color: #FFFFFF;
  262. }
  263. .drop-target-side {
  264. min-height: 100px;
  265. height: 100%;
  266. }
  267. .dashboard .row-fluid .span10.readonly {
  268. width: 100%;
  269. margin-left: 0;
  270. }
  271. .dashboard .row-fluid .span1.readonly {
  272. width: 0;
  273. height: 0;
  274. }
  275. .readonly .card-widget {
  276. border: 1px solid #d8d8d8 !important;
  277. }
  278. .row-fluid [class*="span"] {
  279. margin-left: 0.5%;
  280. }
  281. .row-fluid .span10 {
  282. width: 90%;
  283. }
  284. .row-fluid .span1 {
  285. width: 4.5%;
  286. }
  287. .card-widget {
  288. position: relative;
  289. overflow-x: auto;
  290. border: 1px solid #d8d8d8 !important;
  291. }
  292. .card-widget h2, .card-widget .card-body {
  293. min-width: 240px;
  294. }
  295. #exposeOverlay {
  296. background-color: #000;
  297. opacity: 0.3;
  298. display: none;
  299. width: 100%;
  300. height: 100%;
  301. position: fixed;
  302. top: 0;
  303. left: 0;
  304. z-index: 1031;
  305. }
  306. .card-column-disabled {
  307. background-color: #f1f1f1;
  308. }
  309. .widget-icon {
  310. color: #338bb8;
  311. height: 16px;
  312. width: 16px;
  313. margin-left: 3px;
  314. margin-right: 3px;
  315. }
  316. .advanced-triangle-container {
  317. position: absolute;
  318. right: 0;
  319. }
  320. .advanced-triangle {
  321. width: 0;
  322. height: 0;
  323. border-style: solid;
  324. border-width: 0 40px 40px 0;
  325. border-color: transparent #338bb8 transparent transparent;
  326. cursor: pointer;
  327. }
  328. .advanced-triangle a {
  329. color: #FFFFFF;
  330. padding-left: 20px;
  331. padding-top: 4px;
  332. }
  333. .card-widget h6 {
  334. text-transform: uppercase;
  335. color: #338bb8;
  336. margin-bottom: 1px;
  337. }
  338. .card-widget h6.field-title {
  339. margin-bottom: 0;
  340. padding-left: 4px;
  341. }
  342. .widget-main-section {
  343. overflow-y: auto;
  344. overflow-x: hidden;
  345. max-height: 350px;
  346. }
  347. .row-fluid .offset3andhalf:first-child {
  348. margin-left: 29%;
  349. }
  350. .row-container.is-editing {
  351. border: none !important;
  352. }
  353. .row-fluid .span4 {
  354. width: 33%;
  355. }
  356. .dashboard {
  357. margin-top: 50px;
  358. }
  359. .dashboard.readonly {
  360. margin-top: 0;
  361. }
  362. .big-icon {
  363. color: #DDD;
  364. font-size: 40px;
  365. text-align: center;
  366. padding: 5px;
  367. }
  368. body {
  369. background-color: #FFFFFF;
  370. }
  371. .ui-sortable {
  372. min-height: 10px !important;
  373. }
  374. .row-container {
  375. min-height: 10px !important;;
  376. }
  377. input[type="text"].filechooser-input {
  378. border-right: none;
  379. margin-bottom: 0;
  380. }
  381. input[type="text"].filechooser-input, input[type="text"].half {
  382. width: 50%;
  383. }
  384. input[type="text"].seventy {
  385. width: 70%;
  386. }
  387. .fileChooserBtn {
  388. height: 31px;
  389. }
  390. #settingsModal h4 {
  391. margin-top: 30px;
  392. }
  393. #settingsModal ul.unstyled li {
  394. margin-bottom: 4px;
  395. }
  396. .card-column {
  397. min-height: 200px !important;
  398. }
  399. .readonly .card {
  400. margin-bottom: 15px;
  401. }
  402. .readonly .card-column {
  403. min-height: 5px !important;
  404. }
  405. .readonly .drop-target-side {
  406. min-height: 10px!important;
  407. height: 10px!important;
  408. }
  409. textarea {
  410. resize: none;
  411. }
  412. .span4.readonly {
  413. margin-left: 1px;
  414. }
  415. em {
  416. font-weight: normal;
  417. background-color: #FFFFFF;
  418. }
  419. .properties ul li {
  420. margin-bottom: 3px;
  421. }
  422. .widget-main-section .nav-tabs {
  423. margin-bottom: 10px;
  424. }
  425. .widget-main-section .tab-content {
  426. min-height: 200px;
  427. }
  428. .widget-main-section .tab-content h6:first-child {
  429. margin-top: 0;
  430. }
  431. #addActionDemiModal {
  432. position: absolute;
  433. margin-left: 0;
  434. border: 1px solid #d8d8d8;
  435. border-top: none;
  436. }
  437. #addActionDemiModal input, #addActionDemiModal select {
  438. margin-bottom: 0;
  439. }
  440. canvas {
  441. pointer-events: none;
  442. }
  443. ul.unstyled li {
  444. white-space: nowrap;
  445. }
  446. #file-uploader {
  447. float: left;
  448. margin-right: 3px;
  449. margin-top: 10px;
  450. }
  451. .qq-upload-button {
  452. display: inline-block;
  453. height: 29px;
  454. min-height: 29px;
  455. padding: 0 8px;
  456. margin: 0;
  457. font-size: 13px;
  458. font-weight: bold;
  459. line-height: 29px;
  460. color: #444;
  461. text-align: center;
  462. text-shadow: none;
  463. vertical-align: middle;
  464. cursor: pointer;
  465. background-color: #f9f9f9;
  466. background-image: -moz-linear-gradient(top,#fff,#f1f1f1);
  467. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f1f1f1));
  468. background-image: -webkit-linear-gradient(top,#fff,#f1f1f1);
  469. background-image: -o-linear-gradient(top,#fff,#f1f1f1);
  470. background-image: linear-gradient(to bottom,#fff,#f1f1f1);
  471. background-repeat: repeat-x;
  472. border: 1px solid rgba(0,0,0,0.1);
  473. border-color: #f1f1f1 #f1f1f1 #cbcbcb;
  474. border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  475. border-color: rgba(0,0,0,0.1);
  476. -webkit-border-radius: 2px;
  477. -moz-border-radius: 2px;
  478. border-radius: 2px;
  479. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff1f1f1',GradientType=0);
  480. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  481. -webkit-box-shadow: none;
  482. -moz-box-shadow: none;
  483. box-shadow: none;
  484. }