forked from saurabh/orbit4-5
Update orbit_bootstrap template
This commit is contained in:
parent
60aef1426a
commit
ba3219c704
|
@ -99,10 +99,12 @@
|
||||||
}
|
}
|
||||||
.modules-menu-level-1 {
|
.modules-menu-level-1 {
|
||||||
display: none;
|
display: none;
|
||||||
|
min-width: 100%;
|
||||||
margin: 0 -15px;
|
margin: 0 -15px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: $theme-gray-dark;
|
background-color: $theme-gray-dark;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
z-index: 1;
|
||||||
& > li {
|
& > li {
|
||||||
position: relative;
|
position: relative;
|
||||||
& + li {
|
& + li {
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
@import "modules/gallery";
|
@import "modules/gallery";
|
||||||
@import "modules/archives";
|
@import "modules/archives";
|
||||||
|
|
||||||
|
// Widget
|
||||||
|
@import "widget/breadcrumb";
|
||||||
|
@import "widget/sitemenu";
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Droid Sans';
|
font-family: 'Droid Sans';
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
.widget-breadcrumb {
|
||||||
|
&.widget1 {
|
||||||
|
li {
|
||||||
|
&:last-child {
|
||||||
|
a {
|
||||||
|
color: $theme-gray-dark;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
.widget-sitemenu {
|
||||||
|
.widget-title {
|
||||||
|
@extend .unity-title;
|
||||||
|
}
|
||||||
|
&.widget1 {
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
<div class="widget-breadcrumb widget1">
|
||||||
|
<ul class="list-inline breadcrumb" data-list="crumbs" data-level="0">
|
||||||
|
<li>
|
||||||
|
<a href="{{url}}">{{page_name}}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<div class="widget-sitemenu widget1">
|
||||||
|
<h3 class="widget-title">
|
||||||
|
<span>{{widget-title}}</span>
|
||||||
|
</h3>
|
||||||
|
<ul class="list-unstyled modules-menu-level-0" data-list="pages" data-level="0">
|
||||||
|
<li>
|
||||||
|
<a href="{{url}}" target="{{target}}">{{page_name}}</a>
|
||||||
|
<ul class="list-unstyled modules-menu-level-1" data-list="children" data-level="1">
|
||||||
|
<li>
|
||||||
|
<a href="{{url}}" target="{{target}}">{{page_name}}</a>
|
||||||
|
<ul class="list-unstyled modules-menu-level-2" data-list="children" data-level="2">
|
||||||
|
<li>
|
||||||
|
<a href="{{url}}" target="{{target}}">{{page_name}}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
Loading…
Reference in New Issue