MediaWiki:Common.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1,422:
white-space: normal !important;
word-wrap: break-word !important;
}
 
/* ======================================================= */
/* 7. AI ASSISTANT COLORS (Footer & Active Button) */
/* ======================================================= */
 
/* 1. Change Footer Background to Light Gray */
.ext-aiassistant-footer {
background-color: #EAECF0 !important;
}
 
/* 2. Change Active Send Button to Dark (#202122) */
/* We use :not(:disabled) to target the button only when it is active,
ensuring we don't overwrite the light grey disabled state. */
.ext-aiassistant-send:not(:disabled) {
background-color: #202122 !important;
border-color: #202122 !important;
color: #ffffff !important; /* Keep the arrow icon white */
}
 
/* Optional: Make it slightly darker (Pure Black) on hover/click */
.ext-aiassistant-send:not(:disabled):hover,
.ext-aiassistant-send:not(:disabled):active {
background-color: #000000 !important;
border-color: #000000 !important;
}