mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-31 12:56:11 +01:00
Fixing no-scroll classes
This commit is contained in:
parent
39ecb1e4c4
commit
c2627acb6f
@ -212,7 +212,7 @@
|
||||
let players = server.players_cache;
|
||||
for (let i = 0; i < players.length; i++) {
|
||||
text += `<tr id="playerItem-${players[i]["name"]}" class="playerItem-- text-center">`;
|
||||
text += `<td class="no-scroll" style="overflow: scroll;"><strong>${players[i]["name"]}</strong></td>`;
|
||||
text += `<td class="no-scroll"><strong>${players[i]["name"]}</strong></td>`;
|
||||
if (players[i]["status"] === "Online") {
|
||||
text += `<td><span class="text-success"><i class="fas fa-signal"></i> ${players[i]['status']}</span></td>`
|
||||
} else {
|
||||
|
@ -92,7 +92,7 @@
|
||||
</div>
|
||||
</td>
|
||||
<td id="{{backup.backup_location}}" class="type">
|
||||
<p style="overflow: scroll;" class="no-scroll">{{backup.backup_location}}</p>
|
||||
<p class="no-scroll">{{backup.backup_location}}</p>
|
||||
</td>
|
||||
<td id="{{backup.max_backups}}" class="trigger" style="overflow: scroll; max-width: 30px;">
|
||||
<p>{{backup.max_backups}}</p>
|
||||
|
@ -93,7 +93,7 @@
|
||||
<p>{{schedule.action}}</p>
|
||||
</td>
|
||||
<td id="{{schedule.command}}" style="overflow: scroll; max-width: 30px;">
|
||||
<p style="overflow: scroll;" class="no-scroll">{{schedule.command}}</p>
|
||||
<p class="no-scroll">{{schedule.command}}</p>
|
||||
</td>
|
||||
<td id="{{schedule.interval}}">
|
||||
{% if schedule.interval_type != '' and schedule.interval_type != 'reaction' %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user