Skip to content

Commit

Permalink
fix(default.gbui): Logo now showing in any screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jan 26, 2020
1 parent 99b5a4a commit 288aea8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
5 changes: 5 additions & 0 deletions packages/admin.gbapp/dialogs/AdminDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,18 @@ const Path = require('path');
* Dialogs for administration tasks.
*/
export class AdminDialog extends IGBDialog {

public static async undeployPackageCommand(text: any, min: GBMinInstance) {
const packageName = text.split(' ')[1];
const importer = new GBImporter(min.core);
const deployer = new GBDeployer(min.core, importer);
await deployer.undeployPackageFromLocalPath(min.instance, urlJoin(GBDeployer.workFolder, packageName));
}

public static async broadcastCommand(text: any, min: GBMinInstance) {
const packageName = text.split(' ')[1];
}

public static isSharePointPath(path: string) {
return path.indexOf('sharepoint.com') > 0;
}
Expand Down
9 changes: 1 addition & 8 deletions packages/default.gbtheme/css/SidebarMenu.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ html[dir="ltr"] .ms-Nav-compositeLink.is-selected a:after {
.sidebar {
display: inline-block !important;
background-color: #3f3f3f !important;
height: 13%;
height: 15%;
position: absolute;
top: 1%;
left: 1%;
Expand All @@ -162,7 +162,6 @@ html[dir="ltr"] .ms-Nav-compositeLink.is-selected a:after {
.tittleSideBarMenu {
color: white;
text-align: center;
margin-top: 10px;
}

.iconMenu {
Expand Down Expand Up @@ -192,12 +191,6 @@ html[dir="ltr"] .ms-Nav-compositeLink.is-selected a:after {
}
}

@media screen and (max-height: 684px) {
.tittleSideBarMenu {
display: none;
}
}



.iconText:hover {
Expand Down

0 comments on commit 288aea8

Please sign in to comment.