Add overlay to autocolumns when creating rows
This commit is contained in:
parent
09ec898a4d
commit
78c50df4bd
|
@ -87,4 +87,5 @@
|
||||||
{invertX}
|
{invertX}
|
||||||
{contentLines}
|
{contentLines}
|
||||||
/>
|
/>
|
||||||
|
<slot />
|
||||||
</GridCell>
|
</GridCell>
|
||||||
|
|
|
@ -181,7 +181,11 @@
|
||||||
rowIdx={0}
|
rowIdx={0}
|
||||||
invertX={columnIdx >= $columnHorizontalInversionIndex}
|
invertX={columnIdx >= $columnHorizontalInversionIndex}
|
||||||
{invertY}
|
{invertY}
|
||||||
/>
|
>
|
||||||
|
{#if column?.schema?.autocolumn}
|
||||||
|
<div class="readonly">Can't edit auto column</div>
|
||||||
|
{/if}
|
||||||
|
</DataCell>
|
||||||
{/key}
|
{/key}
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
@ -262,4 +266,21 @@
|
||||||
width: 0;
|
width: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Readonly cell overlay */
|
||||||
|
.readonly {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: var(--row-height);
|
||||||
|
width: 100%;
|
||||||
|
padding: var(--cell-padding);
|
||||||
|
font-style: italic;
|
||||||
|
color: var(--spectrum-global-color-gray-600);
|
||||||
|
z-index: 1;
|
||||||
|
user-select: none;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue