Built own responsive menu solution to replace bootstraps
This commit is contained in:
parent
ab709b924d
commit
5d9a07cdb2
@ -6508,8 +6508,15 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 800px) {
|
@media only screen and (max-width: 800px) {
|
||||||
/* Force table to not be like tables anymore */
|
/* Force table to not be like tables anymore */
|
||||||
|
@ -6508,8 +6508,15 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 800px) {
|
@media only screen and (max-width: 800px) {
|
||||||
/* Force table to not be like tables anymore */
|
/* Force table to not be like tables anymore */
|
||||||
|
@ -6508,8 +6508,15 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 800px) {
|
@media only screen and (max-width: 800px) {
|
||||||
/* Force table to not be like tables anymore */
|
/* Force table to not be like tables anymore */
|
||||||
|
@ -6508,8 +6508,15 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.sub-nav-collapse {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 800px) {
|
@media only screen and (max-width: 800px) {
|
||||||
/* Force table to not be like tables anymore */
|
/* Force table to not be like tables anymore */
|
||||||
|
@ -238,13 +238,13 @@ if ($homepage && $homepage_url !== '/') {
|
|||||||
<div class="left-column article-tree span3">
|
<div class="left-column article-tree span3">
|
||||||
<!-- For Mobile -->
|
<!-- For Mobile -->
|
||||||
<div class="responsive-collapse">
|
<div class="responsive-collapse">
|
||||||
<button type="button" class="btn btn-sidebar" data-toggle="collapse" data-target="#sub-nav-collapse">
|
<button type="button" class="btn btn-sidebar" id="menu-spinner-button">
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="sub-nav-collapse" class="collapse in">
|
<div id="sub-nav-collapse" class="sub-nav-collapse">
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<?php echo build_nav($tree); ?>
|
<?php echo build_nav($tree); ?>
|
||||||
|
|
||||||
|
21
js/custom.js
21
js/custom.js
@ -8,16 +8,15 @@ $(function() {
|
|||||||
// Bootstrap Table Class
|
// Bootstrap Table Class
|
||||||
$('table').addClass('table');
|
$('table').addClass('table');
|
||||||
|
|
||||||
var mobileNavWorkaround = function() {
|
// Responsive menu spinner
|
||||||
if($(window).width()< 768) {
|
$('#menu-spinner-button').click(function() {
|
||||||
$('#sub-nav-collapse').css('height', '0px');
|
$('#sub-nav-collapse').slideToggle();
|
||||||
} else {
|
});
|
||||||
$('#sub-nav-collapse').css('height', 'auto');
|
|
||||||
}
|
// Catch browser resize
|
||||||
}
|
$(window).resize(function() {
|
||||||
|
// Remove transition inline style on large screens
|
||||||
$(window).resize(function() {
|
if ($(window).width() >= 768)
|
||||||
mobileNavWorkaround();
|
$('#sub-nav-collapse').removeAttr('style');
|
||||||
});
|
});
|
||||||
mobileNavWorkaround();
|
|
||||||
});
|
});
|
@ -265,8 +265,11 @@ html, body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.sub-nav-collapse {
|
.sub-nav-collapse {
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 768px) {
|
||||||
//display: none;
|
display: none;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user