From 6ed278bb5a6b77883ab1f429fdf6462e2bbd2f6f Mon Sep 17 00:00:00 2001 From: xfra35 Date: Wed, 14 Oct 2015 00:13:09 +0200 Subject: [PATCH] CSS fix: force absolute position on .dragged (#164) --- source/css/example.css | 2 +- source/css/jquery-sortable.css.sass | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/css/example.css b/source/css/example.css index 0106c6e..93e2082 100644 --- a/source/css/example.css +++ b/source/css/example.css @@ -3,7 +3,7 @@ body.dragging, body.dragging * { } .dragged { - position: absolute; + position: absolute !important; opacity: 0.5; z-index: 2000; } diff --git a/source/css/jquery-sortable.css.sass b/source/css/jquery-sortable.css.sass index 655ab43..8d02a03 100644 --- a/source/css/jquery-sortable.css.sass +++ b/source/css/jquery-sortable.css.sass @@ -2,7 +2,7 @@ body.dragging, body.dragging * cursor: move !important .dragged - position: absolute + position: absolute !important top: 0 opacity: .5 z-index: 2000