diff --git a/modules/admin/controllers/maintenance/Cleanup.php b/modules/admin/controllers/maintenance/Cleanup.php index 7e5e3e45e..d1ed217cc 100644 --- a/modules/admin/controllers/maintenance/Cleanup.php +++ b/modules/admin/controllers/maintenance/Cleanup.php @@ -332,6 +332,7 @@ class Cleanup extends Base 'modules/admin/tpl/js/config.min.js' => 'deleted', 'modules/admin/tpl/js/admin.min.js' => 'deleted', 'modules/admin/tpl/js/menu_setup.min.js' => 'deleted', + 'modules/admin/tpl/img/bgDragable.gif' => 'deleted', 'modules/admin/tpl/img/faviconSample.png' => 'deleted', 'modules/admin/tpl/img/mobiconSample.png' => 'deleted', 'modules/autoinstall/ruleset/' => 'deleted:xe', diff --git a/modules/admin/tpl/css/admin.css b/modules/admin/tpl/css/admin.css index ddf59fbcf..f5da99642 100644 --- a/modules/admin/tpl/css/admin.css +++ b/modules/admin/tpl/css/admin.css @@ -1694,14 +1694,16 @@ html[lang="id"] .x .g11n.active>[disabled], } .x .uDrag .dragBtn { position: absolute; - width: 8px; + width: 24px; height: 100%; - padding: 0; + box-sizing: content-box; overflow: hidden; - background: url(../img/bgDragable.gif); + background: url(../img/bgDragable.png); + background-position: center top; + background-repeat: no-repeat; top: 1px; - left: 0; - text-indent: 12px; + left: -8px; + text-indent: 20px; border: 0; cursor: n-resize; white-space: nowrap; diff --git a/modules/admin/tpl/img/bgDragable.gif b/modules/admin/tpl/img/bgDragable.gif deleted file mode 100644 index 92fcd2298..000000000 Binary files a/modules/admin/tpl/img/bgDragable.gif and /dev/null differ diff --git a/modules/admin/tpl/img/bgDragable.png b/modules/admin/tpl/img/bgDragable.png new file mode 100644 index 000000000..86bbdc708 Binary files /dev/null and b/modules/admin/tpl/img/bgDragable.png differ