diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-02 21:42:01 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-02 21:42:01 +0000 |
commit | 2f10398814e8d58cce029a7e73af21bb274dcd42 (patch) | |
tree | 4dd4389ae2175e6de862dcb0815a66fdeab910fc /lib/Rewrite/HTMLRewrite.cpp | |
parent | 025fedcbb98870e7739c942cee68c6f1c512bc46 (diff) |
Update HTML diagnostics to honor the different between 'event' and 'control-flow' diagnostics.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65877 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Rewrite/HTMLRewrite.cpp')
-rw-r--r-- | lib/Rewrite/HTMLRewrite.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Rewrite/HTMLRewrite.cpp b/lib/Rewrite/HTMLRewrite.cpp index 692af80488..b1f5cee366 100644 --- a/lib/Rewrite/HTMLRewrite.cpp +++ b/lib/Rewrite/HTMLRewrite.cpp @@ -307,15 +307,16 @@ void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID, " .num { color:#444444 }\n" " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n" " .line { white-space: pre }\n" - " .msg { background-color:#fff8b4; color:#000000 }\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-weight: bold }\n" " .msg { float:left }\n" " .msg { padding:0.5em 1ex 0.5em 1ex }\n" " .msg { margin-top:10px; margin-bottom:10px }\n" + " .msg { font-weight:bold }\n" " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap;}\n" + " .msgEvent { background-color:#fff8b4; color:#000000 }\n" + " .msgControl { background-color:#bbbbbb; color:#444444 }\n" " .mrange { background-color:#dfddf3 }\n" " .mrange { border-bottom:1px solid #6F9DBE }\n" " .PathIndex { font-weight: bold }\n" |