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.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@813269 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/res/ui/admin.css b/webconsole/src/main/resources/res/ui/admin.css
index 698e3a7..81e13de 100644
--- a/webconsole/src/main/resources/res/ui/admin.css
+++ b/webconsole/src/main/resources/res/ui/admin.css
@@ -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;