- fix: context-menu (right click) declared only once and using twice using: @click.native="$refs.popover.$refs.popup.show()"
79 lines
1.0 KiB
SCSS
79 lines
1.0 KiB
SCSS
.flex-container{
|
|
background-color: rgb(250, 250, 250);
|
|
padding: 5px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
|
|
|
|
.mycard {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.myitemdrag {
|
|
padding: 2px;
|
|
margin-top: 4px;
|
|
border-width: 1px 0px 0px 0px;
|
|
//border: solid 1px #ccc;
|
|
border-style: solid;
|
|
border-color: #ccc;
|
|
transition: all .4s;
|
|
}
|
|
|
|
.titlePriority, .titleCompleted{
|
|
border-width: 0px 0px 1px 0px;
|
|
border-style: solid;
|
|
border-color: #ccc;
|
|
color:white;
|
|
}
|
|
|
|
.titleCompleted {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
.high_priority {
|
|
background-color: #4caf50;
|
|
}
|
|
|
|
.medium_priority {
|
|
background-color: #3846af;
|
|
}
|
|
|
|
.low_priority {
|
|
background-color: #af2218;
|
|
}
|
|
|
|
|
|
|
|
.myitemdrag-enter, .myitemdrag-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
.drag {
|
|
//background-color: green;
|
|
}
|
|
|
|
.dragArea {
|
|
min-height: 10px;
|
|
}
|
|
|
|
.divtitlecat {
|
|
margin: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.categorytitle{
|
|
color:blue;
|
|
background-color: lightblue;
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.titleSubMenu {
|
|
font-size: 0.7rem;
|
|
font-weight: 350;
|
|
}
|