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

Restrict hover styles in action list to only href

Summary: We're currently applying these styles to labels, restrict them to only list elements that have an href.

Test Plan: Test a label, an anchor, and a button as an action item.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+9 -5
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '0b64e988', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => '1ef46ae8', 12 + 'core.pkg.css' => 'e18bf0da', 13 13 'core.pkg.js' => 'e4260032', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => 'a4ba74b5', ··· 165 165 'rsrc/css/phui/phui-status.css' => 'd5263e49', 166 166 'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2', 167 167 'rsrc/css/phui/phui-timeline-view.css' => 'bc523970', 168 - 'rsrc/css/phui/phui-two-column-view.css' => 'ee61d056', 168 + 'rsrc/css/phui/phui-two-column-view.css' => 'f662d744', 169 169 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'b60ef38a', 170 170 'rsrc/css/phui/workboards/phui-workboard.css' => '16441d5e', 171 171 'rsrc/css/phui/workboards/phui-workcard.css' => '0c62d7c5', ··· 882 882 'phui-tag-view-css' => '6bbd83e2', 883 883 'phui-theme-css' => '798c69b8', 884 884 'phui-timeline-view-css' => 'bc523970', 885 - 'phui-two-column-view-css' => 'ee61d056', 885 + 'phui-two-column-view-css' => 'f662d744', 886 886 'phui-workboard-color-css' => 'b60ef38a', 887 887 'phui-workboard-view-css' => '16441d5e', 888 888 'phui-workcard-view-css' => '0c62d7c5',
+4
src/view/layout/PhabricatorActionView.php
··· 271 271 $classes[] = 'phabricator-action-view-submenu'; 272 272 } 273 273 274 + if ($this->getHref()) { 275 + $classes[] = 'phabricator-action-view-href'; 276 + } 277 + 274 278 $style = array(); 275 279 276 280 if ($this->hidden) {
+2 -2
webroot/rsrc/css/phui/phui-two-column-view.css
··· 164 164 padding: 5px 4px 5px 28px; 165 165 } 166 166 167 - .device-desktop .phui-two-column-properties .phabricator-action-view:hover 167 + .device-desktop .phui-two-column-properties .phabricator-action-view-href:hover 168 168 .phabricator-action-view-item { 169 169 text-decoration: none; 170 170 background-color: rgba({$alphablue}, .08); ··· 172 172 border-radius: 3px; 173 173 } 174 174 175 - .device-desktop .phui-two-column-properties .phabricator-action-view:hover 175 + .device-desktop .phui-two-column-properties .phabricator-action-view-href:hover 176 176 .phabricator-action-view-icon { 177 177 color: {$sky}; 178 178 }