Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

CSS Rule: Anon can't vote

Cette révision appartient à :
akuma06 2017-07-31 18:33:27 +02:00
Parent 6aa6e9d95f
révision 1697542143
2 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -1607,7 +1607,7 @@ span.tag {
color: white;
}
.tag.pending .tag-text {
.tag.pending .tag-text.votable {
margin-right: 0;
}

Voir le fichier

@ -69,10 +69,10 @@
<td class="tr-flag torrent-view-td torrent-info-data">
{{ range Torrent.Tags}}
<span class="tag{{ if len(Torrent.Tags) > 5 }} big{{ end }}{{ if !.Accepted }} pending{{else}} accepted{{end}}" title="Tag: {{ .Type }} {{ if !.Accepted }}Weight: {{ .Total }}{{else}}({{ T("accepted") }}){{end}}">
<span class="tag-text">
<span class="tag-text{{ if User.ID > 0 }} votable{{end}}">
{{ T("tagtype_" + .Type) }}: {{ .Tag }}
</span>
{{ if .Accepted == false }}
{{ if !.Accepted && User.ID > 0 }}
<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>