From b355fb1c0a490ea51d751a413da183efc83c5d31 Mon Sep 17 00:00:00 2001 From: Aphanite Date: Wed, 12 Jun 2024 13:45:51 +0200 Subject: [PATCH] Change unicode characters to svg --- website/assets/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/assets/style.css b/website/assets/style.css index 7ad3423..d0f064e 100644 --- a/website/assets/style.css +++ b/website/assets/style.css @@ -251,10 +251,9 @@ code { } .col-lbl:before { - content: '►'; + /* Triangle pointing right */ + content: url('data:image/svg+xml;utf8,'); margin-right: 1em; - color: #555; - font-size: 0.8em; } .col-cnt { @@ -267,7 +266,8 @@ code { } .col-chk:checked ~ .col-lbl:before { - content: '▼'; + /* Triangle pointing down */ + content: url('data:image/svg+xml;utf8,'); } hr {