From 009e122cbc23b88691e59040bff4caeb086db765 Mon Sep 17 00:00:00 2001 From: xuxueli <931591021@qq.com> Date: Sat, 27 Dec 2025 20:36:31 +0800 Subject: [PATCH] =?UTF-8?q?style(css):=20=E7=BB=9F=E4=B8=80CSS=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=B9=B6=E4=BC=98=E5=8C=96=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E9=80=89=E6=8B=A9=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 统一CSS文件中的缩进格式,将制表符替换为空格 - 在多个项目的admin.tab.css文件中标准化代码缩进 - 添加菜单项内边距样式以改善显示效果 - 将JavaScript中的表格选择方法从bootstrapTable('getSelections')替换为selectRows() - 更新topic页面的状态更新功能使用selectIds()方法获取选中项ID - 优化表格行选择相关的代码逻辑,提高代码可读性 --- .../resources/static/biz/common/admin.tab.css | 75 ++++++++++--------- 1 file changed, 41 insertions(+), 34 deletions(-) diff --git a/xxl-job-admin/src/main/resources/static/biz/common/admin.tab.css b/xxl-job-admin/src/main/resources/static/biz/common/admin.tab.css index 55672b75..9c8fd97c 100644 --- a/xxl-job-admin/src/main/resources/static/biz/common/admin.tab.css +++ b/xxl-job-admin/src/main/resources/static/biz/common/admin.tab.css @@ -103,7 +103,7 @@ nav.page-tabs .page-tabs-content { } .roll-right.J_tabExit, .roll-right.tabReload { - right: 60px; + right: 60px; background: #fff; height: 35px; width: 60px; @@ -157,44 +157,44 @@ nav.page-tabs .page-tabs-content { /** 遮罩层 **/ .loaderbox { - display: inline-block; - min-width: 125px; - padding: 10px; - margin: 0 auto; - color: #000 !important; - font-size: 13px; - font-weight: 400; - text-align: center; - vertical-align: middle; - border: 1px solid #ddd; - background-color: #eee; - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - -ms-border-radius: 2px; - -o-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); - box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + display: inline-block; + min-width: 125px; + padding: 10px; + margin: 0 auto; + color: #000 !important; + font-size: 13px; + font-weight: 400; + text-align: center; + vertical-align: middle; + border: 1px solid #ddd; + background-color: #eee; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); } .loaderbox .loading-activity { - float: left; - width: 18px; - height: 18px; - border: solid 2px transparent; - border-top-color: #000; - border-left-color: #000; - border-radius: 10px; - -webkit-animation: pace-spinner 400ms linear infinite; - -moz-animation: pace-spinner 400ms linear infinite; - -ms-animation: pace-spinner 400ms linear infinite; - -o-animation: pace-spinner 400ms linear infinite; - animation: pace-spinner 400ms linear infinite; + float: left; + width: 18px; + height: 18px; + border: solid 2px transparent; + border-top-color: #000; + border-left-color: #000; + border-radius: 10px; + -webkit-animation: pace-spinner 400ms linear infinite; + -moz-animation: pace-spinner 400ms linear infinite; + -ms-animation: pace-spinner 400ms linear infinite; + -o-animation: pace-spinner 400ms linear infinite; + animation: pace-spinner 400ms linear infinite; } .dropdown-menu { - min-width: 100px; + min-width: 100px; } .main-footer { @@ -215,4 +215,11 @@ nav.page-tabs .page-tabs-content { border-top-color: #FFFFFF !important; border-left-color: #FFFFFF !important; } -/* nprogress end */ \ No newline at end of file +/* nprogress end */ + +/* menu start */ +.treeview-menu>li>a { + padding-top: 8px; + padding-bottom: 8px; +} +/* menu end */