|
|
@@ -0,0 +1,306 @@
|
|
|
+<mk-tabs styleClass="sidebar-right-tabs-wrapper" navStyleClass="nav nav-tabs nav-justified control-sidebar-tabs">
|
|
|
+ <mk-tab>
|
|
|
+ <mk-tab-header>
|
|
|
+ <i class="fa fa-wrench"></i>
|
|
|
+ </mk-tab-header>
|
|
|
+ <mk-tab-content>
|
|
|
+ <div>
|
|
|
+ <h4 class="control-sidebar-heading">Layout Options</h4>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" (change)="onLayoutChange($event)" value="fixed" [checked]="layout === 'fixed'" class="pull-right"> Fixed layout</label>
|
|
|
+ <p>Activate the fixed layout. You can't use fixed and boxed layouts together</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" (change)="onLayoutChange($event)" value="boxed" [checked]="layout === 'boxed'" class="pull-right"> Boxed Layout</label>
|
|
|
+ <p>Activate the boxed layout</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" [checked]="isSidebarLeftCollapsed" #sidebarLeftCollapsedCheckbox (click)="layoutStore.sidebarLeftCollapsed(sidebarLeftCollapsedCheckbox.checked)" class="pull-right"> Toggle Sidebar</label>
|
|
|
+ <p>Toggle the left sidebar's state (open or collapse)</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" [disabled]="isSidebarLeftExpandOnOver" [checked]="isSidebarLeftMini" #sidebarLeftMini (click)="layoutStore.sidebarLeftMini(sidebarLeftMini.checked)" class="pull-right"> Sidebar Left Mini</label>
|
|
|
+ <p>Let the sidebar left collapsed visible</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" [disabled]="!isSidebarLeftMini" [checked]="isSidebarLeftExpandOnOver && isSidebarLeftMini" #sidebarLeftExpandOnOverCheckbox (click)="layoutStore.sidebarLeftExpandOnOver(sidebarLeftExpandOnOverCheckbox.checked)" class="pull-right"> Sidebar Expand on Hover</label>
|
|
|
+ <p>Let the sidebar mini expand on hover</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" #sidebarRightOverContentCheckbox (click)="layoutStore.sidebarRightOverContent(!sidebarRightOverContentCheckbox.checked)" class="pull-right"> Toggle Right Sidebar Slide</label>
|
|
|
+ <p>Toggle between slide over content and push content effects</p>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading"><input type="checkbox" #sidebarRightSkinCheckbox (click)="changeSidebarRightSkin(sidebarRightSkinCheckbox.checked)" class="pull-right"> Toggle Right Sidebar Skin</label>
|
|
|
+ <p>Toggle between dark and light skins for the right sidebar</p>
|
|
|
+ </div>
|
|
|
+ <h4 class="control-sidebar-heading">Skins</h4>
|
|
|
+ <ul class="list-unstyled clearfix">
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'blue')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9;"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Blue</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'black')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe;"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Black</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'purple')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Purple</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'green')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Green</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'red')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Red</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'yellow')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin">Yellow</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'blue-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9;"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px">Blue Light</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'black-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe;"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px">Black Light</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'purple-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px">Purple Light</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'green-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px">Green Light</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'red-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px">Red Light</p>
|
|
|
+ </li>
|
|
|
+ <li style="float:left; width: 33.33333%; padding: 5px;">
|
|
|
+ <a href="#" (click)="changeSkin($event, 'yellow-light')" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>
|
|
|
+ <div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>
|
|
|
+ </a>
|
|
|
+ <p class="text-center no-margin" style="font-size: 12px;">Yellow Light</p>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </mk-tab-content>
|
|
|
+ </mk-tab>
|
|
|
+ <mk-tab>
|
|
|
+ <mk-tab-header><i class="fa fa-home"></i></mk-tab-header>
|
|
|
+ <mk-tab-content>
|
|
|
+ <h3 class="control-sidebar-heading">Recent Activity</h3>
|
|
|
+ <ul class="control-sidebar-menu">
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <i class="menu-icon fa fa-birthday-cake bg-red"></i>
|
|
|
+
|
|
|
+ <div class="menu-info">
|
|
|
+ <h4 class="control-sidebar-subheading">Langdon's Birthday</h4>
|
|
|
+
|
|
|
+ <p>Will be 23 on April 24th</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <i class="menu-icon fa fa-user bg-yellow"></i>
|
|
|
+
|
|
|
+ <div class="menu-info">
|
|
|
+ <h4 class="control-sidebar-subheading">Frodo Updated His Profile</h4>
|
|
|
+
|
|
|
+ <p>New phone +1(800)555-1234</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <i class="menu-icon fa fa-envelope-o bg-light-blue"></i>
|
|
|
+
|
|
|
+ <div class="menu-info">
|
|
|
+ <h4 class="control-sidebar-subheading">Nora Joined Mailing List</h4>
|
|
|
+
|
|
|
+ <p>nora@example.com</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <i class="menu-icon fa fa-file-code-o bg-green"></i>
|
|
|
+
|
|
|
+ <div class="menu-info">
|
|
|
+ <h4 class="control-sidebar-subheading">Cron Job 254 Executed</h4>
|
|
|
+
|
|
|
+ <p>Execution time 5 seconds</p>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- /.control-sidebar-menu -->
|
|
|
+
|
|
|
+ <h3 class="control-sidebar-heading">Tasks Progress</h3>
|
|
|
+ <ul class="control-sidebar-menu">
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <h4 class="control-sidebar-subheading">
|
|
|
+ Custom Template Design
|
|
|
+ <span class="label label-danger pull-right">70%</span>
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <div class="progress progress-xxs">
|
|
|
+ <div class="progress-bar progress-bar-danger" style="width: 70%"></div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <h4 class="control-sidebar-subheading">
|
|
|
+ Update Resume
|
|
|
+ <span class="label label-success pull-right">95%</span>
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <div class="progress progress-xxs">
|
|
|
+ <div class="progress-bar progress-bar-success" style="width: 95%"></div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <h4 class="control-sidebar-subheading">
|
|
|
+ Laravel Integration
|
|
|
+ <span class="label label-warning pull-right">50%</span>
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <div class="progress progress-xxs">
|
|
|
+ <div class="progress-bar progress-bar-warning" style="width: 50%"></div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)">
|
|
|
+ <h4 class="control-sidebar-subheading">
|
|
|
+ Back End Framework
|
|
|
+ <span class="label label-primary pull-right">68%</span>
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <div class="progress progress-xxs">
|
|
|
+ <div class="progress-bar progress-bar-primary" style="width: 68%"></div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- /.control-sidebar-menu -->
|
|
|
+ </mk-tab-content>
|
|
|
+ </mk-tab>
|
|
|
+ <mk-tab>
|
|
|
+ <mk-tab-header><i class="fa fa-gears"></i></mk-tab-header>
|
|
|
+ <mk-tab-content>
|
|
|
+ <!-- Settings tab content -->
|
|
|
+ <div class="tab-pane" id="control-sidebar-settings-tab">
|
|
|
+ <form method="post">
|
|
|
+ <h3 class="control-sidebar-heading">General Settings</h3>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Report panel usage
|
|
|
+ <input type="checkbox" class="pull-right" checked>
|
|
|
+ </label>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ Some information about this general settings option
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Allow mail redirect
|
|
|
+ <input type="checkbox" class="pull-right" checked>
|
|
|
+ </label>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ Other sets of options are available
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Expose author name in posts
|
|
|
+ <input type="checkbox" class="pull-right" checked>
|
|
|
+ </label>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ Allow the user to show his name in blog posts
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+
|
|
|
+ <h3 class="control-sidebar-heading">Chat Settings</h3>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Show me as online
|
|
|
+ <input type="checkbox" class="pull-right" checked>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Turn off notifications
|
|
|
+ <input type="checkbox" class="pull-right">
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="control-sidebar-subheading">
|
|
|
+ Delete chat history
|
|
|
+ <a href="javascript:void(0)" class="text-red pull-right"><i class="fa fa-trash-o"></i></a>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ <!-- /.form-group -->
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </mk-tab-content>
|
|
|
+ </mk-tab>
|
|
|
+ </mk-tabs>
|