mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Select <td> padding for inlines more surgically
Summary: Fixes T11225. The primary issue here is that this rule is bleeding down too far. It appears that it's only intended to put space around the inline as a whole. Spacing still isn't //perfect// since a few other rules are bleeding, but it feels reasonable now instead of being clearly broken. Test Plan: - Added "background: red;" to figure out what was being affected. - Before: {F1704081} - After: {F1704084} Reviewers: chad Reviewed By: chad Maniphest Tasks: T11225 Differential Revision: https://secure.phabricator.com/D16184
This commit is contained in:
parent
da6c96dfff
commit
84ce863116
2 changed files with 8 additions and 8 deletions
|
@ -10,7 +10,7 @@ return array(
|
|||
'core.pkg.css' => 'b6b40555',
|
||||
'core.pkg.js' => 'f2139810',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => 'b3eea3f5',
|
||||
'differential.pkg.css' => '3e81ae60',
|
||||
'differential.pkg.js' => '01a010d6',
|
||||
'diffusion.pkg.css' => '91c5d3a6',
|
||||
'diffusion.pkg.js' => '3a9a8bfa',
|
||||
|
@ -57,7 +57,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' => 'ccfbc869',
|
||||
'rsrc/css/application/differential/changeset-view.css' => '37792573',
|
||||
'rsrc/css/application/differential/core.css' => '5b7b8ff4',
|
||||
'rsrc/css/application/differential/phui-inline-comment.css' => '5953c28e',
|
||||
'rsrc/css/application/differential/revision-comment.css' => '14b8565a',
|
||||
|
@ -555,7 +555,7 @@ return array(
|
|||
'conpherence-update-css' => 'faf6be09',
|
||||
'conpherence-widget-pane-css' => '775eaaba',
|
||||
'd3' => 'a11a5ff2',
|
||||
'differential-changeset-view-css' => 'ccfbc869',
|
||||
'differential-changeset-view-css' => '37792573',
|
||||
'differential-core-view-css' => '5b7b8ff4',
|
||||
'differential-inline-comment-editor' => '64a5550f',
|
||||
'differential-revision-add-comment-css' => 'c47f8c40',
|
||||
|
@ -1136,6 +1136,9 @@ return array(
|
|||
'javelin-dom',
|
||||
'javelin-workflow',
|
||||
),
|
||||
37792573 => array(
|
||||
'phui-inline-comment-view-css',
|
||||
),
|
||||
'3ab51e2c' => array(
|
||||
'javelin-behavior',
|
||||
'javelin-behavior-device',
|
||||
|
@ -1931,9 +1934,6 @@ return array(
|
|||
'javelin-util',
|
||||
'phabricator-notification-css',
|
||||
),
|
||||
'ccfbc869' => array(
|
||||
'phui-inline-comment-view-css',
|
||||
),
|
||||
'cf86d16a' => array(
|
||||
'javelin-behavior',
|
||||
'javelin-dom',
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
padding: 1px 4px;
|
||||
}
|
||||
|
||||
.device .differential-diff .inline td {
|
||||
.device .differential-diff .inline > td {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
|
@ -308,7 +308,7 @@ td.cov-I {
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.differential-diff .inline td {
|
||||
.differential-diff .inline > td {
|
||||
padding: 8px 12px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue