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

Make PHUITags not break/wrap

Summary: Currently these break at the icon and any whitespace, instead force them to notwrap and stack the display if there are too many large tags. I think we're much more resilient CSS wise now I can't find any hairy edge cases.

Test Plan:
Try to break tags in 50/50 dashboard layouts like Wikimedia

{F1082103}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T10245

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

authored by

Chad Little and committed by
chad
ce30f8c8 8269fd6e

+5 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '5e4df064', 10 + 'core.pkg.css' => '28355cef', 11 11 'core.pkg.js' => 'a79eed25', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 149 149 'rsrc/css/phui/phui-remarkup-preview.css' => '1a8f2591', 150 150 'rsrc/css/phui/phui-spacing.css' => '042804d6', 151 151 'rsrc/css/phui/phui-status.css' => '888cedb8', 152 - 'rsrc/css/phui/phui-tag-view.css' => 'e60e227b', 152 + 'rsrc/css/phui/phui-tag-view.css' => '9d5d4400', 153 153 'rsrc/css/phui/phui-timeline-view.css' => '2efceff8', 154 154 'rsrc/css/phui/phui-two-column-view.css' => 'c75bfc5b', 155 155 'rsrc/css/phui/workboards/phui-workboard.css' => 'b07a5524', ··· 825 825 'phui-remarkup-preview-css' => '1a8f2591', 826 826 'phui-spacing-css' => '042804d6', 827 827 'phui-status-list-view-css' => '888cedb8', 828 - 'phui-tag-view-css' => 'e60e227b', 828 + 'phui-tag-view-css' => '9d5d4400', 829 829 'phui-theme-css' => 'ab7b848c', 830 830 'phui-timeline-view-css' => '2efceff8', 831 831 'phui-two-column-view-css' => 'c75bfc5b',
+2 -1
webroot/rsrc/css/phui/phui-tag-view.css
··· 7 7 text-decoration: none; 8 8 position: relative; 9 9 -webkit-font-smoothing: antialiased; 10 + white-space: nowrap; 10 11 } 11 12 12 13 a.phui-tag-view:hover { ··· 149 150 } 150 151 151 152 .phui-object-item .phabricator-handle-tag-list-item { 152 - display: inline; 153 + display: inline-block; 153 154 margin: 0 4px 2px 0; 154 155 } 155 156