diff options
Diffstat (limited to 'ext/mixed')
-rw-r--r-- | ext/mixed/css/display.css | 16 | ||||
-rw-r--r-- | ext/mixed/js/display.js | 6 |
2 files changed, 19 insertions, 3 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 8b1819bd..cdc1be8c 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -84,6 +84,10 @@ hr { background-color: #aa66cc; } +.tag-frequency { + background-color: #5cb85c; +} + .actions .disabled { pointer-events: none; cursor: default; @@ -144,3 +148,15 @@ hr { padding: 0.01em; vertical-align: top; } + +.glyph-data { + margin-top: 10px; +} + +.info-output { + width: 100%; +} + +.info-output td { + text-align: right; +} diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 47efd195..75ee339a 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -32,11 +32,11 @@ class Display { } onError(error) { - throw 'override me'; + throw 'Override me'; } onSearchClear() { - throw 'override me'; + throw 'Override me'; } onSourceTermView(e) { @@ -350,7 +350,7 @@ class Display { Display.adderButtonFind(index, mode).addClass('disabled'); Display.viewerButtonFind(index).removeClass('pending disabled').data('noteId', noteId); } else { - throw 'note could note be added'; + throw 'Note could note be added'; } } catch (e) { this.onError(e); |