.left-side is now deprecated in favor of .main-sidebar. This will allow us to add support for rtl in the future.

pull/229/head
almasaeed2010 2015-02-02 12:39:29 -05:00
parent 87adc23aa8
commit 748b5b5a08
35 changed files with 116 additions and 117 deletions

View File

@ -85,7 +85,9 @@ body {
/* Fixed layout */ /* Fixed layout */
.fixed { .fixed {
.main-header, .left-side { .main-header,
.main-sidebar,
.left-side {
position: fixed; position: fixed;
} }
.main-header { .main-header {
@ -160,7 +162,10 @@ a:hover, a:active, a:focus {
} }
//Elements that we want to hide when printing //Elements that we want to hide when printing
.left-side, .header, .content-header { .main-sidebar,
.left-side,
.header,
.content-header {
display: none; display: none;
} }
//This is the only element that should appear, so let's remove the margins //This is the only element that should appear, so let's remove the margins

View File

@ -180,9 +180,9 @@
float: right; float: right;
} }
} }
.main-sidebar,
.left-side { .left-side {
padding-top: 0!important; padding-top: 50px!important;
margin-top: 50px!important; margin-top: 0!important;
} }
} }

View File

@ -2,6 +2,10 @@
* Component: Sidebar * Component: Sidebar
* ------------------ * ------------------
*/ */
//Main Sidebar
// ``` .left-side has been deprecated in favor of .main-sidebar ```
.main-sidebar,
.left-side { .left-side {
position: absolute; position: absolute;
top: 50px; top: 50px;

View File

@ -67,6 +67,7 @@
} }
//Sidebar & Treeview //Sidebar & Treeview
// Sidebar color // Sidebar color
.main-sidebar,
.left-side, .left-side,
.wrapper { .wrapper {
background: #222; background: #222;

View File

@ -78,14 +78,10 @@
} }
// Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color) // Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color)
.wrapper { .wrapper ,
background: @skin-blue-sidebar-bg; .main-sidebar,
}
.left-side { .left-side {
background: @skin-blue-sidebar-bg; background: @skin-blue-sidebar-bg;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.sidebar a { .sidebar a {

View File

@ -78,14 +78,10 @@
} }
// Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color) // Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color)
.wrapper { .wrapper ,
background: @skin-blue-sidebar-bg; .main-sidebar,
}
.left-side { .left-side {
background: @skin-blue-sidebar-bg; background: @skin-blue-sidebar-bg;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.sidebar a { .sidebar a {

View File

@ -78,14 +78,10 @@
} }
// Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color) // Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color)
.wrapper { .wrapper ,
background: @skin-blue-sidebar-bg; .main-sidebar,
}
.left-side { .left-side {
background: @skin-blue-sidebar-bg; background: @skin-blue-sidebar-bg;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.sidebar a { .sidebar a {

View File

@ -78,14 +78,10 @@
} }
// Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color) // Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color)
.wrapper { .wrapper ,
background: @skin-blue-sidebar-bg; .main-sidebar,
}
.left-side { .left-side {
background: @skin-blue-sidebar-bg; background: @skin-blue-sidebar-bg;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.sidebar a { .sidebar a {

View File

@ -78,14 +78,10 @@
} }
// Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color) // Sidebar color (Both .wrapper and .left-side are responsible for sidebar bg color)
.wrapper { .wrapper ,
background: @skin-blue-sidebar-bg; .main-sidebar,
}
.left-side { .left-side {
background: @skin-blue-sidebar-bg; background: @skin-blue-sidebar-bg;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.sidebar a { .sidebar a {

52
dist/css/AdminLTE.css vendored
View File

@ -111,6 +111,7 @@ body {
} }
/* Fixed layout */ /* Fixed layout */
.fixed .main-header, .fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side { .fixed .left-side {
position: fixed; position: fixed;
} }
@ -182,6 +183,7 @@ a:focus {
.no-print { .no-print {
display: none; display: none;
} }
.main-sidebar,
.left-side, .left-side,
.header, .header,
.content-header { .content-header {
@ -356,15 +358,17 @@ a:focus {
.main-header .navbar-custom-menu { .main-header .navbar-custom-menu {
float: right; float: right;
} }
.main-sidebar,
.left-side { .left-side {
padding-top: 0!important; padding-top: 50px!important;
margin-top: 50px!important; margin-top: 0!important;
} }
} }
/* /*
* Component: Sidebar * Component: Sidebar
* ------------------ * ------------------
*/ */
.main-sidebar,
.left-side { .left-side {
position: absolute; position: absolute;
top: 50px; top: 50px;
@ -376,6 +380,7 @@ a:focus {
transition: transform 0.3s ease; transition: transform 0.3s ease;
} }
@media (max-width: 767px) { @media (max-width: 767px) {
.main-sidebar,
.left-side { .left-side {
-webkit-transform: translate(-230px, 0); -webkit-transform: translate(-230px, 0);
-ms-transform: translate(-230px, 0); -ms-transform: translate(-230px, 0);
@ -384,6 +389,7 @@ a:focus {
} }
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.sidebar-collapse .main-sidebar,
.sidebar-collapse .left-side { .sidebar-collapse .left-side {
-webkit-transform: translate(-230px, 0); -webkit-transform: translate(-230px, 0);
-ms-transform: translate(-230px, 0); -ms-transform: translate(-230px, 0);
@ -392,6 +398,7 @@ a:focus {
} }
} }
@media (max-width: 767px) { @media (max-width: 767px) {
.sidebar-open .main-sidebar,
.sidebar-open .left-side { .sidebar-open .left-side {
-webkit-transform: translate(0, 0); -webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0); -ms-transform: translate(0, 0);
@ -2820,14 +2827,10 @@ table.text-center th {
margin: 0 1px; margin: 0 1px;
background: #2c3b41; background: #2c3b41;
} }
.skin-blue .wrapper { .skin-blue .wrapper,
background: #222d32; .skin-blue .main-sidebar,
}
.skin-blue .left-side { .skin-blue .left-side {
background: #222d32; background: #222d32;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.skin-blue .sidebar a { .skin-blue .sidebar a {
color: #b8c7ce; color: #b8c7ce;
@ -2969,6 +2972,7 @@ table.text-center th {
.skin-black .user-panel > .info > a { .skin-black .user-panel > .info > a {
color: #eee; color: #eee;
} }
.skin-black .main-sidebar,
.skin-black .left-side, .skin-black .left-side,
.skin-black .wrapper { .skin-black .wrapper {
background: #222; background: #222;
@ -3125,14 +3129,10 @@ table.text-center th {
margin: 0 1px; margin: 0 1px;
background: #2c3b41; background: #2c3b41;
} }
.skin-red .wrapper { .skin-red .wrapper,
background: #222d32; .skin-red .main-sidebar,
}
.skin-red .left-side { .skin-red .left-side {
background: #222d32; background: #222d32;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.skin-red .sidebar a { .skin-red .sidebar a {
color: #b8c7ce; color: #b8c7ce;
@ -3269,14 +3269,10 @@ table.text-center th {
margin: 0 1px; margin: 0 1px;
background: #2c3b41; background: #2c3b41;
} }
.skin-green .wrapper { .skin-green .wrapper,
background: #222d32; .skin-green .main-sidebar,
}
.skin-green .left-side { .skin-green .left-side {
background: #222d32; background: #222d32;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.skin-green .sidebar a { .skin-green .sidebar a {
color: #b8c7ce; color: #b8c7ce;
@ -3413,14 +3409,10 @@ table.text-center th {
margin: 0 1px; margin: 0 1px;
background: #2c3b41; background: #2c3b41;
} }
.skin-yellow .wrapper { .skin-yellow .wrapper,
background: #222d32; .skin-yellow .main-sidebar,
}
.skin-yellow .left-side { .skin-yellow .left-side {
background: #222d32; background: #222d32;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.skin-yellow .sidebar a { .skin-yellow .sidebar a {
color: #b8c7ce; color: #b8c7ce;
@ -3557,14 +3549,10 @@ table.text-center th {
margin: 0 1px; margin: 0 1px;
background: #2c3b41; background: #2c3b41;
} }
.skin-purple .wrapper { .skin-purple .wrapper,
background: #222d32; .skin-purple .main-sidebar,
}
.skin-purple .left-side { .skin-purple .left-side {
background: #222d32; background: #222d32;
/* -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
-moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.7);
box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);*/
} }
.skin-purple .sidebar a { .skin-purple .sidebar a {
color: #b8c7ce; color: #b8c7ce;

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@
font-weight: 500; font-weight: 500;
} }
.right-side { .right-side {
background: #f9f9f9; background: #f9f9f9;
} }
.page-header { .page-header {
border: 0; border: 0;
@ -124,12 +124,12 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar" id="scrollspy">
<!-- sidebar menu: : style can be found in sidebar.less --> <!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu" id="scrollspy"> <ul class="nav sidebar-menu">
<li class="header">TABLE OF CONTENTS</li> <li class="header">TABLE OF CONTENTS</li>
<li class='active'><a href="#introduction"><i class='fa fa-circle-o'></i> Introduction</a></li> <li class='active'><a href="#introduction"><i class='fa fa-circle-o'></i> Introduction</a></li>
<li><a href="#download"><i class='fa fa-circle-o'></i> Download</a></li> <li><a href="#download"><i class='fa fa-circle-o'></i> Download</a></li>
@ -137,6 +137,8 @@
<li><a href="#advice"><i class='fa fa-circle-o'></i> Advice</a></li> <li><a href="#advice"><i class='fa fa-circle-o'></i> Advice</a></li>
<li><a href="#layout"><i class='fa fa-circle-o'></i> Layout</a></li> <li><a href="#layout"><i class='fa fa-circle-o'></i> Layout</a></li>
<li><a href="#components"><i class='fa fa-circle-o'></i> Components</a></li> <li><a href="#components"><i class='fa fa-circle-o'></i> Components</a></li>
<li><a href="#browsers"><i class='fa fa-circle-o'></i> Browser Support</a></li>
<li><a href="#upgrade"><i class='fa fa-circle-o'></i> Upgrade Guide</a></li>
</ul> </ul>
</section> </section>
<!-- /.sidebar --> <!-- /.sidebar -->
@ -254,8 +256,8 @@ AdminLTE/
<ul class='lead'> <ul class='lead'>
<li>Wrapper <code>.wrapper</code></li> <li>Wrapper <code>.wrapper</code></li>
<li>Main Header <code>.main-header</code></li> <li>Main Header <code>.main-header</code></li>
<li>Sidebar <code>.left-side</code></li> <li>Sidebar <code>.sidebar-wrapper</code></li>
<li>Content <code>.right-side</code></li> <li>Content <code>.content-wrapper</code></li>
</ul> </ul>
<pre class='prettyprint'> <pre class='prettyprint'>
&LT;!DOCTYPE html> &LT;!DOCTYPE html>
@ -298,7 +300,7 @@ AdminLTE/
&LT;!-- =============================================== --> &LT;!-- =============================================== -->
&LT;!-- Left side column. contains the sidebar --> &LT;!-- Left side column. contains the sidebar -->
&LT;aside class="left-side"> &LT;aside class="main-sidebar">
&LT;!-- sidebar: style can be found in sidebar.less --> &LT;!-- sidebar: style can be found in sidebar.less -->
&LT;section class="sidebar"> &LT;section class="sidebar">
&LT;!-- sidebar menu: : style can be found in sidebar.less --> &LT;!-- sidebar menu: : style can be found in sidebar.less -->
@ -342,14 +344,26 @@ AdminLTE/
</section> </section>
<section id='components'> <section id='components'>
<h2 class='page-header'><span>Components</span></h2> <h2 class='page-header'><span>Components</span></h2>
<p class="lead">Content</p>
</section> </section>
<section id='browsers'> <section id='browsers'>
<h2 class='page-header'><span>Browser Support</span></h2> <h2 class='page-header'><span>Browser Support</span></h2>
<p>Text will go here</p> <p class="lead">AdminLTE supports the following browsers:</p>
<ul>
<li>IE9+</li>
<li>FireFox (latest)</li>
<li>Safari (latest)</li>
<li>Chrome (latest)</li>
<li>Opera (latest)</li>
</ul>
</section> </section>
<section id='browsers'> <section id='upgrade'>
<h2 class='page-header'><span>Upgrade Guide</span></h2>
<p class="lead">Content</p>
</section>
<section id='faq'>
<h2 class='page-header'><span>FAQ</span></h2> <h2 class='page-header'><span>FAQ</span></h2>
<p>Text will go here</p> <p class="lead">Content</p>
</section> </section>
<div class='box'> <div class='box'>
<div class='box-header with-border'> <div class='box-header with-border'>
@ -369,9 +383,6 @@ AdminLTE/
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<!-- Pace 1.0.0 --
<script src="js/plugins/pace/pace.js" type="text/javascript"></script-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js" type="text/javascript"></script>
@ -381,9 +392,19 @@ AdminLTE/
<script src="../plugins/slimScroll/jquery.slimscroll.min.js" type="text/javascript"></script> <script src="../plugins/slimScroll/jquery.slimscroll.min.js" type="text/javascript"></script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script> <script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script src="//use.typekit.net/yvy0plb.js"></script> <script src="//use.typekit.net/yvy0plb.js"></script>
<script>try { <script>
try {
Typekit.load(); Typekit.load();
} catch (e) { } catch (e) {
}</script> }
</script>
<script>
$(function(){
$(".sidebar-menu li a").click(function(){
$(this).parents("ul").find(".active").removeClass("active");
$(this).parent('li').addClass('active');
});
});
</script>
</body> </body>
</html> </html>

View File

@ -277,7 +277,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -270,7 +270,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -285,7 +285,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -314,7 +314,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -282,7 +282,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -274,7 +274,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -271,7 +271,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -270,7 +270,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -164,7 +164,7 @@
<!-- =============================================== --> <!-- =============================================== -->
<!-- Left side column. contains the sidebar --> <!-- Left side column. contains the sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -278,7 +278,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -270,7 +270,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -272,7 +272,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -270,7 +270,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->

View File

@ -268,7 +268,7 @@
</nav> </nav>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<aside class="left-side"> <aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less --> <!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar"> <section class="sidebar">
<!-- Sidebar user panel --> <!-- Sidebar user panel -->