1
0
mirror of https://github.com/django/django.git synced 2024-12-27 19:46:22 +00:00

[5.0.x] Fixed #35001 -- Fixed position of related widget action icons in admin for some screen sizes.

Backport of dec8aa68f6 from main
This commit is contained in:
Tom Carrick 2023-12-01 14:03:04 +01:00 committed by Natalia
parent b8a476b745
commit 6c502734a0
2 changed files with 7 additions and 5 deletions

View File

@ -670,10 +670,10 @@ input[type="submit"], button {
.selector {
flex-direction: column;
gap: 10px 0;
}
.selector-available, .selector-chosen {
margin-bottom: 0;
flex: 1 1 auto;
}

View File

@ -3,7 +3,7 @@
.selector {
display: flex;
flex-grow: 1;
gap: 10px;
gap: 0 10px;
}
.selector select {
@ -15,7 +15,6 @@
.selector-available, .selector-chosen {
text-align: center;
margin-bottom: 5px;
display: flex;
flex-direction: column;
flex: 1 1;
@ -88,6 +87,7 @@
width: 22px;
background-color: var(--selected-bg);
border-radius: 10px;
margin: 0;
padding: 0;
transform: translateY(-17px);
}
@ -151,7 +151,7 @@ a.selector-chooseall, a.selector-clearall {
display: inline-block;
height: 16px;
text-align: left;
margin: 1px auto 3px;
margin: 0 auto;
overflow: hidden;
font-weight: bold;
line-height: 16px;
@ -580,8 +580,10 @@ ul.timelist, .timelist li {
/* RELATED WIDGET WRAPPER */
.related-widget-wrapper {
display: flex;
gap: 10px;
gap: 0 10px;
flex-grow: 1;
flex-wrap: wrap;
margin-bottom: 5px;
}
.related-widget-wrapper-link {