Fixed: default theme is now enabled by default.
Added: close button to alerts Fixes #135
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
@import (less) "lib/font-awesome.min.css";
|
@import (less) "lib/font-awesome.min.css";
|
||||||
@import "lib/bootstrap/bootstrap";
|
@import "lib/bootstrap/bootstrap";
|
||||||
@import "lib/bootstrap-social";
|
@import "lib/bootstrap-social";
|
||||||
@import "themes/flatly";
|
@import "themes/default";
|
||||||
|
|
||||||
// Scaffolding
|
// Scaffolding
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
@ -1,13 +1,16 @@
|
|||||||
#flash
|
#flash
|
||||||
if messages.errors
|
if messages.errors
|
||||||
.alert.alert-danger.animated.fadeIn
|
.alert.alert-danger.animated.fadeIn
|
||||||
|
button.close(type='button', data-dismiss='alert') ×
|
||||||
for error in messages.errors
|
for error in messages.errors
|
||||||
div= error.msg
|
div= error.msg
|
||||||
if messages.info
|
if messages.info
|
||||||
.alert.alert-info.animated.fadeIn
|
.alert.alert-info.animated.fadeIn
|
||||||
|
button.close(type='button', data-dismiss='alert') ×
|
||||||
for info in messages.info
|
for info in messages.info
|
||||||
div= info.msg
|
div= info.msg
|
||||||
if messages.success
|
if messages.success
|
||||||
.alert.alert-success.animated.fadeIn
|
.alert.alert-success.animated.fadeIn
|
||||||
|
button.close(type='button', data-dismiss='alert') ×
|
||||||
for success in messages.success
|
for success in messages.success
|
||||||
div= success.msg
|
div= success.msg
|
Reference in New Issue
Block a user