You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/06/04 22:29:39 UTC

svn commit: r1346147 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Author: gjm
Date: Mon Jun  4 20:29:38 2012
New Revision: 1346147

URL: http://svn.apache.org/viewvc?rev=1346147&view=rev
Log:
theme: add styles for wiki tables to the theme css - for #97

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1346147&r1=1346146&r2=1346147&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css Mon Jun  4 20:29:38 2012
@@ -418,4 +418,23 @@ input[type="submit"].btn.btn-micro {
 }
 /* @end */
 
+/* @group Wiki Tables */
+
+TABLE.wiki {
+  border: 1px solid #CCCCCC;
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+
+TABLE.wiki td {
+  border: 1px solid #CCCCCC;
+  padding: 0.1em 0.25em;
+}
+
+TABLE.wiki th {
+  border: 1px solid #BBBBBB;
+  padding: 0.1em 0.25em;
+  background-color: #F7F7F7;
+}
+/* @end */