mirror of
https://git.qoto.org/fedipage/fedipage.git
synced 2024-11-15 19:47:57 +01:00
Fixed some bad rendering on pretty quote boxes
This commit is contained in:
parent
332bb70cd5
commit
a2f6896b7e
3 changed files with 8 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
* When a post has an `image_header` parameter this image is set as an attachment
|
* When a post has an `image_header` parameter this image is set as an attachment
|
||||||
to ActivityPub posts
|
to ActivityPub posts
|
||||||
|
* Fixed some poor CSS rendering for quote-box.
|
||||||
|
|
||||||
## 2.1.0
|
## 2.1.0
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
<blockquote>
|
<blockquote>
|
||||||
{{ .Inner }}
|
{{ .Inner }}
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<cite>{{ .Get "source" }}</cite>
|
{{ if .Get "source" }}<cite>{{ .Get "source" }}</cite>{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -603,6 +603,11 @@ p {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
margin-top: 3em;
|
||||||
|
margin-bottom: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
@-webkit-keyframes nprogress-spinner{
|
@-webkit-keyframes nprogress-spinner{
|
||||||
0%{
|
0%{
|
||||||
-webkit-transform:rotate(0)
|
-webkit-transform:rotate(0)
|
||||||
|
@ -2267,7 +2272,7 @@ div#ch-tooltip {
|
||||||
|
|
||||||
.quote-box > blockquote:after {
|
.quote-box > blockquote:after {
|
||||||
content: '”';
|
content: '”';
|
||||||
right: -5rem;
|
right: 0;
|
||||||
bottom: 1rem;
|
bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue