1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Re-darken full width diff colors

Summary: Ref T12089. This reverts back to using "bright" colors for full width changes in green and red.

Test Plan:
Review diffs, see full width colors.

{F2333933}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12089

Differential Revision: https://secure.phabricator.com/D17171
This commit is contained in:
Chad Little 2017-01-10 13:13:47 -08:00
parent ccff47682f
commit 63af2275ca
2 changed files with 10 additions and 12 deletions

View file

@ -12,7 +12,7 @@ return array(
'core.pkg.css' => '9c725fa0',
'core.pkg.js' => 'a2ead3fe',
'darkconsole.pkg.js' => 'e7393ebb',
'differential.pkg.css' => 'f69afb45',
'differential.pkg.css' => 'e0517745',
'differential.pkg.js' => '40b18f35',
'diffusion.pkg.css' => '91c5d3a6',
'diffusion.pkg.js' => '84c8f8fd',
@ -59,7 +59,7 @@ return array(
'rsrc/css/application/dashboard/dashboard.css' => 'bc6f2127',
'rsrc/css/application/diff/inline-comment-summary.css' => '51efda3a',
'rsrc/css/application/differential/add-comment.css' => 'c47f8c40',
'rsrc/css/application/differential/changeset-view.css' => '11395d9c',
'rsrc/css/application/differential/changeset-view.css' => 'a5a96310',
'rsrc/css/application/differential/core.css' => '5b7b8ff4',
'rsrc/css/application/differential/phui-inline-comment.css' => '5953c28e',
'rsrc/css/application/differential/revision-comment.css' => '14b8565a',
@ -574,7 +574,7 @@ return array(
'conpherence-thread-manager' => 'c8b5ee6f',
'conpherence-transaction-css' => '85129c68',
'd3' => 'a11a5ff2',
'differential-changeset-view-css' => '11395d9c',
'differential-changeset-view-css' => 'a5a96310',
'differential-core-view-css' => '5b7b8ff4',
'differential-inline-comment-editor' => '2e3f9738',
'differential-revision-add-comment-css' => 'c47f8c40',
@ -1032,9 +1032,6 @@ return array(
'javelin-dom',
'javelin-typeahead-normalizer',
),
'11395d9c' => array(
'phui-inline-comment-view-css',
),
'12884df9' => array(
'javelin-behavior',
'javelin-stratcom',
@ -1759,6 +1756,9 @@ return array(
'javelin-uri',
'phabricator-notification',
),
'a5a96310' => array(
'phui-inline-comment-view-css',
),
'a5c57c24' => array(
'javelin-behavior',
'javelin-stratcom',

View file

@ -122,22 +122,18 @@
}
.differential-diff th.old {
background: #ffdddd;
border-right-color: #f8cbcb;
}
.differential-diff th.new {
background: #dbffdb;
border-right-color: #a6f3a6;
}
.differential-diff td.old,
.differential-diff td.old-full {
.differential-diff td.old {
background: #ffecec;
}
.differential-diff td.new,
.differential-diff td.new-full {
.differential-diff td.new {
background: #eaffea;
}
@ -150,11 +146,13 @@
}
.differential-diff td.old span.bright,
.differential-diff td.old-full,
.prose-diff span.old {
background: #f8cbcb;
}
.differential-diff td.new span.bright,
.differential-diff td.new-full,
.prose-diff span.new {
background: #a6f3a6;
}