Refactor textarea css
This commit is contained in:
parent
6f326f91bd
commit
d7557784bd
|
@ -104,7 +104,7 @@ div.citeblock a.phantom {
|
||||||
span.signature {
|
span.signature {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
textarea#configText {
|
textarea.fullwidth {
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<form action="" method="post" novalidate>
|
<form action="" method="post" novalidate>
|
||||||
{{ form.hidden_tag() }}
|
{{ form.hidden_tag() }}
|
||||||
<p>{{ form.configText.label }}<br>{{ form.configText(rows=20) }}</p>
|
<p>{{ form.configText.label }}<br>{{ form.configText(rows=20, class_="fullwidth") }}</p>
|
||||||
<p>{{ form.submit() }}</p>
|
<p>{{ form.submit() }}</p>
|
||||||
</form>
|
</form>
|
||||||
{% for message in get_flashed_messages() %}
|
{% for message in get_flashed_messages() %}
|
||||||
|
|
Loading…
Reference in New Issue