about summary refs log tree commit diff stats
path: root/src/css/values.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/css/values.nim')
-rw-r--r--src/css/values.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/css/values.nim b/src/css/values.nim
index b55869f7..c7f7a5b7 100644
--- a/src/css/values.nim
+++ b/src/css/values.nim
@@ -131,9 +131,9 @@ func cells*(l: CSSLength): int =
 func listMarker*(t: CSSListStyleType, i: int): string =
   case t
   of LIST_STYLE_TYPE_NONE: return ""
-  of LIST_STYLE_TYPE_DISC: return "* "
-  of LIST_STYLE_TYPE_CIRCLE: return "o "
-  of LIST_STYLE_TYPE_SQUARE: return "O "
+  of LIST_STYLE_TYPE_DISC: return "• "
+  of LIST_STYLE_TYPE_CIRCLE: return "○ "
+  of LIST_STYLE_TYPE_SQUARE: return "□ "
   of LIST_STYLE_TYPE_DECIMAL: return $i & ". "
   of LIST_STYLE_TYPE_JAPANESE_INFORMAL: return japaneseNumber(i) & "、"