Skip to content

Commit

Permalink
✨ change list title size
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Mar 6, 2017
1 parent 8e6f622 commit e3840d7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/main/webapp/css/index.css

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions src/main/webapp/js/article.js
Original file line number Diff line number Diff line change
Expand Up @@ -947,14 +947,6 @@ var Article = {
});

this.initToc();

if (Label.isLoggedIn) {
Article.makeNotificationRead(Label.articleOId, Label.notificationCmtIds);

setTimeout(function() {
Util.setUnreadNotificationCount();
}, 1000);
}
},
/**
* 历史版本对比
Expand Down Expand Up @@ -1505,4 +1497,13 @@ $(document).ready(function () {

// Init [Article] channel
ArticleChannel.init(Label.articleChannel);

// make nogification read
if (Label.isLoggedIn) {
Article.makeNotificationRead(Label.articleOId, Label.notificationCmtIds);

setTimeout(function() {
Util.setUnreadNotificationCount();
}, 1000);
}
});
2 changes: 1 addition & 1 deletion src/main/webapp/js/article.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main/webapp/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 2.25.21.51, Mar 5, 2017
* @version 2.25.21.52, Mar 6, 2017
*/

@import "variables";
Expand Down Expand Up @@ -470,7 +470,7 @@ label.cmt-anonymous {
}

ul > li > h2 > a {
font-size: 18px;
font-size: 16px;
font-weight: 700;
}

Expand Down
6 changes: 3 additions & 3 deletions src/main/webapp/skins/classic/article.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,9 @@
</div>
</div>
<#include "footer.ftl">
<script src="${staticServePath}/js/lib/compress/article-libs.min.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/channel${miniPostfix}.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/article${miniPostfix}.js?${staticResourceVersion}"></script>
<script>
Label.commentErrorLabel = "${commentErrorLabel}";
Label.symphonyLabel = "${symphonyLabel}";
Expand Down Expand Up @@ -488,8 +491,5 @@
Article.playThought('${article.articleContent}');
</#if>
</script>
<script src="${staticServePath}/js/lib/compress/article-libs.min.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/article${miniPostfix}.js?${staticResourceVersion}"></script>
<script src="${staticServePath}/js/channel${miniPostfix}.js?${staticResourceVersion}"></script>
</body>
</html>

0 comments on commit e3840d7

Please sign in to comment.