틀:TOC right/styles.css: 두 판 사이의 차이

이삭위키
둘러보기로 이동 검색으로 이동
(do the same thing I apparently did to tocleft much earlier)
 
잔글 (판 1개를 가져왔습니다)
 
(차이 없음)

2023년 4월 25일 (화) 14:59 기준 최신판

/* {{pp-template}} */
/* The TOC is hidden on Minerva (mobile skin) for width < 720px so must also hide this wrapper */
@media all and (max-width: 720px) {
	body.skin-minerva .tocright {
		display: none;
	}
	
	.tocright {
		width: 100% !important; /* fix the inline width while at small resolution */
	}
}
@media all and (min-width: 720px) {
	.tocright {
		float: right;
		clear: right;
		width: auto;
		margin: 0 0 0.5em 1em; 
	}
	
	.tocright-clear-left {
		clear: left;
	}
	
	.tocright-clear-both {
		clear: both;
	}
	
	.tocright-clear-none {
		clear: none;
	}
}