You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, after upgrade from 2.8.9 to 2.9.1, Tracy´s CSS is getting overriden by CSS from my web app. Not sure, what actually happened, but with 2.8.9, everything was OK, now, I´m getting white texts (and other stuff like active elements) in every panel but System info. It´s taking white text color from my dark admin theme.
Steps To Reproduce
I can make screenshots, but these overrides Tracy´s text color in Router or variable names in dump panel:
The specificity of CSS styles has changed in Tracy 2.9. It used to actively turn off and overwrite other styles, but it is not doing it as strong now. So the intention is to give user styles the chance to "infiltrate" Tracy (see issue #533)
Unwanted styles can affect Tracy, when is class added to <html> or <body> elements (System info panel should be placed in html > body > tracy-div > div > div.tracy-panel). Which is probably the case here.
Version: 2.9.1
Bug Description
Hi, after upgrade from 2.8.9 to 2.9.1, Tracy´s CSS is getting overriden by CSS from my web app. Not sure, what actually happened, but with 2.8.9, everything was OK, now, I´m getting white texts (and other stuff like active elements) in every panel but System info. It´s taking white text color from my dark admin theme.
Steps To Reproduce
I can make screenshots, but these overrides Tracy´s text color in Router or variable names in dump panel:
.mod-skin-dark:not(.mod-skin-light) code {
...background: rgba(0, 0, 0, 0.3);
color: #ffffff;
}
.mod-skin-dark:not(.mod-skin-light) pre {
color: #ffffff;
}
Css is normally linked in header(). It´s from large admin design template, it has color switcher for light/dark version.
Expected Behavior
Previous behaviour I guess. It should not be possible to override Tracy´s css from web´s css.
The text was updated successfully, but these errors were encountered: