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
This commit is contained in:
Chad Little
2016-12-12 09:04:03 -08:00
parent d8b028b51b
commit a79e4b786e
3 changed files with 9 additions and 5 deletions

View File

@@ -271,6 +271,10 @@ final class PhabricatorActionView extends AphrontView {
$classes[] = 'phabricator-action-view-submenu';
}
if ($this->getHref()) {
$classes[] = 'phabricator-action-view-href';
}
$style = array();
if ($this->hidden) {