diff options
author | Valeriy Savchenko <vsavchenko@apple.com> | 2020-12-09 14:08:43 +0300 |
---|---|---|
committer | Valeriy Savchenko <vsavchenko@apple.com> | 2021-08-02 19:15:01 +0300 |
commit | 9e02f58780ab8734e5d27a0138bd477d18ae64a1 (patch) | |
tree | 2d4eac68c5adcce491ccef8d4dcffc4b697560f8 /clang/lib/Rewrite/HTMLRewrite.cpp | |
parent | 97bcafa28deb95ad32f83fe339d78454d899ca1b (diff) | |
download | llvm-9e02f58780ab8734e5d27a0138bd477d18ae64a1.zip llvm-9e02f58780ab8734e5d27a0138bd477d18ae64a1.tar.gz llvm-9e02f58780ab8734e5d27a0138bd477d18ae64a1.tar.bz2 |
[analyzer] Highlight arrows for currently selected event
In some cases, when the execution path of the diagnostic
goes back and forth, arrows can overlap and create a mess.
Dimming arrows that are not relevant at the moment, solves this issue.
They are still visible, but don't draw too much attention.
Differential Revision: https://reviews.llvm.org/D92928
Diffstat (limited to 'clang/lib/Rewrite/HTMLRewrite.cpp')
-rw-r--r-- | clang/lib/Rewrite/HTMLRewrite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Rewrite/HTMLRewrite.cpp b/clang/lib/Rewrite/HTMLRewrite.cpp index 496b8c5..371557a 100644 --- a/clang/lib/Rewrite/HTMLRewrite.cpp +++ b/clang/lib/Rewrite/HTMLRewrite.cpp @@ -392,7 +392,7 @@ h1 { font-size:14pt } .CodeInsertionHint { font-weight: bold; background-color: #10dd10 } .CodeRemovalHint { background-color:#de1010 } .CodeRemovalHint { border-bottom:1px solid #6F9DBE } -.selected{ background-color:orange !important; } +.msg.selected{ background-color:orange !important; } table.simpletable { padding: 5px; |