Commit 3043f41d0a8c95a77e06274b133998f9b5a4e884
1 parent
e9e4fc2b
KTS-3077
"Error dialogs are not displayed correctly" Fixed. Fixed text overlapping the bottom of the block. Fixed holes in the side of the block. Committed By: Jonathan Byrne Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8135 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
6 additions
and
2 deletions
resources/css/kt-framing.css
| ... | ... | @@ -1022,7 +1022,7 @@ a.main_nav_item { |
| 1022 | 1022 | |
| 1023 | 1023 | /* block level. */ |
| 1024 | 1024 | .ktError { |
| 1025 | - padding: 0.1em 1em; | |
| 1025 | + padding: 0.1em 1em 1em 1em; | |
| 1026 | 1026 | margin: 1em 0 0 0.5em; |
| 1027 | 1027 | } |
| 1028 | 1028 | |
| ... | ... | @@ -1034,7 +1034,7 @@ a.main_nav_item { |
| 1034 | 1034 | |
| 1035 | 1035 | /* block level. */ |
| 1036 | 1036 | .ktInfo { |
| 1037 | - padding: 0.1em 1em; | |
| 1037 | + padding: 0.1em 1em 1em 1em; | |
| 1038 | 1038 | margin: 1em 0 0 0.5em; |
| 1039 | 1039 | } |
| 1040 | 1040 | ... | ... |
templates/kt3/standard_page.smarty
| ... | ... | @@ -252,6 +252,8 @@ |
| 252 | 252 | <!-- any status / error messages get added here. --> |
| 253 | 253 | {if (!empty($page->errStack))} |
| 254 | 254 | <div class="ktError"> |
| 255 | + <div class="error_dashlet_rightrepeat_top"></div> | |
| 256 | + <div class="error_dashlet_leftrepeat_top"></div> | |
| 255 | 257 | <div class="error_dashlet_rightrepeat_bottom"></div> |
| 256 | 258 | <div class="error_dashlet_leftrepeat_bottom"></div> |
| 257 | 259 | {foreach item=sError from=$page->errStack} |
| ... | ... | @@ -275,6 +277,8 @@ |
| 275 | 277 | |
| 276 | 278 | {if (!empty($page->infoStack))} |
| 277 | 279 | <div class="ktInfo"> |
| 280 | + <div class="info_dashlet_rightrepeat_top"></div> | |
| 281 | + <div class="info_dashlet_leftrepeat_top"></div> | |
| 278 | 282 | <div class="info_dashlet_rightrepeat_bottom"></div> |
| 279 | 283 | <div class="info_dashlet_leftrepeat_bottom"></div> |
| 280 | 284 | {foreach item=sInfo from=$page->infoStack} | ... | ... |