Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Cette révision appartient à :
akuma06 2017-07-31 17:13:48 +02:00
Parent 93a2c5b98e
révision 7bd3b176c0
2 fichiers modifiés avec 24 ajouts et 2 suppressions

Voir le fichier

@ -1579,4 +1579,26 @@ html[lang="ja-jp"] .header .nav-btn { padding: 0 8px;}
.input-ui-list + .add-input {
margin-bottom:1rem;
}
span.tag {
padding: 2px 0.5rem;
border-radius: 1rem;
box-shadow: 0px 0px 1px 0px black;
}
.tag.accepted {
background: hsla(100, 100%, 50%, 0.3);
}
.tag.pending {
background: #1d6d90;
}
.tag a.tag-form.plus {
content: '+';
}
.tag a.tag-form.minus {
content: '-';
}

Voir le fichier

@ -68,10 +68,10 @@
<td class="torrent-info-td torrent-info-label">{{ T("torrent_tags")}}:</td>
<td class="tr-flag torrent-view-td torrent-info-data">
{{ range Torrent.Tags}}
<span class="tag{{ if len(Torrent.Tags) > 5 }} big{{ end }}" title="{{ .Tag }}">
<span class="tag{{ if len(Torrent.Tags) > 5 }} big{{ end }}{{ if !.Accepted }} pending{{else}} accepted{{end}}" title="Tag: {{ .Type }}">
{{ T("tagtype_" + .Type) }}: {{ .Tag }}
{{ if .Accepted == false }}
<a href="/torrent/tag/{{ if User.Tags.Contains(.) }}remove{{else}}add{{end}}?id={{Torrent.ID}}&tag={{ .Tag }}&type={{ .Type }}" class="tag-form">{{ if User.Tags.Contains(.) }}-{{else}}+{{end}}</a>
<a href="/torrent/tag/{{ if User.Tags.Contains(.) }}remove{{else}}add{{end}}?id={{Torrent.ID}}&tag={{ .Tag }}&type={{ .Type }}" class="tag-form {{ if User.Tags.Contains(.) }}minus{{else}}plus{{end}}"></a>
{{ end }}
</span>
{{end}}