Merge pull request #400 from GMartigny/issue_#349

Issue #349 : Frame list slightly scroll on the right
This commit is contained in:
Julian Descottes 2016-02-12 05:32:18 +01:00
commit ef7108a5e0
2 changed files with 8 additions and 8 deletions

View File

@ -50,7 +50,7 @@
.preview-list {
list-style-type: none;
padding-right: 7px;
padding-right: 9px;
}
.add-frame-action {
@ -160,10 +160,10 @@
content: "";
position: absolute;
top: 38px;
right: -15px;
right: -9px;
border: transparent 4px solid;
border-left-color: gold;
border-width: 6px;
border-width: 6px 0 6px 6px;
border-style: solid;
}
@ -174,7 +174,5 @@
.preview-tile-drop-proxy {
border: 3px dashed gold;
height: 90px;
border-radius: 9px;
background-color: rgba(255, 215,0, 0.2);
}

View File

@ -124,9 +124,11 @@
ns.FramesListController.prototype.initDragndropBehavior_ = function () {
$('#preview-list').sortable({
placeholder: 'preview-tile-drop-proxy',
placeholder: 'preview-tile preview-tile-drop-proxy',
update: $.proxy(this.onUpdate_, this),
items: '.preview-tile'
items: '.preview-tile',
axis: 'y',
tolerance: 'pointer'
});
$('#preview-list').disableSelection();
};