Make doc_code shrink-to-fit. This only works in mozilla, but it doesn't
authorChris Lattner <sabre@nondot.org>
Mon, 24 May 2004 18:05:58 +0000 (18:05 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 24 May 2004 18:05:58 +0000 (18:05 +0000)
hurt legibility on IE

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13720 91177308-0d34-0410-b5e6-96231b3b80d8

docs/llvm.css

index a89ca0e79e9d6a98cd88704f55030e31fb574692..fcde70df71bb91333054508a15c7069a13fe2634 100644 (file)
@@ -54,5 +54,7 @@ address     { clear: right; }
 .doc_warning    { color: red; font-weight: bold }
 
 .doc_code       { border: solid 1px gray; background: #eeeeee;
-                  margin: 0 0 0 1em; 
-                  padding: 0 0 0 1em }
+                  margin: 0 1em 0 1em; 
+                  padding: 0 1em 0 1em;
+                  display:table;
+                }