Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2008-05-11 12:07:40


Author: danieljames
Date: 2008-05-11 12:07:40 EDT (Sun, 11 May 2008)
New Revision: 45287
URL: http://svn.boost.org/trac/boost/changeset/45287

Log:
Remove the fixed line height as on some browsers it doesn't match the normal
line height and looks a bit wonky. Instead I added a class to the outer dl so
that the titles can clear the line, the field names and values are not aligned
on safari and opera, but the whole thing looks vaguely reasonable now.

Refs #1735.

Text files modified:
   website/public_html/beta/doc/libraries.php | 2 +-
   website/public_html/beta/style/css_0/content.css | 4 +++-
   2 files changed, 4 insertions(+), 2 deletions(-)

Modified: website/public_html/beta/doc/libraries.php
==============================================================================
--- website/public_html/beta/doc/libraries.php (original)
+++ website/public_html/beta/doc/libraries.php 2008-05-11 12:07:40 EDT (Sun, 11 May 2008)
@@ -99,7 +99,7 @@
                 <li>Key</li>
               </ul>
 
- <dl>
+ <dl class="library-list">
                 <?php
                 foreach ($libs->db as $key => $lib) {
                   $libversion = explode('.',$lib['boost-version']);

Modified: website/public_html/beta/style/css_0/content.css
==============================================================================
--- website/public_html/beta/style/css_0/content.css (original)
+++ website/public_html/beta/style/css_0/content.css 2008-05-11 12:07:40 EDT (Sun, 11 May 2008)
@@ -342,6 +342,9 @@
   padding: 0em 0em 0em 1em;
 }
 /* Field+value style lists... */
+#content .section dl.library-list dt {
+ clear: left;
+}
 #content .section dl.fields {
   margin: 0.5em 0em 0.5em 0em;
 }
@@ -352,7 +355,6 @@
   margin: 0em;
   font-style: italic;
   overflow: hidden;
- height: 1.3em;
 }
 #content .section dl.fields dt:after {
   content: ".....................................";


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk