31 lines
1.0 KiB
Plaintext
31 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.icon.icon-notification-success
|
|
div.text
|
|
h4.warning Everything is ok
|
|
p Our oompa Loompas saved all your changes!
|
|
a.icon.icon-delete(href="", title="Close notification")
|
|
|
|
div.notification-message.notification-message-error
|
|
div.icon.icon-notification-error
|
|
div.text
|
|
h4.warning Oops, something happened...
|
|
p Our oompa Loompas are sad, your changes were not saved!
|
|
a.icon.icon-delete(href="", title="Close notification")
|
|
|
|
div.notification-light.notification-message-light-error
|
|
div.text
|
|
h4.warning Oops, something happened...
|
|
p Our oompa Loompas are sad, your changes were not saved!
|
|
a.icon.icon-delete(href="", title="Close notification")
|