[Python-checkins] r71440 - in python/branches/release26-maint: Doc/tools/sphinxext/static/basic.css

georg.brandl python-checkins at python.org
Fri Apr 10 09:09:49 CEST 2009


Author: georg.brandl
Date: Fri Apr 10 09:09:49 2009
New Revision: 71440

Log:
Merged revisions 71424-71425,71428-71429 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71424 | raymond.hettinger | 2009-04-10 01:25:30 +0200 (Fr, 10 Apr 2009) | 1 line
  
  More table formatting.
........
  r71425 | raymond.hettinger | 2009-04-10 01:34:14 +0200 (Fr, 10 Apr 2009) | 1 line
  
  Center table headings.
........
  r71428 | raymond.hettinger | 2009-04-10 02:49:41 +0200 (Fr, 10 Apr 2009) | 1 line
  
  More table clean-up
........
  r71429 | raymond.hettinger | 2009-04-10 04:01:21 +0200 (Fr, 10 Apr 2009) | 1 line
  
  IE needs the border-left:0 for some reason.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/tools/sphinxext/static/basic.css

Modified: python/branches/release26-maint/Doc/tools/sphinxext/static/basic.css
==============================================================================
--- python/branches/release26-maint/Doc/tools/sphinxext/static/basic.css	(original)
+++ python/branches/release26-maint/Doc/tools/sphinxext/static/basic.css	Fri Apr 10 09:09:49 2009
@@ -256,16 +256,14 @@
 /* -- tables ---------------------------------------------------------------- */
 
 table.docutils {
-    border: 0;
+    border: 0 solid #dce;
     border-collapse: collapse;
 }
 
 table.docutils td, table.docutils th {
-    padding: 1px 8px 1px 5px;
-    border-top: 0;
-    border-left: 0;
-    border-right: 0;
-    border-bottom: 1px solid #aaa;
+    padding: 2px 5px 2px 5px;
+    border-left: 0;    
+    background-color: #eef;    
 }
 
 table.field-list td, table.field-list th {
@@ -276,10 +274,18 @@
     border: 0 !important;
 }
 
+table.docutils th {
+    border-top: 1px solid #cac;    
+    background-color: #ede;
+}
+
 th {
     text-align: left;
     padding-right: 5px;
-    background-color: #ede;
+}
+
+th.head {
+    text-align: center;    
 }
 
 /* -- other body styles ----------------------------------------------------- */


More information about the Python-checkins mailing list