mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-12-02 00:22:45 +00:00
rss icon, fix indent
This commit is contained in:
parent
9d161cb00e
commit
b5fdf63bb5
|
@ -157,8 +157,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile {
|
.profile .col-header {
|
||||||
.col-header {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
gap: 2rem;
|
gap: 2rem;
|
||||||
|
@ -175,17 +174,6 @@
|
||||||
line-height: 1.3rem;
|
line-height: 1.3rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.pinned {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: auto 1fr;
|
|
||||||
gap: 1rem;
|
|
||||||
|
|
||||||
a {
|
|
||||||
justify-self: end;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile .toots {
|
.profile .toots {
|
||||||
|
@ -194,6 +182,31 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.4rem;
|
gap: 0.4rem;
|
||||||
|
|
||||||
|
.col-header {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto 1fr;
|
||||||
|
gap: 1rem;
|
||||||
|
|
||||||
|
a {
|
||||||
|
justify-self: end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rss-icon {
|
||||||
|
display: block;
|
||||||
|
margin: -0.25rem 0;
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
font-size: 2rem;
|
||||||
|
object-fit: contain;
|
||||||
|
vertical-align: middle;
|
||||||
|
color: $orange2;
|
||||||
|
/* can't size a single-color background, so we use a linear-gradient that's effectively white */
|
||||||
|
background: linear-gradient(to right, $white1 100%, transparent 0) no-repeat center center;
|
||||||
|
background-size: 1.2rem 1.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.toot {
|
.toot {
|
||||||
.info {
|
.info {
|
||||||
padding: 0.3rem 0.75rem;
|
padding: 0.3rem 0.75rem;
|
||||||
|
|
|
@ -46,9 +46,6 @@
|
||||||
<span class="sr-only">Role: </span>{{ .account.Role.Name }}
|
<span class="sr-only">Role: </span>{{ .account.Role.Name }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<!-- <a class="rss-icon-link" href="/@admin/feed.rss" aria-label="RSS feed">
|
|
||||||
<i class="rss-icon fa fa-rss-square" aria-hidden="true"></i>
|
|
||||||
</a> -->
|
|
||||||
</div>
|
</div>
|
||||||
<div class="sr-only">
|
<div class="sr-only">
|
||||||
Profile for
|
Profile for
|
||||||
|
@ -98,7 +95,7 @@
|
||||||
|
|
||||||
<section class="toots">
|
<section class="toots">
|
||||||
{{ if .pinned_statuses }}
|
{{ if .pinned_statuses }}
|
||||||
<div class="col-header pinned">
|
<div class="col-header">
|
||||||
<h3>Pinned posts</h3>
|
<h3>Pinned posts</h3>
|
||||||
<a href="#recent">jump to recent</a>
|
<a href="#recent">jump to recent</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -113,6 +110,11 @@
|
||||||
|
|
||||||
<div class="col-header">
|
<div class="col-header">
|
||||||
<h3 id="recent" tabindex="-1">Recent posts</h3>
|
<h3 id="recent" tabindex="-1">Recent posts</h3>
|
||||||
|
{{ if .rssFeed }}
|
||||||
|
<a href="{{ .rssFeed }}" class="rss-icon" aria-label="RSS feed">
|
||||||
|
<i class="fa fa-rss-square" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="thread">
|
<section class="thread">
|
||||||
|
|
Loading…
Reference in a new issue