Repaired broken label functionality for Firefox. Fixes #7 #8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As reported in #7, Firefox dislikes having 2
inputsin 1label. In this PR:inputoutside oflabelthus fixing behaviorlabelCSS to.input-rowto make it more reusable and less conflict proneinput'sto use.input-rowto preserve previous stylingThis has not been tested with a live server. It has been tested with copy/paste/replace HTML/CSS in the browser. I attempted to get a
vagrantbox running but got frustrated withpostgressetup.https://github.com/twolfson/vagrant-nodebugme
On another note, I noticed a lot of bad practices in the CSS. Using content semantic classes can lead to unnecessary issues and extra work like having to update all
label'sto.input-row's. From my experience, using OOCSS conventions leads to less issues and more reusable classes. If you would like an explanation of how OOCSS could apply to this project, let me know and I will elaborate in another thread.