added some scss to resolve the issue of dragging window using text selection (#3051)

Co-authored-by: dynwee <onwudiweokeke@gmail.com>
This commit is contained in:
cyprain-okeke 2022-07-20 20:20:15 +01:00 committed by GitHub
parent 8f6713debb
commit cadba40109
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -57,6 +57,13 @@
border: none; border: none;
padding: 5px 10px 5px 30px; padding: 5px 10px 5px 30px;
border-radius: $border-radius; border-radius: $border-radius;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag: none;
-webkit-app-region: no-drag;
cursor: default;
@include themify($themes) { @include themify($themes) {
background-color: themed("headerInputBackgroundColor"); background-color: themed("headerInputBackgroundColor");