123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
-
- .kanban-container {
- position: relative;
- box-sizing: border-box;
- width: auto
- }
-
- .kanban-container * {
- box-sizing: border-box
- }
-
- .kanban-container:after {
- clear: both;
- display: block;
- content: ""
- }
-
- .kanban-board {
- position: relative;
- float: left;
- background: #D4DBFB;
- transition: all .3s cubic-bezier(.23,1,.32,1);
- border-radius: 5px;
- }
-
- .kanban-board.disabled-board {
- opacity: .3
- }
-
- .kanban-board.is-moving.gu-mirror {
- transform: rotate(3deg)
- }
-
- .kanban-board.is-moving.gu-mirror .kanban-drag {
- overflow: hidden;
- padding-right: 50px
- }
- .card-body.bg-white.py-3.rr {
- border-radius: 11px;
- }
- .kanban-board header {
- font-size: 16px;
- padding: 15px;
- background: white;
- }
-
- .kanban-board header .kanban-title-board {
- font-weight: 700;
- margin: 0;
- padding: 0;
- display: inline
- }
-
- .kanban-board header .kanban-title-button {
- float: right
- }
-
- .kanban-board .kanban-drag {
- min-height: 200px;
- padding: 10px;
- background: #D4DBFB;
- border-radius: 10px;
- }
-
- .kanban-board:after {
- clear: both;
- display: block;
- content: ""
- }
- main.kanban-drag {
- height: 370px;
- /*overflow-y: scroll;*/
- overflow: overlay;
- }
-
-
- /* Handle */
- :: -webkit-scrollbar-thumb {
- background: tranparent;
- width: 5px!important;
- }
- .kanban-item {
- background: #fff;
- padding: 15px;
- margin-bottom: 20px;
- transition: all .3s cubic-bezier(.23,1,.32,1)
- }
-
- .kanban-item:hover {
- cursor: move
- }
-
- .kanban-item:last-child {
- margin: 0
- }
-
- .kanban-item.is-moving.gu-mirror {
- transform: rotate(3deg);
- height: auto !important
- }
-
- .gu-mirror {
- position: fixed !important;
- margin: 0 !important;
- z-index: 9999 !important
- }
-
- .gu-hide {
- display: none !important
- }
-
- .gu-unselectable {
- -webkit-user-select: none !important;
- -moz-user-select: none !important;
- -ms-user-select: none !important;
- user-select: none !important
- }
-
- .gu-transit {
- opacity: .2 !important;
- transform: rotate(0) !important
- }
-
- .drag_handler {
- background: #fff;
- border-radius: 50%;
- width: 24px;
- height: 24px;
- position: relative;
- float: left;
- top: -3px;
- margin-right: 4px
- }
-
- .drag_handler:hover {
- cursor: move
- }
-
- .drag_handler_icon {
- position: relative;
- display: block;
- background: #000;
- width: 24px;
- height: 2px;
- top: 12px;
- transition: .5s ease-in-out
- }
-
- .drag_handler_icon:after, .drag_handler_icon:before {
- background: #000;
- content: '';
- display: block;
- width: 100%;
- height: 100%;
- position: absolute;
- transition: .5s ease-in-out
- }
-
- .drag_handler_icon:before {
- top: 6px
- }
-
- .drag_handler_icon:after {
- bottom: 6px
- }
|