diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-08-28 19:35:04 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-08-28 19:35:04 +0200 |
commit | cc5e9002d92b5024cedd731d5598c3f5b5127620 (patch) | |
tree | 645a66b29fd9498a25c21331e765f81142757de5 /client | |
parent | 53018baeb2dd04d053dbb2c4fd872a9f28505f95 (diff) | |
download | wekan-cc5e9002d92b5024cedd731d5598c3f5b5127620.tar.gz wekan-cc5e9002d92b5024cedd731d5598c3f5b5127620.tar.bz2 wekan-cc5e9002d92b5024cedd731d5598c3f5b5127620.zip |
Fix the cursor used while dragging a list
Diffstat (limited to 'client')
-rw-r--r-- | client/components/boards/boardBody.styl | 4 | ||||
-rw-r--r-- | client/components/lists/list.styl | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/client/components/boards/boardBody.styl b/client/components/boards/boardBody.styl index dd961bae..868a4456 100644 --- a/client/components/boards/boardBody.styl +++ b/client/components/boards/boardBody.styl @@ -38,8 +38,8 @@ position() align-items: flex-start display: flex flex-direction: row - margin: 0 10px 10px - padding: 0 25px 5px 0 + margin: 0 0 10px + padding: 0 40px 5px 0 overflow-x: auto overflow-y: hidden position: cover diff --git a/client/components/lists/list.styl b/client/components/lists/list.styl index 2145d947..86454fcd 100644 --- a/client/components/lists/list.styl +++ b/client/components/lists/list.styl @@ -21,10 +21,13 @@ border-left: none &.ui-sortable-helper - cursor: grabbing box-shadow: -2px 2px 8px rgba(0, 0, 0, .3), 0 0 1px rgba(0, 0, 0, .5) transform: rotate(4deg) + cursor: grabbing + + .list-header.ui-sortable-handle + cursor: grabbing &.placeholder background-color: rgba(0, 0, 0, .2) |