Return-Path: Delivered-To: apmail-felix-commits-archive@www.apache.org Received: (qmail 59574 invoked from network); 10 Sep 2009 07:13:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Sep 2009 07:13:11 -0000 Received: (qmail 88013 invoked by uid 500); 10 Sep 2009 07:13:11 -0000 Delivered-To: apmail-felix-commits-archive@felix.apache.org Received: (qmail 87957 invoked by uid 500); 10 Sep 2009 07:13:11 -0000 Mailing-List: contact commits-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list commits@felix.apache.org Received: (qmail 87947 invoked by uid 99); 10 Sep 2009 07:13:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Sep 2009 07:13:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Sep 2009 07:13:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DCD4C2388866; Thu, 10 Sep 2009 07:12:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r813269 - /felix/trunk/webconsole/src/main/resources/res/ui/admin.css Date: Thu, 10 Sep 2009 07:12:46 -0000 To: commits@felix.apache.org From: fmeschbe@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090910071246.DCD4C2388866@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fmeschbe Date: Thu Sep 10 07:12:46 2009 New Revision: 813269 URL: http://svn.apache.org/viewvc?rev=813269&view=rev Log: IE7 and Opera10 inherit the left/right border configuration from the td element CSS even on the td elements of class content. Fix by creating a td element content class definition explicitly switching left/right borders off. Modified: felix/trunk/webconsole/src/main/resources/res/ui/admin.css Modified: felix/trunk/webconsole/src/main/resources/res/ui/admin.css URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/admin.css?rev=813269&r1=813268&r2=813269&view=diff ============================================================================== --- felix/trunk/webconsole/src/main/resources/res/ui/admin.css (original) +++ felix/trunk/webconsole/src/main/resources/res/ui/admin.css Thu Sep 10 07:12:46 2009 @@ -86,6 +86,16 @@ border-right: 1px solid #cccccc; } +/* + * Disable left and right border on content table rows. Opera 10 and IE 7 + * would otherwise render the left and right borders inherited from the tr + * definition + */ +tr.content { + border-left: none; + border-right: none; +} + td.content { color: #333333; border: 0px solid #66dd44;