Skip to content

Commit

Permalink
Revert "[clang][dataflow] Show triangle in <details> element. (#67431
Browse files Browse the repository at this point in the history
…)"

This reverts commit fb933fc.

The commit broke buildbots due to non-ASCII characters in
HTMLLogger.css.
  • Loading branch information
martinboehme committed Sep 28, 2023
1 parent 63c1208 commit 3214f7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
15 changes: 2 additions & 13 deletions clang/lib/Analysis/FlowSensitive/HTMLLogger.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,10 @@ code.line:has(.bb-select):before {
font-size: x-small;
flex-grow: 1;
}
.value > summary {
.value summary {
background-color: #ace;
display: flex;
cursor: pointer;
}
.value > summary::before {
content: '►';
margin-right: 0.5em;
font-size: 0.9em;
}
.value[open] > summary::before {
content: '▼';
}
.value > summary > .location {
margin-left: auto;
justify-content: space-between;
}
.value .address {
font-size: xx-small;
Expand Down
2 changes: 1 addition & 1 deletion clang/lib/Analysis/FlowSensitive/HTMLLogger.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<template data-if="v.value_id"><span class="address">#{{v.value_id}}</span></template>
</span>
<template data-if="v.location">
<span class="location">{{v.type}} <span class="address">@{{v.location}}</span></span>
<span>{{v.type}} <span class="address">@{{v.location}}</span></span>
</template>
</summary>
<template
Expand Down

0 comments on commit 3214f7b

Please sign in to comment.