Commit ca1ab252a94becc49c6b78a50847e634165ffef0
1 parent
974fa50f
error reporting using repeated email
Showing
2 changed files
with
5 additions
and
3 deletions
Show diff stats
src/app/frontend/views/index.php
... | ... | @@ -219,7 +219,7 @@ $page_title = isset( $page_title ) && !empty( $page_title ) ? $page_title : ''; |
219 | 219 | <?php endforeach ?> |
220 | 220 | </ul> |
221 | 221 | </div> |
222 | - <?= $this->flash->output(); ?> | |
222 | + <div id="flash_output"><?= $this->flash->output(); ?></div> | |
223 | 223 | </div> |
224 | 224 | </div> |
225 | 225 | ... | ... |
www/css/main.css
... | ... | @@ -2609,7 +2609,7 @@ label.error { |
2609 | 2609 | |
2610 | 2610 | .successMessage,.errorMessage,.noticeMessage { |
2611 | 2611 | padding: 15px 20px; |
2612 | - margin: 20px 0 20px 0; | |
2612 | + margin: 10px 0 20px 0; | |
2613 | 2613 | border-radius: 5px; |
2614 | 2614 | -moz-border-radius: 5px; |
2615 | 2615 | -webkit-border-radius: 5px; |
... | ... | @@ -2617,7 +2617,9 @@ label.error { |
2617 | 2617 | font-size: 14px; |
2618 | 2618 | display: block |
2619 | 2619 | } |
2620 | - | |
2620 | +#flash_output div { | |
2621 | + margin: 30px 0 20px 0; | |
2622 | +} | |
2621 | 2623 | .successMessage a,.errorMessage a,.noticeMessage a { |
2622 | 2624 | color: #fff; |
2623 | 2625 | display: inline | ... | ... |