Pmwiki Stylesheet Customization
To change the font in the PMWiki edit box:
- Go to the StyleSheet page
- Edit the stylesheet
- Note that the text in the edit box is the literal CSS -- don't worry about how it looks in the display view
Example:
@import url('//fonts.obormot.net?fonts=IBMPlexMono');
#wikiedit textarea {
font-family: 'IBM Plex Mono', monospace;
font-weight: 500;
}
This changes the font in the edit window to IBM Plex Mono semibold
To fix the appearance of the buttons in the edit box in MacOS
.buttons input {
font-family: -apple-system, sans-serif
}
