From a6dbb74ebbc09829695a1cd3adf7eea2624ebe20 Mon Sep 17 00:00:00 2001 From: Augustin Date: Wed, 12 Jul 2017 14:04:27 +0200 Subject: [PATCH] Non-breaking space before sorting symbols --- src/Table.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Table.elm b/src/Table.elm index f59d856..41a8af0 100644 --- a/src/Table.elm +++ b/src/Table.elm @@ -263,12 +263,12 @@ simpleTheadHelp ( name, status, click ) = darkGrey : String -> Html msg darkGrey symbol = - Html.span [ Attr.style "color" "#555" ] [ Html.text (" " ++ symbol) ] + Html.span [ Attr.style "color" "#555" ] [ Html.text ("\u{00A0}" ++ symbol) ] lightGrey : String -> Html msg lightGrey symbol = - Html.span [ Attr.style "color" "#ccc" ] [ Html.text (" " ++ symbol) ] + Html.span [ Attr.style "color" "#ccc" ] [ Html.text ("\u{00A0}" ++ symbol) ] simpleRowAttrs : data -> List (Attribute msg)