diff options
Diffstat (limited to 'ext/mixed/display-templates.html')
-rw-r--r-- | ext/mixed/display-templates.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ext/mixed/display-templates.html b/ext/mixed/display-templates.html index 40d11d7a..3f6437ee 100644 --- a/ext/mixed/display-templates.html +++ b/ext/mixed/display-templates.html @@ -2,7 +2,7 @@ <!-- Term entry templates --> <template id="term-entry-template" data-remove-whitespace-text="true"><div class="entry" data-type="term"> - <div class="entry-current-indicator" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"></div> + <div class="entry-current-indicator" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"><span class="entry-current-indicator-inner"></span></div> <div class="entry-header1"> <div class="entry-header2"> <div class="entry-header3"> @@ -11,6 +11,7 @@ <button class="action-button action-add-note" hidden disabled data-icon="add-term-kanji" data-mode="term-kanji" title="Add expression (Alt + E)"></button> <button class="action-button action-add-note" hidden disabled data-icon="add-term-kana" data-mode="term-kana" title="Add reading (Alt + R)"></button> <button class="action-button action-play-audio" data-icon="play-audio" title="Play audio (Alt + P)"></button> + <span class="entry-current-indicator-icon" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"></span> </div> <div class="term-expression-list"></div> </div> @@ -26,7 +27,9 @@ </div></template> <template id="term-expression-template" data-remove-whitespace-text="true"><div class="term-expression"> <div class="term-expression-text-container"> - <span class="term-expression-text source-text"></span> + <span class="term-expression-text source-text"> + <span class="term-expression-current-indicator"></span> + </span> </div> <div class="term-expression-details"> <button class="action-button action-play-audio" data-icon="play-audio" title="Play audio"></button> @@ -55,13 +58,14 @@ <!-- Kanji entry templates --> <template id="kanji-entry-template"><div class="entry" data-type="kanji"> - <div class="entry-current-indicator" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"></div> + <div class="entry-current-indicator" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"><span class="entry-current-indicator-inner"></span></div> <div class="entry-header1"> <div class="entry-header2"> <div class="entry-header3"> <div class="actions"> <button class="action-button action-view-note" hidden disabled data-icon="view-note" title="View added note (Alt + V)"></button> <button class="action-button action-add-note" hidden disabled data-icon="add-term-kanji" data-mode="kanji" title="Add Kanji (Alt + K)"></button> + <span class="entry-current-indicator-icon" title="Current entry (Alt + Up/Down/Home/End/PgUp/PgDn)"></span> </div> <div class="kanji-glyph source-text"></div> </div> |