mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Update icon color in Durable Column header-text
Summary: Moving to an rgba color here to work better with all the various header colors. Test Plan: Reload sandbox, see new icon color. Reviewers: epriestley, btrahan Reviewed By: btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12176
This commit is contained in:
parent
c4799b2c45
commit
6b74873358
3 changed files with 7 additions and 3 deletions
|
@ -44,7 +44,7 @@ return array(
|
|||
'rsrc/css/application/config/config-welcome.css' => '6abd79be',
|
||||
'rsrc/css/application/config/setup-issue.css' => '22270af2',
|
||||
'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => 'e5a70c22',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => 'e11b2fbc',
|
||||
'rsrc/css/application/conpherence/menu.css' => '9b37a261',
|
||||
'rsrc/css/application/conpherence/message-pane.css' => '0c4dfb6f',
|
||||
'rsrc/css/application/conpherence/notification.css' => '04a6e10a',
|
||||
|
@ -513,7 +513,7 @@ return array(
|
|||
'changeset-view-manager' => '58562350',
|
||||
'config-options-css' => '7fedf08b',
|
||||
'config-welcome-css' => '6abd79be',
|
||||
'conpherence-durable-column-view' => 'e5a70c22',
|
||||
'conpherence-durable-column-view' => 'e11b2fbc',
|
||||
'conpherence-menu-css' => '9b37a261',
|
||||
'conpherence-message-pane-css' => '0c4dfb6f',
|
||||
'conpherence-notification-css' => '04a6e10a',
|
||||
|
|
|
@ -216,7 +216,7 @@ final class ConpherenceDurableColumnView extends AphrontTagView {
|
|||
$icon = $conpherence->getPolicyIconName($policy_objects);
|
||||
return id(new PHUIIconView())
|
||||
->addClass('mmr')
|
||||
->setIconFont($icon.' lightgreytext');
|
||||
->setIconFont($icon);
|
||||
}
|
||||
|
||||
private function buildIconBar() {
|
||||
|
|
|
@ -73,6 +73,10 @@
|
|||
border-left: 1px solid rgba(0,0,0,.2);
|
||||
}
|
||||
|
||||
.conpherence-durable-column-header-text .phui-icon-view {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
.conpherence-durable-column-icon-bar {
|
||||
height: 38px;
|
||||
padding: 4px 8px;
|
||||
|
|
Loading…
Reference in a new issue