mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 00:18:21 +02:00
Reduce crumbs UI in Phame live views
Summary: Makes the crumbs background and border disappear in the live view of Phame. Test Plan: Go live, see no crumb bg. Test blog, post, mobile, desktop. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16146
This commit is contained in:
parent
20affe9ce8
commit
431ca4aac3
3 changed files with 10 additions and 2 deletions
|
@ -81,7 +81,7 @@ return array(
|
||||||
'rsrc/css/application/owners/owners-path-editor.css' => '2f00933b',
|
'rsrc/css/application/owners/owners-path-editor.css' => '2f00933b',
|
||||||
'rsrc/css/application/paste/paste.css' => '1898e534',
|
'rsrc/css/application/paste/paste.css' => '1898e534',
|
||||||
'rsrc/css/application/people/people-profile.css' => '2473d929',
|
'rsrc/css/application/people/people-profile.css' => '2473d929',
|
||||||
'rsrc/css/application/phame/phame.css' => '4748d928',
|
'rsrc/css/application/phame/phame.css' => 'bf6a743f',
|
||||||
'rsrc/css/application/pholio/pholio-edit.css' => '07676f51',
|
'rsrc/css/application/pholio/pholio-edit.css' => '07676f51',
|
||||||
'rsrc/css/application/pholio/pholio-inline-comments.css' => '8e545e49',
|
'rsrc/css/application/pholio/pholio-inline-comments.css' => '8e545e49',
|
||||||
'rsrc/css/application/pholio/pholio.css' => 'ca89d380',
|
'rsrc/css/application/pholio/pholio.css' => 'ca89d380',
|
||||||
|
@ -808,7 +808,7 @@ return array(
|
||||||
'phabricator-uiexample-reactor-sendclass' => '1def2711',
|
'phabricator-uiexample-reactor-sendclass' => '1def2711',
|
||||||
'phabricator-uiexample-reactor-sendproperties' => 'b1f0ccee',
|
'phabricator-uiexample-reactor-sendproperties' => 'b1f0ccee',
|
||||||
'phabricator-zindex-css' => '5b6fcf3f',
|
'phabricator-zindex-css' => '5b6fcf3f',
|
||||||
'phame-css' => '4748d928',
|
'phame-css' => 'bf6a743f',
|
||||||
'pholio-css' => 'ca89d380',
|
'pholio-css' => 'ca89d380',
|
||||||
'pholio-edit-css' => '07676f51',
|
'pholio-edit-css' => '07676f51',
|
||||||
'pholio-inline-comments-css' => '8e545e49',
|
'pholio-inline-comments-css' => '8e545e49',
|
||||||
|
|
|
@ -212,6 +212,7 @@ abstract class PhameLiveController extends PhameController {
|
||||||
|
|
||||||
if ($this->getIsLive()) {
|
if ($this->getIsLive()) {
|
||||||
$page
|
$page
|
||||||
|
->addClass('phame-live-view')
|
||||||
->setShowChrome(false)
|
->setShowChrome(false)
|
||||||
->setShowFooter(false);
|
->setShowFooter(false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -251,6 +251,13 @@
|
||||||
background: {$greybackground};
|
background: {$greybackground};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Blog Chrome */
|
||||||
|
.phame-live-view .phui-crumbs-view {
|
||||||
|
background: #fff;
|
||||||
|
border: none;
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hero Image */
|
/* Hero Image */
|
||||||
.phame-header-hero {
|
.phame-header-hero {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
Loading…
Add table
Reference in a new issue