aboutsummaryrefslogtreecommitdiff
path: root/ext/fg
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fg')
-rw-r--r--ext/fg/css/frame.css32
-rw-r--r--ext/fg/js/frame.js2
2 files changed, 14 insertions, 20 deletions
diff --git a/ext/fg/css/frame.css b/ext/fg/css/frame.css
index f270fa54..f07358aa 100644
--- a/ext/fg/css/frame.css
+++ b/ext/fg/css/frame.css
@@ -129,11 +129,7 @@ body {
display: inline-block;
}
-.term-glossary {
- font-family: vl-gothic-regular;
-}
-
-.term-glossary ol {
+.term-glossary ol, .term-glossary ul {
padding-left: 1.4em;
}
@@ -141,13 +137,14 @@ body {
color: #777;
}
-.term-glossary li span {
- color: #000;
- overflow-x: auto;
- white-space: pre;
+.term-glossary-group {
+ padding-bottom: 0.7em;
+ padding-top: 0.7em;
}
-.term-glossary p {
+.term-glossary-item {
+ color: #000;
+ font-family: vl-gothic-regular;
overflow-x: auto;
white-space: pre;
}
@@ -177,10 +174,6 @@ body {
font-family: vl-gothic-regular;
}
-.kanji-glossary {
- font-family: vl-gothic-regular;
-}
-
.kanji-glossary ol {
padding-left: 1.4em;
}
@@ -189,13 +182,14 @@ body {
color: #777;
}
-.kanji-glossary li span {
- color: #000;
- overflow-x: auto;
- white-space: pre;
+.kanji-glossary-group {
+ padding-bottom: 0.7em;
+ padding-top: 0.7em;
}
-.kanji-glossary p {
+.kanji-glossary-item {
+ color: #000;
+ font-family: vl-gothic-regular;
overflow-x: auto;
white-space: pre;
}
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js
index fc32a718..ad1c32e8 100644
--- a/ext/fg/js/frame.js
+++ b/ext/fg/js/frame.js
@@ -73,7 +73,7 @@ class Frame {
this.showSpinner(false);
window.scrollTo(0, 0);
- renderText(context, 'term-list.html').then(content => {
+ renderText(context, 'term-grouped-list.html').then(content => {
$('.content').html(content);
$('.action-add-note').click(this.onAddNote.bind(this));