css 정리

main
이범준 8 months ago
parent ea9cd66eaa
commit b0142bfb06

@ -105,8 +105,7 @@ body {
line-height: var(--bs-body-line-height);
color: var(--bs-body-color);
background-color: var(--bs-body-bg);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(67, 89, 113, 0);
text-size-adjust: 100%;
}
hr {
@ -329,6 +328,7 @@ caption {
th {
font-weight: 600;
text-align: -webkit-match-parent;
text-align: match-parent;
text-align: inherit;
}
@ -1952,7 +1952,6 @@ table.compress-cell > :not(caption) > * > * {
.table-responsive {
overflow-x: auto;
border:solid 1px #d9dee3;
-webkit-overflow-scrolling: touch;
}
/* 그리드 테이블 */
@ -2007,31 +2006,26 @@ table:has(.sticky-thead) td {
@media (max-width: 575.98px) {
.table-responsive-sm {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 767.98px) {
.table-responsive-md {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 991.98px) {
.table-responsive-lg {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1199.98px) {
.table-responsive-xl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
@media (max-width: 1399.98px) {
.table-responsive-xxl {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
}
.form-label {
@ -15670,7 +15664,7 @@ button.list-group-item-gray.active {
}
body {
text-rendering: optimizeLegibility;
-moz-font-feature-settings: "liga" on;
font-feature-settings: "liga" on;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

@ -1241,6 +1241,7 @@ li.ui-timepicker-selected, .ui-timepicker-list .ui-timepicker-selected:hover {
}
.layout-navbar-fixed .layout-page:before {
-webkit-backdrop-filter: saturate(200%) blur(10px);
backdrop-filter: saturate(200%) blur(10px);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 44%, rgba(255, 255, 255, 0.43) 73%, rgba(255, 255, 255, 0));
-webkit-mask: linear-gradient(#fff, #fff 18%, transparent 100%);

@ -19,6 +19,6 @@
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}

@ -363,27 +363,22 @@
.bx-rotate-90 {
transform: rotate(90deg);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
}
.bx-rotate-180 {
transform: rotate(180deg);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
}
.bx-rotate-270 {
transform: rotate(270deg);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
}
.bx-flip-horizontal {
transform: scaleX(-1);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
}
.bx-flip-vertical {
transform: scaleY(-1);
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}
.bx-border {

@ -91,6 +91,7 @@ html:not([dir=rtl]) .datepicker .prev::after {
}
.datepicker table {
-webkit-user-select : none;
user-select: none;
margin: 0;
overflow: hidden;

Loading…
Cancel
Save