Perfect rounded corners in MyBB
#20
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.
Reply


Messages In This Thread
Perfect rounded corners in MyBB - by Jordan L. - 2013-01-10, 04:06 AM
RE: Perfect rounded corners in MyBB - by Adobe - 2013-01-10, 06:00 AM
RE: Perfect rounded corners in MyBB - by Spangle - 2013-01-10, 11:08 AM
RE: Perfect rounded corners in MyBB - by Spangle - 2013-01-10, 02:37 PM
RE: Perfect rounded corners in MyBB - by Jason L. - 2013-01-10, 11:32 AM
RE: Perfect rounded corners in MyBB - by faviouz - 2013-01-10, 02:00 PM
RE: Perfect rounded corners in MyBB - by faviouz - 2013-01-10, 02:20 PM
RE: Perfect rounded corners in MyBB - by Spangle - 2013-01-10, 03:40 PM
RE: Perfect rounded corners in MyBB - by Zueq - 2013-01-10, 09:59 PM
RE: Perfect rounded corners in MyBB - by Niggidea - 2013-03-05, 06:36 PM
RE: Perfect rounded corners in MyBB - by Destroy666 - 2013-04-13, 06:32 PM
RE: Perfect rounded corners in MyBB - by HostDash - 2013-05-03, 07:46 PM
RE: Perfect rounded corners in MyBB - by Rymax99 - 2013-05-29, 06:07 AM

Forum Jump:


Users browsing this thread: 2 Guest(s)