doc style: better @since html render

Now @since have a left colored border, like @deprecaded, @note, etc

Also keep the number on the same line:
instead of:
since
        1.10
it now render as:
since 1.10
This commit is contained in:
Davide Andreoli 2014-08-07 13:20:19 +02:00
parent 25ce050920
commit 8fe920ee79
1 changed files with 6 additions and 2 deletions

View File

@ -783,7 +783,7 @@ dl {
padding: 0 0 0 10px; padding: 0 0 0 10px;
} }
dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug { dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.since {
border-left: 4px solid; border-left: 4px solid;
padding: 0 0 0 6px; padding: 0 0 0 6px;
} }
@ -800,10 +800,14 @@ dl.pre, dl.post, dl.invariant {
border-color: #00D000; border-color: #00D000;
} }
dl.deprecated { dl.deprecated, dl.since {
border-color: #505050; border-color: #505050;
} }
dl.since dt {
height: 0;
}
dl.todo { dl.todo {
border-color: #00C0E0; border-color: #00C0E0;
} }