workflow.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #modal-window .modal-content {
  2. height: 300px;
  3. overflow: auto;
  4. }
  5. #node-modal {
  6. width: auto;
  7. }
  8. #node-modal .modal-content {
  9. background: white;
  10. max-height: 500px;
  11. overflow-x: hidden;
  12. overflow-y: scroll;
  13. padding: 5px;
  14. }
  15. .action {
  16. border: 1px solid #DDD;
  17. padding: 0px;
  18. -webkit-border-radius: 4px;
  19. -moz-border-radius: 4px;
  20. border-radius: 4px;
  21. }
  22. .action h4 {
  23. margin-bottom: 1px;
  24. }
  25. .node-action {
  26. background: #FFF url(/oozie/static/art/action.png) no-repeat 10px 10px;
  27. }
  28. .node-fork {
  29. background: #FFF url(/oozie/static/art/fork.png) no-repeat 10px 10px;
  30. }
  31. .node-join {
  32. background: #FFF url(/oozie/static/art/join.png) no-repeat 10px 10px;
  33. }
  34. .node-decision {
  35. background: #FFF url(/oozie/static/art/decision.png) no-repeat 10px 10px;
  36. }
  37. .node-decisionend {
  38. background: #FFF url(/oozie/static/art/decision_end.png) no-repeat 10px 10px;
  39. }
  40. .node-link {
  41. border: 1px dashed #DDD;
  42. margin: 10px;
  43. background: url(/oozie/static/art/droppable.png) no-repeat 50% 50%;
  44. }
  45. .node-description {
  46. padding-top: 10px;
  47. }
  48. .node-action-bar {
  49. background-color: #EEE;
  50. padding-top: 5px;
  51. margin-top: 10px;
  52. -webkit-box-shadow: inset 0px 3px 5px 0px #DDD;
  53. box-shadow: inset 0px 3px 5px 0px #DDD;
  54. }
  55. #graph {
  56. text-align: center;
  57. }
  58. .node-link-hover {
  59. background: #D9EDF7;
  60. }
  61. .node-action-hover {
  62. background: #D9EDF7;
  63. }
  64. .node-fork-hover {
  65. background: #EEE;
  66. }
  67. .popover {
  68. z-index: 2060 !important;
  69. margin-left: 166px!important;
  70. }
  71. .ribbon-wrapper {
  72. width: 85px;
  73. height: 88px;
  74. overflow: hidden;
  75. position: fixed;
  76. top: 74px;
  77. right: -3px;
  78. right: 20px\9; /* IE8 */
  79. width: 125px\9; /* IE8 */
  80. }
  81. .ribbon {
  82. font: bold 15px sans-serif;
  83. text-align: center;
  84. text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
  85. -webkit-transform: rotate(45deg);
  86. -moz-transform: rotate(45deg);
  87. -ms-transform: rotate(45deg);
  88. -o-transform: rotate(45deg);
  89. position: relative;
  90. padding: 7px 0;
  91. left: -5px;
  92. top: 15px;
  93. width: 120px;
  94. background-color: #da4f49;
  95. *background-color: #bd362f;
  96. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  97. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  98. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  99. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  100. background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  101. background-repeat: repeat-x;
  102. color: #ffffff;
  103. -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  104. -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  105. box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  106. }
  107. .ribbon:before, .ribbon:after {
  108. content: "";
  109. border-top: 3px solid #c09853;
  110. border-left: 3px solid transparent;
  111. border-right: 3px solid transparent;
  112. position:absolute;
  113. bottom: -3px;
  114. }
  115. .ribbon:before {
  116. left: 0;
  117. }
  118. .ribbon:after {
  119. right: 0;
  120. }
  121. .control-group.error .CodeMirror {
  122. border: 1px solid #B94A48;
  123. }