@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 unused call to phui-text

Summary: I can't find any reference to these used. Fixes T10244

Test Plan: Grep for "phui-text" and "PHUI::TEXT"

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T10244

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

-15
-1
src/infrastructure/diff/view/PHUIDiffTableOfContentsListView.php
··· 23 23 public function render() { 24 24 $this->requireResource('differential-core-view-css'); 25 25 $this->requireResource('differential-table-of-contents-css'); 26 - $this->requireResource('phui-text-css'); 27 26 28 27 Javelin::initBehavior('phabricator-tooltips'); 29 28
-14
src/view/phui/PHUI.php
··· 42 42 const PADDING_MEDIUM_TOP = 'pmt'; 43 43 const PADDING_LARGE_TOP = 'plt'; 44 44 45 - const TEXT_BOLD = 'phui-text-bold'; 46 - const TEXT_UPPERCASE = 'phui-text-uppercase'; 47 - const TEXT_STRIKE = 'phui-text-strike'; 48 - 49 - const TEXT_RED = 'phui-text-red'; 50 - const TEXT_ORANGE = 'phui-text-orange'; 51 - const TEXT_YELLOW = 'phui-text-yellow'; 52 - const TEXT_GREEN = 'phui-text-green'; 53 - const TEXT_BLUE = 'phui-text-blue'; 54 - const TEXT_INDIGO = 'phui-text-indigo'; 55 - const TEXT_VIOLET = 'phui-text-violet'; 56 - const TEXT_WHITE = 'phui-text-white'; 57 - const TEXT_BLACK = 'phui-text-black'; 58 - 59 45 }