weaver_trunk_cli/pc4mobx/prj/components/comp/kanban/index.less

185 lines
3.9 KiB
Plaintext
Raw Normal View History

2023-03-08 15:22:38 +08:00
.column-header {
background-color: #eef0f4;
border-bottom: 1px solid #e8e8e8;
padding: 16px;
border-radius: 2px 2px 0 0;
zoom: 1;
margin-bottom: -1px;
min-height: 48px;
font-size: 16px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
.ant-dropdown-link{
float: right;
font-size: 16px;
font-weight: 700;
color: #484848;
}
.column-header-menu{
z-index: 999;
float: right;
}
}
.mode-kanban {
overflow: auto;
width: 100%;
height: 93%;
position: relative;
// width:auto;
// padding-left: 8px;
.ant-row,
[class*=" ant-col"],
[class^=ant-col] {
height: 100%
}
.mode-kanban-column-placeholder {
border: 1px dashed gray;
display: none;
width: 100%;
height: 100%;
margin-top: 8px;
//margin-left: -8px;
// margin-right: -8px;
}
.mode-kanban-item {
min-height: 41px;
border-radius: 5px;
position: relative;
margin: 0 5px 5px 5px;
padding: 0 0 0 10px;
cursor: pointer;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,.2)
}
.mode-kanban-item-placeholder{
border: 1px dashed gray;
display: none;
// height: 88px;
margin: 10px;
// padding-left: 50px
}
.mode-kanban-column-row{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
min-width: 640px;
padding: 0 20px;
overflow-y: auto;
}
.mode-kanban-column {
background-color: #eef0f4;
box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
height: 100%;
margin-top: 8px;
margin-left: 8px;
margin-right: 8px;
border: 1px solid #e9e9e9;
border-radius: 10px;
width: 290px;
overflow: auto;
}
.mode-kanban-new-task{
position: relative;
}
.mode-kanban-new-task-area{
min-height: 41px;
border-radius: 5px;
position: relative;
margin: 0 5px 5px 5px;
padding: 0 0 0 10px;
cursor: pointer;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,.2)
}
.mode-kanban-new-task-btn{
border-radius: 5px;
position: relative;
// cursor: pointer;
span {
background-color: #fff;
color : #757575;
line-height: 32px;
display: inline-block;
height: 32px;
margin: 3px 5px 6px 5px;
padding: 0 18px;
cursor: pointer;
border-radius: 18px;
box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
}
}
.item-header{
margin: 10px 0
}
.item-dragg-handle{
// padding-left: 24px;
// height: 80px;
// overflow: hidden ;
overflow: hidden;
padding: 10px 20px 10px 10px;
}
.item-dragg-handle-title{
// margin: 16px 0;
width : 80% ;
font-size: 14px;
// padding: 10px 0px 10px 0px;
display: inline-block;
// text-align:center;
// display:block;
// float:left
}
.item-dragg-handle-operation{
font-size: 18px;
color: gainsboro;
padding-right: 10px;
display: none;
}
.item-dragg-handle-operation2{
font-size: 18px;
padding-right: 10px;
color: #2db7f5;
}
.item-dragg-handle-collection{
font-size: 18px;
color: gainsboro;
display: none;
}
.item-dragg-handle-collection2{
font-size: 18px;
color: rgb(248, 192, 72);
}
span.item-dragg-handle-collection:hover{
color:black;
}
span.item-dragg-handle-operation:hover{
color:black;
}
div.mode-kanban-item:hover {
background-color: #eef0f4;
}
div.mode-kanban-item:hover span{
display: inline-block;
}
div.mode-kanban-new-task-btn:hover span{
background-color: rgb(59, 56, 56);
color: white;
}