1
0
mirror of https://github.com/django/django.git synced 2025-01-22 08:10:28 +00:00

Fixed #35799 -- Fixed the positioning of the inline admin plus icon for RTL languages.

This commit is contained in:
Mario Munoz 2024-10-08 12:13:23 +02:00 committed by Sarah Boyce
parent 862026a8b9
commit ef56e1ff6d
2 changed files with 2 additions and 4 deletions

View File

@ -460,8 +460,6 @@ body.popup .submit-row {
.inline-group div.add-row a,
.inline-group .tabular tr.add-row td a {
background: url(../img/icon-addlink.svg) 0 1px no-repeat;
padding-left: 16px;
font-size: 0.75rem;
}

View File

@ -50,11 +50,11 @@
// If forms are laid out as table rows, insert the
// "add" button in a new table row:
const numCols = $this.eq(-1).children().length;
$parent.append('<tr class="' + options.addCssClass + '"><td colspan="' + numCols + '"><a href="#">' + options.addText + "</a></tr>");
$parent.append('<tr class="' + options.addCssClass + '"><td colspan="' + numCols + '"><a class="addlink" href="#">' + options.addText + "</a></tr>");
addButton = $parent.find("tr:last a");
} else {
// Otherwise, insert it immediately after the last form:
$this.filter(":last").after('<div class="' + options.addCssClass + '"><a href="#">' + options.addText + "</a></div>");
$this.filter(":last").after('<div class="' + options.addCssClass + '"><a class="addlink" href="#">' + options.addText + "</a></div>");
addButton = $this.filter(":last").next().find("a");
}
}