mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Make notifications visually clearer, like Feed
Summary: See downstream <https://phabricator.wikimedia.org/T166358>. The notifications menu is missing some CSS to color and style values in stories like "renamed task from X to Y". Test Plan: Before: {F6302123} After: {F6302122} Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D20310
This commit is contained in:
parent
b081053e26
commit
a5226366d3
2 changed files with 10 additions and 4 deletions
|
@ -9,7 +9,7 @@ return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'conpherence.pkg.css' => '3c8a0668',
|
'conpherence.pkg.css' => '3c8a0668',
|
||||||
'conpherence.pkg.js' => '020aebcf',
|
'conpherence.pkg.js' => '020aebcf',
|
||||||
'core.pkg.css' => '34ce1741',
|
'core.pkg.css' => 'b797945d',
|
||||||
'core.pkg.js' => 'f9c2509b',
|
'core.pkg.js' => 'f9c2509b',
|
||||||
'differential.pkg.css' => '8d8360fb',
|
'differential.pkg.css' => '8d8360fb',
|
||||||
'differential.pkg.js' => '67e02996',
|
'differential.pkg.js' => '67e02996',
|
||||||
|
@ -38,7 +38,7 @@ return array(
|
||||||
'rsrc/css/application/almanac/almanac.css' => '2e050f4f',
|
'rsrc/css/application/almanac/almanac.css' => '2e050f4f',
|
||||||
'rsrc/css/application/auth/auth.css' => 'add92fd8',
|
'rsrc/css/application/auth/auth.css' => 'add92fd8',
|
||||||
'rsrc/css/application/base/main-menu-view.css' => '8e2d9a28',
|
'rsrc/css/application/base/main-menu-view.css' => '8e2d9a28',
|
||||||
'rsrc/css/application/base/notification-menu.css' => 'e6962e89',
|
'rsrc/css/application/base/notification-menu.css' => '4df1ee30',
|
||||||
'rsrc/css/application/base/phui-theme.css' => '35883b37',
|
'rsrc/css/application/base/phui-theme.css' => '35883b37',
|
||||||
'rsrc/css/application/base/standard-page-view.css' => '8a295cb9',
|
'rsrc/css/application/base/standard-page-view.css' => '8a295cb9',
|
||||||
'rsrc/css/application/chatlog/chatlog.css' => 'abdc76ee',
|
'rsrc/css/application/chatlog/chatlog.css' => 'abdc76ee',
|
||||||
|
@ -774,7 +774,7 @@ return array(
|
||||||
'phabricator-nav-view-css' => 'f8a0c1bf',
|
'phabricator-nav-view-css' => 'f8a0c1bf',
|
||||||
'phabricator-notification' => 'a9b91e3f',
|
'phabricator-notification' => 'a9b91e3f',
|
||||||
'phabricator-notification-css' => '30240bd2',
|
'phabricator-notification-css' => '30240bd2',
|
||||||
'phabricator-notification-menu-css' => 'e6962e89',
|
'phabricator-notification-menu-css' => '4df1ee30',
|
||||||
'phabricator-object-selector-css' => 'ee77366f',
|
'phabricator-object-selector-css' => 'ee77366f',
|
||||||
'phabricator-phtize' => '2f1db1ed',
|
'phabricator-phtize' => '2f1db1ed',
|
||||||
'phabricator-prefab' => '5793d835',
|
'phabricator-prefab' => '5793d835',
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
.phabricator-notification {
|
.phabricator-notification {
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
|
color: {$darkgreytext};
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-notification-menu-loading {
|
.phabricator-notification-menu-loading {
|
||||||
|
@ -114,7 +115,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-notification-header a {
|
.phabricator-notification-header a {
|
||||||
color: {$darkgreytext};
|
color: {$anchor};
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-notification-header a:hover {
|
.phabricator-notification-header a:hover {
|
||||||
|
@ -162,3 +163,8 @@
|
||||||
.aphlict-connection-status .connection-status-text {
|
.aphlict-connection-status .connection-status-text {
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.phabricator-notification .phui-timeline-value {
|
||||||
|
font-style: italic;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue