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

@ -2110,11 +2110,20 @@ a[title*="pawoo.net"]::after {
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;
}
#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;
}
@ -2156,10 +2165,6 @@ a[title*="pawoo.net"]::after {
max-width: $converse_widthpx;
}
nav {
pointer-events: none;
}
nav .navbar-text > div {
font-size: 0px;
}

View File

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