Skip to content

Commit

Permalink
Standard theme improved
Browse files Browse the repository at this point in the history
  • Loading branch information
farzindev committed Sep 12, 2016
1 parent e8b6433 commit 892b928
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 40 deletions.
5 changes: 2 additions & 3 deletions BlogEngine/BlogEngine.NET/Custom/Themes/Standard/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
module.exports = function (grunt) {
grunt.initConfig({
sass: {
options: {
noCache: true
},
dist: {
options: {
style: 'compressed',
noCache: true,
sourcemap: 'none'
},
files: {
'src/css/styles.min.css': 'src/scss/styles.scss',
Expand Down

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#postnavigation {
display: none;
}

.navigation-posts {
display: table;
width: 100%;
Expand Down
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;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/*
Author: http://francis.bio
*/
*/

// base
@import "base/variables";
@import "base/mixins";
@import "base/base";

// sections
@import "sections/header";
@import "sections/posts";
@import "sections/pages";
@import "sections/post.navigation";
@import "sections/post.pager";
@import "sections/post.related";
@import "sections/comments";
@import "sections/pages";
@import "sections/search";
@import "sections/archive";
@import "sections/widgets";
Expand All @@ -26,7 +26,7 @@
@import "modules/syntaxhighlighter";
@import "modules/rating";

// widgets
// widgets
@import "widgets/search";
@import "widgets/postlist";
@import "widgets/categorylist";
Expand Down

0 comments on commit 892b928

Please sign in to comment.