fontcombinator
fontcombinator copied to clipboard
one bug, one suggestion
Just found this nice tool and would love to contribute. For now I've found one issue:
The fonts dropdown list doesn't show the font name unless you are hovering it. Actually, it's just inheriting the color from the form element (which is white). So adding:
.chosen-container { color: black; }
solves it.
On the other hand, it might be nice to have different colors or shades of black on the first screen, to let the user know there are three editable elements (for example, making the subhead gray by default).
Thanks for the tool!
Yes, for both dropdown items have white color as like background, so they don't show. Secreenshot:
To be more specific, the following CSS codes resolves it:
.chosen-container .chosen-drop { color: #000; }