diff --git a/src/main/webapp/resources/css/fims/cmmn/xit-core.css b/src/main/webapp/resources/css/fims/cmmn/xit-core.css index aa803928..af4ba9e9 100644 --- a/src/main/webapp/resources/css/fims/cmmn/xit-core.css +++ b/src/main/webapp/resources/css/fims/cmmn/xit-core.css @@ -328,8 +328,8 @@ caption { th { font-weight: 600; - text-align: inherit; text-align: -webkit-match-parent; + text-align: inherit; } thead, @@ -6440,8 +6440,8 @@ select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, input:-internal-autofill-selected { - background-clip: text !important; -webkit-background-clip: text !important; + background-clip: text !important; } .row-bordered { @@ -15670,9 +15670,9 @@ button.list-group-item-gray.active { } body { text-rendering: optimizeLegibility; - font-smoothing: antialiased; -moz-font-feature-settings: "liga" on; -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } diff --git a/src/main/webapp/resources/sneat/js/helpers.js b/src/main/webapp/resources/sneat/js/helpers.js index a5a38878..53547acc 100644 --- a/src/main/webapp/resources/sneat/js/helpers.js +++ b/src/main/webapp/resources/sneat/js/helpers.js @@ -484,7 +484,7 @@ const Helpers = { return this._setMenuHoverState(true) } layoutMenu.addEventListener('mouseenter', this._menuMouseEnter, false) - layoutMenu.addEventListener('touchstart', this._menuMouseEnter, false) + layoutMenu.addEventListener('touchstart', this._menuMouseEnter, {useCapture:false, passive:false}) } if (!this._menuMouseLeave) { diff --git a/src/main/webapp/resources/sneat/libs/perfect-scrollbar/perfect-scrollbar.css b/src/main/webapp/resources/sneat/libs/perfect-scrollbar/perfect-scrollbar.css index d77093e0..4f6c6c24 100644 --- a/src/main/webapp/resources/sneat/libs/perfect-scrollbar/perfect-scrollbar.css +++ b/src/main/webapp/resources/sneat/libs/perfect-scrollbar/perfect-scrollbar.css @@ -5,8 +5,8 @@ overflow: hidden !important; overflow-anchor: none; -ms-overflow-style: none; - touch-action: auto; -ms-touch-action: auto; + touch-action: auto; } /* @@ -15,8 +15,8 @@ .ps__rail-x { display: none; opacity: 0; - 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; /* there must be 'bottom' or 'top' for ps__rail-x */ bottom: 0px; @@ -27,8 +27,8 @@ .ps__rail-y { display: none; opacity: 0; - 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; /* there must be 'right' or 'left' for ps__rail-y */ right: 0; @@ -67,8 +67,8 @@ .ps__thumb-x { background-color: #aaa; 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; + transition: background-color 0.2s linear, height 0.2s ease-in-out; height: 6px; /* there must be 'bottom' for ps__thumb-x */ bottom: 2px; @@ -79,8 +79,8 @@ .ps__thumb-y { background-color: #aaa; 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; + transition: background-color 0.2s linear, width 0.2s ease-in-out; width: 6px; /* there must be 'right' for ps__thumb-y */ right: 2px;