Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions chrome-extension/modules/mvn.module.posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ var thread_url = ($(".headlink").length)? $(".headlink").attr("href") : windo
for (i = 0; i <= posts.length - 1; i++){
_posts[posts[i].id.substring(4)] = posts[i];
$("#post"+posts[i].id.substring(4)).addClass("mvn-post");

//Add permalink to post date
var date=$("#post"+posts[i].id.substring(4)+" > div.msg > div.info > span:nth-child(2)");
date.replaceWith("<a id='mv-date' href='" + $("#post"+posts[i].id.substring(4)+ "> div.msg > div.info > a").attr('href') + "'>" + date.text() + "</a>");

}

//Get current page already loaded and last page to load
Expand Down
17 changes: 17 additions & 0 deletions chrome-extension/mv-front.css
Original file line number Diff line number Diff line change
Expand Up @@ -1241,4 +1241,21 @@ img.mfp-img {
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
opacity: 0;
}

/* Date style */
a#mv-date {
background: transparent!important;
font-style: normal;
font-size: 12px;
font-weight: 400;
color:#626262;
}

.MVN-oscuro a#mv-date {
background: transparent!important;
font-style: normal;
font-size: 12px;
font-weight: 400;
color:#b4c9d3;
}