mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
I was wrong
Summary: You were right Test Plan: mmm, blue {F167137} Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9567
This commit is contained in:
parent
2f5dedc97e
commit
b12e2a4cc7
4 changed files with 13 additions and 9 deletions
|
@ -51,7 +51,7 @@ return array(
|
|||
'rsrc/css/application/conpherence/widget-pane.css' => 'bf275a6c',
|
||||
'rsrc/css/application/contentsource/content-source-view.css' => '4b8b05d4',
|
||||
'rsrc/css/application/countdown/timer.css' => '86b7b0a0',
|
||||
'rsrc/css/application/dashboard/dashboard.css' => '0594a469',
|
||||
'rsrc/css/application/dashboard/dashboard.css' => '22dfc441',
|
||||
'rsrc/css/application/diff/inline-comment-summary.css' => '8cfd34e8',
|
||||
'rsrc/css/application/differential/add-comment.css' => 'c478bcaa',
|
||||
'rsrc/css/application/differential/changeset-view.css' => 'ff8eacf8',
|
||||
|
@ -64,7 +64,7 @@ return array(
|
|||
'rsrc/css/application/diffusion/commit-view.css' => '92d1e8f9',
|
||||
'rsrc/css/application/diffusion/diffusion-icons.css' => '9c5828da',
|
||||
'rsrc/css/application/diffusion/diffusion-source.css' => '66fdf661',
|
||||
'rsrc/css/application/feed/feed.css' => 'dd43ce00',
|
||||
'rsrc/css/application/feed/feed.css' => '5cbec787',
|
||||
'rsrc/css/application/files/global-drag-and-drop.css' => '697324ad',
|
||||
'rsrc/css/application/flag/flag.css' => '5337623f',
|
||||
'rsrc/css/application/harbormaster/harbormaster.css' => 'cec833b7',
|
||||
|
@ -703,11 +703,11 @@ return array(
|
|||
'phabricator-core-css' => '40151074',
|
||||
'phabricator-countdown-css' => '86b7b0a0',
|
||||
'phabricator-crumbs-view-css' => '7fbf25b8',
|
||||
'phabricator-dashboard-css' => '0594a469',
|
||||
'phabricator-dashboard-css' => '22dfc441',
|
||||
'phabricator-drag-and-drop-file-upload' => 'ae6abfba',
|
||||
'phabricator-draggable-list' => '109e2a87',
|
||||
'phabricator-fatal-config-template-css' => '25d446d6',
|
||||
'phabricator-feed-css' => 'dd43ce00',
|
||||
'phabricator-feed-css' => '5cbec787',
|
||||
'phabricator-file-upload' => 'a4ae61bf',
|
||||
'phabricator-filetree-view-css' => 'fccf9f82',
|
||||
'phabricator-flag-css' => '5337623f',
|
||||
|
|
|
@ -156,14 +156,14 @@ final class PhabricatorDashboardPanelRenderingEngine extends Phobject {
|
|||
case self::HEADER_MODE_EDIT:
|
||||
$header = id(new PhabricatorActionHeaderView())
|
||||
->setHeaderTitle($title)
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_WHITE);
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_LIGHTBLUE);
|
||||
$header = $this->addPanelHeaderActions($header);
|
||||
break;
|
||||
case self::HEADER_MODE_NORMAL:
|
||||
default:
|
||||
$header = id(new PhabricatorActionHeaderView())
|
||||
->setHeaderTitle($title)
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_WHITE);
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_LIGHTBLUE);
|
||||
break;
|
||||
}
|
||||
$icon = id(new PHUIIconView())
|
||||
|
@ -211,14 +211,14 @@ final class PhabricatorDashboardPanelRenderingEngine extends Phobject {
|
|||
case self::HEADER_MODE_EDIT:
|
||||
$header = id(new PhabricatorActionHeaderView())
|
||||
->setHeaderTitle($panel->getName())
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_WHITE);
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_LIGHTBLUE);
|
||||
$header = $this->addPanelHeaderActions($header);
|
||||
break;
|
||||
case self::HEADER_MODE_NORMAL:
|
||||
default:
|
||||
$header = id(new PhabricatorActionHeaderView())
|
||||
->setHeaderTitle($panel->getName())
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_WHITE);
|
||||
->setHeaderColor(PhabricatorActionHeaderView::HEADER_LIGHTBLUE);
|
||||
break;
|
||||
}
|
||||
return $header;
|
||||
|
|
|
@ -77,3 +77,7 @@
|
|||
border-right: 1px solid {$lightblueborder};
|
||||
border-bottom: 1px solid {$blueborder};
|
||||
}
|
||||
|
||||
.dashboard-panel .gradient-lightblue-header .phabricator-action-header-title {
|
||||
padding: 10px 4px;
|
||||
}
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
|
||||
.dashboard-panel .phabricator-feed-frame .phabricator-action-header-title {
|
||||
font-size: 13px;
|
||||
margin-left: 8px;
|
||||
margin-left: 12px;
|
||||
margin-bottom: 0;
|
||||
color: {$bluetext};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue