aboutsummaryrefslogtreecommitdiff
path: root/ext/js/pages
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-07-09 18:21:29 -0400
committerGitHub <noreply@github.com>2021-07-09 18:21:29 -0400
commit22f048e527552cf0451ea03e0e9bd869b6ad240b (patch)
tree12dd8346c4f4bb42905e2b91b25c25107aa24833 /ext/js/pages
parentd446484947d1d3c41cadf1d04dbdd4d69f89e3d1 (diff)
Update Anki field marker menu (#1816)
* Update anki field marker menu to have less vertical padding * Update positioning of field marker menu
Diffstat (limited to 'ext/js/pages')
-rw-r--r--ext/js/pages/settings/anki-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/pages/settings/anki-controller.js b/ext/js/pages/settings/anki-controller.js
index c0f7f626..1ec14c4b 100644
--- a/ext/js/pages/settings/anki-controller.js
+++ b/ext/js/pages/settings/anki-controller.js
@@ -241,7 +241,7 @@ class AnkiController {
for (const marker of markers) {
const option = document.createElement('button');
option.textContent = marker;
- option.className = 'popup-menu-item';
+ option.className = 'popup-menu-item popup-menu-item-thin';
option.dataset.menuAction = 'setFieldMarker';
option.dataset.marker = marker;
fragment.appendChild(option);