no message

main
이범준 8 months ago
parent 698cef202c
commit 76c81a1c7a

@ -328,8 +328,8 @@ caption {
th { th {
font-weight: 600; font-weight: 600;
text-align: inherit;
text-align: -webkit-match-parent; text-align: -webkit-match-parent;
text-align: inherit;
} }
thead, thead,
@ -6440,8 +6440,8 @@ select:-webkit-autofill,
select:-webkit-autofill:hover, select:-webkit-autofill:hover,
select:-webkit-autofill:focus, select:-webkit-autofill:focus,
input:-internal-autofill-selected { input:-internal-autofill-selected {
background-clip: text !important;
-webkit-background-clip: text !important; -webkit-background-clip: text !important;
background-clip: text !important;
} }
.row-bordered { .row-bordered {
@ -15670,9 +15670,9 @@ button.list-group-item-gray.active {
} }
body { body {
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
font-smoothing: antialiased;
-moz-font-feature-settings: "liga" on; -moz-font-feature-settings: "liga" on;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }

@ -484,7 +484,7 @@ const Helpers = {
return this._setMenuHoverState(true) return this._setMenuHoverState(true)
} }
layoutMenu.addEventListener('mouseenter', this._menuMouseEnter, false) layoutMenu.addEventListener('mouseenter', this._menuMouseEnter, false)
layoutMenu.addEventListener('touchstart', this._menuMouseEnter, false) layoutMenu.addEventListener('touchstart', this._menuMouseEnter, {useCapture:false, passive:false})
} }
if (!this._menuMouseLeave) { if (!this._menuMouseLeave) {

@ -5,8 +5,8 @@
overflow: hidden !important; overflow: hidden !important;
overflow-anchor: none; overflow-anchor: none;
-ms-overflow-style: none; -ms-overflow-style: none;
touch-action: auto;
-ms-touch-action: auto; -ms-touch-action: auto;
touch-action: auto;
} }
/* /*
@ -15,8 +15,8 @@
.ps__rail-x { .ps__rail-x {
display: none; display: none;
opacity: 0; opacity: 0;
transition: background-color 0.2s linear, opacity 0.2s linear;
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear; -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
transition: background-color 0.2s linear, opacity 0.2s linear;
height: 15px; height: 15px;
/* there must be 'bottom' or 'top' for ps__rail-x */ /* there must be 'bottom' or 'top' for ps__rail-x */
bottom: 0px; bottom: 0px;
@ -27,8 +27,8 @@
.ps__rail-y { .ps__rail-y {
display: none; display: none;
opacity: 0; opacity: 0;
transition: background-color 0.2s linear, opacity 0.2s linear;
-webkit-transition: background-color 0.2s linear, opacity 0.2s linear; -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
transition: background-color 0.2s linear, opacity 0.2s linear;
width: 15px; width: 15px;
/* there must be 'right' or 'left' for ps__rail-y */ /* there must be 'right' or 'left' for ps__rail-y */
right: 0; right: 0;
@ -67,8 +67,8 @@
.ps__thumb-x { .ps__thumb-x {
background-color: #aaa; background-color: #aaa;
border-radius: 6px; border-radius: 6px;
transition: background-color 0.2s linear, height 0.2s ease-in-out;
-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out; -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
transition: background-color 0.2s linear, height 0.2s ease-in-out;
height: 6px; height: 6px;
/* there must be 'bottom' for ps__thumb-x */ /* there must be 'bottom' for ps__thumb-x */
bottom: 2px; bottom: 2px;
@ -79,8 +79,8 @@
.ps__thumb-y { .ps__thumb-y {
background-color: #aaa; background-color: #aaa;
border-radius: 6px; border-radius: 6px;
transition: background-color 0.2s linear, width 0.2s ease-in-out;
-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out; -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
transition: background-color 0.2s linear, width 0.2s ease-in-out;
width: 6px; width: 6px;
/* there must be 'right' for ps__thumb-y */ /* there must be 'right' for ps__thumb-y */
right: 2px; right: 2px;

Loading…
Cancel
Save