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

Add mobile upload button to Conpherence

Summary: Fixes T11622. Moves the remarkup upload button into the text area on mobile/tablet.

Test Plan: Mobile/Tablet/Desktop Conpherence

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11622

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

authored by

Chad Little and committed by
chad
10953478 aa248a6b

+22 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => '4aa80958', 10 + 'conpherence.pkg.css' => 'd93561e2', 11 11 'conpherence.pkg.js' => '11f3e07e', 12 12 'core.pkg.css' => '2fd26498', 13 13 'core.pkg.js' => '1d376fa9', ··· 49 49 'rsrc/css/application/conpherence/durable-column.css' => '194ac487', 50 50 'rsrc/css/application/conpherence/header-pane.css' => '517de9fe', 51 51 'rsrc/css/application/conpherence/menu.css' => '78c7b811', 52 - 'rsrc/css/application/conpherence/message-pane.css' => '60e10176', 52 + 'rsrc/css/application/conpherence/message-pane.css' => 'bbbb8a9b', 53 53 'rsrc/css/application/conpherence/notification.css' => '6cdcc253', 54 54 'rsrc/css/application/conpherence/participant-pane.css' => '7bba0b56', 55 55 'rsrc/css/application/conpherence/transaction.css' => '46253e19', ··· 621 621 'conpherence-durable-column-view' => '194ac487', 622 622 'conpherence-header-pane-css' => '517de9fe', 623 623 'conpherence-menu-css' => '78c7b811', 624 - 'conpherence-message-pane-css' => '60e10176', 624 + 'conpherence-message-pane-css' => 'bbbb8a9b', 625 625 'conpherence-notification-css' => '6cdcc253', 626 626 'conpherence-participant-pane-css' => '7bba0b56', 627 627 'conpherence-thread-manager' => '01774ab2',
+4
src/view/form/control/PhabricatorRemarkupControl.php
··· 203 203 $classes[] = 'remarkup-assist-button'; 204 204 } 205 205 206 + if ($action == 'fa-cloud-upload') { 207 + $classes[] = 'remarkup-assist-upload'; 208 + } 209 + 206 210 $href = idx($spec, 'href', '#'); 207 211 if ($href == '#') { 208 212 $meta = array('action' => $action);
+15 -1
webroot/rsrc/css/application/conpherence/message-pane.css
··· 168 168 } 169 169 170 170 .device .conpherence-message-pane .remarkup-assist-bar { 171 + position: absolute; 172 + top: 12px; 173 + left: 12px; 174 + background: {$bluebackground}; 175 + border-radius: 3px; 176 + border: none; 177 + } 178 + 179 + .device .remarkup-assist-button, 180 + .device .remarkup-assist-separator { 171 181 display: none; 182 + } 183 + 184 + .device .remarkup-assist-button.remarkup-assist-upload { 185 + display: block; 172 186 } 173 187 174 188 .device .conpherence-message-pane .phui-form-view { ··· 346 360 347 361 .device .conpherence-message-pane .remarkup-assist-textarea { 348 362 margin: 0; 349 - padding: 8px 68px 8px 8px; 363 + padding: 7px 8px 6px 30px; 350 364 width: 100%; 351 365 height: 34px; 352 366 resize: none;