ensl.org/app/assets/stylesheets/components/_flashes.scss
Luke Barratt cf8a92f628 Improved forms and error styling
Revert colour changes
2014-04-10 00:43:20 +01:00

65 lines
No EOL
810 B
SCSS

/*
Flash Messages
*/
.flash {
@include span-columns(12);
margin-bottom: em(20);
&.notice {
@include flash;
}
&.success {
@include flash($flash-success);
&:before {
content: "\f00c";
}
}
&.error {
@include flash($flash-error);
&:before {
content: "\f00d";
}
}
&.warning,
&.alert {
@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;
}
}
}
}