Merge branch 'winh-boards-drag-selection' into 'master'

Prevent text selection when dragging in issue boards

Closes #59378

See merge request gitlab-org/gitlab-ce!27724
This commit is contained in:
Annabel Dunstone Gray 2019-04-26 17:57:06 +00:00
commit fd05b2c9d6
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