1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-28 16:30:59 +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:
Chad Little 2015-09-03 10:53:16 -07:00
parent 9d0332c2c0
commit 4428a25a7c
3 changed files with 15 additions and 12 deletions

View file

@ -93,7 +93,7 @@ return array(
'rsrc/css/application/policy/policy-edit.css' => '815c66f7', 'rsrc/css/application/policy/policy-edit.css' => '815c66f7',
'rsrc/css/application/policy/policy-transaction-detail.css' => '82100a43', 'rsrc/css/application/policy/policy-transaction-detail.css' => '82100a43',
'rsrc/css/application/policy/policy.css' => '957ea14c', '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/projects/project-icon.css' => '4e3eaa5a',
'rsrc/css/application/releeph/releeph-core.css' => '9b3c5733', 'rsrc/css/application/releeph/releeph-core.css' => '9b3c5733',
'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5', 'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5',
@ -811,7 +811,7 @@ return array(
'policy-css' => '957ea14c', 'policy-css' => '957ea14c',
'policy-edit-css' => '815c66f7', 'policy-edit-css' => '815c66f7',
'policy-transaction-detail-css' => '82100a43', 'policy-transaction-detail-css' => '82100a43',
'ponder-view-css' => 'bef48f86', 'ponder-view-css' => '7b0df4da',
'project-icon-css' => '4e3eaa5a', 'project-icon-css' => '4e3eaa5a',
'raphael-core' => '51ee6b43', 'raphael-core' => '51ee6b43',
'raphael-g' => '40dde778', 'raphael-g' => '40dde778',

View file

@ -37,7 +37,7 @@ final class PonderFooterView extends AphrontTagView {
if ($this->count == 0) { if ($this->count == 0) {
$icon = id(new PHUIIconView()) $icon = id(new PHUIIconView())
->setIconFont('fa-plus-circle msr'); ->setIconFont('fa-comments msr');
$text = pht('Add a Comment'); $text = pht('Add a Comment');
} else { } else {
$icon = id(new PHUIIconView()) $icon = id(new PHUIIconView())
@ -78,7 +78,7 @@ final class PonderFooterView extends AphrontTagView {
$actions[] = $hide_action; $actions[] = $hide_action;
$actions[] = $show_action; $actions[] = $show_action;
return array($this->actions, $actions); return array($actions, $this->actions);
} }
} }

View file

@ -54,30 +54,33 @@
} }
.ponder-footer-view { .ponder-footer-view {
margin: 0 4px -4px; margin: 0 0 -4px;
text-align: right; text-align: left;
} }
.ponder-footer-view .ponder-footer-action { .ponder-footer-view .ponder-footer-action {
padding: 4px 8px; padding: 4px 8px;
margin-left: 8px; margin-right: 8px;
color: {$bluetext}; color: {$anchor};
display: inline-block; display: inline-block;
background-color: rgba(71, 87, 120, 0.06); background-color: rgba(71, 87, 120, 0.06);
font-size: {$smallerfontsize};
} }
.ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful { .ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful {
background-color: {$lightyellow}; 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 { .ponder-footer-view .ponder-footer-action .phui-icon-view {
color: {$bluetext}; color: {$anchor};
font-size: {$smallerfontsize};
} }
.ponder-footer-view a:hover { .ponder-footer-view a:hover {
text-decoration: none; text-decoration: none;
color: {$darkbluetext};
background-color: rgba(71, 87, 120, 0.10); background-color: rgba(71, 87, 120, 0.10);
} }