mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed #32322 -- Fixed autocomplete widget wrapping.
This commit is contained in:
parent
ec6d2531c5
commit
6a054f7681
1
AUTHORS
1
AUTHORS
@ -935,6 +935,7 @@ answer newbie questions, and generally made Django that much better:
|
|||||||
Victor Andrée
|
Victor Andrée
|
||||||
viestards.lists@gmail.com
|
viestards.lists@gmail.com
|
||||||
Viktor Danyliuk <v.v.danyliuk@gmail.com>
|
Viktor Danyliuk <v.v.danyliuk@gmail.com>
|
||||||
|
Viktor Grabov <viktor@grabov.ru>
|
||||||
Ville Säävuori <https://www.unessa.net/>
|
Ville Säävuori <https://www.unessa.net/>
|
||||||
Vinay Karanam <https://github.com/vinayinvicible>
|
Vinay Karanam <https://github.com/vinayinvicible>
|
||||||
Vinay Sajip <vinay_sajip@yahoo.co.uk>
|
Vinay Sajip <vinay_sajip@yahoo.co.uk>
|
||||||
|
@ -104,8 +104,10 @@ select.admin-autocomplete {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 5px;
|
padding: 0 10px 5px 5px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered li {
|
.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered li {
|
||||||
@ -123,6 +125,8 @@ select.admin-autocomplete {
|
|||||||
float: right;
|
float: right;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice {
|
.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice {
|
||||||
|
Loading…
Reference in New Issue
Block a user