diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 15:42:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 15:42:44 -0500 |
commit | 1b1b24ab35f80ee22ddbdc2172a25b9442bd5dce (patch) | |
tree | bddbffb9fcb1dac9ceece71e69dc916e3e0c0ae8 /ext/mixed/display-templates.html | |
parent | dcb75cce1e3590b4f1469c01a721e3ef3b319888 (diff) |
Entry indicator update (#1134)
* Move entry current indicator rules
* Simplify rules
* Add popupCurrentIndicatorMode option
* Add option to settings page
* Expose popupCurrentIndicatorMode
* Restore asterisk current indicator
* Implement dot
* Update action button vars
* Fix tests
* Add none option
* Add triangle option
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> |