1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02: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:
Chad Little 2013-05-08 09:41:49 -07:00
parent 58f0f37873
commit 13225cb058
3 changed files with 3 additions and 3 deletions

View file

@ -3686,7 +3686,7 @@ celerity_register_resource_map(array(
), ),
'phui-form-css' => 'phui-form-css' =>
array( array(
'uri' => '/res/45564bc7/rsrc/css/phui/phui-form.css', 'uri' => '/res/86916b69/rsrc/css/phui/phui-form.css',
'type' => 'css', 'type' => 'css',
'requires' => 'requires' =>
array( array(

View file

@ -365,7 +365,8 @@ final class PhabricatorStandardPageView extends PhabricatorBarePageView {
'div', 'div',
array( array(
'id' => $aphlict_container_id, 'id' => $aphlict_container_id,
'style' => 'position: absolute; width: 0; height: 0;', 'style' =>
'position: absolute; width: 0; height: 0; overflow: hidden;',
), ),
''); '');
} }

View file

@ -79,7 +79,6 @@ input[type="color"]:focus,
div.jx-tokenizer-container-focused { div.jx-tokenizer-container-focused {
border-color: rgba(82, 168, 236, 0.8); border-color: rgba(82, 168, 236, 0.8);
outline: 0; outline: 0;
outline: thin dotted \9;
/* IE6-9 */ /* IE6-9 */
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);