File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
clang/lib/Analysis/FlowSensitive Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,16 @@ section h2 {
29
29
}
30
30
# timeline {
31
31
min-width : max-content;
32
+ counter-reset : entry_counter;
33
+ }
34
+ # timeline .entry .counter ::before {
35
+ counter-increment : entry_counter;
36
+ content : counter (entry_counter) ":" ;
37
+ }
38
+ # timeline .entry .counter {
39
+ display : inline-block;
40
+ min-width : 2em ; /* Enough space for two digits and a colon */
41
+ text-align : right;
32
42
}
33
43
# timeline .entry .hover {
34
44
background-color : # aaa ;
Original file line number Diff line number Diff line change 42
42
< header > Timeline</ header >
43
43
< template data-for ="entry in timeline ">
44
44
< div id ="{{entry.block}}:{{entry.iter}} " data-bb ="{{entry.block}} " class ="entry ">
45
+ < span class ="counter "> </ span >
45
46
{{entry.block}}
46
47
< template data-if ="entry.post_visit "> (post-visit)</ template >
47
48
< template data-if ="!entry.post_visit "> ({{entry.iter}})</ template >
You can’t perform that action at this time.
0 commit comments