Fixes #489, Missing separator between child notes in reports

This commit is contained in:
Dan Stillman 2007-01-10 23:55:50 +00:00
parent ee9cf59e26
commit 3bc1a28ce4

View File

@ -60,6 +60,19 @@ ul.tags li:not(:last-child):after {
content: ', ';
}
/* Child notes */
ul.notes {
margin-bottom: 1.2em;
}
ul.notes li {
border-bottom: 1px #ccc solid;
}
ul.notes li:last-child {
border-bottom: none;
}
/* Preserve whitespace on notes */
ul.notes li p, li.note p {
white-space: pre-wrap; /* css-3 */