1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-17 05:24:06 +00:00

Updated stats grid too

This commit is contained in:
2023-01-17 16:45:22 +01:00
parent 928b4d229c
commit 49b2f52af8
2 changed files with 20 additions and 2 deletions

View File

@ -136,7 +136,7 @@
{#each columns as column}
{@const value = item[column.key]}
<td class:right={column.right} title={value}>
{formatValue(value)}
<div class="value">{formatValue(value)}</div>
</td>
{/each}
</tr>
@ -212,6 +212,14 @@
padding: 0;
}
td .value {
height: 2.1ex;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 25em;
}
tbody tr.selected td {
background-color: #00008b;
color: #fff;