V0.6
This commit is contained in:
parent
ef21d381a0
commit
ff2b5d34aa
15
scitems.php
15
scitems.php
@ -326,6 +326,15 @@ if ($edit_id > 0) {
|
|||||||
.item-uuid { font-size: 0.8rem; color: #aaa; font-family: monospace; word-break: break-all; }
|
.item-uuid { font-size: 0.8rem; color: #aaa; font-family: monospace; word-break: break-all; }
|
||||||
.item-about-cell { font-size: 0.85rem; color: #ccc; line-height: 1.4; }
|
.item-about-cell { font-size: 0.85rem; color: #ccc; line-height: 1.4; }
|
||||||
|
|
||||||
|
.item-preview {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid var(--border-glow);
|
||||||
|
background: rgba(0,0,0,0.5);
|
||||||
|
}
|
||||||
|
|
||||||
/* Rarity Classes */
|
/* Rarity Classes */
|
||||||
.rarity-L { color: var(--rarity-L) !important; text-shadow: 0 0 10px rgba(255, 128, 0, 0.3); }
|
.rarity-L { color: var(--rarity-L) !important; text-shadow: 0 0 10px rgba(255, 128, 0, 0.3); }
|
||||||
.rarity-E { color: var(--rarity-E) !important; text-shadow: 0 0 10px rgba(163, 53, 238, 0.3); }
|
.rarity-E { color: var(--rarity-E) !important; text-shadow: 0 0 10px rgba(163, 53, 238, 0.3); }
|
||||||
@ -439,6 +448,7 @@ if ($edit_id > 0) {
|
|||||||
<table class="modern-table">
|
<table class="modern-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th style="width: 80px;">Aperçu</th>
|
||||||
<th style="width: 30%;">Nom</th>
|
<th style="width: 30%;">Nom</th>
|
||||||
<th style="width: 30%;">UUID</th>
|
<th style="width: 30%;">UUID</th>
|
||||||
<th>About</th>
|
<th>About</th>
|
||||||
@ -447,7 +457,7 @@ if ($edit_id > 0) {
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php if (empty($items_list)): ?>
|
<?php if (empty($items_list)): ?>
|
||||||
<tr><td colspan="4" style="text-align: center; padding: 3rem; color: #666;">Aucun objet trouvé.</td></tr>
|
<tr><td colspan="5" style="text-align: center; padding: 3rem; color: #666;">Aucun objet trouvé.</td></tr>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php foreach ($items_list as $item): ?>
|
<?php foreach ($items_list as $item): ?>
|
||||||
<?php
|
<?php
|
||||||
@ -457,6 +467,9 @@ if ($edit_id > 0) {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="https://cstone.space/uifimages/<?php echo $item['cl_scobjs_uuid']; ?>.png" class="item-preview" alt="" loading="lazy">
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span class="item-name <?php echo $rarityClass; ?>"><?php echo htmlspecialchars($item['cl_scobjs_name']); ?></span>
|
<span class="item-name <?php echo $rarityClass; ?>"><?php echo htmlspecialchars($item['cl_scobjs_name']); ?></span>
|
||||||
<span class="item-meta">
|
<span class="item-meta">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user