MediaWiki:Common.css/src/template/mctoc.scss

From Terraria Wiki
Jump to navigation Jump to search
/********* [[Template:Multi-column TOC]] *********/

/* todo: 这个模板的样式是有问题的。看[[Recipes]] */

.horizontal-toc {
	/* to match styles of .toc */
	border: 1px solid var(--theme-box-border-color);
	border-radius: 3px;
	margin: 24px auto 24px 0;

	#toc {
		display: block;
		border: 0;
		padding: 0;
		margin: 0;
	}

	.toctitle {
		-webkit-column-span: all;
		column-span: all;
		margin-bottom: 9px;
		min-width: 0 !important;

		h2 {
			margin: 0;
		}
	}
	
	.toctogglecheckbox:checked {
		~ .toctitle {
			margin-bottom: 0;
		}
		
		~ ul:after {
			display: none;
		}
	}

	ul:after {
		content: '';
		display: block;
		-webkit-column-span: all;
		column-span: all;
		height: 9px;
	}

	ul, ol {
		margin-top: 0;
		padding: 0;

		li:first-child {
			margin-top: 0;
		}
	}
}