This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 140
Standardize Form Control Look and Feel on Mobile Safari #63
Labels
Comments
ghost
added
the
enhancement
label
Apr 16, 2018
If we want to look at disable zooming on controls for Safari Mobile extend this: input.form-control,
textarea.form-control {
font-size: initial;
} |
guitmz
pushed a commit
to guitmz/after-dark-green
that referenced
this issue
Jul 13, 2018
relates to egoist/hack#63 causes input form controls to look like hackcss input controls on iphone
How @guitmz addressed this: input.form-control {
border-radius: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
} |
@JHabdas if I recall correctly this code actually came from you :) |
vhscom
pushed a commit
to vhscom/after-dark
that referenced
this issue
Feb 19, 2022
relates to egoist/hack#63 causes input form controls to look like hackcss input controls on iphone
vhscom
added a commit
to vhscom/after-dark
that referenced
this issue
Mar 4, 2022
relates to egoist/hack#63 causes input form controls to look like hackcss input controls on iphone
vhscom
added a commit
to vhscom/after-dark
that referenced
this issue
Mar 4, 2022
relates to egoist/hack#63 causes input form controls to look like hackcss input controls on iphone
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using hack without a css reset of any kind we can see some elements are unstyled to achieve the expected look-and-feel:
hack/src/css/components.css
Lines 139 to 141 in 5843d89
Let's extend this also to input controls for mobile safari. Here's a primer for making it happen: https://signalvnoise.com/posts/2609-customizing-web-forms-with-css3-and-webkit
The text was updated successfully, but these errors were encountered: