fix(mobile): fill modal background white to hide overlay gap#700
Merged
Conversation
モーダルコンテンツ(modal_modal-content)にデフォルトの背景色が設定 されていなかったため、prompt等でコンテンツ高さが100dvhより短い場合、 下部にオーバーレイ(青)が透けて見えていた。 background-color: #ffffff を追加して、未使用領域も白で埋める。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
🚀 Preview deployed: https://smalruby.jp/smalruby3-editor/fix/issue-698-mobile-modal-overlay-gap/ |
github-actions Bot
pushed a commit
that referenced
this pull request
May 22, 2026
…-mobile-modal-overlay-gap fix(mobile): fill modal background white to hide overlay gap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes Made
mobile-gui.css:modal_modal-contentにbackground-color: #ffffffを追加原因
modal.cssの.modal-contentはデフォルトで背景色が未設定(透明)。モバイルでは
height: 100dvh; position: fixedでフルスクリーン表示するが、プロンプト等のコンテンツ高さが
100dvhより短い場合、下部の余白からモーダルオーバーレイ(半透明青)が透けて見えていた。
Test Plan
Related Issues
Closes #698 (追加修正)