Fix drop zone shadow
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
8680ced1ae
commit
ad407f64bd
2 changed files with 9 additions and 1 deletions
|
@ -727,7 +727,13 @@ table.dragshadow td.size {
|
|||
|
||||
.breadcrumb .canDrop > a,
|
||||
#filestable tbody tr.canDrop {
|
||||
background-color: rgb(179, 230, 255);
|
||||
background-color: rgba( $color-primary, .3 );
|
||||
}
|
||||
.dropzone-background {
|
||||
background-color: rgba( $color-primary, .3 );
|
||||
:hover{
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -82,6 +82,8 @@
|
|||
element.addClass('nav-icon-trashbin').removeClass('nav-icon-trashbin-starred');
|
||||
},
|
||||
drop: function (event, ui) {
|
||||
trashBinElement.removeClass('dropzone-background');
|
||||
|
||||
var $selectedFiles = $(ui.draggable);
|
||||
|
||||
// FIXME: when there are a lot of selected files the helper
|
||||
|
|
Loading…
Reference in a new issue