From a4d2d0bedd505c0d5389e81ecb6b694f6d1d3554 Mon Sep 17 00:00:00 2001 From: girst Date: Sun, 30 Apr 2023 12:52:47 +0000 Subject: [PATCH] use flash close mark from BMP replaces VERY HEAVY SALTIRE from the SMP with MULTIPLICATION X from the BMP. the closer equivalent would have been HEAVY MULTIPLICATION X, but I like the sleeker look. this was done for client compatibility; especially mobile browsers lack the former glyph. --- app/static/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index 1586add..fdaf591 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -52,8 +52,8 @@ article { margin-right: -.5em; } .flashes>li .flash-close::before { - content: '\1f7ad'; - font-size: larger; + content: '\2715'; + vertical-align: middle; cursor: pointer; } .flashes>li.message .flash-close::before:hover, -- 2.39.3