Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

jkanban.min.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. 
  2. .kanban-container {
  3. position: relative;
  4. box-sizing: border-box;
  5. width: auto
  6. }
  7. .kanban-container * {
  8. box-sizing: border-box
  9. }
  10. .kanban-container:after {
  11. clear: both;
  12. display: block;
  13. content: ""
  14. }
  15. .kanban-board {
  16. position: relative;
  17. float: left;
  18. background: #D4DBFB;
  19. transition: all .3s cubic-bezier(.23,1,.32,1);
  20. border-radius: 5px;
  21. }
  22. .kanban-board.disabled-board {
  23. opacity: .3
  24. }
  25. .kanban-board.is-moving.gu-mirror {
  26. transform: rotate(3deg)
  27. }
  28. .kanban-board.is-moving.gu-mirror .kanban-drag {
  29. overflow: hidden;
  30. padding-right: 50px
  31. }
  32. .card-body.bg-white.py-3.rr {
  33. border-radius: 11px;
  34. }
  35. .kanban-board header {
  36. font-size: 16px;
  37. padding: 15px;
  38. background: white;
  39. }
  40. .kanban-board header .kanban-title-board {
  41. font-weight: 700;
  42. margin: 0;
  43. padding: 0;
  44. display: inline
  45. }
  46. .kanban-board header .kanban-title-button {
  47. float: right
  48. }
  49. .kanban-board .kanban-drag {
  50. min-height: 200px;
  51. padding: 10px;
  52. background: #D4DBFB;
  53. border-radius: 10px;
  54. }
  55. .kanban-board:after {
  56. clear: both;
  57. display: block;
  58. content: ""
  59. }
  60. main.kanban-drag {
  61. height: 370px;
  62. /*overflow-y: scroll;*/
  63. overflow: overlay;
  64. }
  65. /* Handle */
  66. :: -webkit-scrollbar-thumb {
  67. background: tranparent;
  68. width: 5px!important;
  69. }
  70. .kanban-item {
  71. background: #fff;
  72. padding: 15px;
  73. margin-bottom: 20px;
  74. transition: all .3s cubic-bezier(.23,1,.32,1)
  75. }
  76. .kanban-item:hover {
  77. cursor: move
  78. }
  79. .kanban-item:last-child {
  80. margin: 0
  81. }
  82. .kanban-item.is-moving.gu-mirror {
  83. transform: rotate(3deg);
  84. height: auto !important
  85. }
  86. .gu-mirror {
  87. position: fixed !important;
  88. margin: 0 !important;
  89. z-index: 9999 !important
  90. }
  91. .gu-hide {
  92. display: none !important
  93. }
  94. .gu-unselectable {
  95. -webkit-user-select: none !important;
  96. -moz-user-select: none !important;
  97. -ms-user-select: none !important;
  98. user-select: none !important
  99. }
  100. .gu-transit {
  101. opacity: .2 !important;
  102. transform: rotate(0) !important
  103. }
  104. .drag_handler {
  105. background: #fff;
  106. border-radius: 50%;
  107. width: 24px;
  108. height: 24px;
  109. position: relative;
  110. float: left;
  111. top: -3px;
  112. margin-right: 4px
  113. }
  114. .drag_handler:hover {
  115. cursor: move
  116. }
  117. .drag_handler_icon {
  118. position: relative;
  119. display: block;
  120. background: #000;
  121. width: 24px;
  122. height: 2px;
  123. top: 12px;
  124. transition: .5s ease-in-out
  125. }
  126. .drag_handler_icon:after, .drag_handler_icon:before {
  127. background: #000;
  128. content: '';
  129. display: block;
  130. width: 100%;
  131. height: 100%;
  132. position: absolute;
  133. transition: .5s ease-in-out
  134. }
  135. .drag_handler_icon:before {
  136. top: 6px
  137. }
  138. .drag_handler_icon:after {
  139. bottom: 6px
  140. }