Merge pull request #233 from ckdarby/patch-2

Fixing border to not be applied to children
This commit is contained in:
William Durand 2013-08-29 16:16:09 -07:00
commit f690529fc6

View File

@ -116,6 +116,12 @@ pre {
table.fullwidth {
width: 100%;
}
table.fullwidth > tbody > tr {
border-bottom: 1px solid #cccccc;
}
table.fullwidth > tbody tr:last-child {
border-bottom: none;
}
table thead tr th {
padding: 5px;
font-size: 0.9em;
@ -125,13 +131,9 @@ table thead tr th {
table tbody tr td {
padding: 6px;
font-size: 0.9em;
border-bottom: 1px solid #cccccc;
vertical-align: top;
line-height: 1.3em;
}
table tbody tr:last-child td {
border-bottom: none;
}
#header {
background-color: #89BF04;