pig.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .running {
  2. background-color: #faa732;
  3. border-left: 2px solid #faa732;
  4. }
  5. .succeeded {
  6. background-color: #5eb95e;
  7. border-left: 2px solid #5eb95e;
  8. }
  9. .failed {
  10. background-color: #dd514c;
  11. border-left: 2px solid #dd514c;
  12. }
  13. .sidebar-nav {
  14. padding: 9px 0;
  15. }
  16. .CodeMirror {
  17. border: 1px solid #eee;
  18. }
  19. .bottomAlert {
  20. position: fixed;
  21. bottom: 0;
  22. left: 0;
  23. margin: 0;
  24. width: 100%;
  25. text-align: center;
  26. display: none;
  27. z-index: 1000;
  28. }
  29. #logs .alert-modified {
  30. padding-right: 14px;
  31. }
  32. #logs pre {
  33. margin: 0;
  34. color: #666;
  35. border-color: #DDD;
  36. }
  37. .parameterTableCnt {
  38. background-color: #F5F5F5;
  39. }
  40. .parameterTable td {
  41. padding: 7px;
  42. }
  43. .span2 .pull-right {
  44. display: none;
  45. }
  46. #logsModal {
  47. width: 90%;
  48. left: 5%;
  49. margin-left: auto;
  50. margin-right: auto;
  51. }
  52. .scroll {
  53. overflow-y: scroll;
  54. height: 300px;
  55. }
  56. .widget-content {
  57. padding: 10px;
  58. }
  59. .editable {
  60. cursor: pointer;
  61. }
  62. .editable-container h3 {
  63. display: none;
  64. }
  65. #properties h4 {
  66. color: #3A87AD;
  67. }
  68. .mainAction {
  69. float: right;
  70. font-size: 48px;
  71. opacity: 0.4;
  72. color: #338bb8;
  73. cursor: pointer;
  74. margin-top: 6px;
  75. }
  76. .mainAction i {
  77. cursor: pointer;
  78. }
  79. .mainAction:hover {
  80. opacity: 0.88;
  81. text-decoration: none;
  82. }
  83. .unsaved {
  84. border-bottom: 1px solid #C63D37;
  85. }