Updated:Fix messages design
This commit is contained in:
parent
2f63e2fd64
commit
ba83ff0f41
1 changed files with 14 additions and 16 deletions
|
@ -4,32 +4,30 @@
|
||||||
|
|
||||||
{if $err.0 neq '' || $err.1 neq ''}
|
{if $err.0 neq '' || $err.1 neq ''}
|
||||||
|
|
||||||
<div class="msg error">
|
<div class="alert alert-danger">
|
||||||
<ul>
|
<button data-dismiss="alert" class="close" type="button">
|
||||||
|
<i class="icon-remove bigger-110"></i></button>
|
||||||
{foreach from=$err item=show_msg}
|
{foreach from=$err item=show_msg}
|
||||||
<li><img src="{$imageurl}/cross.png" />{$show_msg}</li>
|
<p><i class="icon-remove"></i>{$show_msg}</p>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{if $msg.0 neq ''}
|
{if $msg.0 neq ''}
|
||||||
<div class="msg blue">
|
<div class="alert alert-block alert-success"><button class="close" data-dismiss="alert" type="button">
|
||||||
<ul>
|
<i class="icon-remove"></i></button>
|
||||||
{foreach from=$msg item=show_msg}
|
{foreach from=$msg item=show_msg}
|
||||||
<li><img src="{$imageurl}/ok.png" />{$show_msg}</li>
|
<p ><i class="icon-ok bigger-110 green"></i>{$show_msg}</p>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{if $war.0 neq ''}
|
{if $war.0 neq ''}
|
||||||
<div class="msg blue">
|
<div class="alert alert-warning"><button data-dismiss="alert" class="close" type="button">
|
||||||
<ul>
|
<i class="icon-remove"></i></button>
|
||||||
{foreach from=$war item=show_msg}
|
{foreach from=$war item=show_msg}
|
||||||
<li><img src="{$imageurl}/error.png" />{$show_msg}</li>
|
<p><strong>Warning!</strong>{$show_msg}</p>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
Loading…
Add table
Reference in a new issue