diff options
| author | elky <mansellfan@gmail.com> | 2015-09-07 23:02:51 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-07 14:31:32 -0400 |
| commit | 8e84d9c8440f571c0d11cd5d7c35dcedca46392c (patch) | |
| tree | f56ef8158ccba411ed2bc01be3103aa56560cdd6 | |
| parent | a7901c2e090d720ef0427552387be7f14cbe2ac6 (diff) | |
Fixed #25365 -- Fixed visual issues in filter_vertical widget introduced by SVG icons commit.
| -rw-r--r-- | django/contrib/admin/static/admin/css/widgets.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/django/contrib/admin/static/admin/css/widgets.css b/django/contrib/admin/static/admin/css/widgets.css index 5f674f6ff5..979ae77cae 100644 --- a/django/contrib/admin/static/admin/css/widgets.css +++ b/django/contrib/admin/static/admin/css/widgets.css @@ -159,7 +159,7 @@ a.active.selector-clearall { .stacked { float: left; - width: 500px; + width: 490px; } .stacked select { @@ -176,13 +176,13 @@ a.active.selector-clearall { } .stacked .selector-available input { - width: 442px; + width: 422px; } .stacked ul.selector-chooser { height: 22px; width: 50px; - margin: 0 0 3px 40%; + margin: 0 0 10px 40%; background-color: #eee; border-radius: 10px; } @@ -197,22 +197,22 @@ a.active.selector-clearall { } .stacked .selector-add { - background: url(../img/selector-icons.svg) 0 0 no-repeat; + background: url(../img/selector-icons.svg) 0 -32px no-repeat; cursor: default; } .stacked .active.selector-add { - background-position: 0 -16px; + background-position: 0 -48px; cursor: pointer; } .stacked .selector-remove { - background: url(../img/selector-icons.svg) 0 -32px no-repeat; + background: url(../img/selector-icons.svg) 0 0 no-repeat; cursor: default; } .stacked .active.selector-remove { - background-position: 0 -48px; + background-position: 0 -16px; cursor: pointer; } |
