edit え、return: falseが原因なだけ??????w

This commit is contained in:
harukin 2019-01-22 17:25:50 +09:00
parent 52042e51aa
commit 5789dd67f3
2 changed files with 20 additions and 16 deletions

View File

@ -2104,17 +2104,26 @@ a[title*="pawoo.net"]::after {
display: none; display: none;
} }
#notifications a::before{ #notifications a::before {
position: absolute; position: absolute;
left: 38px; left: 38px;
top: 30px; top: 30px;
} }
.generic-content-wrapper .section-content-wrapper .contact-entry-wrapper .contact-entry-photo-wrapper a::before{ .generic-content-wrapper
.section-content-wrapper
.contact-entry-wrapper
.contact-entry-photo-wrapper
a::before {
position: absolute; position: absolute;
} }
#notifications a::after, .generic-content-wrapper .section-content-wrapper .contact-entry-wrapper .contact-entry-photo-wrapper a::after{ #notifications a::after,
.generic-content-wrapper
.section-content-wrapper
.contact-entry-wrapper
.contact-entry-photo-wrapper
a::after {
display: none; display: none;
} }
@ -2156,24 +2165,20 @@ a[title*="pawoo.net"]::after {
max-width: $converse_widthpx; max-width: $converse_widthpx;
} }
nav { nav .navbar-text > div {
pointer-events: none;
}
nav .navbar-text > div{
font-size: 0px; font-size: 0px;
} }
nav .navbar-nav > .text-truncate{ nav .navbar-nav > .text-truncate {
font-size: 0px; font-size: 0px;
position: absolute; position: absolute;
left: 68px; left: 68px;
top: 33px; top: 33px;
} }
@media screen and (min-width: 450px) { @media screen and (min-width: 450px) {
nav .navbar-nav > .text-truncate{ nav .navbar-nav > .text-truncate {
font-size: unset; font-size: unset;
margin-left: 5px; margin-left: 5px;
position: unset; position: unset;
left: unset; left: unset;
top: unset; top: unset;
@ -2205,8 +2210,8 @@ nav .navbar-nav > .text-truncate{
margin-right: calc(calc(50% - $converse_widts) / 2); margin-right: calc(calc(50% - $converse_widts) / 2);
} }
nav .navbar-text > div{ nav .navbar-text > div {
font-size: unset; font-size: unset;
} }
} }
@media screen and (min-width: $converse_widtd) { @media screen and (min-width: $converse_widtd) {
@ -2227,7 +2232,7 @@ nav .navbar-nav > .text-truncate{
width: calc(100% - 16px); width: calc(100% - 16px);
} }
.dropdown-menu.show{ .dropdown-menu.show {
position: absolute; position: absolute;
left: -215px; left: -215px;
} }

View File

@ -101,14 +101,13 @@ $(document).ready(function() {
checkNotify(); checkNotify();
}, 10 * 1000); }, 10 * 1000);
//トップに戻る //トップに戻る
$("nav:not(.href)").click(function(e) { $("nav").click(function(e) {
$("body,html").animate( $("body,html").animate(
{ {
scrollTop: 0 scrollTop: 0
}, },
150 150
); );
return false;
}); });
}); });