From 326136e8a53c91dbd519eb440ac6b8a1dbec47c7 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 9 Jan 2006 02:04:21 +0000 Subject: [PATCH] Fixed #1144 -- Admin form buttons no longer assume black font color. Thanks, Daniel Poelzleithner git-svn-id: http://code.djangoproject.com/svn/django/trunk@1880 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- AUTHORS | 1 + django/contrib/admin/media/css/global.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 49bf7b56dda2e..b7c0994f0c7ff 100644 --- a/AUTHORS +++ b/AUTHORS @@ -82,6 +82,7 @@ answer newbie questions, and generally made Django that much better: phaedo Luke Plant plisk + Daniel Poelzleithner Brian Ray Oliver Rutherfurd David Schein diff --git a/django/contrib/admin/media/css/global.css b/django/contrib/admin/media/css/global.css index 9fa90d3542c3d..5e83cde3ccb06 100644 --- a/django/contrib/admin/media/css/global.css +++ b/django/contrib/admin/media/css/global.css @@ -133,7 +133,7 @@ textarea { vertical-align:top !important; } input[type=checkbox], input[type=radio] { border:none; } /* FORM BUTTONS */ -input[type=submit], input[type=button], .submit-row input { background:white url(../img/admin/nav-bg.gif) bottom repeat-x; padding:3px; } +input[type=submit], input[type=button], .submit-row input { background:white url(../img/admin/nav-bg.gif) bottom repeat-x; padding:3px; color:black; } input[type=submit]:active, input[type=button]:active { background-image:url(../img/admin/nav-bg-reverse.gif); background-position:top; } input[type=submit].default, .submit-row input.default { border:2px solid #5b80b2; background:#7CA0C7 url(../img/admin/default-bg.gif) bottom repeat-x; font-weight:bold; color:white; } input[type=submit].default:active { background-image:url(../img/admin/default-bg-reverse.gif); background-position:top; }