Update of /cvsroot/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9929

Modified Files:
      Tag: RC_1_34_0
        rst.css 
Log Message:
Doc and build fixes by Dave Abrahams.

Index: rst.css
===================================================================
RCS file: /cvsroot/boost/boost/rst.css,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -u -d -r1.9.2.2 -r1.9.2.3
--- rst.css     3 Jan 2007 17:07:49 -0000       1.9.2.2
+++ rst.css     6 Jul 2007 19:47:15 -0000       1.9.2.3
@@ -62,27 +62,34 @@
     Tables
 =============================================================================*/
 
-    table.table
+/* The only clue docutils gives us that tables are logically tables,
+   and not, e.g., footnotes, is that they have border="1".  Therefore
+   we're keying off of that.  We used to manually patch docutils to
+   add a "table" class to all logical tables, but that proved much too
+   fragile.
+*/
+
+    table[border="1"]
     {
         width: 92%;
         margin-left: 4%;
         margin-right: 4%;
     }
     
-    table.table
+    table[border="1"]
     {
         padding: 4px;
     }
     
     /* Table Cells */
-    table.table tr td
+    table[border="1"] tr td
     {
         padding: 0.5em;
         text-align: left;
         font-size: 9pt;
     }
 
-    table.table tr th
+    table[border="1"] tr th
     {
         padding: 0.5em 0.5em 0.5em 0.5em;
         border: 1pt solid white;
@@ -93,12 +100,12 @@
     {
     
     /* Tables */
-        table.table tr td
+        table[border="1"] tr td
         {
             border: 1px solid #DCDCDC;
         }
     
-        table.table tr th
+        table[border="1"] tr th
         {
             background-color: #F0F0F0;
             border: 1px solid #DCDCDC;


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to