Merge pull request #552 from taye/fix-for-issue-550

Remove margin in <p> tags in <td>s from markdown
This commit is contained in:
Jeff Williams 2014-01-02 17:05:47 -08:00
commit f9607e257f

View File

@ -317,6 +317,18 @@ h6
.params th, .props th { border-right: 1px solid #aaa; }
.params thead .last, .props thead .last { border-right: 1px solid #ddd; }
.params td.description > p:first-child
{
margin-top: 0;
padding-top: 0;
}
.params td.description > p:last-child
{
margin-bottom: 0;
padding-bottom: 0;
}
.disabled {
color: #454545;
}