@sjtdev/koishi-plugin-dota2tracker 1.2.10-pre → 1.2.10-pre.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +5 -0
- package/package.json +1 -1
- package/template/player/player_1.ejs +2 -2
- package/template/report/daily.ejs +16 -5
package/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -25,8 +25,6 @@
|
|
|
25
25
|
span {
|
|
26
26
|
min-width: 0;
|
|
27
27
|
white-space: nowrap; /* 不换行 */
|
|
28
|
-
overflow: hidden; /* 超出部分隐藏 */
|
|
29
|
-
text-overflow: ellipsis; /* 省略号 */
|
|
30
28
|
}
|
|
31
29
|
|
|
32
30
|
.title {
|
|
@@ -57,8 +55,21 @@
|
|
|
57
55
|
display: block;
|
|
58
56
|
width: 100%;
|
|
59
57
|
text-align: center;
|
|
58
|
+
overflow: hidden; /* 超出部分隐藏 */
|
|
59
|
+
text-overflow: ellipsis; /* 省略号 */
|
|
60
|
+
}
|
|
61
|
+
.player > .count {
|
|
62
|
+
display: grid;
|
|
63
|
+
grid-template-columns: 1fr 1fr 1.8fr;
|
|
64
|
+
width: 100%;
|
|
60
65
|
}
|
|
61
66
|
|
|
67
|
+
.player > .count > span {
|
|
68
|
+
text-align: left;
|
|
69
|
+
}
|
|
70
|
+
.player > .count > span:last-child {
|
|
71
|
+
text-align: right;
|
|
72
|
+
}
|
|
62
73
|
.player > .performance {
|
|
63
74
|
display: flex;
|
|
64
75
|
align-items: center;
|
|
@@ -82,7 +93,7 @@
|
|
|
82
93
|
justify-content: flex-end;
|
|
83
94
|
}
|
|
84
95
|
.player > .performance > .score_bar.neg > .left {
|
|
85
|
-
background: linear-gradient(to right, #777, #888, #
|
|
96
|
+
background: linear-gradient(to right, #777, #888, #888, #777);
|
|
86
97
|
}
|
|
87
98
|
.player > .performance > .score_bar.pos > .right {
|
|
88
99
|
background: linear-gradient(to right, #6cf, #7df, #6cf);
|
|
@@ -117,10 +128,10 @@
|
|
|
117
128
|
margin-left: 4px;
|
|
118
129
|
}
|
|
119
130
|
span.win {
|
|
120
|
-
color: #
|
|
131
|
+
color: #007A00;
|
|
121
132
|
}
|
|
122
133
|
span.lose {
|
|
123
|
-
color: #
|
|
134
|
+
color: #B30000;
|
|
124
135
|
}
|
|
125
136
|
</style>
|
|
126
137
|
</head>
|