forked from MarseyWorld/MarseyWorld
master
parent
57ff9aaeda
commit
ed3a7b9d71
|
@ -90,7 +90,6 @@ def shop(v):
|
|||
|
||||
|
||||
@app.post("/buy/<award>")
|
||||
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
||||
@auth_required
|
||||
def buy(v, award):
|
||||
if award == 'benefactor' and not request.values.get("mb"):
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
|
||||
<div class="comment-body">
|
||||
|
||||
<div id="comment-{{c.id}}-only">
|
||||
<div id="comment-{{c.id}}-only" class="comment-{{c.id}}-only">
|
||||
|
||||
<div class="user-info">
|
||||
<span class="comment-collapse-icon" onclick="collapse_comment('{{c.id}}')"></span>
|
||||
|
@ -201,7 +201,7 @@
|
|||
{% endif %}
|
||||
<div class="comment-body">
|
||||
|
||||
<div id="{% if comment_info and comment_info.id == c.id %}context{%else%}comment-{{c.id}}-only{% endif %}" class="comment-anchor {% if comment_info and comment_info.id == c.id %}context{%endif%}{% if c.is_banned %} banned{% endif %}{% if c.deleted_utc %} deleted{% endif %}">
|
||||
<div id="{% if comment_info and comment_info.id == c.id %}context{%else%}comment-{{c.id}}-only{% endif %}" class="comment-{{c.id}}-only comment-anchor {% if comment_info and comment_info.id == c.id %}context{%endif%}{% if c.is_banned %} banned{% endif %}{% if c.deleted_utc %} deleted{% endif %}">
|
||||
|
||||
<div class="user-info">
|
||||
<span class="comment-collapse-icon" onclick="collapse_comment('{{c.id}}')"></span>
|
||||
|
@ -322,7 +322,7 @@
|
|||
from {transform: rotate(0.5deg);}
|
||||
to {transform: rotate({{c.award_count("tilt")}}deg);}
|
||||
}
|
||||
#comment-{{c.id}}-only {
|
||||
.comment-{{c.id}}-only {
|
||||
animation-name: c{{c.id}}-tilt !important;
|
||||
animation-duration: 30s !important;
|
||||
animation-iteration-count: infinite !important;
|
||||
|
|
Loading…
Reference in New Issue