fix display of icon in block alert heading
This commit is contained in:
parent
8f1a9ef8b5
commit
77cd327170
2 changed files with 10 additions and 6 deletions
|
@ -211,7 +211,6 @@ syncAlert rs = baseActivityAlert
|
|||
{ alertHeader = Just $ tenseWords
|
||||
[Tensed "Syncing" "Synced", "with", showRemotes rs]
|
||||
, alertData = []
|
||||
, alertBlockDisplay = True
|
||||
, alertPriority = Low
|
||||
}
|
||||
|
||||
|
|
|
@ -1,13 +1,18 @@
|
|||
<div .alert .fade .in .#{divclass} :block:.alert-block ##{alertid} :closable:onclick="(function( $ ) { $.get('@{closealert}') })( jQuery );">
|
||||
$if closable
|
||||
<a .close data-dismiss="alert">×</a>
|
||||
$case icon
|
||||
$of Nothing
|
||||
$of Just name
|
||||
<i class="icon-#{name}"></i> #
|
||||
$maybe h <- heading
|
||||
$if block
|
||||
<h4 .alert-heading>#{h}</h4> #
|
||||
<h4 .alert-heading>
|
||||
$case icon
|
||||
$of Nothing
|
||||
$of Just name
|
||||
<i class="icon-#{name}"></i> #
|
||||
#{h}
|
||||
$else
|
||||
$case icon
|
||||
$of Nothing
|
||||
$of Just name
|
||||
<i class="icon-#{name}"></i> #
|
||||
<strong>#{h}</strong> #
|
||||
#{message}
|
||||
|
|
Loading…
Add table
Reference in a new issue