diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-21 19:32:19 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-21 19:32:19 +0200 |
commit | f0070a15e4725255dad967bde76155a39d189631 (patch) | |
tree | 69bfdf8ddbc09467be830274f434190b42979aa1 /css/style.css | |
parent | 6f87a19714057e370a6b970bbfb82af5abd968f9 (diff) | |
download | wallabag-f0070a15e4725255dad967bde76155a39d189631.tar.gz wallabag-f0070a15e4725255dad967bde76155a39d189631.tar.zst wallabag-f0070a15e4725255dad967bde76155a39d189631.zip |
flash messages pour indiquer qu'une action s'est bien effectuée ou qu'il y a eu une erreur0.2
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 7fc8f056..36ebf85d 100644 --- a/css/style.css +++ b/css/style.css | |||
@@ -199,4 +199,19 @@ body.article { | |||
199 | } | 199 | } |
200 | } | 200 | } |
201 | 201 | ||
202 | 202 | /*** ***/ | |
203 | /*** MESSAGES ***/ | ||
204 | |||
205 | .messages { width: 100%; -moz-border-radius: 4px; border-radius: 4px; display: block; padding: 10px 0; margin: 10px auto 10px; clear: both; } | ||
206 | .messages a.closeMessage { margin: -14px -8px 0 0; display:none; width: 16px; height: 16px; float: right; background: url(../img/messages/close.png) no-repeat; } | ||
207 | /*.messages:hover a.closeMessage { visibility:visible; }*/ | ||
208 | .messages p { margin: 3px 0 3px 10px !important; padding: 0 10px 0 23px !important; font-size: 14px; line-height: 16px; } | ||
209 | .messages.error { border: 1px solid #C42608; color: #c00 !important; background: #FFF0EF; } | ||
210 | .messages.error p { background: url(../img/messages/cross.png ) no-repeat 0px 50%; color:#c00 !important; } | ||
211 | .messages.success {background: #E0FBCC; border: 1px solid #6DC70C; } | ||
212 | .messages.success p { background: url(../img/messages/tick.png) no-repeat 0px 50%; color: #2B6301 !important; } | ||
213 | .messages.warning { background: #FFFCD3; border: 1px solid #EBCD41; color: #000; } | ||
214 | .messages.warning p { background: url(../img/messages/warning.png ) no-repeat 0px 50%; color: #5F4E01; } | ||
215 | .messages.information, .messages.info { background: #DFEBFB; border: 1px solid #82AEE7; } | ||
216 | .messages.information p, .messages.info p { background: url(../img/messages/help.png ) no-repeat 0px 50%; color: #064393; } | ||
217 | .messages.information a { text-decoration: underline; } \ No newline at end of file | ||