# HG changeset patch # User Thomas De Schampheleire # Date 2018-05-06 14:34:33 # Node ID 6e65c2153baa6cae0f8749191c4c740bfc582e1c # Parent 25f7d871ea047ec9d371c9966c1d42baa9751f4d style: use monospace on all multi-line form inputs Multi-line form input (textarea) is used for PR comments, PR descriptions, repository descriptions and 'HTML/CSS/Javascript customization block'. In the first three cases, the rendered result is displayed in monospace, so the corresponding textarea should be as well. As the expected content of the HTML/CSS/Javascript block is code, it makes perfect sense to use monospace there too. diff --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -194,6 +194,7 @@ table.changesets { /* textareas should be at least 100px high and 400px wide */ textarea.form-control { + font-family: @font-family-monospace; min-height: 100px; min-width: 400px; }