Fix Mobile Safari issues. (#1282)

* 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.
old
Izak Filmalter 2017-08-02 12:31:46 -04:00 committed by Javi Velasco
parent 94f649363a
commit e15ee8ee05
3 changed files with 3 additions and 0 deletions

View File

@ -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);

View File

@ -9,6 +9,7 @@ module.exports = {
devtool: 'inline-source-map',
entry: [
'webpack-hot-middleware/client',
'babel-polyfill',
'./app/index.js'
],
output: {

View File

@ -9,6 +9,7 @@ module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'webpack-hot-middleware/client',
'babel-polyfill',
'./spec/index.js'
],
output: {