2022-05-21 17:47:26 +08:00
|
|
|
.posts-expand .post-header {
|
|
|
|
font-size: $font-size-large;
|
2022-06-01 17:06:27 +08:00
|
|
|
margin-bottom: 40px;
|
2022-05-21 17:47:26 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.posts-expand .post-title {
|
|
|
|
font-size: $font-size-largest;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: initial;
|
|
|
|
@include word-wrap();
|
|
|
|
|
2022-05-21 21:48:27 +08:00
|
|
|
@if $post_edit_enable {
|
2022-05-21 17:47:26 +08:00
|
|
|
.post-edit-link {
|
|
|
|
border-bottom: 0;
|
|
|
|
color: $grey;
|
|
|
|
float: right;
|
|
|
|
font-size: $font-size-larger;
|
|
|
|
margin-left: -1.2em;
|
|
|
|
transition: color $transition-ease-in;
|
|
|
|
|
|
|
|
@include mobile-small() {
|
|
|
|
margin-left: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $sidebar-highlight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.posts-expand .post-title-link {
|
|
|
|
border-bottom: 0;
|
|
|
|
color: var(--link-color);
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background: var(--link-color);
|
|
|
|
bottom: 0;
|
|
|
|
content: '';
|
|
|
|
height: 2px;
|
|
|
|
// Fix issue #75
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
transform: scaleX(0);
|
|
|
|
transition: transform $transition-ease;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover::before {
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-external-link-alt {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-sticky-flag {
|
|
|
|
display: inline-block;
|
|
|
|
// Fix issue #80 #140
|
|
|
|
margin-right: 8px;
|
|
|
|
transform: rotate(30deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.posts-expand .post-meta-container {
|
|
|
|
color: $grey-dark;
|
|
|
|
font-family: $font-family-posts;
|
|
|
|
font-size: $font-size-smallest;
|
|
|
|
margin-top: 3px;
|
|
|
|
|
|
|
|
.post-description {
|
|
|
|
font-size: $font-size-small;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
time {
|
|
|
|
border-bottom: 1px dashed $grey-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flexbox layout makes it possible to reorder the child
|
|
|
|
// elements of .post-meta through the `order` CSS property
|
|
|
|
.post-meta {
|
|
|
|
@include flex-wrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
// .post-meta-item exists in .post-meta and footer
|
|
|
|
:not(.post-meta-break) + .post-meta-item::before {
|
|
|
|
content: '|';
|
|
|
|
margin: 0 .5em;
|
|
|
|
}
|
|
|
|
|
2022-06-04 10:43:00 +08:00
|
|
|
/* Make post meta dislay in oneline
|
2022-05-21 17:47:26 +08:00
|
|
|
.post-meta-item-icon {
|
|
|
|
margin-right: 3px;
|
2022-06-04 10:43:00 +08:00
|
|
|
} */
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
.post-meta-item-text {
|
2022-05-21 21:48:27 +08:00
|
|
|
@if not $post_meta_item_text {
|
2022-05-21 17:47:26 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include tablet-mobile() {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-meta-break {
|
|
|
|
flex-basis: 100%;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2022-05-21 21:48:27 +08:00
|
|
|
@if $busuanzi_enable and $busuanzi_post_views {
|
2022-05-21 17:47:26 +08:00
|
|
|
#busuanzi_container_page_pv {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|