MyBB Community Forums

Full Version: Ultimate MyBB Border-radius CSS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It's been a long time since I've been here, but before i "left" i wrote quite a bit off CSS that just needs to be placed in the global.css. This CSS will round all the main table parts of MyBB.

/* Use a find and replace to change the amount of border-radius you want to use */
thead tr:only-child td:first-child,
tr:first-child td:first-child {
	-moz-border-radius:5px 0 0 0;
	border-radius:5px 0 0 0;
}
thead tr:only-child td:last-child,
tr:first-child td:last-child {
	-moz-border-radius:0 5px 0 0;
	border-radius:0 5px 0 0;
}
tr:last-child td:last-child {
	-moz-border-radius:0 0 5px 0;
	border-radius:0 0 5px 0;
}
tr:last-child td:first-child {
	-moz-border-radius:0 0 0 5px;
	border-radius:0 0 0 5px;
}
tr:only-child td:first-child {
	-moz-border-radius:5px 0 0 5px;
	border-radius:5px 0 0 5px;
}
tr:only-child td:last-child {
	-moz-border-radius:0 5px 5px 0;
	border-radius:0 5px 5px 0;
}
.tborder,
tr:only-child td:only-child {
	-moz-border-radius:5px;
	border-radius:5px;
}
tr:last-child td:only-child,
thead ~ tbody tr:only-child td,
#posts .tborder[style*="border-top-width"],
.tborder[style*="border-top-width"],
.tborder[style*="border-top-width"] tbody tr td.tfoot {
	-moz-border-radius:0 0 5px 5px;
	border-radius:0 0 5px 5px;
}
tr:first-child td:only-child,
thead tr:only-child td:only-child,
.tborder[style*="border-bottom-width"],
.tborder[style*="border-bottom-width"] tbody tr td,
#posts .tborder[style*="top: 5"]:last-child {
	-moz-border-radius:5px 5px 0 0;
	border-radius:5px 5px 0 0;
}
thead ~ tbody tr:first-child td:only-child,
thead ~ tbody tr:first-child td:first-child,
thead ~ tbody tr:first-child td:last-child,
#posts .tborder[style*="border-top-width"] tbody tr:first-child td:only-child,
#posts .tborder[style*="top: 5"] tbody tr:last-child td:only-child {
	-moz-border-radius:0;
	border-radius:0;
}

There were some problems with the calendar but i never got around to fixing them.

I hope you like it, Use as you will.
Thank you.
Awesome. Thanks, Damion. Glad to see you back and helpin' out. Smile
oh no it's damion...hehe
Very cool, thanks! Smile
Nice! Should be in UST section. Smile
Great to see you still are alive Toungue Drop in more :p.
Nice share Damion, thanks a lot.
Nice , Thanks!
This is simply perfect.
Thanks for ll the comments, I found that the main problem was the user CP, The calendar just needs a tiny bit of work.

If anyone wants to try it, You can use stylebot to test it our here.
https://chrome.google.com/webstore/detai...pgmdaleoha
Pages: 1 2