boardBody.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 .board-overlay {
  20. position: fixed;
  21. left: 0;
  22. right: 0;
  23. top: 0;
  24. bottom: 0;
  25. top: -100px;
  26. right: -400px;
  27. background: #000;
  28. opacity: 0.33;
  29. animation: fadeIn 0.2s;
  30. z-index: 16;
  31. }
  32. .board-wrapper .board-canvas.is-dragging-active .open-minicard-composer,
  33. .board-wrapper .board-canvas.is-dragging-active .minicard-wrapper.is-checked {
  34. display: none;
  35. }
  36. @media screen and (max-width: 800px) {
  37. .board-wrapper .board-canvas .swimlane {
  38. border-bottom: 1px solid #ccc;
  39. display: flex;
  40. flex-direction: column;
  41. margin: 0;
  42. padding: 0 0px 0px 0;
  43. overflow-x: hidden;
  44. overflow-y: auto;
  45. }
  46. }
  47. .calendar-event-green {
  48. background: #3cb500 !important;
  49. border-color: #2a8000;
  50. color: #fff !important;
  51. }
  52. .calendar-event-yellow {
  53. background: #fad900 !important;
  54. border-color: #c7ac00;
  55. color: #000 !important;
  56. }
  57. .calendar-event-orange {
  58. background: #ff9f19 !important;
  59. border-color: #cc7c14;
  60. color: #000 !important;
  61. }
  62. .calendar-event-red {
  63. background: #eb4646 !important;
  64. border-color: #b83737;
  65. color: #fff !important;
  66. }
  67. .calendar-event-purple {
  68. background: #a632db !important;
  69. border-color: #7d26a6;
  70. color: #fff !important;
  71. }
  72. .calendar-event-blue {
  73. background: #0079bf !important;
  74. border-color: #005a8a;
  75. color: #fff !important;
  76. }
  77. .calendar-event-pink {
  78. background: #ff78cb !important;
  79. border-color: #cc62a3;
  80. color: #000 !important;
  81. }
  82. .calendar-event-sky {
  83. background: #00c2e0 !important;
  84. border-color: #0094ab;
  85. color: #fff !important;
  86. }
  87. .calendar-event-black {
  88. background: #4d4d4d !important;
  89. border-color: #1a1a1a;
  90. color: #fff !important;
  91. }
  92. .calendar-event-lime {
  93. background: #51e898 !important;
  94. border-color: #3eb375;
  95. color: #000 !important;
  96. }
  97. .calendar-event-silver {
  98. background: #c0c0c0 !important;
  99. border-color: #8c8c8c;
  100. color: #000 !important;
  101. }
  102. .calendar-event-peachpuff {
  103. background: #ffdab9 !important;
  104. border-color: #ccaf95;
  105. color: #000 !important;
  106. }
  107. .calendar-event-crimson {
  108. background: #dc143c !important;
  109. border-color: #a8112f;
  110. color: #fff !important;
  111. }
  112. .calendar-event-plum {
  113. background: #dda0dd !important;
  114. border-color: #a87ba8;
  115. color: #000 !important;
  116. }
  117. .calendar-event-darkgreen {
  118. background: #006400 !important;
  119. border-color: #003000;
  120. color: #fff !important;
  121. }
  122. .calendar-event-slateblue {
  123. background: #6a5acd !important;
  124. border-color: #4f4399;
  125. color: #fff !important;
  126. }
  127. .calendar-event-magenta {
  128. background: #f0f !important;
  129. border-color: #c0c;
  130. color: #fff !important;
  131. }
  132. .calendar-event-gold {
  133. background: #ffd700 !important;
  134. border-color: #ca0;
  135. color: #000 !important;
  136. }
  137. .calendar-event-navy {
  138. background: #000080 !important;
  139. border-color: #003;
  140. color: #fff !important;
  141. }
  142. .calendar-event-gray {
  143. background: #808080 !important;
  144. border-color: #333;
  145. color: #fff !important;
  146. }
  147. .calendar-event-saddlebrown {
  148. background: #8b4513 !important;
  149. border-color: #572b0c;
  150. color: #fff !important;
  151. }
  152. .calendar-event-paleturquoise {
  153. background: #afeeee !important;
  154. border-color: #8ababa;
  155. color: #000 !important;
  156. }
  157. .calendar-event-mistyrose {
  158. background: #ffe4e1 !important;
  159. border-color: #ccb8b6;
  160. color: #000 !important;
  161. }
  162. .calendar-event-indigo {
  163. background: #4b0082 !important;
  164. border-color: #2b004d;
  165. color: #fff !important;
  166. }
  167. /* Modal Styles */
  168. .modal {
  169. display: none;
  170. position: fixed;
  171. top: 50%;
  172. left: 50%;
  173. transform: translate(-50%, -50%);
  174. z-index: 9999;
  175. background-color: rgba(0, 0, 0, 0.5);
  176. width: 100%;
  177. height: 100%;
  178. }
  179. .modal-dialog {
  180. display: flex;
  181. justify-content: center;
  182. align-items: center;
  183. height: 25%; /* Adjust the height to make it smaller */
  184. position: relative;
  185. margin: 10% auto; /* This margin will help center the modal vertically */
  186. max-width: 400px; /* Adjust the max-width to make it smaller */
  187. background-color: #fff;
  188. border-radius: 5px;
  189. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  190. }
  191. .modal-header {
  192. display: flex;
  193. justify-content: center;
  194. align-items: center;
  195. padding-bottom: 1px;
  196. border-bottom: 1px solid #ccc;
  197. }
  198. .modal-title {
  199. display: flex;
  200. justify-content: center;
  201. align-items: center;
  202. margin: 0;
  203. font-size: 18px;
  204. }
  205. .modal-footer {
  206. display: flex;
  207. justify-content: center;
  208. align-items: center;
  209. padding-top: 4px;
  210. border-top: 1px solid #ccc;
  211. }
  212. .close {
  213. display: flex;
  214. justify-content: center;
  215. align-items: center;
  216. position: absolute;
  217. top: 5px;
  218. right: 5px;
  219. font-size: 25px;
  220. cursor: pointer;
  221. }