mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Remove default margin on selects
Summary: Fixes T11935. Safari even with appearance: none still assigns margin to selects. Reset margin to 0. Test Plan: Review selects on Safari, Chrome. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T11935 Differential Revision: https://secure.phabricator.com/D16968
This commit is contained in:
parent
9730f5a34f
commit
98057091f6
2 changed files with 4 additions and 3 deletions
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => '0b64e988',
|
||||
'conpherence.pkg.js' => '6249a1cf',
|
||||
'core.pkg.css' => '417800a6',
|
||||
'core.pkg.css' => '5b1fcbf1',
|
||||
'core.pkg.js' => '9d208f10',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => 'a4ba74b5',
|
||||
|
@ -141,7 +141,7 @@ return array(
|
|||
'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9',
|
||||
'rsrc/css/phui/phui-fontkit.css' => '9cda225e',
|
||||
'rsrc/css/phui/phui-form-view.css' => '3fadd537',
|
||||
'rsrc/css/phui/phui-form.css' => 'b8fb087a',
|
||||
'rsrc/css/phui/phui-form.css' => '2342b0e5',
|
||||
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
||||
'rsrc/css/phui/phui-header-view.css' => '6ec8f155',
|
||||
'rsrc/css/phui/phui-hovercard.css' => 'de1a2119',
|
||||
|
@ -856,7 +856,7 @@ return array(
|
|||
'phui-feed-story-css' => '44a9c8e9',
|
||||
'phui-font-icon-base-css' => '870a7360',
|
||||
'phui-fontkit-css' => '9cda225e',
|
||||
'phui-form-css' => 'b8fb087a',
|
||||
'phui-form-css' => '2342b0e5',
|
||||
'phui-form-view-css' => '3fadd537',
|
||||
'phui-head-thing-view-css' => 'fd311e5f',
|
||||
'phui-header-view-css' => '6ec8f155',
|
||||
|
|
|
@ -116,6 +116,7 @@ select {
|
|||
border: 1px solid {$greyborder};
|
||||
height: 28px;
|
||||
padding: 0 24px 0 8px;
|
||||
margin: 0;
|
||||
min-width: 180px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue