40 lines
974 B
CSS
40 lines
974 B
CSS
.form-label {
|
|
font-size: 12px;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
/* create,modify,view 페이지용 */
|
|
div.action_form {
|
|
/* 블록 요소로 변경 */
|
|
margin-left: auto;
|
|
/* 자동 여백을 이용한 가로 가운데 정렬 */
|
|
margin-right: auto;
|
|
/* 자동 여백을 이용한 가로 가운데 정렬 */
|
|
/* border: 1px solid blue; */
|
|
/* table-layout: fixed; 고정 레이아웃 */
|
|
border-collapse: collapse;
|
|
/* 테두리 결합 */
|
|
}
|
|
|
|
div.action_form table {}
|
|
|
|
div.action_form table th {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
div.action_form table td {
|
|
text-align: center;
|
|
word-wrap: break-word;
|
|
/* 긴 단어 강제 줄바꿈 */
|
|
white-space: normal;
|
|
/* 자동 줄바꿈 */
|
|
}
|
|
|
|
/* create,modify,view 페이지용 */
|
|
|
|
/*Form 안에서 datepicker 사용시*/
|
|
/* datepicker의 z-index를 높여서 다른 요소 위에 표시되도록 설정 tinyMCE와 겹치는 문제 처리용용*/
|
|
.ui-datepicker {
|
|
z-index: 9999 !important;
|
|
} |