feat(web_parser): 新增通用web链接解析插件框架
refactor: 重构B站、抖音、GitHub解析器为模块化结构 fix(executor): 增强docker容器错误处理和回调稳定性 style(templates): 优化帮助页面和代码执行结果的样式 perf(web_parser): 添加API缓存和消息去重机制 docs: 更新插件元信息和注释 chore: 移除旧的独立解析器插件文件
This commit is contained in:
@@ -41,14 +41,14 @@
|
||||
/* 窗口容器 */
|
||||
.window {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
background: var(--window-bg);
|
||||
backdrop-filter: blur(20px);
|
||||
-webkit-backdrop-filter: blur(20px);
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
overflow: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
@@ -196,13 +196,25 @@
|
||||
|
||||
/* 页脚 */
|
||||
.footer {
|
||||
padding: 24px 40px;
|
||||
margin-top: auto;
|
||||
padding: 32px 40px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
color: rgba(255, 255, 255, 0.2);
|
||||
font-size: 16px;
|
||||
text-align: right;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
color: var(--text-desc);
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.footer .info-row {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.footer .version-info {
|
||||
font-size: 12px;
|
||||
opacity: 0.8;
|
||||
margin-top: 16px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -246,7 +258,11 @@
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
by CalglauBOT
|
||||
<div class="info-row">NeoBot System - 功能中心</div>
|
||||
<div class="info-row">已加载 {{ plugins|length }} 个模块</div>
|
||||
<div class="version-info">
|
||||
CalglauBot | Powered by NeoBot Framework
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user