Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Fixes for Firefox quirks #612

Merged
merged 3 commits into from
Sep 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/form-widgets/price-field.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ class PriceField extends Component {
<input
type="number"
id="root_price"
step="0.00001"
className="price-field form-control"
value={this.state.price}
onChange={this.onChange()}
Expand Down
4 changes: 4 additions & 0 deletions src/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ a:hover {
text-decoration: none;
}

textarea:-moz-ui-invalid {
box-shadow: none;
}

.line {
display: inline-block;
}
Expand Down