Hey, we just changed the background color of wikis on the Fairphone forum, but like all other posts each wiki starts out as staff-blue when you load it, then slowly turns white and only then turns green.
Is there a way to disable this animation for wiki posts?
Here’s a Theme Component which makes Wikified posts pale green again, and incorporates @Kris’s animation: none tweak. (I chose an essentially random pale green as I did this surreptitiously while I was supposed to be paying attention in a meeting. But you can change the RGB value in the Theme Component CSS after installation)
Lo más sencillo es crear dos componentes de tema diferentes: uno para el tema claro y otro para el tema oscuro, de modo que no necesites escribir más CSS.
Para que las personalizaciones del Wiki funcionen bien en Mensajes Privados con los nuevos cambios, sugiero un pequeño ajuste en el CSS para que apunte a .cooked:
// personaliza las publicaciones del Wiki
.wiki .topic-body .cooked {
background-color: #e8f9fd;
animation: none;
}
.post-info.edits .wiki::before {
content: "Publicación del Wiki";
margin-right: 5px;
font-weight: bold;
}
También lo incluiré en la primera publicación (OP).
Más tarde…
Y por diversión, lo convertí en un Componente de Tema con la capacidad de personalizar el color de fondo y el texto.