boardBody.css 3.5 KB

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