Add vendor prefixes for user-select

This commit is contained in:
Winnie Hellmann 2019-04-26 11:22:30 +02:00
parent 8a07d5e60f
commit 211163463d
4 changed files with 12 additions and 1 deletions

View File

@ -64,7 +64,7 @@
"number-leading-zero":"always",
"number-no-trailing-zeros":true,
"property-no-unknown":true,
"property-no-vendor-prefix":true,
"property-no-vendor-prefix": [true, { "ignoreProperties": ["user-select"] }],
"rule-empty-line-before":[
"always-multi-line",
{

View File

@ -7,6 +7,9 @@
opacity: 1 !important;
* {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
// !important to make sure no style can override this when dragging
cursor: grabbing !important;

View File

@ -84,6 +84,9 @@ input[type='checkbox']:hover {
.search-icon {
transition: color $default-transition-duration;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

View File

@ -0,0 +1,5 @@
---
title: Prevent text selection when dragging in issue boards
merge_request: 27724
author:
type: fixed