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

Fix search typeahead results on mobile and tablet

Summary: Some styles were getting clobbered, tightened things up

Test Plan: Test mobile, desktop and tablet breakpoints

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+19 -3
+3 -3
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => '2400facf', 10 + 'core.pkg.css' => '22e4fc33', 11 11 'core.pkg.js' => 'b440d8d7', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => '4a93db37', ··· 36 36 'rsrc/css/aphront/two-column.css' => '16ab3ad2', 37 37 'rsrc/css/aphront/typeahead.css' => 'a989b5b3', 38 38 'rsrc/css/application/auth/auth.css' => '1e655982', 39 - 'rsrc/css/application/base/main-menu-view.css' => 'b597e539', 39 + 'rsrc/css/application/base/main-menu-view.css' => 'aceca0e9', 40 40 'rsrc/css/application/base/notification-menu.css' => 'cbff1b94', 41 41 'rsrc/css/application/base/phabricator-application-launch-view.css' => '8b7e271d', 42 42 'rsrc/css/application/base/standard-page-view.css' => '517cdfb1', ··· 719 719 'phabricator-hovercard-view-css' => 'cae6e28f', 720 720 'phabricator-keyboard-shortcut' => '1ae869f2', 721 721 'phabricator-keyboard-shortcut-manager' => 'ad7a69ca', 722 - 'phabricator-main-menu-view' => 'b597e539', 722 + 'phabricator-main-menu-view' => 'aceca0e9', 723 723 'phabricator-nav-view-css' => '9283c2df', 724 724 'phabricator-notification' => '0c6946e7', 725 725 'phabricator-notification-css' => 'ef2c9b34',
+16
webroot/rsrc/css/application/base/main-menu-view.css
··· 201 201 margin-left: 40px; 202 202 } 203 203 204 + .device .phabricator-main-menu-search-target div.jx-typeahead-results { 205 + margin-left: 30px; 206 + } 207 + 204 208 .phabricator-main-search-typeahead-result .phabricator-search-icon { 205 209 display: inline-block; 206 210 width: 28px; ··· 237 241 padding: 0; 238 242 } 239 243 244 + .device-phone .phabricator-main-search-typeahead-result .result-name { 245 + font-size: 15px; 246 + } 247 + 248 + .device-phone .phabricator-main-search-typeahead-result .result-type { 249 + font-size: 13px; 250 + } 251 + 252 + .device .phabricator-dark-menu .phui-list-item-type-link 253 + .phabricator-main-search-typeahead-result { 254 + line-height: 18px; 255 + } 240 256 241 257 /* - Alert --------------------------------------------------------------------- 242 258