boardBody.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .board-wrapper {
  2. position: absolute;
  3. left: 0;
  4. right: 0;
  5. top: 0;
  6. bottom: 0;
  7. overflow-x: hidden;
  8. overflow-y: hidden;
  9. }
  10. .board-wrapper .board-canvas {
  11. position: absolute;
  12. left: 0;
  13. right: 0;
  14. top: 0;
  15. bottom: 0;
  16. transition: margin 0.1s;
  17. overflow-y: auto;
  18. }
  19. .board-wrapper .board-canvas.is-sibling-sidebar-open {
  20. margin-right: 248px;
  21. }
  22. .board-wrapper .board-canvas .board-overlay {
  23. position: fixed;
  24. left: 0;
  25. right: 0;
  26. top: 0;
  27. bottom: 0;
  28. top: -100px;
  29. right: -400px;
  30. background: #000;
  31. opacity: 0.33;
  32. animation: fadeIn 0.2s;
  33. z-index: 16;
  34. }
  35. .board-wrapper .board-canvas.is-dragging-active .open-minicard-composer,
  36. .board-wrapper .board-canvas.is-dragging-active .minicard-wrapper.is-checked {
  37. display: none;
  38. }
  39. @media screen and (max-width: 800px) {
  40. .board-wrapper .board-canvas .swimlane {
  41. border-bottom: 1px solid #ccc;
  42. display: flex;
  43. flex-direction: column;
  44. margin: 0;
  45. padding: 0 0px 0px 0;
  46. overflow-x: hidden;
  47. overflow-y: auto;
  48. }
  49. }
  50. .calendar-event-green {
  51. background: #3cb500 !important;
  52. border-color: #2a8000;
  53. color: #fff !important;
  54. }
  55. .calendar-event-yellow {
  56. background: #fad900 !important;
  57. border-color: #c7ac00;
  58. color: #000 !important;
  59. }
  60. .calendar-event-orange {
  61. background: #ff9f19 !important;
  62. border-color: #cc7c14;
  63. color: #000 !important;
  64. }
  65. .calendar-event-red {
  66. background: #eb4646 !important;
  67. border-color: #b83737;
  68. color: #fff !important;
  69. }
  70. .calendar-event-purple {
  71. background: #a632db !important;
  72. border-color: #7d26a6;
  73. color: #fff !important;
  74. }
  75. .calendar-event-blue {
  76. background: #0079bf !important;
  77. border-color: #005a8a;
  78. color: #fff !important;
  79. }
  80. .calendar-event-pink {
  81. background: #ff78cb !important;
  82. border-color: #cc62a3;
  83. color: #000 !important;
  84. }
  85. .calendar-event-sky {
  86. background: #00c2e0 !important;
  87. border-color: #0094ab;
  88. color: #fff !important;
  89. }
  90. .calendar-event-black {
  91. background: #4d4d4d !important;
  92. border-color: #1a1a1a;
  93. color: #fff !important;
  94. }
  95. .calendar-event-lime {
  96. background: #51e898 !important;
  97. border-color: #3eb375;
  98. color: #000 !important;
  99. }
  100. .calendar-event-silver {
  101. background: #c0c0c0 !important;
  102. border-color: #8c8c8c;
  103. color: #000 !important;
  104. }
  105. .calendar-event-peachpuff {
  106. background: #ffdab9 !important;
  107. border-color: #ccaf95;
  108. color: #000 !important;
  109. }
  110. .calendar-event-crimson {
  111. background: #dc143c !important;
  112. border-color: #a8112f;
  113. color: #fff !important;
  114. }
  115. .calendar-event-plum {
  116. background: #dda0dd !important;
  117. border-color: #a87ba8;
  118. color: #000 !important;
  119. }
  120. .calendar-event-darkgreen {
  121. background: #006400 !important;
  122. border-color: #003000;
  123. color: #fff !important;
  124. }
  125. .calendar-event-slateblue {
  126. background: #6a5acd !important;
  127. border-color: #4f4399;
  128. color: #fff !important;
  129. }
  130. .calendar-event-magenta {
  131. background: #f0f !important;
  132. border-color: #c0c;
  133. color: #fff !important;
  134. }
  135. .calendar-event-gold {
  136. background: #ffd700 !important;
  137. border-color: #ca0;
  138. color: #000 !important;
  139. }
  140. .calendar-event-navy {
  141. background: #000080 !important;
  142. border-color: #003;
  143. color: #fff !important;
  144. }
  145. .calendar-event-gray {
  146. background: #808080 !important;
  147. border-color: #333;
  148. color: #fff !important;
  149. }
  150. .calendar-event-saddlebrown {
  151. background: #8b4513 !important;
  152. border-color: #572b0c;
  153. color: #fff !important;
  154. }
  155. .calendar-event-paleturquoise {
  156. background: #afeeee !important;
  157. border-color: #8ababa;
  158. color: #000 !important;
  159. }
  160. .calendar-event-mistyrose {
  161. background: #ffe4e1 !important;
  162. border-color: #ccb8b6;
  163. color: #000 !important;
  164. }
  165. .calendar-event-indigo {
  166. background: #4b0082 !important;
  167. border-color: #2b004d;
  168. color: #fff !important;
  169. }