1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 19:40:55 +01:00

Better CSS target of inline comments in Pholio

Summary: Adds a top border only if a comment is preceding.

Test Plan: test inlines with and without commentsy

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9666
This commit is contained in:
Chad Little 2014-06-22 11:37:52 -07:00
parent 25db3f44a0
commit 5c9f0de9db
2 changed files with 9 additions and 6 deletions

View file

@ -7,7 +7,7 @@
return array(
'names' =>
array(
'core.pkg.css' => '8feeb38a',
'core.pkg.css' => '2400facf',
'core.pkg.js' => 'b440d8d7',
'darkconsole.pkg.js' => 'ca8671ce',
'differential.pkg.css' => '4a93db37',
@ -32,7 +32,7 @@ return array(
'rsrc/css/aphront/table-view.css' => 'b22b7216',
'rsrc/css/aphront/tokenizer.css' => '82ce2142',
'rsrc/css/aphront/tooltip.css' => '9c90229d',
'rsrc/css/aphront/transaction.css' => '3fe49ff1',
'rsrc/css/aphront/transaction.css' => '5d0cae25',
'rsrc/css/aphront/two-column.css' => '16ab3ad2',
'rsrc/css/aphront/typeahead.css' => 'a989b5b3',
'rsrc/css/application/auth/auth.css' => '1e655982',
@ -738,7 +738,7 @@ return array(
'phabricator-standard-page-view' => '517cdfb1',
'phabricator-textareautils' => 'b3ec3cfc',
'phabricator-tooltip' => '3915d490',
'phabricator-transaction-view-css' => '3fe49ff1',
'phabricator-transaction-view-css' => '5d0cae25',
'phabricator-ui-example-css' => '528b19de',
'phabricator-uiexample-javelin-view' => 'd4a14807',
'phabricator-uiexample-reactor-button' => '44524435',

View file

@ -53,12 +53,15 @@
.phabricator-transaction-subheader {
color: {$lightgreytext};
border-top: 1px solid {$thinblueborder};
padding-top: 12px;
margin-top: 12px;
padding-bottom: 8px;
}
.transaction-comment + .phabricator-transaction-subheader {
border-top: 1px solid {$thinblueborder};
margin-top: 12px;
padding-top: 12px;
}
div.phabricator-remarkup + .phabricator-transaction-subheader {
margin-top: 12px;
}