Compare commits

..

No commits in common. "e990831a09b951762545a6bd5fea0a045fb82b0e" and "1c26dae39f897fa37783f1ba35a16d666153fb73" have entirely different histories.

5 changed files with 4 additions and 20 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2025.3.2-beta.15",
"version": "2025.3.2-beta.14",
"codename": "nasubi",
"repository": {
"type": "git",

View File

@ -178,14 +178,6 @@ rt {
overflow: clip;
overflow-y: scroll;
overscroll-behavior: contain;
/*
理屈は知らないけどここでbackgroundを設定しておかないと
スクロールコンテナーが少なくともChromeにおいて
main thread scrolling になってしまいパフォーマンスが(多分)落ちる
backgroundが透明だと裏側を描画しないといけなくなるとかそういう理由かもしれない
*/
background: var(--MI_THEME-bg);
}
._pageScrollableReversed {

View File

@ -226,17 +226,13 @@ html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
overscroll-behavior: none;
}
body {
/* NOTE: htmlにも overflow: clip を設定したいところだが、設定すると何故か少なくともChromeで html が main thread scrolling になりパフォーマンスが(多分)落ちる */
overflow: clip;
}
#misskey_app {
width: 100%;
height: 100%;

View File

@ -216,17 +216,13 @@ html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
overscroll-behavior: none;
}
body {
/* NOTE: htmlにも overflow: clip を設定したいところだが、設定すると何故か少なくともChromeで html が main thread scrolling になりパフォーマンスが(多分)落ちる */
overflow: clip;
}
#misskey_app {
width: 100%;
height: 100%;

View File

@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
"version": "2025.3.2-beta.15",
"version": "2025.3.2-beta.14",
"description": "Misskey SDK for JavaScript",
"license": "MIT",
"main": "./built/index.js",