Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
21116346
Commit
21116346
authored
Apr 26, 2019
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add vendor prefixes for user-select
parent
8a07d5e6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
.stylelintrc
.stylelintrc
+1
-1
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+3
-0
app/assets/stylesheets/pages/search.scss
app/assets/stylesheets/pages/search.scss
+3
-0
changelogs/unreleased/winh-boards-drag-selection.yml
changelogs/unreleased/winh-boards-drag-selection.yml
+5
-0
No files found.
.stylelintrc
View file @
21116346
...
...
@@ -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",
{
...
...
app/assets/stylesheets/pages/boards.scss
View file @
21116346
...
...
@@ -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
;
...
...
app/assets/stylesheets/pages/search.scss
View file @
21116346
...
...
@@ -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
;
}
...
...
changelogs/unreleased/winh-boards-drag-selection.yml
0 → 100644
View file @
21116346
---
title
:
Prevent text selection when dragging in issue boards
merge_request
:
27724
author
:
type
:
fixed
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment