diff --git a/openslides/core/static/css/dashboard.css b/openslides/core/static/css/dashboard.css index 57c1ad4f1..2c7f12d2f 100644 --- a/openslides/core/static/css/dashboard.css +++ b/openslides/core/static/css/dashboard.css @@ -33,6 +33,12 @@ border: 1px solid #D5D5D5; border-radius: 5px 5px 0 0; } +.widget-header:hover { + cursor: pointer; +} +.widget-header button:hover { + cursor: default; +} .widget-header h3 { margin: 7px 0 7px 14px; font-size: 14px; diff --git a/openslides/core/static/js/dashboard.js b/openslides/core/static/js/dashboard.js index 8744bd6aa..831447689 100644 --- a/openslides/core/static/js/dashboard.js +++ b/openslides/core/static/js/dashboard.js @@ -61,6 +61,7 @@ function restoreOrder() { $(function() { $( ".column" ).sortable({ connectWith: ".column", + handle: ".widget-header", stop: function() { saveOrder(); } });