Menu first hidden by destop -
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3388 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
c42c7358ea
commit
ee9a1ce0ec
4 changed files with 19 additions and 8 deletions
|
|
@ -215,6 +215,11 @@
|
||||||
.no-more-tables td:before { content: attr(data-title); }
|
.no-more-tables td:before { content: attr(data-title); }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.dropdown-menu li.first {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
|
||||||
.navbar .navbar-subnavi .navbar-nav {
|
.navbar .navbar-subnavi .navbar-nav {
|
||||||
|
|
|
||||||
|
|
@ -3857,6 +3857,11 @@ a,
|
||||||
content: attr(data-title);
|
content: attr(data-title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.dropdown-menu li.first {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.navbar .navbar-subnavi .navbar-nav {
|
.navbar .navbar-subnavi .navbar-nav {
|
||||||
margin: 7.5px -10px;
|
margin: 7.5px -10px;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -289,14 +289,15 @@ jQuery(document).ready(function($) {
|
||||||
$(this).toggleClass('open');
|
$(this).toggleClass('open');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
$(".header .dropdown:not(.openClick)").click(
|
|
||||||
function() {
|
|
||||||
window.location.href = $(this).find('a').attr('href');
|
|
||||||
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
$(".header .dropdown:not(.openClick)").click(
|
||||||
|
function() {
|
||||||
|
if($(window).width() > 768){
|
||||||
|
window.location.href = $(this).find('a').attr('href');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
$('.selectpicker').selectpicker({
|
$('.selectpicker').selectpicker({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue