diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-08-28 13:19:49 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-08-28 13:19:49 +0000 |
| commit | af0e3217ae4d2e34de7bb90cd84f4ceff48a327e (patch) | |
| tree | 825e82af120b9c58cf6e158b94cdb3968b099e8f | |
| parent | ba876ea2cc10699f1d9ea8842f3982d8d97a2778 (diff) | |
[1.2.X] Fixed #13723 -- Improved the legibility of hyperlinks included in admin validation error messages. Thanks to Sebastian Noack for the suggestion and patch.
Backport of r13659 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13662 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/media/css/base.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/django/contrib/admin/media/css/base.css b/django/contrib/admin/media/css/base.css index 645f1725b5..9c1f71f810 100644 --- a/django/contrib/admin/media/css/base.css +++ b/django/contrib/admin/media/css/base.css @@ -478,6 +478,11 @@ ul.errorlist { background: red url(../img/admin/icon_alert.gif) 5px .3em no-repeat; } +.errorlist li a { + color: white; + text-decoration: underline; +} + td ul.errorlist { margin: 0 !important; padding: 0 !important; |
