/*
	CSG Dark - css3.css

	This sheet exists to cancel one, not to add anything.

	MyBB Master Style ships a css3.css whose entire job is putting a 2px
	border-radius on tables, headers, buttons, quotes and popups. A theme
	imported as a child of the Master Style inherits that sheet, and CSG Dark
	has no rounded corners anywhere by design.

	A stylesheet of the same name overrides the inherited one, so keeping this
	file in the theme means the master's version never loads, whatever parent
	the theme is imported under. The two non-radius rules it carried are worth
	keeping, so they are repeated here.
*/

/* Rows draw their own separators; the outer .tborder draws the frame. */
tr td.trow1:first-child,
tr td.trow2:first-child,
tr td.trow_shaded:first-child { border-left: 0; }

tr td.trow1:last-child,
tr td.trow2:last-child,
tr td.trow_shaded:last-child { border-right: 0; }

.tborder tbody tr:last-child td { border-bottom: 0; }

/* Everything the master sheet rounds, explicitly flat. */
.tborder,
.tborder tbody tr:last-child td:first-child,
.tborder tbody tr:last-child td:last-child,
.thead,
.thead_collapsed,
.thead_left,
.thead_right,
.tcat,
.tcat_menu,
.tfoot,
.pagination a,
.pagination .pagination_current,
.popup_menu,
.popup_menu .popup_item,
.post,
.post_author,
.post_content,
.post_head,
.post_controls,
.postbit_buttons > a,
.button,
a.button,
input.button,
button,
input.textbox,
textarea,
select,
fieldset,
blockquote,
.codeblock,
.codeblock code,
.pollbar,
.track,
.repbox,
.pill,
.badge,
img.attachment,
.author_avatar img {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

/* The master sheet has no shadows, but a parent theme might. Same reasoning:
   the only shadow this design allows is the red inset underline on the
   active item, and that is set where it belongs in global.css. */
.tborder,
.thead,
.post,
.popup_menu,
a.button,
input.button,
button { box-shadow: none; }
