We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The css I used before to hide unnecessary data apparently stopped working, is anybody else experiencing this issue?
Microsoft Edge Version 131.0.2903.112
Yomitan version 24.12.18.1
The css I use for it:
/* remove misc dict classifications/codepoints/stats */ .kanji-glyph-data > tbody > tr:nth-child(n + 3) { display: none; } /* remove stroke diagram, freq, header for next entries */ div.entry[data-type='kanji']:nth-child(n + 2) .kanji-glyph-container, div.entry[data-type='kanji']:nth-child(n + 2) [data-section-type='frequencies'], div.entry[data-type='kanji']:nth-child(n + 2) table.kanji-glyph-data > tbody > tr:first-child { display: none; } /* remove 'No data found' */ .kanji-info-table-item-value-empty { display: none; } /* reduce extra padding */ .kanji-glyph-data, div.entry[data-type='kanji'], div.entry[data-type='kanji']:nth-child(n + 2) .kanji-glyph-data > tbody > tr > *, .kanji-glyph-data dl.kanji-readings-japanese, div.entry[data-type='kanji']:nth-child(n + 2) .kanji-glyph-data dl.kanji-readings-chinese[data-count='0'] { padding-top: 0 !important; padding-bottom: 0 !important; margin-bottom: 8px; margin-top: 0 !important; } /* remove horizontal lines */ .entry + .entry[data-type='kanji'], div#dictionary-entries > div.entry:nth-child(n + 2) .kanji-glyph-data > tbody > tr > * { border-top: none !important; } /* change decimal list */ .kanji-gloss-list { list-style-type: none; margin-left: -23px; }
The text was updated successfully, but these errors were encountered:
Try replacing .kanji-glyph-data with .kanji-glyph-table
.kanji-glyph-data
.kanji-glyph-table
Sorry, something went wrong.
Wow that fully fixed it! Appreciate it 🔥
No branches or pull requests
The css I used before to hide unnecessary data apparently stopped working, is anybody else experiencing this issue?
Microsoft Edge
Version 131.0.2903.112
Yomitan version
24.12.18.1
The css I use for it:
The text was updated successfully, but these errors were encountered: