forked from rDrama/rDrama
1
0
Fork 0

minor css fix

master
Aevann 2023-05-05 07:12:06 +03:00
parent 4fe937d514
commit 3449dcf5d2
3 changed files with 14 additions and 9 deletions

View File

@ -7413,3 +7413,8 @@ button, .btn {
#cursormarsey-heart { #cursormarsey-heart {
animation: animateHeart 0.3s infinite; animation: animateHeart 0.3s infinite;
} }
th.disable-sort-click[disabled] {
font-weight: 900;
box-shadow: inset 0 -4px 0 white;
}

View File

@ -44,15 +44,15 @@
<thead class="bg-primary text-white"> <thead class="bg-primary text-white">
<tr> <tr>
<th class="disable-sort-click">Hat</th> <th class="disable-sort-click">Hat</th>
<th class="disable-sort-click"><a href="?sort=name" {% if sort=="name" %}disabled{% endif %}>Name</a></th> <th class="disable-sort-click" {% if sort=="name" %}disabled{% endif %}><a href="?sort=name">Name</a></th>
<th class="disable-sort-click"><a href="?sort=description" {% if sort=="description" %}disabled{% endif %}>Description</a></th> <th class="disable-sort-click" {% if sort=="description" %}disabled{% endif %}><a href="?sort=description">Description</a></th>
{% if SITE == 'rdrama.net' %} {% if SITE == 'rdrama.net' %}
<th class="disable-sort-click"><a href="?sort=author" {% if sort=="author" %}disabled{% endif %}>Author</a></th> <th class="disable-sort-click" {% if sort=="author" %}disabled{% endif %}><a href="?sort=author">Author</a></th>
{% endif %} {% endif %}
<th class="disable-sort-click"><a href="?sort=owners" {% if sort=="owners" %}disabled{% endif %}>Owners</a></th> <th class="disable-sort-click" {% if sort=="owners" %}disabled{% endif %}><a href="?sort=owners">Owners</a></th>
<th class="disable-sort-click"><a href="?sort=price" {% if sort=="price" %}disabled{% endif %}>Price</a></th> <th class="disable-sort-click" {% if sort=="price" %}disabled{% endif %}><a href="?sort=price">Price</a></th>
<th class="disable-sort-click">Actions</th> <th class="disable-sort-click">Actions</th>
<th class="disable-sort-click"><a href="?sort=added_on" {% if sort=="added_on" %}disabled{% endif %}>Added on</a></th> <th class="disable-sort-click" {% if sort=="added_on" %}disabled{% endif %}><a href="?sort=added_on">Added on</a></th>
</tr> </tr>
</thead> </thead>

View File

@ -7,11 +7,11 @@
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Marsey</th> <th>Marsey</th>
<th class="disable-sort-click"><a href="/marseys" {% if sort=="usage" %}disabled{% endif %}>Usage</a></th> <th class="disable-sort-click" {% if sort=="usage" %}disabled{% endif %}><a href="/marseys">Usage</a></th>
{% if FEATURES['ASSET_SUBMISSIONS'] %} {% if FEATURES['ASSET_SUBMISSIONS'] %}
<th class="disable-sort-click"><a href="?sort=author" {% if sort=="author" %}disabled{% endif %}>Author</a></th> <th class="disable-sort-click" {% if sort=="author" %}disabled{% endif %}><a href="?sort=author">Author</a></th>
{% endif %} {% endif %}
<th class="disable-sort-click"><a href="?sort=added_on" {% if sort=="added_on" %}disabled{% endif %}>Added on</a></th> <th class="disable-sort-click" {% if sort=="added_on" %}disabled{% endif %}><a href="?sort=added_on">Added on</a></th>
{% if FEATURES['ASSET_SUBMISSIONS'] %} {% if FEATURES['ASSET_SUBMISSIONS'] %}
<th>Original File</th> <th>Original File</th>
{% endif %} {% endif %}