Compare commits

...

4 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] e7e600fc25 Add pointer-events: none to visitor banner mask
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2025-10-24 01:19:31 +00:00
copilot-swe-agent[bot] 9a60787b16 Fix iOS touch position misalignment with mask-image by adding pointer-events: none
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2025-10-24 01:17:30 +00:00
copilot-swe-agent[bot] 72e02a9594 Initial plan 2025-10-24 01:11:58 +00:00
github-actions[bot] 259dd34b26 Bump version to 2025.10.1-beta.3 2025-10-23 10:25:35 +00:00
5 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2025.10.1-beta.2",
"version": "2025.10.1-beta.3",
"codename": "nasubi",
"repository": {
"type": "git",
@@ -500,6 +500,7 @@ defineExpose({
rgb(0 0 0 / 95.1%) 42.25%,
rgb(0 0 0 / 100%) 50%
);
pointer-events: none;
}
.newBg2 {
@@ -517,6 +518,7 @@ defineExpose({
rgb(0 0 0 / 95.1%) 91.9%,
rgb(0 0 0 / 100%) 100%
);
pointer-events: none;
}
.newButton {
@@ -246,6 +246,7 @@ function menuEdit() {
rgb(0 0 0 / 95.1%) 42.25%,
rgb(0 0 0 / 100%) 50%
);
pointer-events: none;
}
&::after {
@@ -266,6 +267,7 @@ function menuEdit() {
rgb(0 0 0 / 95.1%) 91.9%,
rgb(0 0 0 / 100%) 100%
);
pointer-events: none;
}
}
@@ -317,6 +319,7 @@ function menuEdit() {
rgb(0 0 0 / 95.1%) 91.9%,
rgb(0 0 0 / 100%) 100%
);
pointer-events: none;
}
}
+1
View File
@@ -122,6 +122,7 @@ onMounted(() => {
background-size: cover;
-webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1.0), transparent);
mask-image: linear-gradient(rgba(0, 0, 0, 1.0), transparent);
pointer-events: none;
}
.dashboard {
+1 -1
View File
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
"version": "2025.10.1-beta.2",
"version": "2025.10.1-beta.3",
"description": "Misskey SDK for JavaScript",
"license": "MIT",
"main": "./built/index.js",