mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-23 21:29:22 +02:00
Compare commits
No commits in common. "df746e8482682133538f0dd7e6503d9de4a6ef25" and "96a0d7cf05c84f8799d5946b3ded0e81623d7ddf" have entirely different histories.
df746e8482
...
96a0d7cf05
10
README
10
README
|
@ -5,16 +5,6 @@ Features:
|
||||||
- Does not require JavaScript to display text, images, audio and videos.
|
- Does not require JavaScript to display text, images, audio and videos.
|
||||||
|
|
||||||
|
|
||||||
Changes (localhost_custom fork):
|
|
||||||
- Is personal fork, no recommended for public use (use as local frontend)
|
|
||||||
- Add reactions for pleroma (includes custom emojis input)
|
|
||||||
- tag timeline
|
|
||||||
- visible edited post time
|
|
||||||
- hide boosts in spoiler
|
|
||||||
- some micro visual changes
|
|
||||||
- some others changes no matter
|
|
||||||
|
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
|
|
||||||
- Go 1.11
|
- Go 1.11
|
||||||
|
|
|
@ -4,7 +4,7 @@ frame, body {
|
||||||
|
|
||||||
.status-container-container {
|
.status-container-container {
|
||||||
margin: 0 -4px 12px -4px;
|
margin: 0 -4px 12px -4px;
|
||||||
padding: 2px;
|
padding: 4px;
|
||||||
border-left: 4px solid transparent;
|
border-left: 4px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,8 +145,7 @@ frame, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.retweet-info {
|
.retweet-info {
|
||||||
margin: -1% 0 0 24px;
|
margin: 0 0 4px 24px;
|
||||||
background-color: gainsboro;
|
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{{with .Data}}
|
{{with .Data}}
|
||||||
<div id="status-{{.ID}}" class="status-container-container">
|
<div id="status-{{.ID}}" class="status-container-container">
|
||||||
{{if .Reblog}}
|
{{if .Reblog}}
|
||||||
<details>
|
|
||||||
<summary>
|
|
||||||
<div class="retweet-info">
|
<div class="retweet-info">
|
||||||
<a class="img-link" href="/user/{{.Account.ID}}">
|
<a class="img-link" href="/user/{{.Account.ID}}">
|
||||||
<img class="status-profile-img" src="{{.Account.Avatar}}" title="@{{.Account.Acct}}" alt="avatar" height="24" />
|
<img class="status-profile-img" src="{{.Account.Avatar}}" title="@{{.Account.Acct}}" alt="avatar" height="24" />
|
||||||
|
@ -11,11 +9,9 @@
|
||||||
<a href="/user/{{.Account.ID}}">
|
<a href="/user/{{.Account.ID}}">
|
||||||
<span class="status-uname">@{{.Account.Acct}}</span>
|
<span class="status-uname">@{{.Account.Acct}}</span>
|
||||||
</a>
|
</a>
|
||||||
retweeteed
|
retweeted
|
||||||
</div>
|
</div>
|
||||||
</summary>
|
|
||||||
{{template "status" (WithContext .Reblog $.Ctx)}}
|
{{template "status" (WithContext .Reblog $.Ctx)}}
|
||||||
</details>
|
|
||||||
{{else}}
|
{{else}}
|
||||||
{{block "status" (WithContext . $.Ctx)}}
|
{{block "status" (WithContext . $.Ctx)}}
|
||||||
{{with $s := .Data}}
|
{{with $s := .Data}}
|
||||||
|
|
Loading…
Reference in New Issue