화면 수정
This commit is contained in:
@@ -100,6 +100,33 @@ select option {
|
||||
padding: 0 0.75rem 0 40px !important;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
font-size: 0.75rem !important;
|
||||
font-family: inherit !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
#atcl_amt2 {
|
||||
font-size: 0.75rem !important;
|
||||
font-family: inherit !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
.input-group-text {
|
||||
font-size: 0.75rem !important;
|
||||
font-family: inherit !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
/* Select Box와 Input 높이 통일 */
|
||||
.form-select,
|
||||
select.form-control,
|
||||
select {
|
||||
padding: 0.375rem 0.75rem !important;
|
||||
height:26px !important;
|
||||
line-height: 1.5 !important;
|
||||
}
|
||||
|
||||
/* 모바일 화면 조정 */
|
||||
@media (max-width: 767.98px) {
|
||||
.app-sidebar {
|
||||
@@ -116,3 +143,18 @@ select option {
|
||||
padding: 0 0.75rem 0 40px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.form-check-input[type="checkbox"],
|
||||
.form-check-input[type="radio"] {
|
||||
border-color: #888 !important;
|
||||
background-color: #fff !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.form-check-input[type="checkbox"]:checked,
|
||||
.form-check-input[type="radio"]:checked {
|
||||
background-color: #007bff !important;
|
||||
border-color: #007bff !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
156
public/common/css/custom.css
Normal file
156
public/common/css/custom.css
Normal file
@@ -0,0 +1,156 @@
|
||||
/* main-card 간격 최소화 */
|
||||
.main-card.mb-3.card {
|
||||
margin-bottom: 0.5rem !important;
|
||||
}
|
||||
/* DataTables 그리드 thead 하단 라인 */
|
||||
.dt-layout-cell > table > thead {
|
||||
border-bottom: 2px solid #dee2e6 !important;
|
||||
}
|
||||
|
||||
.dt-layout-cell > table {
|
||||
border-top: 2px solid #dee2e6 !important;
|
||||
}
|
||||
|
||||
.dt-layout-cell > table > thead > tr > th{
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
div.dt-container div.dt-layout-cell {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
/* DataTable 컬럼 width 클래스 */
|
||||
.tw-30 { width: 30px !important; }
|
||||
.tw-50 { width: 50px !important; }
|
||||
.tw-70 { width: 70px !important; }
|
||||
.tw-80 { width: 80px !important; }
|
||||
.tw-90 { width: 90px !important; }
|
||||
.tw-100 { width: 100px !important; }
|
||||
.tw-120 { width: 120px !important; }
|
||||
.tw-130 { width: 130px !important; }
|
||||
.tw-140 { width: 140px !important; }
|
||||
.tw-150 { width: 150px !important; }
|
||||
.tw-180 { width: 180px !important; }
|
||||
.tw-200 { width: 200px !important; }
|
||||
.tw-250 { width: 250px !important; }
|
||||
|
||||
/* ========================================
|
||||
Lists 페이지 공통 스타일
|
||||
======================================== */
|
||||
|
||||
/* 테이블 기본 스타일 */
|
||||
th {
|
||||
font-size: 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#resultList tbody tr {
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.blockUI {
|
||||
z-index: 1500 !important;
|
||||
}
|
||||
|
||||
.ellipsis {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.card-header-tab {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
|
||||
.table-scroll {
|
||||
max-height: 300px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.swal2-cancel {
|
||||
background-color: #ff0000 !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
/* 검색 폼 row 구분 */
|
||||
#frm_srch_info .row.g-3 {
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
#frm_srch_info .row.g-3:last-of-type {
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#frm_srch_info .row.g-3:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
/* 검색창 공간 최소화 */
|
||||
#frm_srch_info .card-body {
|
||||
padding: 15px !important;
|
||||
}
|
||||
|
||||
#frm_srch_info .row.g-3 {
|
||||
padding: 8px 0;
|
||||
row-gap: 8px !important;
|
||||
}
|
||||
|
||||
#frm_srch_info .form-label {
|
||||
margin-bottom: 4px !important;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: #212529;
|
||||
}
|
||||
|
||||
#frm_srch_info .form-control,
|
||||
#frm_srch_info .form-select {
|
||||
padding: 4px 8px !important;
|
||||
font-size: 0.85rem;
|
||||
border-color: #bbb !important;
|
||||
}
|
||||
|
||||
#frm_srch_info .form-control:focus,
|
||||
#frm_srch_info .form-select:focus {
|
||||
border-color: #888 !important;
|
||||
}
|
||||
|
||||
#frm_srch_info .input-group-text {
|
||||
padding: 4px 8px !important;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
#frm_srch_info .alert {
|
||||
padding: 8px 12px !important;
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
|
||||
#frm_srch_info .btn {
|
||||
padding: 4px 12px !important;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
/* 툴팁 스타일 */
|
||||
.info-tooltip {
|
||||
display: inline-block;
|
||||
margin-left: 5px;
|
||||
color: #17a2b8;
|
||||
cursor: help;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.info-tooltip:hover {
|
||||
color: #138496;
|
||||
}
|
||||
Reference in New Issue
Block a user