You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

49 lines
1.2 KiB

.o_dnd_images_widget {
width: 100%;
.o_dnd_drop_zone {
width: 100%;
min-height: 150px;
border: 2px dashed #ccc;
border-radius: 4px;
text-align: center;
position: relative;
transition: transform 0.2s ease-in-out;
.o_drop_area_text {
margin-top: 1em;
color: #999;
}
}
.o_dnd_drop_zone.o_dnd_dragging {
border: 3px dashed #007bff;
transform: scale(1.02);
background-color: #f8f9fa;
}
.o_dnd_uploading {
color: #666;
}
.o_dnd_kanban_container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.o_dnd_kanban_card {
border: 1px solid #ddd;
border-radius: 4px;
width: 120px;
overflow: hidden;
.o_card_body {
position: relative;
.o_dnd_kanban_image {
width: 100%;
height: auto;
display: block;
}
.o_dnd_kanban_info {
padding: 4px;
background: #f2f2f2;
font-size: 0.8rem;
text-align: center;
}
}
}
}