ensl.org/app/assets/stylesheets/components/_flashes.scss

65 lines
810 B
SCSS
Raw Normal View History

2014-04-06 14:14:03 +00:00
/*
Flash Messages
*/
.flash {
2014-04-06 14:14:03 +00:00
@include span-columns(12);
margin-bottom: em(20);
&.notice {
2014-04-06 14:14:03 +00:00
@include flash;
}
&.success {
2014-04-06 14:14:03 +00:00
@include flash($flash-success);
&:before {
content: "\f00c";
}
}
&.error {
2014-04-06 14:14:03 +00:00
@include flash($flash-error);
&:before {
content: "\f00d";
}
}
&.warning,
&.alert {
2014-04-06 14:14:03 +00:00
@include flash($flash-warning);
&:before {
content: "\f071";
}
}
}
/*
Error Messages
*/
div#errors {
@extend .flash.error;
@include span-columns(12);
margin-bottom: em(20);
&:before {
height: 100%;
}
strong {
@include span-columns(12);
margin-bottom: em(10);
}
ul.errors {
@include span-columns(12);
li {
margin-bottom: .5em;
&:last-child {
margin-bottom: 0;
}
}
}
}