mirror of
https://github.com/conventional-commits/conventionalcommits.org.git
synced 2026-05-24 08:31:12 -05:00
[GH-ISSUE #396] Website languages dropdown is blurred #2778
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nicosh on GitHub (Sep 3, 2021).
Original GitHub issue: https://github.com/conventional-commits/conventionalcommits.org/issues/396
In Google Chrome 92 the items in languages dropdown are blurred :
Seems to fix the bug.
@damianopetrungaro commented on GitHub (Sep 3, 2021):
@lorenzodianni do you have time for this?
@lorenzodianni commented on GitHub (Sep 6, 2021):
Unfortunately
text-transform: inherit;will change the text behavior from Capitalized to PASCALCASEAnyway a don't see anymore the bug (Chrome v93), do you?
The problem could be the antialias and the computed font set to
12.8px. We could round up to13pxand should works without touch the text-transformBut in any case, if the problem is auto-resolved in v93, i don't think we need to apply anything. What do you think @damianopetrungaro?
@nicosh commented on GitHub (Sep 6, 2021):
@lorenzodianni, i still see the bug (Chrome v93).
Btw i dont think the problem is the
text-transformproperty (removingoverflow: auto;from parentulalso seems to remove the blur) rather i think is a Chrome/Windows bug (i have the same behaviour with edge, tested on 2 different computers).Edit
font-size: 13px;on.dropdown__optionsfix the issue in my case.@damianopetrungaro commented on GitHub (Sep 28, 2021):
@nicosh should be fixed, let me know if it is still not fixed re-opening the issue :D
@TinF9 commented on GitHub (Apr 10, 2023):
Hello all
The issue seems to be back (Chrome v 112).
One option that appears to fix it is reducing the
font-sizeto12pxon.dropdown__options.Another option is removing
overflow: auto(removing the scrollbar) on.dropdown__options.On mobile/tablet it is already looking all right.
@damianopetrungaro