|
Summary
|
list of changes changed to CSS
|
use CSS for displaying list of Changes
|
|
Component/s
|
Core operations
[ 12310010
]
|
|
|
Component/s
|
|
Plugin: projectInfo
[ 12310046
]
|
|
Description
|
changes2document.xsl changed (see diff attached) to format the list without bullets; used css-classes for formatting, put the styles in extra-css (they should go into the forrest css):
ul.changes-list
{
list-style-type:none;
padding-left: 0;
margin-left: 0;
}
.changes-list .update
{
padding-left:24px;
padding-bottom:2px; <!-- to display the bottom line of the image -->
background-image:url(images/update.jpg);
background-repeat:no-repeat;
}
.changes-list .add
{
padding-left:24px;
padding-bottom:2px; <!-- to display the bottom line of the image -->
background-image:url(images/add.jpg);
background-repeat:no-repeat;
}
.changes-list .remove
{
padding-left:24px;
padding-bottom:2px; <!-- to display the bottom line of the image -->
background-image:url(images/remove.jpg);
background-repeat:no-repeat;
}
.changes-list .fix
{
padding-left:24px;
padding-bottom:2px; <!-- to display the bottom line of the image -->
background-image:url(images/fix.jpg);
background-repeat:no-repeat;
}
.changes-list .hack
{
padding-left:24px;
padding-bottom:3px; <!-- the hack image is higher than the others -->
background-image:url(images/hack.jpg);
background-repeat:no-repeat;
}
|
changes2document.xsl changed (see diff attached) to format the list without bullets; used css-classes for formatting, put the styles in extra-css for a quick fix (they should go into the forrest css):
|
|
Other Info
|
|
[Patch available]
|