mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-28 00:10:57 +01:00
Minor Ponder Comment tweaks
Summary: Makes the New Comment, See Comments more obviously placed to find. Test Plan: Review new CSS, answer question, comment, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14043
This commit is contained in:
parent
9d0332c2c0
commit
4428a25a7c
3 changed files with 15 additions and 12 deletions
|
@ -93,7 +93,7 @@ return array(
|
|||
'rsrc/css/application/policy/policy-edit.css' => '815c66f7',
|
||||
'rsrc/css/application/policy/policy-transaction-detail.css' => '82100a43',
|
||||
'rsrc/css/application/policy/policy.css' => '957ea14c',
|
||||
'rsrc/css/application/ponder/ponder-view.css' => 'bef48f86',
|
||||
'rsrc/css/application/ponder/ponder-view.css' => '7b0df4da',
|
||||
'rsrc/css/application/projects/project-icon.css' => '4e3eaa5a',
|
||||
'rsrc/css/application/releeph/releeph-core.css' => '9b3c5733',
|
||||
'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5',
|
||||
|
@ -811,7 +811,7 @@ return array(
|
|||
'policy-css' => '957ea14c',
|
||||
'policy-edit-css' => '815c66f7',
|
||||
'policy-transaction-detail-css' => '82100a43',
|
||||
'ponder-view-css' => 'bef48f86',
|
||||
'ponder-view-css' => '7b0df4da',
|
||||
'project-icon-css' => '4e3eaa5a',
|
||||
'raphael-core' => '51ee6b43',
|
||||
'raphael-g' => '40dde778',
|
||||
|
|
|
@ -37,7 +37,7 @@ final class PonderFooterView extends AphrontTagView {
|
|||
|
||||
if ($this->count == 0) {
|
||||
$icon = id(new PHUIIconView())
|
||||
->setIconFont('fa-plus-circle msr');
|
||||
->setIconFont('fa-comments msr');
|
||||
$text = pht('Add a Comment');
|
||||
} else {
|
||||
$icon = id(new PHUIIconView())
|
||||
|
@ -78,7 +78,7 @@ final class PonderFooterView extends AphrontTagView {
|
|||
$actions[] = $hide_action;
|
||||
$actions[] = $show_action;
|
||||
|
||||
return array($this->actions, $actions);
|
||||
return array($actions, $this->actions);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -54,30 +54,33 @@
|
|||
}
|
||||
|
||||
.ponder-footer-view {
|
||||
margin: 0 4px -4px;
|
||||
text-align: right;
|
||||
margin: 0 0 -4px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.ponder-footer-view .ponder-footer-action {
|
||||
padding: 4px 8px;
|
||||
margin-left: 8px;
|
||||
color: {$bluetext};
|
||||
margin-right: 8px;
|
||||
color: {$anchor};
|
||||
display: inline-block;
|
||||
background-color: rgba(71, 87, 120, 0.06);
|
||||
font-size: {$smallerfontsize};
|
||||
}
|
||||
|
||||
.ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful {
|
||||
background-color: {$lightyellow};
|
||||
color: {$bluetext};
|
||||
}
|
||||
|
||||
.ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful
|
||||
.phui-icon-view {
|
||||
color: {$bluetext};
|
||||
}
|
||||
|
||||
.ponder-footer-view .ponder-footer-action .phui-icon-view {
|
||||
color: {$bluetext};
|
||||
font-size: {$smallerfontsize};
|
||||
color: {$anchor};
|
||||
}
|
||||
|
||||
.ponder-footer-view a:hover {
|
||||
text-decoration: none;
|
||||
color: {$darkbluetext};
|
||||
background-color: rgba(71, 87, 120, 0.10);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue