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

PHUIBoxView: Consistently set CSS border-radius to 3px

Summary:
Don't set `border-radius: 5px` for the `WHITE_CONFIG` variant but `border-radius: 3px` for any other variant as there are no obvious reasons.
This mitigates (but does not fix) a small UI issue in the box bottom corners looking unclosed.

Closes T16204

Test Plan: Go to a page rendering a PHUIBoxView like http://phorge.localhost/settings/panel/apitokens/, preferably after setting Dark Mode in the user's Display Preferences to have more contrast, and look at the previously unclosed rounded corners at the bottom of the box.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16204

Differential Revision: https://we.phorge.it/D26231

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'f4e58c01', 12 + 'core.pkg.css' => 'a6f06ad1', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 134 134 'rsrc/css/phui/phui-badge.css' => 'aa49028c', 135 135 'rsrc/css/phui/phui-basic-nav-view.css' => 'f9e2ac35', 136 136 'rsrc/css/phui/phui-big-info-view.css' => '362ad37b', 137 - 'rsrc/css/phui/phui-box.css' => '5ed3b8cb', 137 + 'rsrc/css/phui/phui-box.css' => '539be5a8', 138 138 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', 139 139 'rsrc/css/phui/phui-chart.css' => '14df9ae3', 140 140 'rsrc/css/phui/phui-cms.css' => '9f142cca', ··· 776 776 'phui-badge-view-css' => 'aa49028c', 777 777 'phui-basic-nav-view-css' => 'f9e2ac35', 778 778 'phui-big-info-view-css' => '362ad37b', 779 - 'phui-box-css' => '5ed3b8cb', 779 + 'phui-box-css' => '539be5a8', 780 780 'phui-bulk-editor-css' => '374d5e30', 781 781 'phui-button-bar-css' => 'a4aa75c4', 782 782 'phui-button-css' => '66c38b9a',
+1 -1
webroot/rsrc/css/phui/phui-box.css
··· 124 124 125 125 .phui-box-white-config.phui-box-border { 126 126 border-color: #e2e2e2; 127 - border-radius: 5px; 127 + border-radius: 3px; 128 128 } 129 129 130 130 .phui-box-white-config.phui-object-box {