[IMP] web_drop_target: Upload multiple files

This commit is contained in:
Pablo Fuentes
2018-06-27 13:09:37 +02:00
committed by Adrià Gil Sorribes
parent 731a5e717d
commit eedbf1b22e
7 changed files with 91 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
.o_content {
.o_drag_over{
position: fixed;
top: 0;
left: 0;
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;
}
}
}