MediaWiki:Common.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1,458:
color: #202122 !important;
visibility: visible !important;
}
 
/* ======================================================= */
/* FIX: PREVENT IPHONE ZOOM ON AI ASSISTANT INPUT */
/* ======================================================= */
 
@media screen and (max-width: 768px) {
/* 1. Force font-size to 16px to stop iOS zooming in */
.ext-aiassistant-panel input,
.ext-aiassistant-panel textarea,
.ext-aiassistant-panel .cdx-text-input__input {
font-size: 16px !important;
}
 
/* 2. Prevent horizontal scrolling on the main body */
/* This ensures that even if a small shift happens, the white bar is hidden */
html, body {
overflow-x: hidden !important;
width: 100% !important;
position: relative; /* Stabilizes the container */
}
}