mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Correct ObjectItem height when no attributes are attached
Summary: If we have a byline, but no attributes, the height of the entire object is off by 4 pixels. Test Plan: Review list of recent commits, see correct padding. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11128
This commit is contained in:
parent
08126d3904
commit
e048eaf1f5
2 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
return array(
|
||||
'names' => array(
|
||||
'core.pkg.css' => 'd83f8c13',
|
||||
'core.pkg.css' => '094971a9',
|
||||
'core.pkg.js' => '44aac665',
|
||||
'darkconsole.pkg.js' => 'd326843f',
|
||||
'differential.pkg.css' => '8af45893',
|
||||
|
@ -136,7 +136,7 @@ return array(
|
|||
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
|
||||
'rsrc/css/phui/phui-list.css' => '53deb25c',
|
||||
'rsrc/css/phui/phui-object-box.css' => 'e9f7e938',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => '402496b8',
|
||||
'rsrc/css/phui/phui-object-item-list-view.css' => '7f20c02d',
|
||||
'rsrc/css/phui/phui-pinboard-view.css' => '3dd4a269',
|
||||
'rsrc/css/phui/phui-property-list-view.css' => '51480060',
|
||||
'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b',
|
||||
|
@ -777,7 +777,7 @@ return array(
|
|||
'phui-info-panel-css' => '27ea50a1',
|
||||
'phui-list-view-css' => '53deb25c',
|
||||
'phui-object-box-css' => 'e9f7e938',
|
||||
'phui-object-item-list-view-css' => '402496b8',
|
||||
'phui-object-item-list-view-css' => '7f20c02d',
|
||||
'phui-pinboard-view-css' => '3dd4a269',
|
||||
'phui-property-list-view-css' => '51480060',
|
||||
'phui-remarkup-preview-css' => '19ad512b',
|
||||
|
|
|
@ -516,7 +516,7 @@ ul.phui-object-item-icons {
|
|||
|
||||
.phui-object-item-bylines {
|
||||
padding: 0 10px;
|
||||
margin: 4px 0;
|
||||
margin: 4px 0 8px;
|
||||
font-size: 12px;
|
||||
color: {$lightgreytext};
|
||||
text-align: right;
|
||||
|
|
Loading…
Reference in a new issue