Skip to content

Commit

Permalink
Fixed #19550 -- Made the filtered select widget wider in the admin.
Browse files Browse the repository at this point in the history
Thanks Claude and Julien for the review.
  • Loading branch information
aaugustin committed Mar 17, 2013
1 parent f3a6d74 commit 0df8ff3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions django/contrib/admin/static/admin/css/widgets.css
@@ -1,18 +1,18 @@
/* SELECTOR (FILTER INTERFACE) */ /* SELECTOR (FILTER INTERFACE) */


.selector { .selector {
width: 580px; width: 840px;
float: left; float: left;
} }


.selector select { .selector select {
width: 270px; width: 400px;
height: 17.2em; height: 17.2em;
} }


.selector-available, .selector-chosen { .selector-available, .selector-chosen {
float: left; float: left;
width: 270px; width: 400px;
text-align: center; text-align: center;
margin-bottom: 5px; margin-bottom: 5px;
} }
Expand Down Expand Up @@ -48,7 +48,7 @@
} }


.selector .selector-available input { .selector .selector-available input {
width: 230px; width: 360px;
} }


.selector ul.selector-chooser { .selector ul.selector-chooser {
Expand Down

0 comments on commit 0df8ff3

Please sign in to comment.