| Project: | acSimple |
| Version: | 1.0 |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Tim |
| Status: | open - assigned |
Description
On the dashboard -> my tasks page the white-green background of the project/milestones/task boxes is not repeated properly for bigger boxes.
Fix:
====
In /public/assets/themes/acSimple/stylesheets/general/rewrites.css
SEARCH Lines 247 - 250:
.block {
border-color:#abdc7c;
background: url('../../images/layout/actionsbg.gif') no-repeat top left;
}
REPLACE with:
.block {
border-color:#abdc7c;
background: url('../../images/layout/actionsbg.gif') repeat-y top left;
}
I hope that helps :)
The problem is also present in the milestone even though it appears less often because you need to attach a few messages and/or tasks lists to see the issue.
Same thing just change lines 276-282 of /public/assets/themes/acSimple/stylesheets/general/rewrite.css by
.success {
margin-bottom: 10px;
padding: 8px 10px;
padding-bottom:10px;
border:1px solid #ECCB17;
background: url('../../images/logtypes/today.gif') repeat-y top center;
}
The only difference is the repeat-y which was no-repeat
Here is the rewrite.css file after the modifications.
You can just replace the one you have in /public/assets/themes/acSimple/stylesheets/general/ with this one.
The site doesn't allow me to upload a css file, so remove the extension .txt before copying it.
Since this part is not in the CVS repository, I wonder if I should create a patch file instead. Should I?
Hey Tim,
this theme is in the svn repository, under the Themes directory (not the main one). So you can provide a patch =)
I should take the time to create the patch one of these days...