css수정(셀렉트박스 화살표 제거 클래스 추가, 테이블 셀 축소 클래스 추가)

main
이범준 12 months ago
parent 9bfe703515
commit affc7a75c8

@ -525,6 +525,9 @@ span.skeleton {
width: 7.5rem !important; width: 7.5rem !important;
} }
.w-automin {
min-width: auto !important;
}
/* 배경색, 외곽선 */ /* 배경색, 외곽선 */
.traffic { .traffic {
@ -565,6 +568,10 @@ span.skeleton {
background-color: var(--program-title-bg) !important; background-color: var(--program-title-bg) !important;
} }
.no-bgi {
background-image: none !important;
}
/* 다이얼로그 창 넓이 */ /* 다이얼로그 창 넓이 */
.w-dialog-px-500 { .w-dialog-px-500 {
--bs-modal-width : 500px; --bs-modal-width : 500px;

@ -1767,6 +1767,23 @@ progress {
border-bottom-width: 1px; border-bottom-width: 1px;
box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
} }
table.compress-cell-w > :not(caption) > * > * {
padding-left: 7px !important;
padding-right: 7px !important;
}
table.compress-cell-h > :not(caption) > * > * {
padding-top: 4px !important;
padding-bottom: 4px !important;
}
table.compress-cell > :not(caption) > * > * {
padding-left: 7px !important;
padding-right: 7px !important;
padding-top: 4px !important;
padding-bottom: 4px !important;
}
.table > tbody { .table > tbody {
vertical-align: inherit; vertical-align: inherit;
} }
@ -11115,10 +11132,18 @@ button.list-group-item-gray.active {
min-width: 100vw !important; min-width: 100vw !important;
} }
.h-px-10 {
height: 10px !important;
}
.h-px-20 { .h-px-20 {
height: 20px !important; height: 20px !important;
} }
.h-px-25 {
height: 25px !important;
}
.h-px-30 { .h-px-30 {
height: 30px !important; height: 30px !important;
} }

Loading…
Cancel
Save