Skip to content

Commit

Permalink
css: non-latin characters are encoded
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jan 29, 2017
1 parent 9acdbe1 commit 2867972
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Tracy/assets/Bar/bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -347,12 +347,12 @@ body#tracy-debug .tracy-panel { /* in popup window */

/* toggle */
#tracy-debug .tracy-toggle:after {
content: " ▼";
content: "\A0\25BC";
opacity: .4;
}

#tracy-debug .tracy-toggle.tracy-collapsed:after {
content: " ►";
content: "\A0\25BA";
}


Expand Down
4 changes: 2 additions & 2 deletions src/Tracy/assets/BlueScreen/bluescreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ html.tracy-js #tracy-bs .tracy-toggle.tracy-collapsed {
}

#tracy-bs .tracy-toggle:after {
content: " ▼";
content: "\A0\25BC";
opacity: .4;
}

#tracy-bs .tracy-toggle.tracy-collapsed:after {
content: " ►";
content: "\A0\25BA";
opacity: .4;
}

Expand Down
4 changes: 2 additions & 2 deletions src/Tracy/assets/Toggle/toggle.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
}

.tracy-toggle:after {
content: " ▼";
content: "\A0\25BC";
opacity: .4;
}

.tracy-toggle.tracy-collapsed:after {
content: " ►";
content: "\A0\25BA";
}

0 comments on commit 2867972

Please sign in to comment.