/* +----------------------------------------------------------------------
/* | Static Plugin for ThinkAdmin
/* +----------------------------------------------------------------------
/* | 官方网站: https://thinkadmin.top
/* +----------------------------------------------------------------------
/* | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
/* +----------------------------------------------------------------------
/* | 开源协议 ( https://mit-license.org )
/* | 免责声明 ( https://thinkadmin.top/disclaimer )
/* +----------------------------------------------------------------------
/* | gitee 代码仓库：https://gitee.com/zoujingli/think-plugs-static
/* | github 代码仓库：https://github.com/zoujingli/think-plugs-static
/* +----------------------------------------------------------------------
/* | 自定义后台扩展样式，需要在加载 console.css 后载入
/* | 使用 composer require zoujingli/think-plugs-static 时不会更新此文件
/* +---------------------------------------------------------------------- */


/* 定义正在被拖拽的元素样式 */
.dragging {
    opacity: 0.5; /* 减少不透明度以显示正在拖动 */
    background-color: #f8f9fa; /* 设置一个较浅的背景颜色 */
    border: 2px dashed #007bff; /* 添加虚线边框以区分正在拖动的元素 */
}

/* 定义可以放置拖拽元素的目标区域样式 */
.over {
    background-color: #e2f5ff; /* 改变背景颜色以高亮显示可放置区域 */
    border: 2px solid #007bff; /* 更改边框样式以强调可放置位置 */
}