[SSE] Fix bug 67033

This commit is contained in:
Julia.Svinareva
2024-05-06 21:50:29 +03:00
parent ca06efc50d
commit 34a423be5f
2 changed files with 5 additions and 4 deletions

View File

@ -351,13 +351,12 @@ define([
this.onMove(2, this.itemIndex, _.isNumber(this.indexMoveTo) ? (this.indexMoveTo !== 0 && this.itemIndex < this.indexMoveTo ? this.indexMoveTo - 1 : this.indexMoveTo) : this.valuesList.store.length - 1);
break;
}
} else {
$(this.el).find('.item').removeClass('insert last');
}
this.itemIndex = undefined;
this.indexMoveTo = undefined;
}
}
$(this.el).find('.item').removeClass('insert last');
},
openAdvancedSettings: function(e) {

View File

@ -238,9 +238,11 @@
padding: 3px;
border-top: none;
&.insert {
background: linear-gradient(to bottom, #656565, #fff 5%);
background: linear-gradient(to bottom, @text-normal-ie, @background-normal-ie 5%);
background: linear-gradient(to bottom, @text-normal, @background-normal 5%);
&.last {
background: linear-gradient(to top, #656565, #fff 5%);
background: linear-gradient(to top, @text-normal-ie, @background-normal-ie 5%);
background: linear-gradient(to top, @text-normal, @background-normal 5%);
}
}
&:hover {