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

Remove nowrap from PHUITagCore

Summary: Removes the outer inline-block on PHUITags, it isn't needed and causes issues in some browsers, like Chrome Android. Tags also wrap again on long tags.

Test Plan:
tested hovercards, tags, people tags, maniphest, project tags, typeahead tags.

Chrome, IE 8-11, Safari for good measure.

{F164573}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+8 -8
+5 -5
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => '7a1dd133', 10 + 'core.pkg.css' => 'd82d2f53', 11 11 'core.pkg.js' => '88ca2043', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => '4a93db37', ··· 111 111 'rsrc/css/font/font-awesome.css' => '73d075c3', 112 112 'rsrc/css/font/font-source-sans-pro.css' => '91d53463', 113 113 'rsrc/css/font/phui-font-icon-base.css' => 'eb84f033', 114 - 'rsrc/css/layout/phabricator-action-header-view.css' => 'e464b159', 114 + 'rsrc/css/layout/phabricator-action-header-view.css' => '47bc4698', 115 115 'rsrc/css/layout/phabricator-action-list-view.css' => 'dcbfc854', 116 116 'rsrc/css/layout/phabricator-crumbs-view.css' => '7fbf25b8', 117 117 'rsrc/css/layout/phabricator-filetree-view.css' => 'fccf9f82', ··· 140 140 'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b', 141 141 'rsrc/css/phui/phui-spacing.css' => '042804d6', 142 142 'rsrc/css/phui/phui-status.css' => '2f562399', 143 - 'rsrc/css/phui/phui-tag-view.css' => '74051f4e', 143 + 'rsrc/css/phui/phui-tag-view.css' => 'ef0a9ca8', 144 144 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 145 145 'rsrc/css/phui/phui-timeline-view.css' => 'bbd990d0', 146 146 'rsrc/css/phui/phui-workboard-view.css' => '2bf82d00', ··· 683 683 'paste-css' => 'aa1767d1', 684 684 'path-typeahead' => 'f7fc67ec', 685 685 'people-profile-css' => 'ba7b2762', 686 - 'phabricator-action-header-view-css' => 'e464b159', 686 + 'phabricator-action-header-view-css' => '47bc4698', 687 687 'phabricator-action-list-view-css' => 'dcbfc854', 688 688 'phabricator-application-launch-view-css' => '81bebcff', 689 689 'phabricator-busy' => '6453c869', ··· 767 767 'phui-remarkup-preview-css' => '19ad512b', 768 768 'phui-spacing-css' => '042804d6', 769 769 'phui-status-list-view-css' => '2f562399', 770 - 'phui-tag-view-css' => '74051f4e', 770 + 'phui-tag-view-css' => 'ef0a9ca8', 771 771 'phui-text-css' => '23e9b4b7', 772 772 'phui-timeline-view-css' => 'bbd990d0', 773 773 'phui-workboard-view-css' => '2bf82d00',
+1
webroot/rsrc/css/layout/phabricator-action-header-view.css
··· 42 42 43 43 .phabricator-action-header-icon-item .phui-tag-view { 44 44 margin: 4px 2px 0; 45 + display: inline-block; 45 46 } 46 47 47 48 .phabricator-action-header-link {
+2 -3
webroot/rsrc/css/phui/phui-tag-view.css
··· 5 5 .phui-tag-view { 6 6 font-weight: bold; 7 7 text-decoration: none; 8 - display: inline-block; 9 8 position: relative; 9 + -webkit-font-smoothing: antialiased; 10 10 } 11 11 12 12 a.phui-tag-view:hover { ··· 27 27 border: 1px solid transparent; 28 28 border-radius: 3px; 29 29 padding: 0 4px; 30 - white-space: nowrap; 31 30 } 32 31 33 32 .phui-tag-type-state .phui-tag-core { ··· 65 64 a.phui-tag-type-object, 66 65 a.phui-tag-type-object:link, 67 66 .phui-tag-core-closed .phui-tag-color-object { 68 - color: #000000; 67 + color: #000; 69 68 } 70 69 71 70 .phui-tag-type-person {