mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Remove border-radius on mobile safari
Summary: iOS Safari still likes to round inputs for no specific reason. Test Plan: iOS simulator Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5946
This commit is contained in:
parent
f72ff51bbe
commit
4ba86e7205
2 changed files with 5 additions and 1 deletions
|
@ -3700,7 +3700,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phui-form-css' =>
|
||||
array(
|
||||
'uri' => '/res/86916b69/rsrc/css/phui/phui-form.css',
|
||||
'uri' => '/res/ba4d7995/rsrc/css/phui/phui-form.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -59,6 +59,10 @@ div.jx-tokenizer-container {
|
|||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
|
||||
/* iOS Safari */
|
||||
-webkit-appearance: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
textarea:focus,
|
||||
|
|
Loading…
Reference in a new issue