From c977fbc8b493469a3dfa9b05bb879c317dce280c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ole=20Volds=C3=A6ter?= <ole.voldsater@uib.no>
Date: Thu, 11 Mar 2021 11:11:24 +0100
Subject: [PATCH] fikser meta#293

---
 src/components/Article.vue | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/components/Article.vue b/src/components/Article.vue
index b1fc1ac6..4c78811a 100644
--- a/src/components/Article.vue
+++ b/src/components/Article.vue
@@ -79,7 +79,8 @@ li.level2.definition {
 }
 
 li.level3.definition {
-  list-style: lower-alpha;
+  /* Norsk ordbok skal ha "lower.alpha" her */
+  list-style: disc;
 }
 
 li.sub_article > ul {
@@ -95,7 +96,8 @@ li.definition.level1, li.definition.level2 {
   color: var(--v-primary-base);
 }
 
-ol > li:only-child.level1, li:only-child.level2, li:only-child.level3 {
+ol > li:only-child.level1, li:only-child.level2 {
+  /* level3 a.k.a. underdefinisjoner skal vises med bullet selv om de st�r alene */
   list-style: none;
 }
 
-- 
GitLab