2014-04-06 14:14:03 +00:00
|
|
|
/*
|
|
|
|
Flash Messages
|
|
|
|
*/
|
|
|
|
|
2014-04-08 23:28:46 +00:00
|
|
|
.flash {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include span-columns(12);
|
2014-04-29 18:18:14 +00:00
|
|
|
margin-bottom: 20px;
|
2014-04-27 23:58:11 +00:00
|
|
|
font-weight: 600;
|
2014-04-08 23:28:46 +00:00
|
|
|
|
|
|
|
&.notice {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include flash;
|
|
|
|
}
|
2014-04-08 23:28:46 +00:00
|
|
|
|
|
|
|
&.success {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include flash($flash-success);
|
2014-04-15 22:04:43 +00:00
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
&:before {
|
|
|
|
content: "\f00c";
|
|
|
|
}
|
|
|
|
}
|
2014-04-08 23:28:46 +00:00
|
|
|
|
|
|
|
&.error {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include flash($flash-error);
|
2014-04-15 22:04:43 +00:00
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
&:before {
|
|
|
|
content: "\f00d";
|
|
|
|
}
|
|
|
|
}
|
2014-04-08 23:28:46 +00:00
|
|
|
|
|
|
|
&.warning,
|
|
|
|
&.alert {
|
2014-04-06 14:14:03 +00:00
|
|
|
@include flash($flash-warning);
|
2014-04-15 22:04:43 +00:00
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
&:before {
|
|
|
|
content: "\f071";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-09 23:43:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Error Messages
|
|
|
|
*/
|
|
|
|
|
|
|
|
div#errors {
|
|
|
|
@extend .flash.error;
|
|
|
|
@include span-columns(12);
|
2014-04-29 18:18:14 +00:00
|
|
|
margin-bottom: 20px;
|
2014-04-09 23:43:20 +00:00
|
|
|
|
|
|
|
strong {
|
|
|
|
@include span-columns(12);
|
2014-04-29 18:18:14 +00:00
|
|
|
margin-bottom: 10px;
|
2014-04-09 23:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.errors {
|
|
|
|
@include span-columns(12);
|
|
|
|
|
|
|
|
li {
|
2014-04-29 18:18:14 +00:00
|
|
|
margin-bottom: 0;
|
2014-04-09 23:43:20 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|