mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix two IE issues.
Summary: 1) Borders were appearing on inputs not as expected. 2) the SWF container was always displayed at the bottom of every page load (long time issue). There are more issues, but this fixes the 2 largest for right now. Test Plan: Tested Maniphest create page. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5867
This commit is contained in:
parent
58f0f37873
commit
13225cb058
3 changed files with 3 additions and 3 deletions
|
@ -3686,7 +3686,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phui-form-css' =>
|
||||
array(
|
||||
'uri' => '/res/45564bc7/rsrc/css/phui/phui-form.css',
|
||||
'uri' => '/res/86916b69/rsrc/css/phui/phui-form.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -365,7 +365,8 @@ final class PhabricatorStandardPageView extends PhabricatorBarePageView {
|
|||
'div',
|
||||
array(
|
||||
'id' => $aphlict_container_id,
|
||||
'style' => 'position: absolute; width: 0; height: 0;',
|
||||
'style' =>
|
||||
'position: absolute; width: 0; height: 0; overflow: hidden;',
|
||||
),
|
||||
'');
|
||||
}
|
||||
|
|
|
@ -79,7 +79,6 @@ input[type="color"]:focus,
|
|||
div.jx-tokenizer-container-focused {
|
||||
border-color: rgba(82, 168, 236, 0.8);
|
||||
outline: 0;
|
||||
outline: thin dotted \9;
|
||||
/* IE6-9 */
|
||||
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
|
||||
|
|
Loading…
Reference in a new issue