cryptpad/www/kanban/jkanban.css

98 lines
1.6 KiB
CSS
Raw Normal View History

2018-04-01 16:52:21 +00:00
.kanban-container * {
box-sizing: border-box;
}
.kanban-board {
position: relative;
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
margin: 10px;
vertical-align: top;
2018-05-16 17:28:30 +00:00
display: flex;
flex-flow: column;
2020-03-04 14:34:36 +00:00
width: 300px;
margin: 10px 5px;
2018-04-01 16:52:21 +00:00
}
.kanban-board.disabled-board {
2018-04-01 16:52:21 +00:00
opacity: .3;
}
.kanban-board.is-moving.gu-mirror {
transform: rotate(3deg);
2020-03-02 11:05:09 +00:00
opacity: 0.8;
2018-04-01 16:52:21 +00:00
}
.kanban-board.is-moving.gu-mirror .kanban-drag {
overflow: hidden;
padding-right: 50px;
}
.kanban-board header {
font-size: 16px;
padding: 10px;
}
.kanban-board header .kanban-title-board {
font-weight: 700;
margin: 0;
padding: 0;
display: inline;
2019-12-12 15:09:07 +00:00
cursor: text;
2018-04-01 16:52:21 +00:00
}
.kanban-board header .kanban-title-button {
float: right;
line-height: 1;
padding: .25rem .5rem;
}
.kanban-item {
background: #fff;
padding: 15px;
2020-03-09 13:27:33 +00:00
margin-bottom: 10px;
2018-04-01 16:52:21 +00:00
}
.kanban-item:hover {
cursor: move;
}
.kanban-item:last-child {
margin: 0;
}
.kanban-item.is-moving.gu-mirror {
transform: rotate(3deg);
height: auto !important;
2020-03-02 11:05:09 +00:00
opacity: 0.8;
2018-04-01 16:52:21 +00:00
}
/* Dragula CSS */
2018-04-01 16:52:21 +00:00
.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: 0.2 !important;
transform: rotate(0deg) !important;
}
.form-group {
text-align: right;
margin-button: 5px;
2018-05-16 17:28:30 +00:00
}