mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
960e8b5a21
Added styling to private messages Updated puma config and deployment scripts
64 lines
No EOL
781 B
SCSS
64 lines
No EOL
781 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);
|
|
|
|
strong {
|
|
@include span-columns(12);
|
|
margin-bottom: em(10);
|
|
}
|
|
|
|
ul.errors {
|
|
@include span-columns(12);
|
|
|
|
li {
|
|
margin-bottom: .5em;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
} |