@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[redesign] Hoverselect colors

Summary: Builds a consistent 'selected, hover' state slightly darker than selected states.

Test Plan: Tested Conpherence, Sidenavs

Reviewers: epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9345

+25 -10
+7 -7
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => '32302948', 10 + 'core.pkg.css' => 'f39a873a', 11 11 'core.pkg.js' => '7db41c19', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => 'fbf57382', ··· 37 37 'rsrc/css/aphront/typeahead.css' => 'a989b5b3', 38 38 'rsrc/css/application/auth/auth.css' => '1e655982', 39 39 'rsrc/css/application/base/main-menu-view.css' => '72d1d2ef', 40 - 'rsrc/css/application/base/notification-menu.css' => '8637a3db', 40 + 'rsrc/css/application/base/notification-menu.css' => 'cbff1b94', 41 41 'rsrc/css/application/base/phabricator-application-launch-view.css' => 'cb9f4db1', 42 42 'rsrc/css/application/base/standard-page-view.css' => '517cdfb1', 43 43 'rsrc/css/application/chatlog/chatlog.css' => '852140ff', 44 44 'rsrc/css/application/config/config-options.css' => '7fedf08b', 45 45 'rsrc/css/application/config/config-template.css' => '25d446d6', 46 46 'rsrc/css/application/config/setup-issue.css' => '69e640e7', 47 - 'rsrc/css/application/conpherence/menu.css' => '828ddd3e', 47 + 'rsrc/css/application/conpherence/menu.css' => 'e1e0fdf1', 48 48 'rsrc/css/application/conpherence/message-pane.css' => '7703a9a9', 49 49 'rsrc/css/application/conpherence/notification.css' => '04a6e10a', 50 50 'rsrc/css/application/conpherence/update.css' => '1099a660', ··· 117 117 'rsrc/css/layout/phabricator-crumbs-view.css' => '989a48b6', 118 118 'rsrc/css/layout/phabricator-filetree-view.css' => 'fccf9f82', 119 119 'rsrc/css/layout/phabricator-hovercard-view.css' => '46a13cf0', 120 - 'rsrc/css/layout/phabricator-side-menu-view.css' => 'c1986b85', 120 + 'rsrc/css/layout/phabricator-side-menu-view.css' => 'a2ccd7bd', 121 121 'rsrc/css/layout/phabricator-source-code-view.css' => '62a99814', 122 122 'rsrc/css/phui/calendar/phui-calendar-day.css' => 'de035c8a', 123 123 'rsrc/css/phui/calendar/phui-calendar-list.css' => 'c1d0ca59', ··· 503 503 'aphront-typeahead-control-css' => 'a989b5b3', 504 504 'auth-css' => '1e655982', 505 505 'config-options-css' => '7fedf08b', 506 - 'conpherence-menu-css' => '828ddd3e', 506 + 'conpherence-menu-css' => 'e1e0fdf1', 507 507 'conpherence-message-pane-css' => '7703a9a9', 508 508 'conpherence-notification-css' => '04a6e10a', 509 509 'conpherence-update-css' => '1099a660', ··· 713 713 'phabricator-nav-view-css' => '9283c2df', 714 714 'phabricator-notification' => '0c6946e7', 715 715 'phabricator-notification-css' => 'ef2c9b34', 716 - 'phabricator-notification-menu-css' => '8637a3db', 716 + 'phabricator-notification-menu-css' => 'cbff1b94', 717 717 'phabricator-object-selector-css' => '029a133d', 718 718 'phabricator-phtize' => 'd254d646', 719 719 'phabricator-prefab' => '41ed7994', ··· 722 722 'phabricator-remarkup-css' => '80c3a48c', 723 723 'phabricator-search-results-css' => 'f240504c', 724 724 'phabricator-shaped-request' => '7cbe244b', 725 - 'phabricator-side-menu-view-css' => 'c1986b85', 725 + 'phabricator-side-menu-view-css' => 'a2ccd7bd', 726 726 'phabricator-slowvote-css' => '266df6a1', 727 727 'phabricator-source-code-view-css' => '62a99814', 728 728 'phabricator-standard-page-view' => '517cdfb1',
+2
src/infrastructure/celerity/CelerityResourceTransformer.php
··· 196 196 'hovergrey' => '#c5cbcf', 197 197 'hoverblue' => '#eceff5', 198 198 'hoverborder' => '#dfe1e9', 199 + 'hoverselectedgrey' => '#bbc4ca', 200 + 'hoverselectedblue' => '#e6e9ee', 199 201 200 202 // Base Greys 201 203 'lightgreyborder' => '#C7CCD9',
+5
webroot/rsrc/css/application/base/notification-menu.css
··· 52 52 background: {$hoverblue}; 53 53 } 54 54 55 + .device-desktop .phabricator-notification-menu 56 + .phabricator-notification-unread.phabricator-notification:hover { 57 + background: {$hoverselectedblue}; 58 + } 59 + 55 60 .phabricator-notification + .phabricator-notification { 56 61 border-top: 1px solid {$hoverborder}; 57 62 }
+5
webroot/rsrc/css/application/conpherence/menu.css
··· 102 102 border-left: 4px solid {$sky}; 103 103 } 104 104 105 + .device-desktop .conpherence-menu 106 + .conpherence-selected.conpherence-menu-item-view:hover { 107 + background-color: {$hoverselectedgrey}; 108 + } 109 + 105 110 .conpherence-menu .loading { 106 111 font-style: italic; 107 112 }
+6 -3
webroot/rsrc/css/layout/phabricator-side-menu-view.css
··· 16 16 color: {$darkbluetext}; 17 17 } 18 18 19 - .phabricator-side-menu .phui-list-item-selected, 20 - .device-desktop .phui-side-menu 21 - .phui-list-item-selected.phui-list-item-href:hover { 19 + .phabricator-side-menu .phui-list-item-selected { 22 20 background-color: {$hovergrey}; 23 21 border-left: 4px solid {$sky}; 22 + } 23 + 24 + .device-desktop .phabricator-side-menu .phui-list-item-selected 25 + a.phui-list-item-href:hover { 26 + background-color: {$hoverselectedgrey}; 24 27 } 25 28 26 29 .phabricator-side-menu .phui-list-item-selected .phui-list-item-href {