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

편집 요약 없음
편집 요약 없음
11번째 줄: 11번째 줄:
display: table;
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;
}
}

2015년 7월 28일 (화) 23:23 판

/* 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;
}