Skip to content

Commit

Permalink
Sync with Kendo UI Professional
Browse files Browse the repository at this point in the history
  • Loading branch information
User Jenkins committed Jun 15, 2021
1 parent f90a04c commit 0029a88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/knowledge-base/drag-and-drop-rows-between-two-grids.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The following example demonstrates how to drag and drop rows between two Kendo U
$(grid1.element).kendoDraggable({
filter: "tr",
filter: "tbody>tr",
hint: function (e) {
var item = $('<div class="k-grid k-widget" style="background-color: DarkOrange; color: black;"><table><tbody><tr>' + e.html() + '</tr></tbody></table></div>');
return item;
Expand All @@ -88,7 +88,7 @@ The following example demonstrates how to drag and drop rows between two Kendo U
$(grid2.element).kendoDraggable({
filter: "tr",
filter: "tbody>tr",
hint: function (e) {
var item = $('<div class="k-grid k-widget" style="background-color: MediumVioletRed; color: black;"><table><tbody><tr>' + e.html() + '</tr></tbody></table></div>');
return item;
Expand Down
2 changes: 1 addition & 1 deletion styles/web/Default/taskboard/_layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
}

.k-taskboard-column-cards-container {
margin-bottom: 3 * @taskboard-column-container-spacing-y;
margin-bottom: calc(3 * @taskboard-column-container-spacing-y);
}

.k-taskboard-column-cards > .k-taskboard-card:not(:last-child) {
Expand Down
5 changes: 0 additions & 5 deletions styles/web/kendo.rtl.less
Original file line number Diff line number Diff line change
Expand Up @@ -319,11 +319,6 @@
right: 0;
}

.k-webkit .k-rtl .k-dirty
{
margin: -0.4em 0.7em 0 0;
}

// Gantt
.k-rtl {
.k-gantt .k-grid-header .k-header {
Expand Down

0 comments on commit 0029a88

Please sign in to comment.