forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25 additions
and
40 deletions.
There are no files selected for viewing
5 changes: 2 additions & 3 deletions
5
BlogEngine/BlogEngine.NET/Custom/Themes/Standard/Gruntfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
BlogEngine/BlogEngine.NET/Custom/Themes/Standard/src/css/styles.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
BlogEngine/BlogEngine.NET/Custom/Themes/Standard/src/css/styles.min.css.map
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
BlogEngine/BlogEngine.NET/Custom/Themes/Standard/src/scss/sections/_post.navigation.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
#postnavigation { | ||
display: none; | ||
} | ||
|
||
.navigation-posts { | ||
display: table; | ||
width: 100%; | ||
|
38 changes: 18 additions & 20 deletions
38
BlogEngine/BlogEngine.NET/Custom/Themes/Standard/src/scss/sections/_post.related.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
#relatedPosts { | ||
display: none; | ||
} | ||
|
||
.related-posts { | ||
display: none; | ||
|
||
ul li div { | ||
display: block; | ||
overflow: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
font-size: 1rem; | ||
color: rgb(136, 136, 136); | ||
} | ||
|
||
ul li { | ||
padding-bottom: 1rem; | ||
margin-bottom: 1rem; | ||
border-bottom: 1px solid #eee; | ||
padding-bottom: 0.5rem; | ||
margin-bottom: 0.5rem; | ||
border-bottom: $px1 solid #eee; | ||
|
||
a { | ||
font-size: 1rem; | ||
} | ||
|
||
&:last-child { | ||
margin: 0; | ||
} | ||
|
||
&:first-child { | ||
padding-top: 1rem; | ||
border-top: 1px solid #eee; | ||
padding-top: 0.5rem; | ||
border-top: $px1 solid #eee; | ||
} | ||
|
||
div { | ||
display: block; | ||
overflow: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
font-size: 0.75rem; | ||
color: #aaa; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters