Flutter Web canvas 在系统深色模式下背景透明,导致底层 HTML 内容透出形成叠层。营销站点未声明 color-scheme,浏览器自动调色 也会破坏白色背景设计。 - client/web/index.html: 添加 color-scheme=light meta 及 body 白色背景 - web/index.html: 添加 color-scheme=light meta - web/assets/colors_and_type.css: :root 声明 color-scheme: light Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -19,6 +19,13 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
||||
<meta name="description" content="岩美酒库管理系统 — 酒店饮品库存与采购管理平台">
|
||||
<meta name="color-scheme" content="light">
|
||||
<style>
|
||||
html, body {
|
||||
background-color: #ffffff;
|
||||
color-scheme: light;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- iOS meta tags & icons -->
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
Reference in New Issue
Block a user