Return-Path: Delivered-To: apmail-forrest-svn-archive@www.apache.org Received: (qmail 35462 invoked from network); 4 Nov 2006 03:37:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Nov 2006 03:37:35 -0000 Received: (qmail 46585 invoked by uid 500); 4 Nov 2006 03:37:46 -0000 Delivered-To: apmail-forrest-svn-archive@forrest.apache.org Received: (qmail 46547 invoked by uid 500); 4 Nov 2006 03:37:46 -0000 Mailing-List: contact svn-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Forrest Developers List" List-Id: Delivered-To: mailing list svn@forrest.apache.org Received: (qmail 46536 invoked by uid 99); 4 Nov 2006 03:37:46 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 19:37:46 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 19:37:34 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 441801A9846; Fri, 3 Nov 2006 19:37:09 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r471107 - /forrest/trunk/main/webapp/skins/pelt/css/print.css Date: Sat, 04 Nov 2006 03:37:09 -0000 To: svn@forrest.apache.org From: gmcdonald@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061104033709.441801A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gmcdonald Date: Fri Nov 3 19:37:08 2006 New Revision: 471107 URL: http://svn.apache.org/viewvc?view=rev&rev=471107 Log: Fix last remaining CSS warning for print.css. screen.css and profile.css still to do. changed transparent value to inherit, transparent although legit does not pass CSS warnings, inherit in this case does not pose a problem. Modified: forrest/trunk/main/webapp/skins/pelt/css/print.css Modified: forrest/trunk/main/webapp/skins/pelt/css/print.css URL: http://svn.apache.org/viewvc/forrest/trunk/main/webapp/skins/pelt/css/print.css?view=diff&rev=471107&r1=471106&r2=471107 ============================================================================== --- forrest/trunk/main/webapp/skins/pelt/css/print.css (original) +++ forrest/trunk/main/webapp/skins/pelt/css/print.css Fri Nov 3 19:37:08 2006 @@ -31,12 +31,12 @@ padding: 0; float: none !important; color: black; - background: transparent; + background: inherit; } a:link, a:visited { color: #336699; - background: transparent; + background: inherit; text-decoration: underline; }