Skip to content

Commit

Permalink
dumper: fixed first line indentation [Closes #475]
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Apr 5, 2021
1 parent 00563f3 commit 2155db4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Tracy/Bar/assets/bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -411,13 +411,13 @@ body#tracy-debug .tracy-panel { /* in popup window */
}

#tracy-debug .tracy-dump-lq {
margin-left: -1ex;
margin-left: calc(-1ex - 1px);
}

#tracy-debug div.tracy-dump-string:before {
content: '';
position: absolute;
left: 3ex;
left: calc(3ex - 1px);
top: 1.5em;
bottom: 0;
border-left: 1px solid rgba(0, 0, 0, .1);
Expand Down
4 changes: 2 additions & 2 deletions src/Tracy/Dumper/assets/dumper-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
}

.tracy-dark .tracy-dump-lq {
margin-left: -1ex;
margin-left: calc(-1ex - 1px);
}

.tracy-dark div.tracy-dump-string:before {
content: '';
position: absolute;
left: 3ex;
left: calc(3ex - 1px);
top: 1.5em;
bottom: 0;
border-left: 1px solid rgba(255, 255, 255, .1);
Expand Down
4 changes: 2 additions & 2 deletions src/Tracy/Dumper/assets/dumper-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
}

.tracy-light .tracy-dump-lq {
margin-left: -1ex;
margin-left: calc(-1ex - 1px);
}

.tracy-light div.tracy-dump-string:before {
content: '';
position: absolute;
left: 3ex;
left: calc(3ex - 1px);
top: 1.5em;
bottom: 0;
border-left: 1px solid rgba(0, 0, 0, .1);
Expand Down

0 comments on commit 2155db4

Please sign in to comment.