Reviewed & tested by the community
Project:
TB Blog
Version:
7.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
17 Dec 2012 at 08:07 UTC
Updated:
17 Dec 2012 at 08:07 UTC
In HOME, the Search Form Submit HTML:
<span class="button edit-submit">
<input type="submit" name="op" id="edit-submit" value="Search" class="form-submit">
</span>
has css:
.form-wrapper .edit-submit {
margin-right: 3px;
}But in Detailed-Node, the Search Form Submit HTML changed into:
<span class="button edit-submit--2">
<input type="submit" name="op" id="edit-submit--2" value="Search" class="form-submit">
</span>
Where the object above doesn't get the matching CSS the same as amove.
The change is because of the existence of another submit button (which is in Comment Form Submit button).
The fix is (in form.css):
#search-block-form span.button {
margin-right: 3px;
}
Comments
Comment #1
bonn commented