Removed side panel from auth pages

Updated the changelog
Theme options button adjustments
This commit is contained in:
Sercan Yemen 2018-07-12 13:27:26 +03:00
parent 6b8cd41d5e
commit b8803a055f
18 changed files with 135 additions and 47 deletions

View File

@ -20,7 +20,8 @@
<!-- THEME OPTIONS PANEL -->
<button mat-icon-button class="mat-primary-bg mat-elevation-z2 theme-options-button"
[ngClass]="{'right-side-panel': fuseConfig.layout.sidepanel.position === 'right'}"
[ngClass]="{'right-side-panel': fuseConfig.layout.sidepanel.position === 'right',
'side-panel-hidden': fuseConfig.layout.sidepanel.hidden === true}"
(click)="toggleSidebarOpen('themeOptionsPanel')">
<mat-icon>settings</mat-icon>
</button>

View File

@ -23,7 +23,6 @@
opacity: .90;
z-index: 998;
&.right-side-panel {
@include media-breakpoint-up('lg') {
@ -31,6 +30,10 @@
}
}
&.side-panel-hidden {
right: 0 !important;
}
mat-icon {
animation: rotating 3s linear infinite;
}

View File

@ -20,12 +20,12 @@
<div class="changelog">
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v6.2.1 -->
<!-- @ v6.2.2 -->
<!-- --------------------------------------------------------------------------------------------- -->
<div class="entry">
<div class="title">
<span class="version">v6.2.1</span>
<span class="version">v6.2.2</span>
<span class="date">(2018-07-12)</span>
</div>
@ -58,6 +58,48 @@
</div>
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v6.2.1 -->
<!-- --------------------------------------------------------------------------------------------- -->
<div class="entry">
<div class="title">
<span class="version">v6.2.1</span>
<span class="date">(2018-07-12)</span>
</div>
<div class="groups">
<div class="new">
<span class="title">New</span>
<ul>
<li>
(Layout) Added SidePanel position to the layout for controlling Chat Panel and possible
other panels
</li>
</ul>
</div>
<div class="fixed">
<span class="title">Fixed</span>
<ul>
<ul>
<li>(Chat Panel) Mobile width issues</li>
</ul>
</ul>
</div>
<div class="improved">
<span class="title">Improved</span>
<ul>
<li>Removed chat panel from auth pages using layout options</li>
</ul>
</div>
</div>
</div>
<!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v6.2.0 -->
<!-- --------------------------------------------------------------------------------------------- -->

View File

@ -28,13 +28,16 @@ export class ForgotPassword2Component implements OnInit
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -28,13 +28,16 @@ export class ForgotPasswordComponent implements OnInit
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -28,13 +28,16 @@ export class LockComponent implements OnInit
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -28,13 +28,16 @@ export class Login2Component implements OnInit
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -28,13 +28,16 @@ export class LoginComponent implements OnInit
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -23,13 +23,16 @@ export class MailConfirmComponent
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -27,13 +27,16 @@ export class Register2Component implements OnInit, OnDestroy
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -27,13 +27,16 @@ export class RegisterComponent implements OnInit, OnDestroy
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -27,13 +27,16 @@ export class ResetPassword2Component implements OnInit, OnDestroy
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -27,13 +27,16 @@ export class ResetPasswordComponent implements OnInit, OnDestroy
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -34,13 +34,16 @@ export class ComingSoonComponent implements OnInit, OnDestroy
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -21,13 +21,16 @@ export class Error404Component
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -21,13 +21,16 @@ export class Error500Component
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -23,13 +23,16 @@ export class MaintenanceComponent
// Configure the layout
this._fuseConfigService.config = {
layout: {
navbar : {
navbar : {
hidden: true
},
toolbar: {
toolbar : {
hidden: true
},
footer : {
footer : {
hidden: true
},
sidepanel: {
hidden: true
}
}

View File

@ -849,7 +849,7 @@ export const navigation: FuseNavigation[] = [
icon : 'update',
url : '/documentation/changelog',
badge: {
title: '6.2.0',
title: '6.2.2',
bg : '#EC0C8E',
fg : '#FFFFFF'
}