This commit is contained in:
Van 2018-11-16 11:34:12 +08:00
parent 2558fac0a1
commit 6b521a0d05
No known key found for this signature in database
GPG Key ID: 7059B8783A78F16C
5 changed files with 45 additions and 22 deletions

View File

@ -51,7 +51,10 @@
<div class="ft__center"> <div class="ft__center">
<span class="tag"> <span class="tag">
<i class="icon__tags"></i> <i class="icon__tags"></i>
${article.articleTags} <#list article.articleTags?split(",") as articleTag>
<a rel="tag" href="${servePath}/tags/${articleTag?url('UTF-8')}">
${articleTag}</a><#if articleTag_has_next>,</#if>
</#list>
</span> </span>
<a class="tag" href="${servePath}${article.articlePermalink}#comments"> <a class="tag" href="${servePath}${article.articlePermalink}#comments">
<i class="icon__comments"></i> ${article.articleCommentCount} ${commentLabel} <i class="icon__comments"></i> ${article.articleCommentCount} ${commentLabel}

View File

@ -86,7 +86,10 @@
<div class="ft__center"> <div class="ft__center">
<span class="tag"> <span class="tag">
<i class="icon__tags"></i> <i class="icon__tags"></i>
${article.articleTags} <#list article.articleTags?split(",") as articleTag>
<a rel="tag" href="${servePath}/tags/${articleTag?url('UTF-8')}">
${articleTag}</a><#if articleTag_has_next>,</#if>
</#list>
</span> </span>
<a class="tag" href="${servePath}${article.articlePermalink}#comments"> <a class="tag" href="${servePath}${article.articlePermalink}#comments">
<i class="icon__comments"></i> ${article.articleCommentCount} ${commentLabel} <i class="icon__comments"></i> ${article.articleCommentCount} ${commentLabel}

View File

@ -20,7 +20,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.3.0.0, Nov 12, 2018 * @version 0.3.1.1, Nov 15, 2018
*/ */
/* /*
* Symphony - A modern community (forum/BBS/SNS/blog) platform written in Java. * Symphony - A modern community (forum/BBS/SNS/blog) platform written in Java.
@ -1162,8 +1162,17 @@ a {
.side { .side {
margin: 0; margin: 0;
width: auto; } width: auto; }
.article-list .item__date { .article-list {
display: none; } overflow: hidden; }
.article-list .item__title {
font-size: 20px; }
.article-list .item__date--m {
text-align: center;
margin-bottom: 10px;
color: #3d4450;
display: block; }
.article-list .item__date {
display: none; }
.article-list .item, .article-list .item,
.module, .module,
.comments__item { .comments__item {
@ -1180,11 +1189,6 @@ a {
display: none; } display: none; }
.footer .fn__none { .footer .fn__none {
display: block; } display: block; }
.article-list .item__date--m {
text-align: center;
margin-bottom: 10px;
color: #3d4450;
display: block; }
.tag { .tag {
margin: 0 5px 10px 0; margin: 0 5px 10px 0;
font-size: 12px; } font-size: 12px; }
@ -1221,4 +1225,6 @@ a {
width: 34px; width: 34px;
left: -7px; } left: -7px; }
.comments__content { .comments__content {
padding: 15px; } } padding: 15px; }
.content-reset {
font-size: 14px; } }

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.3.0.0, Nov 12, 2018 * @version 0.3.1.1, Nov 15, 2018
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/reset-content"; @import "../../../scss/reset-content";
@ -653,8 +653,22 @@ a {
width: auto; width: auto;
} }
.article-list .item__date { .article-list {
display: none; overflow: hidden;
.item {
&__title {
font-size: 20px;
}
&__date--m {
text-align: center;
margin-bottom: 10px;
color: $black;
display: block;
}
&__date {
display: none;
}
}
} }
.article-list .item, .article-list .item,
@ -683,13 +697,6 @@ a {
} }
} }
.article-list .item__date--m {
text-align: center;
margin-bottom: 10px;
color: $black;
display: block;
}
.tag { .tag {
margin: 0 5px 10px 0; margin: 0 5px 10px 0;
font-size: 12px; font-size: 12px;
@ -750,4 +757,8 @@ a {
.comments__content { .comments__content {
padding: 15px; padding: 15px;
} }
.content-reset {
font-size: 14px;
}
} }