Skip to content

Commit

Permalink
Fix Mobile Safari issues. (react-toolbox#1282)
Browse files Browse the repository at this point in the history
* Add $input-icon-right-space var to add the correct spacing to the input based on Material Spec.

https://material.io/guidelines/components/text-fields.html#text-fields-s
ingle-line-text-field

* Fix Mobile Safari Issues.

Remove added border-radius for inputs from Safari. Fix `Object.entries
is not a function` for autocomplete.

* Remove new line.

* Add callback functions to slider for when slider starts being dragged, and when it stops.
  • Loading branch information
Izak Filmalter authored and javivelasco committed Aug 2, 2017
1 parent 94f6493 commit e15ee8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/input/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
background-color: var(--input-text-background-color);
border-bottom: 1px solid var(--input-text-bottom-border-color);
border-left: 0;
border-radius: 0;
border-right: 0;
border-top: 0;
color: var(--color-text);
Expand Down
1 change: 1 addition & 0 deletions docs/webpack.config.development.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = {
devtool: 'inline-source-map',
entry: [
'webpack-hot-middleware/client',
'babel-polyfill',
'./app/index.js'
],
output: {
Expand Down
1 change: 1 addition & 0 deletions webpack/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'webpack-hot-middleware/client',
'babel-polyfill',
'./spec/index.js'
],
output: {
Expand Down

0 comments on commit e15ee8e

Please sign in to comment.