1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-27 21:45:56 +00:00

ui: Add fontawesome-free, use in status & mailbox

This commit is contained in:
James Hillyerd
2018-12-23 13:55:43 -08:00
parent 1a8b5184cd
commit 6189b56b79
7 changed files with 1493 additions and 1465 deletions

View File

@@ -9,7 +9,8 @@ import DateFormat.Relative as Relative
import Html exposing (..)
import Html.Attributes
exposing
( class
( alt
, class
, classList
, download
, href
@@ -458,7 +459,11 @@ view session model =
, value model.searchInput
]
[]
, button [ onClick PurgeMailboxPrompt ] [ text "Purge" ]
, button
[ onClick PurgeMailboxPrompt
, alt "Purge Mailbox"
]
[ i [ class "fas fa-trash" ] [] ]
]
, viewMessageList session model
, main_