diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-04-13 19:29:56 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-04-13 19:29:56 +0200 |
commit | ce3fcb72f2d5d154461a14183069bf87db1e5776 (patch) | |
tree | 34364d5cf6ef977599a465f08b57d4fe432fc750 /assets | |
parent | 5d1d446ff8a7e63562a0cafac6214b473f3f9baf (diff) | |
download | wcms-ce3fcb72f2d5d154461a14183069bf87db1e5776.tar.gz wcms-ce3fcb72f2d5d154461a14183069bf87db1e5776.zip |
first arrival of flash messages close #85
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/home.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index 2ac00a8..6f6700d 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -11,6 +11,27 @@ } +.flashmessage { + color: white; + border: solid white 1px; +} + +.flashmessage li.alert-info { + background-color: grey; +} + +.flashmessage li.alert-warning { + background-color: orange; +} + +.flashmessage li.alert-success { + background-color: green; +} + +.flashmessage li.alert-error { + background-color: red; +} + div#options, article#main { min-width: 180px; overflow-y: auto; @@ -652,3 +673,4 @@ footer { + |