MediaWiki:Common.css/src/interface/mainBox/content/tablePager.scss

From Terraria Wiki
Jump to navigation Jump to search

This page is one of the SCSS pages which are the basis for MediaWiki:Common.css. After you edit this page, you will need to recompile them for your changes to take effect. See Terraria Wiki:CSS to learn more.

/********* TablePager *********/

/* Data tables, used on e.g. Special:ListFiles */

/* overwriting styles from here:
 * https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/refs/heads/master/resources/src/mediawiki.pager.styles/DataTable.less
 * https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/refs/heads/master/resources/src/mediawiki.pager.styles/TablePager.less */

.mw-datatable {
	border-color: var(--oouihelper--borderdark);
	td, th{
		border-color: var(--oouihelper--borderdark);
	}
	th {
		background-color: var(--oouihelper--textinput-background-darker);
	}
	td {
		background-color: var(--oouihelper--textinput-background);
	}
	tr:hover td {
		background-color: var(--oouihelper--textinput-background-lighter);
	}	
}