mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-22 06:58:24 +00:00
#喵喵帮助
及其他部分页面样式调整
This commit is contained in:
parent
b236790630
commit
2309f57049
21
CHANGELOG.md
21
CHANGELOG.md
@ -1,26 +1,29 @@
|
||||
# 2.0 Alpha.7
|
||||
# 2.0 Alpha.8
|
||||
|
||||
* `#喵喵帮助`配置功能升级
|
||||
* 为统一配置目录,配置文件迁移至**config/help.js**
|
||||
* 如之前自定义过配置文件,原目录下的help-cfg.js仍能够识别,但建议移至新目录以使用更多功能
|
||||
* 支持帮助文字、背景颜色通过配置自定义,防止后续css冲突
|
||||
* 支持图片毛玻璃效果,默认开启,可通过配置关闭
|
||||
* `#上传深渊` 页面样式调整
|
||||
* 队伍人数少于4人时展示样式优化,样式未完全稳定
|
||||
* 武器、圣遗物 meta数据及图像资源逻辑更新
|
||||
* 重构武器及圣遗物的底层处理逻辑,重构页面引用图像资源的逻辑
|
||||
* 图像资源更新为webp格式
|
||||
* 可能会导致一些展示异常,如遇问题请反馈
|
||||
* 一些已知Bug修复
|
||||
|
||||
# 2.0 Alpha.1~6
|
||||
# 2.0 Alpha.1~8
|
||||
|
||||
* `#面板练度统计` 功能调整
|
||||
* 样式由深色调整为浅色方案
|
||||
* 在未绑定CK时,使用本地面板数据展示练度信息
|
||||
* MysApi内部逻辑重写
|
||||
* 在未绑定CK时,会使用本地面板数据综合计算,以使信息展示更完备
|
||||
* 优化V3下获取Uid及CK的逻辑,防止一些情况下触发报错
|
||||
* 重写`#刻晴`的角色卡片样式
|
||||
* 样式整体升级
|
||||
* 未绑定CK时,会同时使用本地面板数据进行展示
|
||||
* `#妮露天赋` 等页面样式微调
|
||||
* 武器、圣遗物 meta数据及图像资源逻辑更新
|
||||
* 重构武器及圣遗物的底层处理逻辑,重构页面引用图像资源的逻辑
|
||||
* 图像资源更新为webp格式
|
||||
* `#深渊配队`、`#戳一戳` 适配V3
|
||||
* 优化V3下获取Uid及CK的逻辑,防止一些情况下触发报错
|
||||
* 其他部分页面样式微调
|
||||
|
||||
# Alpha 2.0.0
|
||||
|
||||
|
@ -338,10 +338,12 @@ body {
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 4px 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.bottom-mode .char-detail > .cont {
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
margin: 5px 0 0;
|
||||
}
|
||||
.bottom-mode .char-detail > .cont.left-line:after,
|
||||
@ -388,6 +390,7 @@ body {
|
||||
padding: 4px 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
display: block;
|
||||
}
|
||||
.left-mode .char-detail > .cont {
|
||||
|
@ -396,10 +396,12 @@ body {
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 4px 0;
|
||||
box-shadow: none;
|
||||
|
||||
& > .cont {
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
margin: 5px 0 0;
|
||||
|
||||
&.left-line,
|
||||
@ -464,6 +466,7 @@ body {
|
||||
padding: 4px 0;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
backdrop-filter: none;
|
||||
display: block;
|
||||
|
||||
& > .cont {
|
||||
|
@ -65,6 +65,9 @@ body {
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.detail ul.attr {
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
.detail ul.attr li {
|
||||
width: 300px;
|
||||
font-size: 17px;
|
||||
|
@ -73,6 +73,8 @@ body {
|
||||
}
|
||||
|
||||
.detail ul.attr {
|
||||
backdrop-filter: blur(4px);
|
||||
|
||||
li {
|
||||
width: 300px;
|
||||
font-size: 17px;
|
||||
|
@ -259,6 +259,7 @@ body {
|
||||
border-radius: 10px;
|
||||
background: url("../common/cont/card-bg.png") top left repeat-x;
|
||||
background-size: auto 100%;
|
||||
backdrop-filter: blur(3px);
|
||||
margin: 5px 15px 5px 10px;
|
||||
position: relative;
|
||||
box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgba(50, 50, 50, 0.8);
|
||||
|
@ -183,6 +183,7 @@ each(@elems, {
|
||||
border-radius: 10px;
|
||||
background: url("../common/cont/card-bg.png") top left repeat-x;
|
||||
background-size: auto 100%;
|
||||
backdrop-filter: blur(3px);
|
||||
margin: 5px 15px 5px 10px;
|
||||
position: relative;
|
||||
box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgba(50, 50, 50, .8);
|
||||
|
@ -53,7 +53,8 @@ body,
|
||||
.abyss-stat .stat-msg {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.65);
|
||||
background: rgba(0, 0, 0, 0.55);
|
||||
backdrop-filter: blur(2px);
|
||||
padding: 5px 10px;
|
||||
width: 100%;
|
||||
text-shadow: 0 0 1px #000;
|
||||
@ -70,7 +71,7 @@ body,
|
||||
color: #d3bc8e;
|
||||
}
|
||||
.avatar-banner {
|
||||
height: 250px;
|
||||
height: 265px;
|
||||
width: 175px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% auto;
|
||||
|
@ -60,7 +60,8 @@ body, .container {
|
||||
.stat-msg {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.65);
|
||||
background: rgba(0, 0, 0, 0.55);
|
||||
backdrop-filter: blur(2px);
|
||||
padding: 5px 10px;
|
||||
width: 100%;
|
||||
text-shadow: 0 0 1px #000;
|
||||
@ -82,7 +83,7 @@ body, .container {
|
||||
|
||||
|
||||
.avatar-banner {
|
||||
height: 250px;
|
||||
height: 265px;
|
||||
width: 175px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% auto;
|
||||
|
Loading…
Reference in New Issue
Block a user