FIX: use unselectable mixin in sidebar drag and drop (#20886)

7dcaaec90c/app/assets/stylesheets/common/foundation/mixins.scss (L122)
This commit is contained in:
Krzysztof Kotlarek 2023-03-31 09:28:22 +11:00 committed by GitHub
parent 347681dd20
commit fd718c1a42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 11 deletions

View File

@ -20,11 +20,7 @@
a {
-webkit-touch-callout: none !important;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
-o-user-select: none !important;
user-select: none;
@include unselectable;
}
.sidebar-section-wrapper.disabled {

View File

@ -29,12 +29,7 @@
position: sticky;
top: var(--header-offset);
-webkit-touch-callout: none !important;
-webkit-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
-o-user-select: none !important;
user-select: none;
@include unselectable;
.footer-nav-ipad & {
top: calc(var(--header-offset) + var(--footer-nav-height));