diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2008-12-29 21:25:09 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2008-12-29 21:25:09 +0000 |
commit | 9e6b68dc1ff3d75aec23d96cf592d57e90d4c8a5 (patch) | |
tree | ec4919a4123e6b1f270e72fe75f12930d937417b /docs | |
parent | 0427f7a4af91a8886339aa125fdbf09e182d4e5b (diff) | |
download | external_llvm-9e6b68dc1ff3d75aec23d96cf592d57e90d4c8a5.zip external_llvm-9e6b68dc1ff3d75aec23d96cf592d57e90d4c8a5.tar.gz external_llvm-9e6b68dc1ff3d75aec23d96cf592d57e90d4c8a5.tar.bz2 |
Minimize the width of the notes region: it will end where the text ends, if the
line of text is short enough, instead of stretching all the way to the right
margin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/llvm.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/llvm.css b/docs/llvm.css index 84af679..29d40c5 100644 --- a/docs/llvm.css +++ b/docs/llvm.css @@ -79,7 +79,7 @@ h3, .doc_subsubsection { margin: 2.0em 0.5em 0.5em 0.5em; pre.doc_code, .literal-block { padding: 1em 2em 1em 1em } .doc_notes { background: #fafafa; border: 1px solid #cecece; - padding: 0.1em } + display: table; padding: 0 1em 0 .1em } table.layout { text-align: left; border: none; border-collapse: collapse; padding: 4px 4px 4px 4px; } |