2019-01-16 02:26:43 +01:00
|
|
|
.flex-container{
|
2019-01-27 19:09:48 +01:00
|
|
|
background-color: rgb(250, 250, 250);
|
2019-01-16 02:26:43 +01:00
|
|
|
padding: 5px;
|
|
|
|
|
display: flex;
|
2019-01-27 19:09:48 +01:00
|
|
|
flex-flow: row;
|
2019-01-16 02:26:43 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-01-14 22:40:30 +01:00
|
|
|
.mycard {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2019-01-27 19:09:48 +01:00
|
|
|
|
|
|
|
|
.myitemdrag {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
|
transition: all .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.myitemdrag-enter, .myitemdrag-leave-active {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.drag {
|
|
|
|
|
background-color: green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dragArea {
|
|
|
|
|
min-height: 10px;
|
|
|
|
|
}
|