-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1363 from eciis/sideMenu-component
Side menu component
- Loading branch information
Showing
23 changed files
with
735 additions
and
374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div flex="100" layout="row" layout-align="center"> | ||
<div flex flex-lg="90" flex-gt-lg="70" layout="row" md-colors="{background: 'grey-50'}"> | ||
<side-menu type="HOME"></side-menu> | ||
<div flex ui-view="user_content" layout="column"></div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
<md-content layout="row" md-colors="{background: 'grey-200'}" layout-align="center"> | ||
<div flex-gt-lg="60" flex-lg="60" layout="row" layout-wrap layout-align="center" class="fill-screen"> | ||
<div layout="column" flex ng-if="postCtrl.post && !postCtrl.isHiden()"> | ||
<post-details post="postCtrl.post" is-post-page=true></post-details> | ||
</div> | ||
<div layout="row" layout-align="center center" ng-if="postCtrl.post && postCtrl.isHiden()"> | ||
<h2>Esta publicação foi removida.</h2> | ||
<div layout="row" md-colors="{background: 'grey-200'}" layout-align="center"> | ||
<div flex flex-lg="90" flex-gt-lg="70" layout="row" layout-align="space-between" > | ||
|
||
<side-menu type="HOME"></side-menu> | ||
|
||
<div flex layout="row" layout-align="center"> | ||
<md-content class="custom-scrollbar" flex="95"> | ||
<div layout="row" ng-if="postCtrl.post && !postCtrl.isHiden()"> | ||
<post-details post="postCtrl.post" is-post-page=true></post-details> | ||
</div> | ||
</md-content> | ||
|
||
<div layout="row" layout-align="center center" ng-if="postCtrl.post && postCtrl.isHiden()"> | ||
<h2>Esta publicação foi removida.</h2> | ||
</div> | ||
</div> | ||
</div> | ||
</md-content> | ||
</div> |
Oops, something went wrong.