Set the Markdown input area as monospace in some known sites, including SourceForge, YouTrack, and Simplenote.
monospaced input by franklinyu
Details
Authorfranklinyu
LicenseApache-2.0
CategorySourceForge; MacPorts Trac; Simplenote; YouTrack
Created
Updated
Size905 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/*
==UserStyle==
@name monospaced input
@namespace https://franklinyu.github.io
@author Franklin Yu <franklinyu@hotmail.com>
@description Set the Markdown input area as monospace in some known sites, including SourceForge, YouTrack, and Simplenote.
@version 0.2
@license Apache-2.0
@preprocessor uso
@var text fonts 'Font List' 'Menlo, "Lucida Console", monospace'
==/UserStyle== */
@-moz-document domain('sourceforge.net') {
.CodeMirror-lines {
font-family: /*[[fonts]]*/;
}
}
@-moz-document domain('app.simplenote.com') {
.note #txtarea {
font-family: /*[[fonts]]*/;
}
}
@-moz-document domain('myjetbrains.com') {
textarea.ring-input {
font-family: /*[[fonts]]*/;
}
}
@-moz-document domain('p.dnnr.de') {
.fd-zone {
font-family: /*[[fonts]]*/;
}
}
@-moz-document domain('trac.macports.org') {
textarea {
font-family: /*[[fonts]]*/;
}
}