workflow.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. .ribbon-wrapper {
  75. width: 85px;
  76. height: 88px;
  77. overflow: hidden;
  78. position: fixed;
  79. top: 74px;
  80. right: -3px;
  81. right: 20px\9; /* IE8 */
  82. width: 125px\9; /* IE8 */
  83. }
  84. .ribbon {
  85. font: bold 15px sans-serif;
  86. text-align: center;
  87. text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
  88. -webkit-transform: rotate(45deg);
  89. -moz-transform: rotate(45deg);
  90. -ms-transform: rotate(45deg);
  91. -o-transform: rotate(45deg);
  92. position: relative;
  93. padding: 7px 0;
  94. left: -5px;
  95. top: 15px;
  96. width: 120px;
  97. background-color: #da4f49;
  98. *background-color: #bd362f;
  99. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  100. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  101. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  102. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  103. background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  104. background-repeat: repeat-x;
  105. color: #ffffff;
  106. -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  107. -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  108. box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  109. }
  110. .ribbon:before, .ribbon:after {
  111. content: "";
  112. border-top: 3px solid #c09853;
  113. border-left: 3px solid transparent;
  114. border-right: 3px solid transparent;
  115. position:absolute;
  116. bottom: -3px;
  117. }
  118. .ribbon:before {
  119. left: 0;
  120. }
  121. .ribbon:after {
  122. right: 0;
  123. }
  124. .control-group.error .CodeMirror {
  125. border: 1px solid #B94A48;
  126. }