미디어위키:Libre.css: 두 판 사이의 차이

잔글편집 요약 없음
편집 요약 없음
36번째 줄: 36번째 줄:


/* 이슈:T83 위키방:64147 문단 공백 제거 */
/* 이슈:T83 위키방:64147 문단 공백 제거 */
.mw-content-ltr > h2:first-of-type {
.mw-content-ltr > h2:first-child {
     margin-top: 0.4em;
     margin-top: 0.4em;
}
}

2015년 11월 27일 (금) 23:00 판

/* 20150509 모바일 스크롤 버그 */
@media (max-width: 767px) {
	body > .container {
		overflow: auto;
	}
}

/* 20150511 목차 늘어짐 현상 */
@media (max-width: 991px) {
	#toc {
		display: table;
	}
}

/**
 * 알림
 * 20150728
 */
nav.navbar .notify-count {
	font-weight: bold;
	background: #FF6363;
	color: white;
	padding: 4px;
	margin-left: 4px;
	border-radius: 2px;
}

.has-notification .nav-login .dropdown-toggle {
	background: #FF9999;
	color: white;
}

.has-notification .navbar-header .dropdown-toggle {
	color: #FF9999;
}

/* 이슈:T83 위키방:64147 문단 공백 제거 */
.mw-content-ltr > h2:first-child {
    margin-top: 0.4em;
}