boot.jsエラー画面の不要な項目が表示されないように
This commit is contained in:
parent
ac5d293a99
commit
8513114a9c
|
@ -174,7 +174,7 @@
|
|||
<p>Update your os and browser / ブラウザおよびOSを最新バージョンに更新する</p>
|
||||
<p>Disable an adblocker / アドブロッカーを無効にする</p>
|
||||
<p>(Tor Browser) Set dom.webaudio.enabled to true / dom.webaudio.enabledをtrueに設定する</p>
|
||||
<details style="color: #86b300;">
|
||||
<details class="hide-when-embed" style="color: #86b300;">
|
||||
<summary>Other options / その他のオプション</summary>
|
||||
<a href="/flush">
|
||||
<button class="button-small">
|
||||
|
@ -228,6 +228,10 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
html.embed .hide-when-embed {
|
||||
display: none;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 999px;
|
||||
padding: 0px 12px 0px 12px;
|
||||
|
|
|
@ -17,7 +17,7 @@ doctype html
|
|||
https://github.com/misskey-dev/misskey
|
||||
|
||||
|
||||
html
|
||||
html(class=embed && 'embed')
|
||||
|
||||
head
|
||||
meta(charset='utf-8')
|
||||
|
@ -77,7 +77,7 @@ html
|
|||
script
|
||||
include ../boot.js
|
||||
|
||||
body(class=embed && 'embed')
|
||||
body
|
||||
noscript: p
|
||||
| JavaScriptを有効にしてください
|
||||
br
|
||||
|
|
Loading…
Reference in New Issue