mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
Adding right margin to labels (to compensate for now-missing left margin on input fields)
This commit is contained in:
parent
f60c9b00ab
commit
1087b3cb4e
2 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
<form method="get" action="index.php">
|
||||
<a href="javascript: void(null);" id="search-form-close" class="popup-close">×</a>
|
||||
<input type="hidden" name="view" value="search"></input>
|
||||
<label>{% trans "Search" %}</label>: <input required placeholder="{% trans "Enter your search here" %}" type="text" name="search" id="searchfield" />
|
||||
<label>{% trans "Search" %}:</label><input required placeholder="{% trans "Enter your search here" %}" type="text" name="search" id="searchfield" />
|
||||
<input id="submit-search" type="submit" value="{% trans "Search" %} !"></input>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -104,10 +104,6 @@ form input[type="text"], select, form input[type="password"], form input[type="u
|
|||
}
|
||||
}
|
||||
|
||||
fieldset label {
|
||||
min-width: 12.5em;
|
||||
}
|
||||
|
||||
.inline .row {
|
||||
display: inline-block;
|
||||
margin-right: 0.5em;
|
||||
|
@ -119,10 +115,14 @@ fieldset label {
|
|||
|
||||
fieldset label {
|
||||
display: inline-block;
|
||||
margin-right: 0.5em;
|
||||
min-width: 12.5em;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
label {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
form .row {
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue