Merge branch 'comment_style_fix'
This commit is contained in:
commit
99e8125952
|
@ -9,6 +9,9 @@
|
|||
span {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
.has-tip {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
|
|
|
@ -79,4 +79,14 @@
|
|||
&:hover {
|
||||
background-color: #444444;
|
||||
}
|
||||
|
||||
.name {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
.comment-content {
|
||||
word-wrap: break-word;
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -12,4 +12,7 @@
|
|||
display: inline-block;
|
||||
width: 1rem;
|
||||
}
|
||||
label {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
h2.blog-title #{post.title}
|
||||
p.ptag
|
||||
i.fi-list
|
||||
span #{post.type}
|
||||
p.ptag
|
||||
i.fi-pricetag-multiple
|
||||
span #{post.labels_content}
|
||||
= render partial: 'post_head', locals: { post: post }
|
||||
|
||||
.content.markdown
|
||||
== post.content_html
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
/ require: locals: { post : post }
|
||||
h2.blog-title #{post.title}
|
||||
p.ptag
|
||||
span.has-tip data-options="disable_for_touch:false" data-tooltip="" title="分类"
|
||||
i.fi-list-thumbnails
|
||||
span #{post.type}
|
||||
p.ptag
|
||||
span.has-tip data-options="disable_for_touch:false" data-tooltip="" title="标签"
|
||||
i.fi-pricetag-multiple
|
||||
span #{post.labels_content}
|
|
@ -5,13 +5,7 @@
|
|||
| 首页
|
||||
.row
|
||||
.small-12.large-8.columns
|
||||
h2.blog-title #{@newest.title}
|
||||
p.ptag
|
||||
i.fi-list
|
||||
span #{@newest.type}
|
||||
p.ptag
|
||||
i.fi-pricetag-multiple
|
||||
span #{@newest.labels_content}
|
||||
= render partial: 'post_head', locals: { post: @newest }
|
||||
.content.markdown
|
||||
== @newest.sub_content
|
||||
|
||||
|
|
Loading…
Reference in New Issue