css 파일명 변경 및 인쇄를 위한 no-print, only-print 스타일 추가
This commit is contained in:
37
manager/css/main.css
Normal file
37
manager/css/main.css
Normal file
@ -0,0 +1,37 @@
|
||||
/* 전역 */
|
||||
body {padding-top: 5em; font-size: 0.9em;}
|
||||
/* 사이드바 폭 */
|
||||
.offcanvas.show,.offcanvas.showing,.offcanvas.hiding {width: 250px; }
|
||||
|
||||
/* 로그인 */
|
||||
.container-login button {margin-top: 20px; width: 100%;}
|
||||
.container-login h2 {text-align: center;}
|
||||
|
||||
/* viplist 전체숫자 */
|
||||
.viplist_head {}
|
||||
.mod-label {width:200px;}
|
||||
|
||||
.unused td {color:gray !important}
|
||||
|
||||
/* 중복체크 */
|
||||
.checkdup {height: 25px; text-align: right;}
|
||||
|
||||
/* 베이커리용 CSS */
|
||||
.bakery tfoot {
|
||||
font-weight: 600;
|
||||
}
|
||||
.sort-icon {
|
||||
margin-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* 인쇄시에만 출력되도록 */
|
||||
.only-print { display: none !important; }
|
||||
|
||||
/* 프린트 시 출력되지 않도록 */
|
||||
@media print {
|
||||
.no-print { display: none !important; }
|
||||
header, footer { display: none; }
|
||||
/* 얘는 출력되어야 함 */
|
||||
.only-print { display: block !important; }
|
||||
}
|
||||
@ -1,17 +0,0 @@
|
||||
/* 전역 */
|
||||
body {padding-top: 5em; font-size: 0.9em;}
|
||||
/* 사이드바 폭 */
|
||||
.offcanvas.show,.offcanvas.showing,.offcanvas.hiding {width: 250px; }
|
||||
|
||||
/* 로그인 */
|
||||
.container-login button {margin-top: 20px; width: 100%;}
|
||||
.container-login h2 {text-align: center;}
|
||||
|
||||
/* viplist 전체숫자 */
|
||||
.viplist_head {}
|
||||
.mod-label {width:200px;}
|
||||
|
||||
.unused td {color:gray !important}
|
||||
|
||||
/* 중복체크 */
|
||||
.checkdup {height: 25px; text-align: right;}
|
||||
Reference in New Issue
Block a user