@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.

Use FontAwesome for search icon

Summary: Swaps out search icon for font-awesome. Tweaks colors a bit for different color headers.

Test Plan: Test a number of colors in the search box. Click on button and still go to advanced search.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+16 -13
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '2ff29d1d', 10 + 'core.pkg.css' => 'c5a029ea', 11 11 'core.pkg.js' => 'c5888f3d', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => '571b1cc1', ··· 34 34 'rsrc/css/aphront/typeahead.css' => '0e403212', 35 35 'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af', 36 36 'rsrc/css/application/auth/auth.css' => '1e655982', 37 - 'rsrc/css/application/base/main-menu-view.css' => '58db7ad2', 37 + 'rsrc/css/application/base/main-menu-view.css' => 'cfa2ec0f', 38 38 'rsrc/css/application/base/notification-menu.css' => '6aa0a74b', 39 39 'rsrc/css/application/base/phabricator-application-launch-view.css' => '16ca323f', 40 40 'rsrc/css/application/base/standard-page-view.css' => 'd2a6518d', ··· 729 729 'phabricator-hovercard-view-css' => '893f4783', 730 730 'phabricator-keyboard-shortcut' => '1ae869f2', 731 731 'phabricator-keyboard-shortcut-manager' => 'c1700f6f', 732 - 'phabricator-main-menu-view' => '58db7ad2', 732 + 'phabricator-main-menu-view' => 'cfa2ec0f', 733 733 'phabricator-nav-view-css' => '7aeaf435', 734 734 'phabricator-notification' => '0c6946e7', 735 735 'phabricator-notification-css' => '9c279160',
+4 -1
src/view/page/menu/PhabricatorMainMenuSearchView.php
··· 66 66 $input, 67 67 phutil_tag( 68 68 'button', 69 - array('id' => $button_id), 69 + array( 70 + 'id' => $button_id, 71 + 'class' => 'phui-icon-view phui-font-fa fa-search lightgreytext', 72 + ), 70 73 pht('Search')), 71 74 $primary_input, 72 75 $target,
+9 -9
webroot/rsrc/css/application/base/main-menu-view.css
··· 146 146 right: 0; 147 147 position: absolute; 148 148 font-size: 13px; 149 - border: 1px solid #333; 149 + border-color: rgba(0,0,0,.6); 150 150 border-radius: 12px; 151 - background-color: #222; 151 + background-color: rgba(0,0,0,.5); 152 152 opacity: .8; 153 153 height: 26px; 154 154 line-height: 12px; ··· 157 157 } 158 158 159 159 .phabricator-main-menu.main-header-dark .phabricator-main-menu-search input { 160 - background-color: #555; 160 + background-color: rgba(150,150,150,.5); 161 + border-color: #333; 161 162 } 162 163 163 164 .device .phabricator-main-menu-search input { ··· 170 171 background: #fff; 171 172 opacity: 1; 172 173 color: #333; 173 - border-color: #e7e7e7; 174 + border-color: {$lightgreyborder}; 174 175 box-shadow: none; 175 176 } 176 177 ··· 180 181 181 182 .phabricator-main-menu-search button { 182 183 position: absolute; 183 - color: transparent; 184 - background: transparent 5px 6px url(/rsrc/image/search-white.png) no-repeat; 184 + background: transparent; 185 185 border: none; 186 186 outline: none; 187 187 box-shadow: none; 188 188 text-shadow: none; 189 189 min-width: 0; 190 190 191 - height: 20px; 192 - width: 20px; 191 + height: 24px; 192 + width: 24px; 193 193 top: 10px; 194 - right: 6px; 194 + right: 10px; 195 195 } 196 196 197 197 .device .phabricator-main-menu-search button {