File: HTMLLogger.css

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (142 lines) | stat: -rw-r--r-- 2,849 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*===-- HTMLLogger.css ----------------------------------------------------===
*
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
* See https://llvm.org/LICENSE.txt for license information.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
*===----------------------------------------------------------------------===*/
html { font-family: sans-serif; }
body { margin: 0; display: flex; justify-content: left; }
body > * { box-sizing: border-box; }
body > section {
  border: 1px solid black;
  min-width: 20em;
  overflow: auto;
  max-height: 100vh;
}
section header {
  background-color: #008;
  color: white;
  font-weight: bold;
  font-size: large;
}
section h2 {
  font-size: medium;
  margin-bottom: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid #aaa;
}
#timeline {
  min-width: 0;
}
#timeline .entry.hover {
  background-color: #aaa;
}
#timeline .entry.iter-select {
  background-color: #aac;
}

#bb-elements {
  font-family: monospace;
  font-size: x-small;
  border-collapse: collapse;
}
#bb-elements td:nth-child(1) {
  text-align: right;
  width: 4em;
  border-right: 1px solid #008;
  padding: 0.3em 0.5em;

  font-weight: bold;
  color: #888;
};
#bb-elements tr.hover {
  background-color: #abc;
}
#bb-elements tr.elt-select {
  background-color: #acf;
}
#iterations {
  display: flex;
}
#iterations .chooser {
  flex-grow: 1;
  text-align: center;
}
#iterations .chooser:not(.iter-select).hover {
  background-color: #aaa;
}
#iterations .iter-select {
  font-weight: bold;
  background-color: #ccc;
}
#iterations .chooser:not(.iter-select) {
  text-decoration: underline;
  color: blue;
}

code.filename {
  font-weight: bold;
  color: black;
  background-color: #ccc;
  display: block;
  text-align: center;
}
code.line {
  display: block;
  white-space: pre;
}
code.line:before { /* line numbers */
  content: attr(data-line);
  display: inline-block;
  width: 2em;
  text-align: right;
  padding-right: 2px;
  background-color: #ccc;
  border-right: 1px solid #888;
  margin-right: 8px;
}
code.line:has(.bb-select):before {
  border-right: 4px solid black;
  margin-right: 5px;
}
.c.hover, .bb.hover {
  filter: saturate(200%) brightness(90%);
}
.c.elt-select {
  box-shadow: inset 0 -4px 2px -2px #a00;
}
.bb.bb-select polygon {
  stroke-width: 4px;
  filter: brightness(70%) saturate(150%);
}
.bb { user-select: none; }
.bb polygon { fill: white; }
#cfg {
  position: relative;
  margin-left: 0.5em;
}

.value {
  border: 1px solid #888;
  font-size: x-small;
  flex-grow: 1;
}
.value summary {
  background-color: #ace;
  display: flex;
  justify-content: space-between;
}
.value .address {
  font-size: xx-small;
  font-family: monospace;
  color: #888;
}
.value .property {
  display: flex;
  margin-top: 0.5em;
}
.value .property .key {
  font-weight: bold;
  min-width: 5em;
}