Created Metro style

This commit is contained in:
Alexandre Junges
2014-01-17 13:15:09 -02:00
parent 27eea96855
commit 1b111dfcfa
4 changed files with 116 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
$.notify.addStyle("metro", {
html:
"<div>" +
"<div class='image' data-notify-html='image'/>" +
"<div class='text-wrapper'>" +
"<div class='title' data-notify-html='title'/>" +
"<div class='text' data-notify-html='text'/>" +
"</div>" +
"</div>",
classes: {
error: {
"color": "#fafafa !important",
"background-color": "#F71919",
"border": "1px solid #FF0026"
},
success: {
"background-color": "#32CD32",
"border": "1px solid #4DB149"
},
info: {
"color": "#fafafa !important",
"background-color": "#1E90FF",
"border": "1px solid #1E90FF"
},
warning: {
"background-color": "#FAFA47",
"border": "1px solid #EEEE45"
},
black: {
"color": "#fafafa !important",
"background-color": "#333",
"border": "1px solid #000"
},
white: {
"background-color": "#f1f1f1",
"border": "1px solid #ddd"
}
}
});