taiga-front/app/partials/includes/components/notification-message.jade

33 lines
1.0 KiB
Plaintext

//- To Aadd a new notification type:
//-
//- div.hidden.notification-message.notification-message-< type >
//- (...)
//- h4 < title >
//- (...)
//- p < message >
//- (...)
//-
//-See coffe/modules/base/confirm.coffee
div.notification-message.notification-message-success
div.text
h4.warning(translate="NOTIFICATION.OK")
p(translate="NOTIFICATION.SAVED")
div.notification-message.notification-message-error
svg.icon.icon-error
use(xlink:href="#icon-error")
div.text
h4.warning(translate="NOTIFICATION.WARNING")
p(translate="NOTIFICATION.WARNING_TEXT")
svg.icon.icon-close(href="", title="{{'NOTIFICATION.CLOSE' | translate}}")
use(xlink:href="#icon-close")
div.notification-light.notification-message-light-error
div.text
h4.warning(translate="NOTIFICATION.WARNING")
p(translate="NOTIFICATION.WARNING_TEXT")
a.close(href="", title="{{'NOTIFICATION.CLOSE' | translate}}")
svg.icon.icon-close
use(xlink:href="#icon-close")