2024-05-05 04:43:32 +00:00
|
|
|
<!DOCTYPE html>
|
2024-05-05 05:40:54 +00:00
|
|
|
<html>
|
|
|
|
|
2024-05-05 04:43:32 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-05-05 06:35:49 +00:00
|
|
|
<!-- 源样式 -->
|
2024-05-05 06:32:48 +00:00
|
|
|
<link rel="stylesheet" href="./assets/NapCat.css" />
|
2024-05-05 06:35:49 +00:00
|
|
|
<!-- 修补样式 -->
|
2024-05-05 06:32:48 +00:00
|
|
|
<link rel="stylesheet" href="./assets/webcomponents.css" />
|
2024-05-05 06:39:16 +00:00
|
|
|
<link rel="stylesheet" href="./assets/style.css" />
|
|
|
|
<link rel="stylesheet" href="./assets/color.css" />
|
2024-11-07 07:33:57 +00:00
|
|
|
<style>
|
|
|
|
body > div {
|
|
|
|
padding: 12px;
|
|
|
|
|
|
|
|
@media screen and (min-width: 900px) {
|
|
|
|
width: 900px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ob-setting-select {
|
|
|
|
width: 210px;
|
|
|
|
}
|
|
|
|
</style>
|
2024-05-05 06:35:49 +00:00
|
|
|
<!-- 脚手架 -->
|
2024-05-05 07:17:17 +00:00
|
|
|
<!-- 渲染脚本 -->
|
|
|
|
<script>
|
2024-05-05 07:34:07 +00:00
|
|
|
async function InitWebUi() {
|
|
|
|
const { onSettingWindowCreated } = await import("./assets/renderer.js");
|
|
|
|
onSettingWindowCreated(document.querySelector("body"));
|
|
|
|
}
|
|
|
|
InitWebUi();
|
2024-05-05 07:17:17 +00:00
|
|
|
</script>
|
|
|
|
|
2024-05-05 05:40:54 +00:00
|
|
|
<title>NapCat-WebUi</title>
|
2024-05-05 04:43:32 +00:00
|
|
|
</head>
|
2024-05-05 05:40:54 +00:00
|
|
|
|
2024-05-05 04:43:32 +00:00
|
|
|
<body>
|
2024-05-05 05:40:54 +00:00
|
|
|
<script>
|
|
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
|
|
document.body.classList.add('q-theme-tokens-dark');
|
|
|
|
}
|
|
|
|
</script>
|
2024-05-05 04:43:32 +00:00
|
|
|
</body>
|
2024-05-05 05:40:54 +00:00
|
|
|
|
2024-05-05 04:43:32 +00:00
|
|
|
</html>
|