Skip to content

Commit

Permalink
bar.css: added all:revert (experimental)
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jan 2, 2020
1 parent f36b649 commit 2b958bb
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion src/Tracy/Bar/assets/bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
border-radius: 0;
box-shadow: none;
text-shadow: none;
box-sizing: border-box;
text-decoration: none;
text-transform: inherit;
white-space: inherit;
Expand All @@ -28,6 +27,8 @@
min-width: initial;
max-height: initial;
min-height: initial;
all: revert;
box-sizing: border-box;
}

#tracy-debug *:not(svg):not(img):not(table) {
Expand All @@ -40,6 +41,7 @@
#tracy-debug *:before,
#tracy-debug *:after {
all: unset;
all: revert;
}

#tracy-debug {
Expand All @@ -57,6 +59,17 @@ body#tracy-debug { /* in popup window */
top: 0;
}

#tracy-debug * {
font: inherit;
}

#tracy-debug ul,
#tracy-debug ol,
#tracy-debug pre {
margin: 0;
padding: 0;
}

#tracy-debug b,
#tracy-debug strong {
font-weight: bold;
Expand Down Expand Up @@ -403,6 +416,23 @@ body#tracy-debug .tracy-panel { /* in popup window */


/* toggle */
#tracy-debug .tracy-collapsed {
display: none;
}

#tracy-debug .tracy-toggle.tracy-collapsed {
display: inline;
}

#tracy-debug .tracy-toggle {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
user-select: none;
}

#tracy-debug .tracy-toggle:after {
content: "\A0\25BC";
opacity: .4;
Expand All @@ -413,6 +443,7 @@ body#tracy-debug .tracy-panel { /* in popup window */
}



@media print {
#tracy-debug * {
display: none;
Expand Down

0 comments on commit 2b958bb

Please sign in to comment.