-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[clang][dataflow] Show triangle in <details>
element.
#67431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,10 +122,21 @@ code.line:has(.bb-select):before { | |
font-size: x-small; | ||
flex-grow: 1; | ||
} | ||
.value summary { | ||
.value > summary { | ||
background-color: #ace; | ||
display: flex; | ||
justify-content: space-between; | ||
cursor: pointer; | ||
} | ||
.value > summary::before { | ||
content: '►'; | ||
margin-right: 0.5em; | ||
font-size: 0.9em; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without this, the triangle seemed a bit too big. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no accounting for taste I suppose :-) |
||
} | ||
.value[open] > summary::before { | ||
content: '▼'; | ||
} | ||
.value > summary > .location { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the second There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. True, it doesn't solve a problem ("space" would work just as well), but as the Is "descendant", rather than "child", considered to be the default in CSS? The former is syntactically shorter, but "child" is arguably the simpler concept. Or is "child" problematic because it makes the CSS more brittle (i.e. less resilient in the fact of changes to the HTML)? |
||
margin-left: auto; | ||
} | ||
.value .address { | ||
font-size: xx-small; | ||
|
Uh oh!
There was an error while loading. Please reload this page.