small adjustment to tag list text
This commit is contained in:
parent
3a4789b281
commit
80d303bb63
@ -55,7 +55,7 @@ class UploadForm(FlaskForm):
|
||||
validators=[DataRequired()]
|
||||
)
|
||||
tags = StringField(
|
||||
"Add tags, press enter or add a comma after each tag:",
|
||||
"Add tags, seperated by commas. No need for the '#' sign:",
|
||||
validators=[validators.InputRequired(), Length(2, 500)],
|
||||
)
|
||||
|
||||
|
@ -98,6 +98,11 @@ fieldset.required > ul {
|
||||
fieldset.required > ul > li{
|
||||
list-style-type: none;
|
||||
}
|
||||
fieldset.tagfield > input {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
input {
|
||||
border: none;
|
||||
background: #E0B0FF;
|
||||
|
@ -37,7 +37,7 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset class="required">
|
||||
<fieldset class="required tagfield" id="tagfield">
|
||||
{{ uploadform.tags.label }}
|
||||
{{ uploadform.tags }}
|
||||
{% for message in uploadform.tags.errors %}
|
||||
|
Loading…
Reference in New Issue
Block a user