Commit 8f82e69861c50edb1628ad8439165a73eb0a9ff7
1 parent
0ef8cfb9
Exists in
master
and in
1 other branch
Fixing the .notice flash message padding on left. There is no icon for that so I…
… am moving it over. There is an unpredictable use of flash messages. Different plugins I think are specifying different classes for the successful message. For example, 'you have _successfully_ signed in' is NOT a .success message, where as you have successfully created your app is. etc.
Showing
1 changed file
with
5 additions
and
2 deletions
Show diff stats
public/stylesheets/application.css
... | ... | @@ -205,11 +205,14 @@ a.action { float: right; font-size: 0.9em;} |
205 | 205 | |
206 | 206 | /* Flash Messages */ |
207 | 207 | #flash-messages li { |
208 | - padding: 13px 45px; margin-bottom:25px; border: 1px solid #C6C6C6; | |
208 | + padding: 13px 45px; | |
209 | + margin-bottom:25px; | |
210 | + border: 1px solid #C6C6C6; | |
209 | 211 | background-color: #F9F9F9; |
210 | 212 | line-height: 1em; |
211 | 213 | } |
212 | -#flash-messages .notice { | |
214 | +#flash-messages li.notice { | |
215 | + padding-left: 20px; | |
213 | 216 | background-color: #b5eeff; |
214 | 217 | border: 1px solid #6cf; |
215 | 218 | } | ... | ... |