Skip to content

Commit

Permalink
Unifying CSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed May 23, 2017
1 parent ffa45f1 commit a72a196
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 45 deletions.
21 changes: 6 additions & 15 deletions nikola/data/themes/base/assets/css/theme.css
Expand Up @@ -97,18 +97,6 @@ body {
display: none;
}

.translationslist p:before {
content: " — ";
}

.translationslist p:first-of-type:before {
content: "";
}

.translationslist p {
display: inline;
}

.postindex article {
border-bottom: 1px solid #4F5151;
padding-bottom: 1em;
Expand All @@ -132,7 +120,8 @@ body {
}
.metadata p:before,
.postpromonav .tags li:before,
.postlist .listdate:after {
.postlist .listdate:after,
.translationslist p:before {
content: " — ";
}
.postlist li {
Expand Down Expand Up @@ -165,7 +154,8 @@ body {
}

.metadata p:first-of-type:before,
.postpromonav .tags li:first-of-type:before {
.postpromonav .tags li:first-of-type:before,
.translationslist p:first-of-type:before {
content: "";
}
.postpromonav .pager {
Expand Down Expand Up @@ -205,7 +195,8 @@ body {
cursor: not-allowed;
}

.metadata p {
.metadata p,
.translationslist p {
display: inline;
}

Expand Down
21 changes: 6 additions & 15 deletions nikola/data/themes/bootstrap3-jinja/assets/css/theme.css
Expand Up @@ -118,15 +118,18 @@ article.post-micro {
}

.metadata p:before,
.postlist .listdate:after {
.postlist .listdate:after,
.translationslist p:before {
content: " — ";
}

.metadata p:first-of-type:before {
.metadata p:first-of-type:before,
.translationslist p:first-of-type:before {
content: "";
}

.metadata p {
.metadata p,
.translationslist p {
display: inline;
}

Expand All @@ -140,18 +143,6 @@ article.post-micro {
display: none;
}

.translationslist p:before {
content: " — ";
}

.translationslist p:first-of-type:before {
content: "";
}

.translationslist p {
display: inline;
}

.entry-content {
margin-top: 1em;
}
Expand Down
21 changes: 6 additions & 15 deletions nikola/data/themes/bootstrap3/assets/css/theme.css
Expand Up @@ -118,15 +118,18 @@ article.post-micro {
}

.metadata p:before,
.postlist .listdate:after {
.postlist .listdate:after,
.translationslist p:before {
content: " — ";
}

.metadata p:first-of-type:before {
.metadata p:first-of-type:before,
.translationslist p:first-of-type:before {
content: "";
}

.metadata p {
.metadata p,
.translationslist p {
display: inline;
}

Expand All @@ -140,18 +143,6 @@ article.post-micro {
display: none;
}

.translationslist p:before {
content: " — ";
}

.translationslist p:first-of-type:before {
content: "";
}

.translationslist p {
display: inline;
}

.entry-content {
margin-top: 1em;
}
Expand Down

0 comments on commit a72a196

Please sign in to comment.