@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 lightbox circle icons

Summary: These are unfortunatly manually built so I missed them in testing circle view changes.

Test Plan: Test lightbox, conpherence, uiexamples

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+16 -15
+12 -12
resources/celerity/map.php
··· 10 10 'conpherence.pkg.css' => 'ff161f2d', 11 11 'conpherence.pkg.js' => 'b5b51108', 12 12 'core.pkg.css' => '19f6f61f', 13 - 'core.pkg.js' => '21d34805', 13 + 'core.pkg.js' => '1475bd91', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '7d4cfa59', 16 16 'differential.pkg.js' => '1d120743', ··· 501 501 'rsrc/js/core/behavior-hovercard.js' => 'bcaccd64', 502 502 'rsrc/js/core/behavior-keyboard-pager.js' => 'a8da01f0', 503 503 'rsrc/js/core/behavior-keyboard-shortcuts.js' => '01fca1f0', 504 - 'rsrc/js/core/behavior-lightbox-attachments.js' => 'a5c57c24', 504 + 'rsrc/js/core/behavior-lightbox-attachments.js' => '560f41da', 505 505 'rsrc/js/core/behavior-line-linker.js' => '1499a8cb', 506 506 'rsrc/js/core/behavior-more.js' => 'a80d0378', 507 507 'rsrc/js/core/behavior-object-selector.js' => 'e0ec7f2f', ··· 644 644 'javelin-behavior-history-install' => '7ee2b591', 645 645 'javelin-behavior-icon-composer' => '8499b6ab', 646 646 'javelin-behavior-launch-icon-composer' => '48086888', 647 - 'javelin-behavior-lightbox-attachments' => 'a5c57c24', 647 + 'javelin-behavior-lightbox-attachments' => '560f41da', 648 648 'javelin-behavior-line-chart' => 'e4232876', 649 649 'javelin-behavior-load-blame' => '42126667', 650 650 'javelin-behavior-maniphest-batch-editor' => '782ab6e7', ··· 1332 1332 'javelin-vector', 1333 1333 'javelin-dom', 1334 1334 ), 1335 + '560f41da' => array( 1336 + 'javelin-behavior', 1337 + 'javelin-stratcom', 1338 + 'javelin-dom', 1339 + 'javelin-mask', 1340 + 'javelin-util', 1341 + 'phuix-icon-view', 1342 + 'phabricator-busy', 1343 + ), 1335 1344 '58dea2fa' => array( 1336 1345 'javelin-install', 1337 1346 'javelin-util', ··· 1707 1716 'javelin-behavior', 1708 1717 'javelin-uri', 1709 1718 'phabricator-notification', 1710 - ), 1711 - 'a5c57c24' => array( 1712 - 'javelin-behavior', 1713 - 'javelin-stratcom', 1714 - 'javelin-dom', 1715 - 'javelin-mask', 1716 - 'javelin-util', 1717 - 'phuix-icon-view', 1718 - 'phabricator-busy', 1719 1719 ), 1720 1720 'a6b98425' => array( 1721 1721 'javelin-behavior',
+2 -1
src/view/page/PhabricatorStandardPageView.php
··· 268 268 } 269 269 270 270 $icon = id(new PHUIIconView()) 271 - ->setIcon('fa-download'); 271 + ->setIcon('fa-download') 272 + ->addClass('phui-icon-circle-icon'); 272 273 $lightbox_id = celerity_generate_unique_node_id(); 273 274 $download_form = phabricator_form( 274 275 $user,
+2 -2
webroot/rsrc/js/core/behavior-lightbox-attachments.js
··· 169 169 ); 170 170 171 171 var commentIcon = new JX.PHUIXIconView() 172 - .setIcon('fa-comments') 172 + .setIcon('fa-comments phui-icon-circle-icon') 173 173 .getNode(); 174 174 var commentButton = 175 175 JX.$N('a', ··· 181 181 commentIcon 182 182 ); 183 183 var closeIcon = new JX.PHUIXIconView() 184 - .setIcon('fa-times') 184 + .setIcon('fa-times phui-icon-circle-icon') 185 185 .getNode(); 186 186 var closeButton = 187 187 JX.$N('a',