diff options
| author | Phil Hughes <me@iamphill.com> | 2016-10-07 13:07:10 +0100 |
|---|---|---|
| committer | Phil Hughes <me@iamphill.com> | 2016-11-01 08:41:44 +0000 |
| commit | dec4376027266ca15798d9feab8f997b879d22d4 (patch) | |
| tree | 34d0a597d6d26c69957c38916572a8785d56b8d9 /app | |
| parent | b328c7885532ccff70e1f9f7dc970a8dde0c52d6 (diff) | |
| download | gitlab-ce-sortable-version-update.tar.gz | |
Updated Sortable JS pluginsortable-version-update
Fixes an issue in Safari that stops issues from being draggable
Closes #23048
Diffstat (limited to 'app')
| -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 ef6833c9845..608804c63ec 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; |
