1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-29 18:22:41 +01:00

Scope syntax css rules to direct descendants only in diffs

Summary: Fixes T11641. We're overbroad here (and this may need more scoping?) but this seems to resolve the immediate issue.

Test Plan: Upload a few diffs and ask disabled accounts to comment on them inline.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11641

Differential Revision: https://secure.phabricator.com/D17565
This commit is contained in:
Chad Little 2017-03-27 10:23:08 -07:00
parent 76404c5fdb
commit 9e2ab4f80e
2 changed files with 7 additions and 7 deletions

View file

@ -9,7 +9,7 @@ return array(
'names' => array( 'names' => array(
'conpherence.pkg.css' => '82aca405', 'conpherence.pkg.css' => '82aca405',
'conpherence.pkg.js' => '6249a1cf', 'conpherence.pkg.js' => '6249a1cf',
'core.pkg.css' => 'acd257dc', 'core.pkg.css' => '87c434ee',
'core.pkg.js' => '021685f1', 'core.pkg.js' => '021685f1',
'darkconsole.pkg.js' => 'e7393ebb', 'darkconsole.pkg.js' => 'e7393ebb',
'differential.pkg.css' => '90b30783', 'differential.pkg.css' => '90b30783',
@ -109,7 +109,7 @@ return array(
'rsrc/css/application/uiexample/example.css' => '528b19de', 'rsrc/css/application/uiexample/example.css' => '528b19de',
'rsrc/css/core/core.css' => '9f4cb463', 'rsrc/css/core/core.css' => '9f4cb463',
'rsrc/css/core/remarkup.css' => '17c0fb37', 'rsrc/css/core/remarkup.css' => '17c0fb37',
'rsrc/css/core/syntax.css' => '769d3498', 'rsrc/css/core/syntax.css' => 'cae95e89',
'rsrc/css/core/z-index.css' => '5e72c4e0', 'rsrc/css/core/z-index.css' => '5e72c4e0',
'rsrc/css/diviner/diviner-shared.css' => '896f1d43', 'rsrc/css/diviner/diviner-shared.css' => '896f1d43',
'rsrc/css/font/font-awesome.css' => 'e838e088', 'rsrc/css/font/font-awesome.css' => 'e838e088',
@ -903,7 +903,7 @@ return array(
'sprite-login-css' => '587d92d7', 'sprite-login-css' => '587d92d7',
'sprite-tokens-css' => '9cdfd599', 'sprite-tokens-css' => '9cdfd599',
'syntax-default-css' => '9923583c', 'syntax-default-css' => '9923583c',
'syntax-highlighting-css' => '769d3498', 'syntax-highlighting-css' => 'cae95e89',
'tokens-css' => '3d0f239e', 'tokens-css' => '3d0f239e',
'typeahead-browse-css' => '8904346a', 'typeahead-browse-css' => '8904346a',
'unhandled-exception-css' => '4c96257a', 'unhandled-exception-css' => '4c96257a',
@ -1436,9 +1436,6 @@ return array(
'phabricator-shaped-request', 'phabricator-shaped-request',
'conpherence-thread-manager', 'conpherence-thread-manager',
), ),
'769d3498' => array(
'syntax-default-css',
),
'76b9fc3e' => array( '76b9fc3e' => array(
'javelin-behavior', 'javelin-behavior',
'javelin-stratcom', 'javelin-stratcom',
@ -2000,6 +1997,9 @@ return array(
'phabricator-title', 'phabricator-title',
'phabricator-favicon', 'phabricator-favicon',
), ),
'cae95e89' => array(
'syntax-default-css',
),
'ccf1cbf8' => array( 'ccf1cbf8' => array(
'javelin-install', 'javelin-install',
'javelin-dom', 'javelin-dom',

View file

@ -11,7 +11,7 @@
margin-right: 1px; margin-right: 1px;
} }
.remarkup-code td span { .remarkup-code td > span {
display: inline; display: inline;
word-break: break-all; word-break: break-all;
} }