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 --> <!-- THEME OPTIONS PANEL -->
<button mat-icon-button class="mat-primary-bg mat-elevation-z2 theme-options-button" <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')"> (click)="toggleSidebarOpen('themeOptionsPanel')">
<mat-icon>settings</mat-icon> <mat-icon>settings</mat-icon>
</button> </button>

View File

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

View File

@ -20,12 +20,12 @@
<div class="changelog"> <div class="changelog">
<!-- --------------------------------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------------------------------- -->
<!-- @ v6.2.1 --> <!-- @ v6.2.2 -->
<!-- --------------------------------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------------------------------- -->
<div class="entry"> <div class="entry">
<div class="title"> <div class="title">
<span class="version">v6.2.1</span> <span class="version">v6.2.2</span>
<span class="date">(2018-07-12)</span> <span class="date">(2018-07-12)</span>
</div> </div>
@ -58,6 +58,48 @@
</div> </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 --> <!-- @ v6.2.0 -->
<!-- --------------------------------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------------------------------- -->

View File

@ -36,6 +36,9 @@ export class ForgotPassword2Component implements OnInit
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -36,6 +36,9 @@ export class ForgotPasswordComponent implements OnInit
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -36,6 +36,9 @@ export class LockComponent implements OnInit
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -36,6 +36,9 @@ export class Login2Component implements OnInit
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -36,6 +36,9 @@ export class LoginComponent implements OnInit
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -31,6 +31,9 @@ export class MailConfirmComponent
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -35,6 +35,9 @@ export class Register2Component implements OnInit, OnDestroy
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -35,6 +35,9 @@ export class RegisterComponent implements OnInit, OnDestroy
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -35,6 +35,9 @@ export class ResetPassword2Component implements OnInit, OnDestroy
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -35,6 +35,9 @@ export class ResetPasswordComponent implements OnInit, OnDestroy
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -42,6 +42,9 @@ export class ComingSoonComponent implements OnInit, OnDestroy
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -29,6 +29,9 @@ export class Error404Component
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -29,6 +29,9 @@ export class Error500Component
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

@ -31,6 +31,9 @@ export class MaintenanceComponent
}, },
footer : { footer : {
hidden: true hidden: true
},
sidepanel: {
hidden: true
} }
} }
}; };

View File

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