Skip to content

Commit 0df8ff3

Browse files
committed
Fixed django#19550 -- Made the filtered select widget wider in the admin.
Thanks Claude and Julien for the review.
1 parent f3a6d74 commit 0df8ff3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

django/contrib/admin/static/admin/css/widgets.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* SELECTOR (FILTER INTERFACE) */
22

33
.selector {
4-
width: 580px;
4+
width: 840px;
55
float: left;
66
}
77

88
.selector select {
9-
width: 270px;
9+
width: 400px;
1010
height: 17.2em;
1111
}
1212

1313
.selector-available, .selector-chosen {
1414
float: left;
15-
width: 270px;
15+
width: 400px;
1616
text-align: center;
1717
margin-bottom: 5px;
1818
}
@@ -48,7 +48,7 @@
4848
}
4949

5050
.selector .selector-available input {
51-
width: 230px;
51+
width: 360px;
5252
}
5353

5454
.selector ul.selector-chooser {

0 commit comments

Comments
 (0)