Move inline css style to stylesheet

This commit is contained in:
Daniel Markstedt 2023-11-08 12:44:18 +09:00
parent f2686dd742
commit 630678ceda
3 changed files with 6 additions and 2 deletions

View File

@ -97,6 +97,10 @@ div.flash div.info {
background-color: #0d6efd; background-color: #0d6efd;
} }
div.flash > div a {
display: none;
}
td.inactive { td.inactive {
text-align: center; text-align: center;
background-color: tan; background-color: tan;

View File

@ -545,7 +545,7 @@ div.flash > div {
} }
div.flash > div a { div.flash > div a {
display: inline-block !important; display: inline-block;
padding: 0.25rem 0.75rem; padding: 0.25rem 0.75rem;
margin-left: auto; margin-left: auto;
color: #fff; color: #fff;

View File

@ -95,7 +95,7 @@
{% else %} {% else %}
<div>{{ message }}</div> <div>{{ message }}</div>
{% endif %} {% endif %}
<a style="display: none;" href="/"></a> <a href="/"></a>
</div> </div>
{% endfor %} {% endfor %}
{% endif %} {% endif %}