[FIX] web_drop_target: Don't collide with odoo drag and drop implementation

This commit is contained in:
Alexandre D. Díaz
2021-09-24 22:01:04 +02:00
committed by Jasmin Solanki
parent 6c0c0cd245
commit 6cd4c2b6e0
6 changed files with 279 additions and 135 deletions

View File

@@ -1,19 +1,17 @@
.o_content {
.o_drag_over {
position: fixed;
top: 0;
left: 0;
.o_drag_over {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.6);
border: 2px dashed $o-brand-primary;
z-index: 2;
.o_drag_over_content {
position: relative;
top: 50%;
transform: translate(0%, -50%);
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.6);
border: 1px dashed #4c4c4c;
pointer-events: none;
.o_drag_over_content {
position: relative;
top: 50%;
transform: translate(0%, -50%);
width: 100%;
text-align: center;
}
text-align: center;
}
}