From dd019ecf687299b0d2238312de7c476b2a263107 Mon Sep 17 00:00:00 2001 From: siikamiika Date: Mon, 27 Jan 2020 23:24:34 +0200 Subject: fix audio index in resultOutputMode = 'merge' --- ext/mixed/js/display.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ext/mixed/js') diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index c4be02f2..16bad3d9 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -176,7 +176,12 @@ class Display { const entry = link.closest('.entry'); const definitionIndex = this.entryIndexFind(entry); const expressionIndex = Display.indexOf(entry.querySelectorAll('.term-expression .action-play-audio'), link); - this.audioPlay(this.definitions[definitionIndex], expressionIndex, definitionIndex); + this.audioPlay( + this.definitions[definitionIndex], + // expressionIndex is used in audioPlay to detect result output mode + Math.max(expressionIndex, this.options.general.resultOutputMode === 'merge' ? 0 : -1), + definitionIndex + ); } onNoteAdd(e) { -- cgit v1.2.3 From dd700af0be94d33802dfc71e2c14abbad8a34578 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Wed, 29 Jan 2020 19:52:24 -0500 Subject: Fix tag double click --- ext/mixed/css/display.css | 8 ++++++-- ext/mixed/display-templates.html | 4 ++-- ext/mixed/js/display-generator.js | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) (limited to 'ext/mixed/js') diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 55e76ab7..8bbd5731 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -208,17 +208,21 @@ button.action-button { } .tag { - display: inline; + display: inline-block; padding: 0.2em 0.6em 0.3em; font-size: 75%; font-weight: 700; - line-height: 1; + line-height: 1.25; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25em; } +.tag-inner { + display: block; +} + .tag-list>.tag+.tag { margin-left: 0.375em; } diff --git a/ext/mixed/display-templates.html b/ext/mixed/display-templates.html index 62f3c69c..eda9abd9 100644 --- a/ext/mixed/display-templates.html +++ b/ext/mixed/display-templates.html @@ -75,7 +75,7 @@ - - + + diff --git a/ext/mixed/js/display-generator.js b/ext/mixed/js/display-generator.js index e1710488..8c39d380 100644 --- a/ext/mixed/js/display-generator.js +++ b/ext/mixed/js/display-generator.js @@ -252,8 +252,10 @@ class DisplayGenerator { createTag(details) { const node = DisplayGenerator._instantiateTemplate(this._tagTemplate); + const inner = node.querySelector('.tag-inner'); + node.title = details.notes; - node.textContent = details.name; + inner.textContent = details.name; node.dataset.category = details.category; return node; -- cgit v1.2.3 From db247a283784a0a01dca18f6afe325de7d110ba9 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Wed, 29 Jan 2020 20:47:24 -0500 Subject: Fix double clicking reason and glossary text --- ext/mixed/css/display.css | 12 +++++++++++- ext/mixed/display-templates.html | 4 ++-- ext/mixed/js/display-generator.js | 9 +++++++-- 3 files changed, 20 insertions(+), 5 deletions(-) (limited to 'ext/mixed/js') diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 8bbd5731..b70ede90 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -249,7 +249,7 @@ button.action-button { display: inline-block; } -.term-reasons>.term-reason+.term-reason:before { +.term-reasons>.term-reason+.term-reason-separator+.term-reason:before { content: " \00AB "; /* The two spaces is not a typo */ display: inline; } @@ -468,3 +468,13 @@ button.action-button { padding-left: 1.4em; list-style-type: decimal; } + +.term-glossary-separator, +.term-reason-separator { + display: inline-block; + width: 0; + height: 0; + font-size: 0; + opacity: 0; + white-space: pre; +} diff --git a/ext/mixed/display-templates.html b/ext/mixed/display-templates.html index eda9abd9..e762f66b 100644 --- a/ext/mixed/display-templates.html +++ b/ext/mixed/display-templates.html @@ -31,8 +31,8 @@
    - - + +