287 lines
7.9 KiB
CSS
287 lines
7.9 KiB
CSS
|
|
/* noty bar */
|
|
.noty_bar {
|
|
position: fixed;
|
|
display: none;
|
|
z-index: 9999999;
|
|
}
|
|
|
|
/* noty_message */
|
|
.noty_bar .noty_message {
|
|
text-align: center;
|
|
}
|
|
|
|
/* noty close button */
|
|
.noty_bar .noty_close {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* noty modal */
|
|
.noty_modal {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #000;
|
|
z-index: 10000;
|
|
opacity: 0.6;
|
|
display: none;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
/* noty container for noty_layout_topLeft & noty_layout_topRight */
|
|
ul.noty_cont {
|
|
position: fixed;
|
|
z-index: 10000000;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
list-style: none;
|
|
width: 300px;
|
|
}
|
|
ul.noty_cont li {
|
|
position: relative;
|
|
float: left;
|
|
clear: both;
|
|
list-style: none;
|
|
padding: 0px;
|
|
margin: 10px 0 0 0;
|
|
width: 300px; /* Fix for: http://bugs.jquery.com/ticket/2278 */
|
|
}
|
|
ul.noty_cont.noty_layout_topLeft {left:20px; top:20px;}
|
|
ul.noty_cont.noty_layout_topRight {right:40px; top:20px;}
|
|
ul.noty_cont.noty_layout_bottomLeft {left:20px; bottom:20px}
|
|
ul.noty_cont.noty_layout_bottomRight {right:40px; bottom:20px}
|
|
ul.noty_cont.noty_layout_topRight li {float:right}
|
|
|
|
/* LAYOUTS */
|
|
|
|
/* noty_layout_top */
|
|
.noty_bar.noty_layout_top {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
-webkit-border-radius: 0px;
|
|
-moz-border-radius: 0px;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
/* noty_layout_bottom */
|
|
.noty_bar.noty_layout_bottom {
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
-webkit-border-radius: 0px;
|
|
-moz-border-radius: 0px;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
/* noty_layout_center */
|
|
.noty_bar.noty_layout_center {
|
|
top: 40%;
|
|
}
|
|
|
|
/* noty_layout_topLeft & noty_layout_topRight */
|
|
.noty_bar.noty_layout_topLeft,
|
|
.noty_bar.noty_layout_topRight,
|
|
.noty_bar.noty_layout_bottomLeft,
|
|
.noty_bar.noty_layout_bottomRight {
|
|
width: 100%;
|
|
clear: both;
|
|
position: relative;
|
|
}
|
|
|
|
.noty_bar.noty_layout_topLeft .noty_message,
|
|
.noty_bar.noty_layout_topRight .noty_message,
|
|
.noty_bar.noty_layout_bottomLeft .noty_message,
|
|
.noty_bar.noty_layout_bottomRight .noty_message {
|
|
text-align: left;
|
|
}
|
|
|
|
/* noty_layout_topCenter */
|
|
.noty_bar.noty_layout_topCenter {
|
|
top: 20px;
|
|
}
|
|
|
|
.noty_bar.noty_theme_default {
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAoCAYAAAAPOoFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNq81tsOgjAMANB2ov7/7ypaN7IlIwi9rGuT8QSc9EIDAsAznxvY4pXPKr05RUE5MEVB+TyWfCEl9LZApYopCmo9C4FKSMtYoI8Bwv79aQJU4l6hXXCZrQbokJEksxHo9KMOgc6w1atHXM8K9DVC7FQnJ0i8iK3QooGgbnyKgMDygBWyYFZoqx4qS27KqLZJjA1D0jK6QJcYEQEiWv9PGkTsbqxQ8oT+ZtZB6AkdsJnQDnMoHXHLGKOgDYuCWmYhEERCI5gaamW0bnHdA3k2ltlIN+2qKRyCND0bhqSYCyTB3CAOc4WusBEIpkeBuPgJMAAX8Hs1NfqHRgAAAABJRU5ErkJggg==') repeat-x scroll left top #fff;
|
|
}
|
|
|
|
/* if you use noty with customContainer you can access noty with this way
|
|
* .noty_custom_container noty will add automaticly this class to your customContainer
|
|
* .noty_theme_default your theme
|
|
* .noty_layout_inline your layout
|
|
*/
|
|
|
|
/* custom container */
|
|
.noty_custom_container.noty_theme_default.noty_layout_inline {
|
|
position: relative;
|
|
}
|
|
|
|
/* custom growl container */
|
|
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_cont.noty_layout_inline {
|
|
position: static;
|
|
}
|
|
/* custom noty bar */
|
|
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
position: static;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message {
|
|
font-size: 13px;
|
|
padding: 4px;
|
|
}
|
|
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message .noty_buttons {
|
|
margin-top: -1px;
|
|
}
|
|
|
|
/* noty_message */
|
|
.noty_bar.noty_theme_default .noty_message {
|
|
padding: 8px 14px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
width: auto;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_closable .noty_message {
|
|
padding: 8px 34px 8px 14px;
|
|
}
|
|
|
|
/* noty_buttons */
|
|
.noty_bar.noty_theme_default .noty_message .noty_buttons {
|
|
float: right;
|
|
font-size: 13px;
|
|
margin-top: -4px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
/* noty_button */
|
|
.noty_bar.noty_theme_default .noty_message .noty_buttons button {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
/* noty close button */
|
|
.noty_bar.noty_theme_default .noty_close {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAORJREFUeNq0lU0OgjAQhRm5gUl3rLyBB3BDQjwI4TDcgmu4NqwNJGxdueqWA4zzCJoxtvxoeckLzbz2C5ShEDNHDiXis/gkPooPY/0uvomv4ov48bUSQGUSF+Ka51WPc0kzNGwvLnm9ynHtB5B+hGkoaWDB/6t4AZOFe7ZkTxMAc1dqreU0TbnrunetbVvOsmzIPMoBrFwJYGgCY8wAgjFGDZlHFYCNK9EAXPUYmUcNgL0v1dAFMKjfRSsVx/H0hC0eOfhLmWwbfTcYozbXNsEbO/int8nhEPz4CnbAUuhfwFOAAQAA48KKOuexjwAAAABJRU5ErkJggg==');
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
/* noty modal */
|
|
.noty_modal.noty_theme_default {
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* LAYOUTS */
|
|
|
|
/* noty_layout_top */
|
|
.noty_bar.noty_theme_default.noty_layout_top {
|
|
border-bottom: 3px solid #eee;
|
|
}
|
|
|
|
/* noty_layout_bottom */
|
|
.noty_bar.noty_theme_default.noty_layout_bottom {
|
|
border-top: 3px solid #eee;
|
|
}
|
|
|
|
.noty_bar.noty_theme_default.noty_layout_center .noty_close {
|
|
top: 8px;
|
|
}
|
|
|
|
.noty_bar.noty_theme_default.noty_layout_center .noty_message .noty_buttons {
|
|
margin-top: -2px
|
|
}
|
|
|
|
/* noty_layout_topLeft & noty_layout_topRight */
|
|
.noty_bar.noty_theme_default.noty_layout_center,
|
|
.noty_bar.noty_theme_default.noty_layout_topLeft,
|
|
.noty_bar.noty_theme_default.noty_layout_topRight,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomLeft,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomRight {
|
|
border: 1px solid #eee;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_center .noty_message,
|
|
.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message,
|
|
.noty_bar.noty_theme_default.noty_layout_topRight .noty_message,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message .noty_buttons,
|
|
.noty_bar.noty_theme_default.noty_layout_topRight .noty_message .noty_buttons,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message .noty_buttons,
|
|
.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message .noty_buttons {
|
|
float: none;
|
|
border-top: 1px solid #CCCCCC;
|
|
margin-left: 0;
|
|
margin-top: 10px;
|
|
padding-top: 10px;
|
|
text-align: right;
|
|
}
|
|
|
|
/* noty_layout_topCenter */
|
|
.noty_bar.noty_theme_default.noty_layout_topCenter {
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message {
|
|
font-weight: normal;
|
|
font-size: 13px;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_topCenter .noty_close {
|
|
top: 50%;
|
|
margin-top: -10px;
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_topCenter.noty_success {
|
|
border: 1px solid #50C24E;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message .noty_buttons {
|
|
margin-left: 15px;
|
|
margin-top: 0px
|
|
}
|
|
|
|
/* NOTIFICATION TYPES */
|
|
|
|
/* noty_alert */
|
|
.noty_bar.noty_theme_default.noty_alert {
|
|
background-color: #fff;
|
|
border-color: #ccc;
|
|
}
|
|
/* noty_error */
|
|
.noty_bar.noty_theme_default.noty_error {
|
|
background-color: #DB1814;
|
|
color: #fff;
|
|
border-color: darkred;
|
|
}
|
|
.noty_bar.noty_theme_default.noty_error .noty_message {
|
|
font-weight: bold;
|
|
}
|
|
/* noty_success */
|
|
.noty_bar.noty_theme_default.noty_success {
|
|
background-color: lightgreen;
|
|
color: darkgreen;
|
|
border-color: #50C24E;
|
|
}
|
|
/* noty_alert */
|
|
.noty_bar.noty_theme_default.noty_information {
|
|
background-color: #57B7E2;
|
|
border-color: #0B90C4;
|
|
color: #fff;
|
|
}
|