workflow.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. ul {
  2. list-style-type: none;
  3. }
  4. #modal-window .modal-content {
  5. height: 300px;
  6. overflow: auto;
  7. }
  8. #node-modal {
  9. width: auto;
  10. }
  11. #node-modal .modal-content {
  12. background: white;
  13. max-height: 500px;
  14. overflow-x: hidden;
  15. overflow-y: scroll;
  16. padding: 5px;
  17. }
  18. .action {
  19. border: 1px solid #DDD;
  20. padding: 0px;
  21. -webkit-border-radius: 4px;
  22. -moz-border-radius: 4px;
  23. border-radius: 4px;
  24. }
  25. .action h4 {
  26. margin-bottom: 1px;
  27. }
  28. .node-action {
  29. background: #FFF url(/oozie/static/art/action.png) no-repeat 10px 10px;
  30. }
  31. .node-fork {
  32. background: #FFF url(/oozie/static/art/fork.png) no-repeat 10px 10px;
  33. }
  34. .node-join {
  35. background: #FFF url(/oozie/static/art/join.png) no-repeat 10px 10px;
  36. }
  37. .node-decision {
  38. background: #FFF url(/oozie/static/art/decision.png) no-repeat 10px 10px;
  39. }
  40. .node-decisionend {
  41. background: #FFF url(/oozie/static/art/decision_end.png) no-repeat 10px 10px;
  42. }
  43. .node-link {
  44. border: 1px dashed #DDD;
  45. margin: 10px;
  46. background: url(/oozie/static/art/droppable.png) no-repeat 50% 50%;
  47. }
  48. .node-description {
  49. padding-top: 10px;
  50. }
  51. .node-action-bar {
  52. background-color: #EEE;
  53. padding-top: 5px;
  54. margin-top: 10px;
  55. -webkit-box-shadow: inset 0px 3px 5px 0px #DDD;
  56. box-shadow: inset 0px 3px 5px 0px #DDD;
  57. }
  58. #graph, #new-node {
  59. text-align: center;
  60. }
  61. .node-link-hover {
  62. background: #D9EDF7;
  63. }
  64. .node-action-hover {
  65. background: #D9EDF7;
  66. }
  67. .node-fork-hover {
  68. background: #EEE;
  69. }
  70. .popover {
  71. z-index: 2060 !important;
  72. margin-left: 166px!important;
  73. }
  74. .control-group.error .CodeMirror {
  75. border: 1px solid #B94A48;
  76. }
  77. .new-node-link {
  78. text-align: left;
  79. cursor: move;
  80. }
  81. .sidebar-nav {
  82. padding: 9px 0;
  83. }
  84. #workflow {
  85. margin-bottom: 80px;
  86. }
  87. #actionToolbar {
  88. z-index: 1000;
  89. padding: 4px;
  90. padding-bottom: 8px;
  91. }
  92. #actionToolbar.shadowed {
  93. -webkit-box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.15);
  94. -moz-box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.15);
  95. box-shadow: 0px 3px 5px rgba(150, 150, 150, 0.15);
  96. }
  97. #actionToolbar h5 {
  98. margin-left: 10px;
  99. }
  100. .form-horizontal .form-actions {
  101. padding-left: 0;
  102. position: fixed;
  103. width: 100%;
  104. bottom: 0;
  105. margin-bottom: 0;
  106. -webkit-box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.15);
  107. -moz-box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.15);
  108. box-shadow: 0px -1px 3px rgba(50, 50, 50, 0.15);
  109. z-index: 1020;
  110. margin-left: -20px;
  111. }
  112. .draggable-button {
  113. display: inline;
  114. margin: 1px;
  115. line-height: 40px;
  116. }
  117. .draggable-button a {
  118. padding: 8px;
  119. }
  120. .typeahead {
  121. z-index: 2000;
  122. }