diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-27 16:54:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-27 16:54:15 -0500 |
commit | c4b2e83cb4291a3ad11d05a21a45701e3a407055 (patch) | |
tree | fc04f0219d927a6575e04618f2fa63a4083b7e96 /ext/js/display/display-generator.js | |
parent | 8d3436fca3885ba648e2c6f6bad4fa11bd8cb8c4 (diff) |
Organize display styles (#1452)
* Improve grouping for inflection and expression styles
* kanji-link => expression-kanji-link
* Remove unnecessary entry-header2 and entry-header3
* Move tag list into header for consistency with term definitions
* Move styles
* Add clear
Diffstat (limited to 'ext/js/display/display-generator.js')
-rw-r--r-- | ext/js/display/display-generator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 1a73ff80..32059d86 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -368,7 +368,7 @@ class DisplayGenerator { _createKanjiLink(character) { const node = document.createElement('a'); - node.className = 'kanji-link'; + node.className = 'expression-kanji-link'; this._setTextContent(node, character, 'ja'); return node; } |