Style the textarea of the charter form to use a monospaced font.

- Legacy-Id: 11882
This commit is contained in:
Henrik Levkowetz 2016-08-26 10:32:26 +00:00
parent 7d0fd4cb29
commit 16c9a2f65a
2 changed files with 6 additions and 2 deletions

View file

@ -314,7 +314,7 @@ pre {
/* misc pages */ /* misc pages */
#dbtemplate-edit textarea { #dbtemplate-edit textarea {
font-family: monospace; font-family: "PT Mono", monospace, "Courier";
} }
.liaison-group-col { .liaison-group-col {
@ -326,6 +326,10 @@ pre {
min-width: 5em; min-width: 5em;
} }
#charter-form textarea {
font-family: "PT Mono", monospace, "Courier";
}
#ipr-details dl.dl-horizontal dt { #ipr-details dl.dl-horizontal dt {
white-space: normal; white-space: normal;
} }

View file

@ -82,7 +82,7 @@
<p class="alert alert-info">The text will be submitted as <b>{{ name }}-{{ next_rev }}</b>.</p> <p class="alert alert-info">The text will be submitted as <b>{{ name }}-{{ next_rev }}</b>.</p>
<form enctype="multipart/form-data" method="post"> <form enctype="multipart/form-data" method="post" id="charter-form">
{% csrf_token %} {% csrf_token %}
{% bootstrap_form form %} {% bootstrap_form form %}