Una breve guida per cambiare lo stile dei tuoi post wiki:
Cambia il colore di sfondo:
Nel tuo /admin/customize/themes aggiungi questo CSS sotto Common > CSS
.wiki .topic-body .cooked {
background-color: #dcffdc; /*verde chiaro*/
}
Cambia la dimensione del testo
Se vuoi, puoi anche cambiare il font utilizzato o la dimensione del testo, persino il colore
.wiki .topic-body .cooked p {
font-size: 18px;
color: green;
}
Aggiungi testo
Puoi aggiungere un testo per chiarire agli utenti che ciò che stanno visualizzando è un post wiki
.post-info.edits .wiki::before {
content: "MODIFICA QUESTO POST WIKI";
color: green;
background-color: #d2e2d2;
margin-right: 3px;
font-weight: bold;
border: 1px solid green;
padding: 3px;
}
Questo documento è controllato tramite versione - suggerisci modifiche su github .
22 Mi Piace
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?
I believe this should do the trick:
.wiki .topic-body {animation: none;}
6 Mi Piace
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)
Improvements always welcome by pull request.
A very simple Discourse Theme Component which adds a distinctive green (but customisable) background colour to Wikified posts (like they used t' be back when ah wer' a young lad)
4 Mi Piace
sca
(SumitC)
17 Giugno 2021, 7:31pm
5
Is there a way to make background conditional on light and dark theme? Appreciate your response
1 Mi Piace
dax
(Daniela)
7 Luglio 2021, 12:03pm
6
The simplest thing to do is create two different theme components, one for the Light theme and one for the Dark theme so you don’t need to write any more CSS
2 Mi Piace
nathank
(Nathan Kershaw)
28 Luglio 2021, 2:50am
7
Affinché le personalizzazioni delle Wiki funzionino correttamente nei Messaggi Privati con le nuove modifiche , suggerisco una leggera modifica al CSS in modo che miri a .cooked:
// personalizza i post delle Wiki
.wiki .topic-body .cooked {
background-color: #e8f9fd;
animation: none;
}
.post-info.edits .wiki::before {
content: "Post Wiki";
margin-right: 5px;
font-weight: bold;
}
Inserirò anche questo nell’OP.
Più tardi…
E tanto per farlo, l’ho trasformato in un Componente del Tema con la possibilità di personalizzare il colore di sfondo e il testo.
Simple Description
This theme component enables you to make Wiki posts (and Shared Edits posts) more obvious.
Wikis and Shared Edits are a powerful feature of Discourse, but many users are unfamiliar with the concept and find the UI just a bit too subtle. This component makes it crystal clear, packaging the content from Change the style of a wiki post .
Screenshots
[image]
Detailed Description
Installing this component enables you to control the background colour of Wiki posts, and to add s…
2 Mi Piace