diff options
author | Fatih Acet <acetfatih@gmail.com> | 2016-11-02 17:09:16 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2016-11-02 17:09:16 +0000 |
commit | 99a12e120953c7b11d35a65e002a7906f30a99cb (patch) | |
tree | b4e0083d8ec7125992c959abaab851e83ca76204 /app/assets | |
parent | 06bb79456cff992c869d9bdc4904f317de4ba4d8 (diff) | |
parent | dec4376027266ca15798d9feab8f997b879d22d4 (diff) | |
download | gitlab-ce-99a12e120953c7b11d35a65e002a7906f30a99cb.tar.gz |
Merge branch 'sortable-version-update' into 'master'
Updated Sortable JS plugin
## What does this MR do?
Updates Sortable JS plugin for issue boards. The older version stopped the issue cards being draggable.
## What are the relevant issue numbers?
Closes #23048
See merge request !6734
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/pages/boards.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss index df23e27be71..47a7e84b5c6 100644 --- a/app/assets/stylesheets/pages/boards.scss +++ b/app/assets/stylesheets/pages/boards.scss @@ -12,6 +12,10 @@ 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: -webkit-grabbing!important; cursor: grabbing!important; |