boardBody.css 4.8 KB

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