-
-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icons too big in 2.6.3 #371
Comments
Seeing it too for Kdyby/Translation. The culprit is this part in the reset css: #tracy-debug * {
...
height: initial;
} The height attribute is then ignored (16 px) and the real value is used (32 px). Edit - Possible fix: #tracy-debug-bar img {
...
max-width: 1.23em;
max-height: 1.55em;
} Values used are from svg selector, just swapped for "max" variants. |
Do you mean that HTML attribute |
Not exactly ignored, but overruled by |
I simply can't understand how can global style (without !important) override inline style 🤯 |
@dg well, it is not an inline style but a html attribute. And they are overriden by css according to https://www.w3.org/TR/CSS21/cascade.html#preshint |
Oh, I see it! |
After 2.6.3 update the tracy bar somehow inflated:
2.6.2
2.6.3
It returns to normal if I disable either
width: initial;
orheight: initial;
from 1990958The text was updated successfully, but these errors were encountered: