Wallet/public/views/includes/notifications.html
Gustavo Maximiliano Cortez 4f899dd080 Fix style colors for wp8
2015-04-11 17:12:44 -03:00

14 lines
626 B
HTML

<div class="dr-notification-wrapper" ng-repeat="noti in queue" ng-click="removeNotification(noti)">
<div class="dr-notification animated bounceInDown">
<div class="dr-notification-image" ng-switch on="noti.image">
<i class="{{noti.icon}}" ng-switch-when="false"></i>
<img ng-src="{{noti.image}}" ng-switch-default />
</div>
<div class="dr-notification-content">
<h3 class="dr-notification-title">{{noti.title|translate}}</h3>
<div class="dr-notification-text label"
ng-style="{'background-color':noti.userData.color}">{{noti.content|translate}}</div>
</div>
</div>
</div>