diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-10 05:14:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-10 05:14:32 +0000 |
commit | 2223622d113d7cba04c2dfdbe032e2ba6ba10bc4 (patch) | |
tree | 59df53b3d11846e949f15a762b37b0477ac9d992 /lib/Rewrite/HTMLRewrite.cpp | |
parent | 321abd4583dc02a254489132c5ccbe125d18ce4f (diff) |
Adjust HTML diagnostics CSS to not use "smaller" for font size and instead use
specific point sizes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66523 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Rewrite/HTMLRewrite.cpp')
-rw-r--r-- | lib/Rewrite/HTMLRewrite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Rewrite/HTMLRewrite.cpp b/lib/Rewrite/HTMLRewrite.cpp index fc6475b480..380f7da743 100644 --- a/lib/Rewrite/HTMLRewrite.cpp +++ b/lib/Rewrite/HTMLRewrite.cpp @@ -303,13 +303,13 @@ void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID, // Macros are position: relative to provide base for expansions. " position: relative }\n" " .num { width:2.5em; padding-right:2ex; background-color:#eeeeee }\n" - " .num { text-align:right; font-size: smaller }\n" + " .num { text-align:right; font-size:8pt }\n" " .num { color:#444444 }\n" " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n" " .line { white-space: pre }\n" " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n" " .msg { -webkit-border-radius:5px }\n" - " .msg { font-family:Helvetica, sans-serif; font-size: smaller }\n" + " .msg { font-family:Helvetica, sans-serif; font-size:8pt }\n" " .msg { float:left }\n" " .msg { padding:0.25em 1ex 0.25em 1ex }\n" " .msg { margin-top:10px; margin-bottom:10px }\n" |