diff --git a/resources/celerity/map.php b/resources/celerity/map.php --- a/resources/celerity/map.php +++ b/resources/celerity/map.php @@ -7,7 +7,7 @@ */ return array( 'names' => array( - 'core.pkg.css' => 'ce2c805f', + 'core.pkg.css' => 'c6ce52ae', 'core.pkg.js' => 'f3e08b38', 'darkconsole.pkg.js' => 'e7393ebb', 'differential.pkg.css' => 'bb338e4b', @@ -34,7 +34,7 @@ 'rsrc/css/aphront/typeahead.css' => '0e403212', 'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af', 'rsrc/css/application/auth/auth.css' => '44975d4b', - 'rsrc/css/application/base/main-menu-view.css' => '680360ea', + 'rsrc/css/application/base/main-menu-view.css' => '4b7ecab2', 'rsrc/css/application/base/notification-menu.css' => '713df25a', 'rsrc/css/application/base/phabricator-application-launch-view.css' => '132f9d14', 'rsrc/css/application/base/standard-page-view.css' => '062f0f54', @@ -127,7 +127,7 @@ 'rsrc/css/phui/phui-action-panel.css' => '3ee9afd5', 'rsrc/css/phui/phui-box.css' => 'a5bb366d', 'rsrc/css/phui/phui-button.css' => 'b995182d', - 'rsrc/css/phui/phui-crumbs-view.css' => 'aeff7a21', + 'rsrc/css/phui/phui-crumbs-view.css' => '3840dc4c', 'rsrc/css/phui/phui-document.css' => '27a9bb7e', 'rsrc/css/phui/phui-feed-story.css' => 'c9f3a0b5', 'rsrc/css/phui/phui-fontkit.css' => '489a1341', @@ -711,7 +711,7 @@ 'phabricator-hovercard-view-css' => 'b7a82459', 'phabricator-keyboard-shortcut' => '1ae869f2', 'phabricator-keyboard-shortcut-manager' => 'c1700f6f', - 'phabricator-main-menu-view' => '680360ea', + 'phabricator-main-menu-view' => '4b7ecab2', 'phabricator-nav-view-css' => '949b43d9', 'phabricator-notification' => '0c6946e7', 'phabricator-notification-css' => '9c279160', @@ -758,7 +758,7 @@ 'phui-calendar-day-css' => '38891735', 'phui-calendar-list-css' => 'c1d0ca59', 'phui-calendar-month-css' => '75e6a2ee', - 'phui-crumbs-view-css' => 'aeff7a21', + 'phui-crumbs-view-css' => '3840dc4c', 'phui-document-view-css' => '27a9bb7e', 'phui-feed-story-css' => 'c9f3a0b5', 'phui-font-icon-base-css' => '3dad2ae3', diff --git a/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php b/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php --- a/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php +++ b/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php @@ -191,7 +191,6 @@ $crumbs = $this ->buildApplicationCrumbs() - ->setBorder(true) ->addTextCrumb($channel->getChannelName(), $uri); $form = id(new AphrontFormView()) diff --git a/src/applications/diffusion/controller/DiffusionBrowseController.php b/src/applications/diffusion/controller/DiffusionBrowseController.php --- a/src/applications/diffusion/controller/DiffusionBrowseController.php +++ b/src/applications/diffusion/controller/DiffusionBrowseController.php @@ -48,7 +48,12 @@ '#'); } - return $filter; + $box = id(new PHUIBoxView()) + ->addClass('mlt') + ->addClass('mlb') + ->appendChild($filter); + + return $box; } protected function markupText($text) { diff --git a/src/applications/maniphest/controller/ManiphestReportController.php b/src/applications/maniphest/controller/ManiphestReportController.php --- a/src/applications/maniphest/controller/ManiphestReportController.php +++ b/src/applications/maniphest/controller/ManiphestReportController.php @@ -52,7 +52,6 @@ $nav->appendChild($core); $nav->setCrumbs( $this->buildApplicationCrumbs() - ->setBorder(true) ->addTextCrumb(pht('Reports'))); return $this->buildApplicationPage( diff --git a/src/applications/owners/controller/PhabricatorOwnersListController.php b/src/applications/owners/controller/PhabricatorOwnersListController.php --- a/src/applications/owners/controller/PhabricatorOwnersListController.php +++ b/src/applications/owners/controller/PhabricatorOwnersListController.php @@ -196,7 +196,6 @@ $crumbs = $this->buildApplicationCrumbs(); $crumbs->addTextCrumb($header); - $crumbs->setBorder(true); $nav = $this->buildSideNavView(); $nav->appendChild($crumbs); diff --git a/src/applications/search/controller/PhabricatorApplicationSearchController.php b/src/applications/search/controller/PhabricatorApplicationSearchController.php --- a/src/applications/search/controller/PhabricatorApplicationSearchController.php +++ b/src/applications/search/controller/PhabricatorApplicationSearchController.php @@ -268,7 +268,6 @@ $crumbs = $parent ->buildApplicationCrumbs() - ->setBorder(true) ->addTextCrumb($title); $nav->setCrumbs($crumbs); diff --git a/webroot/rsrc/css/application/base/main-menu-view.css b/webroot/rsrc/css/application/base/main-menu-view.css --- a/webroot/rsrc/css/application/base/main-menu-view.css +++ b/webroot/rsrc/css/application/base/main-menu-view.css @@ -66,7 +66,7 @@ } .device-desktop .phabricator-main-menu-brand:hover { - background-color: rgba(55,55,55,..08); + background-color: rgba(55,55,55,.08); cursor: hand; } diff --git a/webroot/rsrc/css/phui/phui-crumbs-view.css b/webroot/rsrc/css/phui/phui-crumbs-view.css --- a/webroot/rsrc/css/phui/phui-crumbs-view.css +++ b/webroot/rsrc/css/phui/phui-crumbs-view.css @@ -80,7 +80,7 @@ .device-desktop .phui-crumbs-view a:hover, .device-desktop .phui-crumbs-view a:hover .phui-icon-view { - color: {$sky}; + color: {$blue}; text-decoration: none; } @@ -101,6 +101,10 @@ margin: 2px 8px; } +.phui-crumbs-view.phui-crumbs-border { + border-bottom: 1px solid {$thinblueborder}; +} + body .phui-crumbs-view + .phui-object-box { margin-top: 0; }