There were few leaks I fixed:
/* Selects the bottom lefthand corner of your tables. */
tr:last-child > .trow1:first-child, tr:last-child > .trow2:first-child, tbody:last-child tr:last-child > .tcat:first-child {
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
}
/* Selects the bottom righthand corner of your tables. */
tr:last-child > .trow1:last-child, tr:last-child > .trow2:last-child{
-webkit-border-bottom-right-radius: 4px;
-moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
}
/* Selects any table with the ID containing 'post' and gets rid of the rounding - this is for the showthread template. */
table[id*="post_"], td.post_buttons, tborder.posthead, tbody[id*="usercp"] > tr:last-child > td, tbody[id*="modcpforums"] > tr:last-child > td, tbody:first-child tr:last-child > .tcat:first-child{
-webkit-border-radius: 0!important;
-moz-border-radius: 0!important;
border-radius: 0!important;
}
/* The custom template ID we added in to get rid of the ugly rounding on the showthread .thead */
table[id="notop"]{
-webkit-border-bottom-right-radius: 0!important;
-webkit-border-bottom-left-radius: 0!important;
-moz-border-radius-bottomright: 0!important;
-moz-border-radius-bottomleft: 0!important;
border-bottom-right-radius: 0!important;
border-bottom-left-radius: 0!important;
}
/* The custom template ID we added in to get rid of the ugly rounding on the showthread .tfoot */
table[id="nobottom"]{
-webkit-border-top-left-radius: 0!important;
-webkit-border-top-right-radius: 0!important;
-moz-border-radius-topleft: 0!important;
-moz-border-radius-topright: 0!important;
border-top-left-radius: 0!important;
border-top-right-radius: 0!important;
}
Added missing 0 in one -webkit- radius, added tbody:first-child tr:last-child > .tcat:first-child to get rid of roundings in some unneeded tcats and changed [id*="usercpp"] to [id*="usercp"].
Great tutorial though, saved me a lot of time, thanks.