Merge pull request #17678 from KDSBrowne/bbb-ipad-canvas-patch

fix: Prevent Canvas Selection While Using Stylus On iPad
This commit is contained in:
Ramón Souza 2023-04-19 16:38:41 -03:00 committed by GitHub
commit 5aef1b8171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,6 +116,14 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
.fade-out { .fade-out {
opacity: 0 !important; opacity: 0 !important;
} }
html, div, span {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
</style> </style>
<script> <script>
document.addEventListener('gesturestart', function (e) { document.addEventListener('gesturestart', function (e) {