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:
parent
25db3f44a0
commit
5c9f0de9db
2 changed files with 9 additions and 6 deletions
|
@ -7,7 +7,7 @@
|
||||||
return array(
|
return array(
|
||||||
'names' =>
|
'names' =>
|
||||||
array(
|
array(
|
||||||
'core.pkg.css' => '8feeb38a',
|
'core.pkg.css' => '2400facf',
|
||||||
'core.pkg.js' => 'b440d8d7',
|
'core.pkg.js' => 'b440d8d7',
|
||||||
'darkconsole.pkg.js' => 'ca8671ce',
|
'darkconsole.pkg.js' => 'ca8671ce',
|
||||||
'differential.pkg.css' => '4a93db37',
|
'differential.pkg.css' => '4a93db37',
|
||||||
|
@ -32,7 +32,7 @@ return array(
|
||||||
'rsrc/css/aphront/table-view.css' => 'b22b7216',
|
'rsrc/css/aphront/table-view.css' => 'b22b7216',
|
||||||
'rsrc/css/aphront/tokenizer.css' => '82ce2142',
|
'rsrc/css/aphront/tokenizer.css' => '82ce2142',
|
||||||
'rsrc/css/aphront/tooltip.css' => '9c90229d',
|
'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/two-column.css' => '16ab3ad2',
|
||||||
'rsrc/css/aphront/typeahead.css' => 'a989b5b3',
|
'rsrc/css/aphront/typeahead.css' => 'a989b5b3',
|
||||||
'rsrc/css/application/auth/auth.css' => '1e655982',
|
'rsrc/css/application/auth/auth.css' => '1e655982',
|
||||||
|
@ -738,7 +738,7 @@ return array(
|
||||||
'phabricator-standard-page-view' => '517cdfb1',
|
'phabricator-standard-page-view' => '517cdfb1',
|
||||||
'phabricator-textareautils' => 'b3ec3cfc',
|
'phabricator-textareautils' => 'b3ec3cfc',
|
||||||
'phabricator-tooltip' => '3915d490',
|
'phabricator-tooltip' => '3915d490',
|
||||||
'phabricator-transaction-view-css' => '3fe49ff1',
|
'phabricator-transaction-view-css' => '5d0cae25',
|
||||||
'phabricator-ui-example-css' => '528b19de',
|
'phabricator-ui-example-css' => '528b19de',
|
||||||
'phabricator-uiexample-javelin-view' => 'd4a14807',
|
'phabricator-uiexample-javelin-view' => 'd4a14807',
|
||||||
'phabricator-uiexample-reactor-button' => '44524435',
|
'phabricator-uiexample-reactor-button' => '44524435',
|
||||||
|
|
|
@ -53,12 +53,15 @@
|
||||||
|
|
||||||
.phabricator-transaction-subheader {
|
.phabricator-transaction-subheader {
|
||||||
color: {$lightgreytext};
|
color: {$lightgreytext};
|
||||||
border-top: 1px solid {$thinblueborder};
|
|
||||||
padding-top: 12px;
|
|
||||||
margin-top: 12px;
|
|
||||||
padding-bottom: 8px;
|
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 {
|
div.phabricator-remarkup + .phabricator-transaction-subheader {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue