Path: blob/main/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/HTMLLogger.css
35267 views
/*===-- HTMLLogger.css ----------------------------------------------------===1*2* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3* See https://llvm.org/LICENSE.txt for license information.4* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5*6*===----------------------------------------------------------------------===*/7html { font-family: sans-serif; }8body { margin: 0; display: flex; justify-content: left; }9body > * { box-sizing: border-box; }10body > section {11border: 1px solid black;12min-width: 20em;13overflow: auto;14max-height: 100vh;15}16section header {17background-color: #008;18color: white;19font-weight: bold;20font-size: large;21padding-right: 0.5em;22}23section h2 {24font-size: medium;25margin-bottom: 0.5em;26padding-top: 0.5em;27border-top: 1px solid #aaa;28}29#timeline {30min-width: max-content;31counter-reset: entry_counter;32}33#timeline .entry .counter::before {34counter-increment: entry_counter;35content: counter(entry_counter) ":";36}37#timeline .entry .counter {38display: inline-block;39min-width: 2em; /* Enough space for two digits and a colon */40text-align: right;41}42#timeline .entry.hover {43background-color: #aaa;44}45#timeline .entry.iter-select {46background-color: #aac;47}4849#bb-elements {50font-family: monospace;51font-size: x-small;52border-collapse: collapse;53}54#bb-elements td:nth-child(1) {55text-align: right;56width: 4em;57border-right: 1px solid #008;58padding: 0.3em 0.5em;5960font-weight: bold;61color: #888;62};63#bb-elements tr.hover {64background-color: #abc;65}66#bb-elements tr.elt-select {67background-color: #acf;68}69#iterations {70display: flex;71}72#iterations .chooser {73flex-grow: 1;74text-align: center;75padding-left: 0.2em;76}77#iterations .chooser :last-child {78padding-right: 0.2em;79}80#iterations .chooser:not(.iter-select).hover {81background-color: #ddd;82}83#iterations .iter-select {84font-weight: bold;85}86#iterations .chooser:not(.iter-select) {87text-decoration: underline;88color: blue;89cursor: pointer;90background-color: #ccc;91}9293code.filename {94font-weight: bold;95color: black;96background-color: #ccc;97display: block;98text-align: center;99}100code.line {101display: block;102white-space: pre;103}104code.line:before { /* line numbers */105content: attr(data-line);106display: inline-block;107width: 2em;108text-align: right;109padding-right: 2px;110background-color: #ccc;111border-right: 1px solid #888;112margin-right: 8px;113}114code.line:has(.bb-select):before {115border-right: 4px solid black;116margin-right: 5px;117}118.c.hover, .bb.hover {119filter: saturate(200%) brightness(90%);120}121.c.elt-select {122box-shadow: inset 0 -4px 2px -2px #a00;123}124.bb.bb-select polygon {125stroke-width: 4px;126filter: brightness(70%) saturate(150%);127}128.bb { user-select: none; }129.bb polygon { fill: white; }130#cfg {131position: relative;132margin-left: 0.5em;133}134135.value {136border: 1px solid #888;137font-size: x-small;138flex-grow: 1;139}140.value > summary {141background-color: #ace;142display: flex;143cursor: pointer;144}145.value > summary::before {146content: '\25ba'; /* Black Right-Pointing Pointer */147margin-right: 0.5em;148font-size: 0.9em;149}150.value[open] > summary::before {151content: '\25bc'; /* Black Down-Pointing Triangle */152}153.value > summary > .location {154margin-left: auto;155}156.value .address {157font-size: xx-small;158font-family: monospace;159color: #888;160}161.value .property {162display: flex;163margin-top: 0.5em;164}165.value .property .key {166font-weight: bold;167min-width: 5em;168}169170171