MediaWiki:Common.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1,161:
 
/* ======================================================= */
/* 4. AI ASSISTANT FOOTER ALIGNMENT & MAKE BUTTON CIRCLE */
/* ======================================================= */
 
Line 1,167:
/* Align items to the top (flex-start) instead of bottom (flex-end) */
align-items: flex-start !important;
}
 
/* Make the AI Assistant Send button a circle */
.ext-aiassistant-send {
/* 1. Force a perfect circle shape */
border-radius: 50% !important;
 
/* 2. Force equal width and height */
width: 36px !important;
height: 36px !important;
min-width: 0 !important; /* Overrides Codex default "wide" button style */
 
/* 3. Center the icon */
padding: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
/* Optional: Add a subtle margin if it's too close to the text input */
margin-left: 8px !important;
}