fix: 更新中文模板CSS类名以兼容CUPS 2.4.7

- header.tmpl: class="header" → class="cups-header"
- header.tmpl: class="body" → class="cups-body"
- trailer.tmpl: class="footer" → class="cups-footer"

CUPS 2.4.7 更新了CSS类名,旧模板导致样式无法加载

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-30 23:58:47 +08:00
parent d45ac4f754
commit 783da484e1
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@
<title>{title} - CUPS 打印管理</title>
</head>
<body onload="check_cookies();">
<div class="header">
<div class="cups-header">
<ul>
<li><a href="https://openprinting.github.io/cups/" target="_blank">OpenPrinting CUPS</a></li>
<li><a {SECTION=admin?class="active" :}href="/">首页</a></li>
@@ -35,6 +35,6 @@
<li><a {SECTION=printers?class="active" :}href="/printers/">打印机</a></li>
</ul>
</div>
<div class="body">
<div class="cups-body">
<div class="row">
<h1>{title}</h1>